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