OSDN Git Service

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