1 /* Handle the constant pool of the Java(TM) Virtual Machine.
2 Copyright (C) 1997 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU CC; see the file COPYING. If not, write to
17 the Free Software Foundation, 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
20 Java and all Java-based marks are trademarks or registered trademarks
21 of Sun Microsystems, Inc. in the United States and other countries.
22 The Free Software Foundation is independent of Sun Microsystems, Inc. */
28 #include "java-tree.h"
31 extern struct obstack permanent_obstack
;
33 static void set_constant_entry
PROTO ((CPool
*, int, int, jword
));
34 static int find_class_or_string_constant
PROTO ((CPool
*, int, tree
));
35 static int find_name_and_type_constant
PROTO ((CPool
*, tree
, tree
));
36 static tree get_tag_node
PROTO ((int));
37 static tree build_constant_data_ref
PROTO ((void));
39 /* Set the INDEX'th constant in CPOOL to have the given TAG and VALUE. */
42 set_constant_entry (cpool
, index
, tag
, value
)
48 if (cpool
->data
== NULL
)
50 cpool
->capacity
= 100;
51 cpool
->tags
= (uint8
*) xmalloc (sizeof(uint8
) * cpool
->capacity
);
52 cpool
->data
= (jword
*) xmalloc (sizeof(jword
) * cpool
->capacity
);
55 if (index
>= cpool
->capacity
)
58 if (index
>= cpool
->capacity
)
59 cpool
->capacity
= index
+ 10;
60 cpool
->tags
= (uint8
*) xrealloc (cpool
->tags
,
61 sizeof(uint8
) * cpool
->capacity
);
62 cpool
->data
= (jword
*) xrealloc (cpool
->data
,
63 sizeof(jword
) * cpool
->capacity
);
65 if (index
>= cpool
->count
)
66 cpool
->count
= index
+ 1;
67 cpool
->tags
[index
] = tag
;
68 cpool
->data
[index
] = value
;
71 /* Find (or create) a constant pool entry matching TAG and VALUE. */
74 find_constant1 (cpool
, tag
, value
)
80 for (i
= cpool
->count
; --i
> 0; )
82 if (cpool
->tags
[i
] == tag
&& cpool
->data
[i
] == value
)
85 i
= cpool
->count
== 0 ? 1 : cpool
->count
;
86 set_constant_entry (cpool
, i
, tag
, value
);
90 /* Find a double-word constant pool entry matching TAG and WORD1/WORD2. */
93 find_constant2 (cpool
, tag
, word1
, word2
)
99 for (i
= cpool
->count
- 1; --i
> 0; )
101 if (cpool
->tags
[i
] == tag
102 && cpool
->data
[i
] == word1
103 && cpool
->data
[i
+1] == word2
)
106 i
= cpool
->count
== 0 ? 1 : cpool
->count
;
107 set_constant_entry (cpool
, i
, tag
, word1
);
108 set_constant_entry (cpool
, i
+1, 0, word2
);
113 find_utf8_constant (cpool
, name
)
117 if (name
== NULL_TREE
)
119 return find_constant1 (cpool
, CONSTANT_Utf8
, (jword
) name
);
123 find_class_or_string_constant (cpool
, tag
, name
)
128 int j
= find_utf8_constant (cpool
, name
);
130 for (i
= cpool
->count
; --i
> 0; )
132 if (cpool
->tags
[i
] == tag
&& cpool
->data
[i
] == (jword
) j
)
136 set_constant_entry (cpool
, i
, tag
, (jword
) j
);
141 find_class_constant (cpool
, type
)
145 return find_class_or_string_constant (cpool
, CONSTANT_Class
,
146 build_internal_class_name (type
));
149 /* Allocate a CONSTANT_string entry given a STRING_CST. */
152 find_string_constant (cpool
, string
)
156 string
= get_identifier (TREE_STRING_POINTER (string
));
157 return find_class_or_string_constant (cpool
, CONSTANT_String
, string
);
161 /* Find (or create) a CONSTANT_NameAndType matching NAME and TYPE.
162 Return its index in the constant pool CPOOL. */
165 find_name_and_type_constant (cpool
, name
, type
)
170 int name_index
= find_utf8_constant (cpool
, name
);
171 int type_index
= find_utf8_constant (cpool
, build_java_signature (type
));
172 return find_constant1 (cpool
, CONSTANT_NameAndType
,
173 (name_index
<< 16) | type_index
);
176 /* Find (or create) a CONSTANT_Fieldref for DECL (a FIELD_DECL or VAR_DECL).
177 Return its index in the constant pool CPOOL. */
180 find_fieldref_index (cpool
, decl
)
184 int class_index
= find_class_constant (cpool
, DECL_CONTEXT (decl
));
186 = find_name_and_type_constant (cpool
, DECL_NAME (decl
), TREE_TYPE (decl
));
187 return find_constant1 (cpool
, CONSTANT_Fieldref
,
188 (class_index
<< 16) | name_type_index
);
191 /* Find (or create) a CONSTANT_Methodref for DECL (a FUNCTION_DECL).
192 Return its index in the constant pool CPOOL. */
195 find_methodref_index (cpool
, decl
)
199 tree mclass
= DECL_CONTEXT (decl
);
200 int class_index
= find_class_constant (cpool
, mclass
);
201 tree name
= DECL_CONSTRUCTOR_P (decl
) ? init_identifier_node
204 = find_name_and_type_constant (cpool
, name
, TREE_TYPE (decl
));
205 return find_constant1 (cpool
,
206 CLASS_INTERFACE (TYPE_NAME (mclass
))
207 ? CONSTANT_InterfaceMethodref
208 : CONSTANT_Methodref
,
209 (class_index
<< 16) | name_type_index
);
212 #define PUT1(X) (*ptr++ = (X))
213 #define PUT2(X) (PUT1((X) >> 8), PUT1(X))
214 #define PUT4(X) (PUT2((X) >> 16), PUT2(X))
215 #define PUTN(P, N) (bcopy(P, ptr, N), ptr += (N))
217 /* Give the number of bytes needed in a .class file for the CPOOL
218 constant pool. Includes the 2-byte constant_pool_count. */
221 count_constant_pool_bytes (cpool
)
226 for ( ; i
< cpool
->count
; i
++)
229 switch (cpool
->tags
[i
])
231 case CONSTANT_NameAndType
:
232 case CONSTANT_Fieldref
:
233 case CONSTANT_Methodref
:
234 case CONSTANT_InterfaceMethodref
:
236 case CONSTANT_Integer
:
240 case CONSTANT_String
:
244 case CONSTANT_Double
:
250 tree t
= (tree
) cpool
->data
[i
];
251 int len
= IDENTIFIER_LENGTH (t
);
256 /* Second word of CONSTANT_Long and CONSTANT_Double. */
263 /* Write the constant pool CPOOL into BUFFER.
264 The length of BUFFER is LENGTH, which must match the needed length. */
267 write_constant_pool (cpool
, buffer
, length
)
269 unsigned char* buffer
;
272 unsigned char* ptr
= buffer
;
274 jword
*datap
= &cpool
->data
[1];
276 for ( ; i
< cpool
->count
; i
++, datap
++)
278 int tag
= cpool
->tags
[i
];
282 case CONSTANT_NameAndType
:
283 case CONSTANT_Fieldref
:
284 case CONSTANT_Methodref
:
285 case CONSTANT_InterfaceMethodref
:
287 case CONSTANT_Integer
:
291 case CONSTANT_String
:
296 case CONSTANT_Double
:
304 tree t
= (tree
) *datap
;
305 int len
= IDENTIFIER_LENGTH (t
);
307 PUTN (IDENTIFIER_POINTER (t
), len
);
312 if (ptr
!= buffer
+ length
)
313 fatal("internal error - incorrect constant pool");
316 CPool
*outgoing_cpool
;
318 /* If non-NULL, an ADDR_EXPR referencing a VAR_DECL containing
319 the constant data array for the current class. */
320 tree current_constant_pool_data_ref
;
322 /* A Cache for build_int_2 (CONSTANT_XXX, 0). */
323 static tree tag_nodes
[13];
329 if (tag_nodes
[tag
] == NULL_TREE
)
331 push_obstacks (&permanent_obstack
, &permanent_obstack
);
332 tag_nodes
[tag
] = build_int_2 (tag
, 0);
335 return tag_nodes
[tag
];
338 /* Look for a constant pool entry that matches TAG and NAME.
339 Creates a new entry if not found.
340 TAG is one of CONSTANT_Utf8, CONSTANT_String or CONSTANT_Class.
341 NAME is an IDENTIFIER_NODE naming the Utf8 constant, string, or class.
342 Returns the index of the entry. */
345 alloc_name_constant (tag
, name
)
349 return find_constant1 (outgoing_cpool
, tag
, (jword
) name
);
352 /* Build an identifier for the internal name of reference type TYPE. */
355 build_internal_class_name (type
)
359 if (TYPE_ARRAY_P (type
))
360 name
= build_java_signature (type
);
363 name
= TYPE_NAME (type
);
364 if (TREE_CODE (name
) != IDENTIFIER_NODE
)
365 name
= DECL_NAME (name
);
366 name
= identifier_subst (name
, "", '.', '/', "");
371 /* Look for a CONSTANT_Class entry for CLAS, creating a new one if needed. */
374 alloc_class_constant (clas
)
377 tree class_name
= build_internal_class_name (clas
);
379 return alloc_name_constant (CONSTANT_Class
,
381 (IDENTIFIER_POINTER(class_name
),
382 IDENTIFIER_LENGTH(class_name
))));
385 /* Return a reference to the data array of the current constant pool. */
388 build_constant_data_ref ()
390 if (current_constant_pool_data_ref
== NULL_TREE
)
393 tree decl_name
= mangled_classname ("_CD_", current_class
);
394 push_obstacks (&permanent_obstack
, &permanent_obstack
);
395 decl
= build_decl (VAR_DECL
, decl_name
,
396 build_array_type (ptr_type_node
,
397 one_elt_array_domain_type
));
398 TREE_STATIC (decl
) = 1;
399 make_decl_rtl (decl
, NULL
, 1);
401 current_constant_pool_data_ref
402 = build1 (ADDR_EXPR
, ptr_type_node
, decl
);
404 return current_constant_pool_data_ref
;
407 /* Get the pointer value at the INDEX'th element of the constant pool. */
410 build_ref_from_constant_pool (index
)
413 tree t
= build_constant_data_ref ();
414 index
*= int_size_in_bytes (ptr_type_node
);
415 t
= fold (build (PLUS_EXPR
, ptr_type_node
,
416 t
, build_int_2 (index
, 0)));
417 return build1 (INDIRECT_REF
, ptr_type_node
, t
);
420 /* Build an initializer for the constants field of the current constal pool.
421 Should only be called at top-level, since it may emit declarations. */
424 build_constants_constructor ()
426 tree tags_value
, data_value
;
428 tree tags_list
= NULL_TREE
;
429 tree data_list
= NULL_TREE
;
431 for (i
= outgoing_cpool
->count
; --i
> 0; )
434 = tree_cons (NULL_TREE
, get_tag_node (outgoing_cpool
->tags
[i
]),
437 = tree_cons (NULL_TREE
, build_utf8_ref ((tree
)outgoing_cpool
->data
[i
]),
440 if (outgoing_cpool
->count
> 0)
443 tree data_decl
, tags_decl
, tags_type
;
444 tree max_index
= build_int_2 (outgoing_cpool
->count
- 1, 0);
445 TREE_TYPE (max_index
) = sizetype
;
446 index_type
= build_index_type (max_index
);
448 /* Add dummy 0'th element of constant pool. */
449 tags_list
= tree_cons (NULL_TREE
, get_tag_node (0), tags_list
);
450 data_list
= tree_cons (NULL_TREE
, null_pointer_node
, data_list
);
452 data_decl
= TREE_OPERAND (build_constant_data_ref (), 0);
453 TREE_TYPE (data_decl
) = build_array_type (ptr_type_node
, index_type
),
454 DECL_INITIAL (data_decl
) = build (CONSTRUCTOR
, TREE_TYPE (data_decl
),
455 NULL_TREE
, data_list
);
456 DECL_SIZE (data_decl
) = TYPE_SIZE (TREE_TYPE (data_decl
));
457 rest_of_decl_compilation (data_decl
, (char*) 0, 1, 0);
458 data_value
= build_address_of (data_decl
);
460 tags_type
= build_array_type (unsigned_byte_type_node
, index_type
);
461 tags_decl
= build_decl (VAR_DECL
, mangled_classname ("_CT_",
464 TREE_STATIC (tags_decl
) = 1;
465 DECL_INITIAL (tags_decl
) = build (CONSTRUCTOR
, tags_type
,
466 NULL_TREE
, tags_list
);
467 rest_of_decl_compilation (tags_decl
, (char*) 0, 1, 0);
468 tags_value
= build_address_of (tags_decl
);
472 data_value
= null_pointer_node
;
473 tags_value
= null_pointer_node
;
475 START_RECORD_CONSTRUCTOR (cons
, constants_type_node
);
476 PUSH_FIELD_VALUE (cons
, "size", build_int_2 (outgoing_cpool
->count
, 0));
477 PUSH_FIELD_VALUE (cons
, "tags", tags_value
);
478 PUSH_FIELD_VALUE (cons
, "data", data_value
);
479 FINISH_RECORD_CONSTRUCTOR (cons
);