OSDN Git Service

gcc:
[pf3gnuchains/gcc-fork.git] / gcc / java / java-tree.h
1 /* Definitions for parsing and type checking for the GNU compiler for
2    the Java(TM) language.
3    Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  
22
23 Java and all Java-based marks are trademarks or registered trademarks
24 of Sun Microsystems, Inc. in the United States and other countries.
25 The Free Software Foundation is independent of Sun Microsystems, Inc.  */
26
27 /* Hacked by Per Bothner <bothner@cygnus.com> February 1996. */
28
29 #ifndef GCC_JAVA_TREE_H
30 #define GCC_JAVA_TREE_H
31
32 #include "hashtab.h"
33
34 /* Java language-specific tree codes.  */
35 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) SYM,
36 enum java_tree_code {
37   __DUMMY = LAST_AND_UNUSED_TREE_CODE,
38 #include "java-tree.def"
39   LAST_JAVA_TREE_CODE
40 };
41 #undef DEFTREECODE
42
43 struct JCF;
44
45 /* Usage of TREE_LANG_FLAG_?:
46    0: IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (in IDENTIFIER_NODE)
47       RESOLVE_EXPRESSION_NAME_P (in EXPR_WITH_FILE_LOCATION)
48       FOR_LOOP_P (in LOOP_EXPR)
49       SUPPRESS_UNREACHABLE_ERROR (for other _EXPR nodes)
50       ANONYMOUS_CLASS_P (in RECORD_TYPE)
51       ARG_FINAL_P (in TREE_LIST)
52    1: CLASS_HAS_SUPER_FLAG (in TREE_VEC).
53       IS_A_CLASSFILE_NAME (in IDENTIFIER_NODE)
54       COMPOUND_ASSIGN_P (in EXPR (binop_*))
55       LOCAL_CLASS_P (in RECORD_TYPE)
56       BLOCK_IS_IMPLICIT (in BLOCK)
57       JAVA_FILE_P (in TREE_LIST in current_file_list)
58    2: RETURN_MAP_ADJUSTED (in TREE_VEC).
59       QUALIFIED_P (in IDENTIFIER_NODE)
60       PRIMARY_P (in EXPR_WITH_FILE_LOCATION)
61       MODIFY_EXPR_FROM_INITIALIZATION_P (in MODIFY_EXPR)
62       CLASS_METHOD_CHECKED_P (in RECORD_TYPE) 
63       CLASS_FILE_P (in TREE_LIST in current_file_list)
64    3: IS_AN_IMPORT_ON_DEMAND_P (in IDENTIFIER_NODE)
65       RESOLVE_PACKAGE_NAME_P (in EXPR_WITH_FILE_LOCATION)
66       SWITCH_HAS_DEFAULT (in SWITCH_EXPR)
67       ZIP_FILE_P (in TREE_LIST in current_file_list)
68       HAS_FINALIZER (in RECORD_TYPE)
69    4: IS_A_COMMAND_LINE_FILENAME_P (in IDENTIFIER_NODE)
70       RESOLVE_TYPE_NAME_P (in EXPR_WITH_FILE_LOCATION)
71       CALL_USING_SUPER (in CALL_EXPR)
72       IS_ARRAY_LENGTH_ACCESS (in INDIRECT_REF)
73    5: HAS_BEEN_ALREADY_PARSED_P (in IDENTIFIER_NODE)
74       IS_BREAK_STMT_P (in EXPR_WITH_FILE_LOCATION)
75       IS_CRAFTED_STRING_BUFFER_P (in CALL_EXPR)
76       IS_INIT_CHECKED (in SAVE_EXPR)
77    6: CAN_COMPLETE_NORMALLY (in statement nodes)
78       OUTER_FIELD_ACCESS_IDENTIFIER_P (in IDENTIFIER_NODE)
79
80    Usage of TYPE_LANG_FLAG_?:
81    0: CLASS_ACCESS0_GENERATED_P (in RECORD_TYPE)
82    1: TYPE_ARRAY_P (in RECORD_TYPE).
83    2: CLASS_PARSED_P (in RECORD_TYPE).
84    3: CLASS_FROM_SOURCE_P (in RECORD_TYPE).
85    4: CLASS_P (in RECORD_TYPE).
86    5: CLASS_FROM_CURRENTLY_COMPILED_SOURCE_P (in RECORD_TYPE)
87    6: CLASS_BEING_LAIDOUT (in RECORD_TYPE)
88
89    Usage of DECL_LANG_FLAG_?:
90    0: METHOD_DEPRECATED (in FUNCTION_DECL).
91       FIELD_DEPRECATED (in FIELD_DECL).
92       CLASS_DEPRECATED (in TYPE_DECL).
93    1: METHOD_PUBLIC (in FUNCTION_DECL).
94       FIELD_PUBLIC (in FIELD_DECL).
95       CLASS_PUBLIC (in TYPE_DECL).
96    2: METHOD_STATIC (in FUNCTION_DECL).
97       (But note that FIELD_STATIC uses TREE_STATIC!)
98       FIELD_SYNTHETIC (in FIELD_DECL)
99       CLASS_COMPLETE_P (in TYPE_DECL)
100    3: METHOD_FINAL (in FUNCTION_DECL)
101       FIELD_FINAL (in FIELD_DECL)
102       CLASS_FINAL (in TYPE_DECL)
103       DECL_FINAL (in any decl)
104    4: METHOD_SYNCHRONIZED (in FUNCTION_DECL).
105       LABEL_IN_SUBR (in LABEL_DECL)
106       CLASS_INTERFACE (in TYPE_DECL)
107       FIELD_VOLATILE (int FIELD_DECL)
108    5: METHOD_ABSTRACT (in FUNCTION_DECL).
109       LABEL_IS_SUBR_START (in LABEL_DECL)
110       CLASS_ABSTRACT (in TYPE_DECL)
111       FIELD_TRANSIENT (in FIELD_DECL)
112    6: METHOD_TRANSIENT (in FUNCTION_DECL)
113       LABEL_CHANGED (in LABEL_DECL)
114       CLASS_SUPER (in TYPE_DECL, ACC_SUPER flag)
115       FIELD_LOCAL_ALIAS (in FIELD_DECL)
116    7: DECL_CONSTRUCTOR_P (in FUNCTION_DECL).
117       CLASS_STATIC (in TYPE_DECL)
118       FIELD_LOCAL_ALIAS_USED (in FIELD_DECL)
119       FIELD_THISN (in FIELD_DECL)
120 */
121
122 /* True if the class whose TYPE_BINFO this is has a superclass.
123    (True of all classes except Object.) */
124 #define CLASS_HAS_SUPER_FLAG(BINFO) TREE_LANG_FLAG_1(BINFO)
125 #define CLASS_HAS_SUPER(TYPE) CLASS_HAS_SUPER_FLAG (TYPE_BINFO (TYPE))
126
127 /* Return the supertype of class TYPE, or NULL_TREE is it has none. */
128 #define CLASSTYPE_SUPER(TYPE) (CLASS_HAS_SUPER (TYPE) ? \
129   BINFO_TYPE (TREE_VEC_ELT (TYPE_BINFO_BASETYPES (TYPE), 0)) : NULL_TREE)
130
131 /* True if the class we are compiling is a .java source file;
132    false if it is a .class bytecode file. */
133 extern int compiling_from_source;
134
135 /* The class defined by the actual (main) file we are compiling. */
136 #define main_class \
137   java_global_trees[JTI_MAIN_CLASS]
138
139 /* The class we are currently processing. */
140 #define current_class \
141   java_global_trees[JTI_CURRENT_CLASS]
142
143 /* List of all class DECLs seen so far.  */
144 #define all_class_list \
145   java_global_trees[JTI_ALL_CLASS_LIST]
146
147 /* List of all class filenames seen so far.  */
148 #define all_class_filename java_global_trees [JTI_ALL_CLASS_FILENAME]
149
150 /* List of virtual method decls called in this translation unit, used to 
151    generate virtual method offset symbol table. */
152 #define otable_methods java_global_trees [JTI_OTABLE_METHODS]
153
154 /* The virtual method offset table. This is emitted as uninitialized data of 
155    the required length, and filled out at run time during class linking. */
156 #define otable_decl java_global_trees [JTI_OTABLE_DECL]
157
158 /* The virtual method offset symbol table. Used by the runtime to fill out the
159    otable. */
160 #define otable_syms_decl java_global_trees [JTI_OTABLE_SYMS_DECL]
161
162 extern int flag_emit_class_files;
163
164 extern int flag_filelist_file;
165
166 /* When nonzero, permit the use of the assert keyword.  */
167
168 extern int flag_assert;
169
170 /* When nonzero, assume all native functions are implemented with
171    JNI, not CNI.  */
172
173 extern int flag_jni;
174
175 /* When nonzero, report the now deprecated empty statements.  */
176
177 extern int flag_extraneous_semicolon;
178
179 /* When nonzero, report use of deprecated classes, methods, or fields.  */
180 extern int flag_deprecated;
181
182 /* When nonzero, always check for a non gcj generated classes archive.  */
183
184 extern int flag_force_classes_archive_check;
185
186 /* When nonzero, we emit xref strings. Values of the flag for xref
187    backends are defined in xref.h.  */
188
189 extern int flag_emit_xref;
190
191 /* When doing xrefs, tell when not to fold.   */
192 extern int do_not_fold;
193
194 /* Resource name.  */
195 extern const char *resource_name;
196
197 /* Turned to 1 if -Wall was encountered. See lang.c for their meanings.  */
198 extern int flag_wall;
199 extern int flag_redundant;
200 extern int flag_not_overriding;
201 extern int flag_static_local_jdk1_1;
202
203 /* When nonzero, warn when source file is newer than matching class
204    file.  */
205 extern int flag_newer;
206
207 /* When nonzero, call a library routine to do integer divisions. */
208 extern int flag_use_divide_subroutine;
209
210 /* When nonzero, generate code for the Boehm GC.  */
211 extern int flag_use_boehm_gc;
212
213 /* When nonzero, assume the runtime uses a hash table to map an
214    object to its synchronization structure.  */
215 extern int flag_hash_synchronization;
216
217 /* When nonzero, generate checks for references to NULL.  */
218 extern int flag_check_references;
219
220 /* Used through STATIC_CLASS_INIT_OPT_P to check whether static
221    initialization optimization should be performed.  */
222 extern int flag_optimize_sci;
223
224 /* When nonzero, use offset tables for virtual method calls
225    in order to improve binary compatibility. */
226 extern int flag_indirect_dispatch;
227
228 /* When zero, don't generate runtime array store checks. */
229 extern int flag_store_check;
230
231 /* Encoding used for source files.  */
232 extern const char *current_encoding;
233
234 /* The Java .class file that provides main_class;  the main input file. */
235 extern GTY(()) struct JCF * current_jcf;
236
237 typedef struct CPool constant_pool;
238
239 #define CONSTANT_ResolvedFlag 16
240
241 /* The cpool->data[i] for a ResolvedString points to a STRING_CST. */
242 #define CONSTANT_ResolvedString    (CONSTANT_String+CONSTANT_ResolvedFlag)
243
244 /* The cpool->data[i] for a ResolvedClass points to a RECORD_TYPE. */
245 #define CONSTANT_ResolvedClass     (CONSTANT_Class+CONSTANT_ResolvedFlag)
246
247 #define CPOOL_UTF(CPOOL, INDEX) ((CPOOL)->data[INDEX].t)
248
249 /* A NameAndType constant is represented as a TREE_LIST.
250    The type is the signature string (as an IDENTIFIER_NODE).  */
251
252 #define NAME_AND_TYPE_NAME(CPOOL, IDX) \
253   CPOOL_UTF(CPOOL, CPOOL_USHORT1(CPOOL, IDX))
254 #define NAME_AND_TYPE_SIGNATURE(CPOOL, IDX) \
255   CPOOL_UTF(CPOOL, CPOOL_USHORT2(CPOOL, IDX))
256
257 /* A FieldRef, MethodRef or InterfaceMethodRef constant
258    is represented as a TREE_LIST. */
259
260 #define COMPONENT_REF_CLASS_INDEX(CPOOL, IDX) CPOOL_USHORT1(CPOOL, IDX)
261 #define COMPONENT_REF_NAME_AND_TYPE(CPOOL, IDX) CPOOL_USHORT2(CPOOL, IDX)
262 #define COMPONENT_REF_NAME(CPOOL, IDX) \
263   NAME_AND_TYPE_NAME (CPOOL, COMPONENT_REF_NAME_AND_TYPE(CPOOL, IDX))
264 #define COMPONENT_REF_SIGNATURE(CPOOL, IDX) \
265   NAME_AND_TYPE_SIGNATURE (CPOOL, COMPONENT_REF_NAME_AND_TYPE(CPOOL, IDX))
266
267 extern GTY(()) tree java_lang_cloneable_identifier_node;
268 extern GTY(()) tree java_io_serializable_identifier_node;
269
270 enum java_tree_index
271 {
272   JTI_PROMOTED_BYTE_TYPE_NODE,
273   JTI_PROMOTED_SHORT_TYPE_NODE,
274   JTI_PROMOTED_CHAR_TYPE_NODE,
275   JTI_PROMOTED_BOOLEAN_TYPE_NODE,
276
277   JTI_BYTE_TYPE_NODE,
278   JTI_SHORT_TYPE_NODE,
279   JTI_INT_TYPE_NODE,
280   JTI_LONG_TYPE_NODE,
281   
282   JTI_UNSIGNED_BYTE_TYPE_NODE,
283   JTI_UNSIGNED_SHORT_TYPE_NODE,
284   JTI_UNSIGNED_INT_TYPE_NODE,
285   JTI_UNSIGNED_LONG_TYPE_NODE,
286   
287   JTI_DECIMAL_INT_MAX_NODE,
288   JTI_DECIMAL_LONG_MAX_NODE,
289
290   JTI_BOOLEAN_TYPE_NODE,
291
292   JTI_OBJECT_TYPE_NODE,
293   JTI_UNQUALIFIED_OBJECT_ID_NODE,
294   JTI_OBJECT_PTR_TYPE_NODE,
295   JTI_STRING_TYPE_NODE,
296   JTI_STRING_PTR_TYPE_NODE,
297   JTI_THROWABLE_TYPE_NODE,
298   JTI_EXCEPTION_TYPE_NODE,
299   JTI_RUNTIME_EXCEPTION_TYPE_NODE,
300   JTI_ERROR_EXCEPTION_TYPE_NODE,
301   JTI_RAWDATA_PTR_TYPE_NODE,
302   JTI_CLASS_NOT_FOUND_TYPE_NODE,
303   JTI_NO_CLASS_DEF_FOUND_TYPE_NODE,
304
305   JTI_BYTE_ARRAY_TYPE_NODE,
306   JTI_SHORT_ARRAY_TYPE_NODE,
307   JTI_INT_ARRAY_TYPE_NODE,
308   JTI_LONG_ARRAY_TYPE_NODE,
309   JTI_BOOLEAN_ARRAY_TYPE_NODE,
310   JTI_CHAR_ARRAY_TYPE_NODE,
311   JTI_DOUBLE_ARRAY_TYPE_NODE,
312   JTI_FLOAT_ARRAY_TYPE_NODE,
313   JTI_ARRAY_ARRAY_TYPE_NODE,
314   JTI_OBJECT_ARRAY_TYPE_NODE,
315   JTI_STRING_ARRAY_TYPE_NODE,
316   JTI_BOOLEAN_ARRAY_VTABLE,
317   JTI_BYTE_ARRAY_VTABLE,
318   JTI_CHAR_ARRAY_VTABLE,
319   JTI_SHORT_ARRAY_VTABLE,
320   JTI_INT_ARRAY_VTABLE,
321   JTI_LONG_ARRAY_VTABLE,
322   JTI_FLOAT_ARRAY_VTABLE,
323   JTI_DOUBLE_ARRAY_VTABLE,
324   JTI_TYPE_IDENTIFIER_NODE,      
325   JTI_INIT_IDENTIFIER_NODE,      
326   JTI_CLINIT_IDENTIFIER_NODE,      
327   JTI_FINIT_IDENTIFIER_NODE,      
328   JTI_INSTINIT_IDENTIFIER_NODE,
329   JTI_VOID_SIGNATURE_NODE,       
330   JTI_LENGTH_IDENTIFIER_NODE,  
331   JTI_FINALIZE_IDENTIFIER_NODE,
332   JTI_THIS_IDENTIFIER_NODE,  
333   JTI_SUPER_IDENTIFIER_NODE,  
334   JTI_CONTINUE_IDENTIFIER_NODE,  
335   JTI_ACCESS0_IDENTIFIER_NODE, 
336   JTI_CLASSDOLLAR_IDENTIFIER_NODE,
337   JTI_ONE_ELT_ARRAY_DOMAIN_TYPE,
338
339   JTI_RETURN_ADDRESS_TYPE_NODE,
340
341   JTI_BOOLEAN_TRUE_NODE, 
342   JTI_BOOLEAN_FALSE_NODE,
343
344   JTI_LONG_ZERO_NODE,
345   JTI_FLOAT_ZERO_NODE,
346   JTI_DOUBLE_ZERO_NODE,
347   JTI_INTEGER_TWO_NODE,
348   JTI_INTEGER_FOUR_NODE,
349   JTI_EMPTY_STMT_NODE,
350
351   JTI_METHODTABLE_TYPE,
352   JTI_METHODTABLE_PTR_TYPE,
353
354   JTI_UTF8CONST_TYPE,
355   JTI_UTF8CONST_PTR_TYPE,
356
357   JTI_CLASS_TYPE_NODE,
358   JTI_CLASS_PTR_TYPE,
359   JTI_FIELD_TYPE_NODE,
360   JTI_CONSTANTS_TYPE_NODE,
361   JTI_DTABLE_TYPE, 
362   JTI_DTABLE_PTR_TYPE,
363   JTI_FIELD_PTR_TYPE_NODE,
364   JTI_FIELD_INFO_UNION_NODE,
365   JTI_EXCEPTION_TYPE,
366   JTI_EXCEPTION_PTR_TYPE,
367   JTI_LINENUMBERENTRY_TYPE,
368   JTI_LINENUMBERS_TYPE,
369   JTI_METHOD_TYPE_NODE,
370   JTI_METHOD_PTR_TYPE_NODE,
371   JTI_OTABLE_TYPE,
372   JTI_OTABLE_PTR_TYPE,
373   JTI_METHOD_SYMBOL_TYPE,
374   JTI_METHOD_SYMBOLS_ARRAY_TYPE,
375   JTI_METHOD_SYMBOLS_ARRAY_PTR_TYPE,
376
377   JTI_END_PARAMS_NODE,
378
379   JTI_THROW_NODE,
380   JTI_ALLOC_OBJECT_NODE,
381   JTI_ALLOC_NO_FINALIZER_NODE,
382   JTI_SOFT_INSTANCEOF_NODE,
383   JTI_SOFT_CHECKCAST_NODE,
384   JTI_SOFT_INITCLASS_NODE,
385   JTI_SOFT_NEWARRAY_NODE,
386   JTI_SOFT_ANEWARRAY_NODE,
387   JTI_SOFT_MULTIANEWARRAY_NODE,
388   JTI_SOFT_BADARRAYINDEX_NODE,
389   JTI_SOFT_NULLPOINTER_NODE,
390   JTI_SOFT_CHECKARRAYSTORE_NODE,
391   JTI_SOFT_MONITORENTER_NODE,
392   JTI_SOFT_MONITOREXIT_NODE,
393   JTI_SOFT_LOOKUPINTERFACEMETHOD_NODE,
394   JTI_SOFT_LOOKUPJNIMETHOD_NODE,
395   JTI_SOFT_GETJNIENVNEWFRAME_NODE,
396   JTI_SOFT_JNIPOPSYSTEMFRAME_NODE,
397   JTI_SOFT_FMOD_NODE,
398   JTI_SOFT_IDIV_NODE,
399   JTI_SOFT_IREM_NODE,
400   JTI_SOFT_LDIV_NODE,
401   JTI_SOFT_LREM_NODE,
402
403   JTI_ACCESS_FLAGS_TYPE_NODE,
404
405   JTI_NATIVECODE_PTR_ARRAY_TYPE_NODE,
406
407   JTI_WFL_OPERATOR,
408
409   JTI_MAIN_CLASS,
410   JTI_CURRENT_CLASS,
411   JTI_ALL_CLASS_LIST,
412   JTI_ALL_CLASS_FILENAME,
413
414   JTI_OTABLE_METHODS,
415   JTI_OTABLE_DECL,
416   JTI_OTABLE_SYMS_DECL,
417
418   JTI_PREDEF_FILENAMES,
419
420   JTI_MAX
421 };
422
423 extern GTY(()) tree java_global_trees[JTI_MAX];
424
425 /* "Promoted types" that are used for primitive types smaller
426    than int.  We could use int_type_node, but then we would lose
427    type information (such as needed for debugging). */
428 #define promoted_byte_type_node \
429   java_global_trees[JTI_PROMOTED_BYTE_TYPE_NODE]
430 #define promoted_short_type_node \
431   java_global_trees[JTI_PROMOTED_SHORT_TYPE_NODE]
432 #define promoted_char_type_node \
433   java_global_trees[JTI_PROMOTED_CHAR_TYPE_NODE]
434 #define promoted_boolean_type_node \
435   java_global_trees[JTI_PROMOTED_BOOLEAN_TYPE_NODE]
436
437 #define byte_type_node \
438   java_global_trees[JTI_BYTE_TYPE_NODE]
439 #define short_type_node \
440   java_global_trees[JTI_SHORT_TYPE_NODE]
441 #define int_type_node \
442   java_global_trees[JTI_INT_TYPE_NODE]
443 #define long_type_node \
444   java_global_trees[JTI_LONG_TYPE_NODE]
445
446 #define unsigned_byte_type_node \
447   java_global_trees[JTI_UNSIGNED_BYTE_TYPE_NODE]
448 #define unsigned_short_type_node \
449   java_global_trees[JTI_UNSIGNED_SHORT_TYPE_NODE]
450 #define unsigned_int_type_node \
451   java_global_trees[JTI_UNSIGNED_INT_TYPE_NODE]
452 #define unsigned_long_type_node \
453   java_global_trees[JTI_UNSIGNED_LONG_TYPE_NODE]
454
455 #define decimal_int_max \
456   java_global_trees[JTI_DECIMAL_INT_MAX_NODE]
457 #define decimal_long_max \
458   java_global_trees[JTI_DECIMAL_LONG_MAX_NODE]
459
460 #define boolean_type_node \
461   java_global_trees[JTI_BOOLEAN_TYPE_NODE]
462
463 #define object_type_node \
464   java_global_trees[JTI_OBJECT_TYPE_NODE]
465 #define unqualified_object_id_node \
466   java_global_trees[JTI_UNQUALIFIED_OBJECT_ID_NODE]
467 #define object_ptr_type_node \
468   java_global_trees[JTI_OBJECT_PTR_TYPE_NODE]
469 #define string_type_node \
470   java_global_trees[JTI_STRING_TYPE_NODE]
471 #define string_ptr_type_node \
472   java_global_trees[JTI_STRING_PTR_TYPE_NODE]
473 #define throwable_type_node \
474   java_global_trees[JTI_THROWABLE_TYPE_NODE]
475 #define exception_type_node \
476   java_global_trees[JTI_EXCEPTION_TYPE_NODE]
477 #define runtime_exception_type_node \
478   java_global_trees[JTI_RUNTIME_EXCEPTION_TYPE_NODE]
479 #define error_exception_type_node \
480   java_global_trees[JTI_ERROR_EXCEPTION_TYPE_NODE]
481 #define rawdata_ptr_type_node \
482   java_global_trees[JTI_RAWDATA_PTR_TYPE_NODE]
483 #define class_not_found_type_node \
484   java_global_trees[JTI_CLASS_NOT_FOUND_TYPE_NODE]
485 #define no_class_def_found_type_node \
486   java_global_trees[JTI_NO_CLASS_DEF_FOUND_TYPE_NODE]
487
488 #define byte_array_type_node \
489   java_global_trees[JTI_BYTE_ARRAY_TYPE_NODE]
490 #define short_array_type_node \
491   java_global_trees[JTI_SHORT_ARRAY_TYPE_NODE]
492 #define int_array_type_node \
493   java_global_trees[JTI_INT_ARRAY_TYPE_NODE]
494 #define long_array_type_node \
495   java_global_trees[JTI_LONG_ARRAY_TYPE_NODE]
496 #define boolean_array_type_node \
497   java_global_trees[JTI_BOOLEAN_ARRAY_TYPE_NODE]
498 #define char_array_type_node \
499   java_global_trees[JTI_CHAR_ARRAY_TYPE_NODE]
500 #define double_array_type_node \
501   java_global_trees[JTI_DOUBLE_ARRAY_TYPE_NODE]
502 #define float_array_type_node \
503   java_global_trees[JTI_FLOAT_ARRAY_TYPE_NODE]
504 #define array_array_type_node \
505   java_global_trees[JTI_ARRAY_ARRAY_TYPE_NODE]
506 #define object_array_type_node \
507   java_global_trees[JTI_OBJECT_ARRAY_TYPE_NODE]
508 #define string_array_type_node \
509   java_global_trees[JTI_STRING_ARRAY_TYPE_NODE]
510 #define boolean_array_vtable \
511   java_global_trees[JTI_BOOLEAN_ARRAY_VTABLE]
512 #define byte_array_vtable \
513   java_global_trees[JTI_BYTE_ARRAY_VTABLE]
514 #define char_array_vtable \
515   java_global_trees[JTI_CHAR_ARRAY_VTABLE]
516 #define short_array_vtable \
517   java_global_trees[JTI_SHORT_ARRAY_VTABLE]
518 #define int_array_vtable \
519   java_global_trees[JTI_INT_ARRAY_VTABLE]
520 #define long_array_vtable \
521   java_global_trees[JTI_LONG_ARRAY_VTABLE]
522 #define float_array_vtable \
523   java_global_trees[JTI_FLOAT_ARRAY_VTABLE]
524 #define double_array_vtable \
525   java_global_trees[JTI_DOUBLE_ARRAY_VTABLE]
526 #define TYPE_identifier_node \
527   java_global_trees[JTI_TYPE_IDENTIFIER_NODE]      /* "TYPE" */
528 #define init_identifier_node \
529   java_global_trees[JTI_INIT_IDENTIFIER_NODE]      /* "<init>" */
530 #define clinit_identifier_node \
531   java_global_trees[JTI_CLINIT_IDENTIFIER_NODE]      /* "<clinit>" */
532 #define finit_identifier_node \
533   java_global_trees[JTI_FINIT_IDENTIFIER_NODE]      /* "finit$" */
534 /* FIXME "instinit$" and "finit$" should be merged  */
535 #define instinit_identifier_node \
536   java_global_trees[JTI_INSTINIT_IDENTIFIER_NODE]  /* "instinit$" */
537 #define void_signature_node \
538   java_global_trees[JTI_VOID_SIGNATURE_NODE]       /* "()V" */
539 #define length_identifier_node \
540   java_global_trees[JTI_LENGTH_IDENTIFIER_NODE]  /* "length" */
541 #define finalize_identifier_node \
542   java_global_trees[JTI_FINALIZE_IDENTIFIER_NODE]  /* "finalize" */
543 #define this_identifier_node \
544   java_global_trees[JTI_THIS_IDENTIFIER_NODE]  /* "this" */
545 #define super_identifier_node \
546   java_global_trees[JTI_SUPER_IDENTIFIER_NODE]  /* "super" */
547 #define continue_identifier_node \
548   java_global_trees[JTI_CONTINUE_IDENTIFIER_NODE]  /* "continue" */
549 #define access0_identifier_node \
550   java_global_trees[JTI_ACCESS0_IDENTIFIER_NODE] /* "access$0" */
551 #define classdollar_identifier_node \
552   java_global_trees[JTI_CLASSDOLLAR_IDENTIFIER_NODE] /* "class$" */
553 #define one_elt_array_domain_type \
554   java_global_trees[JTI_ONE_ELT_ARRAY_DOMAIN_TYPE]
555 /* The type of the return address of a subroutine. */
556 #define return_address_type_node \
557   java_global_trees[JTI_RETURN_ADDRESS_TYPE_NODE]
558
559 /* Nodes for boolean constants TRUE and FALSE. */
560 #define boolean_true_node \
561   java_global_trees[JTI_BOOLEAN_TRUE_NODE]
562 #define boolean_false_node \
563   java_global_trees[JTI_BOOLEAN_FALSE_NODE]
564
565 /* Integer constants not declared in tree.h. */
566 #define long_zero_node \
567   java_global_trees[JTI_LONG_ZERO_NODE]
568 #define float_zero_node \
569   java_global_trees[JTI_FLOAT_ZERO_NODE]
570 #define double_zero_node \
571   java_global_trees[JTI_DOUBLE_ZERO_NODE]
572 #define integer_two_node \
573   java_global_trees[JTI_INTEGER_TWO_NODE]
574 #define integer_four_node \
575   java_global_trees[JTI_INTEGER_FOUR_NODE]
576 #define empty_stmt_node \
577   java_global_trees[JTI_EMPTY_STMT_NODE]
578
579 /* The type for struct methodtable. */
580 #define methodtable_type \
581   java_global_trees[JTI_METHODTABLE_TYPE]
582 #define methodtable_ptr_type \
583   java_global_trees[JTI_METHODTABLE_PTR_TYPE]
584
585 #define utf8const_type \
586   java_global_trees[JTI_UTF8CONST_TYPE]
587 #define utf8const_ptr_type \
588   java_global_trees[JTI_UTF8CONST_PTR_TYPE]
589
590 #define class_type_node \
591   java_global_trees[JTI_CLASS_TYPE_NODE]
592 #define class_ptr_type \
593   java_global_trees[JTI_CLASS_PTR_TYPE]
594 #define field_type_node \
595   java_global_trees[JTI_FIELD_TYPE_NODE]
596 #define constants_type_node \
597   java_global_trees[JTI_CONSTANTS_TYPE_NODE]
598 #define dtable_type \
599   java_global_trees[JTI_DTABLE_TYPE]
600 #define dtable_ptr_type \
601   java_global_trees[JTI_DTABLE_PTR_TYPE]
602 #define field_ptr_type_node \
603   java_global_trees[JTI_FIELD_PTR_TYPE_NODE]
604 #define field_info_union_node \
605   java_global_trees[JTI_FIELD_INFO_UNION_NODE]
606 #define jexception_type \
607   java_global_trees[JTI_EXCEPTION_TYPE]
608 #define jexception_ptr_type \
609   java_global_trees[JTI_EXCEPTION_PTR_TYPE]
610 #define lineNumberEntry_type \
611   java_global_trees[JTI_LINENUMBERENTRY_TYPE]
612 #define lineNumbers_type \
613   java_global_trees[JTI_LINENUMBERS_TYPE]
614 #define method_type_node \
615   java_global_trees[JTI_METHOD_TYPE_NODE]
616 #define method_ptr_type_node \
617   java_global_trees[JTI_METHOD_PTR_TYPE_NODE]
618 #define otable_type \
619   java_global_trees[JTI_OTABLE_TYPE]
620 #define otable_ptr_type \
621   java_global_trees[JTI_OTABLE_PTR_TYPE]
622 #define method_symbol_type \
623   java_global_trees[JTI_METHOD_SYMBOL_TYPE]
624 #define method_symbols_array_type \
625   java_global_trees[JTI_METHOD_SYMBOLS_ARRAY_TYPE]
626 #define method_symbols_array_ptr_type \
627   java_global_trees[JTI_METHOD_SYMBOLS_ARRAY_PTR_TYPE]
628
629 #define end_params_node \
630   java_global_trees[JTI_END_PARAMS_NODE]
631
632 /* References to internal libjava functions we use. */
633 #define throw_node \
634   java_global_trees[JTI_THROW_NODE]
635 #define alloc_object_node \
636   java_global_trees[JTI_ALLOC_OBJECT_NODE]
637 #define alloc_no_finalizer_node \
638   java_global_trees[JTI_ALLOC_NO_FINALIZER_NODE]
639 #define soft_instanceof_node \
640   java_global_trees[JTI_SOFT_INSTANCEOF_NODE]
641 #define soft_checkcast_node \
642   java_global_trees[JTI_SOFT_CHECKCAST_NODE]
643 #define soft_initclass_node \
644   java_global_trees[JTI_SOFT_INITCLASS_NODE]
645 #define soft_newarray_node \
646   java_global_trees[JTI_SOFT_NEWARRAY_NODE]
647 #define soft_anewarray_node \
648   java_global_trees[JTI_SOFT_ANEWARRAY_NODE]
649 #define soft_multianewarray_node \
650   java_global_trees[JTI_SOFT_MULTIANEWARRAY_NODE]
651 #define soft_badarrayindex_node \
652   java_global_trees[JTI_SOFT_BADARRAYINDEX_NODE]
653 #define soft_nullpointer_node \
654   java_global_trees[JTI_SOFT_NULLPOINTER_NODE]
655 #define soft_checkarraystore_node \
656   java_global_trees[JTI_SOFT_CHECKARRAYSTORE_NODE]
657 #define soft_monitorenter_node \
658   java_global_trees[JTI_SOFT_MONITORENTER_NODE]
659 #define soft_monitorexit_node \
660   java_global_trees[JTI_SOFT_MONITOREXIT_NODE]
661 #define soft_lookupinterfacemethod_node \
662   java_global_trees[JTI_SOFT_LOOKUPINTERFACEMETHOD_NODE]
663 #define soft_lookupjnimethod_node \
664   java_global_trees[JTI_SOFT_LOOKUPJNIMETHOD_NODE]
665 #define soft_getjnienvnewframe_node \
666   java_global_trees[JTI_SOFT_GETJNIENVNEWFRAME_NODE]
667 #define soft_jnipopsystemframe_node \
668   java_global_trees[JTI_SOFT_JNIPOPSYSTEMFRAME_NODE]
669 #define soft_fmod_node \
670   java_global_trees[JTI_SOFT_FMOD_NODE]
671 #define soft_idiv_node \
672   java_global_trees[JTI_SOFT_IDIV_NODE]
673 #define soft_irem_node \
674   java_global_trees[JTI_SOFT_IREM_NODE]
675 #define soft_ldiv_node \
676   java_global_trees[JTI_SOFT_LDIV_NODE]
677 #define soft_lrem_node \
678   java_global_trees[JTI_SOFT_LREM_NODE]
679
680 #define access_flags_type_node \
681   java_global_trees[JTI_ACCESS_FLAGS_TYPE_NODE]
682
683 #define nativecode_ptr_array_type_node \
684   java_global_trees[JTI_NATIVECODE_PTR_ARRAY_TYPE_NODE]
685
686 #define predef_filenames \
687   java_global_trees[JTI_PREDEF_FILENAMES]
688
689 #define nativecode_ptr_type_node ptr_type_node
690
691 /* They need to be reset before processing each class */
692 extern GTY(()) struct CPool *outgoing_cpool; 
693
694 #define wfl_operator \
695   java_global_trees[JTI_WFL_OPERATOR]
696
697 extern const char *cyclic_inheritance_report;
698
699 struct lang_identifier GTY(())
700 {
701   struct tree_identifier ignore;
702   tree global_value;
703   tree local_value;
704
705   /* If non-NULL:  An ADDR_REF to a VAR_DECL that contains
706    * the Utf8Const representation of the identifier.  */
707   tree utf8_ref;
708 };
709
710 /* The resulting tree type.  */
711 union lang_tree_node 
712   GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
713        chain_next ("(union lang_tree_node *)TREE_CHAIN (&%h.generic)")))
714 {
715   union tree_node GTY ((tag ("0"), 
716                         desc ("tree_node_structure (&%h)"))) 
717     generic;
718   struct lang_identifier GTY ((tag ("1"))) identifier;
719 };
720
721 /* Macros for access to language-specific slots in an identifier.  */
722 /* Unless specified, each of these slots contains a DECL node or null.  */
723
724 /* This represents the value which the identifier has in the
725    file-scope namespace.  */
726 #define IDENTIFIER_GLOBAL_VALUE(NODE)   \
727   (((struct lang_identifier *)(NODE))->global_value)
728 /* This represents the value which the identifier has in the current
729    scope.  */
730 #define IDENTIFIER_LOCAL_VALUE(NODE)    \
731   (((struct lang_identifier *)(NODE))->local_value)
732
733 /* Given an identifier NODE, get the corresponding (non-handle) class.
734    For get_identifier ("java.lang.Number"), the result is
735    the struct whose DECL_ASSEMBLER_NAME is "Classjava_lang_Number". */
736 #define IDENTIFIER_CLASS_VALUE(NODE) IDENTIFIER_GLOBAL_VALUE(NODE)
737
738 /* Given an identifier NODE, get the corresponding handle class.
739    For get_identifier ("java.lang.Number"), the result is
740    the struct whose DECL_ASSEMBLER_NAME is "Hjava_lang_Number". */
741 #define IDENTIFIER_HANDLECLASS_VALUE(NODE) ???
742
743 /* Given a signature of a reference (or array) type, or a method, return the
744    corresponding type (if one has been allocated).
745    Do not use for primitive types, since they may be ambiguous.
746    (E.g. is "I" a signature or a class name?) */
747 #define IDENTIFIER_SIGNATURE_TYPE(NODE) IDENTIFIER_GLOBAL_VALUE(NODE)
748
749 /* If non-NULL:  An ADDR_REF to a VAR_DECL that contains
750    the Utf8Const representation of the identifier.  */
751 #define IDENTIFIER_UTF8_REF(NODE) \
752   (((struct lang_identifier *)(NODE))->utf8_ref)
753
754 #define IDENTIFIER_UTF8_DECL(NODE) \
755   TREE_OPERAND((((struct lang_identifier *)(NODE))->utf8_ref), 0)
756
757 /* For a FUNCTION_DECL, if we are compiling a .class file, then this is
758    the position in the .class file of the method code.
759    Specifically, this is the code itself, not the code attribute. */
760 #define DECL_CODE_OFFSET(DECL) (DECL_LANG_SPECIFIC(DECL)->u.f.code_offset)
761 /* Similarly, the length of the bytecode. */
762 #define DECL_CODE_LENGTH(DECL) (DECL_LANG_SPECIFIC(DECL)->u.f.code_length)
763 /* Similarly, the position of the LineNumberTable attribute. */
764 #define DECL_LINENUMBERS_OFFSET(DECL) \
765   (DECL_LANG_SPECIFIC(DECL)->u.f.linenumbers_offset)
766 /* Similarly, the position of the LocalVariableTable attribute
767    (following the standard attribute header). */
768 #define DECL_LOCALVARIABLES_OFFSET(DECL) \
769   (DECL_LANG_SPECIFIC(DECL)->u.f.localvariables_offset)
770
771 #define DECL_MAX_LOCALS(DECL) (DECL_LANG_SPECIFIC(DECL)->u.f.max_locals)
772 #define DECL_MAX_STACK(DECL) (DECL_LANG_SPECIFIC(DECL)->u.f.max_stack)
773 /* Number of local variable slots needed for the arguments of this function. */
774 #define DECL_ARG_SLOT_COUNT(DECL) \
775   (DECL_LANG_SPECIFIC(DECL)->u.f.arg_slot_count)
776 /* Line number of end of function. */
777 #define DECL_FUNCTION_LAST_LINE(DECL) (DECL_LANG_SPECIFIC(DECL)->u.f.last_line)
778 /* Information on declaration location */
779 #define DECL_FUNCTION_WFL(DECL)  (DECL_LANG_SPECIFIC(DECL)->u.f.wfl)
780 /* List of checked thrown exceptions, as specified with the `throws'
781    keyword */
782 #define DECL_FUNCTION_THROWS(DECL) (DECL_LANG_SPECIFIC(DECL)->u.f.throws_list)
783 /* List of other constructors of the same class that this constructor
784    calls */
785 #define DECL_CONSTRUCTOR_CALLS(DECL) \
786   (DECL_LANG_SPECIFIC(DECL)->u.f.called_constructor)
787 /* When the function is an access function, the DECL it was trying to
788    access */
789 #define DECL_FUNCTION_ACCESS_DECL(DECL) \
790   (DECL_LANG_SPECIFIC(DECL)->u.f.called_constructor)
791 /* The identifier of the access method used to invoke this method from
792    an inner class.  */
793 #define DECL_FUNCTION_INNER_ACCESS(DECL) \
794   (DECL_LANG_SPECIFIC(DECL)->u.f.inner_access)
795 /* Pointer to the function's current's COMPOUND_EXPR tree (while
796    completing its body) or the function's block */
797 #define DECL_FUNCTION_BODY(DECL) \
798   (DECL_LANG_SPECIFIC(DECL)->u.f.function_decl_body)
799 /* How specific the function is (for method selection - Java source
800    code front-end */
801 #define DECL_SPECIFIC_COUNT(DECL) DECL_ARG_SLOT_COUNT(DECL)
802 /* For each function decl, init_test_table contains a hash table whose
803    entries are keyed on class names, and whose values are local
804    boolean decls.  The variables are intended to be TRUE when the
805    class has been initialized in this function, and FALSE otherwise.  */
806 #define DECL_FUNCTION_INIT_TEST_TABLE(DECL) \
807   (DECL_LANG_SPECIFIC(DECL)->u.f.init_test_table)
808 /* If LOCAL_CLASS_INITIALIZATION_FLAG_P(decl), give class it initializes. */
809 #define DECL_FUNCTION_INIT_TEST_CLASS(DECL) \
810   (DECL_LANG_SPECIFIC(DECL)->u.v.slot_chain)
811 /* For each static function decl, itc contains a hash table whose
812    entries are keyed on class named that are definitively initialized
813    in DECL.  */
814 #define DECL_FUNCTION_INITIALIZED_CLASS_TABLE(DECL) \
815   (DECL_LANG_SPECIFIC(DECL)->u.f.ict)
816 /* A list of all the static method calls in the method DECL (if optimizing).
817    Actually each TREE_VALUE points to a COMPONT_EXPR that wraps the
818    invocation so we can later patch it.  */
819 #define DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND(DECL) \
820   (DECL_LANG_SPECIFIC(DECL)->u.f.smic)
821 /* The Number of Artificial Parameters (NAP) DECL contains. this$<n>
822    is excluded, because sometimes created as a parameter before the
823    function decl exists. */
824 #define DECL_FUNCTION_NAP(DECL) (DECL_LANG_SPECIFIC(DECL)->u.f.nap)
825 /* True if DECL is a synthetic ctor.  */
826 #define DECL_FUNCTION_SYNTHETIC_CTOR(DECL) \
827   (DECL_LANG_SPECIFIC(DECL)->u.f.synthetic_ctor)
828 #define DECL_FIXED_CONSTRUCTOR_P(DECL) \
829   (DECL_LANG_SPECIFIC(DECL)->u.f.fixed_ctor)
830
831 /* A constructor that calls this. */
832 #define DECL_INIT_CALLS_THIS(DECL) \
833   (DECL_LANG_SPECIFIC(DECL)->u.f.init_calls_this)
834
835 /* True when DECL (a field) is Synthetic.  */
836 #define FIELD_SYNTHETIC(DECL) DECL_LANG_FLAG_2 (DECL)
837
838 /* True when DECL aliases an outer context local variable.  */
839 #define FIELD_LOCAL_ALIAS(DECL) DECL_LANG_FLAG_6 (DECL)
840
841 /* True when DECL, which aliases an outer context local variable is
842    used by the inner classe */
843 #define FIELD_LOCAL_ALIAS_USED(DECL) DECL_LANG_FLAG_7 (DECL)
844
845 /* True when DECL is a this$<n> field. Note that
846    FIELD_LOCAL_ALIAS_USED can be differentiated when tested against
847    FIELD_LOCAL_ALIAS.  */
848 #define FIELD_THISN(DECL) DECL_LANG_FLAG_7 (DECL)
849
850 /* In a LABEL_DECL, a TREE_VEC that saves the type_map at that point. */
851 #define LABEL_TYPE_STATE(NODE) (DECL_INITIAL (NODE))
852
853 /* In the label of a subroutine, a dummy label that records the
854    state following a merge of all the ret instructions in this subroutine. */
855 #define LABEL_RETURN_LABEL(DECL) DECL_ARGUMENTS(DECL)
856
857 /* In the label of a sub-routine, records the type state at return.
858  * A local may be TYPE_UNUSED, which means that the local is not
859  * used (stored to or loaded from) in this subroutine - at least for
860  * code that we have verified so far. */
861 #define LABEL_RETURN_TYPE_STATE(NODE) LABEL_TYPE_STATE (LABEL_RETURN_LABEL (NODE))
862
863 /* In a TREE_VEC for a LABEL_RETURN_TYPE_STATE, notes that
864    TREE_VEC_LENGTH has been adjusted to the correct stack size. */
865 #define RETURN_MAP_ADJUSTED(NODE) TREE_LANG_FLAG_2(NODE)
866
867 /* In the label of a sub-routine, a chain of the return location labels. */
868 #define LABEL_RETURN_LABELS(node) \
869   (LABEL_DECL_CHECK (LABEL_RETURN_LABEL(node))->decl.result)
870
871 /* In a LABEL_DECL, the next pending label.
872    See pending_blocks in expr.c. */
873 #define LABEL_PENDING_CHAIN(NODE) (LABEL_DECL_CHECK (NODE)->decl.result)
874
875 /* In a LABEL_DECL, the corresponding bytecode program counter. */
876 #define LABEL_PC(NODE) ((NODE)->decl.u2.i)
877
878 /* Used during verification to mark the label has "changed". (See JVM Spec). */
879 #define LABEL_CHANGED(NODE) DECL_LANG_FLAG_6(NODE)
880
881 /* In a LABEL_DECL, true if we have verified instructions starting here. */
882 #define LABEL_VERIFIED(NODE) (instruction_bits[LABEL_PC(NODE)]&BCODE_VERIFIED)
883
884 /* True if this code is within a subroutine (target of a jsr). */
885 #define LABEL_IN_SUBR(NODE) DECL_LANG_FLAG_4(NODE)
886 /* True if this code is the start of a subroutine (target of a jsr). */
887 #define LABEL_IS_SUBR_START(NODE) DECL_LANG_FLAG_5(NODE)
888
889 /* In a LABEL_DECL, if LABEL_IN_SUBR(NODE), points to start of subroutine. */
890 #define LABEL_SUBR_START(NODE) DECL_ABSTRACT_ORIGIN(NODE)
891
892 /* In a LABEL_DECL that has LABEL_IS_SUBR_START, this points to the start
893    of surrounding subroutine in the case of a nested subroutine,
894    and NULL_TREE otherwise. */
895 #define LABEL_SUBR_CONTEXT(NODE) DECL_CONTEXT (LABEL_RETURN_LABEL (NODE))
896
897 /* The slot number for this local variable. */
898 #define DECL_LOCAL_SLOT_NUMBER(NODE) \
899   (DECL_LANG_SPECIFIC(NODE)->u.v.slot_number)
900 /* The start (bytecode) pc for the valid range of this local variable. */
901 #define DECL_LOCAL_START_PC(NODE) \
902   (DECL_LANG_SPECIFIC(NODE)->u.v.start_pc)
903 /* The end (bytecode) pc for the valid range of this local variable. */
904 #define DECL_LOCAL_END_PC(NODE) \
905   (DECL_LANG_SPECIFIC(NODE)->u.v.end_pc)
906 /* For a VAR_DECLor PARM_DECL, used to chain decls with the same
907    slot_number in decl_map. */
908 #define DECL_LOCAL_SLOT_CHAIN(NODE) \
909   (DECL_LANG_SPECIFIC(NODE)->u.v.slot_chain)
910 /* For a FIELD_DECL, holds the name of the access method. Used to
911    read/write the content of the field from an inner class.  */
912 #define FIELD_INNER_ACCESS(DECL) \
913   (DECL_LANG_SPECIFIC(DECL)->u.v.am)
914 /* Safely tests whether FIELD_INNER_ACCESS exists or not. */
915 #define FIELD_INNER_ACCESS_P(DECL) \
916   DECL_LANG_SPECIFIC (DECL) && FIELD_INNER_ACCESS (DECL)
917 /* True if a final variable was initialized upon its declaration,
918    or (if a field) in an initializer.  Set after definite assignment. */
919 #define DECL_FIELD_FINAL_IUD(NODE) \
920   (DECL_LANG_SPECIFIC(NODE)->u.v.final_iud)
921 /* The original WFL of a final variable. */
922 #define DECL_FIELD_FINAL_WFL(NODE) \
923   (DECL_LANG_SPECIFIC(NODE)->u.v.wfl)
924 /* In a FUNCTION_DECL for which DECL_BUILT_IN does not hold, this is
925      the approximate number of statements in this function.  There is
926      no need for this number to be exact; it is only used in various
927      heuristics regarding optimization.  */
928 #define DECL_NUM_STMTS(NODE) \
929   (FUNCTION_DECL_CHECK (NODE)->decl.u1.i)
930 /* True if NODE is a local variable final. */
931 #define LOCAL_FINAL_P(NODE) (DECL_LANG_SPECIFIC (NODE) && DECL_FINAL (NODE))
932 /* True if NODE is a final field. */
933 #define FINAL_VARIABLE_P(NODE) (FIELD_FINAL (NODE) && !FIELD_STATIC (NODE))
934 /* True if NODE is a class final field. */
935 #define CLASS_FINAL_VARIABLE_P(NODE) \
936   (FIELD_FINAL (NODE) && FIELD_STATIC (NODE))
937 /* True if NODE is a class initialization flag. This macro accesses
938    the flag to read or set it.  */
939 #define LOCAL_CLASS_INITIALIZATION_FLAG(NODE) \
940     (DECL_LANG_SPECIFIC(NODE)->u.v.cif)
941 /* True if NODE is a class initialization flag. */
942 #define LOCAL_CLASS_INITIALIZATION_FLAG_P(NODE) \
943     (DECL_LANG_SPECIFIC (NODE) && LOCAL_CLASS_INITIALIZATION_FLAG(NODE))
944 /* Create a DECL_LANG_SPECIFIC if necessary. */
945 #define MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC(T)                  \
946   if (DECL_LANG_SPECIFIC (T) == NULL)                           \
947     {                                                           \
948       DECL_LANG_SPECIFIC ((T))                                  \
949         = ((struct lang_decl *)                                 \
950            ggc_alloc_cleared (sizeof (struct lang_decl)));      \
951       DECL_LANG_SPECIFIC (T)->desc = LANG_DECL_VAR;             \
952     }
953
954 /* A ConstantExpression, after folding and name resolution. */
955 #define CONSTANT_VALUE_P(NODE) \
956   (TREE_CODE (NODE) == STRING_CST \
957    || (TREE_CODE (NODE) == INTEGER_CST \
958        && TREE_CODE (TREE_TYPE (NODE)) != POINTER_TYPE) \
959    || TREE_CODE (NODE) == REAL_CST)
960
961 /* For a local VAR_DECL, holds the index into a words bitstring that
962    specifies if this decl is definitively assigned.
963    The value -1 means the variable has been definitely assigned (and not
964    definitely unassigned).  The value -2 means we already reported an error. */
965 #define DECL_BIT_INDEX(DECL) (DECL_CHECK (DECL)->decl.pointer_alias_set)
966
967 /* DECL_LANG_SPECIFIC for FUNCTION_DECLs. */
968 struct lang_decl_func GTY(())
969 {
970   /*  tree chain; not yet used. */
971   long code_offset;
972   int code_length;
973   long linenumbers_offset;
974   long localvariables_offset;
975   int arg_slots;
976   int max_locals;
977   int max_stack;
978   int arg_slot_count;
979   int last_line;                /* End line number for a function decl */
980   tree wfl;                     /* Information on the original location */
981   tree throws_list;             /* Exception specified by `throws' */
982   tree function_decl_body;      /* Hold all function's statements */
983   tree called_constructor;      /* When decl is a constructor, the
984                                    list of other constructor it calls */
985
986   /* Class initialization test variables  */
987   htab_t GTY ((param_is (struct treetreehash_entry))) init_test_table;
988                                 
989   /* Initialized (static) Class Table */
990   htab_t GTY ((param_is (union tree_node))) ict;
991
992   tree smic;                    /* Static method invocation compound */
993   tree inner_access;            /* The identifier of the access method
994                                    used for invocation from inner classes */
995   int nap;                      /* Number of artificial parameters */
996   unsigned int native : 1;      /* Nonzero if this is a native method  */
997   unsigned int synthetic_ctor : 1; /* Nonzero if this is a synthetic ctor */
998   unsigned int init_final : 1;  /* Nonzero all finals are initialized */
999   unsigned int fixed_ctor : 1;
1000   unsigned int init_calls_this : 1;
1001   unsigned int strictfp : 1;
1002 };
1003
1004 struct treetreehash_entry GTY(())
1005 {
1006   tree key;
1007   tree value;
1008 };
1009
1010 extern tree java_treetreehash_find (htab_t, tree);
1011 extern tree * java_treetreehash_new (htab_t, tree);
1012 extern htab_t java_treetreehash_create (size_t size, int ggc);
1013
1014 /* DECL_LANG_SPECIFIC for VAR_DECL, PARM_DECL and sometimes FIELD_DECL
1015    (access methods on outer class fields) and final fields. */
1016 struct lang_decl_var GTY(())
1017 {
1018   int slot_number;
1019   int start_pc;
1020   int end_pc;
1021   tree slot_chain;
1022   tree am;                      /* Access method for this field (1.1) */
1023   tree wfl;                     /* Original wfl */
1024   unsigned int final_iud : 1;   /* Final initialized upon declaration */
1025   unsigned int cif : 1;         /* True: decl is a class initialization flag */
1026 };
1027
1028 /* This is what 'lang_decl' really points to.  */
1029
1030 enum lang_decl_desc {
1031   LANG_DECL_FUNC,
1032   LANG_DECL_VAR
1033 };
1034
1035 struct lang_decl GTY(())
1036 {
1037   enum lang_decl_desc desc;
1038   union lang_decl_u {
1039     struct lang_decl_func GTY ((tag ("LANG_DECL_FUNC"))) f;
1040     struct lang_decl_var GTY ((tag ("LANG_DECL_VAR"))) v;
1041   } GTY ((desc ("%0.desc"))) u;
1042 };
1043
1044 /* Macro to access fields in `struct lang_type'.  */
1045
1046 #define TYPE_SIGNATURE(T) (TYPE_LANG_SPECIFIC(T)->signature)
1047 #define TYPE_JCF(T) (TYPE_LANG_SPECIFIC(T)->jcf)
1048 #define TYPE_CPOOL(T) (TYPE_LANG_SPECIFIC(T)->cpool)
1049 #define TYPE_CPOOL_DATA_REF(T) (TYPE_LANG_SPECIFIC(T)->cpool_data_ref)
1050 #define MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC(T)                          \
1051   if (TYPE_LANG_SPECIFIC ((T)) == NULL)                                  \
1052     {                                                                    \
1053       TYPE_LANG_SPECIFIC ((T)) =                                         \
1054         ((struct lang_type *)                                            \
1055          ggc_alloc_cleared (sizeof (struct lang_type)));                 \
1056     }
1057
1058 #define TYPE_FINIT_STMT_LIST(T)  (TYPE_LANG_SPECIFIC(T)->finit_stmt_list)
1059 #define TYPE_CLINIT_STMT_LIST(T) (TYPE_LANG_SPECIFIC(T)->clinit_stmt_list)
1060 #define TYPE_II_STMT_LIST(T)     (TYPE_LANG_SPECIFIC(T)->ii_block)
1061 /* The decl of the synthetic method `class$' used to handle `.class'
1062    for non primitive types when compiling to bytecode. */
1063 #define TYPE_DOT_CLASS(T)        (TYPE_LANG_SPECIFIC(T)->dot_class)
1064 #define TYPE_PACKAGE_LIST(T)     (TYPE_LANG_SPECIFIC(T)->package_list)
1065 #define TYPE_IMPORT_LIST(T)      (TYPE_LANG_SPECIFIC(T)->import_list)
1066 #define TYPE_IMPORT_DEMAND_LIST(T) (TYPE_LANG_SPECIFIC(T)->import_demand_list)
1067 #define TYPE_PRIVATE_INNER_CLASS(T) (TYPE_LANG_SPECIFIC(T)->pic)
1068 #define TYPE_PROTECTED_INNER_CLASS(T) (TYPE_LANG_SPECIFIC(T)->poic)
1069 #define TYPE_STRICTFP(T) (TYPE_LANG_SPECIFIC(T)->strictfp)
1070 #define TYPE_USES_ASSERTIONS(T) (TYPE_LANG_SPECIFIC(T)->assertions)
1071
1072 struct lang_type GTY(())
1073 {
1074   tree signature;
1075   struct JCF * jcf;
1076   struct CPool * cpool;
1077   tree cpool_data_ref;          /* Cached */
1078   tree finit_stmt_list;         /* List of statements finit$ will use */
1079   tree clinit_stmt_list;        /* List of statements <clinit> will use  */
1080   tree ii_block;                /* Instance initializer block */
1081   tree dot_class;               /* The decl of the `class$' function that
1082                                    needs to be invoked and generated when
1083                                    compiling to bytecode to implement
1084                                    <non_primitive_type>.class */
1085   tree package_list;            /* List of package names, progressive */
1086   tree import_list;             /* Imported types, in the CU of this class */
1087   tree import_demand_list;      /* Imported types, in the CU of this class */
1088   unsigned pic:1;               /* Private Inner Class. */
1089   unsigned poic:1;              /* Protected Inner Class. */
1090   unsigned strictfp:1;          /* `strictfp' class.  */
1091   unsigned assertions:1;        /* Any method uses `assert'.  */
1092 };
1093
1094 #define JCF_u4 unsigned long
1095 #define JCF_u2 unsigned short
1096
1097 extern void java_parse_file (int);
1098 extern bool java_mark_addressable (tree);
1099 extern tree java_type_for_mode (enum machine_mode, int);
1100 extern tree java_type_for_size (unsigned int, int);
1101 extern tree java_unsigned_type (tree);
1102 extern tree java_signed_type (tree);
1103 extern tree java_signed_or_unsigned_type (int, tree);
1104 extern tree java_truthvalue_conversion (tree);
1105 extern void add_assume_compiled (const char *, int);
1106 extern tree lookup_class (tree);
1107 extern tree lookup_java_constructor (tree, tree);
1108 extern tree lookup_java_method (tree, tree, tree);
1109 extern tree lookup_argument_method (tree, tree, tree);
1110 extern tree lookup_argument_method2 (tree, tree, tree);
1111 extern int has_method (tree, tree);
1112 extern tree promote_type (tree);
1113 extern tree get_constant (struct JCF*, int);
1114 extern tree get_name_constant (struct JCF*, int);
1115 extern tree get_class_constant (struct JCF*, int);
1116 extern tree parse_signature (struct JCF *jcf, int sig_index);
1117 extern tree add_field (tree, tree, tree, int);
1118 extern tree add_method (tree, int, tree, tree);
1119 extern tree add_method_1 (tree, int, tree, tree);
1120 extern tree make_class (void);
1121 extern tree push_class (tree, tree);
1122 extern tree unmangle_classname (const char *name, int name_length);
1123 extern tree parse_signature_string (const unsigned char *, int);
1124 extern tree get_type_from_signature (tree);
1125 extern void layout_class (tree);
1126 extern tree layout_class_method (tree, tree, tree, tree);
1127 extern void layout_class_methods (tree);
1128 extern tree build_class_ref (tree);
1129 extern tree build_dtable_decl (tree);
1130 extern tree build_internal_class_name (tree);
1131 extern tree build_constants_constructor (void);
1132 extern tree build_ref_from_constant_pool (int);
1133 extern tree build_utf8_ref (tree);
1134 extern tree ident_subst (const char*, int, const char*, int, int, const char*);
1135 extern tree identifier_subst (const tree, const char *, int, int, const char *);
1136 extern int global_bindings_p (void);
1137 extern int kept_level_p (void);
1138 extern tree getdecls (void);
1139 extern void pushlevel (int);
1140 extern tree poplevel (int,int, int);
1141 extern void insert_block (tree);
1142 extern void set_block (tree);
1143 extern tree pushdecl (tree);
1144 extern void java_init_decl_processing (void);
1145 extern void java_dup_lang_specific_decl (tree);
1146 extern tree build_java_signature (tree);
1147 extern tree build_java_argument_signature (tree);
1148 extern void set_java_signature (tree, tree);
1149 extern tree build_static_field_ref (tree);
1150 extern tree build_address_of (tree);
1151 extern tree find_local_variable (int index, tree type, int pc);
1152 extern tree find_stack_slot (int index, tree type);
1153 extern tree build_prim_array_type (tree, HOST_WIDE_INT);
1154 extern tree build_java_array_type (tree, HOST_WIDE_INT);
1155 extern int is_compiled_class (tree);
1156 extern tree mangled_classname (const char*, tree);
1157 extern tree lookup_label (int);
1158 extern tree pop_type_0 (tree, char**);
1159 extern tree pop_type (tree);
1160 extern tree decode_newarray_type (int);
1161 extern tree lookup_field (tree*, tree);
1162 extern int is_array_type_p (tree);
1163 extern HOST_WIDE_INT java_array_type_length (tree);
1164 extern int read_class (tree);
1165 extern void load_class (tree, int);
1166
1167 extern tree check_for_builtin (tree, tree);
1168 extern void initialize_builtins (void);
1169
1170 extern tree lookup_name (tree);
1171 extern tree build_known_method_ref (tree, tree, tree, tree, tree);
1172 extern tree build_class_init (tree, tree);
1173 extern tree build_invokevirtual (tree, tree);
1174 extern tree build_invokeinterface (tree, tree);
1175 extern tree build_jni_stub (tree);
1176 extern tree invoke_build_dtable (int, tree);
1177 extern tree build_field_ref (tree, tree, tree);
1178 extern void pushdecl_force_head (tree);
1179 extern tree build_java_binop (enum tree_code, tree, tree, tree);
1180 extern tree build_java_soft_divmod (enum tree_code, tree, tree, tree);
1181 extern tree binary_numeric_promotion (tree, tree, tree *, tree *);
1182 extern tree build_java_arrayaccess (tree, tree, tree);
1183 extern tree build_java_arraystore_check (tree, tree);
1184 extern tree build_newarray (int, tree);
1185 extern tree build_anewarray (tree, tree);
1186 extern tree build_new_array (tree, tree);
1187 extern tree build_java_array_length_access (tree);
1188 extern tree build_java_arraynull_check (tree, tree, tree);
1189 extern tree build_java_indirect_ref (tree, tree, int);
1190 extern tree java_check_reference (tree, int);
1191 extern tree build_get_class (tree);
1192 extern tree build_instanceof (tree, tree);
1193 extern tree create_label_decl (tree);
1194 extern void push_labeled_block (tree);
1195 extern tree prepare_eh_table_type (tree);
1196 extern tree build_exception_object_ref (tree);
1197 extern tree generate_name (void);
1198 extern void pop_labeled_block (void);
1199 extern const char *lang_printable_name (tree, int);
1200 extern tree maybe_add_interface (tree, tree);
1201 extern void set_super_info (int, tree, tree, int);
1202 extern void set_class_decl_access_flags (int, tree);
1203 extern int get_access_flags_from_decl (tree);
1204 extern int interface_of_p (tree, tree);
1205 extern int inherits_from_p (tree, tree);
1206 extern int common_enclosing_context_p (tree, tree);
1207 extern int enclosing_context_p (tree, tree);
1208 extern void complete_start_java_method (tree);
1209 extern tree build_result_decl (tree);
1210 extern void emit_handlers (void);
1211 extern void init_outgoing_cpool (void);
1212 extern void make_class_data (tree);
1213 extern void register_class (void);
1214 extern int alloc_name_constant (int, tree);
1215 extern void emit_register_classes (void);
1216 extern void emit_offset_symbol_table (void);
1217 extern void lang_init_source (int);
1218 extern void write_classfile (tree);
1219 extern char *print_int_node (tree);
1220 extern void parse_error_context (tree cl, const char *, ...)
1221   ATTRIBUTE_PRINTF_2;
1222 extern void finish_class (void);
1223 extern void java_layout_seen_class_methods (void);
1224 extern void check_for_initialization (tree, tree);
1225
1226 extern tree pushdecl_top_level (tree);
1227 extern int alloc_class_constant (tree);
1228 extern void init_expr_processing (void);
1229 extern void push_super_field (tree, tree);
1230 extern void init_class_processing (void);
1231 extern int can_widen_reference_to (tree, tree);
1232 extern int class_depth (tree);
1233 extern int verify_jvm_instructions (struct JCF *, const unsigned char *, long);
1234 extern void maybe_pushlevels (int);
1235 extern void maybe_poplevels (int);
1236 extern void force_poplevels (int);
1237 extern int process_jvm_instruction (int, const unsigned char *, long);
1238 extern int maybe_adjust_start_pc (struct JCF *, int, int, int);
1239 extern void set_local_type (int, tree);
1240 extern int merge_type_state (tree);
1241 extern int push_type_0 (tree);
1242 extern void push_type (tree);
1243 extern void load_type_state (tree);
1244 extern void add_interface (tree, tree);
1245 extern tree force_evaluation_order (tree);
1246 extern int verify_constant_pool (struct JCF *);
1247 extern void start_java_method (tree);
1248 extern void end_java_method (void);
1249 extern void give_name_to_locals (struct JCF *);
1250 extern void note_instructions (struct JCF *, tree);
1251 extern void expand_byte_code (struct JCF *, tree);
1252 extern int open_in_zip (struct JCF *, const char *, const char *, int);
1253 extern void set_constant_value (tree, tree);
1254 #ifdef jword
1255 extern int find_constant1 (struct CPool *, int, jword);
1256 extern int find_constant2 (struct CPool *, int, jword, jword);
1257 #endif
1258 extern int find_utf8_constant (struct CPool *, tree);
1259 extern int find_string_constant (struct CPool *, tree);
1260 extern int find_class_constant (struct CPool *, tree);
1261 extern int find_fieldref_index (struct CPool *, tree);
1262 extern int find_methodref_index (struct CPool *, tree);
1263 extern int find_methodref_with_class_index (struct CPool *, tree, tree);
1264 extern void write_constant_pool (struct CPool *, unsigned char *, int);
1265 extern int count_constant_pool_bytes (struct CPool *);
1266 extern int encode_newarray_type (tree);
1267 #ifdef uint64
1268 extern void format_int (char *, jlong, int);
1269 extern void format_uint (char *, uint64, int);
1270 #endif
1271 extern void jcf_trim_old_input (struct JCF *);
1272 #ifdef BUFSIZ
1273 extern void jcf_print_utf8 (FILE *, const unsigned char *, int);
1274 extern void jcf_print_char (FILE *, int);
1275 extern void jcf_print_utf8_replace (FILE *, const unsigned char *, int, int, int);
1276 extern const char* open_class (const char *, struct JCF *, int, const char *);
1277 #endif
1278 extern void java_debug_context (void);
1279 extern void safe_layout_class (tree);
1280
1281 extern tree get_boehm_type_descriptor (tree);
1282 extern bool class_has_finalize_method (tree);
1283 extern void java_check_methods (tree);
1284 extern void init_jcf_parse (void);
1285 extern void init_src_parse (void);
1286
1287 extern int cxx_keyword_p (const char *, int);
1288 extern tree java_mangle_decl (struct obstack *, tree);
1289 extern tree java_mangle_class_field (struct obstack *, tree);
1290 extern tree java_mangle_class_field_from_string (struct obstack *, char *);
1291 extern tree java_mangle_vtable (struct obstack *, tree);
1292 extern const char *lang_printable_name_wls (tree, int);
1293 extern void append_gpp_mangled_name (const char *, int);
1294
1295 extern void add_predefined_file (tree);
1296 extern int predefined_filename_p (tree);
1297
1298 extern void java_optimize_inline (tree);
1299 extern tree decl_constant_value (tree);
1300
1301 extern void java_mark_class_local (tree);
1302
1303 #if defined(RTX_CODE) && defined (HAVE_MACHINE_MODES)
1304 struct rtx_def * java_expand_expr (tree, rtx, enum machine_mode, int); 
1305 #endif
1306 extern void java_inlining_merge_static_initializers (tree, void *);
1307 extern void java_inlining_map_static_initializers (tree, void *);
1308
1309 extern void compile_resource_data (const char *name, const char *buffer, int);
1310 extern void compile_resource_file (const char *, const char *);
1311 extern void write_resource_constructor (void);
1312 extern void init_resource_processing (void);
1313
1314
1315 #define DECL_FINAL(DECL) DECL_LANG_FLAG_3 (DECL)
1316
1317 /* Access flags etc for a method (a FUNCTION_DECL): */
1318
1319 #define METHOD_PUBLIC(DECL) DECL_LANG_FLAG_1 (DECL)
1320 #define METHOD_PRIVATE(DECL) TREE_PRIVATE (DECL)
1321 #define METHOD_PROTECTED(DECL) TREE_PROTECTED (DECL)
1322 #define METHOD_STATIC(DECL) DECL_LANG_FLAG_2 (DECL)
1323 #define METHOD_FINAL(DECL) DECL_FINAL (DECL)
1324 #define METHOD_SYNCHRONIZED(DECL) DECL_LANG_FLAG_4 (DECL)
1325 #define METHOD_NATIVE(DECL) (DECL_LANG_SPECIFIC(DECL)->u.f.native)
1326 #define METHOD_ABSTRACT(DECL) DECL_LANG_FLAG_5 (DECL)
1327 #define METHOD_TRANSIENT(DECL) DECL_LANG_FLAG_6 (DECL)
1328 #define METHOD_STRICTFP(DECL) (DECL_LANG_SPECIFIC (DECL)->u.f.strictfp)
1329
1330 #define JAVA_FILE_P(NODE) TREE_LANG_FLAG_2 (NODE)
1331 #define CLASS_FILE_P(NODE) TREE_LANG_FLAG_3 (NODE)
1332 #define ZIP_FILE_P(NODE) TREE_LANG_FLAG_4 (NODE)
1333
1334 /* Other predicates on method decls  */
1335
1336 #define DECL_CONSTRUCTOR_P(DECL) DECL_LANG_FLAG_7(DECL)
1337
1338 #define DECL_INIT_P(DECL)   (ID_INIT_P (DECL_NAME (DECL)))
1339 #define DECL_FINIT_P(DECL)  (ID_FINIT_P (DECL_NAME (DECL)))
1340 #define DECL_CLINIT_P(DECL) (ID_CLINIT_P (DECL_NAME (DECL)))
1341 #define DECL_INSTINIT_P(DECL) (ID_INSTINIT_P (DECL_NAME (DECL)))
1342
1343 /* Predicates on method identifiers. Kept close to other macros using
1344    them  */
1345 #define ID_INIT_P(ID)   ((ID) == init_identifier_node)
1346 #define ID_FINIT_P(ID)  ((ID) == finit_identifier_node)
1347 #define ID_CLINIT_P(ID) ((ID) == clinit_identifier_node)
1348 #define ID_CLASSDOLLAR_P(ID) ((ID) == classdollar_identifier_node)
1349 #define ID_INSTINIT_P(ID) ((ID) == instinit_identifier_node)
1350
1351 /* Access flags etc for a variable/field (a FIELD_DECL): */
1352
1353 #define FIELD_PRIVATE(DECL) TREE_PRIVATE (DECL)
1354 #define FIELD_PROTECTED(DECL) TREE_PROTECTED (DECL)
1355 #define FIELD_PUBLIC(DECL) DECL_LANG_FLAG_1 (DECL)
1356 #define FIELD_STATIC(DECL) TREE_STATIC (DECL)
1357 #define FIELD_FINAL(DECL) DECL_FINAL (DECL)
1358 #define FIELD_VOLATILE(DECL) DECL_LANG_FLAG_4 (DECL)
1359 #define FIELD_TRANSIENT(DECL) DECL_LANG_FLAG_5 (DECL)
1360
1361 /* Access flags etc for a class (a TYPE_DECL): */
1362
1363 #define CLASS_PUBLIC(DECL) DECL_LANG_FLAG_1 (DECL)
1364 #define CLASS_FINAL(DECL) DECL_FINAL (DECL)
1365 #define CLASS_INTERFACE(DECL) DECL_LANG_FLAG_4 (DECL)
1366 #define CLASS_ABSTRACT(DECL) DECL_LANG_FLAG_5 (DECL)
1367 #define CLASS_SUPER(DECL) DECL_LANG_FLAG_6 (DECL)
1368 #define CLASS_STATIC(DECL) DECL_LANG_FLAG_7 (DECL)
1369 #define CLASS_PRIVATE(DECL) (TYPE_PRIVATE_INNER_CLASS (TREE_TYPE (DECL)))
1370 #define CLASS_PROTECTED(DECL) (TYPE_PROTECTED_INNER_CLASS (TREE_TYPE (DECL)))
1371 #define CLASS_STRICTFP(DECL) (TYPE_STRICTFP (TREE_TYPE (DECL)))
1372 #define CLASS_USES_ASSERTIONS(DECL) (TYPE_USES_ASSERTIONS (TREE_TYPE (DECL)))
1373
1374 /* @deprecated marker flag on methods, fields and classes */
1375
1376 #define METHOD_DEPRECATED(DECL) DECL_LANG_FLAG_0 (DECL)
1377 #define FIELD_DEPRECATED(DECL) DECL_LANG_FLAG_0 (DECL)
1378 #define CLASS_DEPRECATED(DECL) DECL_LANG_FLAG_0 (DECL)
1379 #define DECL_DEPRECATED(DECL) DECL_LANG_FLAG_0 (DECL)
1380
1381 /* The number of virtual methods in this class's dispatch table.
1382  Does not include initial two dummy entries (one points to the
1383  Class object, and the other is for G++ -fvtable-thunks compatibility). */
1384 #define TYPE_NVIRTUALS(TYPE) TYPE_BINFO_VIRTUALS (TYPE)
1385
1386 /* A TREE_VEC (indexed by DECL_VINDEX) containing this class's
1387    virtual methods. */
1388 #define TYPE_VTABLE(TYPE) TYPE_BINFO_VTABLE(TYPE)
1389
1390 /* Use CLASS_LOADED_P? FIXME */
1391 #define CLASS_COMPLETE_P(DECL) DECL_LANG_FLAG_2 (DECL) 
1392
1393 /* This maps a bytecode offset (PC) to various flags,
1394    listed below (starting with BCODE_). */
1395 extern char *instruction_bits;
1396
1397 /* True iff the byte is the start of an instruction. */
1398 #define BCODE_INSTRUCTION_START 1
1399
1400 /* True iff there is a jump or a return to this location. */
1401 #define BCODE_JUMP_TARGET 2
1402
1403 /* True iff this is the start of an exception handler. */
1404 #define BCODE_EXCEPTION_TARGET 16
1405
1406 /* True iff there is a jump to this location (and it needs a label). */
1407 #define BCODE_TARGET (BCODE_JUMP_TARGET| BCODE_EXCEPTION_TARGET)
1408
1409 /* True iff there is an entry in the linenumber table for this location. */
1410 #define BCODE_HAS_LINENUMBER 32
1411
1412 /* True iff there is more than one entry in the linenumber table for
1413    this location.  (This probably does not make much sense.)  */
1414 #define BCODE_HAS_MULTI_LINENUMBERS 64
1415
1416 /* True if this instruction has been verified. */
1417 #define BCODE_VERIFIED 8
1418
1419 /* A pointer to the line number table of the current method. */
1420 extern const unsigned char *linenumber_table;
1421 /* The length (in items) of the line number table. */
1422 extern int linenumber_count;
1423
1424 /* In type_map, means that slot is uninitialized or otherwise unusable. */
1425 #define TYPE_UNKNOWN NULL_TREE
1426
1427 /* In type_map, means the second half of a 64-bit double or long. */
1428 #define TYPE_SECOND void_type_node
1429
1430 /* In type_map, means the null type (i.e. type of a null reference). */ 
1431 #define TYPE_NULL ptr_type_node
1432
1433 /* In a type map means the type the address subroutine return address. */
1434 #define TYPE_RETURN_ADDR return_address_type_node
1435
1436 /* In a subroutine's return type map, indicates that the slot was neither
1437    used nor set in the subroutine. */
1438 #define TYPE_UNUSED error_mark_node
1439
1440 /* When returned from pop_type_0, indicates stack underflow. */
1441 #define TYPE_UNDERFLOW integer_zero_node
1442
1443 /* When returned from pop_type_0, indicates a type mismatch. */
1444 #define TYPE_UNEXPECTED NULL_TREE
1445
1446 /* A array mapping variable/stack slot index to the type current
1447    in that variable/stack slot.
1448    TYPE_UNKNOWN, TYPE_SECOND, and TYPE_NULL are special cases. */
1449 extern tree *type_map;
1450
1451 /* Map a stack index to the type currently in that slot. */
1452 #define stack_type_map (type_map+DECL_MAX_LOCALS(current_function_decl))
1453
1454 /* True iff TYPE takes two variable/stack slots. */
1455 #define TYPE_IS_WIDE(TYPE) \
1456   ((TYPE) == double_type_node || (TYPE) == long_type_node)
1457
1458 /* True iif CLASS has it's access$0 method generated.  */
1459 #define CLASS_ACCESS0_GENERATED_P(CLASS) TYPE_LANG_FLAG_0 (CLASS)
1460
1461 /* True iff TYPE is a Java array type. */
1462 #define TYPE_ARRAY_P(TYPE) TYPE_LANG_FLAG_1 (TYPE)
1463
1464 /* True for an INDIRECT_REF created from a 'ARRAY.length' operation. */
1465 #define IS_ARRAY_LENGTH_ACCESS(NODE) TREE_LANG_FLAG_4 (NODE)
1466
1467 /* If FUNCTION_TYPE or METHOD_TYPE: cache for build_java_argument_signature. */
1468 #define TYPE_ARGUMENT_SIGNATURE(TYPE) TYPE_VFIELD(TYPE)
1469
1470 /* Given an array type, give the type of the elements. */
1471 /* FIXME this use of TREE_TYPE conflicts with something or other. */
1472 #define TYPE_ARRAY_ELEMENT(ATYPE) TREE_TYPE(ATYPE)
1473
1474 /* True if class TYPE has been loaded (i.e. parsed plus laid out).
1475    (The check for CLASS_PARSED_P is needed because of Object and Class.) */
1476 #define CLASS_LOADED_P(TYPE) (TYPE_SIZE (TYPE) != NULL_TREE \
1477                               && (CLASS_PARSED_P(TYPE) || TYPE_ARRAY_P(TYPE)))
1478
1479 /* True if class TYPE has been parsed (first pass). */
1480 #define CLASS_PARSED_P(TYPE) TYPE_LANG_FLAG_2 (TYPE)
1481
1482 /* True if class TYPE was defined in Java source code. */
1483 #define CLASS_FROM_SOURCE_P(TYPE) TYPE_LANG_FLAG_3 (TYPE)
1484
1485 /* True of a RECORD_TYPE of a class/interface type (not array type) */
1486 #define CLASS_P(TYPE) TYPE_LANG_FLAG_4 (TYPE)
1487
1488 /* True if class TYPE was requested (on command line) to be compiled.*/
1489 #define CLASS_FROM_CURRENTLY_COMPILED_P(TYPE) \
1490   TYPE_LANG_FLAG_5 (TYPE)
1491
1492 /* True if class TYPE is currently being laid out. Helps in detection
1493    of inheritance cycle occurring as a side effect of performing the
1494    layout of a class.  */
1495 #define CLASS_BEING_LAIDOUT(TYPE) TYPE_LANG_FLAG_6 (TYPE)
1496
1497 /* True if class TYPE has a field initializer finit$ function */
1498 #define CLASS_HAS_FINIT_P(TYPE) TYPE_FINIT_STMT_LIST (TYPE)
1499
1500 /* True if identifier ID was seen while processing a single type import stmt */
1501 #define IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P(ID) TREE_LANG_FLAG_0 (ID)
1502
1503 /* True if identifier ID was seen while processing an import statement */
1504 #define IS_A_CLASSFILE_NAME(ID) TREE_LANG_FLAG_1 (ID)
1505
1506 /* True if ID is a qualified named (contains . or /) */
1507 #define QUALIFIED_P(ID) TREE_LANG_FLAG_2 (ID)
1508
1509 /* True if ID is an already processed import on demand */
1510 #define IS_AN_IMPORT_ON_DEMAND_P(ID) TREE_LANG_FLAG_3 (ID)
1511
1512 /* True if ID is a command-line specified filename */
1513 #define IS_A_COMMAND_LINE_FILENAME_P(ID) TREE_LANG_FLAG_4 (ID)
1514
1515 /* True if filename ID has already been parsed */
1516 #define HAS_BEEN_ALREADY_PARSED_P(ID) TREE_LANG_FLAG_5 (ID)
1517
1518 /* True if EXPR is RHS sub-tree of a compound assign expression */
1519 #define COMPOUND_ASSIGN_P(EXPR) TREE_LANG_FLAG_1 (EXPR)
1520
1521 /* True if a SWITCH_EXPR has a DEFAULT_EXPR. */
1522 #define SWITCH_HAS_DEFAULT(NODE) TREE_LANG_FLAG_3 (NODE)
1523
1524 /* True if EXPR (a WFL in that case) was created after the
1525    reduction of PRIMARY . XXX */
1526 #define PRIMARY_P(EXPR) TREE_LANG_FLAG_2 (EXPR)
1527
1528 /* True if EXPR (a MODIFY_EXPR in that case) is the result of variable
1529    initialization during its declaration */
1530 #define MODIFY_EXPR_FROM_INITIALIZATION_P(EXPR) TREE_LANG_FLAG_2 (EXPR)
1531
1532 /* True if EXPR (a TREE_TYPE denoting a class type) has its methods
1533    already checked (for redefinitions, etc, see java_check_regular_methods.) */
1534 #define CLASS_METHOD_CHECKED_P(EXPR) TREE_LANG_FLAG_2 (EXPR)
1535
1536 /* True if TYPE (a TREE_TYPE denoting a class type) was found to
1537    feature a finalizer method. */
1538 #define HAS_FINALIZER_P(EXPR) TREE_LANG_FLAG_3 (EXPR)
1539
1540 /* True if EXPR (a WFL in that case) resolves into an expression name */
1541 #define RESOLVE_EXPRESSION_NAME_P(WFL) TREE_LANG_FLAG_0 (WFL)
1542
1543 /* True if EXPR (a LOOP_EXPR in that case) is part of a for statement */
1544 #define FOR_LOOP_P(EXPR) TREE_LANG_FLAG_0 (EXPR)
1545
1546 /* True if NODE (a RECORD_TYPE in that case) is an anonymous class.  */
1547 #define ANONYMOUS_CLASS_P(NODE) TREE_LANG_FLAG_0 (NODE)
1548
1549 /* True if NODE (a RECORD_TYPE in that case) is a block local class.  */
1550 #define LOCAL_CLASS_P(NODE) TREE_LANG_FLAG_1 (NODE)
1551
1552 /* True if NODE (a TREE_LIST) hold a pair of argument name/type
1553    declared with the final modifier */
1554 #define ARG_FINAL_P(NODE) TREE_LANG_FLAG_0 (NODE)
1555
1556 /* True if NODE (some kind of EXPR, but not a WFL) should not give an
1557    error if it is found to be unreachable.  This can only be applied
1558    to those EXPRs which can be used as the update expression of a
1559    `for' loop.  In particular it can't be set on a LOOP_EXPR.  */
1560 #define SUPPRESS_UNREACHABLE_ERROR(NODE) TREE_LANG_FLAG_0 (NODE)
1561
1562 /* True if EXPR (a WFL in that case) resolves into a package name */
1563 #define RESOLVE_PACKAGE_NAME_P(WFL) TREE_LANG_FLAG_3 (WFL)
1564
1565 /* True if EXPR (a WFL in that case) resolves into a type name */
1566 #define RESOLVE_TYPE_NAME_P(WFL) TREE_LANG_FLAG_4 (WFL)
1567
1568 /* True if STMT (a WFL in that case) holds a BREAK statement */
1569 #define IS_BREAK_STMT_P(WFL) TREE_LANG_FLAG_5 (WFL)
1570
1571 /* True if EXPR (a CALL_EXPR in that case) is a crafted StringBuffer */
1572 #define IS_CRAFTED_STRING_BUFFER_P(EXPR) TREE_LANG_FLAG_5 (EXPR)
1573
1574 /* True if EXPR (a SAVE_EXPR in that case) had its content already
1575    checked for (un)initialized local variables.  */
1576 #define IS_INIT_CHECKED(EXPR) TREE_LANG_FLAG_5 (EXPR)
1577
1578 /* If set in CALL_EXPR, the receiver is 'super'. */
1579 #define CALL_USING_SUPER(EXPR) TREE_LANG_FLAG_4 (EXPR)
1580
1581 /* True if NODE (a statement) can complete normally. */
1582 #define CAN_COMPLETE_NORMALLY(NODE) TREE_LANG_FLAG_6(NODE)
1583
1584 /* True if NODE (an IDENTIFIER) bears the name of a outer field from
1585    inner class access function.  */
1586 #define OUTER_FIELD_ACCESS_IDENTIFIER_P(NODE) TREE_LANG_FLAG_6(NODE)
1587
1588 /* Non null if NODE belongs to an inner class TYPE_DECL node.
1589    Verifies that NODE as the attributes of a decl.  */
1590 #define INNER_CLASS_DECL_P(NODE) (TYPE_NAME (TREE_TYPE (NODE)) == NODE  \
1591                                   && DECL_CONTEXT (NODE))
1592
1593 /* Non null if NODE is an top level class TYPE_DECL node: NODE isn't
1594    an inner class or NODE is a static class.  */
1595 #define TOPLEVEL_CLASS_DECL_P(NODE) (!INNER_CLASS_DECL_P (NODE)         \
1596                                      || CLASS_STATIC (NODE))
1597
1598 /* True if the class decl NODE was declared in a inner scope and is
1599    not a toplevel class */
1600 #define PURE_INNER_CLASS_DECL_P(NODE) \
1601   (INNER_CLASS_DECL_P (NODE) && !CLASS_STATIC (NODE))
1602
1603 /* Non null if NODE belongs to an inner class RECORD_TYPE node. Checks
1604    that TYPE_NAME bears a decl. An array type wouldn't.  */
1605 #define INNER_CLASS_TYPE_P(NODE) (TREE_CODE (TYPE_NAME (NODE)) == TYPE_DECL \
1606                                   && DECL_CONTEXT (TYPE_NAME (NODE)))
1607
1608 #define TOPLEVEL_CLASS_TYPE_P(NODE) (!INNER_CLASS_TYPE_P (NODE)         \
1609                                      || CLASS_STATIC (TYPE_NAME (NODE)))
1610
1611 /* True if the class type NODE was declared in a inner scope and is
1612    not a toplevel class */
1613 #define PURE_INNER_CLASS_TYPE_P(NODE) \
1614   (INNER_CLASS_TYPE_P (NODE) && !CLASS_STATIC (TYPE_NAME (NODE)))
1615
1616 /* Non null if NODE (a TYPE_DECL or a RECORD_TYPE) is an inner class.  */
1617 #define INNER_CLASS_P(NODE) (TREE_CODE (NODE) == TYPE_DECL ?                  \
1618                              INNER_CLASS_DECL_P (NODE) :                      \
1619                              (TREE_CODE (NODE) == RECORD_TYPE ?               \
1620                               INNER_CLASS_TYPE_P (NODE) :                     \
1621                               (abort (), 0)))
1622
1623 /* On a TYPE_DECL, hold the list of inner classes defined within the
1624    scope of TYPE_DECL.  */
1625 #define DECL_INNER_CLASS_LIST(NODE) DECL_INITIAL (NODE)
1626
1627 /* Build a IDENTIFIER_NODE for a file name we're considering. Since
1628    all_class_filename is a registered root, putting this identifier
1629    in a TREE_LIST it holds keeps this node alive.  */
1630 #define BUILD_FILENAME_IDENTIFIER_NODE(F, S)            \
1631   if (!((F) = maybe_get_identifier ((S))))              \
1632     {                                                   \
1633       (F) = get_identifier ((S));                       \
1634       tree_cons ((F), NULL_TREE, all_class_filename);   \
1635     }
1636
1637 /* Add a FIELD_DECL to RECORD_TYPE RTYPE.
1638    The field has name NAME (a char*), and type FTYPE.
1639    Unless this is the first field, FIELD most hold the previous field.
1640    FIELD is set to the newly created FIELD_DECL.
1641
1642    We set DECL_ARTIFICIAL so these fields get skipped by make_class_data
1643    if compiling java.lang.Object or java.lang.Class. */
1644
1645 #define PUSH_FIELD(RTYPE, FIELD, NAME, FTYPE) \
1646 { tree tmp_field = build_decl (FIELD_DECL, get_identifier(NAME), FTYPE); \
1647   if (TYPE_FIELDS (RTYPE) == NULL_TREE) TYPE_FIELDS (RTYPE) = tmp_field; \
1648   else TREE_CHAIN(FIELD) = tmp_field; \
1649   DECL_CONTEXT (tmp_field) = RTYPE; \
1650   DECL_ARTIFICIAL (tmp_field) = 1; \
1651   FIELD = tmp_field; }
1652
1653 #define FINISH_RECORD(RTYPE) layout_type (RTYPE)
1654
1655 /* Start building a RECORD_TYPE constructor with a given TYPE in CONS. */
1656 #define START_RECORD_CONSTRUCTOR(CONS, CTYPE) { \
1657   CONS = build_constructor (CTYPE, NULL_TREE);\
1658   TREE_CHAIN(CONS) = TYPE_FIELDS (CTYPE); }
1659
1660 /* Append a field initializer to CONS for the dummy field for the inherited
1661    fields.  The dummy field has the given VALUE, and the same type as the
1662    super-class.   Must be specified before calls to PUSH_FIELD_VALUE. */
1663
1664 #define PUSH_SUPER_VALUE(CONS, VALUE) {\
1665   tree field = TREE_CHAIN(CONS);\
1666   if (DECL_NAME (field) != NULL_TREE) abort();\
1667   CONSTRUCTOR_ELTS(CONS) = tree_cons (field, VALUE, CONSTRUCTOR_ELTS(CONS));\
1668   TREE_CHAIN(CONS) = TREE_CHAIN (field); }
1669
1670 /* Append a field initializer to CONS for a field with the given VALUE.
1671    NAME is a char* string used for error checking;
1672    the initializer must be specified in order. */
1673 #define PUSH_FIELD_VALUE(CONS, NAME, VALUE) {\
1674   tree field = TREE_CHAIN(CONS);\
1675   if (strcmp (IDENTIFIER_POINTER (DECL_NAME (field)), NAME) != 0) abort();\
1676   CONSTRUCTOR_ELTS(CONS) = tree_cons (field, VALUE, CONSTRUCTOR_ELTS(CONS));\
1677   TREE_CHAIN(CONS) = TREE_CHAIN (field); }
1678
1679 /* Finish creating a record CONSTRUCTOR CONS. */
1680 #define FINISH_RECORD_CONSTRUCTOR(CONS) \
1681   CONSTRUCTOR_ELTS(CONS) = nreverse (CONSTRUCTOR_ELTS(CONS))
1682
1683 /* Macros on constructors invocations.  */
1684 #define CALL_CONSTRUCTOR_P(NODE)                \
1685   (TREE_CODE (NODE) == NEW_CLASS_EXPR || CALL_EXPLICIT_CONSTRUCTOR_P (NODE))
1686
1687 #define CALL_EXPLICIT_CONSTRUCTOR_P(NODE)                               \
1688   (CALL_THIS_CONSTRUCTOR_P (NODE) || CALL_SUPER_CONSTRUCTOR_P (NODE))
1689
1690 #define CALL_THIS_CONSTRUCTOR_P(NODE)                                   \
1691   (TREE_CODE (NODE) == CALL_EXPR                                        \
1692    && EXPR_WFL_NODE (TREE_OPERAND (NODE, 0)) == this_identifier_node)
1693
1694 #define CALL_SUPER_CONSTRUCTOR_P(NODE)                                  \
1695   (TREE_CODE (NODE) == CALL_EXPR                                        \
1696    && EXPR_WFL_NODE (TREE_OPERAND (NODE, 0)) == super_identifier_node)
1697
1698 /* Using a FINALLY_EXPR node */
1699 #define FINALLY_EXPR_LABEL(NODE) TREE_OPERAND ((NODE), 0)
1700 #define FINALLY_EXPR_BLOCK(NODE) TREE_OPERAND ((NODE), 1)
1701
1702 #define BLOCK_EXPR_DECLS(NODE)  BLOCK_VARS(NODE)
1703 #define BLOCK_EXPR_BODY(NODE)   BLOCK_SUBBLOCKS(NODE)
1704 /* True for an implicit block surrounding declaration not at start of {...}. */
1705 #define BLOCK_IS_IMPLICIT(NODE) TREE_LANG_FLAG_1 (NODE)
1706
1707 #define BUILD_MONITOR_ENTER(WHERE, ARG)                         \
1708   {                                                             \
1709     (WHERE) = build (CALL_EXPR, int_type_node,                  \
1710                      build_address_of (soft_monitorenter_node), \
1711                      build_tree_list (NULL_TREE, (ARG)),        \
1712                      NULL_TREE);                                \
1713     TREE_SIDE_EFFECTS (WHERE) = 1;                              \
1714   }
1715
1716 #define BUILD_MONITOR_EXIT(WHERE, ARG)                          \
1717   {                                                             \
1718     (WHERE) = build (CALL_EXPR, int_type_node,                  \
1719                      build_address_of (soft_monitorexit_node),  \
1720                      build_tree_list (NULL_TREE, (ARG)),        \
1721                      NULL_TREE);                                \
1722     TREE_SIDE_EFFECTS (WHERE) = 1;                              \
1723   }
1724
1725 /* Nonzero if TYPE is an unchecked exception */
1726 #define IS_UNCHECKED_EXCEPTION_P(TYPE)                          \
1727   (inherits_from_p ((TYPE), runtime_exception_type_node)        \
1728    || inherits_from_p ((TYPE), error_exception_type_node))
1729
1730 /* True when we can perform static class initialization optimization */
1731 #define STATIC_CLASS_INIT_OPT_P() \
1732   (flag_optimize_sci && (optimize >= 2) && ! flag_emit_class_files)
1733
1734 extern int java_error_count;
1735
1736 /* Make the current function where this macro is invoked report error
1737    messages and and return, if any */
1738 #define java_parse_abort_on_error()                                     \
1739   {                                                                     \
1740      if (java_error_count > save_error_count)                           \
1741        return;                                                          \
1742    }
1743
1744 /* These are the possible values for the `state' field of the class
1745    structure.  This must be kept in sync with libgcj.  */
1746 enum
1747 {
1748   JV_STATE_NOTHING = 0,         /* Set by compiler.  */
1749
1750   JV_STATE_PRELOADING = 1,      /* Can do _Jv_FindClass.  */
1751   JV_STATE_LOADING = 3,         /* Has super installed.  */
1752   JV_STATE_LOADED = 5,          /* Is complete.  */
1753
1754   JV_STATE_COMPILED = 6,        /* This was a compiled class.  */
1755
1756   JV_STATE_PREPARED = 7,        /* Layout & static init done.  */
1757   JV_STATE_LINKED = 9,          /* Strings interned.  */
1758
1759   JV_STATE_IN_PROGRESS = 10,    /* <Clinit> running.  */
1760   JV_STATE_ERROR = 12,
1761
1762   JV_STATE_DONE = 14            /* Must be last.  */
1763
1764 };
1765
1766 #undef DEBUG_JAVA_BINDING_LEVELS
1767 #endif /* ! GCC_JAVA_TREE_H */