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