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