src/Tools/code/code_name.ML
author haftmann
Thu, 28 Aug 2008 22:09:20 +0200
changeset 28054 2b84d34c5d02
parent 28016 b46f48256dab
child 28346 b8390cd56b8f
permissions -rw-r--r--
restructured and split code serializer module
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     1
(*  Title:      Tools/code/code_name.ML
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     2
    ID:         $Id$
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     3
    Author:     Florian Haftmann, TU Muenchen
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     4
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     5
Naming policies for code generation: prefixing any name by corresponding
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     6
theory name, conversion to alphanumeric representation.
25313
98a145c9a22f clarifying comment
haftmann
parents: 24916
diff changeset
     7
Mappings are incrementally cached.  Assumes non-concurrent processing
98a145c9a22f clarifying comment
haftmann
parents: 24916
diff changeset
     8
inside a single theory.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     9
*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    10
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    11
signature CODE_NAME =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    12
sig
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    13
  val read_const_exprs: theory -> string list -> string list * string list
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    14
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    15
  val purify_var: string -> string
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    16
  val purify_tvar: string -> string
25337
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
    17
  val purify_sym: string -> string
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    18
  val check_modulename: string -> string
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    19
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    20
  val class: theory -> class -> class
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    21
  val class_rev: theory -> class -> class option
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    22
  val classrel: theory -> class * class -> string
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    23
  val classrel_rev: theory -> string -> (class * class) option
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    24
  val tyco: theory -> string -> string
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    25
  val tyco_rev: theory -> string -> string option
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    26
  val instance: theory -> class * string -> string
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    27
  val instance_rev: theory -> string -> (class * string) option
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    28
  val const: theory -> string -> string
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    29
  val const_rev: theory -> string -> string option
24916
dc56dd1b3cda simplified evaluation
haftmann
parents: 24840
diff changeset
    30
  val value_name: string
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    31
  val labelled_name: theory -> string -> string
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    32
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    33
  val setup: theory -> theory
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    34
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    35
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28016
diff changeset
    36
structure Code_Name: CODE_NAME =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    37
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    38
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    39
(** constant expressions **)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    40
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    41
fun read_const_exprs thy =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    42
  let
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    43
    fun consts_of some_thyname =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    44
      let
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    45
        val thy' = case some_thyname
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    46
         of SOME thyname => ThyInfo.the_theory thyname thy
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    47
          | NONE => thy;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    48
        val raw_cs = Symtab.fold (fn (c, (_, NONE)) => cons c | _ => I)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    49
          ((snd o #constants o Consts.dest o #consts o Sign.rep_sg) thy') [];
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28016
diff changeset
    50
        val cs = map (Code_Unit.subst_alias thy') raw_cs;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    51
        fun belongs_here c =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    52
          not (exists (fn thy'' => Sign.declared_const thy'' c) (Theory.parents_of thy'))
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    53
      in case some_thyname
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    54
       of NONE => cs
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    55
        | SOME thyname => filter belongs_here cs
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    56
      end;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    57
    fun read_const_expr "*" = ([], consts_of NONE)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    58
      | read_const_expr s = if String.isSuffix ".*" s
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    59
          then ([], consts_of (SOME (unsuffix ".*" s)))
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28016
diff changeset
    60
          else ([Code_Unit.read_const thy s], []);
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    61
  in pairself flat o split_list o map read_const_expr end;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    62
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 25999
diff changeset
    63
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    64
(** purification **)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    65
25337
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
    66
fun purify_name upper lower =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    67
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    68
    fun is_valid s = Symbol.is_ascii_letter s orelse Symbol.is_ascii_digit s orelse s = "'";
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    69
    val is_junk = not o is_valid andf Symbol.is_regular;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    70
    val junk = Scan.many is_junk;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    71
    val scan_valids = Symbol.scanner "Malformed input"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    72
      ((junk |--
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    73
        (Scan.optional (Scan.one Symbol.is_ascii_letter) "x" ^^ (Scan.many is_valid >> implode)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    74
        --| junk))
25999
f8bcd311d501 added ::: / @@@ scanner combinators;
wenzelm
parents: 25597
diff changeset
    75
      ::: Scan.repeat ((Scan.many1 is_valid >> implode) --| junk));
25337
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
    76
    fun upper_lower cs = if upper then nth_map 0 Symbol.to_ascii_upper cs
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
    77
      else if lower then (if forall Symbol.is_ascii_upper cs
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
    78
        then map else nth_map 0) Symbol.to_ascii_lower cs
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
    79
      else cs;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    80
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    81
    explode
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    82
    #> scan_valids
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    83
    #> space_implode "_"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    84
    #> explode
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    85
    #> upper_lower
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    86
    #> implode
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    87
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    88
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    89
fun purify_var "" = "x"
25337
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
    90
  | purify_var v = purify_name false true v;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    91
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    92
fun purify_tvar "" = "'a"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    93
  | purify_tvar v =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    94
      (unprefix "'" #> explode #> filter Symbol.is_ascii_letter #> cons "'" #> implode) v;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    95
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    96
fun check_modulename mn =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    97
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    98
    val mns = NameSpace.explode mn;
25337
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
    99
    val mns' = map (purify_name true false) mns;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   100
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   101
    if mns' = mns then mn else error ("Invalid module name: " ^ quote mn ^ "\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   102
      ^ "perhaps try " ^ quote (NameSpace.implode mns'))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   103
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   104
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   105
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   106
(** global names (identifiers) **)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   107
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   108
(* identifier categories *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   109
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   110
val suffix_class = "class";
24840
01b14b37eca3 clarified name suffix
haftmann
parents: 24811
diff changeset
   111
val suffix_classrel = "classrel"
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   112
val suffix_tyco = "tyco";
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   113
val suffix_instance = "inst";
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   114
val suffix_const = "const";
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   115
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   116
fun string_of_classrel (class, superclass) = class ^ " < " ^ superclass;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   117
fun string_of_instance (class, tyco) = tyco ^ " :: " ^ class;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   118
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   119
fun add_suffix nsp name =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   120
  NameSpace.append name nsp;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   121
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   122
fun dest_suffix nsp name =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   123
  if NameSpace.base name = nsp
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   124
  then SOME (NameSpace.qualifier name)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   125
  else NONE;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   126
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   127
local
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   128
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   129
val name_mapping  = [
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   130
  (suffix_class,       "class"),
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   131
  (suffix_classrel,    "subclass relation"),
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   132
  (suffix_tyco,        "type constructor"),
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   133
  (suffix_instance,    "instance"),
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   134
  (suffix_const,       "constant")
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   135
]
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   136
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   137
in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   138
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   139
val category_of = the o AList.lookup (op =) name_mapping o NameSpace.base;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   140
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   141
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   142
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   143
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   144
(* theory name lookup *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   145
27549
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   146
local
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   147
  fun thyname_of thy f x = the (AList.lookup (op =) (f x) Markup.theory_nameN);
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   148
in
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   149
  fun thyname_of_class thy =
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   150
    thyname_of thy (ProofContext.query_class (ProofContext.init thy));
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   151
  fun thyname_of_tyco thy =
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   152
    thyname_of thy (Type.the_tags (Sign.tsig_of thy));
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   153
  fun thyname_of_instance thy a = case AxClass.arity_property thy a Markup.theory_nameN
28016
b46f48256dab proper error message
haftmann
parents: 27609
diff changeset
   154
   of [] => error ("no such instance: " ^ (quote o string_of_instance) a)
27549
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   155
    | thyname :: _ => thyname;
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   156
  fun thyname_of_const thy =
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   157
    thyname_of thy (Consts.the_tags (Sign.consts_of thy));
0525f5785155 tuned thyname lookup
haftmann
parents: 27365
diff changeset
   158
end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   159
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   160
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   161
(* naming policies *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   162
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   163
val purify_prefix =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   164
  explode
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   165
  (*should disappear as soon as hierarchical theory name spaces are available*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   166
  #> Symbol.scanner "Malformed name"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   167
      (Scan.repeat ($$ "_" |-- $$ "_" >> (fn _ => ".") || Scan.one Symbol.is_regular))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   168
  #> implode
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   169
  #> NameSpace.explode
25337
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   170
  #> map (purify_name true false);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   171
25337
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   172
fun purify_base _ "op &" = "and"
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   173
  | purify_base _ "op |" = "or"
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   174
  | purify_base _ "op -->" = "implies"
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   175
  | purify_base _ "{}" = "empty"
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   176
  | purify_base _ "op :" = "member"
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   177
  | purify_base _ "op Int" = "intersect"
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   178
  | purify_base _ "op Un" = "union"
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   179
  | purify_base _ "*" = "product"
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   180
  | purify_base _ "+" = "sum"
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   181
  | purify_base lower s = if String.isPrefix "op =" s
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   182
      then "eq" ^ purify_name false lower s
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   183
      else purify_name false lower s;
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   184
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   185
val purify_sym = purify_base false;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   186
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   187
fun default_policy thy get_basename get_thyname name =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   188
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   189
    val prefix = (purify_prefix o get_thyname thy) name;
25337
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   190
    val base = (purify_base true o get_basename) name;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   191
  in NameSpace.implode (prefix @ [base]) end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   192
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   193
fun class_policy thy = default_policy thy NameSpace.base thyname_of_class;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   194
fun classrel_policy thy = default_policy thy (fn (class1, class2) => 
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   195
  NameSpace.base class2 ^ "_" ^ NameSpace.base class1) (fn thy => thyname_of_class thy o fst);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   196
  (*order fits nicely with composed projections*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   197
fun tyco_policy thy = default_policy thy NameSpace.base thyname_of_tyco;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   198
fun instance_policy thy = default_policy thy (fn (class, tyco) => 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   199
  NameSpace.base class ^ "_" ^ NameSpace.base tyco) thyname_of_instance;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   200
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   201
fun force_thyname thy c = case Code.get_datatype_of_constr thy c
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   202
 of SOME dtco => SOME (thyname_of_tyco thy dtco)
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   203
  | NONE => (case AxClass.class_of_param thy c
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   204
     of SOME class => SOME (thyname_of_class thy class)
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25485
diff changeset
   205
      | NONE => (case AxClass.inst_of_param thy c
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   206
         of SOME (c, tyco) => SOME (thyname_of_instance thy
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   207
              ((the o AxClass.class_of_param thy) c, tyco))
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   208
          | NONE => NONE));
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   209
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   210
fun const_policy thy c =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   211
  case force_thyname thy c
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   212
   of NONE => default_policy thy NameSpace.base thyname_of_const c
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   213
    | SOME thyname => let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   214
        val prefix = purify_prefix thyname;
25337
93da87a1d2b3 added purify_sym
haftmann
parents: 25313
diff changeset
   215
        val base = (purify_base true o NameSpace.base) c;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   216
      in NameSpace.implode (prefix @ [base]) end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   217
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   218
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   219
(* theory and code data *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   220
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   221
type tyco = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   222
type const = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   223
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   224
structure StringPairTab =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   225
  TableFun(
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   226
    type key = string * string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   227
    val ord = prod_ord fast_string_ord fast_string_ord;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   228
  );
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   229
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   230
datatype names = Names of {
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   231
  class: class Symtab.table * class Symtab.table,
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   232
  classrel: string StringPairTab.table * (class * class) Symtab.table,
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   233
  tyco: tyco Symtab.table * tyco Symtab.table,
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   234
  instance: string StringPairTab.table * (class * tyco) Symtab.table
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   235
}
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   236
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   237
val empty_names = Names {
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   238
  class = (Symtab.empty, Symtab.empty),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   239
  classrel = (StringPairTab.empty, Symtab.empty),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   240
  tyco = (Symtab.empty, Symtab.empty),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   241
  instance = (StringPairTab.empty, Symtab.empty)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   242
};
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   243
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   244
local
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   245
  fun mk_names (class, classrel, tyco, instance) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   246
    Names { class = class, classrel = classrel, tyco = tyco, instance = instance };
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   247
  fun map_names f (Names { class, classrel, tyco, instance }) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   248
    mk_names (f (class, classrel, tyco, instance));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   249
in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   250
  fun merge_names (Names { class = (class1, classrev1),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   251
      classrel = (classrel1, classrelrev1), tyco = (tyco1, tycorev1),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   252
      instance = (instance1, instancerev1) },
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   253
    Names { class = (class2, classrev2),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   254
      classrel = (classrel2, classrelrev2), tyco = (tyco2, tycorev2),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   255
      instance = (instance2, instancerev2) }) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   256
    mk_names ((Symtab.merge (op =) (class1, class2), Symtab.merge (op =) (classrev1, classrev2)),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   257
      (StringPairTab.merge (op =) (classrel1, classrel2), Symtab.merge (op =) (classrelrev1, classrelrev2)),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   258
      (Symtab.merge (op =) (tyco1, tyco2), Symtab.merge (op =) (tycorev1, tycorev2)),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   259
      (StringPairTab.merge (op =) (instance1, instance2), Symtab.merge (op =) (instancerev1, instancerev2)));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   260
  fun map_class f = map_names
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   261
    (fn (class, classrel, tyco, inst) => (f class, classrel, tyco, inst));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   262
  fun map_classrel f = map_names
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   263
    (fn (class, classrel, tyco, inst) => (class, f classrel, tyco, inst));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   264
  fun map_tyco f = map_names
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   265
    (fn (class, classrel, tyco, inst) => (class, classrel, f tyco, inst));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   266
  fun map_instance f = map_names
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   267
    (fn (class, classrel, tyco, inst) => (class, classrel, tyco, f inst));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   268
end; (*local*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   269
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28016
diff changeset
   270
structure Code_Name = TheoryDataFun
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   271
(
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   272
  type T = names ref;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   273
  val empty = ref empty_names;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   274
  fun copy (ref names) = ref names;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   275
  val extend = copy;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   276
  fun merge _ (ref names1, ref names2) = ref (merge_names (names1, names2));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   277
);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   278
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   279
structure ConstName = CodeDataFun
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   280
(
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   281
  type T = const Symtab.table * string Symtab.table;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   282
  val empty = (Symtab.empty, Symtab.empty);
27609
b23c9ad0fe7d tuned code theorem bookkeeping
haftmann
parents: 27549
diff changeset
   283
  fun purge _ cs (const, constrev) = (fold Symtab.delete_safe cs const,
b23c9ad0fe7d tuned code theorem bookkeeping
haftmann
parents: 27549
diff changeset
   284
    fold Symtab.delete_safe (map_filter (Symtab.lookup const) cs) constrev);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   285
);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   286
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28016
diff changeset
   287
val setup = Code_Name.init;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   288
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   289
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   290
(* forward lookup with cache update *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   291
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   292
fun get thy get_tabs get upd_names upd policy x =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   293
  let
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28016
diff changeset
   294
    val names_ref = Code_Name.get thy;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   295
    val (Names names) = ! names_ref;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   296
    val tabs = get_tabs names;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   297
    fun declare name =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   298
      let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   299
        val names' = upd_names (K (upd (x, name) (fst tabs),
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   300
          Symtab.update_new (name, x) (snd tabs))) (Names names)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   301
      in (names_ref := names'; name) end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   302
  in case get (fst tabs) x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   303
   of SOME name => name
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   304
    | NONE => 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   305
        x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   306
        |> policy thy
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   307
        |> Name.variant (Symtab.keys (snd tabs))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   308
        |> declare
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   309
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   310
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   311
fun get_const thy const =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   312
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   313
    val tabs = ConstName.get thy;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   314
    fun declare name =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   315
      let
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   316
        val names' = (Symtab.update (const, name) (fst tabs),
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   317
          Symtab.update_new (name, const) (snd tabs))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   318
      in (ConstName.change thy (K names'); name) end;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   319
  in case Symtab.lookup (fst tabs) const
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   320
   of SOME name => name
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   321
    | NONE => 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   322
        const
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   323
        |> const_policy thy
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   324
        |> Name.variant (Symtab.keys (snd tabs))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   325
        |> declare
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   326
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   327
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   328
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   329
(* backward lookup *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   330
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   331
fun rev thy get_tabs name =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   332
  let
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28016
diff changeset
   333
    val names_ref = Code_Name.get thy
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   334
    val (Names names) = ! names_ref;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   335
    val tab = (snd o get_tabs) names;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   336
  in case Symtab.lookup tab name
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   337
   of SOME x => x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   338
    | NONE => error ("No such " ^ category_of name ^ ": " ^ quote name)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   339
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   340
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   341
fun rev_const thy name =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   342
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   343
    val tab = snd (ConstName.get thy);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   344
  in case Symtab.lookup tab name
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   345
   of SOME const => const
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   346
    | NONE => error ("No such " ^ category_of name ^ ": " ^ quote name)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   347
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   348
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   349
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   350
(* external interfaces *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   351
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   352
fun class thy =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   353
  get thy #class Symtab.lookup map_class Symtab.update class_policy
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   354
  #> add_suffix suffix_class;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   355
fun classrel thy =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   356
  get thy #classrel StringPairTab.lookup map_classrel StringPairTab.update classrel_policy
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   357
  #> add_suffix suffix_classrel;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   358
fun tyco thy =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   359
  get thy #tyco Symtab.lookup map_tyco Symtab.update tyco_policy
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   360
  #> add_suffix suffix_tyco;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   361
fun instance thy =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   362
  get thy #instance StringPairTab.lookup map_instance StringPairTab.update instance_policy
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   363
  #> add_suffix suffix_instance;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   364
fun const thy =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   365
  get_const thy
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   366
  #> add_suffix suffix_const;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   367
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   368
fun class_rev thy =
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   369
  dest_suffix suffix_class
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   370
  #> Option.map (rev thy #class);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   371
fun classrel_rev thy =
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   372
  dest_suffix suffix_classrel
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   373
  #> Option.map (rev thy #classrel);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   374
fun tyco_rev thy =
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   375
  dest_suffix suffix_tyco
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   376
  #> Option.map (rev thy #tyco);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   377
fun instance_rev thy =
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   378
  dest_suffix suffix_instance
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   379
  #> Option.map (rev thy #instance);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   380
fun const_rev thy =
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   381
  dest_suffix suffix_const
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   382
  #> Option.map (rev_const thy);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   383
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   384
local
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   385
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   386
val f_mapping = [
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   387
  (suffix_class,       class_rev),
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   388
  (suffix_classrel,    Option.map string_of_classrel oo classrel_rev),
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   389
  (suffix_tyco,        tyco_rev),
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   390
  (suffix_instance,    Option.map string_of_instance oo instance_rev),
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28016
diff changeset
   391
  (suffix_const,       fn thy => Option.map (Code_Unit.string_of_const thy) o const_rev thy)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   392
];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   393
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   394
in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   395
24916
dc56dd1b3cda simplified evaluation
haftmann
parents: 24840
diff changeset
   396
val value_name = "Isabelle_Eval.EVAL.EVAL"
dc56dd1b3cda simplified evaluation
haftmann
parents: 24840
diff changeset
   397
dc56dd1b3cda simplified evaluation
haftmann
parents: 24840
diff changeset
   398
fun labelled_name thy suffix_name = if suffix_name = value_name then "<term>" else
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   399
  let
24811
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   400
    val category = category_of suffix_name;
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   401
    val name = NameSpace.qualifier suffix_name;
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   402
    val suffix = NameSpace.base suffix_name
3bf788a0c49a clarified role of class relations
haftmann
parents: 24423
diff changeset
   403
  in case (the o AList.lookup (op =) f_mapping) suffix thy suffix_name
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   404
   of SOME thing => category ^ " " ^ quote thing
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   405
    | NONE => error ("Unknown name: " ^ quote name)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   406
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   407
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   408
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   409
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   410
end;