OSDN Git Service

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