2001-02-14 Tom Tromey <tromey@redhat.com>
[official-gcc.git] / gcc / java / mangle.c
blobb78e242da18c2be2af8dd36e14471c929bb04755
1 /* Functions related to mangling class names for the GNU compiler
2 for the Java(TM) language.
3 Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.
22 Java and all Java-based marks are trademarks or registered trademarks
23 of Sun Microsystems, Inc. in the United States and other countries.
24 The Free Software Foundation is independent of Sun Microsystems, Inc. */
26 /* Written by Per Bothner <bothner@cygnus.com> */
28 #include "config.h"
29 #include "system.h"
30 #include "jcf.h"
31 #include "tree.h"
32 #include "java-tree.h"
33 #include "obstack.h"
34 #include "toplev.h"
35 #include "obstack.h"
36 #include "ggc.h"
38 static void mangle_field_decl PARAMS ((tree));
39 static void mangle_method_decl PARAMS ((tree));
41 static void mangle_type PARAMS ((tree));
42 static void mangle_pointer_type PARAMS ((tree));
43 static void mangle_array_type PARAMS ((tree));
44 static int mangle_record_type PARAMS ((tree, int));
46 static int find_compression_pointer_match PARAMS ((tree));
47 static int find_compression_array_match PARAMS ((tree));
48 static int find_compression_record_match PARAMS ((tree, tree *));
49 static int find_compression_array_template_match PARAMS ((tree));
51 static void set_type_package_list PARAMS ((tree));
52 static int entry_match_pointer_p PARAMS ((tree, int));
53 static void emit_compression_string PARAMS ((int));
55 static void init_mangling PARAMS ((struct obstack *));
56 static tree finish_mangling PARAMS ((void));
57 static void compression_table_add PARAMS ((tree));
59 static void mangle_member_name PARAMS ((tree));
61 /* We use an incoming obstack, always to be provided to the interface
62 functions. */
63 struct obstack *mangle_obstack;
64 #define MANGLE_RAW_STRING(S) \
65 obstack_grow (mangle_obstack, (S), sizeof (S)-1)
67 /* This is the mangling interface: a decl, a class field (.class) and
68 the vtable. */
70 tree
71 java_mangle_decl (obstack, decl)
72 struct obstack *obstack;
73 tree decl;
75 init_mangling (obstack);
76 switch (TREE_CODE (decl))
78 case VAR_DECL:
79 mangle_field_decl (decl);
80 break;
81 case FUNCTION_DECL:
82 mangle_method_decl (decl);
83 break;
84 default:
85 internal_error ("Can't mangle %s", tree_code_name [TREE_CODE (decl)]);
87 return finish_mangling ();
90 tree
91 java_mangle_class_field (obstack, type)
92 struct obstack *obstack;
93 tree type;
95 init_mangling (obstack);
96 mangle_record_type (type, /* from_pointer = */ 0);
97 MANGLE_RAW_STRING ("6class$");
98 obstack_1grow (mangle_obstack, 'E');
99 return finish_mangling ();
102 tree
103 java_mangle_vtable (obstack, type)
104 struct obstack *obstack;
105 tree type;
107 init_mangling (obstack);
108 MANGLE_RAW_STRING ("TV");
109 mangle_record_type (type, /* from_pointer = */ 0);
110 obstack_1grow (mangle_obstack, 'E');
111 return finish_mangling ();
114 /* Beginning of the helper functions */
116 /* This mangles a field decl */
118 static void
119 mangle_field_decl (decl)
120 tree decl;
122 /* Mangle the name of the this the field belongs to */
123 mangle_record_type (DECL_CONTEXT (decl), /* from_pointer = */ 0);
125 /* Mangle the name of the field */
126 mangle_member_name (DECL_NAME (decl));
128 /* Terminate the mangled name */
129 obstack_1grow (mangle_obstack, 'E');
132 /* This mangles a method decl, first mangling its name and then all
133 its arguments. */
135 static void
136 mangle_method_decl (mdecl)
137 tree mdecl;
139 tree method_name = DECL_NAME (mdecl);
140 tree arglist;
142 /* Mangle the name of the type that contains mdecl */
143 mangle_record_type (DECL_CONTEXT (mdecl), /* from_pointer = */ 0);
145 /* Mangle the function name. There three cases
146 - mdecl is java.lang.Object.Object(), use `C2' for its name
147 (denotes a base object constructor.)
148 - mdecl is a constructor, use `C1' for its name, (denotes a
149 complete object constructor.)
150 - mdecl is not a constructor, standard mangling is performed.
151 We terminate the mangled function name with a `E'. */
152 if (ID_INIT_P (method_name))
154 if (DECL_CONTEXT (mdecl) == object_type_node)
155 obstack_grow (mangle_obstack, "C2", 2);
156 else
157 obstack_grow (mangle_obstack, "C1", 2);
159 else
160 mangle_member_name (method_name);
161 obstack_1grow (mangle_obstack, 'E');
163 /* We mangled type.methodName. Now onto the arguments. */
164 arglist = TYPE_ARG_TYPES (TREE_TYPE (mdecl));
165 if (TREE_CODE (TREE_TYPE (mdecl)) == METHOD_TYPE)
166 arglist = TREE_CHAIN (arglist);
168 /* No arguments is easy. We shortcut it. */
169 if (arglist == end_params_node)
170 obstack_1grow (mangle_obstack, 'v');
171 else
173 tree arg;
174 for (arg = arglist; arg != end_params_node; arg = TREE_CHAIN (arg))
175 mangle_type (TREE_VALUE (arg));
179 /* This mangles a member name, like a function name or a field
180 name. Handle cases were `name' is a C++ keyword. Return a non zero
181 value if unicode encoding was required. */
183 static void
184 mangle_member_name (name)
185 tree name;
187 append_gpp_mangled_name (IDENTIFIER_POINTER (name),
188 IDENTIFIER_LENGTH (name));
190 /* If NAME happens to be a C++ keyword, add `$' or `.' or `_'. */
191 if (cxx_keyword_p (IDENTIFIER_POINTER (name), IDENTIFIER_LENGTH (name)))
193 #ifndef NO_DOLLAR_IN_LABEL
194 obstack_1grow (mangle_obstack, '$');
195 #else /* NO_DOLLAR_IN_LABEL */
196 #ifndef NO_DOT_IN_LABEL
197 obstack_1grow (mangle_obstack, '.');
198 #else /* NO_DOT_IN_LABEL */
199 obstack_1grow (mangle_obstack, '_');
200 #endif /* NO_DOT_IN_LABEL */
201 #endif /* NO_DOLLAR_IN_LABEL */
205 /* Append the mangled name of TYPE onto OBSTACK. */
207 static void
208 mangle_type (type)
209 tree type;
211 switch (TREE_CODE (type))
213 char code;
214 case BOOLEAN_TYPE: code = 'b'; goto primitive;
215 case CHAR_TYPE: code = 'w'; goto primitive;
216 case VOID_TYPE: code = 'v'; goto primitive;
217 case INTEGER_TYPE:
218 /* Get the original type instead of the arguments promoted type.
219 Avoid symbol name clashes. Should call a function to do that.
220 FIXME. */
221 if (type == promoted_short_type_node)
222 type = short_type_node;
223 if (type == promoted_byte_type_node)
224 type = byte_type_node;
225 switch (TYPE_PRECISION (type))
227 case 8: code = 'c'; goto primitive;
228 case 16: code = 's'; goto primitive;
229 case 32: code = 'i'; goto primitive;
230 case 64: code = 'x'; goto primitive;
231 default: goto bad_type;
233 primitive:
234 obstack_1grow (mangle_obstack, code);
235 break;
237 case REAL_TYPE:
238 switch (TYPE_PRECISION (type))
240 case 32: code = 'f'; goto primitive;
241 case 64: code = 'd'; goto primitive;
242 default: goto bad_type;
244 case POINTER_TYPE:
245 if (TYPE_ARRAY_P (TREE_TYPE (type)))
246 mangle_array_type (type);
247 else
248 mangle_pointer_type (type);
249 break;
250 bad_type:
251 default:
252 abort ();
256 /* The compression table is a vector that keeps track of things we've
257 already seen, so they can be reused. For example, java.lang.Object
258 Would generate three entries: two package names and a type. If
259 java.lang.String is presented next, the java.lang will be matched
260 against the first two entries (and kept for compression as S_0), and
261 type String would be added to the table. See mangle_record_type.
262 COMPRESSION_NEXT is the index to the location of the next insertion
263 of an element. */
265 static tree compression_table;
266 static int compression_next;
268 /* Find a POINTER_TYPE in the compression table. Use a special
269 function to match pointer entries and start from the end */
271 static int
272 find_compression_pointer_match (type)
273 tree type;
275 int i;
277 for (i = compression_next-1; i >= 0; i--)
278 if (entry_match_pointer_p (type, i))
279 return i;
280 return -1;
283 /* Already recorder arrays are handled like pointer as they're always
284 associated with it. */
286 static int
287 find_compression_array_match (type)
288 tree type;
290 return find_compression_pointer_match (type);
293 /* Match the table of type against STRING. */
295 static int
296 find_compression_array_template_match (string)
297 tree string;
299 int i;
300 for (i = 0; i < compression_next; i++)
301 if (TREE_VEC_ELT (compression_table, i) == string)
302 return i;
303 return -1;
306 /* We go through the compression table and try to find a complete or
307 partial match. The function returns the compression table entry
308 that (evenutally partially) matches TYPE. *NEXT_CURRENT can be set
309 to the rest of TYPE to be mangled. */
311 static int
312 find_compression_record_match (type, next_current)
313 tree type;
314 tree *next_current;
316 int i, match;
317 tree current, saved_current;
319 /* Search from the beginning for something that matches TYPE, even
320 partially. */
321 for (current = TYPE_PACKAGE_LIST (type), i = 0, match = -1; current;
322 current = TREE_CHAIN (current))
324 int j;
325 for (j = i; j < compression_next; j++)
326 if (TREE_VEC_ELT (compression_table, j) == TREE_PURPOSE (current))
328 match = i = j;
329 saved_current = current;
330 break;
334 if (!next_current)
335 return match;
337 /* If we have a match, set next_current to the item next to the last
338 matched value. */
339 if (match >= 0)
340 *next_current = TREE_CHAIN (saved_current);
341 /* We had no match: we'll have to start from the beginning. */
342 if (match < 0)
343 *next_current = TYPE_PACKAGE_LIST (type);
345 return match;
348 /* Mangle a record type. If a non zero value is returned, it means
349 that a 'N' was emitted (so that a matching 'E' can be emitted if
350 necessary.) */
352 static int
353 mangle_record_type (type, from_pointer)
354 tree type;
355 int from_pointer;
357 tree current;
358 int match;
359 int nadded_p = 0;
361 #define ADD_N() \
362 do { obstack_1grow (mangle_obstack, 'N'); nadded_p = 1; } while (0)
364 if (TREE_CODE (type) != RECORD_TYPE)
365 abort ();
367 if (!TYPE_PACKAGE_LIST (type))
368 set_type_package_list (type);
370 match = find_compression_record_match (type, &current);
371 if (match >= 0)
373 /* If we had a pointer, and there's more, we need to emit
374 'N' after 'P' (from pointer tells us we already emitted it.) */
375 if (from_pointer && current)
376 ADD_N();
377 emit_compression_string (match);
379 while (current)
381 /* Add the new type to the table */
382 compression_table_add (TREE_PURPOSE (current));
383 /* Add 'N' if we never got a chance to. */
384 if (!nadded_p)
385 ADD_N();
386 /* Use the bare type name for the mangle. */
387 append_gpp_mangled_name (IDENTIFIER_POINTER (TREE_VALUE (current)),
388 IDENTIFIER_LENGTH (TREE_VALUE (current)));
389 current = TREE_CHAIN (current);
391 return nadded_p;
392 #undef ADD_N
395 /* Mangle a pointer type. There are two cases: the pointer is already
396 in the compression table: the compression is emited sans 'P'
397 indicator. Otherwise, a 'P' is emitted and, depending on the type,
398 a partial compression or/plus the rest of the mangling. */
400 static void
401 mangle_pointer_type (type)
402 tree type;
404 int match;
405 tree pointer_type;
407 /* Search for the type already in the compression table */
408 if ((match = find_compression_pointer_match (type)) >= 0)
410 emit_compression_string (match);
411 return;
414 /* This didn't work. We start by mangling the pointed-to type */
415 pointer_type = type;
416 type = TREE_TYPE (type);
417 if (TREE_CODE (type) != RECORD_TYPE)
418 abort ();
420 obstack_1grow (mangle_obstack, 'P');
421 if (mangle_record_type (type, /* for_pointer = */ 1))
422 obstack_1grow (mangle_obstack, 'E');
424 /* Don't forget to insert the pointer type in the table */
425 compression_table_add (pointer_type);
428 /* Mangle an array type. Search for an easy solution first, then go
429 through the process of finding out whether the bare array type or even
430 the template indicator where already used an compress appropriately.
431 It handles pointers. */
433 static void
434 mangle_array_type (p_type)
435 tree p_type;
437 /* atms: array template mangled string. */
438 static tree atms = NULL_TREE;
439 tree type, elt_type;
440 int match;
442 type = TREE_TYPE (p_type);
443 if (!type)
444 abort ();
446 elt_type = TYPE_ARRAY_ELEMENT (type);
448 /* We cache a bit of the Jarray <> mangle. */
449 if (!atms)
451 atms = get_identifier ("6JArray");
452 ggc_add_tree_root (&atms, 1);
455 /* Maybe we have what we're looking in the compression table. */
456 if ((match = find_compression_array_match (p_type)) >= 0)
458 emit_compression_string (match);
459 return;
462 /* We know for a fact that all arrays are pointers */
463 obstack_1grow (mangle_obstack, 'P');
464 /* Maybe we already have a Jarray<t> somewhere. PSx_ will be enough. */
465 if ((match = find_compression_record_match (type, NULL)) > 0)
467 emit_compression_string (match);
468 return;
471 /* Maybe we already have just JArray somewhere */
472 if ((match = find_compression_array_template_match (atms)) > 0)
473 emit_compression_string (match);
474 else
476 /* Start the template mangled name */
477 obstack_grow (mangle_obstack,
478 IDENTIFIER_POINTER (atms), IDENTIFIER_LENGTH (atms));
479 /* Insert in the compression table */
480 compression_table_add (atms);
483 /* Mangle Jarray <elt_type> */
484 obstack_1grow (mangle_obstack, 'I');
485 mangle_type (elt_type);
486 obstack_1grow (mangle_obstack, 'E');
488 /* Add `Jarray <elt_type>' and `Jarray <elt_type> *' to the table */
489 compression_table_add (type);
490 compression_table_add (p_type);
493 /* Write a substition string for entry I. Substitution string starts a
494 -1 (encoded S_.) The base is 36, and the code shamlessly taken from
495 cp/mangle.c. */
497 static void
498 emit_compression_string (int i)
500 i -= 1; /* Adjust */
501 obstack_1grow (mangle_obstack, 'S');
502 if (i >= 0)
504 static const char digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
505 unsigned HOST_WIDE_INT n;
506 unsigned HOST_WIDE_INT m=1;
507 /* How many digits for I in base 36? */
508 for (n = i; n >= 36; n /= 36, m *=36);
509 /* Write the digits out */
510 while (m > 0)
512 int digit = i / m;
513 obstack_1grow (mangle_obstack, digits [digit]);
514 i -= digit * m;
515 m /= 36;
518 obstack_1grow (mangle_obstack, '_');
521 /* If search the compression table at index I for a pointer type
522 equivalent to TYPE (meaning that after all the indirection, which
523 might all be unique, we find the same RECORD_TYPE.) */
525 static int
526 entry_match_pointer_p (type, i)
527 tree type;
528 int i;
530 tree t = TREE_VEC_ELT (compression_table, i);
532 while (TREE_CODE (type) == POINTER_TYPE
533 && TREE_CODE (t) == POINTER_TYPE)
535 t = TREE_TYPE (t);
536 type = TREE_TYPE (type);
538 return (TREE_CODE (type) == RECORD_TYPE
539 && TREE_CODE (t) == RECORD_TYPE
540 && t == type);
543 /* Go through all qualification of type and build a list of list node
544 elements containings as a purpose what should be used for a match and
545 inserted in the compression table; and as it value the raw name of the
546 part. The result is stored in TYPE_PACKAGE_LIST to be reused. */
548 static void
549 set_type_package_list (type)
550 tree type;
552 int i;
553 const char *type_string = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
554 char *ptr;
555 int qualifications;
556 tree list = NULL_TREE, elt;
558 for (ptr = (char *)type_string, qualifications = 0; *ptr; ptr++)
559 if (*ptr == '.')
560 qualifications += 1;
562 for (ptr = (char *)type_string, i = 0; i < qualifications; ptr++)
564 if (ptr [0] == '.')
566 char c;
567 tree identifier;
569 /* Can't use an obstack, we're already using it to
570 accumulate the mangling. */
571 c = ptr [0];
572 ptr [0] = '\0';
573 identifier = get_identifier (type_string);
574 ptr [0] = c;
575 elt = build_tree_list (identifier, identifier);
576 TREE_CHAIN (elt) = list;
577 list = elt;
578 type_string = ptr+1;
579 i += 1;
583 elt = build_tree_list (type, get_identifier (type_string));
584 TREE_CHAIN (elt) = list;
585 list = elt;
586 TYPE_PACKAGE_LIST (type) = nreverse (list);
589 /* Add TYPE as the last element of the compression table. Resize the
590 compression table if necessary. */
592 static void
593 compression_table_add (type)
594 tree type;
596 if (compression_next == TREE_VEC_LENGTH (compression_table))
598 tree new = make_tree_vec (2*compression_next);
599 int i;
601 for (i = 0; i < compression_next; i++)
602 TREE_VEC_ELT (new, i) = TREE_VEC_ELT (compression_table, i);
604 ggc_del_root (&compression_table);
605 compression_table = new;
606 ggc_add_tree_root (&compression_table, 1);
608 TREE_VEC_ELT (compression_table, compression_next++) = type;
611 /* Mangling initialization routine. */
613 static void
614 init_mangling (obstack)
615 struct obstack *obstack;
617 mangle_obstack = obstack;
618 if (!compression_table)
619 compression_table = make_tree_vec (10);
620 else
621 /* Mangling already in progress. */
622 abort ();
624 /* Mangled name are to be suffixed */
625 obstack_grow (mangle_obstack, "_Z", 2);
627 /* Register the compression table with the GC */
628 ggc_add_tree_root (&compression_table, 1);
631 /* Mangling finalization routine. The mangled name is returned as a
632 IDENTIFIER_NODE. */
634 static tree
635 finish_mangling ()
637 tree result;
639 if (!compression_table)
640 /* Mangling already finished. */
641 abort ();
643 ggc_del_root (&compression_table);
644 compression_table = NULL_TREE;
645 compression_next = 0;
646 obstack_1grow (mangle_obstack, '\0');
647 result = get_identifier (obstack_base (mangle_obstack));
648 obstack_free (mangle_obstack, obstack_base (mangle_obstack));
649 #if 0
650 printf ("// %s\n", IDENTIFIER_POINTER (result));
651 #endif
652 return result;