OSDN Git Service

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