OSDN Git Service

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