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