1 /* Shared functions related to mangling names for the GNU compiler
2 for the Java(TM) language.
3 Copyright (C) 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC 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 3, or (at your option)
12 GCC 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 GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>.
21 Java and all Java-based marks are trademarks or registered trademarks
22 of Sun Microsystems, Inc. in the United States and other countries.
23 The Free Software Foundation is independent of Sun Microsystems, Inc. */
25 /* Written by Alexandre Petit-Bianco <apbianco@cygnus.com> */
29 #include "coretypes.h"
33 #include "java-tree.h"
37 static void append_unicode_mangled_name (const char *, int);
39 static int unicode_mangling_length (const char *, int);
42 extern struct obstack
*mangle_obstack
;
44 /* If the assembler doesn't support UTF8 in symbol names, some
45 characters might need to be escaped. */
49 /* Assuming (NAME, LEN) is a Utf8-encoding string, emit the string
50 appropriately mangled (with Unicode escapes if needed) to
51 MANGLE_OBSTACK. Note that `java', `lang' and `Object' are used so
52 frequently that they could be cached. */
55 append_gpp_mangled_name (const char *name
, int len
)
57 int encoded_len
= unicode_mangling_length (name
, len
);
58 int needs_escapes
= encoded_len
> 0;
61 sprintf (buf
, "%d", (needs_escapes
? encoded_len
: len
));
62 obstack_grow (mangle_obstack
, buf
, strlen (buf
));
65 append_unicode_mangled_name (name
, len
);
67 obstack_grow (mangle_obstack
, name
, len
);
70 /* Assuming (NAME, LEN) is a Utf8-encoded string, emit the string
71 appropriately mangled (with Unicode escapes) to MANGLE_OBSTACK.
72 Characters needing an escape are encoded `__UNN_' to `__UNNNN_', in
73 which case `__U' will be mangled `__U_'. */
76 append_unicode_mangled_name (const char *name
, int len
)
78 const unsigned char *ptr
;
79 const unsigned char *limit
= (const unsigned char *)name
+ len
;
81 for (ptr
= (const unsigned char *) name
; ptr
< limit
; )
83 int ch
= UTF8_GET(ptr
, limit
);
85 if ((ISALNUM (ch
) && ch
!= 'U') || ch
== '$')
86 obstack_1grow (mangle_obstack
, ch
);
87 /* Everything else needs encoding */
91 if (ch
== '_' || ch
== 'U')
93 /* Prepare to recognize __U */
94 if (ch
== '_' && (uuU
< 3))
97 obstack_1grow (mangle_obstack
, ch
);
99 /* We recognize __U that we wish to encode
100 __U_. Finish the encoding. */
101 else if (ch
== 'U' && (uuU
== 2))
104 obstack_grow (mangle_obstack
, "U_", 2);
106 /* Otherwise, just reset uuU and emit the character we
111 obstack_1grow (mangle_obstack
, ch
);
115 sprintf (buf
, "__U%x_", ch
);
116 obstack_grow (mangle_obstack
, buf
, strlen (buf
));
122 /* Assuming (NAME, LEN) is a Utf8-encoding string, calculate the
123 length of the string as mangled (a la g++) including Unicode
124 escapes. If no escapes are needed, return 0. */
127 unicode_mangling_length (const char *name
, int len
)
129 const unsigned char *ptr
;
130 const unsigned char *limit
= (const unsigned char *)name
+ len
;
131 int need_escapes
= 0; /* Whether we need an escape or not */
132 int num_chars
= 0; /* Number of characters in the mangled name */
133 int uuU
= 0; /* Help us to find __U. 0: '_', 1: '__' */
134 for (ptr
= (const unsigned char *) name
; ptr
< limit
; )
136 int ch
= UTF8_GET(ptr
, limit
);
139 error ("internal error - invalid Utf8 name");
140 if ((ISALNUM (ch
) && ch
!= 'U') || ch
== '$')
142 /* Everything else needs encoding */
145 int encoding_length
= 2;
147 if (ch
== '_' || ch
== 'U')
149 /* It's always at least one character. */
152 /* Prepare to recognize __U */
153 if (ch
== '_' && (uuU
< 3))
156 /* We recognize __U that we wish to encode __U_, we
157 count one more character. */
158 else if (ch
== 'U' && (uuU
== 2))
164 /* Otherwise, just reset uuU */
176 num_chars
+= (4 + encoding_length
);
189 /* The assembler supports UTF8, we don't use escapes. Mangling is
190 simply <N>NAME. <N> is the number of UTF8 encoded characters that
191 are found in NAME. Note that `java', `lang' and `Object' are used
192 so frequently that they could be cached. */
195 append_gpp_mangled_name (const char *name
, int len
)
197 const unsigned char *ptr
;
198 const unsigned char *limit
= (const unsigned char *)name
+ len
;
202 /* Compute the length of the string we wish to mangle. */
203 for (encoded_len
= 0, ptr
= (const unsigned char *) name
;
204 ptr
< limit
; encoded_len
++)
206 int ch
= UTF8_GET(ptr
, limit
);
209 error ("internal error - invalid Utf8 name");
212 sprintf (buf
, "%d", encoded_len
);
213 obstack_grow (mangle_obstack
, buf
, strlen (buf
));
214 obstack_grow (mangle_obstack
, name
, len
);
217 #endif /* HAVE_AS_UTF8 */