OSDN Git Service

Added Java 1.1 language features.
[pf3gnuchains/gcc-fork.git] / gcc / java / typeck.c
1 /* Handle types for the GNU compiler for the Java(TM) language.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  
20
21 Java and all Java-based marks are trademarks or registered trademarks
22 of Sun Microsystems, Inc. in the United States and other countries.
23 The Free Software Foundation is independent of Sun Microsystems, Inc.  */
24
25 /* Written by Per Bothner <bothner@cygnus.com> */
26
27 #include "config.h"
28 #include "system.h"
29 #include "tree.h"
30 #include "obstack.h"
31 #include "flags.h"
32 #include "java-tree.h"
33 #include "jcf.h"
34 #include "convert.h"
35 #include "toplev.h"
36
37 static tree convert_ieee_real_to_integer PARAMS ((tree, tree));
38 static tree parse_signature_type PARAMS ((const unsigned char **,
39                                          const unsigned char *));
40 static tree lookup_do PARAMS ((tree, tree, tree, tree, tree (*)(tree)));
41
42 tree * type_map;
43 extern struct obstack permanent_obstack;
44
45 /* Set the type of the local variable with index SLOT to TYPE. */
46
47 void
48 set_local_type (slot, type)
49      int slot;
50      tree type;
51 {
52   int max_locals = DECL_MAX_LOCALS(current_function_decl);
53   int nslots = TYPE_IS_WIDE (type) ? 2 : 1;
54   if (slot < 0 || slot + nslots - 1 >= max_locals)
55     fatal ("invalid local variable index");
56   type_map[slot] = type;
57   while (--nslots > 0)
58     type_map[++slot] = void_type_node;
59 }
60
61 /* Convert an IEEE real to an integer type.  The result of such a
62    conversion when the source operand is a NaN isn't defined by
63    IEEE754, but by the Java language standard: it must be zero.  Also,
64    overflows must be clipped to within range.  This conversion
65    produces something like:
66
67       ((expr >= (float)MAX_INT)
68        ? MAX_INT 
69        : ((expr <= (float)MIN_INT)
70           ? MIN_INT
71           : ((expr != expr)
72              ? 0 
73              : (int)expr))) */
74
75 static tree
76 convert_ieee_real_to_integer (type, expr)
77      tree type, expr;
78 {
79   tree result;
80   expr = save_expr (expr);
81
82   result = build (COND_EXPR, type,
83                   build (NE_EXPR, boolean_type_node, expr, expr),
84                   convert (type, integer_zero_node),
85                   convert_to_integer (type, expr));
86                   
87   result = build (COND_EXPR, type, 
88                   build (LE_EXPR, boolean_type_node, expr, 
89                          convert (TREE_TYPE (expr), TYPE_MIN_VALUE (type))),
90                   TYPE_MIN_VALUE (type),
91                   result);
92
93   result = build (COND_EXPR, type,
94                   build (GE_EXPR, boolean_type_node, expr, 
95                          convert (TREE_TYPE (expr), TYPE_MAX_VALUE (type))),    
96                   TYPE_MAX_VALUE (type),
97                   result);
98
99   return result;
100 }  
101
102 /* Create an expression whose value is that of EXPR,
103    converted to type TYPE.  The TREE_TYPE of the value
104    is always TYPE.  This function implements all reasonable
105    conversions; callers should filter out those that are
106    not permitted by the language being compiled.  */
107
108 tree
109 convert (type, expr)
110      tree type, expr;
111 {
112   register enum tree_code code = TREE_CODE (type);
113
114   if (!expr)
115    return error_mark_node;
116
117   if (do_not_fold)
118     return build1 (NOP_EXPR, type, expr);
119
120   if (type == TREE_TYPE (expr)
121       || TREE_CODE (expr) == ERROR_MARK)
122     return expr;
123   if (TREE_CODE (TREE_TYPE (expr)) == ERROR_MARK)
124     return error_mark_node;
125   if (code == VOID_TYPE)
126     return build1 (CONVERT_EXPR, type, expr);
127   if (code == BOOLEAN_TYPE)
128     return fold (convert_to_boolean (type, expr));
129   if (code == INTEGER_TYPE)
130     {
131       if (! flag_fast_math
132           && ! flag_emit_class_files
133           && TREE_CODE (TREE_TYPE (expr)) == REAL_TYPE
134           && TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
135         return fold (convert_ieee_real_to_integer (type, expr));
136       else
137         return fold (convert_to_integer (type, expr));
138     }     
139   if (code == REAL_TYPE)
140     return fold (convert_to_real (type, expr));
141   if (code == CHAR_TYPE)
142     return fold (convert_to_char (type, expr));
143   if (code == POINTER_TYPE)
144     return fold (convert_to_pointer (type, expr));
145   error ("conversion to non-scalar type requested");
146   return error_mark_node;
147 }
148
149
150 tree
151 convert_to_char (type, expr)
152     tree type, expr;
153 {
154   return build1 (NOP_EXPR, type, expr);
155 }
156
157 tree
158 convert_to_boolean (type, expr)
159      tree type, expr;
160 {
161   return build1 (NOP_EXPR, type, expr);
162 }
163
164 /* Print an error message for invalid use of an incomplete type.
165    VALUE is the expression that was used (or 0 if that isn't known)
166    and TYPE is the type that was invalid.  */
167
168 void
169 incomplete_type_error (value, type)
170   tree value ATTRIBUTE_UNUSED;
171   tree type ATTRIBUTE_UNUSED;
172 {
173   error ("internal error - use of undefined type");
174 }
175
176 /* Return a data type that has machine mode MODE.
177    If the mode is an integer,
178    then UNSIGNEDP selects between signed and unsigned types.  */
179
180 tree
181 type_for_mode (mode, unsignedp)
182      enum machine_mode mode;
183      int unsignedp;
184 {
185   if (mode == TYPE_MODE (int_type_node))
186     return unsignedp ? unsigned_int_type_node : int_type_node;
187   if (mode == TYPE_MODE (long_type_node))
188     return unsignedp ? unsigned_long_type_node : long_type_node;
189   if (mode == TYPE_MODE (short_type_node))
190     return unsignedp ? unsigned_short_type_node : short_type_node;
191   if (mode == TYPE_MODE (byte_type_node))
192     return unsignedp ? unsigned_byte_type_node : byte_type_node;
193   if (mode == TYPE_MODE (float_type_node))
194     return float_type_node;
195   if (mode == TYPE_MODE (double_type_node))
196     return double_type_node;
197
198   return 0;
199 }
200
201 /* Return an integer type with BITS bits of precision,
202    that is unsigned if UNSIGNEDP is nonzero, otherwise signed.  */
203
204 tree
205 type_for_size (bits, unsignedp)
206      unsigned bits;
207      int unsignedp;
208 {
209   if (bits <= TYPE_PRECISION (byte_type_node))
210     return unsignedp ? unsigned_byte_type_node : byte_type_node;
211   if (bits <= TYPE_PRECISION (short_type_node))
212     return unsignedp ? unsigned_short_type_node : short_type_node;
213   if (bits <= TYPE_PRECISION (int_type_node))
214     return unsignedp ? unsigned_int_type_node : int_type_node;
215   if (bits <= TYPE_PRECISION (long_type_node))
216     return unsignedp ? unsigned_long_type_node : long_type_node;
217   return 0;
218 }
219
220 /* Return a type the same as TYPE except unsigned or
221    signed according to UNSIGNEDP.  */
222
223 tree
224 signed_or_unsigned_type (unsignedp, type)
225      int unsignedp;
226      tree type;
227 {
228   if (! INTEGRAL_TYPE_P (type))
229     return type;
230   if (TYPE_PRECISION (type) == TYPE_PRECISION (int_type_node))
231     return unsignedp ? unsigned_int_type_node : int_type_node;
232   if (TYPE_PRECISION (type) == TYPE_PRECISION (byte_type_node))
233     return unsignedp ? unsigned_byte_type_node : byte_type_node;
234   if (TYPE_PRECISION (type) == TYPE_PRECISION (short_type_node))
235     return unsignedp ? unsigned_short_type_node : short_type_node;
236   if (TYPE_PRECISION (type) == TYPE_PRECISION (long_type_node))
237     return unsignedp ? unsigned_long_type_node : long_type_node;
238   return type;
239 }
240
241 /* Return a signed type the same as TYPE in other respects.  */
242
243 tree
244 signed_type (type)
245      tree type;
246 {
247   return signed_or_unsigned_type (0, type);
248 }
249
250 /* Return an unsigned type the same as TYPE in other respects.  */
251
252 tree
253 unsigned_type (type)
254      tree type;
255 {
256   return signed_or_unsigned_type (1, type);
257
258 }
259
260 /* Mark EXP saying that we need to be able to take the
261    address of it; it should not be allocated in a register.
262    Value is 1 if successful.  */
263
264 int
265 mark_addressable (exp)
266      tree exp;
267 {
268   register tree x = exp;
269   while (1)
270     switch (TREE_CODE (x))
271       {
272       case ADDR_EXPR:
273       case COMPONENT_REF:
274       case ARRAY_REF:
275       case REALPART_EXPR:
276       case IMAGPART_EXPR:
277         x = TREE_OPERAND (x, 0);
278         break;
279
280       case TRUTH_ANDIF_EXPR:
281       case TRUTH_ORIF_EXPR:
282       case COMPOUND_EXPR:
283         x = TREE_OPERAND (x, 1);
284         break;
285
286       case COND_EXPR:
287         return mark_addressable (TREE_OPERAND (x, 1))
288           & mark_addressable (TREE_OPERAND (x, 2));
289
290       case CONSTRUCTOR:
291         TREE_ADDRESSABLE (x) = 1;
292         return 1;
293
294       case INDIRECT_REF:
295         /* We sometimes add a cast *(TYPE*)&FOO to handle type and mode
296            incompatibility problems.  Handle this case by marking FOO.  */
297         if (TREE_CODE (TREE_OPERAND (x, 0)) == NOP_EXPR
298             && TREE_CODE (TREE_OPERAND (TREE_OPERAND (x, 0), 0)) == ADDR_EXPR)
299           {
300             x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
301             break;
302           }
303         if (TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
304           {
305             x = TREE_OPERAND (x, 0);
306             break;
307           }
308         return 1;
309
310       case VAR_DECL:
311       case CONST_DECL:
312       case PARM_DECL:
313       case RESULT_DECL:
314       case FUNCTION_DECL:
315         TREE_ADDRESSABLE (x) = 1;
316 #if 0  /* poplevel deals with this now.  */
317         if (DECL_CONTEXT (x) == 0)
318           TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (x)) = 1;
319 #endif
320         /* drops through */
321       default:
322         return 1;
323     }
324 }
325
326 /* Thorough checking of the arrayness of TYPE.  */
327
328 int
329 is_array_type_p (type)
330      tree type;
331 {
332   return TREE_CODE (type) == POINTER_TYPE
333     && TREE_CODE (TREE_TYPE (type)) == RECORD_TYPE
334     && TYPE_ARRAY_P (TREE_TYPE (type));
335 }
336
337 /* Return the length of a Java array type.
338    Return -1 if the length is unknown or non-constant. */
339
340 HOST_WIDE_INT
341 java_array_type_length (array_type)
342      tree array_type;
343 {
344   tree arfld;
345   if (TREE_CODE (array_type) == POINTER_TYPE)
346     array_type = TREE_TYPE (array_type);
347   arfld = TREE_CHAIN (TREE_CHAIN (TYPE_FIELDS (array_type)));
348   if (arfld != NULL_TREE)
349     {
350       tree index_type = TYPE_DOMAIN (TREE_TYPE (arfld));
351       tree high = TYPE_MAX_VALUE (index_type);
352       if (TREE_CODE (high) == INTEGER_CST)
353         return TREE_INT_CST_LOW (high) + 1;
354     }
355   return -1;
356 }
357
358 tree
359 build_prim_array_type (element_type, length)
360      tree element_type;
361      HOST_WIDE_INT length;
362 {
363   tree max_index = build_int_2 (length - 1, (0 == length ? -1 : 0));
364   TREE_TYPE (max_index) = sizetype;
365   return build_array_type (element_type, build_index_type (max_index));
366 }
367
368 /* Return a Java array type with a given ELEMENT_TYPE and LENGTH.
369    These are hashed (shared) using IDENTIFIER_SIGNATURE_TYPE.
370    The LENGTH is -1 if the length is unknown. */
371
372 tree
373 build_java_array_type (element_type, length)
374      tree element_type;
375      HOST_WIDE_INT length;
376 {
377   tree sig, t, fld;
378   char buf[12];
379   tree elsig = build_java_signature (element_type);
380   tree el_name = element_type;
381   buf[0] = '[';
382   if (length >= 0)
383     sprintf (buf+1, HOST_WIDE_INT_PRINT_DEC, length);
384   else
385     buf[1] = '\0';
386   sig = ident_subst (IDENTIFIER_POINTER (elsig), IDENTIFIER_LENGTH (elsig),
387                      buf, 0, 0, "");
388   t = IDENTIFIER_SIGNATURE_TYPE (sig);
389   if (t != NULL_TREE)
390     return TREE_TYPE (t);
391   t = make_class ();
392   IDENTIFIER_SIGNATURE_TYPE (sig) = build_pointer_type (t);
393   TYPE_ARRAY_P (t) = 1;
394
395   if (TREE_CODE (el_name) == POINTER_TYPE)
396     el_name = TREE_TYPE (el_name);
397   el_name = TYPE_NAME (el_name);
398   if (TREE_CODE (el_name) == TYPE_DECL)
399     el_name = DECL_NAME (el_name);
400   TYPE_NAME (t) = identifier_subst (el_name, "", '.', '.', "[]");
401
402   set_java_signature (t, sig);
403   set_super_info (0, t, object_type_node, 0);
404   if (TREE_CODE (element_type) == RECORD_TYPE)
405     element_type = promote_type (element_type);
406   TYPE_ARRAY_ELEMENT (t) = element_type;
407
408   /* Add length pseudo-field. */
409   push_obstacks (&permanent_obstack, &permanent_obstack);
410   fld = build_decl (FIELD_DECL, get_identifier ("length"), int_type_node);
411   TYPE_FIELDS (t) = fld;
412   DECL_CONTEXT (fld) = t;
413   FIELD_PUBLIC (fld) = 1;
414   FIELD_FINAL (fld) = 1;
415
416   if (length >= 0)
417     {
418       tree atype = build_prim_array_type (element_type, length);
419       tree arfld = build_decl (FIELD_DECL, get_identifier ("data"), atype);
420       DECL_CONTEXT (arfld) = t;
421       TREE_CHAIN (fld) = arfld;
422     }
423   else
424     TYPE_ALIGN (t) = TYPE_ALIGN (element_type);
425   pop_obstacks ();
426
427   /* We could layout_class, but that loads java.lang.Object prematurely.
428    * This is called by the parser, and it is a bad idea to do load_class
429    * in the middle of parsing, because of possible circularity problems. */
430   push_super_field (t, object_type_node);
431   layout_type (t);
432
433   return t;
434 }
435
436 /* Promote TYPE to the type actually used for fields and parameters. */
437
438 tree
439 promote_type (type)
440      tree type;
441 {
442   switch (TREE_CODE (type))
443     {
444     case RECORD_TYPE:
445       return build_pointer_type (CLASS_TO_HANDLE_TYPE (type));
446     case BOOLEAN_TYPE:
447       if (type == boolean_type_node)
448         return promoted_boolean_type_node;
449       goto handle_int;
450     case CHAR_TYPE:
451       if (type == char_type_node)
452         return promoted_char_type_node;
453       goto handle_int;
454     case INTEGER_TYPE:
455     handle_int:
456       if (TYPE_PRECISION (type) < TYPE_PRECISION (int_type_node))
457         {
458           if (type == short_type_node)
459             return promoted_short_type_node;
460           if (type == byte_type_node)
461             return promoted_byte_type_node;
462           return int_type_node;
463         }
464       /* ... else fall through ... */
465     default:
466       return type;
467     }
468 }
469
470 /* Parse a signature string, starting at *PTR and ending at LIMIT.
471    Return the seen TREE_TYPE, updating *PTR. */
472
473 static tree
474 parse_signature_type (ptr, limit)
475      const unsigned char **ptr, *limit;
476 {
477   tree type;
478   if ((*ptr) >= limit)
479     fatal ("bad signature string");
480   switch (*(*ptr))
481     {
482     case 'B':  (*ptr)++;  return byte_type_node;
483     case 'C':  (*ptr)++;  return char_type_node;
484     case 'D':  (*ptr)++;  return double_type_node;
485     case 'F':  (*ptr)++;  return float_type_node;
486     case 'S':  (*ptr)++;  return short_type_node;
487     case 'I':  (*ptr)++;  return int_type_node;
488     case 'J':  (*ptr)++;  return long_type_node;
489     case 'Z':  (*ptr)++;  return boolean_type_node;
490     case 'V':  (*ptr)++;  return void_type_node;
491     case '[':
492       for ((*ptr)++; (*ptr) < limit && ISDIGIT (**ptr); ) (*ptr)++;
493       type = parse_signature_type (ptr, limit);
494       type = build_java_array_type (type, -1); 
495       break;
496     case 'L':
497       {
498         const unsigned char *start = ++(*ptr);
499         register const unsigned char *str = start;
500         for ( ; ; str++)
501           {
502             if (str >= limit)
503               fatal ("bad signature string");
504             if (*str == ';')
505               break;
506           }
507         *ptr = str+1;
508         type = lookup_class (unmangle_classname (start, str - start));
509         break;
510       }
511     default:
512       fatal ("unrecognized signature string");
513     }
514   return promote_type (type);
515 }
516
517 /* Parse a Java "mangled" signature string, starting at SIG_STRING,
518    and SIG_LENGTH bytes long.
519    Return a gcc type node. */
520
521 tree
522 parse_signature_string (sig_string, sig_length)
523      const unsigned char *sig_string;
524      int sig_length;
525 {
526   tree result_type;
527   const unsigned char *str = sig_string;
528   const unsigned char *limit = str + sig_length;
529
530   push_obstacks (&permanent_obstack, &permanent_obstack);
531   if (str < limit && str[0] == '(')
532     {
533       tree argtype_list = NULL_TREE;
534       str++;
535       while (str < limit && str[0] != ')')
536         {
537           tree argtype = parse_signature_type (&str, limit);
538           argtype_list = tree_cons (NULL_TREE, argtype, argtype_list);
539         }
540       if (str++, str >= limit)
541         fatal ("bad signature string");
542       result_type = parse_signature_type (&str, limit);
543       argtype_list = chainon (nreverse (argtype_list), end_params_node);
544       result_type = build_function_type (result_type, argtype_list);
545     }
546   else
547     result_type = parse_signature_type (&str, limit);
548   if (str != limit)
549     error ("junk at end of signature string");
550   pop_obstacks ();
551   return result_type;
552 }
553
554 /* Convert a signature to its type.
555  * Uses IDENTIFIER_SIGNATURE_TYPE as a cache (except for primitive types).
556  */
557
558 tree
559 get_type_from_signature (tree signature)
560 {
561   const unsigned char *sig = (const unsigned char *) IDENTIFIER_POINTER (signature);
562   int len = IDENTIFIER_LENGTH (signature);
563   tree type;
564   /* Primitive types aren't cached. */
565   if (len <= 1)
566     return parse_signature_string (sig, len);
567   type = IDENTIFIER_SIGNATURE_TYPE (signature);
568   if (type == NULL_TREE)
569     {
570       type = parse_signature_string (sig, len);
571       IDENTIFIER_SIGNATURE_TYPE (signature) = type;
572     }
573   return type;
574 }
575
576 /* Return the signature string for the arguments of method type TYPE. */
577
578 tree
579 build_java_argument_signature (type)
580      tree type;
581 {
582   extern struct obstack temporary_obstack;
583   tree sig = TYPE_ARGUMENT_SIGNATURE (type);
584   if (sig == NULL_TREE)
585     {
586       tree args = TYPE_ARG_TYPES (type);
587       if (TREE_CODE (type) == METHOD_TYPE)
588         args = TREE_CHAIN (args);  /* Skip "this" argument. */
589       for (; args != end_params_node; args = TREE_CHAIN (args))
590         {
591           tree t = build_java_signature (TREE_VALUE (args));
592           obstack_grow (&temporary_obstack,
593                         IDENTIFIER_POINTER (t), IDENTIFIER_LENGTH (t));
594         }
595       obstack_1grow (&temporary_obstack, '\0');
596
597       sig = get_identifier (obstack_base (&temporary_obstack));
598       TYPE_ARGUMENT_SIGNATURE (type) = sig;
599       obstack_free (&temporary_obstack, obstack_base (&temporary_obstack));
600     }
601   return sig;
602 }
603
604 /* Return the signature of the given TYPE. */
605
606 tree
607 build_java_signature (type)
608      tree type;
609 {
610   tree sig, t;
611   push_obstacks (&permanent_obstack, &permanent_obstack);
612   while (TREE_CODE (type) == POINTER_TYPE)
613     type = TREE_TYPE (type);
614   MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC (type);
615   sig = TYPE_SIGNATURE (type);
616   if (sig == NULL_TREE)
617     {
618       char sg[2];
619       switch (TREE_CODE (type))
620         {
621         case BOOLEAN_TYPE: sg[0] = 'Z';  goto native;
622         case CHAR_TYPE:    sg[0] = 'C';  goto native;
623         case VOID_TYPE:    sg[0] = 'V';  goto native;
624         case INTEGER_TYPE:
625           switch (TYPE_PRECISION (type))
626             {
627             case  8:       sg[0] = 'B';  goto native;
628             case 16:       sg[0] = 'S';  goto native;
629             case 32:       sg[0] = 'I';  goto native;
630             case 64:       sg[0] = 'J';  goto native;
631             default:  goto bad_type;
632             }
633         case REAL_TYPE:
634           switch (TYPE_PRECISION (type))
635             {
636             case 32:       sg[0] = 'F';  goto native;
637             case 64:       sg[0] = 'D';  goto native;
638             default:  goto bad_type;
639             }
640         native:
641           sg[1] = 0;
642           sig = get_identifier (sg);
643           break;
644         case RECORD_TYPE:
645           if (TYPE_ARRAY_P (type))
646             {
647               t = build_java_signature (TYPE_ARRAY_ELEMENT (type));
648               sig = ident_subst (IDENTIFIER_POINTER (t), IDENTIFIER_LENGTH (t),
649                                  "[", 0, 0, "");
650             }
651           else
652             {
653               t = DECL_NAME (TYPE_NAME (type));
654               sig = ident_subst (IDENTIFIER_POINTER (t), IDENTIFIER_LENGTH (t),
655                                  "L", '.', '/', ";");
656             }
657           break;
658         case METHOD_TYPE:
659         case FUNCTION_TYPE:
660           {
661             extern struct obstack temporary_obstack;
662             sig = build_java_argument_signature (type);
663             obstack_1grow (&temporary_obstack, '(');
664             obstack_grow (&temporary_obstack,
665                           IDENTIFIER_POINTER (sig), IDENTIFIER_LENGTH (sig));
666             obstack_1grow (&temporary_obstack, ')');
667
668             t = build_java_signature (TREE_TYPE (type));
669             obstack_grow0 (&temporary_obstack,
670                            IDENTIFIER_POINTER (t), IDENTIFIER_LENGTH (t));
671
672             sig = get_identifier (obstack_base (&temporary_obstack));
673             obstack_free (&temporary_obstack,
674                           obstack_base (&temporary_obstack));
675           }
676           break;
677         bad_type:
678         default:
679           fatal ("internal error - build_java_signature passed invalid type");
680         }
681       TYPE_SIGNATURE (type) = sig;
682     }
683   pop_obstacks ();
684   return sig;
685 }
686
687 /* Save signature string SIG (an IDENTIFIER_NODE) in TYPE for future use. */
688
689 void
690 set_java_signature (type, sig)
691      tree type;
692      tree sig;
693 {
694   tree old_sig;
695   while (TREE_CODE (type) == POINTER_TYPE)
696     type = TREE_TYPE (type);
697   MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC (type);
698   old_sig = TYPE_SIGNATURE (type);
699   if (old_sig != NULL_TREE && old_sig != sig)
700     fatal ("internal error - set_java_signature");
701   TYPE_SIGNATURE (type) = sig;
702 #if 0 /* careful about METHOD_TYPE */
703   if (IDENTIFIER_SIGNATURE_TYPE (sig) == NULL_TREE && TREE_PERMANENT (type))
704     IDENTIFIER_SIGNATURE_TYPE (sig) = type;
705 #endif
706 }
707
708 /* Search in class SEARCHED_CLASS (and its superclasses) for a method
709    matching METHOD_NAME and signature SIGNATURE.  If SEARCHED_INTERFACE is
710    not NULL_TREE then first search its superinterfaces for a similar match.
711    Return the matched method DECL or NULL_TREE.  SIGNATURE_BUILDER is
712    used on method candidates to build their (sometimes partial)
713    signature.  */
714
715 tree
716 lookup_argument_method (searched_class, method_name, method_signature)
717      tree searched_class, method_name, method_signature;
718 {
719   return lookup_do (searched_class, NULL_TREE, method_name, method_signature, 
720                     build_java_argument_signature);
721 }
722
723 /* Search in class SEARCHED_CLASS (and its superclasses and
724    implemented interfaces) for a method matching METHOD_NAME and
725    argument signature METHOD_SIGNATURE.  Return a FUNCTION_DECL on
726    success, or NULL_TREE if none found.  (Contrast lookup_java_method,
727    which takes into account return type.) */
728
729 tree
730 lookup_argument_method2 (searched_class, method_name, method_signature)
731      tree searched_class, method_name, method_signature;
732 {
733   return lookup_do (CLASSTYPE_SUPER (searched_class), searched_class,
734                     method_name, method_signature, 
735                     build_java_argument_signature);
736 }
737
738 /* Search in class SEARCHED_CLASS (and its superclasses) for a method
739    matching METHOD_NAME and signature METHOD_SIGNATURE.  Return a
740    FUNCTION_DECL on success, or NULL_TREE if none found.  (Contrast
741    lookup_argument_method, which ignores return type.) If
742    SEARCHED_CLASS is an interface, search it too. */
743
744 tree
745 lookup_java_method (searched_class, method_name, method_signature)
746      tree searched_class, method_name, method_signature;
747 {
748   tree searched_interface;
749   
750   /* If this class is an interface class, search its superinterfaces
751    * first. A superinterface is not an interface's superclass: a super
752    * interface is implemented by the interface.  */
753
754   searched_interface = (CLASS_INTERFACE (TYPE_NAME (searched_class)) ?
755                         searched_class : NULL_TREE);
756   return lookup_do (searched_class, searched_interface, method_name, 
757                     method_signature, build_java_signature);
758 }
759
760 /* Search in class SEARCHED_CLASS (an its superclasses) for a method
761    matching METHOD_NAME and signature SIGNATURE.  Also search in
762    SEARCHED_INTERFACE (an its superinterfaces) for a similar match.
763    Return the matched method DECL or NULL_TREE.  SIGNATURE_BUILDER is
764    used on method candidates to build their (sometimes partial)
765    signature.  */
766
767 static tree
768 lookup_do (searched_class, searched_interface, method_name, signature, signature_builder)
769      tree searched_class, searched_interface, method_name, signature;
770      tree (*signature_builder) PARAMS ((tree));
771 {
772   tree method;
773   
774   if (searched_interface)
775     {
776       int i;
777       int interface_len = 
778         TREE_VEC_LENGTH (TYPE_BINFO_BASETYPES (searched_interface)) - 1;
779
780       for (i = interface_len; i > 0; i--)
781        {
782          tree child = 
783            TREE_VEC_ELT (TYPE_BINFO_BASETYPES (searched_interface), i);
784          tree iclass = BINFO_TYPE (child);
785
786          /* If the superinterface hasn't been loaded yet, do so now.  */
787          if (CLASS_FROM_SOURCE_P (iclass))
788            safe_layout_class (iclass);
789          else if (!CLASS_LOADED_P (iclass))
790            load_class (iclass, 1);
791
792          for (method = TYPE_METHODS (iclass);
793               method != NULL_TREE;  method = TREE_CHAIN (method))
794            {
795              tree method_sig = (*signature_builder) (TREE_TYPE (method));
796              tree name = DECL_NAME (method);
797
798              if ((TREE_CODE (name) == EXPR_WITH_FILE_LOCATION ?
799                   EXPR_WFL_NODE (name) : name) == method_name
800                  && method_sig == signature)
801                return method;
802            }
803
804          /* it could be defined in a supersuperinterface */
805          if (CLASS_INTERFACE (TYPE_NAME (iclass)))
806            {
807              method = lookup_do (iclass, iclass, method_name, 
808                                  signature, signature_builder);
809              if (method != NULL_TREE) 
810                return method;
811            }
812        }
813     }
814
815   while (searched_class != NULL_TREE)
816     {
817       for (method = TYPE_METHODS (searched_class);
818            method != NULL_TREE;  method = TREE_CHAIN (method))
819         {
820           tree method_sig = (*signature_builder) (TREE_TYPE (method));
821           tree name = DECL_NAME (method);
822
823           if ((TREE_CODE (name) == EXPR_WITH_FILE_LOCATION ?
824                EXPR_WFL_NODE (name) : name) == method_name
825               && method_sig == signature)
826             return method;
827         }
828       searched_class = CLASSTYPE_SUPER (searched_class);
829     }
830
831   return NULL_TREE;
832 }
833
834 /* Search in class CLAS for a constructor matching METHOD_SIGNATURE.
835    Return a FUNCTION_DECL on success, or NULL_TREE if none found. */
836
837 tree
838 lookup_java_constructor (clas, method_signature)
839      tree clas, method_signature;
840 {
841   tree method = TYPE_METHODS (clas);
842   for ( ; method != NULL_TREE;  method = TREE_CHAIN (method))
843     {
844       tree method_sig = build_java_signature (TREE_TYPE (method));
845       if (DECL_CONSTRUCTOR_P (method) && method_sig == method_signature)
846         return method;
847     }
848   return NULL_TREE;
849 }
850
851 /* Return a type which is the Binary Numeric Promotion of the pair T1,
852    T2 and convert EXP1 and/or EXP2. See 5.6.2 Binary Numeric
853    Promotion. It assumes that both T1 and T2 are elligible to BNP. */
854
855 tree
856 binary_numeric_promotion (t1, t2, exp1, exp2)
857      tree t1;
858      tree t2;
859      tree *exp1;
860      tree *exp2;
861 {
862   if (t1 == double_type_node || t2 == double_type_node)
863     {
864       if (t1 != double_type_node)
865         *exp1 = convert (double_type_node, *exp1);
866       if (t2 != double_type_node)
867         *exp2 = convert (double_type_node, *exp2);
868       return double_type_node;
869     }
870   if (t1 == float_type_node || t2 == float_type_node)
871     {
872       if (t1 != float_type_node)
873         *exp1 = convert (float_type_node, *exp1);
874       if (t2 != float_type_node)
875         *exp2 = convert (float_type_node, *exp2);
876       return float_type_node;
877     }
878   if (t1 == long_type_node || t2 == long_type_node)
879     {
880       if (t1 != long_type_node)
881         *exp1 = convert (long_type_node, *exp1);
882       if (t2 != long_type_node)
883         *exp2 = convert (long_type_node, *exp2);
884       return long_type_node;
885     }
886
887   if (t1 != int_type_node)
888     *exp1 = convert (int_type_node, *exp1);
889   if (t2 != int_type_node)
890     *exp2 = convert (int_type_node, *exp2);
891   return int_type_node;
892 }