Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly
[dragonfly.git] / contrib / gcc-3.4 / gcc / tree.c
1 /* Language-independent node constructors for parse phase of GNU compiler.
2    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22 /* This file contains the low level primitives for operating on tree nodes,
23    including allocation, list operations, interning of identifiers,
24    construction of data type nodes and statement nodes,
25    and construction of type conversion nodes.  It also contains
26    tables index by tree code that describe how to take apart
27    nodes of that code.
28
29    It is intended to be language-independent, but occasionally
30    calls language-dependent routines defined (for C) in typecheck.c.  */
31
32 #include "config.h"
33 #include "system.h"
34 #include "coretypes.h"
35 #include "tm.h"
36 #include "flags.h"
37 #include "tree.h"
38 #include "real.h"
39 #include "tm_p.h"
40 #include "function.h"
41 #include "obstack.h"
42 #include "toplev.h"
43 #include "ggc.h"
44 #include "hashtab.h"
45 #include "output.h"
46 #include "target.h"
47 #include "langhooks.h"
48
49 /* obstack.[ch] explicitly declined to prototype this.  */
50 extern int _obstack_allocated_p (struct obstack *h, void *obj);
51
52 #ifdef GATHER_STATISTICS
53 /* Statistics-gathering stuff.  */
54
55 int tree_node_counts[(int) all_kinds];
56 int tree_node_sizes[(int) all_kinds];
57
58 /* Keep in sync with tree.h:enum tree_node_kind.  */
59 static const char * const tree_node_kind_names[] = {
60   "decls",
61   "types",
62   "blocks",
63   "stmts",
64   "refs",
65   "exprs",
66   "constants",
67   "identifiers",
68   "perm_tree_lists",
69   "temp_tree_lists",
70   "vecs",
71   "random kinds",
72   "lang_decl kinds",
73   "lang_type kinds"
74 };
75 #endif /* GATHER_STATISTICS */
76
77 /* Unique id for next decl created.  */
78 static GTY(()) int next_decl_uid;
79 /* Unique id for next type created.  */
80 static GTY(()) int next_type_uid = 1;
81
82 /* Since we cannot rehash a type after it is in the table, we have to
83    keep the hash code.  */
84
85 struct type_hash GTY(())
86 {
87   unsigned long hash;
88   tree type;
89 };
90
91 /* Initial size of the hash table (rounded to next prime).  */
92 #define TYPE_HASH_INITIAL_SIZE 1000
93
94 /* Now here is the hash table.  When recording a type, it is added to
95    the slot whose index is the hash code.  Note that the hash table is
96    used for several kinds of types (function types, array types and
97    array index range types, for now).  While all these live in the
98    same table, they are completely independent, and the hash code is
99    computed differently for each of these.  */
100
101 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash)))
102      htab_t type_hash_table;
103
104 static void set_type_quals (tree, int);
105 static int type_hash_eq (const void *, const void *);
106 static hashval_t type_hash_hash (const void *);
107 static void print_type_hash_statistics (void);
108 static void finish_vector_type (tree);
109 static int type_hash_marked_p (const void *);
110
111 tree global_trees[TI_MAX];
112 tree integer_types[itk_none];
113 \f
114 /* Init tree.c.  */
115
116 void
117 init_ttree (void)
118 {
119   /* Initialize the hash table of types.  */
120   type_hash_table = htab_create_ggc (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
121                                      type_hash_eq, 0);
122 }
123
124 \f
125 /* The name of the object as the assembler will see it (but before any
126    translations made by ASM_OUTPUT_LABELREF).  Often this is the same
127    as DECL_NAME.  It is an IDENTIFIER_NODE.  */
128 tree
129 decl_assembler_name (tree decl)
130 {
131   if (!DECL_ASSEMBLER_NAME_SET_P (decl))
132     (*lang_hooks.set_decl_assembler_name) (decl);
133   return DECL_CHECK (decl)->decl.assembler_name;
134 }
135
136 /* Compute the number of bytes occupied by 'node'.  This routine only
137    looks at TREE_CODE and, if the code is TREE_VEC, TREE_VEC_LENGTH.  */
138 size_t
139 tree_size (tree node)
140 {
141   enum tree_code code = TREE_CODE (node);
142
143   switch (TREE_CODE_CLASS (code))
144     {
145     case 'd':  /* A decl node */
146       return sizeof (struct tree_decl);
147
148     case 't':  /* a type node */
149       return sizeof (struct tree_type);
150
151     case 'b':  /* a lexical block node */
152       return sizeof (struct tree_block);
153
154     case 'r':  /* a reference */
155     case 'e':  /* an expression */
156     case 's':  /* an expression with side effects */
157     case '<':  /* a comparison expression */
158     case '1':  /* a unary arithmetic expression */
159     case '2':  /* a binary arithmetic expression */
160       return (sizeof (struct tree_exp)
161               + TREE_CODE_LENGTH (code) * sizeof (char *) - sizeof (char *));
162
163     case 'c':  /* a constant */
164       switch (code)
165         {
166         case INTEGER_CST:       return sizeof (struct tree_int_cst);
167         case REAL_CST:          return sizeof (struct tree_real_cst);
168         case COMPLEX_CST:       return sizeof (struct tree_complex);
169         case VECTOR_CST:        return sizeof (struct tree_vector);
170         case STRING_CST:        return sizeof (struct tree_string);
171         default:
172           return (*lang_hooks.tree_size) (code);
173         }
174
175     case 'x':  /* something random, like an identifier.  */
176       switch (code)
177         {
178         case IDENTIFIER_NODE:   return lang_hooks.identifier_size;
179         case TREE_LIST:         return sizeof (struct tree_list);
180         case TREE_VEC:          return (sizeof (struct tree_vec)
181                                         + TREE_VEC_LENGTH(node) * sizeof(char *)
182                                         - sizeof (char *));
183
184         case ERROR_MARK:
185         case PLACEHOLDER_EXPR:  return sizeof (struct tree_common);
186
187         default:
188           return (*lang_hooks.tree_size) (code);
189         }
190
191     default:
192       abort ();
193     }
194 }
195
196 /* Return a newly allocated node of code CODE.
197    For decl and type nodes, some other fields are initialized.
198    The rest of the node is initialized to zero.
199
200    Achoo!  I got a code in the node.  */
201
202 tree
203 make_node (enum tree_code code)
204 {
205   tree t;
206   int type = TREE_CODE_CLASS (code);
207   size_t length;
208 #ifdef GATHER_STATISTICS
209   tree_node_kind kind;
210 #endif
211   struct tree_common ttmp;
212
213   /* We can't allocate a TREE_VEC without knowing how many elements
214      it will have.  */
215   if (code == TREE_VEC)
216     abort ();
217
218   TREE_SET_CODE ((tree)&ttmp, code);
219   length = tree_size ((tree)&ttmp);
220
221 #ifdef GATHER_STATISTICS
222   switch (type)
223     {
224     case 'd':  /* A decl node */
225       kind = d_kind;
226       break;
227
228     case 't':  /* a type node */
229       kind = t_kind;
230       break;
231
232     case 'b':  /* a lexical block */
233       kind = b_kind;
234       break;
235
236     case 's':  /* an expression with side effects */
237       kind = s_kind;
238       break;
239
240     case 'r':  /* a reference */
241       kind = r_kind;
242       break;
243
244     case 'e':  /* an expression */
245     case '<':  /* a comparison expression */
246     case '1':  /* a unary arithmetic expression */
247     case '2':  /* a binary arithmetic expression */
248       kind = e_kind;
249       break;
250
251     case 'c':  /* a constant */
252       kind = c_kind;
253       break;
254
255     case 'x':  /* something random, like an identifier.  */
256       if (code == IDENTIFIER_NODE)
257         kind = id_kind;
258       else if (code == TREE_VEC)
259         kind = vec_kind;
260       else
261         kind = x_kind;
262       break;
263
264     default:
265       abort ();
266     }
267
268   tree_node_counts[(int) kind]++;
269   tree_node_sizes[(int) kind] += length;
270 #endif
271
272   t = ggc_alloc_tree (length);
273
274   memset (t, 0, length);
275
276   TREE_SET_CODE (t, code);
277
278   switch (type)
279     {
280     case 's':
281       TREE_SIDE_EFFECTS (t) = 1;
282       break;
283
284     case 'd':
285       if (code != FUNCTION_DECL)
286         DECL_ALIGN (t) = 1;
287       DECL_USER_ALIGN (t) = 0;
288       DECL_IN_SYSTEM_HEADER (t) = in_system_header;
289       DECL_SOURCE_LOCATION (t) = input_location;
290       DECL_UID (t) = next_decl_uid++;
291
292       /* We have not yet computed the alias set for this declaration.  */
293       DECL_POINTER_ALIAS_SET (t) = -1;
294       break;
295
296     case 't':
297       TYPE_UID (t) = next_type_uid++;
298       TYPE_ALIGN (t) = char_type_node ? TYPE_ALIGN (char_type_node) : 0;
299       TYPE_USER_ALIGN (t) = 0;
300       TYPE_MAIN_VARIANT (t) = t;
301
302       /* Default to no attributes for type, but let target change that.  */
303       TYPE_ATTRIBUTES (t) = NULL_TREE;
304       (*targetm.set_default_type_attributes) (t);
305
306       /* We have not yet computed the alias set for this type.  */
307       TYPE_ALIAS_SET (t) = -1;
308       break;
309
310     case 'c':
311       TREE_CONSTANT (t) = 1;
312       break;
313
314     case 'e':
315       switch (code)
316         {
317         case INIT_EXPR:
318         case MODIFY_EXPR:
319         case VA_ARG_EXPR:
320         case RTL_EXPR:
321         case PREDECREMENT_EXPR:
322         case PREINCREMENT_EXPR:
323         case POSTDECREMENT_EXPR:
324         case POSTINCREMENT_EXPR:
325           /* All of these have side-effects, no matter what their
326              operands are.  */
327           TREE_SIDE_EFFECTS (t) = 1;
328           break;
329
330         default:
331           break;
332         }
333       break;
334     }
335
336   return t;
337 }
338 \f
339 /* Return a new node with the same contents as NODE except that its
340    TREE_CHAIN is zero and it has a fresh uid.  */
341
342 tree
343 copy_node (tree node)
344 {
345   tree t;
346   enum tree_code code = TREE_CODE (node);
347   size_t length;
348
349   length = tree_size (node);
350   t = ggc_alloc_tree (length);
351   memcpy (t, node, length);
352
353   TREE_CHAIN (t) = 0;
354   TREE_ASM_WRITTEN (t) = 0;
355
356   if (TREE_CODE_CLASS (code) == 'd')
357     DECL_UID (t) = next_decl_uid++;
358   else if (TREE_CODE_CLASS (code) == 't')
359     {
360       TYPE_UID (t) = next_type_uid++;
361       /* The following is so that the debug code for
362          the copy is different from the original type.
363          The two statements usually duplicate each other
364          (because they clear fields of the same union),
365          but the optimizer should catch that.  */
366       TYPE_SYMTAB_POINTER (t) = 0;
367       TYPE_SYMTAB_ADDRESS (t) = 0;
368     }
369
370   return t;
371 }
372
373 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
374    For example, this can copy a list made of TREE_LIST nodes.  */
375
376 tree
377 copy_list (tree list)
378 {
379   tree head;
380   tree prev, next;
381
382   if (list == 0)
383     return 0;
384
385   head = prev = copy_node (list);
386   next = TREE_CHAIN (list);
387   while (next)
388     {
389       TREE_CHAIN (prev) = copy_node (next);
390       prev = TREE_CHAIN (prev);
391       next = TREE_CHAIN (next);
392     }
393   return head;
394 }
395
396 \f
397 /* Return a newly constructed INTEGER_CST node whose constant value
398    is specified by the two ints LOW and HI.
399    The TREE_TYPE is set to `int'.
400
401    This function should be used via the `build_int_2' macro.  */
402
403 tree
404 build_int_2_wide (unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
405 {
406   tree t = make_node (INTEGER_CST);
407
408   TREE_INT_CST_LOW (t) = low;
409   TREE_INT_CST_HIGH (t) = hi;
410   TREE_TYPE (t) = integer_type_node;
411   return t;
412 }
413
414 /* Return a new VECTOR_CST node whose type is TYPE and whose values
415    are in a list pointed by VALS.  */
416
417 tree
418 build_vector (tree type, tree vals)
419 {
420   tree v = make_node (VECTOR_CST);
421   int over1 = 0, over2 = 0;
422   tree link;
423
424   TREE_VECTOR_CST_ELTS (v) = vals;
425   TREE_TYPE (v) = type;
426
427   /* Iterate through elements and check for overflow.  */
428   for (link = vals; link; link = TREE_CHAIN (link))
429     {
430       tree value = TREE_VALUE (link);
431
432       over1 |= TREE_OVERFLOW (value);
433       over2 |= TREE_CONSTANT_OVERFLOW (value);
434     }
435
436   TREE_OVERFLOW (v) = over1;
437   TREE_CONSTANT_OVERFLOW (v) = over2;
438
439   return v;
440 }
441
442 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
443    are in a list pointed to by VALS.  */
444 tree
445 build_constructor (tree type, tree vals)
446 {
447   tree c = make_node (CONSTRUCTOR);
448   TREE_TYPE (c) = type;
449   CONSTRUCTOR_ELTS (c) = vals;
450
451   /* ??? May not be necessary.  Mirrors what build does.  */
452   if (vals)
453     {
454       TREE_SIDE_EFFECTS (c) = TREE_SIDE_EFFECTS (vals);
455       TREE_READONLY (c) = TREE_READONLY (vals);
456       TREE_CONSTANT (c) = TREE_CONSTANT (vals);
457     }
458   else
459     TREE_CONSTANT (c) = 0;  /* safe side */
460
461   return c;
462 }
463
464 /* Return a new REAL_CST node whose type is TYPE and value is D.  */
465
466 tree
467 build_real (tree type, REAL_VALUE_TYPE d)
468 {
469   tree v;
470   REAL_VALUE_TYPE *dp;
471   int overflow = 0;
472
473   /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
474      Consider doing it via real_convert now.  */
475
476   v = make_node (REAL_CST);
477   dp = ggc_alloc (sizeof (REAL_VALUE_TYPE));
478   memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
479
480   TREE_TYPE (v) = type;
481   TREE_REAL_CST_PTR (v) = dp;
482   TREE_OVERFLOW (v) = TREE_CONSTANT_OVERFLOW (v) = overflow;
483   return v;
484 }
485
486 /* Return a new REAL_CST node whose type is TYPE
487    and whose value is the integer value of the INTEGER_CST node I.  */
488
489 REAL_VALUE_TYPE
490 real_value_from_int_cst (tree type, tree i)
491 {
492   REAL_VALUE_TYPE d;
493
494   /* Clear all bits of the real value type so that we can later do
495      bitwise comparisons to see if two values are the same.  */
496   memset (&d, 0, sizeof d);
497
498   real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode,
499                      TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i),
500                      TREE_UNSIGNED (TREE_TYPE (i)));
501   return d;
502 }
503
504 /* Given a tree representing an integer constant I, return a tree
505    representing the same value as a floating-point constant of type TYPE.  */
506
507 tree
508 build_real_from_int_cst (tree type, tree i)
509 {
510   tree v;
511   int overflow = TREE_OVERFLOW (i);
512
513   v = build_real (type, real_value_from_int_cst (type, i));
514
515   TREE_OVERFLOW (v) |= overflow;
516   TREE_CONSTANT_OVERFLOW (v) |= overflow;
517   return v;
518 }
519
520 /* Return a newly constructed STRING_CST node whose value is
521    the LEN characters at STR.
522    The TREE_TYPE is not initialized.  */
523
524 tree
525 build_string (int len, const char *str)
526 {
527   tree s = make_node (STRING_CST);
528
529   TREE_STRING_LENGTH (s) = len;
530   TREE_STRING_POINTER (s) = ggc_alloc_string (str, len);
531
532   return s;
533 }
534
535 /* Return a newly constructed COMPLEX_CST node whose value is
536    specified by the real and imaginary parts REAL and IMAG.
537    Both REAL and IMAG should be constant nodes.  TYPE, if specified,
538    will be the type of the COMPLEX_CST; otherwise a new type will be made.  */
539
540 tree
541 build_complex (tree type, tree real, tree imag)
542 {
543   tree t = make_node (COMPLEX_CST);
544
545   TREE_REALPART (t) = real;
546   TREE_IMAGPART (t) = imag;
547   TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
548   TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
549   TREE_CONSTANT_OVERFLOW (t)
550     = TREE_CONSTANT_OVERFLOW (real) | TREE_CONSTANT_OVERFLOW (imag);
551   return t;
552 }
553
554 /* Build a newly constructed TREE_VEC node of length LEN.  */
555
556 tree
557 make_tree_vec (int len)
558 {
559   tree t;
560   int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
561
562 #ifdef GATHER_STATISTICS
563   tree_node_counts[(int) vec_kind]++;
564   tree_node_sizes[(int) vec_kind] += length;
565 #endif
566
567   t = ggc_alloc_tree (length);
568
569   memset (t, 0, length);
570   TREE_SET_CODE (t, TREE_VEC);
571   TREE_VEC_LENGTH (t) = len;
572
573   return t;
574 }
575 \f
576 /* Return 1 if EXPR is the integer constant zero or a complex constant
577    of zero.  */
578
579 int
580 integer_zerop (tree expr)
581 {
582   STRIP_NOPS (expr);
583
584   return ((TREE_CODE (expr) == INTEGER_CST
585            && ! TREE_CONSTANT_OVERFLOW (expr)
586            && TREE_INT_CST_LOW (expr) == 0
587            && TREE_INT_CST_HIGH (expr) == 0)
588           || (TREE_CODE (expr) == COMPLEX_CST
589               && integer_zerop (TREE_REALPART (expr))
590               && integer_zerop (TREE_IMAGPART (expr))));
591 }
592
593 /* Return 1 if EXPR is the integer constant one or the corresponding
594    complex constant.  */
595
596 int
597 integer_onep (tree expr)
598 {
599   STRIP_NOPS (expr);
600
601   return ((TREE_CODE (expr) == INTEGER_CST
602            && ! TREE_CONSTANT_OVERFLOW (expr)
603            && TREE_INT_CST_LOW (expr) == 1
604            && TREE_INT_CST_HIGH (expr) == 0)
605           || (TREE_CODE (expr) == COMPLEX_CST
606               && integer_onep (TREE_REALPART (expr))
607               && integer_zerop (TREE_IMAGPART (expr))));
608 }
609
610 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
611    it contains.  Likewise for the corresponding complex constant.  */
612
613 int
614 integer_all_onesp (tree expr)
615 {
616   int prec;
617   int uns;
618
619   STRIP_NOPS (expr);
620
621   if (TREE_CODE (expr) == COMPLEX_CST
622       && integer_all_onesp (TREE_REALPART (expr))
623       && integer_zerop (TREE_IMAGPART (expr)))
624     return 1;
625
626   else if (TREE_CODE (expr) != INTEGER_CST
627            || TREE_CONSTANT_OVERFLOW (expr))
628     return 0;
629
630   uns = TREE_UNSIGNED (TREE_TYPE (expr));
631   if (!uns)
632     return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
633             && TREE_INT_CST_HIGH (expr) == -1);
634
635   /* Note that using TYPE_PRECISION here is wrong.  We care about the
636      actual bits, not the (arbitrary) range of the type.  */
637   prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr)));
638   if (prec >= HOST_BITS_PER_WIDE_INT)
639     {
640       HOST_WIDE_INT high_value;
641       int shift_amount;
642
643       shift_amount = prec - HOST_BITS_PER_WIDE_INT;
644
645       if (shift_amount > HOST_BITS_PER_WIDE_INT)
646         /* Can not handle precisions greater than twice the host int size.  */
647         abort ();
648       else if (shift_amount == HOST_BITS_PER_WIDE_INT)
649         /* Shifting by the host word size is undefined according to the ANSI
650            standard, so we must handle this as a special case.  */
651         high_value = -1;
652       else
653         high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
654
655       return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
656               && TREE_INT_CST_HIGH (expr) == high_value);
657     }
658   else
659     return TREE_INT_CST_LOW (expr) == ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
660 }
661
662 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
663    one bit on).  */
664
665 int
666 integer_pow2p (tree expr)
667 {
668   int prec;
669   HOST_WIDE_INT high, low;
670
671   STRIP_NOPS (expr);
672
673   if (TREE_CODE (expr) == COMPLEX_CST
674       && integer_pow2p (TREE_REALPART (expr))
675       && integer_zerop (TREE_IMAGPART (expr)))
676     return 1;
677
678   if (TREE_CODE (expr) != INTEGER_CST || TREE_CONSTANT_OVERFLOW (expr))
679     return 0;
680
681   prec = (POINTER_TYPE_P (TREE_TYPE (expr))
682           ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
683   high = TREE_INT_CST_HIGH (expr);
684   low = TREE_INT_CST_LOW (expr);
685
686   /* First clear all bits that are beyond the type's precision in case
687      we've been sign extended.  */
688
689   if (prec == 2 * HOST_BITS_PER_WIDE_INT)
690     ;
691   else if (prec > HOST_BITS_PER_WIDE_INT)
692     high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
693   else
694     {
695       high = 0;
696       if (prec < HOST_BITS_PER_WIDE_INT)
697         low &= ~((HOST_WIDE_INT) (-1) << prec);
698     }
699
700   if (high == 0 && low == 0)
701     return 0;
702
703   return ((high == 0 && (low & (low - 1)) == 0)
704           || (low == 0 && (high & (high - 1)) == 0));
705 }
706
707 /* Return 1 if EXPR is an integer constant other than zero or a
708    complex constant other than zero.  */
709
710 int
711 integer_nonzerop (tree expr)
712 {
713   STRIP_NOPS (expr);
714
715   return ((TREE_CODE (expr) == INTEGER_CST
716            && ! TREE_CONSTANT_OVERFLOW (expr)
717            && (TREE_INT_CST_LOW (expr) != 0
718                || TREE_INT_CST_HIGH (expr) != 0))
719           || (TREE_CODE (expr) == COMPLEX_CST
720               && (integer_nonzerop (TREE_REALPART (expr))
721                   || integer_nonzerop (TREE_IMAGPART (expr)))));
722 }
723
724 /* Return the power of two represented by a tree node known to be a
725    power of two.  */
726
727 int
728 tree_log2 (tree expr)
729 {
730   int prec;
731   HOST_WIDE_INT high, low;
732
733   STRIP_NOPS (expr);
734
735   if (TREE_CODE (expr) == COMPLEX_CST)
736     return tree_log2 (TREE_REALPART (expr));
737
738   prec = (POINTER_TYPE_P (TREE_TYPE (expr))
739           ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
740
741   high = TREE_INT_CST_HIGH (expr);
742   low = TREE_INT_CST_LOW (expr);
743
744   /* First clear all bits that are beyond the type's precision in case
745      we've been sign extended.  */
746
747   if (prec == 2 * HOST_BITS_PER_WIDE_INT)
748     ;
749   else if (prec > HOST_BITS_PER_WIDE_INT)
750     high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
751   else
752     {
753       high = 0;
754       if (prec < HOST_BITS_PER_WIDE_INT)
755         low &= ~((HOST_WIDE_INT) (-1) << prec);
756     }
757
758   return (high != 0 ? HOST_BITS_PER_WIDE_INT + exact_log2 (high)
759           : exact_log2 (low));
760 }
761
762 /* Similar, but return the largest integer Y such that 2 ** Y is less
763    than or equal to EXPR.  */
764
765 int
766 tree_floor_log2 (tree expr)
767 {
768   int prec;
769   HOST_WIDE_INT high, low;
770
771   STRIP_NOPS (expr);
772
773   if (TREE_CODE (expr) == COMPLEX_CST)
774     return tree_log2 (TREE_REALPART (expr));
775
776   prec = (POINTER_TYPE_P (TREE_TYPE (expr))
777           ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
778
779   high = TREE_INT_CST_HIGH (expr);
780   low = TREE_INT_CST_LOW (expr);
781
782   /* First clear all bits that are beyond the type's precision in case
783      we've been sign extended.  Ignore if type's precision hasn't been set
784      since what we are doing is setting it.  */
785
786   if (prec == 2 * HOST_BITS_PER_WIDE_INT || prec == 0)
787     ;
788   else if (prec > HOST_BITS_PER_WIDE_INT)
789     high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
790   else
791     {
792       high = 0;
793       if (prec < HOST_BITS_PER_WIDE_INT)
794         low &= ~((HOST_WIDE_INT) (-1) << prec);
795     }
796
797   return (high != 0 ? HOST_BITS_PER_WIDE_INT + floor_log2 (high)
798           : floor_log2 (low));
799 }
800
801 /* Return 1 if EXPR is the real constant zero.  */
802
803 int
804 real_zerop (tree expr)
805 {
806   STRIP_NOPS (expr);
807
808   return ((TREE_CODE (expr) == REAL_CST
809            && ! TREE_CONSTANT_OVERFLOW (expr)
810            && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0))
811           || (TREE_CODE (expr) == COMPLEX_CST
812               && real_zerop (TREE_REALPART (expr))
813               && real_zerop (TREE_IMAGPART (expr))));
814 }
815
816 /* Return 1 if EXPR is the real constant one in real or complex form.  */
817
818 int
819 real_onep (tree expr)
820 {
821   STRIP_NOPS (expr);
822
823   return ((TREE_CODE (expr) == REAL_CST
824            && ! TREE_CONSTANT_OVERFLOW (expr)
825            && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1))
826           || (TREE_CODE (expr) == COMPLEX_CST
827               && real_onep (TREE_REALPART (expr))
828               && real_zerop (TREE_IMAGPART (expr))));
829 }
830
831 /* Return 1 if EXPR is the real constant two.  */
832
833 int
834 real_twop (tree expr)
835 {
836   STRIP_NOPS (expr);
837
838   return ((TREE_CODE (expr) == REAL_CST
839            && ! TREE_CONSTANT_OVERFLOW (expr)
840            && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2))
841           || (TREE_CODE (expr) == COMPLEX_CST
842               && real_twop (TREE_REALPART (expr))
843               && real_zerop (TREE_IMAGPART (expr))));
844 }
845
846 /* Return 1 if EXPR is the real constant minus one.  */
847
848 int
849 real_minus_onep (tree expr)
850 {
851   STRIP_NOPS (expr);
852
853   return ((TREE_CODE (expr) == REAL_CST
854            && ! TREE_CONSTANT_OVERFLOW (expr)
855            && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconstm1))
856           || (TREE_CODE (expr) == COMPLEX_CST
857               && real_minus_onep (TREE_REALPART (expr))
858               && real_zerop (TREE_IMAGPART (expr))));
859 }
860
861 /* Nonzero if EXP is a constant or a cast of a constant.  */
862
863 int
864 really_constant_p (tree exp)
865 {
866   /* This is not quite the same as STRIP_NOPS.  It does more.  */
867   while (TREE_CODE (exp) == NOP_EXPR
868          || TREE_CODE (exp) == CONVERT_EXPR
869          || TREE_CODE (exp) == NON_LVALUE_EXPR)
870     exp = TREE_OPERAND (exp, 0);
871   return TREE_CONSTANT (exp);
872 }
873 \f
874 /* Return first list element whose TREE_VALUE is ELEM.
875    Return 0 if ELEM is not in LIST.  */
876
877 tree
878 value_member (tree elem, tree list)
879 {
880   while (list)
881     {
882       if (elem == TREE_VALUE (list))
883         return list;
884       list = TREE_CHAIN (list);
885     }
886   return NULL_TREE;
887 }
888
889 /* Return first list element whose TREE_PURPOSE is ELEM.
890    Return 0 if ELEM is not in LIST.  */
891
892 tree
893 purpose_member (tree elem, tree list)
894 {
895   while (list)
896     {
897       if (elem == TREE_PURPOSE (list))
898         return list;
899       list = TREE_CHAIN (list);
900     }
901   return NULL_TREE;
902 }
903
904 /* Return first list element whose BINFO_TYPE is ELEM.
905    Return 0 if ELEM is not in LIST.  */
906
907 tree
908 binfo_member (tree elem, tree list)
909 {
910   while (list)
911     {
912       if (elem == BINFO_TYPE (list))
913         return list;
914       list = TREE_CHAIN (list);
915     }
916   return NULL_TREE;
917 }
918
919 /* Return nonzero if ELEM is part of the chain CHAIN.  */
920
921 int
922 chain_member (tree elem, tree chain)
923 {
924   while (chain)
925     {
926       if (elem == chain)
927         return 1;
928       chain = TREE_CHAIN (chain);
929     }
930
931   return 0;
932 }
933
934 /* Return the length of a chain of nodes chained through TREE_CHAIN.
935    We expect a null pointer to mark the end of the chain.
936    This is the Lisp primitive `length'.  */
937
938 int
939 list_length (tree t)
940 {
941   tree tail;
942   int len = 0;
943
944   for (tail = t; tail; tail = TREE_CHAIN (tail))
945     len++;
946
947   return len;
948 }
949
950 /* Returns the number of FIELD_DECLs in TYPE.  */
951
952 int
953 fields_length (tree type)
954 {
955   tree t = TYPE_FIELDS (type);
956   int count = 0;
957
958   for (; t; t = TREE_CHAIN (t))
959     if (TREE_CODE (t) == FIELD_DECL)
960       ++count;
961
962   return count;
963 }
964
965 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
966    by modifying the last node in chain 1 to point to chain 2.
967    This is the Lisp primitive `nconc'.  */
968
969 tree
970 chainon (tree op1, tree op2)
971 {
972   tree t1;
973
974   if (!op1)
975     return op2;
976   if (!op2)
977     return op1;
978
979   for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
980     continue;
981   TREE_CHAIN (t1) = op2;
982
983 #ifdef ENABLE_TREE_CHECKING
984   {
985     tree t2;
986     for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
987       if (t2 == t1)
988         abort ();  /* Circularity created.  */
989   }
990 #endif
991
992   return op1;
993 }
994
995 /* Return the last node in a chain of nodes (chained through TREE_CHAIN).  */
996
997 tree
998 tree_last (tree chain)
999 {
1000   tree next;
1001   if (chain)
1002     while ((next = TREE_CHAIN (chain)))
1003       chain = next;
1004   return chain;
1005 }
1006
1007 /* Reverse the order of elements in the chain T,
1008    and return the new head of the chain (old last element).  */
1009
1010 tree
1011 nreverse (tree t)
1012 {
1013   tree prev = 0, decl, next;
1014   for (decl = t; decl; decl = next)
1015     {
1016       next = TREE_CHAIN (decl);
1017       TREE_CHAIN (decl) = prev;
1018       prev = decl;
1019     }
1020   return prev;
1021 }
1022 \f
1023 /* Return a newly created TREE_LIST node whose
1024    purpose and value fields are PARM and VALUE.  */
1025
1026 tree
1027 build_tree_list (tree parm, tree value)
1028 {
1029   tree t = make_node (TREE_LIST);
1030   TREE_PURPOSE (t) = parm;
1031   TREE_VALUE (t) = value;
1032   return t;
1033 }
1034
1035 /* Return a newly created TREE_LIST node whose
1036    purpose and value fields are PURPOSE and VALUE
1037    and whose TREE_CHAIN is CHAIN.  */
1038
1039 tree
1040 tree_cons (tree purpose, tree value, tree chain)
1041 {
1042   tree node;
1043
1044   node = ggc_alloc_tree (sizeof (struct tree_list));
1045
1046   memset (node, 0, sizeof (struct tree_common));
1047
1048 #ifdef GATHER_STATISTICS
1049   tree_node_counts[(int) x_kind]++;
1050   tree_node_sizes[(int) x_kind] += sizeof (struct tree_list);
1051 #endif
1052
1053   TREE_SET_CODE (node, TREE_LIST);
1054   TREE_CHAIN (node) = chain;
1055   TREE_PURPOSE (node) = purpose;
1056   TREE_VALUE (node) = value;
1057   return node;
1058 }
1059
1060 /* Return the first expression in a sequence of COMPOUND_EXPRs.  */
1061
1062 tree
1063 expr_first (tree expr)
1064 {
1065   if (expr == NULL_TREE)
1066     return expr;
1067   while (TREE_CODE (expr) == COMPOUND_EXPR)
1068     expr = TREE_OPERAND (expr, 0);
1069   return expr;
1070 }
1071
1072 /* Return the last expression in a sequence of COMPOUND_EXPRs.  */
1073
1074 tree
1075 expr_last (tree expr)
1076 {
1077   if (expr == NULL_TREE)
1078     return expr;
1079   while (TREE_CODE (expr) == COMPOUND_EXPR)
1080     expr = TREE_OPERAND (expr, 1);
1081   return expr;
1082 }
1083
1084 /* Return the number of subexpressions in a sequence of COMPOUND_EXPRs.  */
1085
1086 int
1087 expr_length (tree expr)
1088 {
1089   int len = 0;
1090
1091   if (expr == NULL_TREE)
1092     return 0;
1093   for (; TREE_CODE (expr) == COMPOUND_EXPR; expr = TREE_OPERAND (expr, 1))
1094     len += expr_length (TREE_OPERAND (expr, 0));
1095   ++len;
1096   return len;
1097 }
1098 \f
1099 /* Return the size nominally occupied by an object of type TYPE
1100    when it resides in memory.  The value is measured in units of bytes,
1101    and its data type is that normally used for type sizes
1102    (which is the first type created by make_signed_type or
1103    make_unsigned_type).  */
1104
1105 tree
1106 size_in_bytes (tree type)
1107 {
1108   tree t;
1109
1110   if (type == error_mark_node)
1111     return integer_zero_node;
1112
1113   type = TYPE_MAIN_VARIANT (type);
1114   t = TYPE_SIZE_UNIT (type);
1115
1116   if (t == 0)
1117     {
1118       (*lang_hooks.types.incomplete_type_error) (NULL_TREE, type);
1119       return size_zero_node;
1120     }
1121
1122   if (TREE_CODE (t) == INTEGER_CST)
1123     force_fit_type (t, 0);
1124
1125   return t;
1126 }
1127
1128 /* Return the size of TYPE (in bytes) as a wide integer
1129    or return -1 if the size can vary or is larger than an integer.  */
1130
1131 HOST_WIDE_INT
1132 int_size_in_bytes (tree type)
1133 {
1134   tree t;
1135
1136   if (type == error_mark_node)
1137     return 0;
1138
1139   type = TYPE_MAIN_VARIANT (type);
1140   t = TYPE_SIZE_UNIT (type);
1141   if (t == 0
1142       || TREE_CODE (t) != INTEGER_CST
1143       || TREE_OVERFLOW (t)
1144       || TREE_INT_CST_HIGH (t) != 0
1145       /* If the result would appear negative, it's too big to represent.  */
1146       || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
1147     return -1;
1148
1149   return TREE_INT_CST_LOW (t);
1150 }
1151 \f
1152 /* Return the bit position of FIELD, in bits from the start of the record.
1153    This is a tree of type bitsizetype.  */
1154
1155 tree
1156 bit_position (tree field)
1157 {
1158   return bit_from_pos (DECL_FIELD_OFFSET (field),
1159                        DECL_FIELD_BIT_OFFSET (field));
1160 }
1161
1162 /* Likewise, but return as an integer.  Abort if it cannot be represented
1163    in that way (since it could be a signed value, we don't have the option
1164    of returning -1 like int_size_in_byte can.  */
1165
1166 HOST_WIDE_INT
1167 int_bit_position (tree field)
1168 {
1169   return tree_low_cst (bit_position (field), 0);
1170 }
1171 \f
1172 /* Return the byte position of FIELD, in bytes from the start of the record.
1173    This is a tree of type sizetype.  */
1174
1175 tree
1176 byte_position (tree field)
1177 {
1178   return byte_from_pos (DECL_FIELD_OFFSET (field),
1179                         DECL_FIELD_BIT_OFFSET (field));
1180 }
1181
1182 /* Likewise, but return as an integer.  Abort if it cannot be represented
1183    in that way (since it could be a signed value, we don't have the option
1184    of returning -1 like int_size_in_byte can.  */
1185
1186 HOST_WIDE_INT
1187 int_byte_position (tree field)
1188 {
1189   return tree_low_cst (byte_position (field), 0);
1190 }
1191 \f
1192 /* Return the strictest alignment, in bits, that T is known to have.  */
1193
1194 unsigned int
1195 expr_align (tree t)
1196 {
1197   unsigned int align0, align1;
1198
1199   switch (TREE_CODE (t))
1200     {
1201     case NOP_EXPR:  case CONVERT_EXPR:  case NON_LVALUE_EXPR:
1202       /* If we have conversions, we know that the alignment of the
1203          object must meet each of the alignments of the types.  */
1204       align0 = expr_align (TREE_OPERAND (t, 0));
1205       align1 = TYPE_ALIGN (TREE_TYPE (t));
1206       return MAX (align0, align1);
1207
1208     case SAVE_EXPR:         case COMPOUND_EXPR:       case MODIFY_EXPR:
1209     case INIT_EXPR:         case TARGET_EXPR:         case WITH_CLEANUP_EXPR:
1210     case WITH_RECORD_EXPR:  case CLEANUP_POINT_EXPR:  case UNSAVE_EXPR:
1211       /* These don't change the alignment of an object.  */
1212       return expr_align (TREE_OPERAND (t, 0));
1213
1214     case COND_EXPR:
1215       /* The best we can do is say that the alignment is the least aligned
1216          of the two arms.  */
1217       align0 = expr_align (TREE_OPERAND (t, 1));
1218       align1 = expr_align (TREE_OPERAND (t, 2));
1219       return MIN (align0, align1);
1220
1221     case LABEL_DECL:     case CONST_DECL:
1222     case VAR_DECL:       case PARM_DECL:   case RESULT_DECL:
1223       if (DECL_ALIGN (t) != 0)
1224         return DECL_ALIGN (t);
1225       break;
1226
1227     case FUNCTION_DECL:
1228       return FUNCTION_BOUNDARY;
1229
1230     default:
1231       break;
1232     }
1233
1234   /* Otherwise take the alignment from that of the type.  */
1235   return TYPE_ALIGN (TREE_TYPE (t));
1236 }
1237 \f
1238 /* Return, as a tree node, the number of elements for TYPE (which is an
1239    ARRAY_TYPE) minus one. This counts only elements of the top array.  */
1240
1241 tree
1242 array_type_nelts (tree type)
1243 {
1244   tree index_type, min, max;
1245
1246   /* If they did it with unspecified bounds, then we should have already
1247      given an error about it before we got here.  */
1248   if (! TYPE_DOMAIN (type))
1249     return error_mark_node;
1250
1251   index_type = TYPE_DOMAIN (type);
1252   min = TYPE_MIN_VALUE (index_type);
1253   max = TYPE_MAX_VALUE (index_type);
1254
1255   return (integer_zerop (min)
1256           ? max
1257           : fold (build (MINUS_EXPR, TREE_TYPE (max), max, min)));
1258 }
1259 \f
1260 /* Return nonzero if arg is static -- a reference to an object in
1261    static storage.  This is not the same as the C meaning of `static'.  */
1262
1263 int
1264 staticp (tree arg)
1265 {
1266   switch (TREE_CODE (arg))
1267     {
1268     case FUNCTION_DECL:
1269       /* Nested functions aren't static, since taking their address
1270          involves a trampoline.  */
1271       return ((decl_function_context (arg) == 0 || DECL_NO_STATIC_CHAIN (arg))
1272               && ! DECL_NON_ADDR_CONST_P (arg));
1273
1274     case VAR_DECL:
1275       return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
1276               && ! DECL_THREAD_LOCAL (arg)
1277               && ! DECL_NON_ADDR_CONST_P (arg));
1278
1279     case CONSTRUCTOR:
1280       return TREE_STATIC (arg);
1281
1282     case LABEL_DECL:
1283     case STRING_CST:
1284       return 1;
1285
1286       /* If we are referencing a bitfield, we can't evaluate an
1287          ADDR_EXPR at compile time and so it isn't a constant.  */
1288     case COMPONENT_REF:
1289       return (! DECL_BIT_FIELD (TREE_OPERAND (arg, 1))
1290               && staticp (TREE_OPERAND (arg, 0)));
1291
1292     case BIT_FIELD_REF:
1293       return 0;
1294
1295 #if 0
1296        /* This case is technically correct, but results in setting
1297           TREE_CONSTANT on ADDR_EXPRs that cannot be evaluated at
1298           compile time.  */
1299     case INDIRECT_REF:
1300       return TREE_CONSTANT (TREE_OPERAND (arg, 0));
1301 #endif
1302
1303     case ARRAY_REF:
1304     case ARRAY_RANGE_REF:
1305       if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
1306           && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
1307         return staticp (TREE_OPERAND (arg, 0));
1308
1309     default:
1310       if ((unsigned int) TREE_CODE (arg)
1311           >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
1312         return (*lang_hooks.staticp) (arg);
1313       else
1314         return 0;
1315     }
1316 }
1317 \f
1318 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
1319    Do this to any expression which may be used in more than one place,
1320    but must be evaluated only once.
1321
1322    Normally, expand_expr would reevaluate the expression each time.
1323    Calling save_expr produces something that is evaluated and recorded
1324    the first time expand_expr is called on it.  Subsequent calls to
1325    expand_expr just reuse the recorded value.
1326
1327    The call to expand_expr that generates code that actually computes
1328    the value is the first call *at compile time*.  Subsequent calls
1329    *at compile time* generate code to use the saved value.
1330    This produces correct result provided that *at run time* control
1331    always flows through the insns made by the first expand_expr
1332    before reaching the other places where the save_expr was evaluated.
1333    You, the caller of save_expr, must make sure this is so.
1334
1335    Constants, and certain read-only nodes, are returned with no
1336    SAVE_EXPR because that is safe.  Expressions containing placeholders
1337    are not touched; see tree.def for an explanation of what these
1338    are used for.  */
1339
1340 tree
1341 save_expr (tree expr)
1342 {
1343   tree t = fold (expr);
1344   tree inner;
1345
1346   /* If the tree evaluates to a constant, then we don't want to hide that
1347      fact (i.e. this allows further folding, and direct checks for constants).
1348      However, a read-only object that has side effects cannot be bypassed.
1349      Since it is no problem to reevaluate literals, we just return the
1350      literal node.  */
1351   inner = skip_simple_arithmetic (t);
1352   if (TREE_CONSTANT (inner)
1353       || (TREE_READONLY (inner) && ! TREE_SIDE_EFFECTS (inner))
1354       || TREE_CODE (inner) == SAVE_EXPR
1355       || TREE_CODE (inner) == ERROR_MARK)
1356     return t;
1357
1358   /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
1359      it means that the size or offset of some field of an object depends on
1360      the value within another field.
1361
1362      Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
1363      and some variable since it would then need to be both evaluated once and
1364      evaluated more than once.  Front-ends must assure this case cannot
1365      happen by surrounding any such subexpressions in their own SAVE_EXPR
1366      and forcing evaluation at the proper time.  */
1367   if (contains_placeholder_p (inner))
1368     return t;
1369
1370   t = build (SAVE_EXPR, TREE_TYPE (expr), t, current_function_decl, NULL_TREE);
1371
1372   /* This expression might be placed ahead of a jump to ensure that the
1373      value was computed on both sides of the jump.  So make sure it isn't
1374      eliminated as dead.  */
1375   TREE_SIDE_EFFECTS (t) = 1;
1376   TREE_READONLY (t) = 1;
1377   return t;
1378 }
1379
1380 /* Look inside EXPR and into any simple arithmetic operations.  Return
1381    the innermost non-arithmetic node.  */
1382
1383 tree
1384 skip_simple_arithmetic (tree expr)
1385 {
1386   tree inner;
1387
1388   /* We don't care about whether this can be used as an lvalue in this
1389      context.  */
1390   while (TREE_CODE (expr) == NON_LVALUE_EXPR)
1391     expr = TREE_OPERAND (expr, 0);
1392
1393   /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
1394      a constant, it will be more efficient to not make another SAVE_EXPR since
1395      it will allow better simplification and GCSE will be able to merge the
1396      computations if they actually occur.  */
1397   inner = expr;
1398   while (1)
1399     {
1400       if (TREE_CODE_CLASS (TREE_CODE (inner)) == '1')
1401         inner = TREE_OPERAND (inner, 0);
1402       else if (TREE_CODE_CLASS (TREE_CODE (inner)) == '2')
1403         {
1404           if (TREE_CONSTANT (TREE_OPERAND (inner, 1)))
1405             inner = TREE_OPERAND (inner, 0);
1406           else if (TREE_CONSTANT (TREE_OPERAND (inner, 0)))
1407             inner = TREE_OPERAND (inner, 1);
1408           else
1409             break;
1410         }
1411       else
1412         break;
1413     }
1414
1415   return inner;
1416 }
1417
1418 /* Return TRUE if EXPR is a SAVE_EXPR or wraps simple arithmetic around a
1419    SAVE_EXPR.  Return FALSE otherwise.  */
1420
1421 bool
1422 saved_expr_p (tree expr)
1423 {
1424   return TREE_CODE (skip_simple_arithmetic (expr)) == SAVE_EXPR;
1425 }
1426
1427 /* Arrange for an expression to be expanded multiple independent
1428    times.  This is useful for cleanup actions, as the backend can
1429    expand them multiple times in different places.  */
1430
1431 tree
1432 unsave_expr (tree expr)
1433 {
1434   tree t;
1435
1436   /* If this is already protected, no sense in protecting it again.  */
1437   if (TREE_CODE (expr) == UNSAVE_EXPR)
1438     return expr;
1439
1440   t = build1 (UNSAVE_EXPR, TREE_TYPE (expr), expr);
1441   TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (expr);
1442   return t;
1443 }
1444
1445 /* Returns the index of the first non-tree operand for CODE, or the number
1446    of operands if all are trees.  */
1447
1448 int
1449 first_rtl_op (enum tree_code code)
1450 {
1451   switch (code)
1452     {
1453     case SAVE_EXPR:
1454       return 2;
1455     case GOTO_SUBROUTINE_EXPR:
1456     case RTL_EXPR:
1457       return 0;
1458     case WITH_CLEANUP_EXPR:
1459       return 2;
1460     default:
1461       return TREE_CODE_LENGTH (code);
1462     }
1463 }
1464
1465 /* Return which tree structure is used by T.  */
1466
1467 enum tree_node_structure_enum
1468 tree_node_structure (tree t)
1469 {
1470   enum tree_code code = TREE_CODE (t);
1471
1472   switch (TREE_CODE_CLASS (code))
1473     {
1474     case 'd':   return TS_DECL;
1475     case 't':   return TS_TYPE;
1476     case 'b':   return TS_BLOCK;
1477     case 'r': case '<': case '1': case '2': case 'e': case 's':
1478       return TS_EXP;
1479     default:  /* 'c' and 'x' */
1480       break;
1481     }
1482   switch (code)
1483     {
1484       /* 'c' cases.  */
1485     case INTEGER_CST:           return TS_INT_CST;
1486     case REAL_CST:              return TS_REAL_CST;
1487     case COMPLEX_CST:           return TS_COMPLEX;
1488     case VECTOR_CST:            return TS_VECTOR;
1489     case STRING_CST:            return TS_STRING;
1490       /* 'x' cases.  */
1491     case ERROR_MARK:            return TS_COMMON;
1492     case IDENTIFIER_NODE:       return TS_IDENTIFIER;
1493     case TREE_LIST:             return TS_LIST;
1494     case TREE_VEC:              return TS_VEC;
1495     case PLACEHOLDER_EXPR:      return TS_COMMON;
1496
1497     default:
1498       abort ();
1499     }
1500 }
1501
1502 /* Perform any modifications to EXPR required when it is unsaved.  Does
1503    not recurse into EXPR's subtrees.  */
1504
1505 void
1506 unsave_expr_1 (tree expr)
1507 {
1508   switch (TREE_CODE (expr))
1509     {
1510     case SAVE_EXPR:
1511       if (! SAVE_EXPR_PERSISTENT_P (expr))
1512         SAVE_EXPR_RTL (expr) = 0;
1513       break;
1514
1515     case TARGET_EXPR:
1516       /* Don't mess with a TARGET_EXPR that hasn't been expanded.
1517          It's OK for this to happen if it was part of a subtree that
1518          isn't immediately expanded, such as operand 2 of another
1519          TARGET_EXPR.  */
1520       if (TREE_OPERAND (expr, 1))
1521         break;
1522
1523       TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
1524       TREE_OPERAND (expr, 3) = NULL_TREE;
1525       break;
1526
1527     case RTL_EXPR:
1528       /* I don't yet know how to emit a sequence multiple times.  */
1529       if (RTL_EXPR_SEQUENCE (expr) != 0)
1530         abort ();
1531       break;
1532
1533     default:
1534       break;
1535     }
1536 }
1537
1538 /* Default lang hook for "unsave_expr_now".  */
1539
1540 tree
1541 lhd_unsave_expr_now (tree expr)
1542 {
1543   enum tree_code code;
1544
1545   /* There's nothing to do for NULL_TREE.  */
1546   if (expr == 0)
1547     return expr;
1548
1549   unsave_expr_1 (expr);
1550
1551   code = TREE_CODE (expr);
1552   switch (TREE_CODE_CLASS (code))
1553     {
1554     case 'c':  /* a constant */
1555     case 't':  /* a type node */
1556     case 'd':  /* A decl node */
1557     case 'b':  /* A block node */
1558       break;
1559
1560     case 'x':  /* miscellaneous: e.g., identifier, TREE_LIST or ERROR_MARK.  */
1561       if (code == TREE_LIST)
1562         {
1563           lhd_unsave_expr_now (TREE_VALUE (expr));
1564           lhd_unsave_expr_now (TREE_CHAIN (expr));
1565         }
1566       break;
1567
1568     case 'e':  /* an expression */
1569     case 'r':  /* a reference */
1570     case 's':  /* an expression with side effects */
1571     case '<':  /* a comparison expression */
1572     case '2':  /* a binary arithmetic expression */
1573     case '1':  /* a unary arithmetic expression */
1574       {
1575         int i;
1576
1577         for (i = first_rtl_op (code) - 1; i >= 0; i--)
1578           lhd_unsave_expr_now (TREE_OPERAND (expr, i));
1579       }
1580       break;
1581
1582     default:
1583       abort ();
1584     }
1585
1586   return expr;
1587 }
1588
1589 /* Return 0 if it is safe to evaluate EXPR multiple times,
1590    return 1 if it is safe if EXPR is unsaved afterward, or
1591    return 2 if it is completely unsafe.
1592
1593    This assumes that CALL_EXPRs and TARGET_EXPRs are never replicated in
1594    an expression tree, so that it safe to unsave them and the surrounding
1595    context will be correct.
1596
1597    SAVE_EXPRs basically *only* appear replicated in an expression tree,
1598    occasionally across the whole of a function.  It is therefore only
1599    safe to unsave a SAVE_EXPR if you know that all occurrences appear
1600    below the UNSAVE_EXPR.
1601
1602    RTL_EXPRs consume their rtl during evaluation.  It is therefore
1603    never possible to unsave them.  */
1604
1605 int
1606 unsafe_for_reeval (tree expr)
1607 {
1608   int unsafeness = 0;
1609   enum tree_code code;
1610   int i, tmp, tmp2;
1611   tree exp;
1612   int first_rtl;
1613
1614   if (expr == NULL_TREE)
1615     return 1;
1616
1617   code = TREE_CODE (expr);
1618   first_rtl = first_rtl_op (code);
1619
1620   switch (code)
1621     {
1622     case SAVE_EXPR:
1623     case RTL_EXPR:
1624     case TRY_CATCH_EXPR:
1625       return 2;
1626
1627     case TREE_LIST:
1628       for (exp = expr; exp != 0; exp = TREE_CHAIN (exp))
1629         {
1630           tmp = unsafe_for_reeval (TREE_VALUE (exp));
1631           unsafeness = MAX (tmp, unsafeness);
1632         }
1633
1634       return unsafeness;
1635
1636     case CALL_EXPR:
1637       tmp2 = unsafe_for_reeval (TREE_OPERAND (expr, 0));
1638       tmp = unsafe_for_reeval (TREE_OPERAND (expr, 1));
1639       return MAX (MAX (tmp, 1), tmp2);
1640
1641     case TARGET_EXPR:
1642       unsafeness = 1;
1643       break;
1644
1645     case EXIT_BLOCK_EXPR:
1646       /* EXIT_BLOCK_LABELED_BLOCK, a.k.a. TREE_OPERAND (expr, 0), holds
1647          a reference to an ancestor LABELED_BLOCK, so we need to avoid
1648          unbounded recursion in the 'e' traversal code below.  */
1649       exp = EXIT_BLOCK_RETURN (expr);
1650       return exp ? unsafe_for_reeval (exp) : 0;
1651
1652     default:
1653       tmp = (*lang_hooks.unsafe_for_reeval) (expr);
1654       if (tmp >= 0)
1655         return tmp;
1656       break;
1657     }
1658
1659   switch (TREE_CODE_CLASS (code))
1660     {
1661     case 'c':  /* a constant */
1662     case 't':  /* a type node */
1663     case 'x':  /* something random, like an identifier or an ERROR_MARK.  */
1664     case 'd':  /* A decl node */
1665     case 'b':  /* A block node */
1666       return 0;
1667
1668     case 'e':  /* an expression */
1669     case 'r':  /* a reference */
1670     case 's':  /* an expression with side effects */
1671     case '<':  /* a comparison expression */
1672     case '2':  /* a binary arithmetic expression */
1673     case '1':  /* a unary arithmetic expression */
1674       for (i = first_rtl - 1; i >= 0; i--)
1675         {
1676           tmp = unsafe_for_reeval (TREE_OPERAND (expr, i));
1677           unsafeness = MAX (tmp, unsafeness);
1678         }
1679
1680       return unsafeness;
1681
1682     default:
1683       return 2;
1684     }
1685 }
1686 \f
1687 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
1688    or offset that depends on a field within a record.  */
1689
1690 bool
1691 contains_placeholder_p (tree exp)
1692 {
1693   enum tree_code code;
1694   int result;
1695
1696   if (!exp)
1697     return 0;
1698
1699   /* If we have a WITH_RECORD_EXPR, it "cancels" any PLACEHOLDER_EXPR
1700      in it since it is supplying a value for it.  */
1701   code = TREE_CODE (exp);
1702   if (code == WITH_RECORD_EXPR)
1703     return 0;
1704   else if (code == PLACEHOLDER_EXPR)
1705     return 1;
1706
1707   switch (TREE_CODE_CLASS (code))
1708     {
1709     case 'r':
1710       /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
1711          position computations since they will be converted into a
1712          WITH_RECORD_EXPR involving the reference, which will assume
1713          here will be valid.  */
1714       return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
1715
1716     case 'x':
1717       if (code == TREE_LIST)
1718         return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
1719                 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
1720       break;
1721
1722     case '1':
1723     case '2':  case '<':
1724     case 'e':
1725       switch (code)
1726         {
1727         case COMPOUND_EXPR:
1728           /* Ignoring the first operand isn't quite right, but works best.  */
1729           return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
1730
1731         case RTL_EXPR:
1732         case CONSTRUCTOR:
1733           return 0;
1734
1735         case COND_EXPR:
1736           return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
1737                   || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
1738                   || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
1739
1740         case SAVE_EXPR:
1741           /* If we already know this doesn't have a placeholder, don't
1742              check again.  */
1743           if (SAVE_EXPR_NOPLACEHOLDER (exp) || SAVE_EXPR_RTL (exp) != 0)
1744             return 0;
1745
1746           SAVE_EXPR_NOPLACEHOLDER (exp) = 1;
1747           result = CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
1748           if (result)
1749             SAVE_EXPR_NOPLACEHOLDER (exp) = 0;
1750
1751           return result;
1752
1753         case CALL_EXPR:
1754           return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
1755
1756         default:
1757           break;
1758         }
1759
1760       switch (TREE_CODE_LENGTH (code))
1761         {
1762         case 1:
1763           return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
1764         case 2:
1765           return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
1766                   || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
1767         default:
1768           return 0;
1769         }
1770
1771     default:
1772       return 0;
1773     }
1774   return 0;
1775 }
1776
1777 /* Return 1 if any part of the computation of TYPE involves a PLACEHOLDER_EXPR.
1778    This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and field
1779    positions.  */
1780
1781 bool
1782 type_contains_placeholder_p (tree type)
1783 {
1784   /* If the size contains a placeholder or the parent type (component type in
1785      the case of arrays) type involves a placeholder, this type does.  */
1786   if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
1787       || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
1788       || (TREE_TYPE (type) != 0
1789           && type_contains_placeholder_p (TREE_TYPE (type))))
1790     return 1;
1791
1792   /* Now do type-specific checks.  Note that the last part of the check above
1793      greatly limits what we have to do below.  */
1794   switch (TREE_CODE (type))
1795     {
1796     case VOID_TYPE:
1797     case COMPLEX_TYPE:
1798     case VECTOR_TYPE:
1799     case ENUMERAL_TYPE:
1800     case BOOLEAN_TYPE:
1801     case CHAR_TYPE:
1802     case POINTER_TYPE:
1803     case OFFSET_TYPE:
1804     case REFERENCE_TYPE:
1805     case METHOD_TYPE:
1806     case FILE_TYPE:
1807     case FUNCTION_TYPE:
1808       return 0;
1809
1810     case INTEGER_TYPE:
1811     case REAL_TYPE:
1812       /* Here we just check the bounds.  */
1813       return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
1814               || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
1815
1816     case ARRAY_TYPE:
1817     case SET_TYPE:
1818       /* We're already checked the component type (TREE_TYPE), so just check
1819          the index type.  */
1820       return type_contains_placeholder_p (TYPE_DOMAIN (type));
1821
1822     case RECORD_TYPE:
1823     case UNION_TYPE:
1824     case QUAL_UNION_TYPE:
1825       {
1826         static tree seen_types = 0;
1827         tree field;
1828         bool ret = 0;
1829
1830         /* We have to be careful here that we don't end up in infinite
1831            recursions due to a field of a type being a pointer to that type
1832            or to a mutually-recursive type.  So we store a list of record
1833            types that we've seen and see if this type is in them.  To save
1834            memory, we don't use a list for just one type.  Here we check
1835            whether we've seen this type before and store it if not.  */
1836         if (seen_types == 0)
1837           seen_types = type;
1838         else if (TREE_CODE (seen_types) != TREE_LIST)
1839           {
1840             if (seen_types == type)
1841               return 0;
1842
1843             seen_types = tree_cons (NULL_TREE, type,
1844                                     build_tree_list (NULL_TREE, seen_types));
1845           }
1846         else
1847           {
1848             if (value_member (type, seen_types) != 0)
1849               return 0;
1850
1851             seen_types = tree_cons (NULL_TREE, type, seen_types);
1852           }
1853
1854         for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1855           if (TREE_CODE (field) == FIELD_DECL
1856               && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
1857                   || (TREE_CODE (type) == QUAL_UNION_TYPE
1858                       && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
1859                   || type_contains_placeholder_p (TREE_TYPE (field))))
1860             {
1861               ret = true;
1862               break;
1863             }
1864
1865         /* Now remove us from seen_types and return the result.  */
1866         if (seen_types == type)
1867           seen_types = 0;
1868         else
1869           seen_types = TREE_CHAIN (seen_types);
1870
1871         return ret;
1872       }
1873
1874     default:
1875       abort ();
1876     }
1877 }
1878
1879 /* Return 1 if EXP contains any expressions that produce cleanups for an
1880    outer scope to deal with.  Used by fold.  */
1881
1882 int
1883 has_cleanups (tree exp)
1884 {
1885   int i, nops, cmp;
1886
1887   if (! TREE_SIDE_EFFECTS (exp))
1888     return 0;
1889
1890   switch (TREE_CODE (exp))
1891     {
1892     case TARGET_EXPR:
1893     case GOTO_SUBROUTINE_EXPR:
1894     case WITH_CLEANUP_EXPR:
1895       return 1;
1896
1897     case CLEANUP_POINT_EXPR:
1898       return 0;
1899
1900     case CALL_EXPR:
1901       for (exp = TREE_OPERAND (exp, 1); exp; exp = TREE_CHAIN (exp))
1902         {
1903           cmp = has_cleanups (TREE_VALUE (exp));
1904           if (cmp)
1905             return cmp;
1906         }
1907       return 0;
1908
1909     default:
1910       break;
1911     }
1912
1913   /* This general rule works for most tree codes.  All exceptions should be
1914      handled above.  If this is a language-specific tree code, we can't
1915      trust what might be in the operand, so say we don't know
1916      the situation.  */
1917   if ((int) TREE_CODE (exp) >= (int) LAST_AND_UNUSED_TREE_CODE)
1918     return -1;
1919
1920   nops = first_rtl_op (TREE_CODE (exp));
1921   for (i = 0; i < nops; i++)
1922     if (TREE_OPERAND (exp, i) != 0)
1923       {
1924         int type = TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, i)));
1925         if (type == 'e' || type == '<' || type == '1' || type == '2'
1926             || type == 'r' || type == 's')
1927           {
1928             cmp = has_cleanups (TREE_OPERAND (exp, i));
1929             if (cmp)
1930               return cmp;
1931           }
1932       }
1933
1934   return 0;
1935 }
1936 \f
1937 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
1938    return a tree with all occurrences of references to F in a
1939    PLACEHOLDER_EXPR replaced by R.   Note that we assume here that EXP
1940    contains only arithmetic expressions or a CALL_EXPR with a
1941    PLACEHOLDER_EXPR occurring only in its arglist.  */
1942
1943 tree
1944 substitute_in_expr (tree exp, tree f, tree r)
1945 {
1946   enum tree_code code = TREE_CODE (exp);
1947   tree op0, op1, op2;
1948   tree new;
1949   tree inner;
1950
1951   switch (TREE_CODE_CLASS (code))
1952     {
1953     case 'c':
1954     case 'd':
1955       return exp;
1956
1957     case 'x':
1958       if (code == PLACEHOLDER_EXPR)
1959         return exp;
1960       else if (code == TREE_LIST)
1961         {
1962           op0 = (TREE_CHAIN (exp) == 0
1963                  ? 0 : substitute_in_expr (TREE_CHAIN (exp), f, r));
1964           op1 = substitute_in_expr (TREE_VALUE (exp), f, r);
1965           if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
1966             return exp;
1967
1968           return tree_cons (TREE_PURPOSE (exp), op1, op0);
1969         }
1970
1971       abort ();
1972
1973     case '1':
1974     case '2':
1975     case '<':
1976     case 'e':
1977       switch (TREE_CODE_LENGTH (code))
1978         {
1979         case 1:
1980           op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
1981           if (op0 == TREE_OPERAND (exp, 0))
1982             return exp;
1983
1984           if (code == NON_LVALUE_EXPR)
1985             return op0;
1986
1987           new = fold (build1 (code, TREE_TYPE (exp), op0));
1988           break;
1989
1990         case 2:
1991           /* An RTL_EXPR cannot contain a PLACEHOLDER_EXPR; a CONSTRUCTOR
1992              could, but we don't support it.  */
1993           if (code == RTL_EXPR)
1994             return exp;
1995           else if (code == CONSTRUCTOR)
1996             abort ();
1997
1998           op0 = TREE_OPERAND (exp, 0);
1999           op1 = TREE_OPERAND (exp, 1);
2000           if (CONTAINS_PLACEHOLDER_P (op0))
2001             op0 = substitute_in_expr (op0, f, r);
2002           if (CONTAINS_PLACEHOLDER_P (op1))
2003             op1 = substitute_in_expr (op1, f, r);
2004
2005           if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
2006             return exp;
2007
2008           new = fold (build (code, TREE_TYPE (exp), op0, op1));
2009           break;
2010
2011         case 3:
2012           /* It cannot be that anything inside a SAVE_EXPR contains a
2013              PLACEHOLDER_EXPR.  */
2014           if (code == SAVE_EXPR)
2015             return exp;
2016
2017           else if (code == CALL_EXPR)
2018             {
2019               op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
2020               if (op1 == TREE_OPERAND (exp, 1))
2021                 return exp;
2022
2023               return build (code, TREE_TYPE (exp),
2024                             TREE_OPERAND (exp, 0), op1, NULL_TREE);
2025             }
2026
2027           else if (code != COND_EXPR)
2028             abort ();
2029
2030           op0 = TREE_OPERAND (exp, 0);
2031           op1 = TREE_OPERAND (exp, 1);
2032           op2 = TREE_OPERAND (exp, 2);
2033
2034           if (CONTAINS_PLACEHOLDER_P (op0))
2035             op0 = substitute_in_expr (op0, f, r);
2036           if (CONTAINS_PLACEHOLDER_P (op1))
2037             op1 = substitute_in_expr (op1, f, r);
2038           if (CONTAINS_PLACEHOLDER_P (op2))
2039             op2 = substitute_in_expr (op2, f, r);
2040
2041           if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2042               && op2 == TREE_OPERAND (exp, 2))
2043             return exp;
2044
2045           new = fold (build (code, TREE_TYPE (exp), op0, op1, op2));
2046           break;
2047
2048         default:
2049           abort ();
2050         }
2051
2052       break;
2053
2054     case 'r':
2055       switch (code)
2056         {
2057         case COMPONENT_REF:
2058           /* If this expression is getting a value from a PLACEHOLDER_EXPR
2059              and it is the right field, replace it with R.  */
2060           for (inner = TREE_OPERAND (exp, 0);
2061                TREE_CODE_CLASS (TREE_CODE (inner)) == 'r';
2062                inner = TREE_OPERAND (inner, 0))
2063             ;
2064           if (TREE_CODE (inner) == PLACEHOLDER_EXPR
2065               && TREE_OPERAND (exp, 1) == f)
2066             return r;
2067
2068           /* If this expression hasn't been completed let, leave it
2069              alone.  */
2070           if (TREE_CODE (inner) == PLACEHOLDER_EXPR
2071               && TREE_TYPE (inner) == 0)
2072             return exp;
2073
2074           op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2075           if (op0 == TREE_OPERAND (exp, 0))
2076             return exp;
2077
2078           new = fold (build (code, TREE_TYPE (exp), op0,
2079                              TREE_OPERAND (exp, 1)));
2080           break;
2081
2082         case BIT_FIELD_REF:
2083           op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2084           op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
2085           op2 = substitute_in_expr (TREE_OPERAND (exp, 2), f, r);
2086           if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2087               && op2 == TREE_OPERAND (exp, 2))
2088             return exp;
2089
2090           new = fold (build (code, TREE_TYPE (exp), op0, op1, op2));
2091           break;
2092
2093         case INDIRECT_REF:
2094         case BUFFER_REF:
2095           op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2096           if (op0 == TREE_OPERAND (exp, 0))
2097             return exp;
2098
2099           new = fold (build1 (code, TREE_TYPE (exp), op0));
2100           break;
2101
2102         default:
2103           abort ();
2104         }
2105       break;
2106
2107     default:
2108       abort ();
2109     }
2110
2111   TREE_READONLY (new) = TREE_READONLY (exp);
2112   return new;
2113 }
2114 \f
2115 /* Stabilize a reference so that we can use it any number of times
2116    without causing its operands to be evaluated more than once.
2117    Returns the stabilized reference.  This works by means of save_expr,
2118    so see the caveats in the comments about save_expr.
2119
2120    Also allows conversion expressions whose operands are references.
2121    Any other kind of expression is returned unchanged.  */
2122
2123 tree
2124 stabilize_reference (tree ref)
2125 {
2126   tree result;
2127   enum tree_code code = TREE_CODE (ref);
2128
2129   switch (code)
2130     {
2131     case VAR_DECL:
2132     case PARM_DECL:
2133     case RESULT_DECL:
2134       /* No action is needed in this case.  */
2135       return ref;
2136
2137     case NOP_EXPR:
2138     case CONVERT_EXPR:
2139     case FLOAT_EXPR:
2140     case FIX_TRUNC_EXPR:
2141     case FIX_FLOOR_EXPR:
2142     case FIX_ROUND_EXPR:
2143     case FIX_CEIL_EXPR:
2144       result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
2145       break;
2146
2147     case INDIRECT_REF:
2148       result = build_nt (INDIRECT_REF,
2149                          stabilize_reference_1 (TREE_OPERAND (ref, 0)));
2150       break;
2151
2152     case COMPONENT_REF:
2153       result = build_nt (COMPONENT_REF,
2154                          stabilize_reference (TREE_OPERAND (ref, 0)),
2155                          TREE_OPERAND (ref, 1));
2156       break;
2157
2158     case BIT_FIELD_REF:
2159       result = build_nt (BIT_FIELD_REF,
2160                          stabilize_reference (TREE_OPERAND (ref, 0)),
2161                          stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2162                          stabilize_reference_1 (TREE_OPERAND (ref, 2)));
2163       break;
2164
2165     case ARRAY_REF:
2166       result = build_nt (ARRAY_REF,
2167                          stabilize_reference (TREE_OPERAND (ref, 0)),
2168                          stabilize_reference_1 (TREE_OPERAND (ref, 1)));
2169       break;
2170
2171     case ARRAY_RANGE_REF:
2172       result = build_nt (ARRAY_RANGE_REF,
2173                          stabilize_reference (TREE_OPERAND (ref, 0)),
2174                          stabilize_reference_1 (TREE_OPERAND (ref, 1)));
2175       break;
2176
2177     case COMPOUND_EXPR:
2178       /* We cannot wrap the first expression in a SAVE_EXPR, as then
2179          it wouldn't be ignored.  This matters when dealing with
2180          volatiles.  */
2181       return stabilize_reference_1 (ref);
2182
2183     case RTL_EXPR:
2184       result = build1 (INDIRECT_REF, TREE_TYPE (ref),
2185                        save_expr (build1 (ADDR_EXPR,
2186                                           build_pointer_type (TREE_TYPE (ref)),
2187                                           ref)));
2188       break;
2189
2190       /* If arg isn't a kind of lvalue we recognize, make no change.
2191          Caller should recognize the error for an invalid lvalue.  */
2192     default:
2193       return ref;
2194
2195     case ERROR_MARK:
2196       return error_mark_node;
2197     }
2198
2199   TREE_TYPE (result) = TREE_TYPE (ref);
2200   TREE_READONLY (result) = TREE_READONLY (ref);
2201   TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
2202   TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
2203
2204   return result;
2205 }
2206
2207 /* Subroutine of stabilize_reference; this is called for subtrees of
2208    references.  Any expression with side-effects must be put in a SAVE_EXPR
2209    to ensure that it is only evaluated once.
2210
2211    We don't put SAVE_EXPR nodes around everything, because assigning very
2212    simple expressions to temporaries causes us to miss good opportunities
2213    for optimizations.  Among other things, the opportunity to fold in the
2214    addition of a constant into an addressing mode often gets lost, e.g.
2215    "y[i+1] += x;".  In general, we take the approach that we should not make
2216    an assignment unless we are forced into it - i.e., that any non-side effect
2217    operator should be allowed, and that cse should take care of coalescing
2218    multiple utterances of the same expression should that prove fruitful.  */
2219
2220 tree
2221 stabilize_reference_1 (tree e)
2222 {
2223   tree result;
2224   enum tree_code code = TREE_CODE (e);
2225
2226   /* We cannot ignore const expressions because it might be a reference
2227      to a const array but whose index contains side-effects.  But we can
2228      ignore things that are actual constant or that already have been
2229      handled by this function.  */
2230
2231   if (TREE_CONSTANT (e) || code == SAVE_EXPR)
2232     return e;
2233
2234   switch (TREE_CODE_CLASS (code))
2235     {
2236     case 'x':
2237     case 't':
2238     case 'd':
2239     case 'b':
2240     case '<':
2241     case 's':
2242     case 'e':
2243     case 'r':
2244       /* If the expression has side-effects, then encase it in a SAVE_EXPR
2245          so that it will only be evaluated once.  */
2246       /* The reference (r) and comparison (<) classes could be handled as
2247          below, but it is generally faster to only evaluate them once.  */
2248       if (TREE_SIDE_EFFECTS (e))
2249         return save_expr (e);
2250       return e;
2251
2252     case 'c':
2253       /* Constants need no processing.  In fact, we should never reach
2254          here.  */
2255       return e;
2256
2257     case '2':
2258       /* Division is slow and tends to be compiled with jumps,
2259          especially the division by powers of 2 that is often
2260          found inside of an array reference.  So do it just once.  */
2261       if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
2262           || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
2263           || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
2264           || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
2265         return save_expr (e);
2266       /* Recursively stabilize each operand.  */
2267       result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
2268                          stabilize_reference_1 (TREE_OPERAND (e, 1)));
2269       break;
2270
2271     case '1':
2272       /* Recursively stabilize each operand.  */
2273       result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
2274       break;
2275
2276     default:
2277       abort ();
2278     }
2279
2280   TREE_TYPE (result) = TREE_TYPE (e);
2281   TREE_READONLY (result) = TREE_READONLY (e);
2282   TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
2283   TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
2284
2285   return result;
2286 }
2287 \f
2288 /* Low-level constructors for expressions.  */
2289
2290 /* Build an expression of code CODE, data type TYPE,
2291    and operands as specified by the arguments ARG1 and following arguments.
2292    Expressions and reference nodes can be created this way.
2293    Constants, decls, types and misc nodes cannot be.  */
2294
2295 tree
2296 build (enum tree_code code, tree tt, ...)
2297 {
2298   tree t;
2299   int length;
2300   int i;
2301   int fro;
2302   int constant;
2303   va_list p;
2304   tree node;
2305
2306   va_start (p, tt);
2307
2308   t = make_node (code);
2309   length = TREE_CODE_LENGTH (code);
2310   TREE_TYPE (t) = tt;
2311
2312   /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
2313      result based on those same flags for the arguments.  But if the
2314      arguments aren't really even `tree' expressions, we shouldn't be trying
2315      to do this.  */
2316   fro = first_rtl_op (code);
2317
2318   /* Expressions without side effects may be constant if their
2319      arguments are as well.  */
2320   constant = (TREE_CODE_CLASS (code) == '<'
2321               || TREE_CODE_CLASS (code) == '1'
2322               || TREE_CODE_CLASS (code) == '2'
2323               || TREE_CODE_CLASS (code) == 'c');
2324
2325   if (length == 2)
2326     {
2327       /* This is equivalent to the loop below, but faster.  */
2328       tree arg0 = va_arg (p, tree);
2329       tree arg1 = va_arg (p, tree);
2330
2331       TREE_OPERAND (t, 0) = arg0;
2332       TREE_OPERAND (t, 1) = arg1;
2333       TREE_READONLY (t) = 1;
2334       if (arg0 && fro > 0)
2335         {
2336           if (TREE_SIDE_EFFECTS (arg0))
2337             TREE_SIDE_EFFECTS (t) = 1;
2338           if (!TREE_READONLY (arg0))
2339             TREE_READONLY (t) = 0;
2340           if (!TREE_CONSTANT (arg0))
2341             constant = 0;
2342         }
2343
2344       if (arg1 && fro > 1)
2345         {
2346           if (TREE_SIDE_EFFECTS (arg1))
2347             TREE_SIDE_EFFECTS (t) = 1;
2348           if (!TREE_READONLY (arg1))
2349             TREE_READONLY (t) = 0;
2350           if (!TREE_CONSTANT (arg1))
2351             constant = 0;
2352         }
2353     }
2354   else if (length == 1)
2355     {
2356       tree arg0 = va_arg (p, tree);
2357
2358       /* The only one-operand cases we handle here are those with side-effects.
2359          Others are handled with build1.  So don't bother checked if the
2360          arg has side-effects since we'll already have set it.
2361
2362          ??? This really should use build1 too.  */
2363       if (TREE_CODE_CLASS (code) != 's')
2364         abort ();
2365       TREE_OPERAND (t, 0) = arg0;
2366     }
2367   else
2368     {
2369       for (i = 0; i < length; i++)
2370         {
2371           tree operand = va_arg (p, tree);
2372
2373           TREE_OPERAND (t, i) = operand;
2374           if (operand && fro > i)
2375             {
2376               if (TREE_SIDE_EFFECTS (operand))
2377                 TREE_SIDE_EFFECTS (t) = 1;
2378               if (!TREE_CONSTANT (operand))
2379                 constant = 0;
2380             }
2381         }
2382     }
2383   va_end (p);
2384
2385   TREE_CONSTANT (t) = constant;
2386   
2387   if (code == CALL_EXPR && !TREE_SIDE_EFFECTS (t))
2388     {
2389       /* Calls have side-effects, except those to const or
2390          pure functions.  */
2391       i = call_expr_flags (t);
2392       if (!(i & (ECF_CONST | ECF_PURE)))
2393         TREE_SIDE_EFFECTS (t) = 1;
2394
2395       /* And even those have side-effects if their arguments do.  */
2396       else for (node = TREE_OPERAND (t, 1); node; node = TREE_CHAIN (node))
2397         if (TREE_SIDE_EFFECTS (TREE_VALUE (node)))
2398           {
2399             TREE_SIDE_EFFECTS (t) = 1;
2400             break;
2401           }
2402     }
2403
2404   return t;
2405 }
2406
2407 /* Same as above, but only builds for unary operators.
2408    Saves lions share of calls to `build'; cuts down use
2409    of varargs, which is expensive for RISC machines.  */
2410
2411 tree
2412 build1 (enum tree_code code, tree type, tree node)
2413 {
2414   int length = sizeof (struct tree_exp);
2415 #ifdef GATHER_STATISTICS
2416   tree_node_kind kind;
2417 #endif
2418   tree t;
2419
2420 #ifdef GATHER_STATISTICS
2421   switch (TREE_CODE_CLASS (code))
2422     {
2423     case 's':  /* an expression with side effects */
2424       kind = s_kind;
2425       break;
2426     case 'r':  /* a reference */
2427       kind = r_kind;
2428       break;
2429     default:
2430       kind = e_kind;
2431       break;
2432     }
2433
2434   tree_node_counts[(int) kind]++;
2435   tree_node_sizes[(int) kind] += length;
2436 #endif
2437
2438 #ifdef ENABLE_CHECKING
2439   if (TREE_CODE_CLASS (code) == '2'
2440       || TREE_CODE_CLASS (code) == '<'
2441       || TREE_CODE_LENGTH (code) != 1)
2442     abort ();
2443 #endif /* ENABLE_CHECKING */
2444
2445   t = ggc_alloc_tree (length);
2446
2447   memset (t, 0, sizeof (struct tree_common));
2448
2449   TREE_SET_CODE (t, code);
2450
2451   TREE_TYPE (t) = type;
2452   TREE_COMPLEXITY (t) = 0;
2453   TREE_OPERAND (t, 0) = node;
2454   if (node && first_rtl_op (code) != 0)
2455     {
2456       TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
2457       TREE_READONLY (t) = TREE_READONLY (node);
2458     }
2459
2460   if (TREE_CODE_CLASS (code) == 's')
2461     TREE_SIDE_EFFECTS (t) = 1;
2462   else switch (code)
2463     {
2464     case INIT_EXPR:
2465     case MODIFY_EXPR:
2466     case VA_ARG_EXPR:
2467     case RTL_EXPR:
2468     case PREDECREMENT_EXPR:
2469     case PREINCREMENT_EXPR:
2470     case POSTDECREMENT_EXPR:
2471     case POSTINCREMENT_EXPR:
2472       /* All of these have side-effects, no matter what their
2473          operands are.  */
2474       TREE_SIDE_EFFECTS (t) = 1;
2475       TREE_READONLY (t) = 0;
2476       break;
2477
2478     case INDIRECT_REF:
2479       /* Whether a dereference is readonly has nothing to do with whether
2480          its operand is readonly.  */
2481       TREE_READONLY (t) = 0;
2482       break;
2483
2484     case ADDR_EXPR:
2485       if (node)
2486         {
2487           /* The address of a volatile decl or reference does not have
2488              side-effects.  But be careful not to ignore side-effects from
2489              other sources deeper in the expression--if node is a _REF and
2490              one of its operands has side-effects, so do we.  */
2491           if (TREE_THIS_VOLATILE (node))
2492             {
2493               TREE_SIDE_EFFECTS (t) = 0;
2494               if (!DECL_P (node))
2495                 {
2496                   int i = first_rtl_op (TREE_CODE (node)) - 1;
2497                   for (; i >= 0; --i)
2498                     {
2499                       if (TREE_SIDE_EFFECTS (TREE_OPERAND (node, i)))
2500                         TREE_SIDE_EFFECTS (t) = 1;
2501                     }
2502                 }
2503             }
2504         }
2505       break;
2506
2507     default:
2508       if (TREE_CODE_CLASS (code) == '1' && node && TREE_CONSTANT (node))
2509         TREE_CONSTANT (t) = 1;
2510       break;
2511     }
2512
2513   return t;
2514 }
2515
2516 /* Similar except don't specify the TREE_TYPE
2517    and leave the TREE_SIDE_EFFECTS as 0.
2518    It is permissible for arguments to be null,
2519    or even garbage if their values do not matter.  */
2520
2521 tree
2522 build_nt (enum tree_code code, ...)
2523 {
2524   tree t;
2525   int length;
2526   int i;
2527   va_list p;
2528
2529   va_start (p, code);
2530
2531   t = make_node (code);
2532   length = TREE_CODE_LENGTH (code);
2533
2534   for (i = 0; i < length; i++)
2535     TREE_OPERAND (t, i) = va_arg (p, tree);
2536
2537   va_end (p);
2538   return t;
2539 }
2540 \f
2541 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
2542    We do NOT enter this node in any sort of symbol table.
2543
2544    layout_decl is used to set up the decl's storage layout.
2545    Other slots are initialized to 0 or null pointers.  */
2546
2547 tree
2548 build_decl (enum tree_code code, tree name, tree type)
2549 {
2550   tree t;
2551
2552   t = make_node (code);
2553
2554 /*  if (type == error_mark_node)
2555     type = integer_type_node; */
2556 /* That is not done, deliberately, so that having error_mark_node
2557    as the type can suppress useless errors in the use of this variable.  */
2558
2559   DECL_NAME (t) = name;
2560   TREE_TYPE (t) = type;
2561
2562   if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
2563     layout_decl (t, 0);
2564   else if (code == FUNCTION_DECL)
2565     DECL_MODE (t) = FUNCTION_MODE;
2566
2567   return t;
2568 }
2569 \f
2570 /* BLOCK nodes are used to represent the structure of binding contours
2571    and declarations, once those contours have been exited and their contents
2572    compiled.  This information is used for outputting debugging info.  */
2573
2574 tree
2575 build_block (tree vars, tree tags ATTRIBUTE_UNUSED, tree subblocks,
2576              tree supercontext, tree chain)
2577 {
2578   tree block = make_node (BLOCK);
2579
2580   BLOCK_VARS (block) = vars;
2581   BLOCK_SUBBLOCKS (block) = subblocks;
2582   BLOCK_SUPERCONTEXT (block) = supercontext;
2583   BLOCK_CHAIN (block) = chain;
2584   return block;
2585 }
2586
2587 /* EXPR_WITH_FILE_LOCATION are used to keep track of the exact
2588    location where an expression or an identifier were encountered. It
2589    is necessary for languages where the frontend parser will handle
2590    recursively more than one file (Java is one of them).  */
2591
2592 tree
2593 build_expr_wfl (tree node, const char *file, int line, int col)
2594 {
2595   static const char *last_file = 0;
2596   static tree last_filenode = NULL_TREE;
2597   tree wfl = make_node (EXPR_WITH_FILE_LOCATION);
2598
2599   EXPR_WFL_NODE (wfl) = node;
2600   EXPR_WFL_SET_LINECOL (wfl, line, col);
2601   if (file != last_file)
2602     {
2603       last_file = file;
2604       last_filenode = file ? get_identifier (file) : NULL_TREE;
2605     }
2606
2607   EXPR_WFL_FILENAME_NODE (wfl) = last_filenode;
2608   if (node)
2609     {
2610       TREE_SIDE_EFFECTS (wfl) = TREE_SIDE_EFFECTS (node);
2611       TREE_TYPE (wfl) = TREE_TYPE (node);
2612     }
2613
2614   return wfl;
2615 }
2616 \f
2617 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
2618    is ATTRIBUTE.  */
2619
2620 tree
2621 build_decl_attribute_variant (tree ddecl, tree attribute)
2622 {
2623   DECL_ATTRIBUTES (ddecl) = attribute;
2624   return ddecl;
2625 }
2626
2627 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
2628    is ATTRIBUTE.
2629
2630    Record such modified types already made so we don't make duplicates.  */
2631
2632 tree
2633 build_type_attribute_variant (tree ttype, tree attribute)
2634 {
2635   if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
2636     {
2637       unsigned int hashcode;
2638       tree ntype;
2639
2640       ntype = copy_node (ttype);
2641
2642       TYPE_POINTER_TO (ntype) = 0;
2643       TYPE_REFERENCE_TO (ntype) = 0;
2644       TYPE_ATTRIBUTES (ntype) = attribute;
2645
2646       /* Create a new main variant of TYPE.  */
2647       TYPE_MAIN_VARIANT (ntype) = ntype;
2648       TYPE_NEXT_VARIANT (ntype) = 0;
2649       set_type_quals (ntype, TYPE_UNQUALIFIED);
2650
2651       hashcode = (TYPE_HASH (TREE_CODE (ntype))
2652                   + TYPE_HASH (TREE_TYPE (ntype))
2653                   + attribute_hash_list (attribute));
2654
2655       switch (TREE_CODE (ntype))
2656         {
2657         case FUNCTION_TYPE:
2658           hashcode += TYPE_HASH (TYPE_ARG_TYPES (ntype));
2659           break;
2660         case ARRAY_TYPE:
2661           hashcode += TYPE_HASH (TYPE_DOMAIN (ntype));
2662           break;
2663         case INTEGER_TYPE:
2664           hashcode += TYPE_HASH (TYPE_MAX_VALUE (ntype));
2665           break;
2666         case REAL_TYPE:
2667           hashcode += TYPE_HASH (TYPE_PRECISION (ntype));
2668           break;
2669         default:
2670           break;
2671         }
2672
2673       ntype = type_hash_canon (hashcode, ntype);
2674       ttype = build_qualified_type (ntype, TYPE_QUALS (ttype));
2675     }
2676
2677   return ttype;
2678 }
2679
2680 /* Return nonzero if IDENT is a valid name for attribute ATTR,
2681    or zero if not.
2682
2683    We try both `text' and `__text__', ATTR may be either one.  */
2684 /* ??? It might be a reasonable simplification to require ATTR to be only
2685    `text'.  One might then also require attribute lists to be stored in
2686    their canonicalized form.  */
2687
2688 int
2689 is_attribute_p (const char *attr, tree ident)
2690 {
2691   int ident_len, attr_len;
2692   const char *p;
2693
2694   if (TREE_CODE (ident) != IDENTIFIER_NODE)
2695     return 0;
2696
2697   if (strcmp (attr, IDENTIFIER_POINTER (ident)) == 0)
2698     return 1;
2699
2700   p = IDENTIFIER_POINTER (ident);
2701   ident_len = strlen (p);
2702   attr_len = strlen (attr);
2703
2704   /* If ATTR is `__text__', IDENT must be `text'; and vice versa.  */
2705   if (attr[0] == '_')
2706     {
2707       if (attr[1] != '_'
2708           || attr[attr_len - 2] != '_'
2709           || attr[attr_len - 1] != '_')
2710         abort ();
2711       if (ident_len == attr_len - 4
2712           && strncmp (attr + 2, p, attr_len - 4) == 0)
2713         return 1;
2714     }
2715   else
2716     {
2717       if (ident_len == attr_len + 4
2718           && p[0] == '_' && p[1] == '_'
2719           && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
2720           && strncmp (attr, p + 2, attr_len) == 0)
2721         return 1;
2722     }
2723
2724   return 0;
2725 }
2726
2727 /* Given an attribute name and a list of attributes, return a pointer to the
2728    attribute's list element if the attribute is part of the list, or NULL_TREE
2729    if not found.  If the attribute appears more than once, this only
2730    returns the first occurrence; the TREE_CHAIN of the return value should
2731    be passed back in if further occurrences are wanted.  */
2732
2733 tree
2734 lookup_attribute (const char *attr_name, tree list)
2735 {
2736   tree l;
2737
2738   for (l = list; l; l = TREE_CHAIN (l))
2739     {
2740       if (TREE_CODE (TREE_PURPOSE (l)) != IDENTIFIER_NODE)
2741         abort ();
2742       if (is_attribute_p (attr_name, TREE_PURPOSE (l)))
2743         return l;
2744     }
2745
2746   return NULL_TREE;
2747 }
2748
2749 /* Return an attribute list that is the union of a1 and a2.  */
2750
2751 tree
2752 merge_attributes (tree a1, tree a2)
2753 {
2754   tree attributes;
2755
2756   /* Either one unset?  Take the set one.  */
2757
2758   if ((attributes = a1) == 0)
2759     attributes = a2;
2760
2761   /* One that completely contains the other?  Take it.  */
2762
2763   else if (a2 != 0 && ! attribute_list_contained (a1, a2))
2764     {
2765       if (attribute_list_contained (a2, a1))
2766         attributes = a2;
2767       else
2768         {
2769           /* Pick the longest list, and hang on the other list.  */
2770
2771           if (list_length (a1) < list_length (a2))
2772             attributes = a2, a2 = a1;
2773
2774           for (; a2 != 0; a2 = TREE_CHAIN (a2))
2775             {
2776               tree a;
2777               for (a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
2778                                          attributes);
2779                    a != NULL_TREE;
2780                    a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
2781                                          TREE_CHAIN (a)))
2782                 {
2783                   if (simple_cst_equal (TREE_VALUE (a), TREE_VALUE (a2)) == 1)
2784                     break;
2785                 }
2786               if (a == NULL_TREE)
2787                 {
2788                   a1 = copy_node (a2);
2789                   TREE_CHAIN (a1) = attributes;
2790                   attributes = a1;
2791                 }
2792             }
2793         }
2794     }
2795   return attributes;
2796 }
2797
2798 /* Given types T1 and T2, merge their attributes and return
2799   the result.  */
2800
2801 tree
2802 merge_type_attributes (tree t1, tree t2)
2803 {
2804   return merge_attributes (TYPE_ATTRIBUTES (t1),
2805                            TYPE_ATTRIBUTES (t2));
2806 }
2807
2808 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
2809    the result.  */
2810
2811 tree
2812 merge_decl_attributes (tree olddecl, tree newdecl)
2813 {
2814   return merge_attributes (DECL_ATTRIBUTES (olddecl),
2815                            DECL_ATTRIBUTES (newdecl));
2816 }
2817
2818 #ifdef TARGET_DLLIMPORT_DECL_ATTRIBUTES
2819
2820 /* Specialization of merge_decl_attributes for various Windows targets.
2821
2822    This handles the following situation:
2823
2824      __declspec (dllimport) int foo;
2825      int foo;
2826
2827    The second instance of `foo' nullifies the dllimport.  */
2828
2829 tree
2830 merge_dllimport_decl_attributes (tree old, tree new)
2831 {
2832   tree a;
2833   int delete_dllimport_p;
2834
2835   old = DECL_ATTRIBUTES (old);
2836   new = DECL_ATTRIBUTES (new);
2837
2838   /* What we need to do here is remove from `old' dllimport if it doesn't
2839      appear in `new'.  dllimport behaves like extern: if a declaration is
2840      marked dllimport and a definition appears later, then the object
2841      is not dllimport'd.  */
2842   if (lookup_attribute ("dllimport", old) != NULL_TREE
2843       && lookup_attribute ("dllimport", new) == NULL_TREE)
2844     delete_dllimport_p = 1;
2845   else
2846     delete_dllimport_p = 0;
2847
2848   a = merge_attributes (old, new);
2849
2850   if (delete_dllimport_p)
2851     {
2852       tree prev, t;
2853
2854       /* Scan the list for dllimport and delete it.  */
2855       for (prev = NULL_TREE, t = a; t; prev = t, t = TREE_CHAIN (t))
2856         {
2857           if (is_attribute_p ("dllimport", TREE_PURPOSE (t)))
2858             {
2859               if (prev == NULL_TREE)
2860                 a = TREE_CHAIN (a);
2861               else
2862                 TREE_CHAIN (prev) = TREE_CHAIN (t);
2863               break;
2864             }
2865         }
2866     }
2867
2868   return a;
2869 }
2870
2871 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES  */
2872 \f
2873 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
2874    of the various TYPE_QUAL values.  */
2875
2876 static void
2877 set_type_quals (tree type, int type_quals)
2878 {
2879   TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
2880   TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
2881   TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
2882 }
2883
2884 /* Return a version of the TYPE, qualified as indicated by the
2885    TYPE_QUALS, if one exists.  If no qualified version exists yet,
2886    return NULL_TREE.  */
2887
2888 tree
2889 get_qualified_type (tree type, int type_quals)
2890 {
2891   tree t;
2892
2893   /* Search the chain of variants to see if there is already one there just
2894      like the one we need to have.  If so, use that existing one.  We must
2895      preserve the TYPE_NAME, since there is code that depends on this.  */
2896   for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
2897     if (TYPE_QUALS (t) == type_quals && TYPE_NAME (t) == TYPE_NAME (type)
2898         && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
2899         && attribute_list_equal (TYPE_ATTRIBUTES (t), TYPE_ATTRIBUTES (type)))
2900       return t;
2901
2902   return NULL_TREE;
2903 }
2904
2905 /* Like get_qualified_type, but creates the type if it does not
2906    exist.  This function never returns NULL_TREE.  */
2907
2908 tree
2909 build_qualified_type (tree type, int type_quals)
2910 {
2911   tree t;
2912
2913   /* See if we already have the appropriate qualified variant.  */
2914   t = get_qualified_type (type, type_quals);
2915
2916   /* If not, build it.  */
2917   if (!t)
2918     {
2919       t = build_type_copy (type);
2920       set_type_quals (t, type_quals);
2921     }
2922
2923   return t;
2924 }
2925
2926 /* Create a new variant of TYPE, equivalent but distinct.
2927    This is so the caller can modify it.  */
2928
2929 tree
2930 build_type_copy (tree type)
2931 {
2932   tree t, m = TYPE_MAIN_VARIANT (type);
2933
2934   t = copy_node (type);
2935
2936   TYPE_POINTER_TO (t) = 0;
2937   TYPE_REFERENCE_TO (t) = 0;
2938
2939   /* Add this type to the chain of variants of TYPE.  */
2940   TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
2941   TYPE_NEXT_VARIANT (m) = t;
2942
2943   return t;
2944 }
2945 \f
2946 /* Hashing of types so that we don't make duplicates.
2947    The entry point is `type_hash_canon'.  */
2948
2949 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
2950    with types in the TREE_VALUE slots), by adding the hash codes
2951    of the individual types.  */
2952
2953 unsigned int
2954 type_hash_list (tree list)
2955 {
2956   unsigned int hashcode;
2957   tree tail;
2958
2959   for (hashcode = 0, tail = list; tail; tail = TREE_CHAIN (tail))
2960     hashcode += TYPE_HASH (TREE_VALUE (tail));
2961
2962   return hashcode;
2963 }
2964
2965 /* These are the Hashtable callback functions.  */
2966
2967 /* Returns true if the types are equal.  */
2968
2969 static int
2970 type_hash_eq (const void *va, const void *vb)
2971 {
2972   const struct type_hash *a = va, *b = vb;
2973   if (a->hash == b->hash
2974       && TREE_CODE (a->type) == TREE_CODE (b->type)
2975       && TREE_TYPE (a->type) == TREE_TYPE (b->type)
2976       && attribute_list_equal (TYPE_ATTRIBUTES (a->type),
2977                                TYPE_ATTRIBUTES (b->type))
2978       && TYPE_ALIGN (a->type) == TYPE_ALIGN (b->type)
2979       && (TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
2980           || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
2981                                  TYPE_MAX_VALUE (b->type)))
2982       && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
2983           || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
2984                                  TYPE_MIN_VALUE (b->type)))
2985       /* Note that TYPE_DOMAIN is TYPE_ARG_TYPES for FUNCTION_TYPE.  */
2986       && (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
2987           || (TYPE_DOMAIN (a->type)
2988               && TREE_CODE (TYPE_DOMAIN (a->type)) == TREE_LIST
2989               && TYPE_DOMAIN (b->type)
2990               && TREE_CODE (TYPE_DOMAIN (b->type)) == TREE_LIST
2991               && type_list_equal (TYPE_DOMAIN (a->type),
2992                                   TYPE_DOMAIN (b->type)))))
2993     return 1;
2994   return 0;
2995 }
2996
2997 /* Return the cached hash value.  */
2998
2999 static hashval_t
3000 type_hash_hash (const void *item)
3001 {
3002   return ((const struct type_hash *) item)->hash;
3003 }
3004
3005 /* Look in the type hash table for a type isomorphic to TYPE.
3006    If one is found, return it.  Otherwise return 0.  */
3007
3008 tree
3009 type_hash_lookup (unsigned int hashcode, tree type)
3010 {
3011   struct type_hash *h, in;
3012
3013   /* The TYPE_ALIGN field of a type is set by layout_type(), so we
3014      must call that routine before comparing TYPE_ALIGNs.  */
3015   layout_type (type);
3016
3017   in.hash = hashcode;
3018   in.type = type;
3019
3020   h = htab_find_with_hash (type_hash_table, &in, hashcode);
3021   if (h)
3022     return h->type;
3023   return NULL_TREE;
3024 }
3025
3026 /* Add an entry to the type-hash-table
3027    for a type TYPE whose hash code is HASHCODE.  */
3028
3029 void
3030 type_hash_add (unsigned int hashcode, tree type)
3031 {
3032   struct type_hash *h;
3033   void **loc;
3034
3035   h = ggc_alloc (sizeof (struct type_hash));
3036   h->hash = hashcode;
3037   h->type = type;
3038   loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
3039   *(struct type_hash **) loc = h;
3040 }
3041
3042 /* Given TYPE, and HASHCODE its hash code, return the canonical
3043    object for an identical type if one already exists.
3044    Otherwise, return TYPE, and record it as the canonical object
3045    if it is a permanent object.
3046
3047    To use this function, first create a type of the sort you want.
3048    Then compute its hash code from the fields of the type that
3049    make it different from other similar types.
3050    Then call this function and use the value.
3051    This function frees the type you pass in if it is a duplicate.  */
3052
3053 /* Set to 1 to debug without canonicalization.  Never set by program.  */
3054 int debug_no_type_hash = 0;
3055
3056 tree
3057 type_hash_canon (unsigned int hashcode, tree type)
3058 {
3059   tree t1;
3060
3061   if (debug_no_type_hash)
3062     return type;
3063
3064   /* See if the type is in the hash table already.  If so, return it.
3065      Otherwise, add the type.  */
3066   t1 = type_hash_lookup (hashcode, type);
3067   if (t1 != 0)
3068     {
3069 #ifdef GATHER_STATISTICS
3070       tree_node_counts[(int) t_kind]--;
3071       tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type);
3072 #endif
3073       return t1;
3074     }
3075   else
3076     {
3077       type_hash_add (hashcode, type);
3078       return type;
3079     }
3080 }
3081
3082 /* See if the data pointed to by the type hash table is marked.  We consider
3083    it marked if the type is marked or if a debug type number or symbol
3084    table entry has been made for the type.  This reduces the amount of
3085    debugging output and eliminates that dependency of the debug output on
3086    the number of garbage collections.  */
3087
3088 static int
3089 type_hash_marked_p (const void *p)
3090 {
3091   tree type = ((struct type_hash *) p)->type;
3092
3093   return ggc_marked_p (type) || TYPE_SYMTAB_POINTER (type);
3094 }
3095
3096 static void
3097 print_type_hash_statistics (void)
3098 {
3099   fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
3100            (long) htab_size (type_hash_table),
3101            (long) htab_elements (type_hash_table),
3102            htab_collisions (type_hash_table));
3103 }
3104
3105 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
3106    with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
3107    by adding the hash codes of the individual attributes.  */
3108
3109 unsigned int
3110 attribute_hash_list (tree list)
3111 {
3112   unsigned int hashcode;
3113   tree tail;
3114
3115   for (hashcode = 0, tail = list; tail; tail = TREE_CHAIN (tail))
3116     /* ??? Do we want to add in TREE_VALUE too? */
3117     hashcode += TYPE_HASH (TREE_PURPOSE (tail));
3118   return hashcode;
3119 }
3120
3121 /* Given two lists of attributes, return true if list l2 is
3122    equivalent to l1.  */
3123
3124 int
3125 attribute_list_equal (tree l1, tree l2)
3126 {
3127   return attribute_list_contained (l1, l2)
3128          && attribute_list_contained (l2, l1);
3129 }
3130
3131 /* Given two lists of attributes, return true if list L2 is
3132    completely contained within L1.  */
3133 /* ??? This would be faster if attribute names were stored in a canonicalized
3134    form.  Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
3135    must be used to show these elements are equivalent (which they are).  */
3136 /* ??? It's not clear that attributes with arguments will always be handled
3137    correctly.  */
3138
3139 int
3140 attribute_list_contained (tree l1, tree l2)
3141 {
3142   tree t1, t2;
3143
3144   /* First check the obvious, maybe the lists are identical.  */
3145   if (l1 == l2)
3146     return 1;
3147
3148   /* Maybe the lists are similar.  */
3149   for (t1 = l1, t2 = l2;
3150        t1 != 0 && t2 != 0
3151         && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
3152         && TREE_VALUE (t1) == TREE_VALUE (t2);
3153        t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2));
3154
3155   /* Maybe the lists are equal.  */
3156   if (t1 == 0 && t2 == 0)
3157     return 1;
3158
3159   for (; t2 != 0; t2 = TREE_CHAIN (t2))
3160     {
3161       tree attr;
3162       for (attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)), l1);
3163            attr != NULL_TREE;
3164            attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
3165                                     TREE_CHAIN (attr)))
3166         {
3167           if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) == 1)
3168             break;
3169         }
3170
3171       if (attr == 0)
3172         return 0;
3173
3174       if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) != 1)
3175         return 0;
3176     }
3177
3178   return 1;
3179 }
3180
3181 /* Given two lists of types
3182    (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
3183    return 1 if the lists contain the same types in the same order.
3184    Also, the TREE_PURPOSEs must match.  */
3185
3186 int
3187 type_list_equal (tree l1, tree l2)
3188 {
3189   tree t1, t2;
3190
3191   for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
3192     if (TREE_VALUE (t1) != TREE_VALUE (t2)
3193         || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
3194             && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
3195                   && (TREE_TYPE (TREE_PURPOSE (t1))
3196                       == TREE_TYPE (TREE_PURPOSE (t2))))))
3197       return 0;
3198
3199   return t1 == t2;
3200 }
3201
3202 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
3203    given by TYPE.  If the argument list accepts variable arguments,
3204    then this function counts only the ordinary arguments.  */
3205
3206 int
3207 type_num_arguments (tree type)
3208 {
3209   int i = 0;
3210   tree t;
3211
3212   for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
3213     /* If the function does not take a variable number of arguments,
3214        the last element in the list will have type `void'.  */
3215     if (VOID_TYPE_P (TREE_VALUE (t)))
3216       break;
3217     else
3218       ++i;
3219
3220   return i;
3221 }
3222
3223 /* Nonzero if integer constants T1 and T2
3224    represent the same constant value.  */
3225
3226 int
3227 tree_int_cst_equal (tree t1, tree t2)
3228 {
3229   if (t1 == t2)
3230     return 1;
3231
3232   if (t1 == 0 || t2 == 0)
3233     return 0;
3234
3235   if (TREE_CODE (t1) == INTEGER_CST
3236       && TREE_CODE (t2) == INTEGER_CST
3237       && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
3238       && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
3239     return 1;
3240
3241   return 0;
3242 }
3243
3244 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
3245    The precise way of comparison depends on their data type.  */
3246
3247 int
3248 tree_int_cst_lt (tree t1, tree t2)
3249 {
3250   if (t1 == t2)
3251     return 0;
3252
3253   if (TREE_UNSIGNED (TREE_TYPE (t1)) != TREE_UNSIGNED (TREE_TYPE (t2)))
3254     {
3255       int t1_sgn = tree_int_cst_sgn (t1);
3256       int t2_sgn = tree_int_cst_sgn (t2);
3257
3258       if (t1_sgn < t2_sgn)
3259         return 1;
3260       else if (t1_sgn > t2_sgn)
3261         return 0;
3262       /* Otherwise, both are non-negative, so we compare them as
3263          unsigned just in case one of them would overflow a signed
3264          type.  */
3265     }
3266   else if (! TREE_UNSIGNED (TREE_TYPE (t1)))
3267     return INT_CST_LT (t1, t2);
3268
3269   return INT_CST_LT_UNSIGNED (t1, t2);
3270 }
3271
3272 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2.  */
3273
3274 int
3275 tree_int_cst_compare (tree t1, tree t2)
3276 {
3277   if (tree_int_cst_lt (t1, t2))
3278     return -1;
3279   else if (tree_int_cst_lt (t2, t1))
3280     return 1;
3281   else
3282     return 0;
3283 }
3284
3285 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
3286    the host.  If POS is zero, the value can be represented in a single
3287    HOST_WIDE_INT.  If POS is nonzero, the value must be positive and can
3288    be represented in a single unsigned HOST_WIDE_INT.  */
3289
3290 int
3291 host_integerp (tree t, int pos)
3292 {
3293   return (TREE_CODE (t) == INTEGER_CST
3294           && ! TREE_OVERFLOW (t)
3295           && ((TREE_INT_CST_HIGH (t) == 0
3296                && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
3297               || (! pos && TREE_INT_CST_HIGH (t) == -1
3298                   && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0
3299                   && ! TREE_UNSIGNED (TREE_TYPE (t)))
3300               || (pos && TREE_INT_CST_HIGH (t) == 0)));
3301 }
3302
3303 /* Return the HOST_WIDE_INT least significant bits of T if it is an
3304    INTEGER_CST and there is no overflow.  POS is nonzero if the result must
3305    be positive.  Abort if we cannot satisfy the above conditions.  */
3306
3307 HOST_WIDE_INT
3308 tree_low_cst (tree t, int pos)
3309 {
3310   if (host_integerp (t, pos))
3311     return TREE_INT_CST_LOW (t);
3312   else
3313     abort ();
3314 }
3315
3316 /* Return the most significant bit of the integer constant T.  */
3317
3318 int
3319 tree_int_cst_msb (tree t)
3320 {
3321   int prec;
3322   HOST_WIDE_INT h;
3323   unsigned HOST_WIDE_INT l;
3324
3325   /* Note that using TYPE_PRECISION here is wrong.  We care about the
3326      actual bits, not the (arbitrary) range of the type.  */
3327   prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t))) - 1;
3328   rshift_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t), prec,
3329                  2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0);
3330   return (l & 1) == 1;
3331 }
3332
3333 /* Return an indication of the sign of the integer constant T.
3334    The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
3335    Note that -1 will never be returned it T's type is unsigned.  */
3336
3337 int
3338 tree_int_cst_sgn (tree t)
3339 {
3340   if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
3341     return 0;
3342   else if (TREE_UNSIGNED (TREE_TYPE (t)))
3343     return 1;
3344   else if (TREE_INT_CST_HIGH (t) < 0)
3345     return -1;
3346   else
3347     return 1;
3348 }
3349
3350 /* Compare two constructor-element-type constants.  Return 1 if the lists
3351    are known to be equal; otherwise return 0.  */
3352
3353 int
3354 simple_cst_list_equal (tree l1, tree l2)
3355 {
3356   while (l1 != NULL_TREE && l2 != NULL_TREE)
3357     {
3358       if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
3359         return 0;
3360
3361       l1 = TREE_CHAIN (l1);
3362       l2 = TREE_CHAIN (l2);
3363     }
3364
3365   return l1 == l2;
3366 }
3367
3368 /* Return truthvalue of whether T1 is the same tree structure as T2.
3369    Return 1 if they are the same.
3370    Return 0 if they are understandably different.
3371    Return -1 if either contains tree structure not understood by
3372    this function.  */
3373
3374 int
3375 simple_cst_equal (tree t1, tree t2)
3376 {
3377   enum tree_code code1, code2;
3378   int cmp;
3379   int i;
3380
3381   if (t1 == t2)
3382     return 1;
3383   if (t1 == 0 || t2 == 0)
3384     return 0;
3385
3386   code1 = TREE_CODE (t1);
3387   code2 = TREE_CODE (t2);
3388
3389   if (code1 == NOP_EXPR || code1 == CONVERT_EXPR || code1 == NON_LVALUE_EXPR)
3390     {
3391       if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
3392           || code2 == NON_LVALUE_EXPR)
3393         return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3394       else
3395         return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
3396     }
3397
3398   else if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
3399            || code2 == NON_LVALUE_EXPR)
3400     return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
3401
3402   if (code1 != code2)
3403     return 0;
3404
3405   switch (code1)
3406     {
3407     case INTEGER_CST:
3408       return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
3409               && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
3410
3411     case REAL_CST:
3412       return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
3413
3414     case STRING_CST:
3415       return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3416               && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3417                          TREE_STRING_LENGTH (t1)));
3418
3419     case CONSTRUCTOR:
3420       return simple_cst_list_equal (CONSTRUCTOR_ELTS (t1),
3421                                     CONSTRUCTOR_ELTS (t2));
3422
3423     case SAVE_EXPR:
3424       return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3425
3426     case CALL_EXPR:
3427       cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3428       if (cmp <= 0)
3429         return cmp;
3430       return
3431         simple_cst_list_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
3432
3433     case TARGET_EXPR:
3434       /* Special case: if either target is an unallocated VAR_DECL,
3435          it means that it's going to be unified with whatever the
3436          TARGET_EXPR is really supposed to initialize, so treat it
3437          as being equivalent to anything.  */
3438       if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
3439            && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
3440            && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
3441           || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
3442               && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
3443               && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
3444         cmp = 1;
3445       else
3446         cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3447
3448       if (cmp <= 0)
3449         return cmp;
3450
3451       return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
3452
3453     case WITH_CLEANUP_EXPR:
3454       cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3455       if (cmp <= 0)
3456         return cmp;
3457
3458       return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
3459
3460     case COMPONENT_REF:
3461       if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
3462         return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3463
3464       return 0;
3465
3466     case VAR_DECL:
3467     case PARM_DECL:
3468     case CONST_DECL:
3469     case FUNCTION_DECL:
3470       return 0;
3471
3472     default:
3473       break;
3474     }
3475
3476   /* This general rule works for most tree codes.  All exceptions should be
3477      handled above.  If this is a language-specific tree code, we can't
3478      trust what might be in the operand, so say we don't know
3479      the situation.  */
3480   if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
3481     return -1;
3482
3483   switch (TREE_CODE_CLASS (code1))
3484     {
3485     case '1':
3486     case '2':
3487     case '<':
3488     case 'e':
3489     case 'r':
3490     case 's':
3491       cmp = 1;
3492       for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
3493         {
3494           cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
3495           if (cmp <= 0)
3496             return cmp;
3497         }
3498
3499       return cmp;
3500
3501     default:
3502       return -1;
3503     }
3504 }
3505
3506 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
3507    Return -1, 0, or 1 if the value of T is less than, equal to, or greater
3508    than U, respectively.  */
3509
3510 int
3511 compare_tree_int (tree t, unsigned HOST_WIDE_INT u)
3512 {
3513   if (tree_int_cst_sgn (t) < 0)
3514     return -1;
3515   else if (TREE_INT_CST_HIGH (t) != 0)
3516     return 1;
3517   else if (TREE_INT_CST_LOW (t) == u)
3518     return 0;
3519   else if (TREE_INT_CST_LOW (t) < u)
3520     return -1;
3521   else
3522     return 1;
3523 }
3524
3525 /* Generate a hash value for an expression.  This can be used iteratively
3526    by passing a previous result as the "val" argument.
3527
3528    This function is intended to produce the same hash for expressions which
3529    would compare equal using operand_equal_p.  */
3530
3531 hashval_t
3532 iterative_hash_expr (tree t, hashval_t val)
3533 {
3534   int i;
3535   enum tree_code code;
3536   char class;
3537
3538   if (t == NULL_TREE)
3539     return iterative_hash_object (t, val);
3540
3541   code = TREE_CODE (t);
3542   class = TREE_CODE_CLASS (code);
3543
3544   if (class == 'd')
3545     {
3546       /* Decls we can just compare by pointer.  */
3547       val = iterative_hash_object (t, val);
3548     }
3549   else if (class == 'c')
3550     {
3551       /* Alas, constants aren't shared, so we can't rely on pointer
3552          identity.  */
3553       if (code == INTEGER_CST)
3554         {
3555           val = iterative_hash_object (TREE_INT_CST_LOW (t), val);
3556           val = iterative_hash_object (TREE_INT_CST_HIGH (t), val);
3557         }
3558       else if (code == REAL_CST)
3559         val = iterative_hash (TREE_REAL_CST_PTR (t),
3560                               sizeof (REAL_VALUE_TYPE), val);
3561       else if (code == STRING_CST)
3562         val = iterative_hash (TREE_STRING_POINTER (t),
3563                               TREE_STRING_LENGTH (t), val);
3564       else if (code == COMPLEX_CST)
3565         {
3566           val = iterative_hash_expr (TREE_REALPART (t), val);
3567           val = iterative_hash_expr (TREE_IMAGPART (t), val);
3568         }
3569       else if (code == VECTOR_CST)
3570         val = iterative_hash_expr (TREE_VECTOR_CST_ELTS (t), val);
3571       else
3572         abort ();
3573     }
3574   else if (IS_EXPR_CODE_CLASS (class))
3575     {
3576       val = iterative_hash_object (code, val);
3577
3578       if (code == NOP_EXPR || code == CONVERT_EXPR
3579           || code == NON_LVALUE_EXPR)
3580         val = iterative_hash_object (TREE_TYPE (t), val);
3581
3582       if (code == PLUS_EXPR || code == MULT_EXPR || code == MIN_EXPR
3583           || code == MAX_EXPR || code == BIT_IOR_EXPR || code == BIT_XOR_EXPR
3584           || code == BIT_AND_EXPR || code == NE_EXPR || code == EQ_EXPR)
3585         {
3586           /* It's a commutative expression.  We want to hash it the same
3587              however it appears.  We do this by first hashing both operands
3588              and then rehashing based on the order of their independent
3589              hashes.  */
3590           hashval_t one = iterative_hash_expr (TREE_OPERAND (t, 0), 0);
3591           hashval_t two = iterative_hash_expr (TREE_OPERAND (t, 1), 0);
3592           hashval_t t;
3593
3594           if (one > two)
3595             t = one, one = two, two = t;
3596
3597           val = iterative_hash_object (one, val);
3598           val = iterative_hash_object (two, val);
3599         }
3600       else
3601         for (i = first_rtl_op (code) - 1; i >= 0; --i)
3602           val = iterative_hash_expr (TREE_OPERAND (t, i), val);
3603     }
3604   else if (code == TREE_LIST)
3605     {
3606       /* A list of expressions, for a CALL_EXPR or as the elements of a
3607          VECTOR_CST.  */
3608       for (; t; t = TREE_CHAIN (t))
3609         val = iterative_hash_expr (TREE_VALUE (t), val);
3610     }
3611   else
3612     abort ();
3613
3614   return val;
3615 }
3616 \f
3617 /* Constructors for pointer, array and function types.
3618    (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
3619    constructed by language-dependent code, not here.)  */
3620
3621 /* Construct, lay out and return the type of pointers to TO_TYPE
3622    with mode MODE. If such a type has already been constructed,
3623    reuse it.  */
3624
3625 tree
3626 build_pointer_type_for_mode (tree to_type, enum machine_mode mode)
3627 {
3628   tree t = TYPE_POINTER_TO (to_type);
3629
3630   /* First, if we already have a type for pointers to TO_TYPE, use it.  */
3631   if (t != 0 && mode == ptr_mode)
3632     return t;
3633
3634   t = make_node (POINTER_TYPE);
3635
3636   TREE_TYPE (t) = to_type;
3637   TYPE_MODE (t) = mode;
3638
3639   /* Record this type as the pointer to TO_TYPE.  */
3640   if (mode == ptr_mode)
3641   TYPE_POINTER_TO (to_type) = t;
3642
3643   /* Lay out the type.  This function has many callers that are concerned
3644      with expression-construction, and this simplifies them all.
3645      Also, it guarantees the TYPE_SIZE is in the same obstack as the type.  */
3646   layout_type (t);
3647
3648   return t;
3649 }
3650
3651 /* By default build pointers in ptr_mode.  */
3652
3653 tree
3654 build_pointer_type (tree to_type)
3655 {
3656   return build_pointer_type_for_mode (to_type, ptr_mode);
3657 }
3658
3659 /* Construct, lay out and return the type of references to TO_TYPE
3660    with mode MODE. If such a type has already been constructed,
3661    reuse it.  */
3662
3663 tree
3664 build_reference_type_for_mode (tree to_type, enum machine_mode mode)
3665 {
3666   tree t = TYPE_REFERENCE_TO (to_type);
3667
3668   /* First, if we already have a type for pointers to TO_TYPE, use it.  */
3669   if (t != 0 && mode == ptr_mode)
3670     return t;
3671
3672   t = make_node (REFERENCE_TYPE);
3673
3674   TREE_TYPE (t) = to_type;
3675   TYPE_MODE (t) = mode;
3676
3677   /* Record this type as the pointer to TO_TYPE.  */
3678   if (mode == ptr_mode)
3679   TYPE_REFERENCE_TO (to_type) = t;
3680
3681   layout_type (t);
3682
3683   return t;
3684 }
3685
3686
3687 /* Build the node for the type of references-to-TO_TYPE by default
3688    in ptr_mode.  */
3689
3690 tree
3691 build_reference_type (tree to_type)
3692 {
3693   return build_reference_type_for_mode (to_type, ptr_mode);
3694 }
3695
3696 /* Build a type that is compatible with t but has no cv quals anywhere
3697    in its type, thus
3698
3699    const char *const *const *  ->  char ***.  */
3700
3701 tree
3702 build_type_no_quals (tree t)
3703 {
3704   switch (TREE_CODE (t))
3705     {
3706     case POINTER_TYPE:
3707       return build_pointer_type (build_type_no_quals (TREE_TYPE (t)));
3708     case REFERENCE_TYPE:
3709       return build_reference_type (build_type_no_quals (TREE_TYPE (t)));
3710     default:
3711       return TYPE_MAIN_VARIANT (t);
3712     }
3713 }
3714
3715 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
3716    MAXVAL should be the maximum value in the domain
3717    (one less than the length of the array).
3718
3719    The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
3720    We don't enforce this limit, that is up to caller (e.g. language front end).
3721    The limit exists because the result is a signed type and we don't handle
3722    sizes that use more than one HOST_WIDE_INT.  */
3723
3724 tree
3725 build_index_type (tree maxval)
3726 {
3727   tree itype = make_node (INTEGER_TYPE);
3728
3729   TREE_TYPE (itype) = sizetype;
3730   TYPE_PRECISION (itype) = TYPE_PRECISION (sizetype);
3731   TYPE_MIN_VALUE (itype) = size_zero_node;
3732   TYPE_MAX_VALUE (itype) = convert (sizetype, maxval);
3733   TYPE_MODE (itype) = TYPE_MODE (sizetype);
3734   TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
3735   TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (sizetype);
3736   TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
3737   TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (sizetype);
3738
3739   if (host_integerp (maxval, 1))
3740     return type_hash_canon (tree_low_cst (maxval, 1), itype);
3741   else
3742     return itype;
3743 }
3744
3745 /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
3746    ENUMERAL_TYPE, BOOLEAN_TYPE, or CHAR_TYPE), with
3747    low bound LOWVAL and high bound HIGHVAL.
3748    if TYPE==NULL_TREE, sizetype is used.  */
3749
3750 tree
3751 build_range_type (tree type, tree lowval, tree highval)
3752 {
3753   tree itype = make_node (INTEGER_TYPE);
3754
3755   TREE_TYPE (itype) = type;
3756   if (type == NULL_TREE)
3757     type = sizetype;
3758
3759   TYPE_MIN_VALUE (itype) = convert (type, lowval);
3760   TYPE_MAX_VALUE (itype) = highval ? convert (type, highval) : NULL;
3761
3762   TYPE_PRECISION (itype) = TYPE_PRECISION (type);
3763   TYPE_MODE (itype) = TYPE_MODE (type);
3764   TYPE_SIZE (itype) = TYPE_SIZE (type);
3765   TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
3766   TYPE_ALIGN (itype) = TYPE_ALIGN (type);
3767   TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
3768
3769   if (host_integerp (lowval, 0) && highval != 0 && host_integerp (highval, 0))
3770     return type_hash_canon (tree_low_cst (highval, 0)
3771                             - tree_low_cst (lowval, 0),
3772                             itype);
3773   else
3774     return itype;
3775 }
3776
3777 /* Just like build_index_type, but takes lowval and highval instead
3778    of just highval (maxval).  */
3779
3780 tree
3781 build_index_2_type (tree lowval, tree highval)
3782 {
3783   return build_range_type (sizetype, lowval, highval);
3784 }
3785
3786 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
3787    and number of elements specified by the range of values of INDEX_TYPE.
3788    If such a type has already been constructed, reuse it.  */
3789
3790 tree
3791 build_array_type (tree elt_type, tree index_type)
3792 {
3793   tree t;
3794   unsigned int hashcode;
3795
3796   if (TREE_CODE (elt_type) == FUNCTION_TYPE)
3797     {
3798       error ("arrays of functions are not meaningful");
3799       elt_type = integer_type_node;
3800     }
3801
3802   /* Make sure TYPE_POINTER_TO (elt_type) is filled in.  */
3803   build_pointer_type (elt_type);
3804
3805   /* Allocate the array after the pointer type,
3806      in case we free it in type_hash_canon.  */
3807   t = make_node (ARRAY_TYPE);
3808   TREE_TYPE (t) = elt_type;
3809   TYPE_DOMAIN (t) = index_type;
3810
3811   if (index_type == 0)
3812     {
3813       return t;
3814     }
3815
3816   hashcode = TYPE_HASH (elt_type) + TYPE_HASH (index_type);
3817   t = type_hash_canon (hashcode, t);
3818
3819   if (!COMPLETE_TYPE_P (t))
3820     layout_type (t);
3821   return t;
3822 }
3823
3824 /* Return the TYPE of the elements comprising
3825    the innermost dimension of ARRAY.  */
3826
3827 tree
3828 get_inner_array_type (tree array)
3829 {
3830   tree type = TREE_TYPE (array);
3831
3832   while (TREE_CODE (type) == ARRAY_TYPE)
3833     type = TREE_TYPE (type);
3834
3835   return type;
3836 }
3837
3838 /* Construct, lay out and return
3839    the type of functions returning type VALUE_TYPE
3840    given arguments of types ARG_TYPES.
3841    ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
3842    are data type nodes for the arguments of the function.
3843    If such a type has already been constructed, reuse it.  */
3844
3845 tree
3846 build_function_type (tree value_type, tree arg_types)
3847 {
3848   tree t;
3849   unsigned int hashcode;
3850
3851   if (TREE_CODE (value_type) == FUNCTION_TYPE)
3852     {
3853       error ("function return type cannot be function");
3854       value_type = integer_type_node;
3855     }
3856
3857   /* Make a node of the sort we want.  */
3858   t = make_node (FUNCTION_TYPE);
3859   TREE_TYPE (t) = value_type;
3860   TYPE_ARG_TYPES (t) = arg_types;
3861
3862   /* If we already have such a type, use the old one and free this one.  */
3863   hashcode = TYPE_HASH (value_type) + type_hash_list (arg_types);
3864   t = type_hash_canon (hashcode, t);
3865
3866   if (!COMPLETE_TYPE_P (t))
3867     layout_type (t);
3868   return t;
3869 }
3870
3871 /* Build a function type.  The RETURN_TYPE is the type returned by the
3872    function.  If additional arguments are provided, they are
3873    additional argument types.  The list of argument types must always
3874    be terminated by NULL_TREE.  */
3875
3876 tree
3877 build_function_type_list (tree return_type, ...)
3878 {
3879   tree t, args, last;
3880   va_list p;
3881
3882   va_start (p, return_type);
3883
3884   t = va_arg (p, tree);
3885   for (args = NULL_TREE; t != NULL_TREE; t = va_arg (p, tree))
3886     args = tree_cons (NULL_TREE, t, args);
3887
3888   last = args;
3889   args = nreverse (args);
3890   TREE_CHAIN (last) = void_list_node;
3891   args = build_function_type (return_type, args);
3892
3893   va_end (p);
3894   return args;
3895 }
3896
3897 /* Build a METHOD_TYPE for a member of BASETYPE.  The RETTYPE (a TYPE)
3898    and ARGTYPES (a TREE_LIST) are the return type and arguments types
3899    for the method.  An implicit additional parameter (of type
3900    pointer-to-BASETYPE) is added to the ARGTYPES.  */
3901
3902 tree
3903 build_method_type_directly (tree basetype,
3904                             tree rettype,
3905                             tree argtypes)
3906 {
3907   tree t;
3908   tree ptype;
3909   int hashcode;
3910
3911   /* Make a node of the sort we want.  */
3912   t = make_node (METHOD_TYPE);
3913
3914   TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
3915   TREE_TYPE (t) = rettype;
3916   ptype = build_pointer_type (basetype);
3917
3918   /* The actual arglist for this function includes a "hidden" argument
3919      which is "this".  Put it into the list of argument types.  */
3920   argtypes = tree_cons (NULL_TREE, ptype, argtypes);
3921   TYPE_ARG_TYPES (t) = argtypes;
3922
3923   /* If we already have such a type, use the old one and free this one.
3924      Note that it also frees up the above cons cell if found.  */
3925   hashcode = TYPE_HASH (basetype) + TYPE_HASH (rettype) +
3926     type_hash_list (argtypes);
3927
3928   t = type_hash_canon (hashcode, t);
3929
3930   if (!COMPLETE_TYPE_P (t))
3931     layout_type (t);
3932
3933   return t;
3934 }
3935
3936 /* Construct, lay out and return the type of methods belonging to class
3937    BASETYPE and whose arguments and values are described by TYPE.
3938    If that type exists already, reuse it.
3939    TYPE must be a FUNCTION_TYPE node.  */
3940
3941 tree
3942 build_method_type (tree basetype, tree type)
3943 {
3944   if (TREE_CODE (type) != FUNCTION_TYPE)
3945     abort ();
3946
3947   return build_method_type_directly (basetype, 
3948                                      TREE_TYPE (type),
3949                                      TYPE_ARG_TYPES (type));
3950 }
3951
3952 /* Construct, lay out and return the type of offsets to a value
3953    of type TYPE, within an object of type BASETYPE.
3954    If a suitable offset type exists already, reuse it.  */
3955
3956 tree
3957 build_offset_type (tree basetype, tree type)
3958 {
3959   tree t;
3960   unsigned int hashcode;
3961
3962   /* Make a node of the sort we want.  */
3963   t = make_node (OFFSET_TYPE);
3964
3965   TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
3966   TREE_TYPE (t) = type;
3967
3968   /* If we already have such a type, use the old one and free this one.  */
3969   hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
3970   t = type_hash_canon (hashcode, t);
3971
3972   if (!COMPLETE_TYPE_P (t))
3973     layout_type (t);
3974
3975   return t;
3976 }
3977
3978 /* Create a complex type whose components are COMPONENT_TYPE.  */
3979
3980 tree
3981 build_complex_type (tree component_type)
3982 {
3983   tree t;
3984   unsigned int hashcode;
3985
3986   /* Make a node of the sort we want.  */
3987   t = make_node (COMPLEX_TYPE);
3988
3989   TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
3990   set_type_quals (t, TYPE_QUALS (component_type));
3991
3992   /* If we already have such a type, use the old one and free this one.  */
3993   hashcode = TYPE_HASH (component_type);
3994   t = type_hash_canon (hashcode, t);
3995
3996   if (!COMPLETE_TYPE_P (t))
3997     layout_type (t);
3998
3999   /* If we are writing Dwarf2 output we need to create a name,
4000      since complex is a fundamental type.  */
4001   if ((write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
4002       && ! TYPE_NAME (t))
4003     {
4004       const char *name;
4005       if (component_type == char_type_node)
4006         name = "complex char";
4007       else if (component_type == signed_char_type_node)
4008         name = "complex signed char";
4009       else if (component_type == unsigned_char_type_node)
4010         name = "complex unsigned char";
4011       else if (component_type == short_integer_type_node)
4012         name = "complex short int";
4013       else if (component_type == short_unsigned_type_node)
4014         name = "complex short unsigned int";
4015       else if (component_type == integer_type_node)
4016         name = "complex int";
4017       else if (component_type == unsigned_type_node)
4018         name = "complex unsigned int";
4019       else if (component_type == long_integer_type_node)
4020         name = "complex long int";
4021       else if (component_type == long_unsigned_type_node)
4022         name = "complex long unsigned int";
4023       else if (component_type == long_long_integer_type_node)
4024         name = "complex long long int";
4025       else if (component_type == long_long_unsigned_type_node)
4026         name = "complex long long unsigned int";
4027       else
4028         name = 0;
4029
4030       if (name != 0)
4031         TYPE_NAME (t) = get_identifier (name);
4032     }
4033
4034   return t;
4035 }
4036 \f
4037 /* Return OP, stripped of any conversions to wider types as much as is safe.
4038    Converting the value back to OP's type makes a value equivalent to OP.
4039
4040    If FOR_TYPE is nonzero, we return a value which, if converted to
4041    type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
4042
4043    If FOR_TYPE is nonzero, unaligned bit-field references may be changed to the
4044    narrowest type that can hold the value, even if they don't exactly fit.
4045    Otherwise, bit-field references are changed to a narrower type
4046    only if they can be fetched directly from memory in that type.
4047
4048    OP must have integer, real or enumeral type.  Pointers are not allowed!
4049
4050    There are some cases where the obvious value we could return
4051    would regenerate to OP if converted to OP's type,
4052    but would not extend like OP to wider types.
4053    If FOR_TYPE indicates such extension is contemplated, we eschew such values.
4054    For example, if OP is (unsigned short)(signed char)-1,
4055    we avoid returning (signed char)-1 if FOR_TYPE is int,
4056    even though extending that to an unsigned short would regenerate OP,
4057    since the result of extending (signed char)-1 to (int)
4058    is different from (int) OP.  */
4059
4060 tree
4061 get_unwidened (tree op, tree for_type)
4062 {
4063   /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension.  */
4064   tree type = TREE_TYPE (op);
4065   unsigned final_prec
4066     = TYPE_PRECISION (for_type != 0 ? for_type : type);
4067   int uns
4068     = (for_type != 0 && for_type != type
4069        && final_prec > TYPE_PRECISION (type)
4070        && TREE_UNSIGNED (type));
4071   tree win = op;
4072
4073   while (TREE_CODE (op) == NOP_EXPR)
4074     {
4075       int bitschange
4076         = TYPE_PRECISION (TREE_TYPE (op))
4077           - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
4078
4079       /* Truncations are many-one so cannot be removed.
4080          Unless we are later going to truncate down even farther.  */
4081       if (bitschange < 0
4082           && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
4083         break;
4084
4085       /* See what's inside this conversion.  If we decide to strip it,
4086          we will set WIN.  */
4087       op = TREE_OPERAND (op, 0);
4088
4089       /* If we have not stripped any zero-extensions (uns is 0),
4090          we can strip any kind of extension.
4091          If we have previously stripped a zero-extension,
4092          only zero-extensions can safely be stripped.
4093          Any extension can be stripped if the bits it would produce
4094          are all going to be discarded later by truncating to FOR_TYPE.  */
4095
4096       if (bitschange > 0)
4097         {
4098           if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
4099             win = op;
4100           /* TREE_UNSIGNED says whether this is a zero-extension.
4101              Let's avoid computing it if it does not affect WIN
4102              and if UNS will not be needed again.  */
4103           if ((uns || TREE_CODE (op) == NOP_EXPR)
4104               && TREE_UNSIGNED (TREE_TYPE (op)))
4105             {
4106               uns = 1;
4107               win = op;
4108             }
4109         }
4110     }
4111
4112   if (TREE_CODE (op) == COMPONENT_REF
4113       /* Since type_for_size always gives an integer type.  */
4114       && TREE_CODE (type) != REAL_TYPE
4115       /* Don't crash if field not laid out yet.  */
4116       && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
4117       && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
4118     {
4119       unsigned int innerprec
4120         = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
4121       int unsignedp = (TREE_UNSIGNED (TREE_OPERAND (op, 1))
4122                        || TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
4123       type = (*lang_hooks.types.type_for_size) (innerprec, unsignedp);
4124
4125       /* We can get this structure field in the narrowest type it fits in.
4126          If FOR_TYPE is 0, do this only for a field that matches the
4127          narrower type exactly and is aligned for it
4128          The resulting extension to its nominal type (a fullword type)
4129          must fit the same conditions as for other extensions.  */
4130
4131       if (type != 0
4132           && INT_CST_LT_UNSIGNED (TYPE_SIZE (type), TYPE_SIZE (TREE_TYPE (op)))
4133           && (for_type || ! DECL_BIT_FIELD (TREE_OPERAND (op, 1)))
4134           && (! uns || final_prec <= innerprec || unsignedp))
4135         {
4136           win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
4137                        TREE_OPERAND (op, 1));
4138           TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
4139           TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
4140         }
4141     }
4142
4143   return win;
4144 }
4145 \f
4146 /* Return OP or a simpler expression for a narrower value
4147    which can be sign-extended or zero-extended to give back OP.
4148    Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
4149    or 0 if the value should be sign-extended.  */
4150
4151 tree
4152 get_narrower (tree op, int *unsignedp_ptr)
4153 {
4154   int uns = 0;
4155   int first = 1;
4156   tree win = op;
4157   bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
4158
4159   while (TREE_CODE (op) == NOP_EXPR)
4160     {
4161       int bitschange
4162         = (TYPE_PRECISION (TREE_TYPE (op))
4163            - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
4164
4165       /* Truncations are many-one so cannot be removed.  */
4166       if (bitschange < 0)
4167         break;
4168
4169       /* See what's inside this conversion.  If we decide to strip it,
4170          we will set WIN.  */
4171
4172       if (bitschange > 0)
4173         {
4174           op = TREE_OPERAND (op, 0);
4175           /* An extension: the outermost one can be stripped,
4176              but remember whether it is zero or sign extension.  */
4177           if (first)
4178             uns = TREE_UNSIGNED (TREE_TYPE (op));
4179           /* Otherwise, if a sign extension has been stripped,
4180              only sign extensions can now be stripped;
4181              if a zero extension has been stripped, only zero-extensions.  */
4182           else if (uns != TREE_UNSIGNED (TREE_TYPE (op)))
4183             break;
4184           first = 0;
4185         }
4186       else /* bitschange == 0 */
4187         {
4188           /* A change in nominal type can always be stripped, but we must
4189              preserve the unsignedness.  */
4190           if (first)
4191             uns = TREE_UNSIGNED (TREE_TYPE (op));
4192           first = 0;
4193           op = TREE_OPERAND (op, 0);
4194           /* Keep trying to narrow, but don't assign op to win if it
4195              would turn an integral type into something else.  */
4196           if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
4197             continue;
4198         }
4199
4200       win = op;
4201     }
4202
4203   if (TREE_CODE (op) == COMPONENT_REF
4204       /* Since type_for_size always gives an integer type.  */
4205       && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
4206       /* Ensure field is laid out already.  */
4207       && DECL_SIZE (TREE_OPERAND (op, 1)) != 0)
4208     {
4209       unsigned HOST_WIDE_INT innerprec
4210         = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
4211       int unsignedp = (TREE_UNSIGNED (TREE_OPERAND (op, 1))
4212                        || TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
4213       tree type = (*lang_hooks.types.type_for_size) (innerprec, unsignedp);
4214
4215       /* We can get this structure field in a narrower type that fits it,
4216          but the resulting extension to its nominal type (a fullword type)
4217          must satisfy the same conditions as for other extensions.
4218
4219          Do this only for fields that are aligned (not bit-fields),
4220          because when bit-field insns will be used there is no
4221          advantage in doing this.  */
4222
4223       if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
4224           && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
4225           && (first || uns == TREE_UNSIGNED (TREE_OPERAND (op, 1)))
4226           && type != 0)
4227         {
4228           if (first)
4229             uns = TREE_UNSIGNED (TREE_OPERAND (op, 1));
4230           win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
4231                        TREE_OPERAND (op, 1));
4232           TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
4233           TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
4234         }
4235     }
4236   *unsignedp_ptr = uns;
4237   return win;
4238 }
4239 \f
4240 /* Nonzero if integer constant C has a value that is permissible
4241    for type TYPE (an INTEGER_TYPE).  */
4242
4243 int
4244 int_fits_type_p (tree c, tree type)
4245 {
4246   tree type_low_bound = TYPE_MIN_VALUE (type);
4247   tree type_high_bound = TYPE_MAX_VALUE (type);
4248   int ok_for_low_bound, ok_for_high_bound;
4249
4250   /* Perform some generic filtering first, which may allow making a decision
4251      even if the bounds are not constant.  First, negative integers never fit
4252      in unsigned types, */
4253   if ((TREE_UNSIGNED (type) && tree_int_cst_sgn (c) < 0)
4254       /* Also, unsigned integers with top bit set never fit signed types.  */
4255       || (! TREE_UNSIGNED (type)
4256           && TREE_UNSIGNED (TREE_TYPE (c)) && tree_int_cst_msb (c)))
4257     return 0;
4258
4259   /* If at least one bound of the type is a constant integer, we can check
4260      ourselves and maybe make a decision. If no such decision is possible, but
4261      this type is a subtype, try checking against that.  Otherwise, use
4262      force_fit_type, which checks against the precision.
4263
4264      Compute the status for each possibly constant bound, and return if we see
4265      one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
4266      for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
4267      for "constant known to fit".  */
4268
4269   ok_for_low_bound = -1;
4270   ok_for_high_bound = -1;
4271
4272   /* Check if C >= type_low_bound.  */
4273   if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
4274     {
4275       ok_for_low_bound = ! tree_int_cst_lt (c, type_low_bound);
4276       if (! ok_for_low_bound)
4277         return 0;
4278     }
4279
4280   /* Check if c <= type_high_bound.  */
4281   if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
4282     {
4283       ok_for_high_bound = ! tree_int_cst_lt (type_high_bound, c);
4284       if (! ok_for_high_bound)
4285         return 0;
4286     }
4287
4288   /* If the constant fits both bounds, the result is known.  */
4289   if (ok_for_low_bound == 1 && ok_for_high_bound == 1)
4290     return 1;
4291
4292   /* If we haven't been able to decide at this point, there nothing more we
4293      can check ourselves here. Look at the base type if we have one.  */
4294   else if (TREE_CODE (type) == INTEGER_TYPE && TREE_TYPE (type) != 0)
4295     return int_fits_type_p (c, TREE_TYPE (type));
4296
4297   /* Or to force_fit_type, if nothing else.  */
4298   else
4299     {
4300       c = copy_node (c);
4301       TREE_TYPE (c) = type;
4302       return !force_fit_type (c, 0);
4303     }
4304 }
4305
4306 /* Returns true if T is, contains, or refers to a type with variable
4307    size.  This concept is more general than that of C99 'variably
4308    modified types': in C99, a struct type is never variably modified
4309    because a VLA may not appear as a structure member.  However, in
4310    GNU C code like:
4311
4312      struct S { int i[f()]; };
4313
4314    is valid, and other languages may define similar constructs.  */
4315
4316 bool
4317 variably_modified_type_p (tree type)
4318 {
4319   tree t;
4320
4321   if (type == error_mark_node)
4322     return false;
4323
4324   /* If TYPE itself has variable size, it is variably modified.
4325
4326      We do not yet have a representation of the C99 '[*]' syntax.
4327      When a representation is chosen, this function should be modified
4328      to test for that case as well.  */
4329   t = TYPE_SIZE (type);
4330   if (t && t != error_mark_node && TREE_CODE (t) != INTEGER_CST)
4331     return true;
4332
4333   switch (TREE_CODE (type))
4334     {
4335     case POINTER_TYPE:
4336     case REFERENCE_TYPE:
4337     case ARRAY_TYPE:
4338       /* If TYPE is a pointer or reference, it is variably modified if
4339          the type pointed to is variably modified.  Similarly for arrays;
4340          note that VLAs are handled by the TYPE_SIZE check above.  */
4341       return variably_modified_type_p (TREE_TYPE (type));
4342
4343     case FUNCTION_TYPE:
4344     case METHOD_TYPE:
4345       /* If TYPE is a function type, it is variably modified if any of the
4346          parameters or the return type are variably modified.  */
4347       {
4348         tree parm;
4349
4350         if (variably_modified_type_p (TREE_TYPE (type)))
4351           return true;
4352         for (parm = TYPE_ARG_TYPES (type);
4353              parm && parm != void_list_node;
4354              parm = TREE_CHAIN (parm))
4355           if (variably_modified_type_p (TREE_VALUE (parm)))
4356             return true;
4357       }
4358       break;
4359
4360     case INTEGER_TYPE:
4361       /* Scalar types are variably modified if their end points
4362          aren't constant.  */
4363       t = TYPE_MIN_VALUE (type);
4364       if (t && t != error_mark_node && TREE_CODE (t) != INTEGER_CST)
4365         return true;
4366       t = TYPE_MAX_VALUE (type);
4367       if (t && t != error_mark_node && TREE_CODE (t) != INTEGER_CST)
4368         return true;
4369       return false;
4370
4371     default:
4372       break;
4373     }
4374
4375   /* The current language may have other cases to check, but in general,
4376      all other types are not variably modified.  */
4377   return (*lang_hooks.tree_inlining.var_mod_type_p) (type);
4378 }
4379
4380 /* Given a DECL or TYPE, return the scope in which it was declared, or
4381    NULL_TREE if there is no containing scope.  */
4382
4383 tree
4384 get_containing_scope (tree t)
4385 {
4386   return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
4387 }
4388
4389 /* Return the innermost context enclosing DECL that is
4390    a FUNCTION_DECL, or zero if none.  */
4391
4392 tree
4393 decl_function_context (tree decl)
4394 {
4395   tree context;
4396
4397   if (TREE_CODE (decl) == ERROR_MARK)
4398     return 0;
4399
4400   if (TREE_CODE (decl) == SAVE_EXPR)
4401     context = SAVE_EXPR_CONTEXT (decl);
4402
4403   /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
4404      where we look up the function at runtime.  Such functions always take
4405      a first argument of type 'pointer to real context'.
4406
4407      C++ should really be fixed to use DECL_CONTEXT for the real context,
4408      and use something else for the "virtual context".  */
4409   else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
4410     context
4411       = TYPE_MAIN_VARIANT
4412         (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4413   else
4414     context = DECL_CONTEXT (decl);
4415
4416   while (context && TREE_CODE (context) != FUNCTION_DECL)
4417     {
4418       if (TREE_CODE (context) == BLOCK)
4419         context = BLOCK_SUPERCONTEXT (context);
4420       else
4421         context = get_containing_scope (context);
4422     }
4423
4424   return context;
4425 }
4426
4427 /* Return the innermost context enclosing DECL that is
4428    a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
4429    TYPE_DECLs and FUNCTION_DECLs are transparent to this function.  */
4430
4431 tree
4432 decl_type_context (tree decl)
4433 {
4434   tree context = DECL_CONTEXT (decl);
4435
4436   while (context)
4437     switch (TREE_CODE (context))
4438       {
4439       case NAMESPACE_DECL:
4440       case TRANSLATION_UNIT_DECL:
4441         return NULL_TREE;
4442
4443       case RECORD_TYPE:
4444       case UNION_TYPE:
4445       case QUAL_UNION_TYPE:
4446         return context;
4447         
4448       case TYPE_DECL:
4449       case FUNCTION_DECL:
4450         context = DECL_CONTEXT (context);
4451         break;
4452         
4453       case BLOCK:
4454         context = BLOCK_SUPERCONTEXT (context);
4455         break;
4456         
4457       default:
4458         abort ();
4459       }
4460
4461   return NULL_TREE;
4462 }
4463
4464 /* CALL is a CALL_EXPR.  Return the declaration for the function
4465    called, or NULL_TREE if the called function cannot be
4466    determined.  */
4467
4468 tree
4469 get_callee_fndecl (tree call)
4470 {
4471   tree addr;
4472
4473   /* It's invalid to call this function with anything but a
4474      CALL_EXPR.  */
4475   if (TREE_CODE (call) != CALL_EXPR)
4476     abort ();
4477
4478   /* The first operand to the CALL is the address of the function
4479      called.  */
4480   addr = TREE_OPERAND (call, 0);
4481
4482   STRIP_NOPS (addr);
4483
4484   /* If this is a readonly function pointer, extract its initial value.  */
4485   if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
4486       && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
4487       && DECL_INITIAL (addr))
4488     addr = DECL_INITIAL (addr);
4489
4490   /* If the address is just `&f' for some function `f', then we know
4491      that `f' is being called.  */
4492   if (TREE_CODE (addr) == ADDR_EXPR
4493       && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
4494     return TREE_OPERAND (addr, 0);
4495   
4496   /* We couldn't figure out what was being called.  Maybe the front
4497      end has some idea.  */
4498   return (*lang_hooks.lang_get_callee_fndecl) (call);
4499 }
4500
4501 /* Print debugging information about tree nodes generated during the compile,
4502    and any language-specific information.  */
4503
4504 void
4505 dump_tree_statistics (void)
4506 {
4507 #ifdef GATHER_STATISTICS
4508   int i;
4509   int total_nodes, total_bytes;
4510 #endif
4511
4512   fprintf (stderr, "\n??? tree nodes created\n\n");
4513 #ifdef GATHER_STATISTICS
4514   fprintf (stderr, "Kind                   Nodes      Bytes\n");
4515   fprintf (stderr, "---------------------------------------\n");
4516   total_nodes = total_bytes = 0;
4517   for (i = 0; i < (int) all_kinds; i++)
4518     {
4519       fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
4520                tree_node_counts[i], tree_node_sizes[i]);
4521       total_nodes += tree_node_counts[i];
4522       total_bytes += tree_node_sizes[i];
4523     }
4524   fprintf (stderr, "---------------------------------------\n");
4525   fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
4526   fprintf (stderr, "---------------------------------------\n");
4527 #else
4528   fprintf (stderr, "(No per-node statistics)\n");
4529 #endif
4530   print_type_hash_statistics ();
4531   (*lang_hooks.print_statistics) ();
4532 }
4533 \f
4534 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
4535
4536 /* Generate a crc32 of a string.  */
4537
4538 unsigned
4539 crc32_string (unsigned chksum, const char *string)
4540 {
4541   do
4542     {
4543       unsigned value = *string << 24;
4544       unsigned ix;
4545       
4546       for (ix = 8; ix--; value <<= 1)
4547         {
4548           unsigned feedback;
4549           
4550           feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
4551           chksum <<= 1;
4552           chksum ^= feedback;
4553         }
4554     }
4555   while (*string++);
4556   return chksum;
4557 }
4558
4559 /* P is a string that will be used in a symbol.  Mask out any characters
4560    that are not valid in that context.  */
4561
4562 void
4563 clean_symbol_name (char *p)
4564 {
4565   for (; *p; p++)
4566     if (! (ISALNUM (*p)
4567 #ifndef NO_DOLLAR_IN_LABEL      /* this for `$'; unlikely, but... -- kr */
4568             || *p == '$'
4569 #endif
4570 #ifndef NO_DOT_IN_LABEL         /* this for `.'; unlikely, but...  */
4571             || *p == '.'
4572 #endif
4573            ))
4574       *p = '_';
4575 }
4576
4577 /* Generate a name for a function unique to this translation unit.
4578    TYPE is some string to identify the purpose of this function to the
4579    linker or collect2.  */
4580
4581 tree
4582 get_file_function_name_long (const char *type)
4583 {
4584   char *buf;
4585   const char *p;
4586   char *q;
4587
4588   if (first_global_object_name)
4589     p = first_global_object_name;
4590   else
4591     {
4592       /* We don't have anything that we know to be unique to this translation
4593          unit, so use what we do have and throw in some randomness.  */
4594       unsigned len;
4595       const char *name = weak_global_object_name;
4596       const char *file = main_input_filename;
4597
4598       if (! name)
4599         name = "";
4600       if (! file)
4601         file = input_filename;
4602
4603       len = strlen (file);
4604       q = alloca (9 * 2 + len + 1);
4605       memcpy (q, file, len + 1);
4606       clean_symbol_name (q);
4607
4608       sprintf (q + len, "_%08X_%08X", crc32_string (0, name),
4609                crc32_string (0, flag_random_seed));
4610
4611       p = q;
4612     }
4613
4614   buf = alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p) + strlen (type));
4615
4616   /* Set up the name of the file-level functions we may need.
4617      Use a global object (which is already required to be unique over
4618      the program) rather than the file name (which imposes extra
4619      constraints).  */
4620   sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
4621
4622   return get_identifier (buf);
4623 }
4624
4625 /* If KIND=='I', return a suitable global initializer (constructor) name.
4626    If KIND=='D', return a suitable global clean-up (destructor) name.  */
4627
4628 tree
4629 get_file_function_name (int kind)
4630 {
4631   char p[2];
4632
4633   p[0] = kind;
4634   p[1] = 0;
4635
4636   return get_file_function_name_long (p);
4637 }
4638 \f
4639 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
4640    The result is placed in BUFFER (which has length BIT_SIZE),
4641    with one bit in each char ('\000' or '\001').
4642
4643    If the constructor is constant, NULL_TREE is returned.
4644    Otherwise, a TREE_LIST of the non-constant elements is emitted.  */
4645
4646 tree
4647 get_set_constructor_bits (tree init, char *buffer, int bit_size)
4648 {
4649   int i;
4650   tree vals;
4651   HOST_WIDE_INT domain_min
4652     = tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (init))), 0);
4653   tree non_const_bits = NULL_TREE;
4654
4655   for (i = 0; i < bit_size; i++)
4656     buffer[i] = 0;
4657
4658   for (vals = TREE_OPERAND (init, 1);
4659        vals != NULL_TREE; vals = TREE_CHAIN (vals))
4660     {
4661       if (!host_integerp (TREE_VALUE (vals), 0)
4662           || (TREE_PURPOSE (vals) != NULL_TREE
4663               && !host_integerp (TREE_PURPOSE (vals), 0)))
4664         non_const_bits
4665           = tree_cons (TREE_PURPOSE (vals), TREE_VALUE (vals), non_const_bits);
4666       else if (TREE_PURPOSE (vals) != NULL_TREE)
4667         {
4668           /* Set a range of bits to ones.  */
4669           HOST_WIDE_INT lo_index
4670             = tree_low_cst (TREE_PURPOSE (vals), 0) - domain_min;
4671           HOST_WIDE_INT hi_index
4672             = tree_low_cst (TREE_VALUE (vals), 0) - domain_min;
4673
4674           if (lo_index < 0 || lo_index >= bit_size
4675               || hi_index < 0 || hi_index >= bit_size)
4676             abort ();
4677           for (; lo_index <= hi_index; lo_index++)
4678             buffer[lo_index] = 1;
4679         }
4680       else
4681         {
4682           /* Set a single bit to one.  */
4683           HOST_WIDE_INT index
4684             = tree_low_cst (TREE_VALUE (vals), 0) - domain_min;
4685           if (index < 0 || index >= bit_size)
4686             {
4687               error ("invalid initializer for bit string");
4688               return NULL_TREE;
4689             }
4690           buffer[index] = 1;
4691         }
4692     }
4693   return non_const_bits;
4694 }
4695
4696 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
4697    The result is placed in BUFFER (which is an array of bytes).
4698    If the constructor is constant, NULL_TREE is returned.
4699    Otherwise, a TREE_LIST of the non-constant elements is emitted.  */
4700
4701 tree
4702 get_set_constructor_bytes (tree init, unsigned char *buffer, int wd_size)
4703 {
4704   int i;
4705   int set_word_size = BITS_PER_UNIT;
4706   int bit_size = wd_size * set_word_size;
4707   int bit_pos = 0;
4708   unsigned char *bytep = buffer;
4709   char *bit_buffer = alloca (bit_size);
4710   tree non_const_bits = get_set_constructor_bits (init, bit_buffer, bit_size);
4711
4712   for (i = 0; i < wd_size; i++)
4713     buffer[i] = 0;
4714
4715   for (i = 0; i < bit_size; i++)
4716     {
4717       if (bit_buffer[i])
4718         {
4719           if (BYTES_BIG_ENDIAN)
4720             *bytep |= (1 << (set_word_size - 1 - bit_pos));
4721           else
4722             *bytep |= 1 << bit_pos;
4723         }
4724       bit_pos++;
4725       if (bit_pos >= set_word_size)
4726         bit_pos = 0, bytep++;
4727     }
4728   return non_const_bits;
4729 }
4730 \f
4731 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
4732 /* Complain that the tree code of NODE does not match the expected CODE.
4733    FILE, LINE, and FUNCTION are of the caller.  */
4734
4735 void
4736 tree_check_failed (const tree node, enum tree_code code, const char *file,
4737                    int line, const char *function)
4738 {
4739   internal_error ("tree check: expected %s, have %s in %s, at %s:%d",
4740                   tree_code_name[code], tree_code_name[TREE_CODE (node)],
4741                   function, trim_filename (file), line);
4742 }
4743
4744 /* Similar to above, except that we check for a class of tree
4745    code, given in CL.  */
4746
4747 void
4748 tree_class_check_failed (const tree node, int cl, const char *file,
4749                          int line, const char *function)
4750 {
4751   internal_error
4752     ("tree check: expected class '%c', have '%c' (%s) in %s, at %s:%d",
4753      cl, TREE_CODE_CLASS (TREE_CODE (node)),
4754      tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
4755 }
4756
4757 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
4758    (dynamically sized) vector.  */
4759
4760 void
4761 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
4762                            const char *function)
4763 {
4764   internal_error
4765     ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
4766      idx + 1, len, function, trim_filename (file), line);
4767 }
4768
4769 /* Similar to above, except that the check is for the bounds of the operand
4770    vector of an expression node.  */
4771
4772 void
4773 tree_operand_check_failed (int idx, enum tree_code code, const char *file,
4774                            int line, const char *function)
4775 {
4776   internal_error
4777     ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
4778      idx + 1, tree_code_name[code], TREE_CODE_LENGTH (code),
4779      function, trim_filename (file), line);
4780 }
4781 #endif /* ENABLE_TREE_CHECKING */
4782 \f
4783 /* For a new vector type node T, build the information necessary for
4784    debugging output.  */
4785
4786 static void
4787 finish_vector_type (tree t)
4788 {
4789   layout_type (t);
4790
4791   {
4792     tree index = build_int_2 (TYPE_VECTOR_SUBPARTS (t) - 1, 0);
4793     tree array = build_array_type (TREE_TYPE (t),
4794                                    build_index_type (index));
4795     tree rt = make_node (RECORD_TYPE);
4796
4797     TYPE_FIELDS (rt) = build_decl (FIELD_DECL, get_identifier ("f"), array);
4798     DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
4799     layout_type (rt);
4800     TYPE_DEBUG_REPRESENTATION_TYPE (t) = rt;
4801     /* In dwarfout.c, type lookup uses TYPE_UID numbers.  We want to output
4802        the representation type, and we want to find that die when looking up
4803        the vector type.  This is most easily achieved by making the TYPE_UID
4804        numbers equal.  */
4805     TYPE_UID (rt) = TYPE_UID (t);
4806   }
4807 }
4808
4809 static tree
4810 make_or_reuse_type (unsigned size, int unsignedp)
4811 {
4812   if (size == INT_TYPE_SIZE)
4813     return unsignedp ? unsigned_type_node : integer_type_node;
4814   if (size == CHAR_TYPE_SIZE)
4815     return unsignedp ? unsigned_char_type_node : signed_char_type_node;
4816   if (size == SHORT_TYPE_SIZE)
4817     return unsignedp ? short_unsigned_type_node : short_integer_type_node;
4818   if (size == LONG_TYPE_SIZE)
4819     return unsignedp ? long_unsigned_type_node : long_integer_type_node;
4820   if (size == LONG_LONG_TYPE_SIZE)
4821     return (unsignedp ? long_long_unsigned_type_node
4822             : long_long_integer_type_node);
4823
4824   if (unsignedp)
4825     return make_unsigned_type (size);
4826   else
4827     return make_signed_type (size);
4828 }
4829
4830 /* Create nodes for all integer types (and error_mark_node) using the sizes
4831    of C datatypes.  The caller should call set_sizetype soon after calling
4832    this function to select one of the types as sizetype.  */
4833
4834 void
4835 build_common_tree_nodes (int signed_char)
4836 {
4837   error_mark_node = make_node (ERROR_MARK);
4838   TREE_TYPE (error_mark_node) = error_mark_node;
4839
4840   initialize_sizetypes ();
4841
4842   /* Define both `signed char' and `unsigned char'.  */
4843   signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
4844   unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
4845
4846   /* Define `char', which is like either `signed char' or `unsigned char'
4847      but not the same as either.  */
4848   char_type_node
4849     = (signed_char
4850        ? make_signed_type (CHAR_TYPE_SIZE)
4851        : make_unsigned_type (CHAR_TYPE_SIZE));
4852
4853   short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
4854   short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
4855   integer_type_node = make_signed_type (INT_TYPE_SIZE);
4856   unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
4857   long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
4858   long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
4859   long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
4860   long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
4861
4862   /* Define a boolean type.  This type only represents boolean values but
4863      may be larger than char depending on the value of BOOL_TYPE_SIZE.
4864      Front ends which want to override this size (i.e. Java) can redefine
4865      boolean_type_node before calling build_common_tree_nodes_2.  */
4866   boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
4867   TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
4868   TYPE_MAX_VALUE (boolean_type_node) = build_int_2 (1, 0);
4869   TREE_TYPE (TYPE_MAX_VALUE (boolean_type_node)) = boolean_type_node;
4870   TYPE_PRECISION (boolean_type_node) = 1;
4871
4872   /* Fill in the rest of the sized types.  Reuse existing type nodes
4873      when possible.  */
4874   intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
4875   intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
4876   intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
4877   intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
4878   intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
4879
4880   unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
4881   unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
4882   unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
4883   unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
4884   unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
4885  
4886   access_public_node = get_identifier ("public");
4887   access_protected_node = get_identifier ("protected");
4888   access_private_node = get_identifier ("private");
4889 }
4890
4891 /* Call this function after calling build_common_tree_nodes and set_sizetype.
4892    It will create several other common tree nodes.  */
4893
4894 void
4895 build_common_tree_nodes_2 (int short_double)
4896 {
4897   /* Define these next since types below may used them.  */
4898   integer_zero_node = build_int_2 (0, 0);
4899   integer_one_node = build_int_2 (1, 0);
4900   integer_minus_one_node = build_int_2 (-1, -1);
4901
4902   size_zero_node = size_int (0);
4903   size_one_node = size_int (1);
4904   bitsize_zero_node = bitsize_int (0);
4905   bitsize_one_node = bitsize_int (1);
4906   bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
4907
4908   boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
4909   boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
4910
4911   void_type_node = make_node (VOID_TYPE);
4912   layout_type (void_type_node);
4913
4914   /* We are not going to have real types in C with less than byte alignment,
4915      so we might as well not have any types that claim to have it.  */
4916   TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
4917   TYPE_USER_ALIGN (void_type_node) = 0;
4918
4919   null_pointer_node = build_int_2 (0, 0);
4920   TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
4921   layout_type (TREE_TYPE (null_pointer_node));
4922
4923   ptr_type_node = build_pointer_type (void_type_node);
4924   const_ptr_type_node
4925     = build_pointer_type (build_type_variant (void_type_node, 1, 0));
4926
4927   float_type_node = make_node (REAL_TYPE);
4928   TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
4929   layout_type (float_type_node);
4930
4931   double_type_node = make_node (REAL_TYPE);
4932   if (short_double)
4933     TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
4934   else
4935     TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
4936   layout_type (double_type_node);
4937
4938   long_double_type_node = make_node (REAL_TYPE);
4939   TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
4940   layout_type (long_double_type_node);
4941
4942   float_ptr_type_node = build_pointer_type (float_type_node);
4943   double_ptr_type_node = build_pointer_type (double_type_node);
4944   long_double_ptr_type_node = build_pointer_type (long_double_type_node);
4945   integer_ptr_type_node = build_pointer_type (integer_type_node);
4946
4947   complex_integer_type_node = make_node (COMPLEX_TYPE);
4948   TREE_TYPE (complex_integer_type_node) = integer_type_node;
4949   layout_type (complex_integer_type_node);
4950
4951   complex_float_type_node = make_node (COMPLEX_TYPE);
4952   TREE_TYPE (complex_float_type_node) = float_type_node;
4953   layout_type (complex_float_type_node);
4954
4955   complex_double_type_node = make_node (COMPLEX_TYPE);
4956   TREE_TYPE (complex_double_type_node) = double_type_node;
4957   layout_type (complex_double_type_node);
4958
4959   complex_long_double_type_node = make_node (COMPLEX_TYPE);
4960   TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
4961   layout_type (complex_long_double_type_node);
4962
4963   {
4964     tree t = (*targetm.build_builtin_va_list) ();
4965
4966     /* Many back-ends define record types without setting TYPE_NAME.
4967        If we copied the record type here, we'd keep the original
4968        record type without a name.  This breaks name mangling.  So,
4969        don't copy record types and let c_common_nodes_and_builtins()
4970        declare the type to be __builtin_va_list.  */
4971     if (TREE_CODE (t) != RECORD_TYPE)
4972       t = build_type_copy (t);
4973
4974     va_list_type_node = t;
4975   }
4976
4977   unsigned_V4SI_type_node
4978     = make_vector (V4SImode, unsigned_intSI_type_node, 1);
4979   unsigned_V2HI_type_node
4980     = make_vector (V2HImode, unsigned_intHI_type_node, 1);
4981   unsigned_V2SI_type_node
4982     = make_vector (V2SImode, unsigned_intSI_type_node, 1);
4983   unsigned_V2DI_type_node
4984     = make_vector (V2DImode, unsigned_intDI_type_node, 1);
4985   unsigned_V4HI_type_node
4986     = make_vector (V4HImode, unsigned_intHI_type_node, 1);
4987   unsigned_V8QI_type_node
4988     = make_vector (V8QImode, unsigned_intQI_type_node, 1);
4989   unsigned_V8HI_type_node
4990     = make_vector (V8HImode, unsigned_intHI_type_node, 1);
4991   unsigned_V16QI_type_node
4992     = make_vector (V16QImode, unsigned_intQI_type_node, 1);
4993   unsigned_V1DI_type_node
4994     = make_vector (V1DImode, unsigned_intDI_type_node, 1);
4995
4996   V16SF_type_node = make_vector (V16SFmode, float_type_node, 0);
4997   V4SF_type_node = make_vector (V4SFmode, float_type_node, 0);
4998   V4SI_type_node = make_vector (V4SImode, intSI_type_node, 0);
4999   V2HI_type_node = make_vector (V2HImode, intHI_type_node, 0);
5000   V2SI_type_node = make_vector (V2SImode, intSI_type_node, 0);
5001   V2DI_type_node = make_vector (V2DImode, intDI_type_node, 0);
5002   V4HI_type_node = make_vector (V4HImode, intHI_type_node, 0);
5003   V8QI_type_node = make_vector (V8QImode, intQI_type_node, 0);
5004   V8HI_type_node = make_vector (V8HImode, intHI_type_node, 0);
5005   V2SF_type_node = make_vector (V2SFmode, float_type_node, 0);
5006   V2DF_type_node = make_vector (V2DFmode, double_type_node, 0);
5007   V16QI_type_node = make_vector (V16QImode, intQI_type_node, 0);
5008   V1DI_type_node = make_vector (V1DImode, intDI_type_node, 0);
5009   V4DF_type_node = make_vector (V4DFmode, double_type_node, 0);
5010 }
5011
5012 /* HACK.  GROSS.  This is absolutely disgusting.  I wish there was a
5013    better way.
5014
5015    If we requested a pointer to a vector, build up the pointers that
5016    we stripped off while looking for the inner type.  Similarly for
5017    return values from functions.
5018
5019    The argument TYPE is the top of the chain, and BOTTOM is the
5020    new type which we will point to.  */
5021
5022 tree
5023 reconstruct_complex_type (tree type, tree bottom)
5024 {
5025   tree inner, outer;
5026
5027   if (POINTER_TYPE_P (type))
5028     {
5029       inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
5030       outer = build_pointer_type (inner);
5031     }
5032   else if (TREE_CODE (type) == ARRAY_TYPE)
5033     {
5034       inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
5035       outer = build_array_type (inner, TYPE_DOMAIN (type));
5036     }
5037   else if (TREE_CODE (type) == FUNCTION_TYPE)
5038     {
5039       inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
5040       outer = build_function_type (inner, TYPE_ARG_TYPES (type));
5041     }
5042   else if (TREE_CODE (type) == METHOD_TYPE)
5043     {
5044       inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
5045       outer = build_method_type_directly (TYPE_METHOD_BASETYPE (type),
5046                                          inner,
5047                                          TYPE_ARG_TYPES (type));
5048     }
5049   else
5050     return bottom;
5051
5052   TREE_READONLY (outer) = TREE_READONLY (type);
5053   TREE_THIS_VOLATILE (outer) = TREE_THIS_VOLATILE (type);
5054
5055   return outer;
5056 }
5057
5058 /* Returns a vector tree node given a vector mode, the inner type, and
5059    the signness.  */
5060
5061 tree
5062 make_vector (enum machine_mode mode, tree innertype, int unsignedp)
5063 {
5064   tree t;
5065
5066   t = make_node (VECTOR_TYPE);
5067   TREE_TYPE (t) = innertype;
5068   TYPE_MODE (t) = mode;
5069   TREE_UNSIGNED (TREE_TYPE (t)) = unsignedp;
5070   finish_vector_type (t);
5071
5072   return t;
5073 }
5074
5075 /* Given an initializer INIT, return TRUE if INIT is zero or some
5076    aggregate of zeros.  Otherwise return FALSE.  */
5077
5078 bool
5079 initializer_zerop (tree init)
5080 {
5081   STRIP_NOPS (init);
5082
5083   switch (TREE_CODE (init))
5084     {
5085     case INTEGER_CST:
5086       return integer_zerop (init);
5087     case REAL_CST:
5088       return real_zerop (init)
5089         && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
5090     case COMPLEX_CST:
5091       return integer_zerop (init)
5092         || (real_zerop (init)
5093             && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
5094             && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
5095     case CONSTRUCTOR:
5096       {
5097         /* Set is empty if it has no elements.  */
5098         if ((TREE_CODE (TREE_TYPE (init)) == SET_TYPE)
5099              && CONSTRUCTOR_ELTS (init))
5100           return false;
5101
5102         if (AGGREGATE_TYPE_P (TREE_TYPE (init)))
5103           {
5104             tree aggr_init = CONSTRUCTOR_ELTS (init);
5105
5106             while (aggr_init)
5107               {
5108                 if (! initializer_zerop (TREE_VALUE (aggr_init)))
5109                   return false;
5110                 aggr_init = TREE_CHAIN (aggr_init);
5111               }
5112             return true;
5113           }
5114         return false;
5115       }
5116     default:
5117       return false;
5118     }
5119 }
5120
5121 #include "gt-tree.h"