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)
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. */
27 #include "coretypes.h"
31 #include "java-tree.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. */
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
)
56 if (index
>= cpool
->capacity
)
58 int old_cap
= cpool
->capacity
;
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. */
81 find_constant1 (CPool
*cpool
, int tag
, jword value
)
84 for (i
= cpool
->count
; --i
> 0; )
86 if (cpool
->tags
[i
] == tag
&& cpool
->data
[i
].w
== value
)
89 i
= cpool
->count
== 0 ? 1 : cpool
->count
;
90 set_constant_entry (cpool
, i
, tag
, value
);
94 /* Find a double-word constant pool entry matching TAG and WORD1/WORD2. */
97 find_constant2 (CPool
*cpool
, int tag
, jword word1
, jword word2
)
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
)
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
);
114 find_tree_constant (CPool
*cpool
, int tag
, tree value
)
117 for (i
= cpool
->count
; --i
> 0; )
119 if (cpool
->tags
[i
] == tag
&& cpool
->data
[i
].t
== value
)
122 i
= cpool
->count
== 0 ? 1 : cpool
->count
;
123 set_constant_entry (cpool
, i
, tag
, 0);
124 cpool
->data
[i
].t
= value
;
130 find_utf8_constant (CPool
*cpool
, tree name
)
132 if (name
== NULL_TREE
)
134 return find_tree_constant (cpool
, CONSTANT_Utf8
, name
);
138 find_class_or_string_constant (CPool
*cpool
, int tag
, tree name
)
140 jword j
= find_utf8_constant (cpool
, name
);
142 for (i
= cpool
->count
; --i
> 0; )
144 if (cpool
->tags
[i
] == tag
&& cpool
->data
[i
].w
== j
)
148 set_constant_entry (cpool
, i
, tag
, j
);
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. */
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
));
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
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
)
232 for ( ; i
< cpool
->count
; i
++)
235 switch (cpool
->tags
[i
])
237 case CONSTANT_NameAndType
:
238 case CONSTANT_Fieldref
:
239 case CONSTANT_Methodref
:
240 case CONSTANT_InterfaceMethodref
:
242 case CONSTANT_Integer
:
246 case CONSTANT_String
:
250 case CONSTANT_Double
:
256 tree t
= cpool
->data
[i
].t
;
257 int len
= IDENTIFIER_LENGTH (t
);
262 /* Second word of CONSTANT_Long and CONSTANT_Double. */
269 /* Write the constant pool CPOOL into BUFFER.
270 The length of BUFFER is LENGTH, which must match the needed length. */
273 write_constant_pool (CPool
*cpool
, unsigned char *buffer
, int length
)
275 unsigned char *ptr
= buffer
;
277 union cpool_entry
*datap
= &cpool
->data
[1];
279 for ( ; i
< cpool
->count
; i
++, datap
++)
281 int tag
= cpool
->tags
[i
];
285 case CONSTANT_NameAndType
:
286 case CONSTANT_Fieldref
:
287 case CONSTANT_Methodref
:
288 case CONSTANT_InterfaceMethodref
:
290 case CONSTANT_Integer
:
294 case CONSTANT_String
:
299 case CONSTANT_Double
:
308 int len
= IDENTIFIER_LENGTH (t
);
310 PUTN (IDENTIFIER_POINTER (t
), len
);
316 if (ptr
!= buffer
+ length
)
320 static GTY(()) tree tag_nodes
[13];
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. */
334 cpool_for_class (tree
class)
336 CPool
*cpool
= TYPE_CPOOL (class);
340 cpool
= ggc_alloc_cleared (sizeof (struct CPool
));
341 TYPE_CPOOL (class) = 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. */
362 build_internal_class_name (tree type
)
365 if (TYPE_ARRAY_P (type
))
366 name
= build_java_signature (type
);
369 name
= TYPE_NAME (type
);
370 if (TREE_CODE (name
) != IDENTIFIER_NODE
)
371 name
= DECL_NAME (name
);
372 name
= identifier_subst (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
,
386 (IDENTIFIER_POINTER(class_name
),
387 IDENTIFIER_LENGTH(class_name
))));
390 /* Return the decl of the data array of the current constant pool. */
393 build_constant_data_ref (void)
395 tree decl
= TYPE_CPOOL_DATA_REF (output_class
);
397 if (decl
== NULL_TREE
)
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. */
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
;
421 /* Get the pointer value at the INDEX'th element of the constant pool. */
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. */
436 build_constants_constructor (void)
438 CPool
*outgoing_cpool
= cpool_for_class (current_class
);
439 tree tags_value
, data_value
;
441 tree tags_list
= NULL_TREE
;
442 tree data_list
= NULL_TREE
;
444 for (i
= outgoing_cpool
->count
; --i
> 0; )
447 = tree_cons (NULL_TREE
, get_tag_node (outgoing_cpool
->tags
[i
]),
450 = tree_cons (NULL_TREE
, build_utf8_ref (outgoing_cpool
->data
[i
].t
),
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
),
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_",
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
);
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
);
495 #include "gt-java-constants.h"