OSDN Git Service

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