OSDN Git Service

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