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