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