Fix entry.
[official-gcc.git] / gcc / java / constants.c
bloba5d9622bdab3f36d34e9a31fc3803b3888f19ba1
1 /* Handle the constant pool of the Java(TM) Virtual Machine.
2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004
3 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 2, or (at your option)
10 any later version.
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.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
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 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tm.h"
29 #include "jcf.h"
30 #include "tree.h"
31 #include "java-tree.h"
32 #include "toplev.h"
33 #include "ggc.h"
35 static void set_constant_entry (CPool *, int, int, jword);
36 static int find_tree_constant (CPool *, int, tree);
37 static int find_class_or_string_constant (CPool *, int, tree);
38 static int find_name_and_type_constant (CPool *, tree, tree);
39 static tree get_tag_node (int);
40 static tree build_constant_data_ref (void);
41 static CPool *cpool_for_class (tree);
43 /* Set the INDEX'th constant in CPOOL to have the given TAG and VALUE. */
45 static void
46 set_constant_entry (CPool *cpool, int index, int tag, jword value)
48 if (cpool->data == NULL)
50 cpool->capacity = 100;
51 cpool->tags = ggc_alloc_cleared (sizeof(uint8) * cpool->capacity);
52 cpool->data = ggc_alloc_cleared (sizeof(union cpool_entry)
53 * cpool->capacity);
54 cpool->count = 1;
56 if (index >= cpool->capacity)
58 int old_cap = cpool->capacity;
59 cpool->capacity *= 2;
60 if (index >= cpool->capacity)
61 cpool->capacity = index + 10;
62 cpool->tags = ggc_realloc (cpool->tags,
63 sizeof(uint8) * cpool->capacity);
64 cpool->data = ggc_realloc (cpool->data,
65 sizeof(union cpool_entry) * cpool->capacity);
67 /* Make sure GC never sees uninitialized tag values. */
68 memset (cpool->tags + old_cap, 0, cpool->capacity - old_cap);
69 memset (cpool->data + old_cap, 0,
70 (cpool->capacity - old_cap) * sizeof (union cpool_entry));
72 if (index >= cpool->count)
73 cpool->count = index + 1;
74 cpool->tags[index] = tag;
75 cpool->data[index].w = value;
78 /* Find (or create) a constant pool entry matching TAG and VALUE. */
80 int
81 find_constant1 (CPool *cpool, int tag, jword value)
83 int i;
84 for (i = cpool->count; --i > 0; )
86 if (cpool->tags[i] == tag && cpool->data[i].w == value)
87 return i;
89 i = cpool->count == 0 ? 1 : cpool->count;
90 set_constant_entry (cpool, i, tag, value);
91 return i;
94 /* Find a double-word constant pool entry matching TAG and WORD1/WORD2. */
96 int
97 find_constant2 (CPool *cpool, int tag, jword word1, jword word2)
99 int i;
100 for (i = cpool->count - 1; --i > 0; )
102 if (cpool->tags[i] == tag
103 && cpool->data[i].w == word1
104 && cpool->data[i+1].w == word2)
105 return i;
107 i = cpool->count == 0 ? 1 : cpool->count;
108 set_constant_entry (cpool, i, tag, word1);
109 set_constant_entry (cpool, i+1, 0, word2);
110 return i;
113 static int
114 find_tree_constant (CPool *cpool, int tag, tree value)
116 int i;
117 for (i = cpool->count; --i > 0; )
119 if (cpool->tags[i] == tag && cpool->data[i].t == value)
120 return i;
122 i = cpool->count == 0 ? 1 : cpool->count;
123 set_constant_entry (cpool, i, tag, 0);
124 cpool->data[i].t = value;
125 return i;
130 find_utf8_constant (CPool *cpool, tree name)
132 if (name == NULL_TREE)
133 return 0;
134 return find_tree_constant (cpool, CONSTANT_Utf8, name);
137 static int
138 find_class_or_string_constant (CPool *cpool, int tag, tree name)
140 jword j = find_utf8_constant (cpool, name);
141 int i;
142 for (i = cpool->count; --i > 0; )
144 if (cpool->tags[i] == tag && cpool->data[i].w == j)
145 return i;
147 i = cpool->count;
148 set_constant_entry (cpool, i, tag, j);
149 return i;
153 find_class_constant (CPool *cpool, tree type)
155 return find_class_or_string_constant (cpool, CONSTANT_Class,
156 build_internal_class_name (type));
159 /* Allocate a CONSTANT_string entry given a STRING_CST. */
162 find_string_constant (CPool *cpool, tree string)
164 string = get_identifier (TREE_STRING_POINTER (string));
165 return find_class_or_string_constant (cpool, CONSTANT_String, string);
169 /* Find (or create) a CONSTANT_NameAndType matching NAME and TYPE.
170 Return its index in the constant pool CPOOL. */
172 static int
173 find_name_and_type_constant (CPool *cpool, tree name, tree type)
175 int name_index = find_utf8_constant (cpool, name);
176 int type_index = find_utf8_constant (cpool, build_java_signature (type));
177 return find_constant1 (cpool, CONSTANT_NameAndType,
178 (name_index << 16) | type_index);
181 /* Find (or create) a CONSTANT_Fieldref for DECL (a FIELD_DECL or VAR_DECL).
182 Return its index in the constant pool CPOOL. */
185 find_fieldref_index (CPool *cpool, tree decl)
187 int class_index = find_class_constant (cpool, DECL_CONTEXT (decl));
188 int name_type_index
189 = find_name_and_type_constant (cpool, DECL_NAME (decl), TREE_TYPE (decl));
190 return find_constant1 (cpool, CONSTANT_Fieldref,
191 (class_index << 16) | name_type_index);
194 /* Find (or create) a CONSTANT_Methodref for DECL (a FUNCTION_DECL).
195 Return its index in the constant pool CPOOL. */
198 find_methodref_index (CPool *cpool, tree decl)
200 return find_methodref_with_class_index (cpool, decl, DECL_CONTEXT (decl));
204 find_methodref_with_class_index (CPool *cpool, tree decl, tree mclass)
206 int class_index = find_class_constant (cpool, mclass);
207 tree name = DECL_CONSTRUCTOR_P (decl) ? init_identifier_node
208 : DECL_NAME (decl);
209 int name_type_index;
210 name_type_index =
211 find_name_and_type_constant (cpool, name, TREE_TYPE (decl));
212 return find_constant1 (cpool,
213 CLASS_INTERFACE (TYPE_NAME (mclass))
214 ? CONSTANT_InterfaceMethodref
215 : CONSTANT_Methodref,
216 (class_index << 16) | name_type_index);
219 #define PUT1(X) (*ptr++ = (X))
220 #define PUT2(X) (PUT1((X) >> 8), PUT1(X))
221 #define PUT4(X) (PUT2((X) >> 16), PUT2(X))
222 #define PUTN(P, N) (memcpy(ptr, (P), (N)), ptr += (N))
224 /* Give the number of bytes needed in a .class file for the CPOOL
225 constant pool. Includes the 2-byte constant_pool_count. */
228 count_constant_pool_bytes (CPool *cpool)
230 int size = 2;
231 int i = 1;
232 for ( ; i < cpool->count; i++)
234 size++;
235 switch (cpool->tags[i])
237 case CONSTANT_NameAndType:
238 case CONSTANT_Fieldref:
239 case CONSTANT_Methodref:
240 case CONSTANT_InterfaceMethodref:
241 case CONSTANT_Float:
242 case CONSTANT_Integer:
243 size += 4;
244 break;
245 case CONSTANT_Class:
246 case CONSTANT_String:
247 size += 2;
248 break;
249 case CONSTANT_Long:
250 case CONSTANT_Double:
251 size += 8;
252 i++;
253 break;
254 case CONSTANT_Utf8:
256 tree t = cpool->data[i].t;
257 int len = IDENTIFIER_LENGTH (t);
258 size += len + 2;
260 break;
261 default:
262 /* Second word of CONSTANT_Long and CONSTANT_Double. */
263 size--;
266 return size;
269 /* Write the constant pool CPOOL into BUFFER.
270 The length of BUFFER is LENGTH, which must match the needed length. */
272 void
273 write_constant_pool (CPool *cpool, unsigned char *buffer, int length)
275 unsigned char *ptr = buffer;
276 int i = 1;
277 union cpool_entry *datap = &cpool->data[1];
278 PUT2 (cpool->count);
279 for ( ; i < cpool->count; i++, datap++)
281 int tag = cpool->tags[i];
282 PUT1 (tag);
283 switch (tag)
285 case CONSTANT_NameAndType:
286 case CONSTANT_Fieldref:
287 case CONSTANT_Methodref:
288 case CONSTANT_InterfaceMethodref:
289 case CONSTANT_Float:
290 case CONSTANT_Integer:
291 PUT4 (datap->w);
292 break;
293 case CONSTANT_Class:
294 case CONSTANT_String:
295 PUT2 (datap->w);
296 break;
297 break;
298 case CONSTANT_Long:
299 case CONSTANT_Double:
300 PUT4(datap->w);
301 i++;
302 datap++;
303 PUT4 (datap->w);
304 break;
305 case CONSTANT_Utf8:
307 tree t = datap->t;
308 int len = IDENTIFIER_LENGTH (t);
309 PUT2 (len);
310 PUTN (IDENTIFIER_POINTER (t), len);
312 break;
316 if (ptr != buffer + length)
317 abort ();
320 static GTY(()) tree tag_nodes[13];
321 static tree
322 get_tag_node (int tag)
324 /* A Cache for build_int_cst (CONSTANT_XXX, 0). */
326 if (tag_nodes[tag] == NULL_TREE)
327 tag_nodes[tag] = build_int_cst (NULL_TREE, tag);
328 return tag_nodes[tag];
331 /* Given a class, return its constant pool, creating one if necessary. */
333 static CPool *
334 cpool_for_class (tree class)
336 CPool *cpool = TYPE_CPOOL (class);
338 if (cpool == NULL)
340 cpool = ggc_alloc_cleared (sizeof (struct CPool));
341 TYPE_CPOOL (class) = cpool;
343 return cpool;
346 /* Look for a constant pool entry that matches TAG and NAME.
347 Creates a new entry if not found.
348 TAG is one of CONSTANT_Utf8, CONSTANT_String or CONSTANT_Class.
349 NAME is an IDENTIFIER_NODE naming the Utf8 constant, string, or class.
350 Returns the index of the entry. */
353 alloc_name_constant (int tag, tree name)
355 CPool *outgoing_cpool = cpool_for_class (output_class);
356 return find_tree_constant (outgoing_cpool, tag, name);
359 /* Build an identifier for the internal name of reference type TYPE. */
361 tree
362 build_internal_class_name (tree type)
364 tree name;
365 if (TYPE_ARRAY_P (type))
366 name = build_java_signature (type);
367 else
369 name = TYPE_NAME (type);
370 if (TREE_CODE (name) != IDENTIFIER_NODE)
371 name = DECL_NAME (name);
372 name = identifier_subst (name, "", '.', '/', "");
374 return name;
377 /* Look for a CONSTANT_Class entry for CLAS, creating a new one if needed. */
380 alloc_class_constant (tree clas)
382 tree class_name = build_internal_class_name (clas);
384 return alloc_name_constant (CONSTANT_Class,
385 (unmangle_classname
386 (IDENTIFIER_POINTER(class_name),
387 IDENTIFIER_LENGTH(class_name))));
390 /* Return the decl of the data array of the current constant pool. */
392 static tree
393 build_constant_data_ref (void)
395 tree decl = TYPE_CPOOL_DATA_REF (output_class);
397 if (decl == NULL_TREE)
399 tree type;
400 tree decl_name = mangled_classname ("_CD_", output_class);
402 /* Build a type with unspecified bounds. The will make sure
403 that targets do the right thing with whatever size we end
404 up with at the end. Using bounds that are too small risks
405 assuming the data is in the small data section. */
406 type = build_array_type (ptr_type_node, NULL_TREE);
408 /* We need to lay out the type ourselves, since build_array_type
409 thinks the type is incomplete. */
410 layout_type (type);
412 decl = build_decl (VAR_DECL, decl_name, type);
413 TREE_STATIC (decl) = 1;
414 make_decl_rtl (decl);
415 TYPE_CPOOL_DATA_REF (output_class) = decl;
418 return decl;
421 /* Get the pointer value at the INDEX'th element of the constant pool. */
423 tree
424 build_ref_from_constant_pool (int index)
426 tree d = build_constant_data_ref ();
427 tree i = build_int_cst (NULL_TREE, index);
428 return build4 (ARRAY_REF, TREE_TYPE (TREE_TYPE (d)), d, i,
429 NULL_TREE, NULL_TREE);
432 /* Build an initializer for the constants field of the current constant pool.
433 Should only be called at top-level, since it may emit declarations. */
435 tree
436 build_constants_constructor (void)
438 CPool *outgoing_cpool = cpool_for_class (current_class);
439 tree tags_value, data_value;
440 tree cons;
441 tree tags_list = NULL_TREE;
442 tree data_list = NULL_TREE;
443 int i;
444 for (i = outgoing_cpool->count; --i > 0; )
446 tags_list
447 = tree_cons (NULL_TREE, get_tag_node (outgoing_cpool->tags[i]),
448 tags_list);
449 data_list
450 = tree_cons (NULL_TREE, build_utf8_ref (outgoing_cpool->data[i].t),
451 data_list);
453 if (outgoing_cpool->count > 0)
455 tree data_decl, tags_decl, tags_type;
456 tree max_index = build_int_cst (sizetype, outgoing_cpool->count - 1);
457 tree index_type = build_index_type (max_index);
459 /* Add dummy 0'th element of constant pool. */
460 tags_list = tree_cons (NULL_TREE, get_tag_node (0), tags_list);
461 data_list = tree_cons (NULL_TREE, null_pointer_node, data_list);
463 data_decl = build_constant_data_ref ();
464 TREE_TYPE (data_decl) = build_array_type (ptr_type_node, index_type),
465 DECL_INITIAL (data_decl) = build_constructor (TREE_TYPE (data_decl),
466 data_list);
467 DECL_SIZE (data_decl) = TYPE_SIZE (TREE_TYPE (data_decl));
468 DECL_SIZE_UNIT (data_decl) = TYPE_SIZE_UNIT (TREE_TYPE (data_decl));
469 rest_of_decl_compilation (data_decl, 1, 0);
470 data_value = build_address_of (data_decl);
472 tags_type = build_array_type (unsigned_byte_type_node, index_type);
473 tags_decl = build_decl (VAR_DECL, mangled_classname ("_CT_",
474 current_class),
475 tags_type);
476 TREE_STATIC (tags_decl) = 1;
477 DECL_INITIAL (tags_decl) = build_constructor (tags_type, tags_list);
478 rest_of_decl_compilation (tags_decl, 1, 0);
479 tags_value = build_address_of (tags_decl);
481 else
483 data_value = null_pointer_node;
484 tags_value = null_pointer_node;
486 START_RECORD_CONSTRUCTOR (cons, constants_type_node);
487 PUSH_FIELD_VALUE (cons, "size",
488 build_int_cst (NULL_TREE, outgoing_cpool->count));
489 PUSH_FIELD_VALUE (cons, "tags", tags_value);
490 PUSH_FIELD_VALUE (cons, "data", data_value);
491 FINISH_RECORD_CONSTRUCTOR (cons);
492 return cons;
495 #include "gt-java-constants.h"