OSDN Git Service

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