OSDN Git Service

* collect2.c (main): In AIX specific computations for vector
[pf3gnuchains/gcc-fork.git] / gcc / tree.c
1 /* Language-independent node constructors for parse phase of GNU compiler.
2    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4    2011 Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
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 "tm_p.h"
39 #include "function.h"
40 #include "obstack.h"
41 #include "toplev.h"
42 #include "ggc.h"
43 #include "hashtab.h"
44 #include "filenames.h"
45 #include "output.h"
46 #include "target.h"
47 #include "common/common-target.h"
48 #include "langhooks.h"
49 #include "tree-inline.h"
50 #include "tree-iterator.h"
51 #include "basic-block.h"
52 #include "tree-flow.h"
53 #include "params.h"
54 #include "pointer-set.h"
55 #include "tree-pass.h"
56 #include "langhooks-def.h"
57 #include "diagnostic.h"
58 #include "tree-diagnostic.h"
59 #include "tree-pretty-print.h"
60 #include "cgraph.h"
61 #include "timevar.h"
62 #include "except.h"
63 #include "debug.h"
64 #include "intl.h"
65
66 /* Tree code classes.  */
67
68 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
69 #define END_OF_BASE_TREE_CODES tcc_exceptional,
70
71 const enum tree_code_class tree_code_type[] = {
72 #include "all-tree.def"
73 };
74
75 #undef DEFTREECODE
76 #undef END_OF_BASE_TREE_CODES
77
78 /* Table indexed by tree code giving number of expression
79    operands beyond the fixed part of the node structure.
80    Not used for types or decls.  */
81
82 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
83 #define END_OF_BASE_TREE_CODES 0,
84
85 const unsigned char tree_code_length[] = {
86 #include "all-tree.def"
87 };
88
89 #undef DEFTREECODE
90 #undef END_OF_BASE_TREE_CODES
91
92 /* Names of tree components.
93    Used for printing out the tree and error messages.  */
94 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
95 #define END_OF_BASE_TREE_CODES "@dummy",
96
97 const char *const tree_code_name[] = {
98 #include "all-tree.def"
99 };
100
101 #undef DEFTREECODE
102 #undef END_OF_BASE_TREE_CODES
103
104 /* Each tree code class has an associated string representation.
105    These must correspond to the tree_code_class entries.  */
106
107 const char *const tree_code_class_strings[] =
108 {
109   "exceptional",
110   "constant",
111   "type",
112   "declaration",
113   "reference",
114   "comparison",
115   "unary",
116   "binary",
117   "statement",
118   "vl_exp",
119   "expression"
120 };
121
122 /* obstack.[ch] explicitly declined to prototype this.  */
123 extern int _obstack_allocated_p (struct obstack *h, void *obj);
124
125 #ifdef GATHER_STATISTICS
126 /* Statistics-gathering stuff.  */
127
128 static int tree_code_counts[MAX_TREE_CODES];
129 int tree_node_counts[(int) all_kinds];
130 int tree_node_sizes[(int) all_kinds];
131
132 /* Keep in sync with tree.h:enum tree_node_kind.  */
133 static const char * const tree_node_kind_names[] = {
134   "decls",
135   "types",
136   "blocks",
137   "stmts",
138   "refs",
139   "exprs",
140   "constants",
141   "identifiers",
142   "vecs",
143   "binfos",
144   "ssa names",
145   "constructors",
146   "random kinds",
147   "lang_decl kinds",
148   "lang_type kinds",
149   "omp clauses",
150 };
151 #endif /* GATHER_STATISTICS */
152
153 /* Unique id for next decl created.  */
154 static GTY(()) int next_decl_uid;
155 /* Unique id for next type created.  */
156 static GTY(()) int next_type_uid = 1;
157 /* Unique id for next debug decl created.  Use negative numbers,
158    to catch erroneous uses.  */
159 static GTY(()) int next_debug_decl_uid;
160
161 /* Since we cannot rehash a type after it is in the table, we have to
162    keep the hash code.  */
163
164 struct GTY(()) type_hash {
165   unsigned long hash;
166   tree type;
167 };
168
169 /* Initial size of the hash table (rounded to next prime).  */
170 #define TYPE_HASH_INITIAL_SIZE 1000
171
172 /* Now here is the hash table.  When recording a type, it is added to
173    the slot whose index is the hash code.  Note that the hash table is
174    used for several kinds of types (function types, array types and
175    array index range types, for now).  While all these live in the
176    same table, they are completely independent, and the hash code is
177    computed differently for each of these.  */
178
179 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash)))
180      htab_t type_hash_table;
181
182 /* Hash table and temporary node for larger integer const values.  */
183 static GTY (()) tree int_cst_node;
184 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
185      htab_t int_cst_hash_table;
186
187 /* Hash table for optimization flags and target option flags.  Use the same
188    hash table for both sets of options.  Nodes for building the current
189    optimization and target option nodes.  The assumption is most of the time
190    the options created will already be in the hash table, so we avoid
191    allocating and freeing up a node repeatably.  */
192 static GTY (()) tree cl_optimization_node;
193 static GTY (()) tree cl_target_option_node;
194 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
195      htab_t cl_option_hash_table;
196
197 /* General tree->tree mapping  structure for use in hash tables.  */
198
199
200 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map)))
201      htab_t debug_expr_for_decl;
202
203 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map)))
204      htab_t value_expr_for_decl;
205
206 static GTY ((if_marked ("tree_vec_map_marked_p"), param_is (struct tree_vec_map)))
207      htab_t debug_args_for_decl;
208
209 static GTY ((if_marked ("tree_priority_map_marked_p"),
210              param_is (struct tree_priority_map)))
211   htab_t init_priority_for_decl;
212
213 static void set_type_quals (tree, int);
214 static int type_hash_eq (const void *, const void *);
215 static hashval_t type_hash_hash (const void *);
216 static hashval_t int_cst_hash_hash (const void *);
217 static int int_cst_hash_eq (const void *, const void *);
218 static hashval_t cl_option_hash_hash (const void *);
219 static int cl_option_hash_eq (const void *, const void *);
220 static void print_type_hash_statistics (void);
221 static void print_debug_expr_statistics (void);
222 static void print_value_expr_statistics (void);
223 static int type_hash_marked_p (const void *);
224 static unsigned int type_hash_list (const_tree, hashval_t);
225 static unsigned int attribute_hash_list (const_tree, hashval_t);
226
227 tree global_trees[TI_MAX];
228 tree integer_types[itk_none];
229
230 unsigned char tree_contains_struct[MAX_TREE_CODES][64];
231
232 /* Number of operands for each OpenMP clause.  */
233 unsigned const char omp_clause_num_ops[] =
234 {
235   0, /* OMP_CLAUSE_ERROR  */
236   1, /* OMP_CLAUSE_PRIVATE  */
237   1, /* OMP_CLAUSE_SHARED  */
238   1, /* OMP_CLAUSE_FIRSTPRIVATE  */
239   2, /* OMP_CLAUSE_LASTPRIVATE  */
240   4, /* OMP_CLAUSE_REDUCTION  */
241   1, /* OMP_CLAUSE_COPYIN  */
242   1, /* OMP_CLAUSE_COPYPRIVATE  */
243   1, /* OMP_CLAUSE_IF  */
244   1, /* OMP_CLAUSE_NUM_THREADS  */
245   1, /* OMP_CLAUSE_SCHEDULE  */
246   0, /* OMP_CLAUSE_NOWAIT  */
247   0, /* OMP_CLAUSE_ORDERED  */
248   0, /* OMP_CLAUSE_DEFAULT  */
249   3, /* OMP_CLAUSE_COLLAPSE  */
250   0, /* OMP_CLAUSE_UNTIED   */
251   1, /* OMP_CLAUSE_FINAL  */
252   0  /* OMP_CLAUSE_MERGEABLE  */
253 };
254
255 const char * const omp_clause_code_name[] =
256 {
257   "error_clause",
258   "private",
259   "shared",
260   "firstprivate",
261   "lastprivate",
262   "reduction",
263   "copyin",
264   "copyprivate",
265   "if",
266   "num_threads",
267   "schedule",
268   "nowait",
269   "ordered",
270   "default",
271   "collapse",
272   "untied",
273   "final",
274   "mergeable"
275 };
276
277
278 /* Return the tree node structure used by tree code CODE.  */
279
280 static inline enum tree_node_structure_enum
281 tree_node_structure_for_code (enum tree_code code)
282 {
283   switch (TREE_CODE_CLASS (code))
284     {
285     case tcc_declaration:
286       {
287         switch (code)
288           {
289           case FIELD_DECL:
290             return TS_FIELD_DECL;
291           case PARM_DECL:
292             return TS_PARM_DECL;
293           case VAR_DECL:
294             return TS_VAR_DECL;
295           case LABEL_DECL:
296             return TS_LABEL_DECL;
297           case RESULT_DECL:
298             return TS_RESULT_DECL;
299           case DEBUG_EXPR_DECL:
300             return TS_DECL_WRTL;
301           case CONST_DECL:
302             return TS_CONST_DECL;
303           case TYPE_DECL:
304             return TS_TYPE_DECL;
305           case FUNCTION_DECL:
306             return TS_FUNCTION_DECL;
307           case TRANSLATION_UNIT_DECL:
308             return TS_TRANSLATION_UNIT_DECL;
309           default:
310             return TS_DECL_NON_COMMON;
311           }
312       }
313     case tcc_type:
314       return TS_TYPE_NON_COMMON;
315     case tcc_reference:
316     case tcc_comparison:
317     case tcc_unary:
318     case tcc_binary:
319     case tcc_expression:
320     case tcc_statement:
321     case tcc_vl_exp:
322       return TS_EXP;
323     default:  /* tcc_constant and tcc_exceptional */
324       break;
325     }
326   switch (code)
327     {
328       /* tcc_constant cases.  */
329     case INTEGER_CST:           return TS_INT_CST;
330     case REAL_CST:              return TS_REAL_CST;
331     case FIXED_CST:             return TS_FIXED_CST;
332     case COMPLEX_CST:           return TS_COMPLEX;
333     case VECTOR_CST:            return TS_VECTOR;
334     case STRING_CST:            return TS_STRING;
335       /* tcc_exceptional cases.  */
336     case ERROR_MARK:            return TS_COMMON;
337     case IDENTIFIER_NODE:       return TS_IDENTIFIER;
338     case TREE_LIST:             return TS_LIST;
339     case TREE_VEC:              return TS_VEC;
340     case SSA_NAME:              return TS_SSA_NAME;
341     case PLACEHOLDER_EXPR:      return TS_COMMON;
342     case STATEMENT_LIST:        return TS_STATEMENT_LIST;
343     case BLOCK:                 return TS_BLOCK;
344     case CONSTRUCTOR:           return TS_CONSTRUCTOR;
345     case TREE_BINFO:            return TS_BINFO;
346     case OMP_CLAUSE:            return TS_OMP_CLAUSE;
347     case OPTIMIZATION_NODE:     return TS_OPTIMIZATION;
348     case TARGET_OPTION_NODE:    return TS_TARGET_OPTION;
349
350     default:
351       gcc_unreachable ();
352     }
353 }
354
355
356 /* Initialize tree_contains_struct to describe the hierarchy of tree
357    nodes.  */
358
359 static void
360 initialize_tree_contains_struct (void)
361 {
362   unsigned i;
363
364   for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
365     {
366       enum tree_code code;
367       enum tree_node_structure_enum ts_code;
368
369       code = (enum tree_code) i;
370       ts_code = tree_node_structure_for_code (code);
371
372       /* Mark the TS structure itself.  */
373       tree_contains_struct[code][ts_code] = 1;
374
375       /* Mark all the structures that TS is derived from.  */
376       switch (ts_code)
377         {
378         case TS_TYPED:
379         case TS_BLOCK:
380           MARK_TS_BASE (code);
381           break;
382
383         case TS_COMMON:
384         case TS_INT_CST:
385         case TS_REAL_CST:
386         case TS_FIXED_CST:
387         case TS_VECTOR:
388         case TS_STRING:
389         case TS_COMPLEX:
390         case TS_SSA_NAME:
391         case TS_CONSTRUCTOR:
392         case TS_EXP:
393         case TS_STATEMENT_LIST:
394           MARK_TS_TYPED (code);
395           break;
396
397         case TS_IDENTIFIER:
398         case TS_DECL_MINIMAL:
399         case TS_TYPE_COMMON:
400         case TS_LIST:
401         case TS_VEC:
402         case TS_BINFO:
403         case TS_OMP_CLAUSE:
404         case TS_OPTIMIZATION:
405         case TS_TARGET_OPTION:
406           MARK_TS_COMMON (code);
407           break;
408
409         case TS_TYPE_WITH_LANG_SPECIFIC:
410           MARK_TS_TYPE_COMMON (code);
411           break;
412
413         case TS_TYPE_NON_COMMON:
414           MARK_TS_TYPE_WITH_LANG_SPECIFIC (code);
415           break;
416
417         case TS_DECL_COMMON:
418           MARK_TS_DECL_MINIMAL (code);
419           break;
420
421         case TS_DECL_WRTL:
422         case TS_CONST_DECL:
423           MARK_TS_DECL_COMMON (code);
424           break;
425
426         case TS_DECL_NON_COMMON:
427           MARK_TS_DECL_WITH_VIS (code);
428           break;
429
430         case TS_DECL_WITH_VIS:
431         case TS_PARM_DECL:
432         case TS_LABEL_DECL:
433         case TS_RESULT_DECL:
434           MARK_TS_DECL_WRTL (code);
435           break;
436
437         case TS_FIELD_DECL:
438           MARK_TS_DECL_COMMON (code);
439           break;
440
441         case TS_VAR_DECL:
442           MARK_TS_DECL_WITH_VIS (code);
443           break;
444
445         case TS_TYPE_DECL:
446         case TS_FUNCTION_DECL:
447           MARK_TS_DECL_NON_COMMON (code);
448           break;
449
450         case TS_TRANSLATION_UNIT_DECL:
451           MARK_TS_DECL_COMMON (code);
452           break;
453
454         default:
455           gcc_unreachable ();
456         }
457     }
458
459   /* Basic consistency checks for attributes used in fold.  */
460   gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
461   gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
462   gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
463   gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
464   gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
465   gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
466   gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
467   gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
468   gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
469   gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
470   gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
471   gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
472   gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
473   gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
474   gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
475   gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
476   gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
477   gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
478   gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
479   gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
480   gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
481   gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
482   gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
483   gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
484   gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
485   gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
486   gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
487   gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
488   gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
489   gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
490   gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
491   gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
492   gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
493   gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
494   gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
495   gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
496   gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
497   gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
498 }
499
500
501 /* Init tree.c.  */
502
503 void
504 init_ttree (void)
505 {
506   /* Initialize the hash table of types.  */
507   type_hash_table = htab_create_ggc (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
508                                      type_hash_eq, 0);
509
510   debug_expr_for_decl = htab_create_ggc (512, tree_decl_map_hash,
511                                          tree_decl_map_eq, 0);
512
513   value_expr_for_decl = htab_create_ggc (512, tree_decl_map_hash,
514                                          tree_decl_map_eq, 0);
515   init_priority_for_decl = htab_create_ggc (512, tree_priority_map_hash,
516                                             tree_priority_map_eq, 0);
517
518   int_cst_hash_table = htab_create_ggc (1024, int_cst_hash_hash,
519                                         int_cst_hash_eq, NULL);
520
521   int_cst_node = make_node (INTEGER_CST);
522
523   cl_option_hash_table = htab_create_ggc (64, cl_option_hash_hash,
524                                           cl_option_hash_eq, NULL);
525
526   cl_optimization_node = make_node (OPTIMIZATION_NODE);
527   cl_target_option_node = make_node (TARGET_OPTION_NODE);
528
529   /* Initialize the tree_contains_struct array.  */
530   initialize_tree_contains_struct ();
531   lang_hooks.init_ts ();
532 }
533
534 \f
535 /* The name of the object as the assembler will see it (but before any
536    translations made by ASM_OUTPUT_LABELREF).  Often this is the same
537    as DECL_NAME.  It is an IDENTIFIER_NODE.  */
538 tree
539 decl_assembler_name (tree decl)
540 {
541   if (!DECL_ASSEMBLER_NAME_SET_P (decl))
542     lang_hooks.set_decl_assembler_name (decl);
543   return DECL_WITH_VIS_CHECK (decl)->decl_with_vis.assembler_name;
544 }
545
546 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL.  */
547
548 bool
549 decl_assembler_name_equal (tree decl, const_tree asmname)
550 {
551   tree decl_asmname = DECL_ASSEMBLER_NAME (decl);
552   const char *decl_str;
553   const char *asmname_str;
554   bool test = false;
555
556   if (decl_asmname == asmname)
557     return true;
558
559   decl_str = IDENTIFIER_POINTER (decl_asmname);
560   asmname_str = IDENTIFIER_POINTER (asmname);
561
562
563   /* If the target assembler name was set by the user, things are trickier.
564      We have a leading '*' to begin with.  After that, it's arguable what
565      is the correct thing to do with -fleading-underscore.  Arguably, we've
566      historically been doing the wrong thing in assemble_alias by always
567      printing the leading underscore.  Since we're not changing that, make
568      sure user_label_prefix follows the '*' before matching.  */
569   if (decl_str[0] == '*')
570     {
571       size_t ulp_len = strlen (user_label_prefix);
572
573       decl_str ++;
574
575       if (ulp_len == 0)
576         test = true;
577       else if (strncmp (decl_str, user_label_prefix, ulp_len) == 0)
578         decl_str += ulp_len, test=true;
579       else
580         decl_str --;
581     }
582   if (asmname_str[0] == '*')
583     {
584       size_t ulp_len = strlen (user_label_prefix);
585
586       asmname_str ++;
587
588       if (ulp_len == 0)
589         test = true;
590       else if (strncmp (asmname_str, user_label_prefix, ulp_len) == 0)
591         asmname_str += ulp_len, test=true;
592       else
593         asmname_str --;
594     }
595
596   if (!test)
597     return false;
598   return strcmp (decl_str, asmname_str) == 0;
599 }
600
601 /* Hash asmnames ignoring the user specified marks.  */
602
603 hashval_t
604 decl_assembler_name_hash (const_tree asmname)
605 {
606   if (IDENTIFIER_POINTER (asmname)[0] == '*')
607     {
608       const char *decl_str = IDENTIFIER_POINTER (asmname) + 1;
609       size_t ulp_len = strlen (user_label_prefix);
610
611       if (ulp_len == 0)
612         ;
613       else if (strncmp (decl_str, user_label_prefix, ulp_len) == 0)
614         decl_str += ulp_len;
615
616       return htab_hash_string (decl_str);
617     }
618
619   return htab_hash_string (IDENTIFIER_POINTER (asmname));
620 }
621
622 /* Compute the number of bytes occupied by a tree with code CODE.
623    This function cannot be used for nodes that have variable sizes,
624    including TREE_VEC, STRING_CST, and CALL_EXPR.  */
625 size_t
626 tree_code_size (enum tree_code code)
627 {
628   switch (TREE_CODE_CLASS (code))
629     {
630     case tcc_declaration:  /* A decl node */
631       {
632         switch (code)
633           {
634           case FIELD_DECL:
635             return sizeof (struct tree_field_decl);
636           case PARM_DECL:
637             return sizeof (struct tree_parm_decl);
638           case VAR_DECL:
639             return sizeof (struct tree_var_decl);
640           case LABEL_DECL:
641             return sizeof (struct tree_label_decl);
642           case RESULT_DECL:
643             return sizeof (struct tree_result_decl);
644           case CONST_DECL:
645             return sizeof (struct tree_const_decl);
646           case TYPE_DECL:
647             return sizeof (struct tree_type_decl);
648           case FUNCTION_DECL:
649             return sizeof (struct tree_function_decl);
650           case DEBUG_EXPR_DECL:
651             return sizeof (struct tree_decl_with_rtl);
652           default:
653             return sizeof (struct tree_decl_non_common);
654           }
655       }
656
657     case tcc_type:  /* a type node */
658       return sizeof (struct tree_type_non_common);
659
660     case tcc_reference:   /* a reference */
661     case tcc_expression:  /* an expression */
662     case tcc_statement:   /* an expression with side effects */
663     case tcc_comparison:  /* a comparison expression */
664     case tcc_unary:       /* a unary arithmetic expression */
665     case tcc_binary:      /* a binary arithmetic expression */
666       return (sizeof (struct tree_exp)
667               + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
668
669     case tcc_constant:  /* a constant */
670       switch (code)
671         {
672         case INTEGER_CST:       return sizeof (struct tree_int_cst);
673         case REAL_CST:          return sizeof (struct tree_real_cst);
674         case FIXED_CST:         return sizeof (struct tree_fixed_cst);
675         case COMPLEX_CST:       return sizeof (struct tree_complex);
676         case VECTOR_CST:        return sizeof (struct tree_vector);
677         case STRING_CST:        gcc_unreachable ();
678         default:
679           return lang_hooks.tree_size (code);
680         }
681
682     case tcc_exceptional:  /* something random, like an identifier.  */
683       switch (code)
684         {
685         case IDENTIFIER_NODE:   return lang_hooks.identifier_size;
686         case TREE_LIST:         return sizeof (struct tree_list);
687
688         case ERROR_MARK:
689         case PLACEHOLDER_EXPR:  return sizeof (struct tree_common);
690
691         case TREE_VEC:
692         case OMP_CLAUSE:        gcc_unreachable ();
693
694         case SSA_NAME:          return sizeof (struct tree_ssa_name);
695
696         case STATEMENT_LIST:    return sizeof (struct tree_statement_list);
697         case BLOCK:             return sizeof (struct tree_block);
698         case CONSTRUCTOR:       return sizeof (struct tree_constructor);
699         case OPTIMIZATION_NODE: return sizeof (struct tree_optimization_option);
700         case TARGET_OPTION_NODE: return sizeof (struct tree_target_option);
701
702         default:
703           return lang_hooks.tree_size (code);
704         }
705
706     default:
707       gcc_unreachable ();
708     }
709 }
710
711 /* Compute the number of bytes occupied by NODE.  This routine only
712    looks at TREE_CODE, except for those nodes that have variable sizes.  */
713 size_t
714 tree_size (const_tree node)
715 {
716   const enum tree_code code = TREE_CODE (node);
717   switch (code)
718     {
719     case TREE_BINFO:
720       return (offsetof (struct tree_binfo, base_binfos)
721               + VEC_embedded_size (tree, BINFO_N_BASE_BINFOS (node)));
722
723     case TREE_VEC:
724       return (sizeof (struct tree_vec)
725               + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
726
727     case STRING_CST:
728       return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
729
730     case OMP_CLAUSE:
731       return (sizeof (struct tree_omp_clause)
732               + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
733                 * sizeof (tree));
734
735     default:
736       if (TREE_CODE_CLASS (code) == tcc_vl_exp)
737         return (sizeof (struct tree_exp)
738                 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
739       else
740         return tree_code_size (code);
741     }
742 }
743
744 /* Record interesting allocation statistics for a tree node with CODE
745    and LENGTH.  */
746
747 static void
748 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED,
749                                    size_t length ATTRIBUTE_UNUSED)
750 {
751 #ifdef GATHER_STATISTICS
752   enum tree_code_class type = TREE_CODE_CLASS (code);
753   tree_node_kind kind;
754
755   switch (type)
756     {
757     case tcc_declaration:  /* A decl node */
758       kind = d_kind;
759       break;
760
761     case tcc_type:  /* a type node */
762       kind = t_kind;
763       break;
764
765     case tcc_statement:  /* an expression with side effects */
766       kind = s_kind;
767       break;
768
769     case tcc_reference:  /* a reference */
770       kind = r_kind;
771       break;
772
773     case tcc_expression:  /* an expression */
774     case tcc_comparison:  /* a comparison expression */
775     case tcc_unary:  /* a unary arithmetic expression */
776     case tcc_binary:  /* a binary arithmetic expression */
777       kind = e_kind;
778       break;
779
780     case tcc_constant:  /* a constant */
781       kind = c_kind;
782       break;
783
784     case tcc_exceptional:  /* something random, like an identifier.  */
785       switch (code)
786         {
787         case IDENTIFIER_NODE:
788           kind = id_kind;
789           break;
790
791         case TREE_VEC:
792           kind = vec_kind;
793           break;
794
795         case TREE_BINFO:
796           kind = binfo_kind;
797           break;
798
799         case SSA_NAME:
800           kind = ssa_name_kind;
801           break;
802
803         case BLOCK:
804           kind = b_kind;
805           break;
806
807         case CONSTRUCTOR:
808           kind = constr_kind;
809           break;
810
811         case OMP_CLAUSE:
812           kind = omp_clause_kind;
813           break;
814
815         default:
816           kind = x_kind;
817           break;
818         }
819       break;
820
821     case tcc_vl_exp:
822       kind = e_kind;
823       break;
824
825     default:
826       gcc_unreachable ();
827     }
828
829   tree_code_counts[(int) code]++;
830   tree_node_counts[(int) kind]++;
831   tree_node_sizes[(int) kind] += length;
832 #endif
833 }
834
835 /* Allocate and return a new UID from the DECL_UID namespace.  */
836
837 int
838 allocate_decl_uid (void)
839 {
840   return next_decl_uid++;
841 }
842
843 /* Return a newly allocated node of code CODE.  For decl and type
844    nodes, some other fields are initialized.  The rest of the node is
845    initialized to zero.  This function cannot be used for TREE_VEC or
846    OMP_CLAUSE nodes, which is enforced by asserts in tree_code_size.
847
848    Achoo!  I got a code in the node.  */
849
850 tree
851 make_node_stat (enum tree_code code MEM_STAT_DECL)
852 {
853   tree t;
854   enum tree_code_class type = TREE_CODE_CLASS (code);
855   size_t length = tree_code_size (code);
856
857   record_node_allocation_statistics (code, length);
858
859   t = ggc_alloc_zone_cleared_tree_node_stat (
860                (code == IDENTIFIER_NODE) ? &tree_id_zone : &tree_zone,
861                length PASS_MEM_STAT);
862   TREE_SET_CODE (t, code);
863
864   switch (type)
865     {
866     case tcc_statement:
867       TREE_SIDE_EFFECTS (t) = 1;
868       break;
869
870     case tcc_declaration:
871       if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
872         {
873           if (code == FUNCTION_DECL)
874             {
875               DECL_ALIGN (t) = FUNCTION_BOUNDARY;
876               DECL_MODE (t) = FUNCTION_MODE;
877             }
878           else
879             DECL_ALIGN (t) = 1;
880         }
881       DECL_SOURCE_LOCATION (t) = input_location;
882       if (TREE_CODE (t) == DEBUG_EXPR_DECL)
883         DECL_UID (t) = --next_debug_decl_uid;
884       else
885         {
886           DECL_UID (t) = allocate_decl_uid ();
887           SET_DECL_PT_UID (t, -1);
888         }
889       if (TREE_CODE (t) == LABEL_DECL)
890         LABEL_DECL_UID (t) = -1;
891
892       break;
893
894     case tcc_type:
895       TYPE_UID (t) = next_type_uid++;
896       TYPE_ALIGN (t) = BITS_PER_UNIT;
897       TYPE_USER_ALIGN (t) = 0;
898       TYPE_MAIN_VARIANT (t) = t;
899       TYPE_CANONICAL (t) = t;
900
901       /* Default to no attributes for type, but let target change that.  */
902       TYPE_ATTRIBUTES (t) = NULL_TREE;
903       targetm.set_default_type_attributes (t);
904
905       /* We have not yet computed the alias set for this type.  */
906       TYPE_ALIAS_SET (t) = -1;
907       break;
908
909     case tcc_constant:
910       TREE_CONSTANT (t) = 1;
911       break;
912
913     case tcc_expression:
914       switch (code)
915         {
916         case INIT_EXPR:
917         case MODIFY_EXPR:
918         case VA_ARG_EXPR:
919         case PREDECREMENT_EXPR:
920         case PREINCREMENT_EXPR:
921         case POSTDECREMENT_EXPR:
922         case POSTINCREMENT_EXPR:
923           /* All of these have side-effects, no matter what their
924              operands are.  */
925           TREE_SIDE_EFFECTS (t) = 1;
926           break;
927
928         default:
929           break;
930         }
931       break;
932
933     default:
934       /* Other classes need no special treatment.  */
935       break;
936     }
937
938   return t;
939 }
940 \f
941 /* Return a new node with the same contents as NODE except that its
942    TREE_CHAIN, if it has one, is zero and it has a fresh uid.  */
943
944 tree
945 copy_node_stat (tree node MEM_STAT_DECL)
946 {
947   tree t;
948   enum tree_code code = TREE_CODE (node);
949   size_t length;
950
951   gcc_assert (code != STATEMENT_LIST);
952
953   length = tree_size (node);
954   record_node_allocation_statistics (code, length);
955   t = ggc_alloc_zone_tree_node_stat (&tree_zone, length PASS_MEM_STAT);
956   memcpy (t, node, length);
957
958   if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
959     TREE_CHAIN (t) = 0;
960   TREE_ASM_WRITTEN (t) = 0;
961   TREE_VISITED (t) = 0;
962   if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
963     *DECL_VAR_ANN_PTR (t) = 0;
964
965   if (TREE_CODE_CLASS (code) == tcc_declaration)
966     {
967       if (code == DEBUG_EXPR_DECL)
968         DECL_UID (t) = --next_debug_decl_uid;
969       else
970         {
971           DECL_UID (t) = allocate_decl_uid ();
972           if (DECL_PT_UID_SET_P (node))
973             SET_DECL_PT_UID (t, DECL_PT_UID (node));
974         }
975       if ((TREE_CODE (node) == PARM_DECL || TREE_CODE (node) == VAR_DECL)
976           && DECL_HAS_VALUE_EXPR_P (node))
977         {
978           SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
979           DECL_HAS_VALUE_EXPR_P (t) = 1;
980         }
981       if (TREE_CODE (node) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (node))
982         {
983           SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
984           DECL_HAS_INIT_PRIORITY_P (t) = 1;
985         }
986     }
987   else if (TREE_CODE_CLASS (code) == tcc_type)
988     {
989       TYPE_UID (t) = next_type_uid++;
990       /* The following is so that the debug code for
991          the copy is different from the original type.
992          The two statements usually duplicate each other
993          (because they clear fields of the same union),
994          but the optimizer should catch that.  */
995       TYPE_SYMTAB_POINTER (t) = 0;
996       TYPE_SYMTAB_ADDRESS (t) = 0;
997
998       /* Do not copy the values cache.  */
999       if (TYPE_CACHED_VALUES_P(t))
1000         {
1001           TYPE_CACHED_VALUES_P (t) = 0;
1002           TYPE_CACHED_VALUES (t) = NULL_TREE;
1003         }
1004     }
1005
1006   return t;
1007 }
1008
1009 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1010    For example, this can copy a list made of TREE_LIST nodes.  */
1011
1012 tree
1013 copy_list (tree list)
1014 {
1015   tree head;
1016   tree prev, next;
1017
1018   if (list == 0)
1019     return 0;
1020
1021   head = prev = copy_node (list);
1022   next = TREE_CHAIN (list);
1023   while (next)
1024     {
1025       TREE_CHAIN (prev) = copy_node (next);
1026       prev = TREE_CHAIN (prev);
1027       next = TREE_CHAIN (next);
1028     }
1029   return head;
1030 }
1031
1032 \f
1033 /* Create an INT_CST node with a LOW value sign extended to TYPE.  */
1034
1035 tree
1036 build_int_cst (tree type, HOST_WIDE_INT low)
1037 {
1038   /* Support legacy code.  */
1039   if (!type)
1040     type = integer_type_node;
1041
1042   return double_int_to_tree (type, shwi_to_double_int (low));
1043 }
1044
1045 /* Create an INT_CST node with a LOW value sign extended to TYPE.  */
1046
1047 tree
1048 build_int_cst_type (tree type, HOST_WIDE_INT low)
1049 {
1050   gcc_assert (type);
1051
1052   return double_int_to_tree (type, shwi_to_double_int (low));
1053 }
1054
1055 /* Constructs tree in type TYPE from with value given by CST.  Signedness
1056    of CST is assumed to be the same as the signedness of TYPE.  */
1057
1058 tree
1059 double_int_to_tree (tree type, double_int cst)
1060 {
1061   /* Size types *are* sign extended.  */
1062   bool sign_extended_type = (!TYPE_UNSIGNED (type)
1063                              || (TREE_CODE (type) == INTEGER_TYPE
1064                                  && TYPE_IS_SIZETYPE (type)));
1065
1066   cst = double_int_ext (cst, TYPE_PRECISION (type), !sign_extended_type);
1067
1068   return build_int_cst_wide (type, cst.low, cst.high);
1069 }
1070
1071 /* Returns true if CST fits into range of TYPE.  Signedness of CST is assumed
1072    to be the same as the signedness of TYPE.  */
1073
1074 bool
1075 double_int_fits_to_tree_p (const_tree type, double_int cst)
1076 {
1077   /* Size types *are* sign extended.  */
1078   bool sign_extended_type = (!TYPE_UNSIGNED (type)
1079                              || (TREE_CODE (type) == INTEGER_TYPE
1080                                  && TYPE_IS_SIZETYPE (type)));
1081
1082   double_int ext
1083     = double_int_ext (cst, TYPE_PRECISION (type), !sign_extended_type);
1084
1085   return double_int_equal_p (cst, ext);
1086 }
1087
1088 /* We force the double_int CST to the range of the type TYPE by sign or
1089    zero extending it.  OVERFLOWABLE indicates if we are interested in
1090    overflow of the value, when >0 we are only interested in signed
1091    overflow, for <0 we are interested in any overflow.  OVERFLOWED
1092    indicates whether overflow has already occurred.  CONST_OVERFLOWED
1093    indicates whether constant overflow has already occurred.  We force
1094    T's value to be within range of T's type (by setting to 0 or 1 all
1095    the bits outside the type's range).  We set TREE_OVERFLOWED if,
1096         OVERFLOWED is nonzero,
1097         or OVERFLOWABLE is >0 and signed overflow occurs
1098         or OVERFLOWABLE is <0 and any overflow occurs
1099    We return a new tree node for the extended double_int.  The node
1100    is shared if no overflow flags are set.  */
1101
1102
1103 tree
1104 force_fit_type_double (tree type, double_int cst, int overflowable,
1105                        bool overflowed)
1106 {
1107   bool sign_extended_type;
1108
1109   /* Size types *are* sign extended.  */
1110   sign_extended_type = (!TYPE_UNSIGNED (type)
1111                         || (TREE_CODE (type) == INTEGER_TYPE
1112                             && TYPE_IS_SIZETYPE (type)));
1113
1114   /* If we need to set overflow flags, return a new unshared node.  */
1115   if (overflowed || !double_int_fits_to_tree_p(type, cst))
1116     {
1117       if (overflowed
1118           || overflowable < 0
1119           || (overflowable > 0 && sign_extended_type))
1120         {
1121           tree t = make_node (INTEGER_CST);
1122           TREE_INT_CST (t) = double_int_ext (cst, TYPE_PRECISION (type),
1123                                              !sign_extended_type);
1124           TREE_TYPE (t) = type;
1125           TREE_OVERFLOW (t) = 1;
1126           return t;
1127         }
1128     }
1129
1130   /* Else build a shared node.  */
1131   return double_int_to_tree (type, cst);
1132 }
1133
1134 /* These are the hash table functions for the hash table of INTEGER_CST
1135    nodes of a sizetype.  */
1136
1137 /* Return the hash code code X, an INTEGER_CST.  */
1138
1139 static hashval_t
1140 int_cst_hash_hash (const void *x)
1141 {
1142   const_tree const t = (const_tree) x;
1143
1144   return (TREE_INT_CST_HIGH (t) ^ TREE_INT_CST_LOW (t)
1145           ^ htab_hash_pointer (TREE_TYPE (t)));
1146 }
1147
1148 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1149    is the same as that given by *Y, which is the same.  */
1150
1151 static int
1152 int_cst_hash_eq (const void *x, const void *y)
1153 {
1154   const_tree const xt = (const_tree) x;
1155   const_tree const yt = (const_tree) y;
1156
1157   return (TREE_TYPE (xt) == TREE_TYPE (yt)
1158           && TREE_INT_CST_HIGH (xt) == TREE_INT_CST_HIGH (yt)
1159           && TREE_INT_CST_LOW (xt) == TREE_INT_CST_LOW (yt));
1160 }
1161
1162 /* Create an INT_CST node of TYPE and value HI:LOW.
1163    The returned node is always shared.  For small integers we use a
1164    per-type vector cache, for larger ones we use a single hash table.  */
1165
1166 tree
1167 build_int_cst_wide (tree type, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
1168 {
1169   tree t;
1170   int ix = -1;
1171   int limit = 0;
1172
1173   gcc_assert (type);
1174
1175   switch (TREE_CODE (type))
1176     {
1177     case NULLPTR_TYPE:
1178       gcc_assert (hi == 0 && low == 0);
1179       /* Fallthru.  */
1180
1181     case POINTER_TYPE:
1182     case REFERENCE_TYPE:
1183       /* Cache NULL pointer.  */
1184       if (!hi && !low)
1185         {
1186           limit = 1;
1187           ix = 0;
1188         }
1189       break;
1190
1191     case BOOLEAN_TYPE:
1192       /* Cache false or true.  */
1193       limit = 2;
1194       if (!hi && low < 2)
1195         ix = low;
1196       break;
1197
1198     case INTEGER_TYPE:
1199     case OFFSET_TYPE:
1200       if (TYPE_UNSIGNED (type))
1201         {
1202           /* Cache 0..N */
1203           limit = INTEGER_SHARE_LIMIT;
1204           if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
1205             ix = low;
1206         }
1207       else
1208         {
1209           /* Cache -1..N */
1210           limit = INTEGER_SHARE_LIMIT + 1;
1211           if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
1212             ix = low + 1;
1213           else if (hi == -1 && low == -(unsigned HOST_WIDE_INT)1)
1214             ix = 0;
1215         }
1216       break;
1217
1218     case ENUMERAL_TYPE:
1219       break;
1220
1221     default:
1222       gcc_unreachable ();
1223     }
1224
1225   if (ix >= 0)
1226     {
1227       /* Look for it in the type's vector of small shared ints.  */
1228       if (!TYPE_CACHED_VALUES_P (type))
1229         {
1230           TYPE_CACHED_VALUES_P (type) = 1;
1231           TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1232         }
1233
1234       t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1235       if (t)
1236         {
1237           /* Make sure no one is clobbering the shared constant.  */
1238           gcc_assert (TREE_TYPE (t) == type);
1239           gcc_assert (TREE_INT_CST_LOW (t) == low);
1240           gcc_assert (TREE_INT_CST_HIGH (t) == hi);
1241         }
1242       else
1243         {
1244           /* Create a new shared int.  */
1245           t = make_node (INTEGER_CST);
1246
1247           TREE_INT_CST_LOW (t) = low;
1248           TREE_INT_CST_HIGH (t) = hi;
1249           TREE_TYPE (t) = type;
1250
1251           TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1252         }
1253     }
1254   else
1255     {
1256       /* Use the cache of larger shared ints.  */
1257       void **slot;
1258
1259       TREE_INT_CST_LOW (int_cst_node) = low;
1260       TREE_INT_CST_HIGH (int_cst_node) = hi;
1261       TREE_TYPE (int_cst_node) = type;
1262
1263       slot = htab_find_slot (int_cst_hash_table, int_cst_node, INSERT);
1264       t = (tree) *slot;
1265       if (!t)
1266         {
1267           /* Insert this one into the hash table.  */
1268           t = int_cst_node;
1269           *slot = t;
1270           /* Make a new node for next time round.  */
1271           int_cst_node = make_node (INTEGER_CST);
1272         }
1273     }
1274
1275   return t;
1276 }
1277
1278 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1279    and the rest are zeros.  */
1280
1281 tree
1282 build_low_bits_mask (tree type, unsigned bits)
1283 {
1284   double_int mask;
1285
1286   gcc_assert (bits <= TYPE_PRECISION (type));
1287
1288   if (bits == TYPE_PRECISION (type)
1289       && !TYPE_UNSIGNED (type))
1290     /* Sign extended all-ones mask.  */
1291     mask = double_int_minus_one;
1292   else
1293     mask = double_int_mask (bits);
1294
1295   return build_int_cst_wide (type, mask.low, mask.high);
1296 }
1297
1298 /* Checks that X is integer constant that can be expressed in (unsigned)
1299    HOST_WIDE_INT without loss of precision.  */
1300
1301 bool
1302 cst_and_fits_in_hwi (const_tree x)
1303 {
1304   if (TREE_CODE (x) != INTEGER_CST)
1305     return false;
1306
1307   if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
1308     return false;
1309
1310   return (TREE_INT_CST_HIGH (x) == 0
1311           || TREE_INT_CST_HIGH (x) == -1);
1312 }
1313
1314 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1315    are in a list pointed to by VALS.  */
1316
1317 tree
1318 build_vector (tree type, tree vals)
1319 {
1320   tree v = make_node (VECTOR_CST);
1321   int over = 0;
1322   tree link;
1323   unsigned cnt = 0;
1324
1325   TREE_VECTOR_CST_ELTS (v) = vals;
1326   TREE_TYPE (v) = type;
1327
1328   /* Iterate through elements and check for overflow.  */
1329   for (link = vals; link; link = TREE_CHAIN (link))
1330     {
1331       tree value = TREE_VALUE (link);
1332       cnt++;
1333
1334       /* Don't crash if we get an address constant.  */
1335       if (!CONSTANT_CLASS_P (value))
1336         continue;
1337
1338       over |= TREE_OVERFLOW (value);
1339     }
1340
1341   gcc_assert (cnt == TYPE_VECTOR_SUBPARTS (type));
1342
1343   TREE_OVERFLOW (v) = over;
1344   return v;
1345 }
1346
1347 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1348    are extracted from V, a vector of CONSTRUCTOR_ELT.  */
1349
1350 tree
1351 build_vector_from_ctor (tree type, VEC(constructor_elt,gc) *v)
1352 {
1353   tree list = NULL_TREE;
1354   unsigned HOST_WIDE_INT idx;
1355   tree value;
1356
1357   FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1358     list = tree_cons (NULL_TREE, value, list);
1359   for (; idx < TYPE_VECTOR_SUBPARTS (type); ++idx)
1360     list = tree_cons (NULL_TREE,
1361                       build_zero_cst (TREE_TYPE (type)), list);
1362   return build_vector (type, nreverse (list));
1363 }
1364
1365 /* Build a vector of type VECTYPE where all the elements are SCs.  */
1366 tree
1367 build_vector_from_val (tree vectype, tree sc) 
1368 {
1369   int i, nunits = TYPE_VECTOR_SUBPARTS (vectype);
1370   VEC(constructor_elt, gc) *v = NULL;
1371
1372   if (sc == error_mark_node)
1373     return sc;
1374
1375   /* Verify that the vector type is suitable for SC.  Note that there
1376      is some inconsistency in the type-system with respect to restrict
1377      qualifications of pointers.  Vector types always have a main-variant
1378      element type and the qualification is applied to the vector-type.
1379      So TREE_TYPE (vector-type) does not return a properly qualified
1380      vector element-type.  */
1381   gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc)),
1382                                            TREE_TYPE (vectype)));
1383
1384   v = VEC_alloc (constructor_elt, gc, nunits);
1385   for (i = 0; i < nunits; ++i)
1386     CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, sc);
1387
1388   if (CONSTANT_CLASS_P (sc))
1389     return build_vector_from_ctor (vectype, v);
1390   else 
1391     return build_constructor (vectype, v);
1392 }
1393
1394 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1395    are in the VEC pointed to by VALS.  */
1396 tree
1397 build_constructor (tree type, VEC(constructor_elt,gc) *vals)
1398 {
1399   tree c = make_node (CONSTRUCTOR);
1400   unsigned int i;
1401   constructor_elt *elt;
1402   bool constant_p = true;
1403
1404   TREE_TYPE (c) = type;
1405   CONSTRUCTOR_ELTS (c) = vals;
1406
1407   FOR_EACH_VEC_ELT (constructor_elt, vals, i, elt)
1408     if (!TREE_CONSTANT (elt->value))
1409       {
1410         constant_p = false;
1411         break;
1412       }
1413
1414   TREE_CONSTANT (c) = constant_p;
1415
1416   return c;
1417 }
1418
1419 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1420    INDEX and VALUE.  */
1421 tree
1422 build_constructor_single (tree type, tree index, tree value)
1423 {
1424   VEC(constructor_elt,gc) *v;
1425   constructor_elt *elt;
1426
1427   v = VEC_alloc (constructor_elt, gc, 1);
1428   elt = VEC_quick_push (constructor_elt, v, NULL);
1429   elt->index = index;
1430   elt->value = value;
1431
1432   return build_constructor (type, v);
1433 }
1434
1435
1436 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1437    are in a list pointed to by VALS.  */
1438 tree
1439 build_constructor_from_list (tree type, tree vals)
1440 {
1441   tree t;
1442   VEC(constructor_elt,gc) *v = NULL;
1443
1444   if (vals)
1445     {
1446       v = VEC_alloc (constructor_elt, gc, list_length (vals));
1447       for (t = vals; t; t = TREE_CHAIN (t))
1448         CONSTRUCTOR_APPEND_ELT (v, TREE_PURPOSE (t), TREE_VALUE (t));
1449     }
1450
1451   return build_constructor (type, v);
1452 }
1453
1454 /* Return a new FIXED_CST node whose type is TYPE and value is F.  */
1455
1456 tree
1457 build_fixed (tree type, FIXED_VALUE_TYPE f)
1458 {
1459   tree v;
1460   FIXED_VALUE_TYPE *fp;
1461
1462   v = make_node (FIXED_CST);
1463   fp = ggc_alloc_fixed_value ();
1464   memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
1465
1466   TREE_TYPE (v) = type;
1467   TREE_FIXED_CST_PTR (v) = fp;
1468   return v;
1469 }
1470
1471 /* Return a new REAL_CST node whose type is TYPE and value is D.  */
1472
1473 tree
1474 build_real (tree type, REAL_VALUE_TYPE d)
1475 {
1476   tree v;
1477   REAL_VALUE_TYPE *dp;
1478   int overflow = 0;
1479
1480   /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1481      Consider doing it via real_convert now.  */
1482
1483   v = make_node (REAL_CST);
1484   dp = ggc_alloc_real_value ();
1485   memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
1486
1487   TREE_TYPE (v) = type;
1488   TREE_REAL_CST_PTR (v) = dp;
1489   TREE_OVERFLOW (v) = overflow;
1490   return v;
1491 }
1492
1493 /* Return a new REAL_CST node whose type is TYPE
1494    and whose value is the integer value of the INTEGER_CST node I.  */
1495
1496 REAL_VALUE_TYPE
1497 real_value_from_int_cst (const_tree type, const_tree i)
1498 {
1499   REAL_VALUE_TYPE d;
1500
1501   /* Clear all bits of the real value type so that we can later do
1502      bitwise comparisons to see if two values are the same.  */
1503   memset (&d, 0, sizeof d);
1504
1505   real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode,
1506                      TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i),
1507                      TYPE_UNSIGNED (TREE_TYPE (i)));
1508   return d;
1509 }
1510
1511 /* Given a tree representing an integer constant I, return a tree
1512    representing the same value as a floating-point constant of type TYPE.  */
1513
1514 tree
1515 build_real_from_int_cst (tree type, const_tree i)
1516 {
1517   tree v;
1518   int overflow = TREE_OVERFLOW (i);
1519
1520   v = build_real (type, real_value_from_int_cst (type, i));
1521
1522   TREE_OVERFLOW (v) |= overflow;
1523   return v;
1524 }
1525
1526 /* Return a newly constructed STRING_CST node whose value is
1527    the LEN characters at STR.
1528    Note that for a C string literal, LEN should include the trailing NUL.
1529    The TREE_TYPE is not initialized.  */
1530
1531 tree
1532 build_string (int len, const char *str)
1533 {
1534   tree s;
1535   size_t length;
1536
1537   /* Do not waste bytes provided by padding of struct tree_string.  */
1538   length = len + offsetof (struct tree_string, str) + 1;
1539
1540   record_node_allocation_statistics (STRING_CST, length);
1541
1542   s = ggc_alloc_tree_node (length);
1543
1544   memset (s, 0, sizeof (struct tree_typed));
1545   TREE_SET_CODE (s, STRING_CST);
1546   TREE_CONSTANT (s) = 1;
1547   TREE_STRING_LENGTH (s) = len;
1548   memcpy (s->string.str, str, len);
1549   s->string.str[len] = '\0';
1550
1551   return s;
1552 }
1553
1554 /* Return a newly constructed COMPLEX_CST node whose value is
1555    specified by the real and imaginary parts REAL and IMAG.
1556    Both REAL and IMAG should be constant nodes.  TYPE, if specified,
1557    will be the type of the COMPLEX_CST; otherwise a new type will be made.  */
1558
1559 tree
1560 build_complex (tree type, tree real, tree imag)
1561 {
1562   tree t = make_node (COMPLEX_CST);
1563
1564   TREE_REALPART (t) = real;
1565   TREE_IMAGPART (t) = imag;
1566   TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
1567   TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
1568   return t;
1569 }
1570
1571 /* Return a constant of arithmetic type TYPE which is the
1572    multiplicative identity of the set TYPE.  */
1573
1574 tree
1575 build_one_cst (tree type)
1576 {
1577   switch (TREE_CODE (type))
1578     {
1579     case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1580     case POINTER_TYPE: case REFERENCE_TYPE:
1581     case OFFSET_TYPE:
1582       return build_int_cst (type, 1);
1583
1584     case REAL_TYPE:
1585       return build_real (type, dconst1);
1586
1587     case FIXED_POINT_TYPE:
1588       /* We can only generate 1 for accum types.  */
1589       gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
1590       return build_fixed (type, FCONST1(TYPE_MODE (type)));
1591
1592     case VECTOR_TYPE:
1593       {
1594         tree scalar = build_one_cst (TREE_TYPE (type));
1595
1596         return build_vector_from_val (type, scalar);
1597       }
1598
1599     case COMPLEX_TYPE:
1600       return build_complex (type,
1601                             build_one_cst (TREE_TYPE (type)),
1602                             build_zero_cst (TREE_TYPE (type)));
1603
1604     default:
1605       gcc_unreachable ();
1606     }
1607 }
1608
1609 /* Build 0 constant of type TYPE.  This is used by constructor folding
1610    and thus the constant should be represented in memory by
1611    zero(es).  */
1612
1613 tree
1614 build_zero_cst (tree type)
1615 {
1616   switch (TREE_CODE (type))
1617     {
1618     case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1619     case POINTER_TYPE: case REFERENCE_TYPE:
1620     case OFFSET_TYPE:
1621       return build_int_cst (type, 0);
1622
1623     case REAL_TYPE:
1624       return build_real (type, dconst0);
1625
1626     case FIXED_POINT_TYPE:
1627       return build_fixed (type, FCONST0 (TYPE_MODE (type)));
1628
1629     case VECTOR_TYPE:
1630       {
1631         tree scalar = build_zero_cst (TREE_TYPE (type));
1632
1633         return build_vector_from_val (type, scalar);
1634       }
1635
1636     case COMPLEX_TYPE:
1637       {
1638         tree zero = build_zero_cst (TREE_TYPE (type));
1639
1640         return build_complex (type, zero, zero);
1641       }
1642
1643     default:
1644       if (!AGGREGATE_TYPE_P (type))
1645         return fold_convert (type, integer_zero_node);
1646       return build_constructor (type, NULL);
1647     }
1648 }
1649
1650
1651 /* Build a BINFO with LEN language slots.  */
1652
1653 tree
1654 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL)
1655 {
1656   tree t;
1657   size_t length = (offsetof (struct tree_binfo, base_binfos)
1658                    + VEC_embedded_size (tree, base_binfos));
1659
1660   record_node_allocation_statistics (TREE_BINFO, length);
1661
1662   t = ggc_alloc_zone_tree_node_stat (&tree_zone, length PASS_MEM_STAT);
1663
1664   memset (t, 0, offsetof (struct tree_binfo, base_binfos));
1665
1666   TREE_SET_CODE (t, TREE_BINFO);
1667
1668   VEC_embedded_init (tree, BINFO_BASE_BINFOS (t), base_binfos);
1669
1670   return t;
1671 }
1672
1673 /* Create a CASE_LABEL_EXPR tree node and return it.  */
1674
1675 tree
1676 build_case_label (tree low_value, tree high_value, tree label_decl)
1677 {
1678   tree t = make_node (CASE_LABEL_EXPR);
1679
1680   TREE_TYPE (t) = void_type_node;
1681   SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (label_decl));
1682
1683   CASE_LOW (t) = low_value;
1684   CASE_HIGH (t) = high_value;
1685   CASE_LABEL (t) = label_decl;
1686   CASE_CHAIN (t) = NULL_TREE;
1687
1688   return t;
1689 }
1690
1691 /* Build a newly constructed TREE_VEC node of length LEN.  */
1692
1693 tree
1694 make_tree_vec_stat (int len MEM_STAT_DECL)
1695 {
1696   tree t;
1697   int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
1698
1699   record_node_allocation_statistics (TREE_VEC, length);
1700
1701   t = ggc_alloc_zone_cleared_tree_node_stat (&tree_zone, length PASS_MEM_STAT);
1702
1703   TREE_SET_CODE (t, TREE_VEC);
1704   TREE_VEC_LENGTH (t) = len;
1705
1706   return t;
1707 }
1708 \f
1709 /* Return 1 if EXPR is the integer constant zero or a complex constant
1710    of zero.  */
1711
1712 int
1713 integer_zerop (const_tree expr)
1714 {
1715   STRIP_NOPS (expr);
1716
1717   return ((TREE_CODE (expr) == INTEGER_CST
1718            && TREE_INT_CST_LOW (expr) == 0
1719            && TREE_INT_CST_HIGH (expr) == 0)
1720           || (TREE_CODE (expr) == COMPLEX_CST
1721               && integer_zerop (TREE_REALPART (expr))
1722               && integer_zerop (TREE_IMAGPART (expr))));
1723 }
1724
1725 /* Return 1 if EXPR is the integer constant one or the corresponding
1726    complex constant.  */
1727
1728 int
1729 integer_onep (const_tree expr)
1730 {
1731   STRIP_NOPS (expr);
1732
1733   return ((TREE_CODE (expr) == INTEGER_CST
1734            && TREE_INT_CST_LOW (expr) == 1
1735            && TREE_INT_CST_HIGH (expr) == 0)
1736           || (TREE_CODE (expr) == COMPLEX_CST
1737               && integer_onep (TREE_REALPART (expr))
1738               && integer_zerop (TREE_IMAGPART (expr))));
1739 }
1740
1741 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
1742    it contains.  Likewise for the corresponding complex constant.  */
1743
1744 int
1745 integer_all_onesp (const_tree expr)
1746 {
1747   int prec;
1748   int uns;
1749
1750   STRIP_NOPS (expr);
1751
1752   if (TREE_CODE (expr) == COMPLEX_CST
1753       && integer_all_onesp (TREE_REALPART (expr))
1754       && integer_zerop (TREE_IMAGPART (expr)))
1755     return 1;
1756
1757   else if (TREE_CODE (expr) != INTEGER_CST)
1758     return 0;
1759
1760   uns = TYPE_UNSIGNED (TREE_TYPE (expr));
1761   if (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
1762       && TREE_INT_CST_HIGH (expr) == -1)
1763     return 1;
1764   if (!uns)
1765     return 0;
1766
1767   prec = TYPE_PRECISION (TREE_TYPE (expr));
1768   if (prec >= HOST_BITS_PER_WIDE_INT)
1769     {
1770       HOST_WIDE_INT high_value;
1771       int shift_amount;
1772
1773       shift_amount = prec - HOST_BITS_PER_WIDE_INT;
1774
1775       /* Can not handle precisions greater than twice the host int size.  */
1776       gcc_assert (shift_amount <= HOST_BITS_PER_WIDE_INT);
1777       if (shift_amount == HOST_BITS_PER_WIDE_INT)
1778         /* Shifting by the host word size is undefined according to the ANSI
1779            standard, so we must handle this as a special case.  */
1780         high_value = -1;
1781       else
1782         high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
1783
1784       return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
1785               && TREE_INT_CST_HIGH (expr) == high_value);
1786     }
1787   else
1788     return TREE_INT_CST_LOW (expr) == ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
1789 }
1790
1791 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1792    one bit on).  */
1793
1794 int
1795 integer_pow2p (const_tree expr)
1796 {
1797   int prec;
1798   HOST_WIDE_INT high, low;
1799
1800   STRIP_NOPS (expr);
1801
1802   if (TREE_CODE (expr) == COMPLEX_CST
1803       && integer_pow2p (TREE_REALPART (expr))
1804       && integer_zerop (TREE_IMAGPART (expr)))
1805     return 1;
1806
1807   if (TREE_CODE (expr) != INTEGER_CST)
1808     return 0;
1809
1810   prec = TYPE_PRECISION (TREE_TYPE (expr));
1811   high = TREE_INT_CST_HIGH (expr);
1812   low = TREE_INT_CST_LOW (expr);
1813
1814   /* First clear all bits that are beyond the type's precision in case
1815      we've been sign extended.  */
1816
1817   if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1818     ;
1819   else if (prec > HOST_BITS_PER_WIDE_INT)
1820     high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1821   else
1822     {
1823       high = 0;
1824       if (prec < HOST_BITS_PER_WIDE_INT)
1825         low &= ~((HOST_WIDE_INT) (-1) << prec);
1826     }
1827
1828   if (high == 0 && low == 0)
1829     return 0;
1830
1831   return ((high == 0 && (low & (low - 1)) == 0)
1832           || (low == 0 && (high & (high - 1)) == 0));
1833 }
1834
1835 /* Return 1 if EXPR is an integer constant other than zero or a
1836    complex constant other than zero.  */
1837
1838 int
1839 integer_nonzerop (const_tree expr)
1840 {
1841   STRIP_NOPS (expr);
1842
1843   return ((TREE_CODE (expr) == INTEGER_CST
1844            && (TREE_INT_CST_LOW (expr) != 0
1845                || TREE_INT_CST_HIGH (expr) != 0))
1846           || (TREE_CODE (expr) == COMPLEX_CST
1847               && (integer_nonzerop (TREE_REALPART (expr))
1848                   || integer_nonzerop (TREE_IMAGPART (expr)))));
1849 }
1850
1851 /* Return 1 if EXPR is the fixed-point constant zero.  */
1852
1853 int
1854 fixed_zerop (const_tree expr)
1855 {
1856   return (TREE_CODE (expr) == FIXED_CST
1857           && double_int_zero_p (TREE_FIXED_CST (expr).data));
1858 }
1859
1860 /* Return the power of two represented by a tree node known to be a
1861    power of two.  */
1862
1863 int
1864 tree_log2 (const_tree expr)
1865 {
1866   int prec;
1867   HOST_WIDE_INT high, low;
1868
1869   STRIP_NOPS (expr);
1870
1871   if (TREE_CODE (expr) == COMPLEX_CST)
1872     return tree_log2 (TREE_REALPART (expr));
1873
1874   prec = TYPE_PRECISION (TREE_TYPE (expr));
1875   high = TREE_INT_CST_HIGH (expr);
1876   low = TREE_INT_CST_LOW (expr);
1877
1878   /* First clear all bits that are beyond the type's precision in case
1879      we've been sign extended.  */
1880
1881   if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1882     ;
1883   else if (prec > HOST_BITS_PER_WIDE_INT)
1884     high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1885   else
1886     {
1887       high = 0;
1888       if (prec < HOST_BITS_PER_WIDE_INT)
1889         low &= ~((HOST_WIDE_INT) (-1) << prec);
1890     }
1891
1892   return (high != 0 ? HOST_BITS_PER_WIDE_INT + exact_log2 (high)
1893           : exact_log2 (low));
1894 }
1895
1896 /* Similar, but return the largest integer Y such that 2 ** Y is less
1897    than or equal to EXPR.  */
1898
1899 int
1900 tree_floor_log2 (const_tree expr)
1901 {
1902   int prec;
1903   HOST_WIDE_INT high, low;
1904
1905   STRIP_NOPS (expr);
1906
1907   if (TREE_CODE (expr) == COMPLEX_CST)
1908     return tree_log2 (TREE_REALPART (expr));
1909
1910   prec = TYPE_PRECISION (TREE_TYPE (expr));
1911   high = TREE_INT_CST_HIGH (expr);
1912   low = TREE_INT_CST_LOW (expr);
1913
1914   /* First clear all bits that are beyond the type's precision in case
1915      we've been sign extended.  Ignore if type's precision hasn't been set
1916      since what we are doing is setting it.  */
1917
1918   if (prec == 2 * HOST_BITS_PER_WIDE_INT || prec == 0)
1919     ;
1920   else if (prec > HOST_BITS_PER_WIDE_INT)
1921     high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1922   else
1923     {
1924       high = 0;
1925       if (prec < HOST_BITS_PER_WIDE_INT)
1926         low &= ~((HOST_WIDE_INT) (-1) << prec);
1927     }
1928
1929   return (high != 0 ? HOST_BITS_PER_WIDE_INT + floor_log2 (high)
1930           : floor_log2 (low));
1931 }
1932
1933 /* Return 1 if EXPR is the real constant zero.  Trailing zeroes matter for
1934    decimal float constants, so don't return 1 for them.  */
1935
1936 int
1937 real_zerop (const_tree expr)
1938 {
1939   STRIP_NOPS (expr);
1940
1941   return ((TREE_CODE (expr) == REAL_CST
1942            && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0)
1943            && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
1944           || (TREE_CODE (expr) == COMPLEX_CST
1945               && real_zerop (TREE_REALPART (expr))
1946               && real_zerop (TREE_IMAGPART (expr))));
1947 }
1948
1949 /* Return 1 if EXPR is the real constant one in real or complex form.
1950    Trailing zeroes matter for decimal float constants, so don't return
1951    1 for them.  */
1952
1953 int
1954 real_onep (const_tree expr)
1955 {
1956   STRIP_NOPS (expr);
1957
1958   return ((TREE_CODE (expr) == REAL_CST
1959            && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1)
1960            && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
1961           || (TREE_CODE (expr) == COMPLEX_CST
1962               && real_onep (TREE_REALPART (expr))
1963               && real_zerop (TREE_IMAGPART (expr))));
1964 }
1965
1966 /* Return 1 if EXPR is the real constant two.  Trailing zeroes matter
1967    for decimal float constants, so don't return 1 for them.  */
1968
1969 int
1970 real_twop (const_tree expr)
1971 {
1972   STRIP_NOPS (expr);
1973
1974   return ((TREE_CODE (expr) == REAL_CST
1975            && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2)
1976            && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
1977           || (TREE_CODE (expr) == COMPLEX_CST
1978               && real_twop (TREE_REALPART (expr))
1979               && real_zerop (TREE_IMAGPART (expr))));
1980 }
1981
1982 /* Return 1 if EXPR is the real constant minus one.  Trailing zeroes
1983    matter for decimal float constants, so don't return 1 for them.  */
1984
1985 int
1986 real_minus_onep (const_tree expr)
1987 {
1988   STRIP_NOPS (expr);
1989
1990   return ((TREE_CODE (expr) == REAL_CST
1991            && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconstm1)
1992            && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
1993           || (TREE_CODE (expr) == COMPLEX_CST
1994               && real_minus_onep (TREE_REALPART (expr))
1995               && real_zerop (TREE_IMAGPART (expr))));
1996 }
1997
1998 /* Nonzero if EXP is a constant or a cast of a constant.  */
1999
2000 int
2001 really_constant_p (const_tree exp)
2002 {
2003   /* This is not quite the same as STRIP_NOPS.  It does more.  */
2004   while (CONVERT_EXPR_P (exp)
2005          || TREE_CODE (exp) == NON_LVALUE_EXPR)
2006     exp = TREE_OPERAND (exp, 0);
2007   return TREE_CONSTANT (exp);
2008 }
2009 \f
2010 /* Return first list element whose TREE_VALUE is ELEM.
2011    Return 0 if ELEM is not in LIST.  */
2012
2013 tree
2014 value_member (tree elem, tree list)
2015 {
2016   while (list)
2017     {
2018       if (elem == TREE_VALUE (list))
2019         return list;
2020       list = TREE_CHAIN (list);
2021     }
2022   return NULL_TREE;
2023 }
2024
2025 /* Return first list element whose TREE_PURPOSE is ELEM.
2026    Return 0 if ELEM is not in LIST.  */
2027
2028 tree
2029 purpose_member (const_tree elem, tree list)
2030 {
2031   while (list)
2032     {
2033       if (elem == TREE_PURPOSE (list))
2034         return list;
2035       list = TREE_CHAIN (list);
2036     }
2037   return NULL_TREE;
2038 }
2039
2040 /* Return true if ELEM is in V.  */
2041
2042 bool
2043 vec_member (const_tree elem, VEC(tree,gc) *v)
2044 {
2045   unsigned ix;
2046   tree t;
2047   FOR_EACH_VEC_ELT (tree, v, ix, t)
2048     if (elem == t)
2049       return true;
2050   return false;
2051 }
2052
2053 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2054    NULL_TREE.  */
2055
2056 tree
2057 chain_index (int idx, tree chain)
2058 {
2059   for (; chain && idx > 0; --idx)
2060     chain = TREE_CHAIN (chain);
2061   return chain;
2062 }
2063
2064 /* Return nonzero if ELEM is part of the chain CHAIN.  */
2065
2066 int
2067 chain_member (const_tree elem, const_tree chain)
2068 {
2069   while (chain)
2070     {
2071       if (elem == chain)
2072         return 1;
2073       chain = DECL_CHAIN (chain);
2074     }
2075
2076   return 0;
2077 }
2078
2079 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2080    We expect a null pointer to mark the end of the chain.
2081    This is the Lisp primitive `length'.  */
2082
2083 int
2084 list_length (const_tree t)
2085 {
2086   const_tree p = t;
2087 #ifdef ENABLE_TREE_CHECKING
2088   const_tree q = t;
2089 #endif
2090   int len = 0;
2091
2092   while (p)
2093     {
2094       p = TREE_CHAIN (p);
2095 #ifdef ENABLE_TREE_CHECKING
2096       if (len % 2)
2097         q = TREE_CHAIN (q);
2098       gcc_assert (p != q);
2099 #endif
2100       len++;
2101     }
2102
2103   return len;
2104 }
2105
2106 /* Returns the number of FIELD_DECLs in TYPE.  */
2107
2108 int
2109 fields_length (const_tree type)
2110 {
2111   tree t = TYPE_FIELDS (type);
2112   int count = 0;
2113
2114   for (; t; t = DECL_CHAIN (t))
2115     if (TREE_CODE (t) == FIELD_DECL)
2116       ++count;
2117
2118   return count;
2119 }
2120
2121 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2122    UNION_TYPE TYPE, or NULL_TREE if none.  */
2123
2124 tree
2125 first_field (const_tree type)
2126 {
2127   tree t = TYPE_FIELDS (type);
2128   while (t && TREE_CODE (t) != FIELD_DECL)
2129     t = TREE_CHAIN (t);
2130   return t;
2131 }
2132
2133 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2134    by modifying the last node in chain 1 to point to chain 2.
2135    This is the Lisp primitive `nconc'.  */
2136
2137 tree
2138 chainon (tree op1, tree op2)
2139 {
2140   tree t1;
2141
2142   if (!op1)
2143     return op2;
2144   if (!op2)
2145     return op1;
2146
2147   for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
2148     continue;
2149   TREE_CHAIN (t1) = op2;
2150
2151 #ifdef ENABLE_TREE_CHECKING
2152   {
2153     tree t2;
2154     for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
2155       gcc_assert (t2 != t1);
2156   }
2157 #endif
2158
2159   return op1;
2160 }
2161
2162 /* Return the last node in a chain of nodes (chained through TREE_CHAIN).  */
2163
2164 tree
2165 tree_last (tree chain)
2166 {
2167   tree next;
2168   if (chain)
2169     while ((next = TREE_CHAIN (chain)))
2170       chain = next;
2171   return chain;
2172 }
2173
2174 /* Reverse the order of elements in the chain T,
2175    and return the new head of the chain (old last element).  */
2176
2177 tree
2178 nreverse (tree t)
2179 {
2180   tree prev = 0, decl, next;
2181   for (decl = t; decl; decl = next)
2182     {
2183       /* We shouldn't be using this function to reverse BLOCK chains; we
2184          have blocks_nreverse for that.  */
2185       gcc_checking_assert (TREE_CODE (decl) != BLOCK);
2186       next = TREE_CHAIN (decl);
2187       TREE_CHAIN (decl) = prev;
2188       prev = decl;
2189     }
2190   return prev;
2191 }
2192 \f
2193 /* Return a newly created TREE_LIST node whose
2194    purpose and value fields are PARM and VALUE.  */
2195
2196 tree
2197 build_tree_list_stat (tree parm, tree value MEM_STAT_DECL)
2198 {
2199   tree t = make_node_stat (TREE_LIST PASS_MEM_STAT);
2200   TREE_PURPOSE (t) = parm;
2201   TREE_VALUE (t) = value;
2202   return t;
2203 }
2204
2205 /* Build a chain of TREE_LIST nodes from a vector.  */
2206
2207 tree
2208 build_tree_list_vec_stat (const VEC(tree,gc) *vec MEM_STAT_DECL)
2209 {
2210   tree ret = NULL_TREE;
2211   tree *pp = &ret;
2212   unsigned int i;
2213   tree t;
2214   FOR_EACH_VEC_ELT (tree, vec, i, t)
2215     {
2216       *pp = build_tree_list_stat (NULL, t PASS_MEM_STAT);
2217       pp = &TREE_CHAIN (*pp);
2218     }
2219   return ret;
2220 }
2221
2222 /* Return a newly created TREE_LIST node whose
2223    purpose and value fields are PURPOSE and VALUE
2224    and whose TREE_CHAIN is CHAIN.  */
2225
2226 tree 
2227 tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
2228 {
2229   tree node;
2230
2231   node = ggc_alloc_zone_tree_node_stat (&tree_zone, sizeof (struct tree_list)
2232                                         PASS_MEM_STAT);
2233   memset (node, 0, sizeof (struct tree_common));
2234
2235   record_node_allocation_statistics (TREE_LIST, sizeof (struct tree_list));
2236
2237   TREE_SET_CODE (node, TREE_LIST);
2238   TREE_CHAIN (node) = chain;
2239   TREE_PURPOSE (node) = purpose;
2240   TREE_VALUE (node) = value;
2241   return node;
2242 }
2243
2244 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2245    trees.  */
2246
2247 VEC(tree,gc) *
2248 ctor_to_vec (tree ctor)
2249 {
2250   VEC(tree, gc) *vec = VEC_alloc (tree, gc, CONSTRUCTOR_NELTS (ctor));
2251   unsigned int ix;
2252   tree val;
2253
2254   FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
2255     VEC_quick_push (tree, vec, val);
2256
2257   return vec;
2258 }
2259 \f
2260 /* Return the size nominally occupied by an object of type TYPE
2261    when it resides in memory.  The value is measured in units of bytes,
2262    and its data type is that normally used for type sizes
2263    (which is the first type created by make_signed_type or
2264    make_unsigned_type).  */
2265
2266 tree
2267 size_in_bytes (const_tree type)
2268 {
2269   tree t;
2270
2271   if (type == error_mark_node)
2272     return integer_zero_node;
2273
2274   type = TYPE_MAIN_VARIANT (type);
2275   t = TYPE_SIZE_UNIT (type);
2276
2277   if (t == 0)
2278     {
2279       lang_hooks.types.incomplete_type_error (NULL_TREE, type);
2280       return size_zero_node;
2281     }
2282
2283   return t;
2284 }
2285
2286 /* Return the size of TYPE (in bytes) as a wide integer
2287    or return -1 if the size can vary or is larger than an integer.  */
2288
2289 HOST_WIDE_INT
2290 int_size_in_bytes (const_tree type)
2291 {
2292   tree t;
2293
2294   if (type == error_mark_node)
2295     return 0;
2296
2297   type = TYPE_MAIN_VARIANT (type);
2298   t = TYPE_SIZE_UNIT (type);
2299   if (t == 0
2300       || TREE_CODE (t) != INTEGER_CST
2301       || TREE_INT_CST_HIGH (t) != 0
2302       /* If the result would appear negative, it's too big to represent.  */
2303       || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
2304     return -1;
2305
2306   return TREE_INT_CST_LOW (t);
2307 }
2308
2309 /* Return the maximum size of TYPE (in bytes) as a wide integer
2310    or return -1 if the size can vary or is larger than an integer.  */
2311
2312 HOST_WIDE_INT
2313 max_int_size_in_bytes (const_tree type)
2314 {
2315   HOST_WIDE_INT size = -1;
2316   tree size_tree;
2317
2318   /* If this is an array type, check for a possible MAX_SIZE attached.  */
2319
2320   if (TREE_CODE (type) == ARRAY_TYPE)
2321     {
2322       size_tree = TYPE_ARRAY_MAX_SIZE (type);
2323
2324       if (size_tree && host_integerp (size_tree, 1))
2325         size = tree_low_cst (size_tree, 1);
2326     }
2327
2328   /* If we still haven't been able to get a size, see if the language
2329      can compute a maximum size.  */
2330
2331   if (size == -1)
2332     {
2333       size_tree = lang_hooks.types.max_size (type);
2334
2335       if (size_tree && host_integerp (size_tree, 1))
2336         size = tree_low_cst (size_tree, 1);
2337     }
2338
2339   return size;
2340 }
2341
2342 /* Returns a tree for the size of EXP in bytes.  */
2343
2344 tree
2345 tree_expr_size (const_tree exp)
2346 {
2347   if (DECL_P (exp)
2348       && DECL_SIZE_UNIT (exp) != 0)
2349     return DECL_SIZE_UNIT (exp);
2350   else
2351     return size_in_bytes (TREE_TYPE (exp));
2352 }
2353 \f
2354 /* Return the bit position of FIELD, in bits from the start of the record.
2355    This is a tree of type bitsizetype.  */
2356
2357 tree
2358 bit_position (const_tree field)
2359 {
2360   return bit_from_pos (DECL_FIELD_OFFSET (field),
2361                        DECL_FIELD_BIT_OFFSET (field));
2362 }
2363
2364 /* Likewise, but return as an integer.  It must be representable in
2365    that way (since it could be a signed value, we don't have the
2366    option of returning -1 like int_size_in_byte can.  */
2367
2368 HOST_WIDE_INT
2369 int_bit_position (const_tree field)
2370 {
2371   return tree_low_cst (bit_position (field), 0);
2372 }
2373 \f
2374 /* Return the byte position of FIELD, in bytes from the start of the record.
2375    This is a tree of type sizetype.  */
2376
2377 tree
2378 byte_position (const_tree field)
2379 {
2380   return byte_from_pos (DECL_FIELD_OFFSET (field),
2381                         DECL_FIELD_BIT_OFFSET (field));
2382 }
2383
2384 /* Likewise, but return as an integer.  It must be representable in
2385    that way (since it could be a signed value, we don't have the
2386    option of returning -1 like int_size_in_byte can.  */
2387
2388 HOST_WIDE_INT
2389 int_byte_position (const_tree field)
2390 {
2391   return tree_low_cst (byte_position (field), 0);
2392 }
2393 \f
2394 /* Return the strictest alignment, in bits, that T is known to have.  */
2395
2396 unsigned int
2397 expr_align (const_tree t)
2398 {
2399   unsigned int align0, align1;
2400
2401   switch (TREE_CODE (t))
2402     {
2403     CASE_CONVERT:  case NON_LVALUE_EXPR:
2404       /* If we have conversions, we know that the alignment of the
2405          object must meet each of the alignments of the types.  */
2406       align0 = expr_align (TREE_OPERAND (t, 0));
2407       align1 = TYPE_ALIGN (TREE_TYPE (t));
2408       return MAX (align0, align1);
2409
2410     case SAVE_EXPR:         case COMPOUND_EXPR:       case MODIFY_EXPR:
2411     case INIT_EXPR:         case TARGET_EXPR:         case WITH_CLEANUP_EXPR:
2412     case CLEANUP_POINT_EXPR:
2413       /* These don't change the alignment of an object.  */
2414       return expr_align (TREE_OPERAND (t, 0));
2415
2416     case COND_EXPR:
2417       /* The best we can do is say that the alignment is the least aligned
2418          of the two arms.  */
2419       align0 = expr_align (TREE_OPERAND (t, 1));
2420       align1 = expr_align (TREE_OPERAND (t, 2));
2421       return MIN (align0, align1);
2422
2423       /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2424          meaningfully, it's always 1.  */
2425     case LABEL_DECL:     case CONST_DECL:
2426     case VAR_DECL:       case PARM_DECL:   case RESULT_DECL:
2427     case FUNCTION_DECL:
2428       gcc_assert (DECL_ALIGN (t) != 0);
2429       return DECL_ALIGN (t);
2430
2431     default:
2432       break;
2433     }
2434
2435   /* Otherwise take the alignment from that of the type.  */
2436   return TYPE_ALIGN (TREE_TYPE (t));
2437 }
2438 \f
2439 /* Return, as a tree node, the number of elements for TYPE (which is an
2440    ARRAY_TYPE) minus one. This counts only elements of the top array.  */
2441
2442 tree
2443 array_type_nelts (const_tree type)
2444 {
2445   tree index_type, min, max;
2446
2447   /* If they did it with unspecified bounds, then we should have already
2448      given an error about it before we got here.  */
2449   if (! TYPE_DOMAIN (type))
2450     return error_mark_node;
2451
2452   index_type = TYPE_DOMAIN (type);
2453   min = TYPE_MIN_VALUE (index_type);
2454   max = TYPE_MAX_VALUE (index_type);
2455
2456   /* TYPE_MAX_VALUE may not be set if the array has unknown length.  */
2457   if (!max)
2458     return error_mark_node;
2459
2460   return (integer_zerop (min)
2461           ? max
2462           : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
2463 }
2464 \f
2465 /* If arg is static -- a reference to an object in static storage -- then
2466    return the object.  This is not the same as the C meaning of `static'.
2467    If arg isn't static, return NULL.  */
2468
2469 tree
2470 staticp (tree arg)
2471 {
2472   switch (TREE_CODE (arg))
2473     {
2474     case FUNCTION_DECL:
2475       /* Nested functions are static, even though taking their address will
2476          involve a trampoline as we unnest the nested function and create
2477          the trampoline on the tree level.  */
2478       return arg;
2479
2480     case VAR_DECL:
2481       return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2482               && ! DECL_THREAD_LOCAL_P (arg)
2483               && ! DECL_DLLIMPORT_P (arg)
2484               ? arg : NULL);
2485
2486     case CONST_DECL:
2487       return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2488               ? arg : NULL);
2489
2490     case CONSTRUCTOR:
2491       return TREE_STATIC (arg) ? arg : NULL;
2492
2493     case LABEL_DECL:
2494     case STRING_CST:
2495       return arg;
2496
2497     case COMPONENT_REF:
2498       /* If the thing being referenced is not a field, then it is
2499          something language specific.  */
2500       gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
2501
2502       /* If we are referencing a bitfield, we can't evaluate an
2503          ADDR_EXPR at compile time and so it isn't a constant.  */
2504       if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
2505         return NULL;
2506
2507       return staticp (TREE_OPERAND (arg, 0));
2508
2509     case BIT_FIELD_REF:
2510       return NULL;
2511
2512     case INDIRECT_REF:
2513       return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
2514
2515     case ARRAY_REF:
2516     case ARRAY_RANGE_REF:
2517       if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
2518           && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
2519         return staticp (TREE_OPERAND (arg, 0));
2520       else
2521         return NULL;
2522
2523     case COMPOUND_LITERAL_EXPR:
2524       return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
2525
2526     default:
2527       return NULL;
2528     }
2529 }
2530
2531 \f
2532
2533
2534 /* Return whether OP is a DECL whose address is function-invariant.  */
2535
2536 bool
2537 decl_address_invariant_p (const_tree op)
2538 {
2539   /* The conditions below are slightly less strict than the one in
2540      staticp.  */
2541
2542   switch (TREE_CODE (op))
2543     {
2544     case PARM_DECL:
2545     case RESULT_DECL:
2546     case LABEL_DECL:
2547     case FUNCTION_DECL:
2548       return true;
2549
2550     case VAR_DECL:
2551       if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
2552           || DECL_THREAD_LOCAL_P (op)
2553           || DECL_CONTEXT (op) == current_function_decl
2554           || decl_function_context (op) == current_function_decl)
2555         return true;
2556       break;
2557
2558     case CONST_DECL:
2559       if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
2560           || decl_function_context (op) == current_function_decl)
2561         return true;
2562       break;
2563
2564     default:
2565       break;
2566     }
2567
2568   return false;
2569 }
2570
2571 /* Return whether OP is a DECL whose address is interprocedural-invariant.  */
2572
2573 bool
2574 decl_address_ip_invariant_p (const_tree op)
2575 {
2576   /* The conditions below are slightly less strict than the one in
2577      staticp.  */
2578
2579   switch (TREE_CODE (op))
2580     {
2581     case LABEL_DECL:
2582     case FUNCTION_DECL:
2583     case STRING_CST:
2584       return true;
2585
2586     case VAR_DECL:
2587       if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
2588            && !DECL_DLLIMPORT_P (op))
2589           || DECL_THREAD_LOCAL_P (op))
2590         return true;
2591       break;
2592
2593     case CONST_DECL:
2594       if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
2595         return true;
2596       break;
2597
2598     default:
2599       break;
2600     }
2601
2602   return false;
2603 }
2604
2605
2606 /* Return true if T is function-invariant (internal function, does
2607    not handle arithmetic; that's handled in skip_simple_arithmetic and
2608    tree_invariant_p).  */
2609
2610 static bool tree_invariant_p (tree t);
2611
2612 static bool
2613 tree_invariant_p_1 (tree t)
2614 {
2615   tree op;
2616
2617   if (TREE_CONSTANT (t)
2618       || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
2619     return true;
2620
2621   switch (TREE_CODE (t))
2622     {
2623     case SAVE_EXPR:
2624       return true;
2625
2626     case ADDR_EXPR:
2627       op = TREE_OPERAND (t, 0);
2628       while (handled_component_p (op))
2629         {
2630           switch (TREE_CODE (op))
2631             {
2632             case ARRAY_REF:
2633             case ARRAY_RANGE_REF:
2634               if (!tree_invariant_p (TREE_OPERAND (op, 1))
2635                   || TREE_OPERAND (op, 2) != NULL_TREE
2636                   || TREE_OPERAND (op, 3) != NULL_TREE)
2637                 return false;
2638               break;
2639
2640             case COMPONENT_REF:
2641               if (TREE_OPERAND (op, 2) != NULL_TREE)
2642                 return false;
2643               break;
2644
2645             default:;
2646             }
2647           op = TREE_OPERAND (op, 0);
2648         }
2649
2650       return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
2651
2652     default:
2653       break;
2654     }
2655
2656   return false;
2657 }
2658
2659 /* Return true if T is function-invariant.  */
2660
2661 static bool
2662 tree_invariant_p (tree t)
2663 {
2664   tree inner = skip_simple_arithmetic (t);
2665   return tree_invariant_p_1 (inner);
2666 }
2667
2668 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
2669    Do this to any expression which may be used in more than one place,
2670    but must be evaluated only once.
2671
2672    Normally, expand_expr would reevaluate the expression each time.
2673    Calling save_expr produces something that is evaluated and recorded
2674    the first time expand_expr is called on it.  Subsequent calls to
2675    expand_expr just reuse the recorded value.
2676
2677    The call to expand_expr that generates code that actually computes
2678    the value is the first call *at compile time*.  Subsequent calls
2679    *at compile time* generate code to use the saved value.
2680    This produces correct result provided that *at run time* control
2681    always flows through the insns made by the first expand_expr
2682    before reaching the other places where the save_expr was evaluated.
2683    You, the caller of save_expr, must make sure this is so.
2684
2685    Constants, and certain read-only nodes, are returned with no
2686    SAVE_EXPR because that is safe.  Expressions containing placeholders
2687    are not touched; see tree.def for an explanation of what these
2688    are used for.  */
2689
2690 tree
2691 save_expr (tree expr)
2692 {
2693   tree t = fold (expr);
2694   tree inner;
2695
2696   /* If the tree evaluates to a constant, then we don't want to hide that
2697      fact (i.e. this allows further folding, and direct checks for constants).
2698      However, a read-only object that has side effects cannot be bypassed.
2699      Since it is no problem to reevaluate literals, we just return the
2700      literal node.  */
2701   inner = skip_simple_arithmetic (t);
2702   if (TREE_CODE (inner) == ERROR_MARK)
2703     return inner;
2704
2705   if (tree_invariant_p_1 (inner))
2706     return t;
2707
2708   /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
2709      it means that the size or offset of some field of an object depends on
2710      the value within another field.
2711
2712      Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
2713      and some variable since it would then need to be both evaluated once and
2714      evaluated more than once.  Front-ends must assure this case cannot
2715      happen by surrounding any such subexpressions in their own SAVE_EXPR
2716      and forcing evaluation at the proper time.  */
2717   if (contains_placeholder_p (inner))
2718     return t;
2719
2720   t = build1 (SAVE_EXPR, TREE_TYPE (expr), t);
2721   SET_EXPR_LOCATION (t, EXPR_LOCATION (expr));
2722
2723   /* This expression might be placed ahead of a jump to ensure that the
2724      value was computed on both sides of the jump.  So make sure it isn't
2725      eliminated as dead.  */
2726   TREE_SIDE_EFFECTS (t) = 1;
2727   return t;
2728 }
2729
2730 /* Look inside EXPR and into any simple arithmetic operations.  Return
2731    the innermost non-arithmetic node.  */
2732
2733 tree
2734 skip_simple_arithmetic (tree expr)
2735 {
2736   tree inner;
2737
2738   /* We don't care about whether this can be used as an lvalue in this
2739      context.  */
2740   while (TREE_CODE (expr) == NON_LVALUE_EXPR)
2741     expr = TREE_OPERAND (expr, 0);
2742
2743   /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
2744      a constant, it will be more efficient to not make another SAVE_EXPR since
2745      it will allow better simplification and GCSE will be able to merge the
2746      computations if they actually occur.  */
2747   inner = expr;
2748   while (1)
2749     {
2750       if (UNARY_CLASS_P (inner))
2751         inner = TREE_OPERAND (inner, 0);
2752       else if (BINARY_CLASS_P (inner))
2753         {
2754           if (tree_invariant_p (TREE_OPERAND (inner, 1)))
2755             inner = TREE_OPERAND (inner, 0);
2756           else if (tree_invariant_p (TREE_OPERAND (inner, 0)))
2757             inner = TREE_OPERAND (inner, 1);
2758           else
2759             break;
2760         }
2761       else
2762         break;
2763     }
2764
2765   return inner;
2766 }
2767
2768
2769 /* Return which tree structure is used by T.  */
2770
2771 enum tree_node_structure_enum
2772 tree_node_structure (const_tree t)
2773 {
2774   const enum tree_code code = TREE_CODE (t);
2775   return tree_node_structure_for_code (code);
2776 }
2777
2778 /* Set various status flags when building a CALL_EXPR object T.  */
2779
2780 static void
2781 process_call_operands (tree t)
2782 {
2783   bool side_effects = TREE_SIDE_EFFECTS (t);
2784   bool read_only = false;
2785   int i = call_expr_flags (t);
2786
2787   /* Calls have side-effects, except those to const or pure functions.  */
2788   if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
2789     side_effects = true;
2790   /* Propagate TREE_READONLY of arguments for const functions.  */
2791   if (i & ECF_CONST)
2792     read_only = true;
2793
2794   if (!side_effects || read_only)
2795     for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
2796       {
2797         tree op = TREE_OPERAND (t, i);
2798         if (op && TREE_SIDE_EFFECTS (op))
2799           side_effects = true;
2800         if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
2801           read_only = false;
2802       }
2803
2804   TREE_SIDE_EFFECTS (t) = side_effects;
2805   TREE_READONLY (t) = read_only;
2806 }
2807 \f
2808 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
2809    size or offset that depends on a field within a record.  */
2810
2811 bool
2812 contains_placeholder_p (const_tree exp)
2813 {
2814   enum tree_code code;
2815
2816   if (!exp)
2817     return 0;
2818
2819   code = TREE_CODE (exp);
2820   if (code == PLACEHOLDER_EXPR)
2821     return 1;
2822
2823   switch (TREE_CODE_CLASS (code))
2824     {
2825     case tcc_reference:
2826       /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2827          position computations since they will be converted into a
2828          WITH_RECORD_EXPR involving the reference, which will assume
2829          here will be valid.  */
2830       return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
2831
2832     case tcc_exceptional:
2833       if (code == TREE_LIST)
2834         return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
2835                 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
2836       break;
2837
2838     case tcc_unary:
2839     case tcc_binary:
2840     case tcc_comparison:
2841     case tcc_expression:
2842       switch (code)
2843         {
2844         case COMPOUND_EXPR:
2845           /* Ignoring the first operand isn't quite right, but works best.  */
2846           return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
2847
2848         case COND_EXPR:
2849           return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2850                   || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
2851                   || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
2852
2853         case SAVE_EXPR:
2854           /* The save_expr function never wraps anything containing
2855              a PLACEHOLDER_EXPR. */
2856           return 0;
2857
2858         default:
2859           break;
2860         }
2861
2862       switch (TREE_CODE_LENGTH (code))
2863         {
2864         case 1:
2865           return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
2866         case 2:
2867           return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2868                   || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
2869         default:
2870           return 0;
2871         }
2872
2873     case tcc_vl_exp:
2874       switch (code)
2875         {
2876         case CALL_EXPR:
2877           {
2878             const_tree arg;
2879             const_call_expr_arg_iterator iter;
2880             FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
2881               if (CONTAINS_PLACEHOLDER_P (arg))
2882                 return 1;
2883             return 0;
2884           }
2885         default:
2886           return 0;
2887         }
2888
2889     default:
2890       return 0;
2891     }
2892   return 0;
2893 }
2894
2895 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
2896    directly.  This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
2897    field positions.  */
2898
2899 static bool
2900 type_contains_placeholder_1 (const_tree type)
2901 {
2902   /* If the size contains a placeholder or the parent type (component type in
2903      the case of arrays) type involves a placeholder, this type does.  */
2904   if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
2905       || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
2906       || (!POINTER_TYPE_P (type)
2907           && TREE_TYPE (type)
2908           && type_contains_placeholder_p (TREE_TYPE (type))))
2909     return true;
2910
2911   /* Now do type-specific checks.  Note that the last part of the check above
2912      greatly limits what we have to do below.  */
2913   switch (TREE_CODE (type))
2914     {
2915     case VOID_TYPE:
2916     case COMPLEX_TYPE:
2917     case ENUMERAL_TYPE:
2918     case BOOLEAN_TYPE:
2919     case POINTER_TYPE:
2920     case OFFSET_TYPE:
2921     case REFERENCE_TYPE:
2922     case METHOD_TYPE:
2923     case FUNCTION_TYPE:
2924     case VECTOR_TYPE:
2925       return false;
2926
2927     case INTEGER_TYPE:
2928     case REAL_TYPE:
2929     case FIXED_POINT_TYPE:
2930       /* Here we just check the bounds.  */
2931       return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
2932               || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
2933
2934     case ARRAY_TYPE:
2935       /* We have already checked the component type above, so just check the
2936          domain type.  */
2937       return type_contains_placeholder_p (TYPE_DOMAIN (type));
2938
2939     case RECORD_TYPE:
2940     case UNION_TYPE:
2941     case QUAL_UNION_TYPE:
2942       {
2943         tree field;
2944
2945         for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
2946           if (TREE_CODE (field) == FIELD_DECL
2947               && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
2948                   || (TREE_CODE (type) == QUAL_UNION_TYPE
2949                       && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
2950                   || type_contains_placeholder_p (TREE_TYPE (field))))
2951             return true;
2952
2953         return false;
2954       }
2955
2956     default:
2957       gcc_unreachable ();
2958     }
2959 }
2960
2961 /* Wrapper around above function used to cache its result.  */
2962
2963 bool
2964 type_contains_placeholder_p (tree type)
2965 {
2966   bool result;
2967
2968   /* If the contains_placeholder_bits field has been initialized,
2969      then we know the answer.  */
2970   if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
2971     return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
2972
2973   /* Indicate that we've seen this type node, and the answer is false.
2974      This is what we want to return if we run into recursion via fields.  */
2975   TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
2976
2977   /* Compute the real value.  */
2978   result = type_contains_placeholder_1 (type);
2979
2980   /* Store the real value.  */
2981   TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
2982
2983   return result;
2984 }
2985 \f
2986 /* Push tree EXP onto vector QUEUE if it is not already present.  */
2987
2988 static void
2989 push_without_duplicates (tree exp, VEC (tree, heap) **queue)
2990 {
2991   unsigned int i;
2992   tree iter;
2993
2994   FOR_EACH_VEC_ELT (tree, *queue, i, iter)
2995     if (simple_cst_equal (iter, exp) == 1)
2996       break;
2997
2998   if (!iter)
2999     VEC_safe_push (tree, heap, *queue, exp);
3000 }
3001
3002 /* Given a tree EXP, find all occurences of references to fields
3003    in a PLACEHOLDER_EXPR and place them in vector REFS without
3004    duplicates.  Also record VAR_DECLs and CONST_DECLs.  Note that
3005    we assume here that EXP contains only arithmetic expressions
3006    or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3007    argument list.  */
3008
3009 void
3010 find_placeholder_in_expr (tree exp, VEC (tree, heap) **refs)
3011 {
3012   enum tree_code code = TREE_CODE (exp);
3013   tree inner;
3014   int i;
3015
3016   /* We handle TREE_LIST and COMPONENT_REF separately.  */
3017   if (code == TREE_LIST)
3018     {
3019       FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
3020       FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
3021     }
3022   else if (code == COMPONENT_REF)
3023     {
3024       for (inner = TREE_OPERAND (exp, 0);
3025            REFERENCE_CLASS_P (inner);
3026            inner = TREE_OPERAND (inner, 0))
3027         ;
3028
3029       if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
3030         push_without_duplicates (exp, refs);
3031       else
3032         FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
3033    }
3034   else
3035     switch (TREE_CODE_CLASS (code))
3036       {
3037       case tcc_constant:
3038         break;
3039
3040       case tcc_declaration:
3041         /* Variables allocated to static storage can stay.  */
3042         if (!TREE_STATIC (exp))
3043           push_without_duplicates (exp, refs);
3044         break;
3045
3046       case tcc_expression:
3047         /* This is the pattern built in ada/make_aligning_type.  */
3048         if (code == ADDR_EXPR
3049             && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
3050           {
3051             push_without_duplicates (exp, refs);
3052             break;
3053           }
3054
3055         /* Fall through...  */
3056
3057       case tcc_exceptional:
3058       case tcc_unary:
3059       case tcc_binary:
3060       case tcc_comparison:
3061       case tcc_reference:
3062         for (i = 0; i < TREE_CODE_LENGTH (code); i++)
3063           FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3064         break;
3065
3066       case tcc_vl_exp:
3067         for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3068           FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
3069         break;
3070
3071       default:
3072         gcc_unreachable ();
3073       }
3074 }
3075
3076 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3077    return a tree with all occurrences of references to F in a
3078    PLACEHOLDER_EXPR replaced by R.  Also handle VAR_DECLs and
3079    CONST_DECLs.  Note that we assume here that EXP contains only
3080    arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3081    occurring only in their argument list.  */
3082
3083 tree
3084 substitute_in_expr (tree exp, tree f, tree r)
3085 {
3086   enum tree_code code = TREE_CODE (exp);
3087   tree op0, op1, op2, op3;
3088   tree new_tree;
3089
3090   /* We handle TREE_LIST and COMPONENT_REF separately.  */
3091   if (code == TREE_LIST)
3092     {
3093       op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
3094       op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
3095       if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3096         return exp;
3097
3098       return tree_cons (TREE_PURPOSE (exp), op1, op0);
3099     }
3100   else if (code == COMPONENT_REF)
3101     {
3102       tree inner;
3103
3104       /* If this expression is getting a value from a PLACEHOLDER_EXPR
3105          and it is the right field, replace it with R.  */
3106       for (inner = TREE_OPERAND (exp, 0);
3107            REFERENCE_CLASS_P (inner);
3108            inner = TREE_OPERAND (inner, 0))
3109         ;
3110
3111       /* The field.  */
3112       op1 = TREE_OPERAND (exp, 1);
3113
3114       if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
3115         return r;
3116
3117       /* If this expression hasn't been completed let, leave it alone.  */
3118       if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
3119         return exp;
3120
3121       op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3122       if (op0 == TREE_OPERAND (exp, 0))
3123         return exp;
3124
3125       new_tree
3126         = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
3127    }
3128   else
3129     switch (TREE_CODE_CLASS (code))
3130       {
3131       case tcc_constant:
3132         return exp;
3133
3134       case tcc_declaration:
3135         if (exp == f)
3136           return r;
3137         else
3138           return exp;
3139
3140       case tcc_expression:
3141         if (exp == f)
3142           return r;
3143
3144         /* Fall through...  */
3145
3146       case tcc_exceptional:
3147       case tcc_unary:
3148       case tcc_binary:
3149       case tcc_comparison:
3150       case tcc_reference:
3151         switch (TREE_CODE_LENGTH (code))
3152           {
3153           case 0:
3154             return exp;
3155
3156           case 1:
3157             op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3158             if (op0 == TREE_OPERAND (exp, 0))
3159               return exp;
3160
3161             new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3162             break;
3163
3164           case 2:
3165             op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3166             op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3167
3168             if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3169               return exp;
3170
3171             new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3172             break;
3173
3174           case 3:
3175             op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3176             op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3177             op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3178
3179             if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3180                 && op2 == TREE_OPERAND (exp, 2))
3181               return exp;
3182
3183             new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3184             break;
3185
3186           case 4:
3187             op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3188             op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3189             op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3190             op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
3191
3192             if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3193                 && op2 == TREE_OPERAND (exp, 2)
3194                 && op3 == TREE_OPERAND (exp, 3))
3195               return exp;
3196
3197             new_tree
3198               = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3199             break;
3200
3201           default:
3202             gcc_unreachable ();
3203           }
3204         break;
3205
3206       case tcc_vl_exp:
3207         {
3208           int i;
3209
3210           new_tree = NULL_TREE;
3211
3212           /* If we are trying to replace F with a constant, inline back
3213              functions which do nothing else than computing a value from
3214              the arguments they are passed.  This makes it possible to
3215              fold partially or entirely the replacement expression.  */
3216           if (CONSTANT_CLASS_P (r) && code == CALL_EXPR)
3217             {
3218               tree t = maybe_inline_call_in_expr (exp);
3219               if (t)
3220                 return SUBSTITUTE_IN_EXPR (t, f, r);
3221             }
3222
3223           for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3224             {
3225               tree op = TREE_OPERAND (exp, i);
3226               tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
3227               if (new_op != op)
3228                 {
3229                   if (!new_tree)
3230                     new_tree = copy_node (exp);
3231                   TREE_OPERAND (new_tree, i) = new_op;
3232                 }
3233             }
3234
3235           if (new_tree)
3236             {
3237               new_tree = fold (new_tree);
3238               if (TREE_CODE (new_tree) == CALL_EXPR)
3239                 process_call_operands (new_tree);
3240             }
3241           else
3242             return exp;
3243         }
3244         break;
3245
3246       default:
3247         gcc_unreachable ();
3248       }
3249
3250   TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3251
3252   if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
3253     TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
3254
3255   return new_tree;
3256 }
3257
3258 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3259    for it within OBJ, a tree that is an object or a chain of references.  */
3260
3261 tree
3262 substitute_placeholder_in_expr (tree exp, tree obj)
3263 {
3264   enum tree_code code = TREE_CODE (exp);
3265   tree op0, op1, op2, op3;
3266   tree new_tree;
3267
3268   /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3269      in the chain of OBJ.  */
3270   if (code == PLACEHOLDER_EXPR)
3271     {
3272       tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
3273       tree elt;
3274
3275       for (elt = obj; elt != 0;
3276            elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3277                    || TREE_CODE (elt) == COND_EXPR)
3278                   ? TREE_OPERAND (elt, 1)
3279                   : (REFERENCE_CLASS_P (elt)
3280                      || UNARY_CLASS_P (elt)
3281                      || BINARY_CLASS_P (elt)
3282                      || VL_EXP_CLASS_P (elt)
3283                      || EXPRESSION_CLASS_P (elt))
3284                   ? TREE_OPERAND (elt, 0) : 0))
3285         if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
3286           return elt;
3287
3288       for (elt = obj; elt != 0;
3289            elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3290                    || TREE_CODE (elt) == COND_EXPR)
3291                   ? TREE_OPERAND (elt, 1)
3292                   : (REFERENCE_CLASS_P (elt)
3293                      || UNARY_CLASS_P (elt)
3294                      || BINARY_CLASS_P (elt)
3295                      || VL_EXP_CLASS_P (elt)
3296                      || EXPRESSION_CLASS_P (elt))
3297                   ? TREE_OPERAND (elt, 0) : 0))
3298         if (POINTER_TYPE_P (TREE_TYPE (elt))
3299             && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
3300                 == need_type))
3301           return fold_build1 (INDIRECT_REF, need_type, elt);
3302
3303       /* If we didn't find it, return the original PLACEHOLDER_EXPR.  If it
3304          survives until RTL generation, there will be an error.  */
3305       return exp;
3306     }
3307
3308   /* TREE_LIST is special because we need to look at TREE_VALUE
3309      and TREE_CHAIN, not TREE_OPERANDS.  */
3310   else if (code == TREE_LIST)
3311     {
3312       op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
3313       op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
3314       if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3315         return exp;
3316
3317       return tree_cons (TREE_PURPOSE (exp), op1, op0);
3318     }
3319   else
3320     switch (TREE_CODE_CLASS (code))
3321       {
3322       case tcc_constant:
3323       case tcc_declaration:
3324         return exp;
3325
3326       case tcc_exceptional:
3327       case tcc_unary:
3328       case tcc_binary:
3329       case tcc_comparison:
3330       case tcc_expression:
3331       case tcc_reference:
3332       case tcc_statement:
3333         switch (TREE_CODE_LENGTH (code))
3334           {
3335           case 0:
3336             return exp;
3337
3338           case 1:
3339             op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3340             if (op0 == TREE_OPERAND (exp, 0))
3341               return exp;
3342
3343             new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3344             break;
3345
3346           case 2:
3347             op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3348             op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3349
3350             if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3351               return exp;
3352
3353             new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3354             break;
3355
3356           case 3:
3357             op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3358             op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3359             op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3360
3361             if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3362                 && op2 == TREE_OPERAND (exp, 2))
3363               return exp;
3364
3365             new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3366             break;
3367
3368           case 4:
3369             op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3370             op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3371             op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3372             op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
3373
3374             if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3375                 && op2 == TREE_OPERAND (exp, 2)
3376                 && op3 == TREE_OPERAND (exp, 3))
3377               return exp;
3378
3379             new_tree
3380               = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3381             break;
3382
3383           default:
3384             gcc_unreachable ();
3385           }
3386         break;
3387
3388       case tcc_vl_exp:
3389         {
3390           int i;
3391
3392           new_tree = NULL_TREE;
3393
3394           for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3395             {
3396               tree op = TREE_OPERAND (exp, i);
3397               tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
3398               if (new_op != op)
3399                 {
3400                   if (!new_tree)
3401                     new_tree = copy_node (exp);
3402                   TREE_OPERAND (new_tree, i) = new_op;
3403                 }
3404             }
3405
3406           if (new_tree)
3407             {
3408               new_tree = fold (new_tree);
3409               if (TREE_CODE (new_tree) == CALL_EXPR)
3410                 process_call_operands (new_tree);
3411             }
3412           else
3413             return exp;
3414         }
3415         break;
3416
3417       default:
3418         gcc_unreachable ();
3419       }
3420
3421   TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3422
3423   if (code == INDIRECT_REF || code == ARRAY_REF || code == ARRAY_RANGE_REF)
3424     TREE_THIS_NOTRAP (new_tree) |= TREE_THIS_NOTRAP (exp);
3425
3426   return new_tree;
3427 }
3428 \f
3429 /* Stabilize a reference so that we can use it any number of times
3430    without causing its operands to be evaluated more than once.
3431    Returns the stabilized reference.  This works by means of save_expr,
3432    so see the caveats in the comments about save_expr.
3433
3434    Also allows conversion expressions whose operands are references.
3435    Any other kind of expression is returned unchanged.  */
3436
3437 tree
3438 stabilize_reference (tree ref)
3439 {
3440   tree result;
3441   enum tree_code code = TREE_CODE (ref);
3442
3443   switch (code)
3444     {
3445     case VAR_DECL:
3446     case PARM_DECL:
3447     case RESULT_DECL:
3448       /* No action is needed in this case.  */
3449       return ref;
3450
3451     CASE_CONVERT:
3452     case FLOAT_EXPR:
3453     case FIX_TRUNC_EXPR:
3454       result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
3455       break;
3456
3457     case INDIRECT_REF:
3458       result = build_nt (INDIRECT_REF,
3459                          stabilize_reference_1 (TREE_OPERAND (ref, 0)));
3460       break;
3461
3462     case COMPONENT_REF:
3463       result = build_nt (COMPONENT_REF,
3464                          stabilize_reference (TREE_OPERAND (ref, 0)),
3465                          TREE_OPERAND (ref, 1), NULL_TREE);
3466       break;
3467
3468     case BIT_FIELD_REF:
3469       result = build_nt (BIT_FIELD_REF,
3470                          stabilize_reference (TREE_OPERAND (ref, 0)),
3471                          stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3472                          stabilize_reference_1 (TREE_OPERAND (ref, 2)));
3473       break;
3474
3475     case ARRAY_REF:
3476       result = build_nt (ARRAY_REF,
3477                          stabilize_reference (TREE_OPERAND (ref, 0)),
3478                          stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3479                          TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
3480       break;
3481
3482     case ARRAY_RANGE_REF:
3483       result = build_nt (ARRAY_RANGE_REF,
3484                          stabilize_reference (TREE_OPERAND (ref, 0)),
3485                          stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3486                          TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
3487       break;
3488
3489     case COMPOUND_EXPR:
3490       /* We cannot wrap the first expression in a SAVE_EXPR, as then
3491          it wouldn't be ignored.  This matters when dealing with
3492          volatiles.  */
3493       return stabilize_reference_1 (ref);
3494
3495       /* If arg isn't a kind of lvalue we recognize, make no change.
3496          Caller should recognize the error for an invalid lvalue.  */
3497     default:
3498       return ref;
3499
3500     case ERROR_MARK:
3501       return error_mark_node;
3502     }
3503
3504   TREE_TYPE (result) = TREE_TYPE (ref);
3505   TREE_READONLY (result) = TREE_READONLY (ref);
3506   TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
3507   TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
3508
3509   return result;
3510 }
3511
3512 /* Subroutine of stabilize_reference; this is called for subtrees of
3513    references.  Any expression with side-effects must be put in a SAVE_EXPR
3514    to ensure that it is only evaluated once.
3515
3516    We don't put SAVE_EXPR nodes around everything, because assigning very
3517    simple expressions to temporaries causes us to miss good opportunities
3518    for optimizations.  Among other things, the opportunity to fold in the
3519    addition of a constant into an addressing mode often gets lost, e.g.
3520    "y[i+1] += x;".  In general, we take the approach that we should not make
3521    an assignment unless we are forced into it - i.e., that any non-side effect
3522    operator should be allowed, and that cse should take care of coalescing
3523    multiple utterances of the same expression should that prove fruitful.  */
3524
3525 tree
3526 stabilize_reference_1 (tree e)
3527 {
3528   tree result;
3529   enum tree_code code = TREE_CODE (e);
3530
3531   /* We cannot ignore const expressions because it might be a reference
3532      to a const array but whose index contains side-effects.  But we can
3533      ignore things that are actual constant or that already have been
3534      handled by this function.  */
3535
3536   if (tree_invariant_p (e))
3537     return e;
3538
3539   switch (TREE_CODE_CLASS (code))
3540     {
3541     case tcc_exceptional:
3542     case tcc_type:
3543     case tcc_declaration:
3544     case tcc_comparison:
3545     case tcc_statement:
3546     case tcc_expression:
3547     case tcc_reference:
3548     case tcc_vl_exp:
3549       /* If the expression has side-effects, then encase it in a SAVE_EXPR
3550          so that it will only be evaluated once.  */
3551       /* The reference (r) and comparison (<) classes could be handled as
3552          below, but it is generally faster to only evaluate them once.  */
3553       if (TREE_SIDE_EFFECTS (e))
3554         return save_expr (e);
3555       return e;
3556
3557     case tcc_constant:
3558       /* Constants need no processing.  In fact, we should never reach
3559          here.  */
3560       return e;
3561
3562     case tcc_binary:
3563       /* Division is slow and tends to be compiled with jumps,
3564          especially the division by powers of 2 that is often
3565          found inside of an array reference.  So do it just once.  */
3566       if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
3567           || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
3568           || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
3569           || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
3570         return save_expr (e);
3571       /* Recursively stabilize each operand.  */
3572       result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
3573                          stabilize_reference_1 (TREE_OPERAND (e, 1)));
3574       break;
3575
3576     case tcc_unary:
3577       /* Recursively stabilize each operand.  */
3578       result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
3579       break;
3580
3581     default:
3582       gcc_unreachable ();
3583     }
3584
3585   TREE_TYPE (result) = TREE_TYPE (e);
3586   TREE_READONLY (result) = TREE_READONLY (e);
3587   TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
3588   TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
3589
3590   return result;
3591 }
3592 \f
3593 /* Low-level constructors for expressions.  */
3594
3595 /* A helper function for build1 and constant folders.  Set TREE_CONSTANT,
3596    and TREE_SIDE_EFFECTS for an ADDR_EXPR.  */
3597
3598 void
3599 recompute_tree_invariant_for_addr_expr (tree t)
3600 {
3601   tree node;
3602   bool tc = true, se = false;
3603
3604   /* We started out assuming this address is both invariant and constant, but
3605      does not have side effects.  Now go down any handled components and see if
3606      any of them involve offsets that are either non-constant or non-invariant.
3607      Also check for side-effects.
3608
3609      ??? Note that this code makes no attempt to deal with the case where
3610      taking the address of something causes a copy due to misalignment.  */
3611
3612 #define UPDATE_FLAGS(NODE)  \
3613 do { tree _node = (NODE); \
3614      if (_node && !TREE_CONSTANT (_node)) tc = false; \
3615      if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
3616
3617   for (node = TREE_OPERAND (t, 0); handled_component_p (node);
3618        node = TREE_OPERAND (node, 0))
3619     {
3620       /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
3621          array reference (probably made temporarily by the G++ front end),
3622          so ignore all the operands.  */
3623       if ((TREE_CODE (node) == ARRAY_REF
3624            || TREE_CODE (node) == ARRAY_RANGE_REF)
3625           && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
3626         {
3627           UPDATE_FLAGS (TREE_OPERAND (node, 1));
3628           if (TREE_OPERAND (node, 2))
3629             UPDATE_FLAGS (TREE_OPERAND (node, 2));
3630           if (TREE_OPERAND (node, 3))
3631             UPDATE_FLAGS (TREE_OPERAND (node, 3));
3632         }
3633       /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
3634          FIELD_DECL, apparently.  The G++ front end can put something else
3635          there, at least temporarily.  */
3636       else if (TREE_CODE (node) == COMPONENT_REF
3637                && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
3638         {
3639           if (TREE_OPERAND (node, 2))
3640             UPDATE_FLAGS (TREE_OPERAND (node, 2));
3641         }
3642       else if (TREE_CODE (node) == BIT_FIELD_REF)
3643         UPDATE_FLAGS (TREE_OPERAND (node, 2));
3644     }
3645
3646   node = lang_hooks.expr_to_decl (node, &tc, &se);
3647
3648   /* Now see what's inside.  If it's an INDIRECT_REF, copy our properties from
3649      the address, since &(*a)->b is a form of addition.  If it's a constant, the
3650      address is constant too.  If it's a decl, its address is constant if the
3651      decl is static.  Everything else is not constant and, furthermore,
3652      taking the address of a volatile variable is not volatile.  */
3653   if (TREE_CODE (node) == INDIRECT_REF
3654       || TREE_CODE (node) == MEM_REF)
3655     UPDATE_FLAGS (TREE_OPERAND (node, 0));
3656   else if (CONSTANT_CLASS_P (node))
3657     ;
3658   else if (DECL_P (node))
3659     tc &= (staticp (node) != NULL_TREE);
3660   else
3661     {
3662       tc = false;
3663       se |= TREE_SIDE_EFFECTS (node);
3664     }
3665
3666
3667   TREE_CONSTANT (t) = tc;
3668   TREE_SIDE_EFFECTS (t) = se;
3669 #undef UPDATE_FLAGS
3670 }
3671
3672 /* Build an expression of code CODE, data type TYPE, and operands as
3673    specified.  Expressions and reference nodes can be created this way.
3674    Constants, decls, types and misc nodes cannot be.
3675
3676    We define 5 non-variadic functions, from 0 to 4 arguments.  This is
3677    enough for all extant tree codes.  */
3678
3679 tree
3680 build0_stat (enum tree_code code, tree tt MEM_STAT_DECL)
3681 {
3682   tree t;
3683
3684   gcc_assert (TREE_CODE_LENGTH (code) == 0);
3685
3686   t = make_node_stat (code PASS_MEM_STAT);
3687   TREE_TYPE (t) = tt;
3688
3689   return t;
3690 }
3691
3692 tree
3693 build1_stat (enum tree_code code, tree type, tree node MEM_STAT_DECL)
3694 {
3695   int length = sizeof (struct tree_exp);
3696   tree t;
3697
3698   record_node_allocation_statistics (code, length);
3699
3700   gcc_assert (TREE_CODE_LENGTH (code) == 1);
3701
3702   t = ggc_alloc_zone_tree_node_stat (&tree_zone, length PASS_MEM_STAT);
3703
3704   memset (t, 0, sizeof (struct tree_common));
3705
3706   TREE_SET_CODE (t, code);
3707
3708   TREE_TYPE (t) = type;
3709   SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
3710   TREE_OPERAND (t, 0) = node;
3711   TREE_BLOCK (t) = NULL_TREE;
3712   if (node && !TYPE_P (node))
3713     {
3714       TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
3715       TREE_READONLY (t) = TREE_READONLY (node);
3716     }
3717
3718   if (TREE_CODE_CLASS (code) == tcc_statement)
3719     TREE_SIDE_EFFECTS (t) = 1;
3720   else switch (code)
3721     {
3722     case VA_ARG_EXPR:
3723       /* All of these have side-effects, no matter what their
3724          operands are.  */
3725       TREE_SIDE_EFFECTS (t) = 1;
3726       TREE_READONLY (t) = 0;
3727       break;
3728
3729     case INDIRECT_REF:
3730       /* Whether a dereference is readonly has nothing to do with whether
3731          its operand is readonly.  */
3732       TREE_READONLY (t) = 0;
3733       break;
3734
3735     case ADDR_EXPR:
3736       if (node)
3737         recompute_tree_invariant_for_addr_expr (t);
3738       break;
3739
3740     default:
3741       if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
3742           && node && !TYPE_P (node)
3743           && TREE_CONSTANT (node))
3744         TREE_CONSTANT (t) = 1;
3745       if (TREE_CODE_CLASS (code) == tcc_reference
3746           && node && TREE_THIS_VOLATILE (node))
3747         TREE_THIS_VOLATILE (t) = 1;
3748       break;
3749     }
3750
3751   return t;
3752 }
3753
3754 #define PROCESS_ARG(N)                          \
3755   do {                                          \
3756     TREE_OPERAND (t, N) = arg##N;               \
3757     if (arg##N &&!TYPE_P (arg##N))              \
3758       {                                         \
3759         if (TREE_SIDE_EFFECTS (arg##N))         \
3760           side_effects = 1;                     \
3761         if (!TREE_READONLY (arg##N)             \
3762             && !CONSTANT_CLASS_P (arg##N))      \
3763           (void) (read_only = 0);               \
3764         if (!TREE_CONSTANT (arg##N))            \
3765           (void) (constant = 0);                \
3766       }                                         \
3767   } while (0)
3768
3769 tree
3770 build2_stat (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
3771 {
3772   bool constant, read_only, side_effects;
3773   tree t;
3774
3775   gcc_assert (TREE_CODE_LENGTH (code) == 2);
3776
3777   if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
3778       && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
3779       /* When sizetype precision doesn't match that of pointers
3780          we need to be able to build explicit extensions or truncations
3781          of the offset argument.  */
3782       && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
3783     gcc_assert (TREE_CODE (arg0) == INTEGER_CST
3784                 && TREE_CODE (arg1) == INTEGER_CST);
3785
3786   if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
3787     gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
3788                 && ptrofftype_p (TREE_TYPE (arg1)));
3789
3790   t = make_node_stat (code PASS_MEM_STAT);
3791   TREE_TYPE (t) = tt;
3792
3793   /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
3794      result based on those same flags for the arguments.  But if the
3795      arguments aren't really even `tree' expressions, we shouldn't be trying
3796      to do this.  */
3797
3798   /* Expressions without side effects may be constant if their
3799      arguments are as well.  */
3800   constant = (TREE_CODE_CLASS (code) == tcc_comparison
3801               || TREE_CODE_CLASS (code) == tcc_binary);
3802   read_only = 1;
3803   side_effects = TREE_SIDE_EFFECTS (t);
3804
3805   PROCESS_ARG(0);
3806   PROCESS_ARG(1);
3807
3808   TREE_READONLY (t) = read_only;
3809   TREE_CONSTANT (t) = constant;
3810   TREE_SIDE_EFFECTS (t) = side_effects;
3811   TREE_THIS_VOLATILE (t)
3812     = (TREE_CODE_CLASS (code) == tcc_reference
3813        && arg0 && TREE_THIS_VOLATILE (arg0));
3814
3815   return t;
3816 }
3817
3818
3819 tree
3820 build3_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3821              tree arg2 MEM_STAT_DECL)
3822 {
3823   bool constant, read_only, side_effects;
3824   tree t;
3825
3826   gcc_assert (TREE_CODE_LENGTH (code) == 3);
3827   gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3828
3829   t = make_node_stat (code PASS_MEM_STAT);
3830   TREE_TYPE (t) = tt;
3831
3832   read_only = 1;
3833
3834   /* As a special exception, if COND_EXPR has NULL branches, we
3835      assume that it is a gimple statement and always consider
3836      it to have side effects.  */
3837   if (code == COND_EXPR
3838       && tt == void_type_node
3839       && arg1 == NULL_TREE
3840       && arg2 == NULL_TREE)
3841     side_effects = true;
3842   else
3843     side_effects = TREE_SIDE_EFFECTS (t);
3844
3845   PROCESS_ARG(0);
3846   PROCESS_ARG(1);
3847   PROCESS_ARG(2);
3848
3849   if (code == COND_EXPR)
3850     TREE_READONLY (t) = read_only;
3851
3852   TREE_SIDE_EFFECTS (t) = side_effects;
3853   TREE_THIS_VOLATILE (t)
3854     = (TREE_CODE_CLASS (code) == tcc_reference
3855        && arg0 && TREE_THIS_VOLATILE (arg0));
3856
3857   return t;
3858 }
3859
3860 tree
3861 build4_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3862              tree arg2, tree arg3 MEM_STAT_DECL)
3863 {
3864   bool constant, read_only, side_effects;
3865   tree t;
3866
3867   gcc_assert (TREE_CODE_LENGTH (code) == 4);
3868
3869   t = make_node_stat (code PASS_MEM_STAT);
3870   TREE_TYPE (t) = tt;
3871
3872   side_effects = TREE_SIDE_EFFECTS (t);
3873
3874   PROCESS_ARG(0);
3875   PROCESS_ARG(1);
3876   PROCESS_ARG(2);
3877   PROCESS_ARG(3);
3878
3879   TREE_SIDE_EFFECTS (t) = side_effects;
3880   TREE_THIS_VOLATILE (t)
3881     = (TREE_CODE_CLASS (code) == tcc_reference
3882        && arg0 && TREE_THIS_VOLATILE (arg0));
3883
3884   return t;
3885 }
3886
3887 tree
3888 build5_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3889              tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
3890 {
3891   bool constant, read_only, side_effects;
3892   tree t;
3893
3894   gcc_assert (TREE_CODE_LENGTH (code) == 5);
3895
3896   t = make_node_stat (code PASS_MEM_STAT);
3897   TREE_TYPE (t) = tt;
3898
3899   side_effects = TREE_SIDE_EFFECTS (t);
3900
3901   PROCESS_ARG(0);
3902   PROCESS_ARG(1);
3903   PROCESS_ARG(2);
3904   PROCESS_ARG(3);
3905   PROCESS_ARG(4);
3906
3907   TREE_SIDE_EFFECTS (t) = side_effects;
3908   TREE_THIS_VOLATILE (t)
3909     = (TREE_CODE_CLASS (code) == tcc_reference
3910        && arg0 && TREE_THIS_VOLATILE (arg0));
3911
3912   return t;
3913 }
3914
3915 tree
3916 build6_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3917              tree arg2, tree arg3, tree arg4, tree arg5 MEM_STAT_DECL)
3918 {
3919   bool constant, read_only, side_effects;
3920   tree t;
3921
3922   gcc_assert (code == TARGET_MEM_REF);
3923
3924   t = make_node_stat (code PASS_MEM_STAT);
3925   TREE_TYPE (t) = tt;
3926
3927   side_effects = TREE_SIDE_EFFECTS (t);
3928
3929   PROCESS_ARG(0);
3930   PROCESS_ARG(1);
3931   PROCESS_ARG(2);
3932   PROCESS_ARG(3);
3933   PROCESS_ARG(4);
3934   if (code == TARGET_MEM_REF)
3935     side_effects = 0;
3936   PROCESS_ARG(5);
3937
3938   TREE_SIDE_EFFECTS (t) = side_effects;
3939   TREE_THIS_VOLATILE (t)
3940     = (code == TARGET_MEM_REF
3941        && arg5 && TREE_THIS_VOLATILE (arg5));
3942
3943   return t;
3944 }
3945
3946 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
3947    on the pointer PTR.  */
3948
3949 tree
3950 build_simple_mem_ref_loc (location_t loc, tree ptr)
3951 {
3952   HOST_WIDE_INT offset = 0;
3953   tree ptype = TREE_TYPE (ptr);
3954   tree tem;
3955   /* For convenience allow addresses that collapse to a simple base
3956      and offset.  */
3957   if (TREE_CODE (ptr) == ADDR_EXPR
3958       && (handled_component_p (TREE_OPERAND (ptr, 0))
3959           || TREE_CODE (TREE_OPERAND (ptr, 0)) == MEM_REF))
3960     {
3961       ptr = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &offset);
3962       gcc_assert (ptr);
3963       ptr = build_fold_addr_expr (ptr);
3964       gcc_assert (is_gimple_reg (ptr) || is_gimple_min_invariant (ptr));
3965     }
3966   tem = build2 (MEM_REF, TREE_TYPE (ptype),
3967                 ptr, build_int_cst (ptype, offset));
3968   SET_EXPR_LOCATION (tem, loc);
3969   return tem;
3970 }
3971
3972 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T.  */
3973
3974 double_int
3975 mem_ref_offset (const_tree t)
3976 {
3977   tree toff = TREE_OPERAND (t, 1);
3978   return double_int_sext (tree_to_double_int (toff),
3979                           TYPE_PRECISION (TREE_TYPE (toff)));
3980 }
3981
3982 /* Return the pointer-type relevant for TBAA purposes from the
3983    gimple memory reference tree T.  This is the type to be used for
3984    the offset operand of MEM_REF or TARGET_MEM_REF replacements of T.  */
3985
3986 tree
3987 reference_alias_ptr_type (const_tree t)
3988 {
3989   const_tree base = t;
3990   while (handled_component_p (base))
3991     base = TREE_OPERAND (base, 0);
3992   if (TREE_CODE (base) == MEM_REF)
3993     return TREE_TYPE (TREE_OPERAND (base, 1));
3994   else if (TREE_CODE (base) == TARGET_MEM_REF)
3995     return TREE_TYPE (TMR_OFFSET (base)); 
3996   else
3997     return build_pointer_type (TYPE_MAIN_VARIANT (TREE_TYPE (base)));
3998 }
3999
4000 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4001    offsetted by OFFSET units.  */
4002
4003 tree
4004 build_invariant_address (tree type, tree base, HOST_WIDE_INT offset)
4005 {
4006   tree ref = fold_build2 (MEM_REF, TREE_TYPE (type),
4007                           build_fold_addr_expr (base),
4008                           build_int_cst (ptr_type_node, offset));
4009   tree addr = build1 (ADDR_EXPR, type, ref);
4010   recompute_tree_invariant_for_addr_expr (addr);
4011   return addr;
4012 }
4013
4014 /* Similar except don't specify the TREE_TYPE
4015    and leave the TREE_SIDE_EFFECTS as 0.
4016    It is permissible for arguments to be null,
4017    or even garbage if their values do not matter.  */
4018
4019 tree
4020 build_nt (enum tree_code code, ...)
4021 {
4022   tree t;
4023   int length;
4024   int i;
4025   va_list p;
4026
4027   gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
4028
4029   va_start (p, code);
4030
4031   t = make_node (code);
4032   length = TREE_CODE_LENGTH (code);
4033
4034   for (i = 0; i < length; i++)
4035     TREE_OPERAND (t, i) = va_arg (p, tree);
4036
4037   va_end (p);
4038   return t;
4039 }
4040
4041 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4042    tree VEC.  */
4043
4044 tree
4045 build_nt_call_vec (tree fn, VEC(tree,gc) *args)
4046 {
4047   tree ret, t;
4048   unsigned int ix;
4049
4050   ret = build_vl_exp (CALL_EXPR, VEC_length (tree, args) + 3);
4051   CALL_EXPR_FN (ret) = fn;
4052   CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
4053   FOR_EACH_VEC_ELT (tree, args, ix, t)
4054     CALL_EXPR_ARG (ret, ix) = t;
4055   return ret;
4056 }
4057 \f
4058 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4059    We do NOT enter this node in any sort of symbol table.
4060
4061    LOC is the location of the decl.
4062
4063    layout_decl is used to set up the decl's storage layout.
4064    Other slots are initialized to 0 or null pointers.  */
4065
4066 tree
4067 build_decl_stat (location_t loc, enum tree_code code, tree name,
4068                  tree type MEM_STAT_DECL)
4069 {
4070   tree t;
4071
4072   t = make_node_stat (code PASS_MEM_STAT);
4073   DECL_SOURCE_LOCATION (t) = loc;
4074
4075 /*  if (type == error_mark_node)
4076     type = integer_type_node; */
4077 /* That is not done, deliberately, so that having error_mark_node
4078    as the type can suppress useless errors in the use of this variable.  */
4079
4080   DECL_NAME (t) = name;
4081   TREE_TYPE (t) = type;
4082
4083   if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
4084     layout_decl (t, 0);
4085
4086   return t;
4087 }
4088
4089 /* Builds and returns function declaration with NAME and TYPE.  */
4090
4091 tree
4092 build_fn_decl (const char *name, tree type)
4093 {
4094   tree id = get_identifier (name);
4095   tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
4096
4097   DECL_EXTERNAL (decl) = 1;
4098   TREE_PUBLIC (decl) = 1;
4099   DECL_ARTIFICIAL (decl) = 1;
4100   TREE_NOTHROW (decl) = 1;
4101
4102   return decl;
4103 }
4104
4105 VEC(tree,gc) *all_translation_units;
4106
4107 /* Builds a new translation-unit decl with name NAME, queues it in the
4108    global list of translation-unit decls and returns it.   */
4109
4110 tree
4111 build_translation_unit_decl (tree name)
4112 {
4113   tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
4114                         name, NULL_TREE);
4115   TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
4116   VEC_safe_push (tree, gc, all_translation_units, tu);
4117   return tu;
4118 }
4119
4120 \f
4121 /* BLOCK nodes are used to represent the structure of binding contours
4122    and declarations, once those contours have been exited and their contents
4123    compiled.  This information is used for outputting debugging info.  */
4124
4125 tree
4126 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
4127 {
4128   tree block = make_node (BLOCK);
4129
4130   BLOCK_VARS (block) = vars;
4131   BLOCK_SUBBLOCKS (block) = subblocks;
4132   BLOCK_SUPERCONTEXT (block) = supercontext;
4133   BLOCK_CHAIN (block) = chain;
4134   return block;
4135 }
4136
4137 \f
4138 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4139
4140    LOC is the location to use in tree T.  */
4141
4142 void
4143 protected_set_expr_location (tree t, location_t loc)
4144 {
4145   if (t && CAN_HAVE_LOCATION_P (t))
4146     SET_EXPR_LOCATION (t, loc);
4147 }
4148 \f
4149 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4150    is ATTRIBUTE.  */
4151
4152 tree
4153 build_decl_attribute_variant (tree ddecl, tree attribute)
4154 {
4155   DECL_ATTRIBUTES (ddecl) = attribute;
4156   return ddecl;
4157 }
4158
4159 /* Borrowed from hashtab.c iterative_hash implementation.  */
4160 #define mix(a,b,c) \
4161 { \
4162   a -= b; a -= c; a ^= (c>>13); \
4163   b -= c; b -= a; b ^= (a<< 8); \
4164   c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
4165   a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
4166   b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
4167   c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
4168   a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
4169   b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
4170   c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
4171 }
4172
4173
4174 /* Produce good hash value combining VAL and VAL2.  */
4175 hashval_t
4176 iterative_hash_hashval_t (hashval_t val, hashval_t val2)
4177 {
4178   /* the golden ratio; an arbitrary value.  */
4179   hashval_t a = 0x9e3779b9;
4180
4181   mix (a, val, val2);
4182   return val2;
4183 }
4184
4185 /* Produce good hash value combining VAL and VAL2.  */
4186 hashval_t
4187 iterative_hash_host_wide_int (HOST_WIDE_INT val, hashval_t val2)
4188 {
4189   if (sizeof (HOST_WIDE_INT) == sizeof (hashval_t))
4190     return iterative_hash_hashval_t (val, val2);
4191   else
4192     {
4193       hashval_t a = (hashval_t) val;
4194       /* Avoid warnings about shifting of more than the width of the type on
4195          hosts that won't execute this path.  */
4196       int zero = 0;
4197       hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 8 + zero));
4198       mix (a, b, val2);
4199       if (sizeof (HOST_WIDE_INT) > 2 * sizeof (hashval_t))
4200         {
4201           hashval_t a = (hashval_t) (val >> (sizeof (hashval_t) * 16 + zero));
4202           hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 24 + zero));
4203           mix (a, b, val2);
4204         }
4205       return val2;
4206     }
4207 }
4208
4209 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4210    is ATTRIBUTE and its qualifiers are QUALS.
4211
4212    Record such modified types already made so we don't make duplicates.  */
4213
4214 tree
4215 build_type_attribute_qual_variant (tree ttype, tree attribute, int quals)
4216 {
4217   if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
4218     {
4219       hashval_t hashcode = 0;
4220       tree ntype;
4221       enum tree_code code = TREE_CODE (ttype);
4222
4223       /* Building a distinct copy of a tagged type is inappropriate; it
4224          causes breakage in code that expects there to be a one-to-one
4225          relationship between a struct and its fields.
4226          build_duplicate_type is another solution (as used in
4227          handle_transparent_union_attribute), but that doesn't play well
4228          with the stronger C++ type identity model.  */
4229       if (TREE_CODE (ttype) == RECORD_TYPE
4230           || TREE_CODE (ttype) == UNION_TYPE
4231           || TREE_CODE (ttype) == QUAL_UNION_TYPE
4232           || TREE_CODE (ttype) == ENUMERAL_TYPE)
4233         {
4234           warning (OPT_Wattributes,
4235                    "ignoring attributes applied to %qT after definition",
4236                    TYPE_MAIN_VARIANT (ttype));
4237           return build_qualified_type (ttype, quals);
4238         }
4239
4240       ttype = build_qualified_type (ttype, TYPE_UNQUALIFIED);
4241       ntype = build_distinct_type_copy (ttype);
4242
4243       TYPE_ATTRIBUTES (ntype) = attribute;
4244
4245       hashcode = iterative_hash_object (code, hashcode);
4246       if (TREE_TYPE (ntype))
4247         hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype)),
4248                                           hashcode);
4249       hashcode = attribute_hash_list (attribute, hashcode);
4250
4251       switch (TREE_CODE (ntype))
4252         {
4253         case FUNCTION_TYPE:
4254           hashcode = type_hash_list (TYPE_ARG_TYPES (ntype), hashcode);
4255           break;
4256         case ARRAY_TYPE:
4257           if (TYPE_DOMAIN (ntype))
4258             hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype)),
4259                                               hashcode);
4260           break;
4261         case INTEGER_TYPE:
4262           hashcode = iterative_hash_object
4263             (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype)), hashcode);
4264           hashcode = iterative_hash_object
4265             (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype)), hashcode);
4266           break;
4267         case REAL_TYPE:
4268         case FIXED_POINT_TYPE:
4269           {
4270             unsigned int precision = TYPE_PRECISION (ntype);
4271             hashcode = iterative_hash_object (precision, hashcode);
4272           }
4273           break;
4274         default:
4275           break;
4276         }
4277
4278       ntype = type_hash_canon (hashcode, ntype);
4279
4280       /* If the target-dependent attributes make NTYPE different from
4281          its canonical type, we will need to use structural equality
4282          checks for this type. */
4283       if (TYPE_STRUCTURAL_EQUALITY_P (ttype)
4284           || !comp_type_attributes (ntype, ttype))
4285         SET_TYPE_STRUCTURAL_EQUALITY (ntype);
4286       else if (TYPE_CANONICAL (ntype) == ntype)
4287         TYPE_CANONICAL (ntype) = TYPE_CANONICAL (ttype);
4288
4289       ttype = build_qualified_type (ntype, quals);
4290     }
4291   else if (TYPE_QUALS (ttype) != quals)
4292     ttype = build_qualified_type (ttype, quals);
4293
4294   return ttype;
4295 }
4296
4297 /* Compare two attributes for their value identity.  Return true if the
4298    attribute values are known to be equal; otherwise return false.
4299 */
4300
4301 static bool
4302 attribute_value_equal (const_tree attr1, const_tree attr2)
4303 {
4304   if (TREE_VALUE (attr1) == TREE_VALUE (attr2))
4305     return true;
4306
4307   if (TREE_VALUE (attr1) != NULL_TREE
4308       && TREE_CODE (TREE_VALUE (attr1)) == TREE_LIST
4309       && TREE_VALUE (attr2) != NULL
4310       && TREE_CODE (TREE_VALUE (attr2)) == TREE_LIST)
4311     return (simple_cst_list_equal (TREE_VALUE (attr1),
4312                                    TREE_VALUE (attr2)) == 1);
4313
4314   return (simple_cst_equal (TREE_VALUE (attr1), TREE_VALUE (attr2)) == 1);
4315 }
4316
4317 /* Return 0 if the attributes for two types are incompatible, 1 if they
4318    are compatible, and 2 if they are nearly compatible (which causes a
4319    warning to be generated).  */
4320 int
4321 comp_type_attributes (const_tree type1, const_tree type2)
4322 {
4323   const_tree a1 = TYPE_ATTRIBUTES (type1);
4324   const_tree a2 = TYPE_ATTRIBUTES (type2);
4325   const_tree a;
4326
4327   if (a1 == a2)
4328     return 1;
4329   for (a = a1; a != NULL_TREE; a = TREE_CHAIN (a))
4330     {
4331       const struct attribute_spec *as;
4332       const_tree attr;
4333
4334       as = lookup_attribute_spec (TREE_PURPOSE (a));
4335       if (!as || as->affects_type_identity == false)
4336         continue;
4337
4338       attr = lookup_attribute (as->name, CONST_CAST_TREE (a2));
4339       if (!attr || !attribute_value_equal (a, attr))
4340         break;
4341     }
4342   if (!a)
4343     {
4344       for (a = a2; a != NULL_TREE; a = TREE_CHAIN (a))
4345         {
4346           const struct attribute_spec *as;
4347
4348           as = lookup_attribute_spec (TREE_PURPOSE (a));
4349           if (!as || as->affects_type_identity == false)
4350             continue;
4351
4352           if (!lookup_attribute (as->name, CONST_CAST_TREE (a1)))
4353             break;
4354           /* We don't need to compare trees again, as we did this
4355              already in first loop.  */
4356         }
4357       /* All types - affecting identity - are equal, so
4358          there is no need to call target hook for comparison.  */
4359       if (!a)
4360         return 1;
4361     }
4362   /* As some type combinations - like default calling-convention - might
4363      be compatible, we have to call the target hook to get the final result.  */
4364   return targetm.comp_type_attributes (type1, type2);
4365 }
4366
4367 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4368    is ATTRIBUTE.
4369
4370    Record such modified types already made so we don't make duplicates.  */
4371
4372 tree
4373 build_type_attribute_variant (tree ttype, tree attribute)
4374 {
4375   return build_type_attribute_qual_variant (ttype, attribute,
4376                                             TYPE_QUALS (ttype));
4377 }
4378
4379
4380 /* Reset the expression *EXPR_P, a size or position.
4381
4382    ??? We could reset all non-constant sizes or positions.  But it's cheap
4383    enough to not do so and refrain from adding workarounds to dwarf2out.c.
4384
4385    We need to reset self-referential sizes or positions because they cannot
4386    be gimplified and thus can contain a CALL_EXPR after the gimplification
4387    is finished, which will run afoul of LTO streaming.  And they need to be
4388    reset to something essentially dummy but not constant, so as to preserve
4389    the properties of the object they are attached to.  */
4390
4391 static inline void
4392 free_lang_data_in_one_sizepos (tree *expr_p)
4393 {
4394   tree expr = *expr_p;
4395   if (CONTAINS_PLACEHOLDER_P (expr))
4396     *expr_p = build0 (PLACEHOLDER_EXPR, TREE_TYPE (expr));
4397 }
4398
4399
4400 /* Reset all the fields in a binfo node BINFO.  We only keep
4401    BINFO_VTABLE, which is used by gimple_fold_obj_type_ref.  */
4402
4403 static void
4404 free_lang_data_in_binfo (tree binfo)
4405 {
4406   unsigned i;
4407   tree t;
4408
4409   gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
4410
4411   BINFO_VIRTUALS (binfo) = NULL_TREE;
4412   BINFO_BASE_ACCESSES (binfo) = NULL;
4413   BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
4414   BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
4415
4416   FOR_EACH_VEC_ELT (tree, BINFO_BASE_BINFOS (binfo), i, t)
4417     free_lang_data_in_binfo (t);
4418 }
4419
4420
4421 /* Reset all language specific information still present in TYPE.  */
4422
4423 static void
4424 free_lang_data_in_type (tree type)
4425 {
4426   gcc_assert (TYPE_P (type));
4427
4428   /* Give the FE a chance to remove its own data first.  */
4429   lang_hooks.free_lang_data (type);
4430
4431   TREE_LANG_FLAG_0 (type) = 0;
4432   TREE_LANG_FLAG_1 (type) = 0;
4433   TREE_LANG_FLAG_2 (type) = 0;
4434   TREE_LANG_FLAG_3 (type) = 0;
4435   TREE_LANG_FLAG_4 (type) = 0;
4436   TREE_LANG_FLAG_5 (type) = 0;
4437   TREE_LANG_FLAG_6 (type) = 0;
4438
4439   if (TREE_CODE (type) == FUNCTION_TYPE)
4440     {
4441       /* Remove the const and volatile qualifiers from arguments.  The
4442          C++ front end removes them, but the C front end does not,
4443          leading to false ODR violation errors when merging two
4444          instances of the same function signature compiled by
4445          different front ends.  */
4446       tree p;
4447
4448       for (p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
4449         {
4450           tree arg_type = TREE_VALUE (p);
4451
4452           if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
4453             {
4454               int quals = TYPE_QUALS (arg_type)
4455                           & ~TYPE_QUAL_CONST
4456                           & ~TYPE_QUAL_VOLATILE;
4457               TREE_VALUE (p) = build_qualified_type (arg_type, quals);
4458               free_lang_data_in_type (TREE_VALUE (p));
4459             }
4460         }
4461     }
4462
4463   /* Remove members that are not actually FIELD_DECLs from the field
4464      list of an aggregate.  These occur in C++.  */
4465   if (RECORD_OR_UNION_TYPE_P (type))
4466     {
4467       tree prev, member;
4468
4469       /* Note that TYPE_FIELDS can be shared across distinct
4470          TREE_TYPEs.  Therefore, if the first field of TYPE_FIELDS is
4471          to be removed, we cannot set its TREE_CHAIN to NULL.
4472          Otherwise, we would not be able to find all the other fields
4473          in the other instances of this TREE_TYPE.
4474
4475          This was causing an ICE in testsuite/g++.dg/lto/20080915.C.  */
4476       prev = NULL_TREE;
4477       member = TYPE_FIELDS (type);
4478       while (member)
4479         {
4480           if (TREE_CODE (member) == FIELD_DECL
4481               || TREE_CODE (member) == TYPE_DECL)
4482             {
4483               if (prev)
4484                 TREE_CHAIN (prev) = member;
4485               else
4486                 TYPE_FIELDS (type) = member;
4487               prev = member;
4488             }
4489
4490           member = TREE_CHAIN (member);
4491         }
4492
4493       if (prev)
4494         TREE_CHAIN (prev) = NULL_TREE;
4495       else
4496         TYPE_FIELDS (type) = NULL_TREE;
4497
4498       TYPE_METHODS (type) = NULL_TREE;
4499       if (TYPE_BINFO (type))
4500         free_lang_data_in_binfo (TYPE_BINFO (type));
4501     }
4502   else
4503     {
4504       /* For non-aggregate types, clear out the language slot (which
4505          overloads TYPE_BINFO).  */
4506       TYPE_LANG_SLOT_1 (type) = NULL_TREE;
4507
4508       if (INTEGRAL_TYPE_P (type)
4509           || SCALAR_FLOAT_TYPE_P (type)
4510           || FIXED_POINT_TYPE_P (type))
4511         {
4512           free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type));
4513           free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type));
4514         }
4515     }
4516
4517   free_lang_data_in_one_sizepos (&TYPE_SIZE (type));
4518   free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type));
4519
4520   if (debug_info_level < DINFO_LEVEL_TERSE
4521       || (TYPE_CONTEXT (type)
4522           && TREE_CODE (TYPE_CONTEXT (type)) != FUNCTION_DECL
4523           && TREE_CODE (TYPE_CONTEXT (type)) != NAMESPACE_DECL))
4524     TYPE_CONTEXT (type) = NULL_TREE;
4525 }
4526
4527
4528 /* Return true if DECL may need an assembler name to be set.  */
4529
4530 static inline bool
4531 need_assembler_name_p (tree decl)
4532 {
4533   /* Only FUNCTION_DECLs and VAR_DECLs are considered.  */
4534   if (TREE_CODE (decl) != FUNCTION_DECL
4535       && TREE_CODE (decl) != VAR_DECL)
4536     return false;
4537
4538   /* If DECL already has its assembler name set, it does not need a
4539      new one.  */
4540   if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
4541       || DECL_ASSEMBLER_NAME_SET_P (decl))
4542     return false;
4543
4544   /* Abstract decls do not need an assembler name.  */
4545   if (DECL_ABSTRACT (decl))
4546     return false;
4547
4548   /* For VAR_DECLs, only static, public and external symbols need an
4549      assembler name.  */
4550   if (TREE_CODE (decl) == VAR_DECL
4551       && !TREE_STATIC (decl)
4552       && !TREE_PUBLIC (decl)
4553       && !DECL_EXTERNAL (decl))
4554     return false;
4555
4556   if (TREE_CODE (decl) == FUNCTION_DECL)
4557     {
4558       /* Do not set assembler name on builtins.  Allow RTL expansion to
4559          decide whether to expand inline or via a regular call.  */
4560       if (DECL_BUILT_IN (decl)
4561           && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
4562         return false;
4563
4564       /* Functions represented in the callgraph need an assembler name.  */
4565       if (cgraph_get_node (decl) != NULL)
4566         return true;
4567
4568       /* Unused and not public functions don't need an assembler name.  */
4569       if (!TREE_USED (decl) && !TREE_PUBLIC (decl))
4570         return false;
4571     }
4572
4573   return true;
4574 }
4575
4576
4577 /* Reset all language specific information still present in symbol
4578    DECL.  */
4579
4580 static void
4581 free_lang_data_in_decl (tree decl)
4582 {
4583   gcc_assert (DECL_P (decl));
4584
4585   /* Give the FE a chance to remove its own data first.  */
4586   lang_hooks.free_lang_data (decl);
4587
4588   TREE_LANG_FLAG_0 (decl) = 0;
4589   TREE_LANG_FLAG_1 (decl) = 0;
4590   TREE_LANG_FLAG_2 (decl) = 0;
4591   TREE_LANG_FLAG_3 (decl) = 0;
4592   TREE_LANG_FLAG_4 (decl) = 0;
4593   TREE_LANG_FLAG_5 (decl) = 0;
4594   TREE_LANG_FLAG_6 (decl) = 0;
4595
4596   free_lang_data_in_one_sizepos (&DECL_SIZE (decl));
4597   free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl));
4598   if (TREE_CODE (decl) == FIELD_DECL)
4599     free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl));
4600
4601  if (TREE_CODE (decl) == FUNCTION_DECL)
4602     {
4603       if (gimple_has_body_p (decl))
4604         {
4605           tree t;
4606
4607           /* If DECL has a gimple body, then the context for its
4608              arguments must be DECL.  Otherwise, it doesn't really
4609              matter, as we will not be emitting any code for DECL.  In
4610              general, there may be other instances of DECL created by
4611              the front end and since PARM_DECLs are generally shared,
4612              their DECL_CONTEXT changes as the replicas of DECL are
4613              created.  The only time where DECL_CONTEXT is important
4614              is for the FUNCTION_DECLs that have a gimple body (since
4615              the PARM_DECL will be used in the function's body).  */
4616           for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
4617             DECL_CONTEXT (t) = decl;
4618         }
4619
4620       /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
4621          At this point, it is not needed anymore.  */
4622       DECL_SAVED_TREE (decl) = NULL_TREE;
4623
4624       /* Clear the abstract origin if it refers to a method.  Otherwise
4625          dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
4626          origin will not be output correctly.  */
4627       if (DECL_ABSTRACT_ORIGIN (decl)
4628           && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))
4629           && RECORD_OR_UNION_TYPE_P
4630                (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl))))
4631         DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
4632
4633       /* Sometimes the C++ frontend doesn't manage to transform a temporary
4634          DECL_VINDEX referring to itself into a vtable slot number as it
4635          should.  Happens with functions that are copied and then forgotten
4636          about.  Just clear it, it won't matter anymore.  */
4637       if (DECL_VINDEX (decl) && !host_integerp (DECL_VINDEX (decl), 0))
4638         DECL_VINDEX (decl) = NULL_TREE;
4639     }
4640   else if (TREE_CODE (decl) == VAR_DECL)
4641     {
4642       if ((DECL_EXTERNAL (decl)
4643            && (!TREE_STATIC (decl) || !TREE_READONLY (decl)))
4644           || (decl_function_context (decl) && !TREE_STATIC (decl)))
4645         DECL_INITIAL (decl) = NULL_TREE;
4646     }
4647   else if (TREE_CODE (decl) == TYPE_DECL
4648            || TREE_CODE (decl) == FIELD_DECL)
4649     DECL_INITIAL (decl) = NULL_TREE;
4650   else if (TREE_CODE (decl) == TRANSLATION_UNIT_DECL
4651            && DECL_INITIAL (decl)
4652            && TREE_CODE (DECL_INITIAL (decl)) == BLOCK)
4653     {
4654       /* Strip builtins from the translation-unit BLOCK.  We still have targets
4655          without builtin_decl_explicit support and also builtins are shared
4656          nodes and thus we can't use TREE_CHAIN in multiple lists.  */
4657       tree *nextp = &BLOCK_VARS (DECL_INITIAL (decl));
4658       while (*nextp)
4659         {
4660           tree var = *nextp;
4661           if (TREE_CODE (var) == FUNCTION_DECL
4662               && DECL_BUILT_IN (var))
4663             *nextp = TREE_CHAIN (var);
4664           else
4665             nextp = &TREE_CHAIN (var);
4666         }
4667     }
4668 }
4669
4670
4671 /* Data used when collecting DECLs and TYPEs for language data removal.  */
4672
4673 struct free_lang_data_d
4674 {
4675   /* Worklist to avoid excessive recursion.  */
4676   VEC(tree,heap) *worklist;
4677
4678   /* Set of traversed objects.  Used to avoid duplicate visits.  */
4679   struct pointer_set_t *pset;
4680
4681   /* Array of symbols to process with free_lang_data_in_decl.  */
4682   VEC(tree,heap) *decls;
4683
4684   /* Array of types to process with free_lang_data_in_type.  */
4685   VEC(tree,heap) *types;
4686 };
4687
4688
4689 /* Save all language fields needed to generate proper debug information
4690    for DECL.  This saves most fields cleared out by free_lang_data_in_decl.  */
4691
4692 static void
4693 save_debug_info_for_decl (tree t)
4694 {
4695   /*struct saved_debug_info_d *sdi;*/
4696
4697   gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && DECL_P (t));
4698
4699   /* FIXME.  Partial implementation for saving debug info removed.  */
4700 }
4701
4702
4703 /* Save all language fields needed to generate proper debug information
4704    for TYPE.  This saves most fields cleared out by free_lang_data_in_type.  */
4705
4706 static void
4707 save_debug_info_for_type (tree t)
4708 {
4709   /*struct saved_debug_info_d *sdi;*/
4710
4711   gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && TYPE_P (t));
4712
4713   /* FIXME.  Partial implementation for saving debug info removed.  */
4714 }
4715
4716
4717 /* Add type or decl T to one of the list of tree nodes that need their
4718    language data removed.  The lists are held inside FLD.  */
4719
4720 static void
4721 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
4722 {
4723   if (DECL_P (t))
4724     {
4725       VEC_safe_push (tree, heap, fld->decls, t);
4726       if (debug_info_level > DINFO_LEVEL_TERSE)
4727         save_debug_info_for_decl (t);
4728     }
4729   else if (TYPE_P (t))
4730     {
4731       VEC_safe_push (tree, heap, fld->types, t);
4732       if (debug_info_level > DINFO_LEVEL_TERSE)
4733         save_debug_info_for_type (t);
4734     }
4735   else
4736     gcc_unreachable ();
4737 }
4738
4739 /* Push tree node T into FLD->WORKLIST.  */
4740
4741 static inline void
4742 fld_worklist_push (tree t, struct free_lang_data_d *fld)
4743 {
4744   if (t && !is_lang_specific (t) && !pointer_set_contains (fld->pset, t))
4745     VEC_safe_push (tree, heap, fld->worklist, (t));
4746 }
4747
4748
4749 /* Operand callback helper for free_lang_data_in_node.  *TP is the
4750    subtree operand being considered.  */
4751
4752 static tree
4753 find_decls_types_r (tree *tp, int *ws, void *data)
4754 {
4755   tree t = *tp;
4756   struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
4757
4758   if (TREE_CODE (t) == TREE_LIST)
4759     return NULL_TREE;
4760
4761   /* Language specific nodes will be removed, so there is no need
4762      to gather anything under them.  */
4763   if (is_lang_specific (t))
4764     {
4765       *ws = 0;
4766       return NULL_TREE;
4767     }
4768
4769   if (DECL_P (t))
4770     {
4771       /* Note that walk_tree does not traverse every possible field in
4772          decls, so we have to do our own traversals here.  */
4773       add_tree_to_fld_list (t, fld);
4774
4775       fld_worklist_push (DECL_NAME (t), fld);
4776       fld_worklist_push (DECL_CONTEXT (t), fld);
4777       fld_worklist_push (DECL_SIZE (t), fld);
4778       fld_worklist_push (DECL_SIZE_UNIT (t), fld);
4779
4780       /* We are going to remove everything under DECL_INITIAL for
4781          TYPE_DECLs.  No point walking them.  */
4782       if (TREE_CODE (t) != TYPE_DECL)
4783         fld_worklist_push (DECL_INITIAL (t), fld);
4784
4785       fld_worklist_push (DECL_ATTRIBUTES (t), fld);
4786       fld_worklist_push (DECL_ABSTRACT_ORIGIN (t), fld);
4787
4788       if (TREE_CODE (t) == FUNCTION_DECL)
4789         {
4790           fld_worklist_push (DECL_ARGUMENTS (t), fld);
4791           fld_worklist_push (DECL_RESULT (t), fld);
4792         }
4793       else if (TREE_CODE (t) == TYPE_DECL)
4794         {
4795           fld_worklist_push (DECL_ARGUMENT_FLD (t), fld);
4796           fld_worklist_push (DECL_VINDEX (t), fld);
4797           fld_worklist_push (DECL_ORIGINAL_TYPE (t), fld);
4798         }
4799       else if (TREE_CODE (t) == FIELD_DECL)
4800         {
4801           fld_worklist_push (DECL_FIELD_OFFSET (t), fld);
4802           fld_worklist_push (DECL_BIT_FIELD_TYPE (t), fld);
4803           fld_worklist_push (DECL_QUALIFIER (t), fld);
4804           fld_worklist_push (DECL_FIELD_BIT_OFFSET (t), fld);
4805           fld_worklist_push (DECL_FCONTEXT (t), fld);
4806         }
4807       else if (TREE_CODE (t) == VAR_DECL)
4808         {
4809           fld_worklist_push (DECL_SECTION_NAME (t), fld);
4810           fld_worklist_push (DECL_COMDAT_GROUP (t), fld);
4811         }
4812
4813       if ((TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == PARM_DECL)
4814           && DECL_HAS_VALUE_EXPR_P (t))
4815         fld_worklist_push (DECL_VALUE_EXPR (t), fld);
4816
4817       if (TREE_CODE (t) != FIELD_DECL
4818           && TREE_CODE (t) != TYPE_DECL)
4819         fld_worklist_push (TREE_CHAIN (t), fld);
4820       *ws = 0;
4821     }
4822   else if (TYPE_P (t))
4823     {
4824       /* Note that walk_tree does not traverse every possible field in
4825          types, so we have to do our own traversals here.  */
4826       add_tree_to_fld_list (t, fld);
4827
4828       if (!RECORD_OR_UNION_TYPE_P (t))
4829         fld_worklist_push (TYPE_CACHED_VALUES (t), fld);
4830       fld_worklist_push (TYPE_SIZE (t), fld);
4831       fld_worklist_push (TYPE_SIZE_UNIT (t), fld);
4832       fld_worklist_push (TYPE_ATTRIBUTES (t), fld);
4833       fld_worklist_push (TYPE_POINTER_TO (t), fld);
4834       fld_worklist_push (TYPE_REFERENCE_TO (t), fld);
4835       fld_worklist_push (TYPE_NAME (t), fld);
4836       /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO.  We do not stream
4837          them and thus do not and want not to reach unused pointer types
4838          this way.  */
4839       if (!POINTER_TYPE_P (t))
4840         fld_worklist_push (TYPE_MINVAL (t), fld);
4841       if (!RECORD_OR_UNION_TYPE_P (t))
4842         fld_worklist_push (TYPE_MAXVAL (t), fld);
4843       fld_worklist_push (TYPE_MAIN_VARIANT (t), fld);
4844       /* Do not walk TYPE_NEXT_VARIANT.  We do not stream it and thus
4845          do not and want not to reach unused variants this way.  */
4846       fld_worklist_push (TYPE_CONTEXT (t), fld);
4847       /* Do not walk TYPE_CANONICAL.  We do not stream it and thus do not
4848          and want not to reach unused types this way.  */
4849
4850       if (RECORD_OR_UNION_TYPE_P (t) && TYPE_BINFO (t))
4851         {
4852           unsigned i;
4853           tree tem;
4854           for (i = 0; VEC_iterate (tree, BINFO_BASE_BINFOS (TYPE_BINFO (t)),
4855                                    i, tem); ++i)
4856             fld_worklist_push (TREE_TYPE (tem), fld);
4857           tem = BINFO_VIRTUALS (TYPE_BINFO (t));
4858           if (tem
4859               /* The Java FE overloads BINFO_VIRTUALS for its own purpose.  */
4860               && TREE_CODE (tem) == TREE_LIST)
4861             do
4862               {
4863                 fld_worklist_push (TREE_VALUE (tem), fld);
4864                 tem = TREE_CHAIN (tem);
4865               }
4866             while (tem);
4867         }
4868       if (RECORD_OR_UNION_TYPE_P (t))
4869         {
4870           tree tem;
4871           /* Push all TYPE_FIELDS - there can be interleaving interesting
4872              and non-interesting things.  */
4873           tem = TYPE_FIELDS (t);
4874           while (tem)
4875             {
4876               if (TREE_CODE (tem) == FIELD_DECL
4877                   || TREE_CODE (tem) == TYPE_DECL)
4878                 fld_worklist_push (tem, fld);
4879               tem = TREE_CHAIN (tem);
4880             }
4881         }
4882
4883       fld_worklist_push (TYPE_STUB_DECL (t), fld);
4884       *ws = 0;
4885     }
4886   else if (TREE_CODE (t) == BLOCK)
4887     {
4888       tree tem;
4889       for (tem = BLOCK_VARS (t); tem; tem = TREE_CHAIN (tem))
4890         fld_worklist_push (tem, fld);
4891       for (tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
4892         fld_worklist_push (tem, fld);
4893       fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
4894     }
4895
4896   if (TREE_CODE (t) != IDENTIFIER_NODE
4897       && CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED))
4898     fld_worklist_push (TREE_TYPE (t), fld);
4899
4900   return NULL_TREE;
4901 }
4902
4903
4904 /* Find decls and types in T.  */
4905
4906 static void
4907 find_decls_types (tree t, struct free_lang_data_d *fld)
4908 {
4909   while (1)
4910     {
4911       if (!pointer_set_contains (fld->pset, t))
4912         walk_tree (&t, find_decls_types_r, fld, fld->pset);
4913       if (VEC_empty (tree, fld->worklist))
4914         break;
4915       t = VEC_pop (tree, fld->worklist);
4916     }
4917 }
4918
4919 /* Translate all the types in LIST with the corresponding runtime
4920    types.  */
4921
4922 static tree
4923 get_eh_types_for_runtime (tree list)
4924 {
4925   tree head, prev;
4926
4927   if (list == NULL_TREE)
4928     return NULL_TREE;
4929
4930   head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
4931   prev = head;
4932   list = TREE_CHAIN (list);
4933   while (list)
4934     {
4935       tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
4936       TREE_CHAIN (prev) = n;
4937       prev = TREE_CHAIN (prev);
4938       list = TREE_CHAIN (list);
4939     }
4940
4941   return head;
4942 }
4943
4944
4945 /* Find decls and types referenced in EH region R and store them in
4946    FLD->DECLS and FLD->TYPES.  */
4947
4948 static void
4949 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
4950 {
4951   switch (r->type)
4952     {
4953     case ERT_CLEANUP:
4954       break;
4955
4956     case ERT_TRY:
4957       {
4958         eh_catch c;
4959
4960         /* The types referenced in each catch must first be changed to the
4961            EH types used at runtime.  This removes references to FE types
4962            in the region.  */
4963         for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
4964           {
4965             c->type_list = get_eh_types_for_runtime (c->type_list);
4966             walk_tree (&c->type_list, find_decls_types_r, fld, fld->pset);
4967           }
4968       }
4969       break;
4970
4971     case ERT_ALLOWED_EXCEPTIONS:
4972       r->u.allowed.type_list
4973         = get_eh_types_for_runtime (r->u.allowed.type_list);
4974       walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, fld->pset);
4975       break;
4976
4977     case ERT_MUST_NOT_THROW:
4978       walk_tree (&r->u.must_not_throw.failure_decl,
4979                  find_decls_types_r, fld, fld->pset);
4980       break;
4981     }
4982 }
4983
4984
4985 /* Find decls and types referenced in cgraph node N and store them in
4986    FLD->DECLS and FLD->TYPES.  Unlike pass_referenced_vars, this will
4987    look for *every* kind of DECL and TYPE node reachable from N,
4988    including those embedded inside types and decls (i.e,, TYPE_DECLs,
4989    NAMESPACE_DECLs, etc).  */
4990
4991 static void
4992 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
4993 {
4994   basic_block bb;
4995   struct function *fn;
4996   unsigned ix;
4997   tree t;
4998
4999   find_decls_types (n->decl, fld);
5000
5001   if (!gimple_has_body_p (n->decl))
5002     return;
5003
5004   gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
5005
5006   fn = DECL_STRUCT_FUNCTION (n->decl);
5007
5008   /* Traverse locals. */
5009   FOR_EACH_LOCAL_DECL (fn, ix, t)
5010     find_decls_types (t, fld);
5011
5012   /* Traverse EH regions in FN.  */
5013   {
5014     eh_region r;
5015     FOR_ALL_EH_REGION_FN (r, fn)
5016       find_decls_types_in_eh_region (r, fld);
5017   }
5018
5019   /* Traverse every statement in FN.  */
5020   FOR_EACH_BB_FN (bb, fn)
5021     {
5022       gimple_stmt_iterator si;
5023       unsigned i;
5024
5025       for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
5026         {
5027           gimple phi = gsi_stmt (si);
5028
5029           for (i = 0; i < gimple_phi_num_args (phi); i++)
5030             {
5031               tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
5032               find_decls_types (*arg_p, fld);
5033             }
5034         }
5035
5036       for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5037         {
5038           gimple stmt = gsi_stmt (si);
5039
5040           for (i = 0; i < gimple_num_ops (stmt); i++)
5041             {
5042               tree arg = gimple_op (stmt, i);
5043               find_decls_types (arg, fld);
5044             }
5045         }
5046     }
5047 }
5048
5049
5050 /* Find decls and types referenced in varpool node N and store them in
5051    FLD->DECLS and FLD->TYPES.  Unlike pass_referenced_vars, this will
5052    look for *every* kind of DECL and TYPE node reachable from N,
5053    including those embedded inside types and decls (i.e,, TYPE_DECLs,
5054    NAMESPACE_DECLs, etc).  */
5055
5056 static void
5057 find_decls_types_in_var (struct varpool_node *v, struct free_lang_data_d *fld)
5058 {
5059   find_decls_types (v->decl, fld);
5060 }
5061
5062 /* If T needs an assembler name, have one created for it.  */
5063
5064 void
5065 assign_assembler_name_if_neeeded (tree t)
5066 {
5067   if (need_assembler_name_p (t))
5068     {
5069       /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5070          diagnostics that use input_location to show locus
5071          information.  The problem here is that, at this point,
5072          input_location is generally anchored to the end of the file
5073          (since the parser is long gone), so we don't have a good
5074          position to pin it to.
5075
5076          To alleviate this problem, this uses the location of T's
5077          declaration.  Examples of this are
5078          testsuite/g++.dg/template/cond2.C and
5079          testsuite/g++.dg/template/pr35240.C.  */
5080       location_t saved_location = input_location;
5081       input_location = DECL_SOURCE_LOCATION (t);
5082
5083       decl_assembler_name (t);
5084
5085       input_location = saved_location;
5086     }
5087 }
5088
5089
5090 /* Free language specific information for every operand and expression
5091    in every node of the call graph.  This process operates in three stages:
5092
5093    1- Every callgraph node and varpool node is traversed looking for
5094       decls and types embedded in them.  This is a more exhaustive
5095       search than that done by find_referenced_vars, because it will
5096       also collect individual fields, decls embedded in types, etc.
5097
5098    2- All the decls found are sent to free_lang_data_in_decl.
5099
5100    3- All the types found are sent to free_lang_data_in_type.
5101
5102    The ordering between decls and types is important because
5103    free_lang_data_in_decl sets assembler names, which includes
5104    mangling.  So types cannot be freed up until assembler names have
5105    been set up.  */
5106
5107 static void
5108 free_lang_data_in_cgraph (void)
5109 {
5110   struct cgraph_node *n;
5111   struct varpool_node *v;
5112   struct free_lang_data_d fld;
5113   tree t;
5114   unsigned i;
5115   alias_pair *p;
5116
5117   /* Initialize sets and arrays to store referenced decls and types.  */
5118   fld.pset = pointer_set_create ();
5119   fld.worklist = NULL;
5120   fld.decls = VEC_alloc (tree, heap, 100);
5121   fld.types = VEC_alloc (tree, heap, 100);
5122
5123   /* Find decls and types in the body of every function in the callgraph.  */
5124   for (n = cgraph_nodes; n; n = n->next)
5125     find_decls_types_in_node (n, &fld);
5126
5127   FOR_EACH_VEC_ELT (alias_pair, alias_pairs, i, p)
5128     find_decls_types (p->decl, &fld);
5129
5130   /* Find decls and types in every varpool symbol.  */
5131   for (v = varpool_nodes; v; v = v->next)
5132     find_decls_types_in_var (v, &fld);
5133
5134   /* Set the assembler name on every decl found.  We need to do this
5135      now because free_lang_data_in_decl will invalidate data needed
5136      for mangling.  This breaks mangling on interdependent decls.  */
5137   FOR_EACH_VEC_ELT (tree, fld.decls, i, t)
5138     assign_assembler_name_if_neeeded (t);
5139
5140   /* Traverse every decl found freeing its language data.  */
5141   FOR_EACH_VEC_ELT (tree, fld.decls, i, t)
5142     free_lang_data_in_decl (t);
5143
5144   /* Traverse every type found freeing its language data.  */
5145   FOR_EACH_VEC_ELT (tree, fld.types, i, t)
5146     free_lang_data_in_type (t);
5147
5148   pointer_set_destroy (fld.pset);
5149   VEC_free (tree, heap, fld.worklist);
5150   VEC_free (tree, heap, fld.decls);
5151   VEC_free (tree, heap, fld.types);
5152 }
5153
5154
5155 /* Free resources that are used by FE but are not needed once they are done. */
5156
5157 static unsigned
5158 free_lang_data (void)
5159 {
5160   unsigned i;
5161
5162   /* If we are the LTO frontend we have freed lang-specific data already.  */
5163   if (in_lto_p
5164       || !flag_generate_lto)
5165     return 0;
5166
5167   /* Allocate and assign alias sets to the standard integer types
5168      while the slots are still in the way the frontends generated them.  */
5169   for (i = 0; i < itk_none; ++i)
5170     if (integer_types[i])
5171       TYPE_ALIAS_SET (integer_types[i]) = get_alias_set (integer_types[i]);
5172
5173   /* Traverse the IL resetting language specific information for
5174      operands, expressions, etc.  */
5175   free_lang_data_in_cgraph ();
5176
5177   /* Create gimple variants for common types.  */
5178   ptrdiff_type_node = integer_type_node;
5179   fileptr_type_node = ptr_type_node;
5180
5181   /* Reset some langhooks.  Do not reset types_compatible_p, it may
5182      still be used indirectly via the get_alias_set langhook.  */
5183   lang_hooks.callgraph.analyze_expr = NULL;
5184   lang_hooks.dwarf_name = lhd_dwarf_name;
5185   lang_hooks.decl_printable_name = gimple_decl_printable_name;
5186   /* We do not want the default decl_assembler_name implementation,
5187      rather if we have fixed everything we want a wrapper around it
5188      asserting that all non-local symbols already got their assembler
5189      name and only produce assembler names for local symbols.  Or rather
5190      make sure we never call decl_assembler_name on local symbols and
5191      devise a separate, middle-end private scheme for it.  */
5192
5193   /* Reset diagnostic machinery.  */
5194   diagnostic_starter (global_dc) = default_tree_diagnostic_starter;
5195   diagnostic_finalizer (global_dc) = default_diagnostic_finalizer;
5196   diagnostic_format_decoder (global_dc) = default_tree_printer;
5197
5198   return 0;
5199 }
5200
5201
5202 struct simple_ipa_opt_pass pass_ipa_free_lang_data =
5203 {
5204  {
5205   SIMPLE_IPA_PASS,
5206   "*free_lang_data",                    /* name */
5207   NULL,                                 /* gate */
5208   free_lang_data,                       /* execute */
5209   NULL,                                 /* sub */
5210   NULL,                                 /* next */
5211   0,                                    /* static_pass_number */
5212   TV_IPA_FREE_LANG_DATA,                /* tv_id */
5213   0,                                    /* properties_required */
5214   0,                                    /* properties_provided */
5215   0,                                    /* properties_destroyed */
5216   0,                                    /* todo_flags_start */
5217   TODO_ggc_collect                      /* todo_flags_finish */
5218  }
5219 };
5220
5221 /* The backbone of is_attribute_p().  ATTR_LEN is the string length of
5222    ATTR_NAME.  Also used internally by remove_attribute().  */
5223 bool
5224 private_is_attribute_p (const char *attr_name, size_t attr_len, const_tree ident)
5225 {
5226   size_t ident_len = IDENTIFIER_LENGTH (ident);
5227
5228   if (ident_len == attr_len)
5229     {
5230       if (strcmp (attr_name, IDENTIFIER_POINTER (ident)) == 0)
5231         return true;
5232     }
5233   else if (ident_len == attr_len + 4)
5234     {
5235       /* There is the possibility that ATTR is 'text' and IDENT is
5236          '__text__'.  */
5237       const char *p = IDENTIFIER_POINTER (ident);      
5238       if (p[0] == '_' && p[1] == '_'
5239           && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
5240           && strncmp (attr_name, p + 2, attr_len) == 0)
5241         return true;
5242     }
5243
5244   return false;
5245 }
5246
5247 /* The backbone of lookup_attribute().  ATTR_LEN is the string length
5248    of ATTR_NAME, and LIST is not NULL_TREE.  */
5249 tree
5250 private_lookup_attribute (const char *attr_name, size_t attr_len, tree list)
5251 {
5252   while (list)
5253     {
5254       size_t ident_len = IDENTIFIER_LENGTH (TREE_PURPOSE (list));
5255
5256       if (ident_len == attr_len)
5257         {
5258           if (strcmp (attr_name, IDENTIFIER_POINTER (TREE_PURPOSE (list))) == 0)
5259             break;
5260         }
5261       /* TODO: If we made sure that attributes were stored in the
5262          canonical form without '__...__' (ie, as in 'text' as opposed
5263          to '__text__') then we could avoid the following case.  */
5264       else if (ident_len == attr_len + 4)
5265         {
5266           const char *p = IDENTIFIER_POINTER (TREE_PURPOSE (list));
5267           if (p[0] == '_' && p[1] == '_'
5268               && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
5269               && strncmp (attr_name, p + 2, attr_len) == 0)
5270             break;
5271         }
5272       list = TREE_CHAIN (list);
5273     }
5274
5275   return list;
5276 }
5277
5278 /* A variant of lookup_attribute() that can be used with an identifier
5279    as the first argument, and where the identifier can be either
5280    'text' or '__text__'.
5281
5282    Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
5283    return a pointer to the attribute's list element if the attribute
5284    is part of the list, or NULL_TREE if not found.  If the attribute
5285    appears more than once, this only returns the first occurrence; the
5286    TREE_CHAIN of the return value should be passed back in if further
5287    occurrences are wanted.  ATTR_IDENTIFIER must be an identifier but
5288    can be in the form 'text' or '__text__'.  */
5289 static tree
5290 lookup_ident_attribute (tree attr_identifier, tree list)
5291 {
5292   gcc_checking_assert (TREE_CODE (attr_identifier) == IDENTIFIER_NODE);
5293
5294   while (list)
5295     {
5296       gcc_checking_assert (TREE_CODE (TREE_PURPOSE (list)) == IDENTIFIER_NODE);
5297
5298       /* Identifiers can be compared directly for equality.  */
5299       if (attr_identifier == TREE_PURPOSE (list))
5300         break;
5301
5302       /* If they are not equal, they may still be one in the form
5303          'text' while the other one is in the form '__text__'.  TODO:
5304          If we were storing attributes in normalized 'text' form, then
5305          this could all go away and we could take full advantage of
5306          the fact that we're comparing identifiers. :-)  */
5307       {
5308         size_t attr_len = IDENTIFIER_LENGTH (attr_identifier);
5309         size_t ident_len = IDENTIFIER_LENGTH (TREE_PURPOSE (list));
5310
5311         if (ident_len == attr_len + 4)
5312           {
5313             const char *p = IDENTIFIER_POINTER (TREE_PURPOSE (list));
5314             const char *q = IDENTIFIER_POINTER (attr_identifier);
5315             if (p[0] == '_' && p[1] == '_'
5316                 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
5317                 && strncmp (q, p + 2, attr_len) == 0)
5318               break;
5319           }
5320         else if (ident_len + 4 == attr_len)
5321           {
5322             const char *p = IDENTIFIER_POINTER (TREE_PURPOSE (list));
5323             const char *q = IDENTIFIER_POINTER (attr_identifier);
5324             if (q[0] == '_' && q[1] == '_'
5325                 && q[attr_len - 2] == '_' && q[attr_len - 1] == '_'
5326                 && strncmp (q + 2, p, ident_len) == 0)
5327               break;
5328           }
5329       }
5330       list = TREE_CHAIN (list);
5331     }
5332
5333   return list;
5334 }
5335
5336 /* Remove any instances of attribute ATTR_NAME in LIST and return the
5337    modified list.  */
5338
5339 tree
5340 remove_attribute (const char *attr_name, tree list)
5341 {
5342   tree *p;
5343   size_t attr_len = strlen (attr_name);
5344
5345   gcc_checking_assert (attr_name[0] != '_');
5346
5347   for (p = &list; *p; )
5348     {
5349       tree l = *p;
5350       /* TODO: If we were storing attributes in normalized form, here
5351          we could use a simple strcmp().  */
5352       if (private_is_attribute_p (attr_name, attr_len, TREE_PURPOSE (l)))
5353         *p = TREE_CHAIN (l);
5354       else
5355         p = &TREE_CHAIN (l);
5356     }
5357
5358   return list;
5359 }
5360
5361 /* Return an attribute list that is the union of a1 and a2.  */
5362
5363 tree
5364 merge_attributes (tree a1, tree a2)
5365 {
5366   tree attributes;
5367
5368   /* Either one unset?  Take the set one.  */
5369
5370   if ((attributes = a1) == 0)
5371     attributes = a2;
5372
5373   /* One that completely contains the other?  Take it.  */
5374
5375   else if (a2 != 0 && ! attribute_list_contained (a1, a2))
5376     {
5377       if (attribute_list_contained (a2, a1))
5378         attributes = a2;
5379       else
5380         {
5381           /* Pick the longest list, and hang on the other list.  */
5382
5383           if (list_length (a1) < list_length (a2))
5384             attributes = a2, a2 = a1;
5385
5386           for (; a2 != 0; a2 = TREE_CHAIN (a2))
5387             {
5388               tree a;
5389               for (a = lookup_ident_attribute (TREE_PURPOSE (a2), attributes);
5390                    a != NULL_TREE && !attribute_value_equal (a, a2);
5391                    a = lookup_ident_attribute (TREE_PURPOSE (a2), TREE_CHAIN (a)))
5392                 ;
5393               if (a == NULL_TREE)
5394                 {
5395                   a1 = copy_node (a2);
5396                   TREE_CHAIN (a1) = attributes;
5397                   attributes = a1;
5398                 }
5399             }
5400         }
5401     }
5402   return attributes;
5403 }
5404
5405 /* Given types T1 and T2, merge their attributes and return
5406   the result.  */
5407
5408 tree
5409 merge_type_attributes (tree t1, tree t2)
5410 {
5411   return merge_attributes (TYPE_ATTRIBUTES (t1),
5412                            TYPE_ATTRIBUTES (t2));
5413 }
5414
5415 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
5416    the result.  */
5417
5418 tree
5419 merge_decl_attributes (tree olddecl, tree newdecl)
5420 {
5421   return merge_attributes (DECL_ATTRIBUTES (olddecl),
5422                            DECL_ATTRIBUTES (newdecl));
5423 }
5424
5425 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
5426
5427 /* Specialization of merge_decl_attributes for various Windows targets.
5428
5429    This handles the following situation:
5430
5431      __declspec (dllimport) int foo;
5432      int foo;
5433
5434    The second instance of `foo' nullifies the dllimport.  */
5435
5436 tree
5437 merge_dllimport_decl_attributes (tree old, tree new_tree)
5438 {
5439   tree a;
5440   int delete_dllimport_p = 1;
5441
5442   /* What we need to do here is remove from `old' dllimport if it doesn't
5443      appear in `new'.  dllimport behaves like extern: if a declaration is
5444      marked dllimport and a definition appears later, then the object
5445      is not dllimport'd.  We also remove a `new' dllimport if the old list
5446      contains dllexport:  dllexport always overrides dllimport, regardless
5447      of the order of declaration.  */
5448   if (!VAR_OR_FUNCTION_DECL_P (new_tree))
5449     delete_dllimport_p = 0;
5450   else if (DECL_DLLIMPORT_P (new_tree)
5451            && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
5452     {
5453       DECL_DLLIMPORT_P (new_tree) = 0;
5454       warning (OPT_Wattributes, "%q+D already declared with dllexport attribute: "
5455               "dllimport ignored", new_tree);
5456     }
5457   else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree))
5458     {
5459       /* Warn about overriding a symbol that has already been used, e.g.:
5460            extern int __attribute__ ((dllimport)) foo;
5461            int* bar () {return &foo;}
5462            int foo;
5463       */
5464       if (TREE_USED (old))
5465         {
5466           warning (0, "%q+D redeclared without dllimport attribute "
5467                    "after being referenced with dll linkage", new_tree);
5468           /* If we have used a variable's address with dllimport linkage,
5469               keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
5470               decl may already have had TREE_CONSTANT computed.
5471               We still remove the attribute so that assembler code refers
5472               to '&foo rather than '_imp__foo'.  */
5473           if (TREE_CODE (old) == VAR_DECL && TREE_ADDRESSABLE (old))
5474             DECL_DLLIMPORT_P (new_tree) = 1;
5475         }
5476
5477       /* Let an inline definition silently override the external reference,
5478          but otherwise warn about attribute inconsistency.  */
5479       else if (TREE_CODE (new_tree) == VAR_DECL
5480                || !DECL_DECLARED_INLINE_P (new_tree))
5481         warning (OPT_Wattributes, "%q+D redeclared without dllimport attribute: "
5482                   "previous dllimport ignored", new_tree);
5483     }
5484   else
5485     delete_dllimport_p = 0;
5486
5487   a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new_tree));
5488
5489   if (delete_dllimport_p)
5490     a = remove_attribute ("dllimport", a);
5491
5492   return a;
5493 }
5494
5495 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
5496    struct attribute_spec.handler.  */
5497
5498 tree
5499 handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
5500                       bool *no_add_attrs)
5501 {
5502   tree node = *pnode;
5503   bool is_dllimport;
5504
5505   /* These attributes may apply to structure and union types being created,
5506      but otherwise should pass to the declaration involved.  */
5507   if (!DECL_P (node))
5508     {
5509       if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
5510                    | (int) ATTR_FLAG_ARRAY_NEXT))
5511         {
5512           *no_add_attrs = true;
5513           return tree_cons (name, args, NULL_TREE);
5514         }
5515       if (TREE_CODE (node) == RECORD_TYPE
5516           || TREE_CODE (node) == UNION_TYPE)
5517         {
5518           node = TYPE_NAME (node);
5519           if (!node)
5520             return NULL_TREE;
5521         }
5522       else
5523         {
5524           warning (OPT_Wattributes, "%qE attribute ignored",
5525                    name);
5526           *no_add_attrs = true;
5527           return NULL_TREE;
5528         }
5529     }
5530
5531   if (TREE_CODE (node) != FUNCTION_DECL
5532       && TREE_CODE (node) != VAR_DECL
5533       && TREE_CODE (node) != TYPE_DECL)
5534     {
5535       *no_add_attrs = true;
5536       warning (OPT_Wattributes, "%qE attribute ignored",
5537                name);
5538       return NULL_TREE;
5539     }
5540
5541   if (TREE_CODE (node) == TYPE_DECL
5542       && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE
5543       && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE)
5544     {
5545       *no_add_attrs = true;
5546       warning (OPT_Wattributes, "%qE attribute ignored",
5547                name);
5548       return NULL_TREE;
5549     }
5550
5551   is_dllimport = is_attribute_p ("dllimport", name);
5552
5553   /* Report error on dllimport ambiguities seen now before they cause
5554      any damage.  */
5555   if (is_dllimport)
5556     {
5557       /* Honor any target-specific overrides. */
5558       if (!targetm.valid_dllimport_attribute_p (node))
5559         *no_add_attrs = true;
5560
5561      else if (TREE_CODE (node) == FUNCTION_DECL
5562                 && DECL_DECLARED_INLINE_P (node))
5563         {
5564           warning (OPT_Wattributes, "inline function %q+D declared as "
5565                   " dllimport: attribute ignored", node);
5566           *no_add_attrs = true;
5567         }
5568       /* Like MS, treat definition of dllimported variables and
5569          non-inlined functions on declaration as syntax errors. */
5570      else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
5571         {
5572           error ("function %q+D definition is marked dllimport", node);
5573           *no_add_attrs = true;
5574         }
5575
5576      else if (TREE_CODE (node) == VAR_DECL)
5577         {
5578           if (DECL_INITIAL (node))
5579             {
5580               error ("variable %q+D definition is marked dllimport",
5581                      node);
5582               *no_add_attrs = true;
5583             }
5584
5585           /* `extern' needn't be specified with dllimport.
5586              Specify `extern' now and hope for the best.  Sigh.  */
5587           DECL_EXTERNAL (node) = 1;
5588           /* Also, implicitly give dllimport'd variables declared within
5589              a function global scope, unless declared static.  */
5590           if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
5591             TREE_PUBLIC (node) = 1;
5592         }
5593
5594       if (*no_add_attrs == false)
5595         DECL_DLLIMPORT_P (node) = 1;
5596     }
5597   else if (TREE_CODE (node) == FUNCTION_DECL
5598            && DECL_DECLARED_INLINE_P (node)
5599            && flag_keep_inline_dllexport)
5600     /* An exported function, even if inline, must be emitted.  */
5601     DECL_EXTERNAL (node) = 0;
5602
5603   /*  Report error if symbol is not accessible at global scope.  */
5604   if (!TREE_PUBLIC (node)
5605       && (TREE_CODE (node) == VAR_DECL
5606           || TREE_CODE (node) == FUNCTION_DECL))
5607     {
5608       error ("external linkage required for symbol %q+D because of "
5609              "%qE attribute", node, name);
5610       *no_add_attrs = true;
5611     }
5612
5613   /* A dllexport'd entity must have default visibility so that other
5614      program units (shared libraries or the main executable) can see
5615      it.  A dllimport'd entity must have default visibility so that
5616      the linker knows that undefined references within this program
5617      unit can be resolved by the dynamic linker.  */
5618   if (!*no_add_attrs)
5619     {
5620       if (DECL_VISIBILITY_SPECIFIED (node)
5621           && DECL_VISIBILITY (node) != VISIBILITY_DEFAULT)
5622         error ("%qE implies default visibility, but %qD has already "
5623                "been declared with a different visibility",
5624                name, node);
5625       DECL_VISIBILITY (node) = VISIBILITY_DEFAULT;
5626       DECL_VISIBILITY_SPECIFIED (node) = 1;
5627     }
5628
5629   return NULL_TREE;
5630 }
5631
5632 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES  */
5633 \f
5634 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5635    of the various TYPE_QUAL values.  */
5636
5637 static void
5638 set_type_quals (tree type, int type_quals)
5639 {
5640   TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
5641   TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
5642   TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
5643   TYPE_ADDR_SPACE (type) = DECODE_QUAL_ADDR_SPACE (type_quals);
5644 }
5645
5646 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS.  */
5647
5648 bool
5649 check_qualified_type (const_tree cand, const_tree base, int type_quals)
5650 {
5651   return (TYPE_QUALS (cand) == type_quals
5652           && TYPE_NAME (cand) == TYPE_NAME (base)
5653           /* Apparently this is needed for Objective-C.  */
5654           && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5655           /* Check alignment.  */
5656           && TYPE_ALIGN (cand) == TYPE_ALIGN (base)
5657           && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5658                                    TYPE_ATTRIBUTES (base)));
5659 }
5660
5661 /* Returns true iff CAND is equivalent to BASE with ALIGN.  */
5662
5663 static bool
5664 check_aligned_type (const_tree cand, const_tree base, unsigned int align)
5665 {
5666   return (TYPE_QUALS (cand) == TYPE_QUALS (base)
5667           && TYPE_NAME (cand) == TYPE_NAME (base)
5668           /* Apparently this is needed for Objective-C.  */
5669           && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5670           /* Check alignment.  */
5671           && TYPE_ALIGN (cand) == align
5672           && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5673                                    TYPE_ATTRIBUTES (base)));
5674 }
5675
5676 /* Return a version of the TYPE, qualified as indicated by the
5677    TYPE_QUALS, if one exists.  If no qualified version exists yet,
5678    return NULL_TREE.  */
5679
5680 tree
5681 get_qualified_type (tree type, int type_quals)
5682 {
5683   tree t;
5684
5685   if (TYPE_QUALS (type) == type_quals)
5686     return type;
5687
5688   /* Search the chain of variants to see if there is already one there just
5689      like the one we need to have.  If so, use that existing one.  We must
5690      preserve the TYPE_NAME, since there is code that depends on this.  */
5691   for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5692     if (check_qualified_type (t, type, type_quals))
5693       return t;
5694
5695   return NULL_TREE;
5696 }
5697
5698 /* Like get_qualified_type, but creates the type if it does not
5699    exist.  This function never returns NULL_TREE.  */
5700
5701 tree
5702 build_qualified_type (tree type, int type_quals)
5703 {
5704   tree t;
5705
5706   /* See if we already have the appropriate qualified variant.  */
5707   t = get_qualified_type (type, type_quals);
5708
5709   /* If not, build it.  */
5710   if (!t)
5711     {
5712       t = build_variant_type_copy (type);
5713       set_type_quals (t, type_quals);
5714
5715       if (TYPE_STRUCTURAL_EQUALITY_P (type))
5716         /* Propagate structural equality. */
5717         SET_TYPE_STRUCTURAL_EQUALITY (t);
5718       else if (TYPE_CANONICAL (type) != type)
5719         /* Build the underlying canonical type, since it is different
5720            from TYPE. */
5721         TYPE_CANONICAL (t) = build_qualified_type (TYPE_CANONICAL (type),
5722                                                    type_quals);
5723       else
5724         /* T is its own canonical type. */
5725         TYPE_CANONICAL (t) = t;
5726
5727     }
5728
5729   return t;
5730 }
5731
5732 /* Create a variant of type T with alignment ALIGN.  */
5733
5734 tree
5735 build_aligned_type (tree type, unsigned int align)
5736 {
5737   tree t;
5738
5739   if (TYPE_PACKED (type)
5740       || TYPE_ALIGN (type) == align)
5741     return type;
5742
5743   for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5744     if (check_aligned_type (t, type, align))
5745       return t;
5746
5747   t = build_variant_type_copy (type);
5748   TYPE_ALIGN (t) = align;
5749
5750   return t;
5751 }
5752
5753 /* Create a new distinct copy of TYPE.  The new type is made its own
5754    MAIN_VARIANT. If TYPE requires structural equality checks, the
5755    resulting type requires structural equality checks; otherwise, its
5756    TYPE_CANONICAL points to itself. */
5757
5758 tree
5759 build_distinct_type_copy (tree type)
5760 {
5761   tree t = copy_node (type);
5762
5763   TYPE_POINTER_TO (t) = 0;
5764   TYPE_REFERENCE_TO (t) = 0;
5765
5766   /* Set the canonical type either to a new equivalence class, or
5767      propagate the need for structural equality checks. */
5768   if (TYPE_STRUCTURAL_EQUALITY_P (type))
5769     SET_TYPE_STRUCTURAL_EQUALITY (t);
5770   else
5771     TYPE_CANONICAL (t) = t;
5772
5773   /* Make it its own variant.  */
5774   TYPE_MAIN_VARIANT (t) = t;
5775   TYPE_NEXT_VARIANT (t) = 0;
5776
5777   /* Note that it is now possible for TYPE_MIN_VALUE to be a value
5778      whose TREE_TYPE is not t.  This can also happen in the Ada
5779      frontend when using subtypes.  */
5780
5781   return t;
5782 }
5783
5784 /* Create a new variant of TYPE, equivalent but distinct.  This is so
5785    the caller can modify it. TYPE_CANONICAL for the return type will
5786    be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
5787    are considered equal by the language itself (or that both types
5788    require structural equality checks). */
5789
5790 tree
5791 build_variant_type_copy (tree type)
5792 {
5793   tree t, m = TYPE_MAIN_VARIANT (type);
5794
5795   t = build_distinct_type_copy (type);
5796
5797   /* Since we're building a variant, assume that it is a non-semantic
5798      variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
5799   TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
5800
5801   /* Add the new type to the chain of variants of TYPE.  */
5802   TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
5803   TYPE_NEXT_VARIANT (m) = t;
5804   TYPE_MAIN_VARIANT (t) = m;
5805
5806   return t;
5807 }
5808 \f
5809 /* Return true if the from tree in both tree maps are equal.  */
5810
5811 int
5812 tree_map_base_eq (const void *va, const void *vb)
5813 {
5814   const struct tree_map_base  *const a = (const struct tree_map_base *) va,
5815     *const b = (const struct tree_map_base *) vb;
5816   return (a->from == b->from);
5817 }
5818
5819 /* Hash a from tree in a tree_base_map.  */
5820
5821 unsigned int
5822 tree_map_base_hash (const void *item)
5823 {
5824   return htab_hash_pointer (((const struct tree_map_base *)item)->from);
5825 }
5826
5827 /* Return true if this tree map structure is marked for garbage collection
5828    purposes.  We simply return true if the from tree is marked, so that this
5829    structure goes away when the from tree goes away.  */
5830
5831 int
5832 tree_map_base_marked_p (const void *p)
5833 {
5834   return ggc_marked_p (((const struct tree_map_base *) p)->from);
5835 }
5836
5837 /* Hash a from tree in a tree_map.  */
5838
5839 unsigned int
5840 tree_map_hash (const void *item)
5841 {
5842   return (((const struct tree_map *) item)->hash);
5843 }
5844
5845 /* Hash a from tree in a tree_decl_map.  */
5846
5847 unsigned int
5848 tree_decl_map_hash (const void *item)
5849 {
5850   return DECL_UID (((const struct tree_decl_map *) item)->base.from);
5851 }
5852
5853 /* Return the initialization priority for DECL.  */
5854
5855 priority_type
5856 decl_init_priority_lookup (tree decl)
5857 {
5858   struct tree_priority_map *h;
5859   struct tree_map_base in;
5860
5861   gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
5862   in.from = decl;
5863   h = (struct tree_priority_map *) htab_find (init_priority_for_decl, &in);
5864   return h ? h->init : DEFAULT_INIT_PRIORITY;
5865 }
5866
5867 /* Return the finalization priority for DECL.  */
5868
5869 priority_type
5870 decl_fini_priority_lookup (tree decl)
5871 {
5872   struct tree_priority_map *h;
5873   struct tree_map_base in;
5874
5875   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
5876   in.from = decl;
5877   h = (struct tree_priority_map *) htab_find (init_priority_for_decl, &in);
5878   return h ? h->fini : DEFAULT_INIT_PRIORITY;
5879 }
5880
5881 /* Return the initialization and finalization priority information for
5882    DECL.  If there is no previous priority information, a freshly
5883    allocated structure is returned.  */
5884
5885 static struct tree_priority_map *
5886 decl_priority_info (tree decl)
5887 {
5888   struct tree_priority_map in;
5889   struct tree_priority_map *h;
5890   void **loc;
5891
5892   in.base.from = decl;
5893   loc = htab_find_slot (init_priority_for_decl, &in, INSERT);
5894   h = (struct tree_priority_map *) *loc;
5895   if (!h)
5896     {
5897       h = ggc_alloc_cleared_tree_priority_map ();
5898       *loc = h;
5899       h->base.from = decl;
5900       h->init = DEFAULT_INIT_PRIORITY;
5901       h->fini = DEFAULT_INIT_PRIORITY;
5902     }
5903
5904   return h;
5905 }
5906
5907 /* Set the initialization priority for DECL to PRIORITY.  */
5908
5909 void
5910 decl_init_priority_insert (tree decl, priority_type priority)
5911 {
5912   struct tree_priority_map *h;
5913
5914   gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
5915   if (priority == DEFAULT_INIT_PRIORITY)
5916     return;
5917   h = decl_priority_info (decl);
5918   h->init = priority;
5919 }
5920
5921 /* Set the finalization priority for DECL to PRIORITY.  */
5922
5923 void
5924 decl_fini_priority_insert (tree decl, priority_type priority)
5925 {
5926   struct tree_priority_map *h;
5927
5928   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
5929   if (priority == DEFAULT_INIT_PRIORITY)
5930     return;
5931   h = decl_priority_info (decl);
5932   h->fini = priority;
5933 }
5934
5935 /* Print out the statistics for the DECL_DEBUG_EXPR hash table.  */
5936
5937 static void
5938 print_debug_expr_statistics (void)
5939 {
5940   fprintf (stderr, "DECL_DEBUG_EXPR  hash: size %ld, %ld elements, %f collisions\n",
5941            (long) htab_size (debug_expr_for_decl),
5942            (long) htab_elements (debug_expr_for_decl),
5943            htab_collisions (debug_expr_for_decl));
5944 }
5945
5946 /* Print out the statistics for the DECL_VALUE_EXPR hash table.  */
5947
5948 static void
5949 print_value_expr_statistics (void)
5950 {
5951   fprintf (stderr, "DECL_VALUE_EXPR  hash: size %ld, %ld elements, %f collisions\n",
5952            (long) htab_size (value_expr_for_decl),
5953            (long) htab_elements (value_expr_for_decl),
5954            htab_collisions (value_expr_for_decl));
5955 }
5956
5957 /* Lookup a debug expression for FROM, and return it if we find one.  */
5958
5959 tree
5960 decl_debug_expr_lookup (tree from)
5961 {
5962   struct tree_decl_map *h, in;
5963   in.base.from = from;
5964
5965   h = (struct tree_decl_map *)
5966       htab_find_with_hash (debug_expr_for_decl, &in, DECL_UID (from));
5967   if (h)
5968     return h->to;
5969   return NULL_TREE;
5970 }
5971
5972 /* Insert a mapping FROM->TO in the debug expression hashtable.  */
5973
5974 void
5975 decl_debug_expr_insert (tree from, tree to)
5976 {
5977   struct tree_decl_map *h;
5978   void **loc;
5979
5980   h = ggc_alloc_tree_decl_map ();
5981   h->base.from = from;
5982   h->to = to;
5983   loc = htab_find_slot_with_hash (debug_expr_for_decl, h, DECL_UID (from),
5984                                   INSERT);
5985   *(struct tree_decl_map **) loc = h;
5986 }
5987
5988 /* Lookup a value expression for FROM, and return it if we find one.  */
5989
5990 tree
5991 decl_value_expr_lookup (tree from)
5992 {
5993   struct tree_decl_map *h, in;
5994   in.base.from = from;
5995
5996   h = (struct tree_decl_map *)
5997       htab_find_with_hash (value_expr_for_decl, &in, DECL_UID (from));
5998   if (h)
5999     return h->to;
6000   return NULL_TREE;
6001 }
6002
6003 /* Insert a mapping FROM->TO in the value expression hashtable.  */
6004
6005 void
6006 decl_value_expr_insert (tree from, tree to)
6007 {
6008   struct tree_decl_map *h;
6009   void **loc;
6010
6011   h = ggc_alloc_tree_decl_map ();
6012   h->base.from = from;
6013   h->to = to;
6014   loc = htab_find_slot_with_hash (value_expr_for_decl, h, DECL_UID (from),
6015                                   INSERT);
6016   *(struct tree_decl_map **) loc = h;
6017 }
6018
6019 /* Lookup a vector of debug arguments for FROM, and return it if we
6020    find one.  */
6021
6022 VEC(tree, gc) **
6023 decl_debug_args_lookup (tree from)
6024 {
6025   struct tree_vec_map *h, in;
6026
6027   if (!DECL_HAS_DEBUG_ARGS_P (from))
6028     return NULL;
6029   gcc_checking_assert (debug_args_for_decl != NULL);
6030   in.base.from = from;
6031   h = (struct tree_vec_map *)
6032       htab_find_with_hash (debug_args_for_decl, &in, DECL_UID (from));
6033   if (h)
6034     return &h->to;
6035   return NULL;
6036 }
6037
6038 /* Insert a mapping FROM->empty vector of debug arguments in the value
6039    expression hashtable.  */
6040
6041 VEC(tree, gc) **
6042 decl_debug_args_insert (tree from)
6043 {
6044   struct tree_vec_map *h;
6045   void **loc;
6046
6047   if (DECL_HAS_DEBUG_ARGS_P (from))
6048     return decl_debug_args_lookup (from);
6049   if (debug_args_for_decl == NULL)
6050     debug_args_for_decl = htab_create_ggc (64, tree_vec_map_hash,
6051                                            tree_vec_map_eq, 0);
6052   h = ggc_alloc_tree_vec_map ();
6053   h->base.from = from;
6054   h->to = NULL;
6055   loc = htab_find_slot_with_hash (debug_args_for_decl, h, DECL_UID (from),
6056                                   INSERT);
6057   *(struct tree_vec_map **) loc = h;
6058   DECL_HAS_DEBUG_ARGS_P (from) = 1;
6059   return &h->to;
6060 }
6061
6062 /* Hashing of types so that we don't make duplicates.
6063    The entry point is `type_hash_canon'.  */
6064
6065 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
6066    with types in the TREE_VALUE slots), by adding the hash codes
6067    of the individual types.  */
6068
6069 static unsigned int
6070 type_hash_list (const_tree list, hashval_t hashcode)
6071 {
6072   const_tree tail;
6073
6074   for (tail = list; tail; tail = TREE_CHAIN (tail))
6075     if (TREE_VALUE (tail) != error_mark_node)
6076       hashcode = iterative_hash_object (TYPE_HASH (TREE_VALUE (tail)),
6077                                         hashcode);
6078
6079   return hashcode;
6080 }
6081
6082 /* These are the Hashtable callback functions.  */
6083
6084 /* Returns true iff the types are equivalent.  */
6085
6086 static int
6087 type_hash_eq (const void *va, const void *vb)
6088 {
6089   const struct type_hash *const a = (const struct type_hash *) va,
6090     *const b = (const struct type_hash *) vb;
6091
6092   /* First test the things that are the same for all types.  */
6093   if (a->hash != b->hash
6094       || TREE_CODE (a->type) != TREE_CODE (b->type)
6095       || TREE_TYPE (a->type) != TREE_TYPE (b->type)
6096       || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
6097                                  TYPE_ATTRIBUTES (b->type))
6098       || (TREE_CODE (a->type) != COMPLEX_TYPE
6099           && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
6100     return 0;
6101
6102   /* Be careful about comparing arrays before and after the element type
6103      has been completed; don't compare TYPE_ALIGN unless both types are
6104      complete.  */
6105   if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type)
6106       && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
6107           || TYPE_MODE (a->type) != TYPE_MODE (b->type)))
6108     return 0;
6109
6110   switch (TREE_CODE (a->type))
6111     {
6112     case VOID_TYPE:
6113     case COMPLEX_TYPE:
6114     case POINTER_TYPE:
6115     case REFERENCE_TYPE:
6116       return 1;
6117
6118     case VECTOR_TYPE:
6119       return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
6120
6121     case ENUMERAL_TYPE:
6122       if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
6123           && !(TYPE_VALUES (a->type)
6124                && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
6125                && TYPE_VALUES (b->type)
6126                && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
6127                && type_list_equal (TYPE_VALUES (a->type),
6128                                    TYPE_VALUES (b->type))))
6129         return 0;
6130
6131       /* ... fall through ... */
6132
6133     case INTEGER_TYPE:
6134     case REAL_TYPE:
6135     case BOOLEAN_TYPE:
6136       return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
6137                || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
6138                                       TYPE_MAX_VALUE (b->type)))
6139               && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
6140                   || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
6141                                          TYPE_MIN_VALUE (b->type))));
6142
6143     case FIXED_POINT_TYPE:
6144       return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
6145
6146     case OFFSET_TYPE:
6147       return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
6148
6149     case METHOD_TYPE:
6150       if (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
6151           && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6152               || (TYPE_ARG_TYPES (a->type)
6153                   && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6154                   && TYPE_ARG_TYPES (b->type)
6155                   && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6156                   && type_list_equal (TYPE_ARG_TYPES (a->type),
6157                                       TYPE_ARG_TYPES (b->type)))))
6158         break;
6159       return 0;
6160     case ARRAY_TYPE:
6161       return TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type);
6162
6163     case RECORD_TYPE:
6164     case UNION_TYPE:
6165     case QUAL_UNION_TYPE:
6166       return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
6167               || (TYPE_FIELDS (a->type)
6168                   && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
6169                   && TYPE_FIELDS (b->type)
6170                   && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
6171                   && type_list_equal (TYPE_FIELDS (a->type),
6172                                       TYPE_FIELDS (b->type))));
6173
6174     case FUNCTION_TYPE:
6175       if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
6176           || (TYPE_ARG_TYPES (a->type)
6177               && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
6178               && TYPE_ARG_TYPES (b->type)
6179               && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
6180               && type_list_equal (TYPE_ARG_TYPES (a->type),
6181                                   TYPE_ARG_TYPES (b->type))))
6182         break;
6183       return 0;
6184
6185     default:
6186       return 0;
6187     }
6188
6189   if (lang_hooks.types.type_hash_eq != NULL)
6190     return lang_hooks.types.type_hash_eq (a->type, b->type);
6191
6192   return 1;
6193 }
6194
6195 /* Return the cached hash value.  */
6196
6197 static hashval_t
6198 type_hash_hash (const void *item)
6199 {
6200   return ((const struct type_hash *) item)->hash;
6201 }
6202
6203 /* Look in the type hash table for a type isomorphic to TYPE.
6204    If one is found, return it.  Otherwise return 0.  */
6205
6206 tree
6207 type_hash_lookup (hashval_t hashcode, tree type)
6208 {
6209   struct type_hash *h, in;
6210
6211   /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6212      must call that routine before comparing TYPE_ALIGNs.  */
6213   layout_type (type);
6214
6215   in.hash = hashcode;
6216   in.type = type;
6217
6218   h = (struct type_hash *) htab_find_with_hash (type_hash_table, &in,
6219                                                 hashcode);
6220   if (h)
6221     return h->type;
6222   return NULL_TREE;
6223 }
6224
6225 /* Add an entry to the type-hash-table
6226    for a type TYPE whose hash code is HASHCODE.  */
6227
6228 void
6229 type_hash_add (hashval_t hashcode, tree type)
6230 {
6231   struct type_hash *h;
6232   void **loc;
6233
6234   h = ggc_alloc_type_hash ();
6235   h->hash = hashcode;
6236   h->type = type;
6237   loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
6238   *loc = (void *)h;
6239 }
6240
6241 /* Given TYPE, and HASHCODE its hash code, return the canonical
6242    object for an identical type if one already exists.
6243    Otherwise, return TYPE, and record it as the canonical object.
6244
6245    To use this function, first create a type of the sort you want.
6246    Then compute its hash code from the fields of the type that
6247    make it different from other similar types.
6248    Then call this function and use the value.  */
6249
6250 tree
6251 type_hash_canon (unsigned int hashcode, tree type)
6252 {
6253   tree t1;
6254
6255   /* The hash table only contains main variants, so ensure that's what we're
6256      being passed.  */
6257   gcc_assert (TYPE_MAIN_VARIANT (type) == type);
6258
6259   /* See if the type is in the hash table already.  If so, return it.
6260      Otherwise, add the type.  */
6261   t1 = type_hash_lookup (hashcode, type);
6262   if (t1 != 0)
6263     {
6264 #ifdef GATHER_STATISTICS
6265       tree_code_counts[(int) TREE_CODE (type)]--;
6266       tree_node_counts[(int) t_kind]--;
6267       tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type_non_common);
6268 #endif
6269       return t1;
6270     }
6271   else
6272     {
6273       type_hash_add (hashcode, type);
6274       return type;
6275     }
6276 }
6277
6278 /* See if the data pointed to by the type hash table is marked.  We consider
6279    it marked if the type is marked or if a debug type number or symbol
6280    table entry has been made for the type.  */
6281
6282 static int
6283 type_hash_marked_p (const void *p)
6284 {
6285   const_tree const type = ((const struct type_hash *) p)->type;
6286
6287   return ggc_marked_p (type);
6288 }
6289
6290 static void
6291 print_type_hash_statistics (void)
6292 {
6293   fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
6294            (long) htab_size (type_hash_table),
6295            (long) htab_elements (type_hash_table),
6296            htab_collisions (type_hash_table));
6297 }
6298
6299 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
6300    with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
6301    by adding the hash codes of the individual attributes.  */
6302
6303 static unsigned int
6304 attribute_hash_list (const_tree list, hashval_t hashcode)
6305 {
6306   const_tree tail;
6307
6308   for (tail = list; tail; tail = TREE_CHAIN (tail))
6309     /* ??? Do we want to add in TREE_VALUE too? */
6310     hashcode = iterative_hash_object
6311       (IDENTIFIER_HASH_VALUE (TREE_PURPOSE (tail)), hashcode);
6312   return hashcode;
6313 }
6314
6315 /* Given two lists of attributes, return true if list l2 is
6316    equivalent to l1.  */
6317
6318 int
6319 attribute_list_equal (const_tree l1, const_tree l2)
6320 {
6321   if (l1 == l2)
6322     return 1;
6323
6324   return attribute_list_contained (l1, l2)
6325          && attribute_list_contained (l2, l1);
6326 }
6327
6328 /* Given two lists of attributes, return true if list L2 is
6329    completely contained within L1.  */
6330 /* ??? This would be faster if attribute names were stored in a canonicalized
6331    form.  Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
6332    must be used to show these elements are equivalent (which they are).  */
6333 /* ??? It's not clear that attributes with arguments will always be handled
6334    correctly.  */
6335
6336 int
6337 attribute_list_contained (const_tree l1, const_tree l2)
6338 {
6339   const_tree t1, t2;
6340
6341   /* First check the obvious, maybe the lists are identical.  */
6342   if (l1 == l2)
6343     return 1;
6344
6345   /* Maybe the lists are similar.  */
6346   for (t1 = l1, t2 = l2;
6347        t1 != 0 && t2 != 0
6348         && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
6349         && TREE_VALUE (t1) == TREE_VALUE (t2);
6350        t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
6351     ;
6352
6353   /* Maybe the lists are equal.  */
6354   if (t1 == 0 && t2 == 0)
6355     return 1;
6356
6357   for (; t2 != 0; t2 = TREE_CHAIN (t2))
6358     {
6359       const_tree attr;
6360       /* This CONST_CAST is okay because lookup_attribute does not
6361          modify its argument and the return value is assigned to a
6362          const_tree.  */
6363       for (attr = lookup_ident_attribute (TREE_PURPOSE (t2), CONST_CAST_TREE(l1));
6364            attr != NULL_TREE && !attribute_value_equal (t2, attr);
6365            attr = lookup_ident_attribute (TREE_PURPOSE (t2), TREE_CHAIN (attr)))
6366         ;
6367
6368       if (attr == NULL_TREE)
6369         return 0;
6370     }
6371
6372   return 1;
6373 }
6374
6375 /* Given two lists of types
6376    (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6377    return 1 if the lists contain the same types in the same order.
6378    Also, the TREE_PURPOSEs must match.  */
6379
6380 int
6381 type_list_equal (const_tree l1, const_tree l2)
6382 {
6383   const_tree t1, t2;
6384
6385   for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
6386     if (TREE_VALUE (t1) != TREE_VALUE (t2)
6387         || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
6388             && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
6389                   && (TREE_TYPE (TREE_PURPOSE (t1))
6390                       == TREE_TYPE (TREE_PURPOSE (t2))))))
6391       return 0;
6392
6393   return t1 == t2;
6394 }
6395
6396 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6397    given by TYPE.  If the argument list accepts variable arguments,
6398    then this function counts only the ordinary arguments.  */
6399
6400 int
6401 type_num_arguments (const_tree type)
6402 {
6403   int i = 0;
6404   tree t;
6405
6406   for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6407     /* If the function does not take a variable number of arguments,
6408        the last element in the list will have type `void'.  */
6409     if (VOID_TYPE_P (TREE_VALUE (t)))
6410       break;
6411     else
6412       ++i;
6413
6414   return i;
6415 }
6416
6417 /* Nonzero if integer constants T1 and T2
6418    represent the same constant value.  */
6419
6420 int
6421 tree_int_cst_equal (const_tree t1, const_tree t2)
6422 {
6423   if (t1 == t2)
6424     return 1;
6425
6426   if (t1 == 0 || t2 == 0)
6427     return 0;
6428
6429   if (TREE_CODE (t1) == INTEGER_CST
6430       && TREE_CODE (t2) == INTEGER_CST
6431       && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
6432       && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
6433     return 1;
6434
6435   return 0;
6436 }
6437
6438 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
6439    The precise way of comparison depends on their data type.  */
6440
6441 int
6442 tree_int_cst_lt (const_tree t1, const_tree t2)
6443 {
6444   if (t1 == t2)
6445     return 0;
6446
6447   if (TYPE_UNSIGNED (TREE_TYPE (t1)) != TYPE_UNSIGNED (TREE_TYPE (t2)))
6448     {
6449       int t1_sgn = tree_int_cst_sgn (t1);
6450       int t2_sgn = tree_int_cst_sgn (t2);
6451
6452       if (t1_sgn < t2_sgn)
6453         return 1;
6454       else if (t1_sgn > t2_sgn)
6455         return 0;
6456       /* Otherwise, both are non-negative, so we compare them as
6457          unsigned just in case one of them would overflow a signed
6458          type.  */
6459     }
6460   else if (!TYPE_UNSIGNED (TREE_TYPE (t1)))
6461     return INT_CST_LT (t1, t2);
6462
6463   return INT_CST_LT_UNSIGNED (t1, t2);
6464 }
6465
6466 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2.  */
6467
6468 int
6469 tree_int_cst_compare (const_tree t1, const_tree t2)
6470 {
6471   if (tree_int_cst_lt (t1, t2))
6472     return -1;
6473   else if (tree_int_cst_lt (t2, t1))
6474     return 1;
6475   else
6476     return 0;
6477 }
6478
6479 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
6480    the host.  If POS is zero, the value can be represented in a single
6481    HOST_WIDE_INT.  If POS is nonzero, the value must be non-negative and can
6482    be represented in a single unsigned HOST_WIDE_INT.  */
6483
6484 int
6485 host_integerp (const_tree t, int pos)
6486 {
6487   if (t == NULL_TREE)
6488     return 0;
6489
6490   return (TREE_CODE (t) == INTEGER_CST
6491           && ((TREE_INT_CST_HIGH (t) == 0
6492                && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
6493               || (! pos && TREE_INT_CST_HIGH (t) == -1
6494                   && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0
6495                   && (!TYPE_UNSIGNED (TREE_TYPE (t))
6496                       || (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
6497                           && TYPE_IS_SIZETYPE (TREE_TYPE (t)))))
6498               || (pos && TREE_INT_CST_HIGH (t) == 0)));
6499 }
6500
6501 /* Return the HOST_WIDE_INT least significant bits of T if it is an
6502    INTEGER_CST and there is no overflow.  POS is nonzero if the result must
6503    be non-negative.  We must be able to satisfy the above conditions.  */
6504
6505 HOST_WIDE_INT
6506 tree_low_cst (const_tree t, int pos)
6507 {
6508   gcc_assert (host_integerp (t, pos));
6509   return TREE_INT_CST_LOW (t);
6510 }
6511
6512 /* Return the most significant (sign) bit of T.  */
6513
6514 int
6515 tree_int_cst_sign_bit (const_tree t)
6516 {
6517   unsigned bitno = TYPE_PRECISION (TREE_TYPE (t)) - 1;
6518   unsigned HOST_WIDE_INT w;
6519
6520   if (bitno < HOST_BITS_PER_WIDE_INT)
6521     w = TREE_INT_CST_LOW (t);
6522   else
6523     {
6524       w = TREE_INT_CST_HIGH (t);
6525       bitno -= HOST_BITS_PER_WIDE_INT;
6526     }
6527
6528   return (w >> bitno) & 1;
6529 }
6530
6531 /* Return an indication of the sign of the integer constant T.
6532    The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6533    Note that -1 will never be returned if T's type is unsigned.  */
6534
6535 int
6536 tree_int_cst_sgn (const_tree t)
6537 {
6538   if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
6539     return 0;
6540   else if (TYPE_UNSIGNED (TREE_TYPE (t)))
6541     return 1;
6542   else if (TREE_INT_CST_HIGH (t) < 0)
6543     return -1;
6544   else
6545     return 1;
6546 }
6547
6548 /* Return the minimum number of bits needed to represent VALUE in a
6549    signed or unsigned type, UNSIGNEDP says which.  */
6550
6551 unsigned int
6552 tree_int_cst_min_precision (tree value, bool unsignedp)
6553 {
6554   int log;
6555
6556   /* If the value is negative, compute its negative minus 1.  The latter
6557      adjustment is because the absolute value of the largest negative value
6558      is one larger than the largest positive value.  This is equivalent to
6559      a bit-wise negation, so use that operation instead.  */
6560
6561   if (tree_int_cst_sgn (value) < 0)
6562     value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
6563
6564   /* Return the number of bits needed, taking into account the fact
6565      that we need one more bit for a signed than unsigned type.  */
6566
6567   if (integer_zerop (value))
6568     log = 0;
6569   else
6570     log = tree_floor_log2 (value);
6571
6572   return log + 1 + !unsignedp;
6573 }
6574
6575 /* Compare two constructor-element-type constants.  Return 1 if the lists
6576    are known to be equal; otherwise return 0.  */
6577
6578 int
6579 simple_cst_list_equal (const_tree l1, const_tree l2)
6580 {
6581   while (l1 != NULL_TREE && l2 != NULL_TREE)
6582     {
6583       if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
6584         return 0;
6585
6586       l1 = TREE_CHAIN (l1);
6587       l2 = TREE_CHAIN (l2);
6588     }
6589
6590   return l1 == l2;
6591 }
6592
6593 /* Return truthvalue of whether T1 is the same tree structure as T2.
6594    Return 1 if they are the same.
6595    Return 0 if they are understandably different.
6596    Return -1 if either contains tree structure not understood by
6597    this function.  */
6598
6599 int
6600 simple_cst_equal (const_tree t1, const_tree t2)
6601 {
6602   enum tree_code code1, code2;
6603   int cmp;
6604   int i;
6605
6606   if (t1 == t2)
6607     return 1;
6608   if (t1 == 0 || t2 == 0)
6609     return 0;
6610
6611   code1 = TREE_CODE (t1);
6612   code2 = TREE_CODE (t2);
6613
6614   if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
6615     {
6616       if (CONVERT_EXPR_CODE_P (code2)
6617           || code2 == NON_LVALUE_EXPR)
6618         return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6619       else
6620         return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
6621     }
6622
6623   else if (CONVERT_EXPR_CODE_P (code2)
6624            || code2 == NON_LVALUE_EXPR)
6625     return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
6626
6627   if (code1 != code2)
6628     return 0;
6629
6630   switch (code1)
6631     {
6632     case INTEGER_CST:
6633       return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
6634               && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
6635
6636     case REAL_CST:
6637       return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
6638
6639     case FIXED_CST:
6640       return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
6641
6642     case STRING_CST:
6643       return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
6644               && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
6645                          TREE_STRING_LENGTH (t1)));
6646
6647     case CONSTRUCTOR:
6648       {
6649         unsigned HOST_WIDE_INT idx;
6650         VEC(constructor_elt, gc) *v1 = CONSTRUCTOR_ELTS (t1);
6651         VEC(constructor_elt, gc) *v2 = CONSTRUCTOR_ELTS (t2);
6652
6653         if (VEC_length (constructor_elt, v1) != VEC_length (constructor_elt, v2))
6654           return false;
6655
6656         for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx)
6657           /* ??? Should we handle also fields here? */
6658           if (!simple_cst_equal (VEC_index (constructor_elt, v1, idx)->value,
6659                                  VEC_index (constructor_elt, v2, idx)->value))
6660             return false;
6661         return true;
6662       }
6663
6664     case SAVE_EXPR:
6665       return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6666
6667     case CALL_EXPR:
6668       cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
6669       if (cmp <= 0)
6670         return cmp;
6671       if (call_expr_nargs (t1) != call_expr_nargs (t2))
6672         return 0;
6673       {
6674         const_tree arg1, arg2;
6675         const_call_expr_arg_iterator iter1, iter2;
6676         for (arg1 = first_const_call_expr_arg (t1, &iter1),
6677                arg2 = first_const_call_expr_arg (t2, &iter2);
6678              arg1 && arg2;
6679              arg1 = next_const_call_expr_arg (&iter1),
6680                arg2 = next_const_call_expr_arg (&iter2))
6681           {
6682             cmp = simple_cst_equal (arg1, arg2);
6683             if (cmp <= 0)
6684               return cmp;
6685           }
6686         return arg1 == arg2;
6687       }
6688
6689     case TARGET_EXPR:
6690       /* Special case: if either target is an unallocated VAR_DECL,
6691          it means that it's going to be unified with whatever the
6692          TARGET_EXPR is really supposed to initialize, so treat it
6693          as being equivalent to anything.  */
6694       if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
6695            && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
6696            && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
6697           || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
6698               && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
6699               && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
6700         cmp = 1;
6701       else
6702         cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6703
6704       if (cmp <= 0)
6705         return cmp;
6706
6707       return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
6708
6709     case WITH_CLEANUP_EXPR:
6710       cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6711       if (cmp <= 0)
6712         return cmp;
6713
6714       return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
6715
6716     case COMPONENT_REF:
6717       if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
6718         return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6719
6720       return 0;
6721
6722     case VAR_DECL:
6723     case PARM_DECL:
6724     case CONST_DECL:
6725     case FUNCTION_DECL:
6726       return 0;
6727
6728     default:
6729       break;
6730     }
6731
6732   /* This general rule works for most tree codes.  All exceptions should be
6733      handled above.  If this is a language-specific tree code, we can't
6734      trust what might be in the operand, so say we don't know
6735      the situation.  */
6736   if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
6737     return -1;
6738
6739   switch (TREE_CODE_CLASS (code1))
6740     {
6741     case tcc_unary:
6742     case tcc_binary:
6743     case tcc_comparison:
6744     case tcc_expression:
6745     case tcc_reference:
6746     case tcc_statement:
6747       cmp = 1;
6748       for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
6749         {
6750           cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
6751           if (cmp <= 0)
6752             return cmp;
6753         }
6754
6755       return cmp;
6756
6757     default:
6758       return -1;
6759     }
6760 }
6761
6762 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6763    Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6764    than U, respectively.  */
6765
6766 int
6767 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
6768 {
6769   if (tree_int_cst_sgn (t) < 0)
6770     return -1;
6771   else if (TREE_INT_CST_HIGH (t) != 0)
6772     return 1;
6773   else if (TREE_INT_CST_LOW (t) == u)
6774     return 0;
6775   else if (TREE_INT_CST_LOW (t) < u)
6776     return -1;
6777   else
6778     return 1;
6779 }
6780
6781 /* Return true if CODE represents an associative tree code.  Otherwise
6782    return false.  */
6783 bool
6784 associative_tree_code (enum tree_code code)
6785 {
6786   switch (code)
6787     {
6788     case BIT_IOR_EXPR:
6789     case BIT_AND_EXPR:
6790     case BIT_XOR_EXPR:
6791     case PLUS_EXPR:
6792     case MULT_EXPR:
6793     case MIN_EXPR:
6794     case MAX_EXPR:
6795       return true;
6796
6797     default:
6798       break;
6799     }
6800   return false;
6801 }
6802
6803 /* Return true if CODE represents a commutative tree code.  Otherwise
6804    return false.  */
6805 bool
6806 commutative_tree_code (enum tree_code code)
6807 {
6808   switch (code)
6809     {
6810     case PLUS_EXPR:
6811     case MULT_EXPR:
6812     case MIN_EXPR:
6813     case MAX_EXPR:
6814     case BIT_IOR_EXPR:
6815     case BIT_XOR_EXPR:
6816     case BIT_AND_EXPR:
6817     case NE_EXPR:
6818     case EQ_EXPR:
6819     case UNORDERED_EXPR:
6820     case ORDERED_EXPR:
6821     case UNEQ_EXPR:
6822     case LTGT_EXPR:
6823     case TRUTH_AND_EXPR:
6824     case TRUTH_XOR_EXPR:
6825     case TRUTH_OR_EXPR:
6826       return true;
6827
6828     default:
6829       break;
6830     }
6831   return false;
6832 }
6833
6834 /* Return true if CODE represents a ternary tree code for which the
6835    first two operands are commutative.  Otherwise return false.  */
6836 bool
6837 commutative_ternary_tree_code (enum tree_code code)
6838 {
6839   switch (code)
6840     {
6841     case WIDEN_MULT_PLUS_EXPR:
6842     case WIDEN_MULT_MINUS_EXPR:
6843       return true;
6844
6845     default:
6846       break;
6847     }
6848   return false;
6849 }
6850
6851 /* Generate a hash value for an expression.  This can be used iteratively
6852    by passing a previous result as the VAL argument.
6853
6854    This function is intended to produce the same hash for expressions which
6855    would compare equal using operand_equal_p.  */
6856
6857 hashval_t
6858 iterative_hash_expr (const_tree t, hashval_t val)
6859 {
6860   int i;
6861   enum tree_code code;
6862   char tclass;
6863
6864   if (t == NULL_TREE)
6865     return iterative_hash_hashval_t (0, val);
6866
6867   code = TREE_CODE (t);
6868
6869   switch (code)
6870     {
6871     /* Alas, constants aren't shared, so we can't rely on pointer
6872        identity.  */
6873     case INTEGER_CST:
6874       val = iterative_hash_host_wide_int (TREE_INT_CST_LOW (t), val);
6875       return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t), val);
6876     case REAL_CST:
6877       {
6878         unsigned int val2 = real_hash (TREE_REAL_CST_PTR (t));
6879
6880         return iterative_hash_hashval_t (val2, val);
6881       }
6882     case FIXED_CST:
6883       {
6884         unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
6885
6886         return iterative_hash_hashval_t (val2, val);
6887       }
6888     case STRING_CST:
6889       return iterative_hash (TREE_STRING_POINTER (t),
6890                              TREE_STRING_LENGTH (t), val);
6891     case COMPLEX_CST:
6892       val = iterative_hash_expr (TREE_REALPART (t), val);
6893       return iterative_hash_expr (TREE_IMAGPART (t), val);
6894     case VECTOR_CST:
6895       return iterative_hash_expr (TREE_VECTOR_CST_ELTS (t), val);
6896     case SSA_NAME:
6897       /* We can just compare by pointer.  */
6898       return iterative_hash_host_wide_int (SSA_NAME_VERSION (t), val);
6899     case PLACEHOLDER_EXPR:
6900       /* The node itself doesn't matter.  */
6901       return val;
6902     case TREE_LIST:
6903       /* A list of expressions, for a CALL_EXPR or as the elements of a
6904          VECTOR_CST.  */
6905       for (; t; t = TREE_CHAIN (t))
6906         val = iterative_hash_expr (TREE_VALUE (t), val);
6907       return val;
6908     case CONSTRUCTOR:
6909       {
6910         unsigned HOST_WIDE_INT idx;
6911         tree field, value;
6912         FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
6913           {
6914             val = iterative_hash_expr (field, val);
6915             val = iterative_hash_expr (value, val);
6916           }
6917         return val;
6918       }
6919     case MEM_REF:
6920       {
6921         /* The type of the second operand is relevant, except for
6922            its top-level qualifiers.  */
6923         tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (t, 1)));
6924
6925         val = iterative_hash_object (TYPE_HASH (type), val);
6926
6927         /* We could use the standard hash computation from this point
6928            on.  */
6929         val = iterative_hash_object (code, val);
6930         val = iterative_hash_expr (TREE_OPERAND (t, 1), val);
6931         val = iterative_hash_expr (TREE_OPERAND (t, 0), val);
6932         return val;
6933       }
6934     case FUNCTION_DECL:
6935       /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
6936          Otherwise nodes that compare equal according to operand_equal_p might
6937          get different hash codes.  However, don't do this for machine specific
6938          or front end builtins, since the function code is overloaded in those
6939          cases.  */
6940       if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
6941           && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t)))
6942         {
6943           t = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
6944           code = TREE_CODE (t);
6945         }
6946       /* FALL THROUGH */
6947     default:
6948       tclass = TREE_CODE_CLASS (code);
6949
6950       if (tclass == tcc_declaration)
6951         {
6952           /* DECL's have a unique ID */
6953           val = iterative_hash_host_wide_int (DECL_UID (t), val);
6954         }
6955       else
6956         {
6957           gcc_assert (IS_EXPR_CODE_CLASS (tclass));
6958
6959           val = iterative_hash_object (code, val);
6960
6961           /* Don't hash the type, that can lead to having nodes which
6962              compare equal according to operand_equal_p, but which
6963              have different hash codes.  */
6964           if (CONVERT_EXPR_CODE_P (code)
6965               || code == NON_LVALUE_EXPR)
6966             {
6967               /* Make sure to include signness in the hash computation.  */
6968               val += TYPE_UNSIGNED (TREE_TYPE (t));
6969               val = iterative_hash_expr (TREE_OPERAND (t, 0), val);
6970             }
6971
6972           else if (commutative_tree_code (code))
6973             {
6974               /* It's a commutative expression.  We want to hash it the same
6975                  however it appears.  We do this by first hashing both operands
6976                  and then rehashing based on the order of their independent
6977                  hashes.  */
6978               hashval_t one = iterative_hash_expr (TREE_OPERAND (t, 0), 0);
6979               hashval_t two = iterative_hash_expr (TREE_OPERAND (t, 1), 0);
6980               hashval_t t;
6981
6982               if (one > two)
6983                 t = one, one = two, two = t;
6984
6985               val = iterative_hash_hashval_t (one, val);
6986               val = iterative_hash_hashval_t (two, val);
6987             }
6988           else
6989             for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
6990               val = iterative_hash_expr (TREE_OPERAND (t, i), val);
6991         }
6992       return val;
6993     }
6994 }
6995
6996 /* Generate a hash value for a pair of expressions.  This can be used
6997    iteratively by passing a previous result as the VAL argument.
6998
6999    The same hash value is always returned for a given pair of expressions,
7000    regardless of the order in which they are presented.  This is useful in
7001    hashing the operands of commutative functions.  */
7002
7003 hashval_t
7004 iterative_hash_exprs_commutative (const_tree t1,
7005                                   const_tree t2, hashval_t val)
7006 {
7007   hashval_t one = iterative_hash_expr (t1, 0);
7008   hashval_t two = iterative_hash_expr (t2, 0);
7009   hashval_t t;
7010
7011   if (one > two)
7012     t = one, one = two, two = t;
7013   val = iterative_hash_hashval_t (one, val);
7014   val = iterative_hash_hashval_t (two, val);
7015
7016   return val;
7017 }
7018 \f
7019 /* Constructors for pointer, array and function types.
7020    (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7021    constructed by language-dependent code, not here.)  */
7022
7023 /* Construct, lay out and return the type of pointers to TO_TYPE with
7024    mode MODE.  If CAN_ALIAS_ALL is TRUE, indicate this type can
7025    reference all of memory. If such a type has already been
7026    constructed, reuse it.  */
7027
7028 tree
7029 build_pointer_type_for_mode (tree to_type, enum machine_mode mode,
7030                              bool can_alias_all)
7031 {
7032   tree t;
7033
7034   if (to_type == error_mark_node)
7035     return error_mark_node;
7036
7037   /* If the pointed-to type has the may_alias attribute set, force
7038      a TYPE_REF_CAN_ALIAS_ALL pointer to be generated.  */
7039   if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7040     can_alias_all = true;
7041
7042   /* In some cases, languages will have things that aren't a POINTER_TYPE
7043      (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7044      In that case, return that type without regard to the rest of our
7045      operands.
7046
7047      ??? This is a kludge, but consistent with the way this function has
7048      always operated and there doesn't seem to be a good way to avoid this
7049      at the moment.  */
7050   if (TYPE_POINTER_TO (to_type) != 0
7051       && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7052     return TYPE_POINTER_TO (to_type);
7053
7054   /* First, if we already have a type for pointers to TO_TYPE and it's
7055      the proper mode, use it.  */
7056   for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7057     if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7058       return t;
7059
7060   t = make_node (POINTER_TYPE);
7061
7062   TREE_TYPE (t) = to_type;
7063   SET_TYPE_MODE (t, mode);
7064   TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7065   TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7066   TYPE_POINTER_TO (to_type) = t;
7067
7068   if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
7069     SET_TYPE_STRUCTURAL_EQUALITY (t);
7070   else if (TYPE_CANONICAL (to_type) != to_type)
7071     TYPE_CANONICAL (t)
7072       = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
7073                                      mode, can_alias_all);
7074
7075   /* Lay out the type.  This function has many callers that are concerned
7076      with expression-construction, and this simplifies them all.  */
7077   layout_type (t);
7078
7079   return t;
7080 }
7081
7082 /* By default build pointers in ptr_mode.  */
7083
7084 tree
7085 build_pointer_type (tree to_type)
7086 {
7087   addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7088                                               : TYPE_ADDR_SPACE (to_type);
7089   enum machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7090   return build_pointer_type_for_mode (to_type, pointer_mode, false);
7091 }
7092
7093 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE.  */
7094
7095 tree
7096 build_reference_type_for_mode (tree to_type, enum machine_mode mode,
7097                                bool can_alias_all)
7098 {
7099   tree t;
7100
7101   if (to_type == error_mark_node)
7102     return error_mark_node;
7103
7104   /* If the pointed-to type has the may_alias attribute set, force
7105      a TYPE_REF_CAN_ALIAS_ALL pointer to be generated.  */
7106   if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7107     can_alias_all = true;
7108
7109   /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7110      (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7111      In that case, return that type without regard to the rest of our
7112      operands.
7113
7114      ??? This is a kludge, but consistent with the way this function has
7115      always operated and there doesn't seem to be a good way to avoid this
7116      at the moment.  */
7117   if (TYPE_REFERENCE_TO (to_type) != 0
7118       && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
7119     return TYPE_REFERENCE_TO (to_type);
7120
7121   /* First, if we already have a type for pointers to TO_TYPE and it's
7122      the proper mode, use it.  */
7123   for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
7124     if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
7125       return t;
7126
7127   t = make_node (REFERENCE_TYPE);
7128
7129   TREE_TYPE (t) = to_type;
7130   SET_TYPE_MODE (t, mode);
7131   TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
7132   TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
7133   TYPE_REFERENCE_TO (to_type) = t;
7134
7135   if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
7136     SET_TYPE_STRUCTURAL_EQUALITY (t);
7137   else if (TYPE_CANONICAL (to_type) != to_type)
7138     TYPE_CANONICAL (t)
7139       = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
7140                                        mode, can_alias_all);
7141
7142   layout_type (t);
7143
7144   return t;
7145 }
7146
7147
7148 /* Build the node for the type of references-to-TO_TYPE by default
7149    in ptr_mode.  */
7150
7151 tree
7152 build_reference_type (tree to_type)
7153 {
7154   addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
7155                                               : TYPE_ADDR_SPACE (to_type);
7156   enum machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
7157   return build_reference_type_for_mode (to_type, pointer_mode, false);
7158 }
7159
7160 /* Build a type that is compatible with t but has no cv quals anywhere
7161    in its type, thus
7162
7163    const char *const *const *  ->  char ***.  */
7164
7165 tree
7166 build_type_no_quals (tree t)
7167 {
7168   switch (TREE_CODE (t))
7169     {
7170     case POINTER_TYPE:
7171       return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
7172                                           TYPE_MODE (t),
7173                                           TYPE_REF_CAN_ALIAS_ALL (t));
7174     case REFERENCE_TYPE:
7175       return
7176         build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
7177                                        TYPE_MODE (t),
7178                                        TYPE_REF_CAN_ALIAS_ALL (t));
7179     default:
7180       return TYPE_MAIN_VARIANT (t);
7181     }
7182 }
7183
7184 #define MAX_INT_CACHED_PREC \
7185   (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7186 static GTY(()) tree nonstandard_integer_type_cache[2 * MAX_INT_CACHED_PREC + 2];
7187
7188 /* Builds a signed or unsigned integer type of precision PRECISION.
7189    Used for C bitfields whose precision does not match that of
7190    built-in target types.  */
7191 tree
7192 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
7193                                 int unsignedp)
7194 {
7195   tree itype, ret;
7196
7197   if (unsignedp)
7198     unsignedp = MAX_INT_CACHED_PREC + 1;
7199     
7200   if (precision <= MAX_INT_CACHED_PREC)
7201     {
7202       itype = nonstandard_integer_type_cache[precision + unsignedp];
7203       if (itype)
7204         return itype;
7205     }
7206
7207   itype = make_node (INTEGER_TYPE);
7208   TYPE_PRECISION (itype) = precision;
7209
7210   if (unsignedp)
7211     fixup_unsigned_type (itype);
7212   else
7213     fixup_signed_type (itype);
7214
7215   ret = itype;
7216   if (host_integerp (TYPE_MAX_VALUE (itype), 1))
7217     ret = type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype), 1), itype);
7218   if (precision <= MAX_INT_CACHED_PREC)
7219     nonstandard_integer_type_cache[precision + unsignedp] = ret;
7220
7221   return ret;
7222 }
7223
7224 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7225    or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL.  If SHARED
7226    is true, reuse such a type that has already been constructed.  */
7227
7228 static tree
7229 build_range_type_1 (tree type, tree lowval, tree highval, bool shared)
7230 {
7231   tree itype = make_node (INTEGER_TYPE);
7232   hashval_t hashcode = 0;
7233
7234   TREE_TYPE (itype) = type;
7235
7236   TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
7237   TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
7238
7239   TYPE_PRECISION (itype) = TYPE_PRECISION (type);
7240   SET_TYPE_MODE (itype, TYPE_MODE (type));
7241   TYPE_SIZE (itype) = TYPE_SIZE (type);
7242   TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
7243   TYPE_ALIGN (itype) = TYPE_ALIGN (type);
7244   TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
7245
7246   if (!shared)
7247     return itype;
7248
7249   if ((TYPE_MIN_VALUE (itype)
7250        && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST)
7251       || (TYPE_MAX_VALUE (itype)
7252           && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST))
7253     {
7254       /* Since we cannot reliably merge this type, we need to compare it using
7255          structural equality checks.  */
7256       SET_TYPE_STRUCTURAL_EQUALITY (itype);
7257       return itype;
7258     }
7259
7260   hashcode = iterative_hash_expr (TYPE_MIN_VALUE (itype), hashcode);
7261   hashcode = iterative_hash_expr (TYPE_MAX_VALUE (itype), hashcode);
7262   hashcode = iterative_hash_hashval_t (TYPE_HASH (type), hashcode);
7263   itype = type_hash_canon (hashcode, itype);
7264
7265   return itype;
7266 }
7267
7268 /* Wrapper around build_range_type_1 with SHARED set to true.  */
7269
7270 tree
7271 build_range_type (tree type, tree lowval, tree highval)
7272 {
7273   return build_range_type_1 (type, lowval, highval, true);
7274 }
7275
7276 /* Wrapper around build_range_type_1 with SHARED set to false.  */
7277
7278 tree
7279 build_nonshared_range_type (tree type, tree lowval, tree highval)
7280 {
7281   return build_range_type_1 (type, lowval, highval, false);
7282 }
7283
7284 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7285    MAXVAL should be the maximum value in the domain
7286    (one less than the length of the array).
7287
7288    The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7289    We don't enforce this limit, that is up to caller (e.g. language front end).
7290    The limit exists because the result is a signed type and we don't handle
7291    sizes that use more than one HOST_WIDE_INT.  */
7292
7293 tree
7294 build_index_type (tree maxval)
7295 {
7296   return build_range_type (sizetype, size_zero_node, maxval);
7297 }
7298
7299 /* Return true if the debug information for TYPE, a subtype, should be emitted
7300    as a subrange type.  If so, set LOWVAL to the low bound and HIGHVAL to the
7301    high bound, respectively.  Sometimes doing so unnecessarily obfuscates the
7302    debug info and doesn't reflect the source code.  */
7303
7304 bool
7305 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
7306 {
7307   tree base_type = TREE_TYPE (type), low, high;
7308
7309   /* Subrange types have a base type which is an integral type.  */
7310   if (!INTEGRAL_TYPE_P (base_type))
7311     return false;
7312
7313   /* Get the real bounds of the subtype.  */
7314   if (lang_hooks.types.get_subrange_bounds)
7315     lang_hooks.types.get_subrange_bounds (type, &low, &high);
7316   else
7317     {
7318       low = TYPE_MIN_VALUE (type);
7319       high = TYPE_MAX_VALUE (type);
7320     }
7321
7322   /* If the type and its base type have the same representation and the same
7323      name, then the type is not a subrange but a copy of the base type.  */
7324   if ((TREE_CODE (base_type) == INTEGER_TYPE
7325        || TREE_CODE (base_type) == BOOLEAN_TYPE)
7326       && int_size_in_bytes (type) == int_size_in_bytes (base_type)
7327       && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
7328       && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type)))
7329     {
7330       tree type_name = TYPE_NAME (type);
7331       tree base_type_name = TYPE_NAME (base_type);
7332
7333       if (type_name && TREE_CODE (type_name) == TYPE_DECL)
7334         type_name = DECL_NAME (type_name);
7335
7336       if (base_type_name && TREE_CODE (base_type_name) == TYPE_DECL)
7337         base_type_name = DECL_NAME (base_type_name);
7338
7339       if (type_name == base_type_name)
7340         return false;
7341     }
7342
7343   if (lowval)
7344     *lowval = low;
7345   if (highval)
7346     *highval = high;
7347   return true;
7348 }
7349
7350 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7351    and number of elements specified by the range of values of INDEX_TYPE.
7352    If SHARED is true, reuse such a type that has already been constructed.  */
7353
7354 static tree
7355 build_array_type_1 (tree elt_type, tree index_type, bool shared)
7356 {
7357   tree t;
7358
7359   if (TREE_CODE (elt_type) == FUNCTION_TYPE)
7360     {
7361       error ("arrays of functions are not meaningful");
7362       elt_type = integer_type_node;
7363     }
7364
7365   t = make_node (ARRAY_TYPE);
7366   TREE_TYPE (t) = elt_type;
7367   TYPE_DOMAIN (t) = index_type;
7368   TYPE_ADDR_SPACE (t) = TYPE_ADDR_SPACE (elt_type);
7369   layout_type (t);
7370
7371   /* If the element type is incomplete at this point we get marked for
7372      structural equality.  Do not record these types in the canonical
7373      type hashtable.  */
7374   if (TYPE_STRUCTURAL_EQUALITY_P (t))
7375     return t;
7376
7377   if (shared)
7378     {
7379       hashval_t hashcode = iterative_hash_object (TYPE_HASH (elt_type), 0);
7380       if (index_type)
7381         hashcode = iterative_hash_object (TYPE_HASH (index_type), hashcode);
7382       t = type_hash_canon (hashcode, t);
7383     }
7384
7385   if (TYPE_CANONICAL (t) == t)
7386     {
7387       if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
7388           || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
7389         SET_TYPE_STRUCTURAL_EQUALITY (t);
7390       else if (TYPE_CANONICAL (elt_type) != elt_type
7391                || (index_type && TYPE_CANONICAL (index_type) != index_type))
7392         TYPE_CANONICAL (t)
7393           = build_array_type_1 (TYPE_CANONICAL (elt_type),
7394                                 index_type
7395                                 ? TYPE_CANONICAL (index_type) : NULL_TREE,
7396                                 shared);
7397     }
7398
7399   return t;
7400 }
7401
7402 /* Wrapper around build_array_type_1 with SHARED set to true.  */
7403
7404 tree
7405 build_array_type (tree elt_type, tree index_type)
7406 {
7407   return build_array_type_1 (elt_type, index_type, true);
7408 }
7409
7410 /* Wrapper around build_array_type_1 with SHARED set to false.  */
7411
7412 tree
7413 build_nonshared_array_type (tree elt_type, tree index_type)
7414 {
7415   return build_array_type_1 (elt_type, index_type, false);
7416 }
7417
7418 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7419    sizetype.  */
7420
7421 tree
7422 build_array_type_nelts (tree elt_type, unsigned HOST_WIDE_INT nelts)
7423 {
7424   return build_array_type (elt_type, build_index_type (size_int (nelts - 1)));
7425 }
7426
7427 /* Recursively examines the array elements of TYPE, until a non-array
7428    element type is found.  */
7429
7430 tree
7431 strip_array_types (tree type)
7432 {
7433   while (TREE_CODE (type) == ARRAY_TYPE)
7434     type = TREE_TYPE (type);
7435
7436   return type;
7437 }
7438
7439 /* Computes the canonical argument types from the argument type list
7440    ARGTYPES.
7441
7442    Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7443    on entry to this function, or if any of the ARGTYPES are
7444    structural.
7445
7446    Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7447    true on entry to this function, or if any of the ARGTYPES are
7448    non-canonical.
7449
7450    Returns a canonical argument list, which may be ARGTYPES when the
7451    canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7452    true) or would not differ from ARGTYPES.  */
7453
7454 static tree
7455 maybe_canonicalize_argtypes(tree argtypes,
7456                             bool *any_structural_p,
7457                             bool *any_noncanonical_p)
7458 {
7459   tree arg;
7460   bool any_noncanonical_argtypes_p = false;
7461
7462   for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
7463     {
7464       if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
7465         /* Fail gracefully by stating that the type is structural.  */
7466         *any_structural_p = true;
7467       else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
7468         *any_structural_p = true;
7469       else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
7470                || TREE_PURPOSE (arg))
7471         /* If the argument has a default argument, we consider it
7472            non-canonical even though the type itself is canonical.
7473            That way, different variants of function and method types
7474            with default arguments will all point to the variant with
7475            no defaults as their canonical type.  */
7476         any_noncanonical_argtypes_p = true;
7477     }
7478
7479   if (*any_structural_p)
7480     return argtypes;
7481
7482   if (any_noncanonical_argtypes_p)
7483     {
7484       /* Build the canonical list of argument types.  */
7485       tree canon_argtypes = NULL_TREE;
7486       bool is_void = false;
7487
7488       for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
7489         {
7490           if (arg == void_list_node)
7491             is_void = true;
7492           else
7493             canon_argtypes = tree_cons (NULL_TREE,
7494                                         TYPE_CANONICAL (TREE_VALUE (arg)),
7495                                         canon_argtypes);
7496         }
7497
7498       canon_argtypes = nreverse (canon_argtypes);
7499       if (is_void)
7500         canon_argtypes = chainon (canon_argtypes, void_list_node);
7501
7502       /* There is a non-canonical type.  */
7503       *any_noncanonical_p = true;
7504       return canon_argtypes;
7505     }
7506
7507   /* The canonical argument types are the same as ARGTYPES.  */
7508   return argtypes;
7509 }
7510
7511 /* Construct, lay out and return
7512    the type of functions returning type VALUE_TYPE
7513    given arguments of types ARG_TYPES.
7514    ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7515    are data type nodes for the arguments of the function.
7516    If such a type has already been constructed, reuse it.  */
7517
7518 tree
7519 build_function_type (tree value_type, tree arg_types)
7520 {
7521   tree t;
7522   hashval_t hashcode = 0;
7523   bool any_structural_p, any_noncanonical_p;
7524   tree canon_argtypes;
7525
7526   if (TREE_CODE (value_type) == FUNCTION_TYPE)
7527     {
7528       error ("function return type cannot be function");
7529       value_type = integer_type_node;
7530     }
7531
7532   /* Make a node of the sort we want.  */
7533   t = make_node (FUNCTION_TYPE);
7534   TREE_TYPE (t) = value_type;
7535   TYPE_ARG_TYPES (t) = arg_types;
7536
7537   /* If we already have such a type, use the old one.  */
7538   hashcode = iterative_hash_object (TYPE_HASH (value_type), hashcode);
7539   hashcode = type_hash_list (arg_types, hashcode);
7540   t = type_hash_canon (hashcode, t);
7541
7542   /* Set up the canonical type. */
7543   any_structural_p   = TYPE_STRUCTURAL_EQUALITY_P (value_type);
7544   any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
7545   canon_argtypes = maybe_canonicalize_argtypes (arg_types,
7546                                                 &any_structural_p,
7547                                                 &any_noncanonical_p);
7548   if (any_structural_p)
7549     SET_TYPE_STRUCTURAL_EQUALITY (t);
7550   else if (any_noncanonical_p)
7551     TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
7552                                               canon_argtypes);
7553
7554   if (!COMPLETE_TYPE_P (t))
7555     layout_type (t);
7556   return t;
7557 }
7558
7559 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP.  */
7560
7561 tree
7562 build_function_type_skip_args (tree orig_type, bitmap args_to_skip)
7563 {
7564   tree new_type = NULL;
7565   tree args, new_args = NULL, t;
7566   tree new_reversed;
7567   int i = 0;
7568
7569   for (args = TYPE_ARG_TYPES (orig_type); args && args != void_list_node;
7570        args = TREE_CHAIN (args), i++)
7571     if (!bitmap_bit_p (args_to_skip, i))
7572       new_args = tree_cons (NULL_TREE, TREE_VALUE (args), new_args);
7573
7574   new_reversed = nreverse (new_args);
7575   if (args)
7576     {
7577       if (new_reversed)
7578         TREE_CHAIN (new_args) = void_list_node;
7579       else
7580         new_reversed = void_list_node;
7581     }
7582
7583   /* Use copy_node to preserve as much as possible from original type
7584      (debug info, attribute lists etc.)
7585      Exception is METHOD_TYPEs must have THIS argument.
7586      When we are asked to remove it, we need to build new FUNCTION_TYPE
7587      instead.  */
7588   if (TREE_CODE (orig_type) != METHOD_TYPE
7589       || !bitmap_bit_p (args_to_skip, 0))
7590     {
7591       new_type = build_distinct_type_copy (orig_type);
7592       TYPE_ARG_TYPES (new_type) = new_reversed;
7593     }
7594   else
7595     {
7596       new_type
7597         = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type),
7598                                                          new_reversed));
7599       TYPE_CONTEXT (new_type) = TYPE_CONTEXT (orig_type);
7600     }
7601
7602   /* This is a new type, not a copy of an old type.  Need to reassociate
7603      variants.  We can handle everything except the main variant lazily.  */
7604   t = TYPE_MAIN_VARIANT (orig_type);
7605   if (orig_type != t)
7606     {
7607       TYPE_MAIN_VARIANT (new_type) = t;
7608       TYPE_NEXT_VARIANT (new_type) = TYPE_NEXT_VARIANT (t);
7609       TYPE_NEXT_VARIANT (t) = new_type;
7610     }
7611   else
7612     {
7613       TYPE_MAIN_VARIANT (new_type) = new_type;
7614       TYPE_NEXT_VARIANT (new_type) = NULL;
7615     }
7616   return new_type;
7617 }
7618
7619 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP.
7620
7621    Arguments from DECL_ARGUMENTS list can't be removed now, since they are
7622    linked by TREE_CHAIN directly.  The caller is responsible for eliminating
7623    them when they are being duplicated (i.e. copy_arguments_for_versioning).  */
7624
7625 tree
7626 build_function_decl_skip_args (tree orig_decl, bitmap args_to_skip)
7627 {
7628   tree new_decl = copy_node (orig_decl);
7629   tree new_type;
7630
7631   new_type = TREE_TYPE (orig_decl);
7632   if (prototype_p (new_type))
7633     new_type = build_function_type_skip_args (new_type, args_to_skip);
7634   TREE_TYPE (new_decl) = new_type;
7635
7636   /* For declarations setting DECL_VINDEX (i.e. methods)
7637      we expect first argument to be THIS pointer.   */
7638   if (bitmap_bit_p (args_to_skip, 0))
7639     DECL_VINDEX (new_decl) = NULL_TREE;
7640
7641   /* When signature changes, we need to clear builtin info.  */
7642   if (DECL_BUILT_IN (new_decl) && !bitmap_empty_p (args_to_skip))
7643     {
7644       DECL_BUILT_IN_CLASS (new_decl) = NOT_BUILT_IN;
7645       DECL_FUNCTION_CODE (new_decl) = (enum built_in_function) 0;
7646     }
7647   return new_decl;
7648 }
7649
7650 /* Build a function type.  The RETURN_TYPE is the type returned by the
7651    function.  If VAARGS is set, no void_type_node is appended to the
7652    the list.  ARGP must be always be terminated be a NULL_TREE.  */
7653
7654 static tree
7655 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
7656 {
7657   tree t, args, last;
7658
7659   t = va_arg (argp, tree);
7660   for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
7661     args = tree_cons (NULL_TREE, t, args);
7662
7663   if (vaargs)
7664     {
7665       last = args;
7666       if (args != NULL_TREE)
7667         args = nreverse (args);
7668       gcc_assert (last != void_list_node);
7669     }
7670   else if (args == NULL_TREE)
7671     args = void_list_node;
7672   else
7673     {
7674       last = args;
7675       args = nreverse (args);
7676       TREE_CHAIN (last) = void_list_node;
7677     }
7678   args = build_function_type (return_type, args);
7679
7680   return args;
7681 }
7682
7683 /* Build a function type.  The RETURN_TYPE is the type returned by the
7684    function.  If additional arguments are provided, they are
7685    additional argument types.  The list of argument types must always
7686    be terminated by NULL_TREE.  */
7687
7688 tree
7689 build_function_type_list (tree return_type, ...)
7690 {
7691   tree args;
7692   va_list p;
7693
7694   va_start (p, return_type);
7695   args = build_function_type_list_1 (false, return_type, p);
7696   va_end (p);
7697   return args;
7698 }
7699
7700 /* Build a variable argument function type.  The RETURN_TYPE is the
7701    type returned by the function.  If additional arguments are provided,
7702    they are additional argument types.  The list of argument types must
7703    always be terminated by NULL_TREE.  */
7704
7705 tree
7706 build_varargs_function_type_list (tree return_type, ...)
7707 {
7708   tree args;
7709   va_list p;
7710
7711   va_start (p, return_type);
7712   args = build_function_type_list_1 (true, return_type, p);
7713   va_end (p);
7714
7715   return args;
7716 }
7717
7718 /* Build a function type.  RETURN_TYPE is the type returned by the
7719    function; VAARGS indicates whether the function takes varargs.  The
7720    function takes N named arguments, the types of which are provided in
7721    ARG_TYPES.  */
7722
7723 static tree
7724 build_function_type_array_1 (bool vaargs, tree return_type, int n,
7725                              tree *arg_types)
7726 {
7727   int i;
7728   tree t = vaargs ? NULL_TREE : void_list_node;
7729
7730   for (i = n - 1; i >= 0; i--)
7731     t = tree_cons (NULL_TREE, arg_types[i], t);
7732
7733   return build_function_type (return_type, t);
7734 }
7735
7736 /* Build a function type.  RETURN_TYPE is the type returned by the
7737    function.  The function takes N named arguments, the types of which
7738    are provided in ARG_TYPES.  */
7739
7740 tree
7741 build_function_type_array (tree return_type, int n, tree *arg_types)
7742 {
7743   return build_function_type_array_1 (false, return_type, n, arg_types);
7744 }
7745
7746 /* Build a variable argument function type.  RETURN_TYPE is the type
7747    returned by the function.  The function takes N named arguments, the
7748    types of which are provided in ARG_TYPES.  */
7749
7750 tree
7751 build_varargs_function_type_array (tree return_type, int n, tree *arg_types)
7752 {
7753   return build_function_type_array_1 (true, return_type, n, arg_types);
7754 }
7755
7756 /* Build a METHOD_TYPE for a member of BASETYPE.  The RETTYPE (a TYPE)
7757    and ARGTYPES (a TREE_LIST) are the return type and arguments types
7758    for the method.  An implicit additional parameter (of type
7759    pointer-to-BASETYPE) is added to the ARGTYPES.  */
7760
7761 tree
7762 build_method_type_directly (tree basetype,
7763                             tree rettype,
7764                             tree argtypes)
7765 {
7766   tree t;
7767   tree ptype;
7768   int hashcode = 0;
7769   bool any_structural_p, any_noncanonical_p;
7770   tree canon_argtypes;
7771
7772   /* Make a node of the sort we want.  */
7773   t = make_node (METHOD_TYPE);
7774
7775   TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
7776   TREE_TYPE (t) = rettype;
7777   ptype = build_pointer_type (basetype);
7778
7779   /* The actual arglist for this function includes a "hidden" argument
7780      which is "this".  Put it into the list of argument types.  */
7781   argtypes = tree_cons (NULL_TREE, ptype, argtypes);
7782   TYPE_ARG_TYPES (t) = argtypes;
7783
7784   /* If we already have such a type, use the old one.  */
7785   hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
7786   hashcode = iterative_hash_object (TYPE_HASH (rettype), hashcode);
7787   hashcode = type_hash_list (argtypes, hashcode);
7788   t = type_hash_canon (hashcode, t);
7789
7790   /* Set up the canonical type. */
7791   any_structural_p
7792     = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
7793        || TYPE_STRUCTURAL_EQUALITY_P (rettype));
7794   any_noncanonical_p
7795     = (TYPE_CANONICAL (basetype) != basetype
7796        || TYPE_CANONICAL (rettype) != rettype);
7797   canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
7798                                                 &any_structural_p,
7799                                                 &any_noncanonical_p);
7800   if (any_structural_p)
7801     SET_TYPE_STRUCTURAL_EQUALITY (t);
7802   else if (any_noncanonical_p)
7803     TYPE_CANONICAL (t)
7804       = build_method_type_directly (TYPE_CANONICAL (basetype),
7805                                     TYPE_CANONICAL (rettype),
7806                                     canon_argtypes);
7807   if (!COMPLETE_TYPE_P (t))
7808     layout_type (t);
7809
7810   return t;
7811 }
7812
7813 /* Construct, lay out and return the type of methods belonging to class
7814    BASETYPE and whose arguments and values are described by TYPE.
7815    If that type exists already, reuse it.
7816    TYPE must be a FUNCTION_TYPE node.  */
7817
7818 tree
7819 build_method_type (tree basetype, tree type)
7820 {
7821   gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
7822
7823   return build_method_type_directly (basetype,
7824                                      TREE_TYPE (type),
7825                                      TYPE_ARG_TYPES (type));
7826 }
7827
7828 /* Construct, lay out and return the type of offsets to a value
7829    of type TYPE, within an object of type BASETYPE.
7830    If a suitable offset type exists already, reuse it.  */
7831
7832 tree
7833 build_offset_type (tree basetype, tree type)
7834 {
7835   tree t;
7836   hashval_t hashcode = 0;
7837
7838   /* Make a node of the sort we want.  */
7839   t = make_node (OFFSET_TYPE);
7840
7841   TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
7842   TREE_TYPE (t) = type;
7843
7844   /* If we already have such a type, use the old one.  */
7845   hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
7846   hashcode = iterative_hash_object (TYPE_HASH (type), hashcode);
7847   t = type_hash_canon (hashcode, t);
7848
7849   if (!COMPLETE_TYPE_P (t))
7850     layout_type (t);
7851
7852   if (TYPE_CANONICAL (t) == t)
7853     {
7854       if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
7855           || TYPE_STRUCTURAL_EQUALITY_P (type))
7856         SET_TYPE_STRUCTURAL_EQUALITY (t);
7857       else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
7858                || TYPE_CANONICAL (type) != type)
7859         TYPE_CANONICAL (t)
7860           = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
7861                                TYPE_CANONICAL (type));
7862     }
7863
7864   return t;
7865 }
7866
7867 /* Create a complex type whose components are COMPONENT_TYPE.  */
7868
7869 tree
7870 build_complex_type (tree component_type)
7871 {
7872   tree t;
7873   hashval_t hashcode;
7874
7875   gcc_assert (INTEGRAL_TYPE_P (component_type)
7876               || SCALAR_FLOAT_TYPE_P (component_type)
7877               || FIXED_POINT_TYPE_P (component_type));
7878
7879   /* Make a node of the sort we want.  */
7880   t = make_node (COMPLEX_TYPE);
7881
7882   TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
7883
7884   /* If we already have such a type, use the old one.  */
7885   hashcode = iterative_hash_object (TYPE_HASH (component_type), 0);
7886   t = type_hash_canon (hashcode, t);
7887
7888   if (!COMPLETE_TYPE_P (t))
7889     layout_type (t);
7890
7891   if (TYPE_CANONICAL (t) == t)
7892     {
7893       if (TYPE_STRUCTURAL_EQUALITY_P (component_type))
7894         SET_TYPE_STRUCTURAL_EQUALITY (t);
7895       else if (TYPE_CANONICAL (component_type) != component_type)
7896         TYPE_CANONICAL (t)
7897           = build_complex_type (TYPE_CANONICAL (component_type));
7898     }
7899
7900   /* We need to create a name, since complex is a fundamental type.  */
7901   if (! TYPE_NAME (t))
7902     {
7903       const char *name;
7904       if (component_type == char_type_node)
7905         name = "complex char";
7906       else if (component_type == signed_char_type_node)
7907         name = "complex signed char";
7908       else if (component_type == unsigned_char_type_node)
7909         name = "complex unsigned char";
7910       else if (component_type == short_integer_type_node)
7911         name = "complex short int";
7912       else if (component_type == short_unsigned_type_node)
7913         name = "complex short unsigned int";
7914       else if (component_type == integer_type_node)
7915         name = "complex int";
7916       else if (component_type == unsigned_type_node)
7917         name = "complex unsigned int";
7918       else if (component_type == long_integer_type_node)
7919         name = "complex long int";
7920       else if (component_type == long_unsigned_type_node)
7921         name = "complex long unsigned int";
7922       else if (component_type == long_long_integer_type_node)
7923         name = "complex long long int";
7924       else if (component_type == long_long_unsigned_type_node)
7925         name = "complex long long unsigned int";
7926       else
7927         name = 0;
7928
7929       if (name != 0)
7930         TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
7931                                     get_identifier (name), t);
7932     }
7933
7934   return build_qualified_type (t, TYPE_QUALS (component_type));
7935 }
7936
7937 /* If TYPE is a real or complex floating-point type and the target
7938    does not directly support arithmetic on TYPE then return the wider
7939    type to be used for arithmetic on TYPE.  Otherwise, return
7940    NULL_TREE.  */
7941
7942 tree
7943 excess_precision_type (tree type)
7944 {
7945   if (flag_excess_precision != EXCESS_PRECISION_FAST)
7946     {
7947       int flt_eval_method = TARGET_FLT_EVAL_METHOD;
7948       switch (TREE_CODE (type))
7949         {
7950         case REAL_TYPE:
7951           switch (flt_eval_method)
7952             {
7953             case 1:
7954               if (TYPE_MODE (type) == TYPE_MODE (float_type_node))
7955                 return double_type_node;
7956               break;
7957             case 2:
7958               if (TYPE_MODE (type) == TYPE_MODE (float_type_node)
7959                   || TYPE_MODE (type) == TYPE_MODE (double_type_node))
7960                 return long_double_type_node;
7961               break;
7962             default:
7963               gcc_unreachable ();
7964             }
7965           break;
7966         case COMPLEX_TYPE:
7967           if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
7968             return NULL_TREE;
7969           switch (flt_eval_method)
7970             {
7971             case 1:
7972               if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node))
7973                 return complex_double_type_node;
7974               break;
7975             case 2:
7976               if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node)
7977                   || (TYPE_MODE (TREE_TYPE (type))
7978                       == TYPE_MODE (double_type_node)))
7979                 return complex_long_double_type_node;
7980               break;
7981             default:
7982               gcc_unreachable ();
7983             }
7984           break;
7985         default:
7986           break;
7987         }
7988     }
7989   return NULL_TREE;
7990 }
7991 \f
7992 /* Return OP, stripped of any conversions to wider types as much as is safe.
7993    Converting the value back to OP's type makes a value equivalent to OP.
7994
7995    If FOR_TYPE is nonzero, we return a value which, if converted to
7996    type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
7997
7998    OP must have integer, real or enumeral type.  Pointers are not allowed!
7999
8000    There are some cases where the obvious value we could return
8001    would regenerate to OP if converted to OP's type,
8002    but would not extend like OP to wider types.
8003    If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8004    For example, if OP is (unsigned short)(signed char)-1,
8005    we avoid returning (signed char)-1 if FOR_TYPE is int,
8006    even though extending that to an unsigned short would regenerate OP,
8007    since the result of extending (signed char)-1 to (int)
8008    is different from (int) OP.  */
8009
8010 tree
8011 get_unwidened (tree op, tree for_type)
8012 {
8013   /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension.  */
8014   tree type = TREE_TYPE (op);
8015   unsigned final_prec
8016     = TYPE_PRECISION (for_type != 0 ? for_type : type);
8017   int uns
8018     = (for_type != 0 && for_type != type
8019        && final_prec > TYPE_PRECISION (type)
8020        && TYPE_UNSIGNED (type));
8021   tree win = op;
8022
8023   while (CONVERT_EXPR_P (op))
8024     {
8025       int bitschange;
8026
8027       /* TYPE_PRECISION on vector types has different meaning
8028          (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8029          so avoid them here.  */
8030       if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
8031         break;
8032
8033       bitschange = TYPE_PRECISION (TREE_TYPE (op))
8034                    - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
8035
8036       /* Truncations are many-one so cannot be removed.
8037          Unless we are later going to truncate down even farther.  */
8038       if (bitschange < 0
8039           && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
8040         break;
8041
8042       /* See what's inside this conversion.  If we decide to strip it,
8043          we will set WIN.  */
8044       op = TREE_OPERAND (op, 0);
8045
8046       /* If we have not stripped any zero-extensions (uns is 0),
8047          we can strip any kind of extension.
8048          If we have previously stripped a zero-extension,
8049          only zero-extensions can safely be stripped.
8050          Any extension can be stripped if the bits it would produce
8051          are all going to be discarded later by truncating to FOR_TYPE.  */
8052
8053       if (bitschange > 0)
8054         {
8055           if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
8056             win = op;
8057           /* TYPE_UNSIGNED says whether this is a zero-extension.
8058              Let's avoid computing it if it does not affect WIN
8059              and if UNS will not be needed again.  */
8060           if ((uns
8061                || CONVERT_EXPR_P (op))
8062               && TYPE_UNSIGNED (TREE_TYPE (op)))
8063             {
8064               uns = 1;
8065               win = op;
8066             }
8067         }
8068     }
8069
8070   /* If we finally reach a constant see if it fits in for_type and
8071      in that case convert it.  */
8072   if (for_type
8073       && TREE_CODE (win) == INTEGER_CST
8074       && TREE_TYPE (win) != for_type
8075       && int_fits_type_p (win, for_type))
8076     win = fold_convert (for_type, win);
8077
8078   return win;
8079 }
8080 \f
8081 /* Return OP or a simpler expression for a narrower value
8082    which can be sign-extended or zero-extended to give back OP.
8083    Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8084    or 0 if the value should be sign-extended.  */
8085
8086 tree
8087 get_narrower (tree op, int *unsignedp_ptr)
8088 {
8089   int uns = 0;
8090   int first = 1;
8091   tree win = op;
8092   bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
8093
8094   while (TREE_CODE (op) == NOP_EXPR)
8095     {
8096       int bitschange
8097         = (TYPE_PRECISION (TREE_TYPE (op))
8098            - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
8099
8100       /* Truncations are many-one so cannot be removed.  */
8101       if (bitschange < 0)
8102         break;
8103
8104       /* See what's inside this conversion.  If we decide to strip it,
8105          we will set WIN.  */
8106
8107       if (bitschange > 0)
8108         {
8109           op = TREE_OPERAND (op, 0);
8110           /* An extension: the outermost one can be stripped,
8111              but remember whether it is zero or sign extension.  */
8112           if (first)
8113             uns = TYPE_UNSIGNED (TREE_TYPE (op));
8114           /* Otherwise, if a sign extension has been stripped,
8115              only sign extensions can now be stripped;
8116              if a zero extension has been stripped, only zero-extensions.  */
8117           else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
8118             break;
8119           first = 0;
8120         }
8121       else /* bitschange == 0 */
8122         {
8123           /* A change in nominal type can always be stripped, but we must
8124              preserve the unsignedness.  */
8125           if (first)
8126             uns = TYPE_UNSIGNED (TREE_TYPE (op));
8127           first = 0;
8128           op = TREE_OPERAND (op, 0);
8129           /* Keep trying to narrow, but don't assign op to win if it
8130              would turn an integral type into something else.  */
8131           if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
8132             continue;
8133         }
8134
8135       win = op;
8136     }
8137
8138   if (TREE_CODE (op) == COMPONENT_REF
8139       /* Since type_for_size always gives an integer type.  */
8140       && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
8141       && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
8142       /* Ensure field is laid out already.  */
8143       && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
8144       && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
8145     {
8146       unsigned HOST_WIDE_INT innerprec
8147         = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
8148       int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
8149                        || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
8150       tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
8151
8152       /* We can get this structure field in a narrower type that fits it,
8153          but the resulting extension to its nominal type (a fullword type)
8154          must satisfy the same conditions as for other extensions.
8155
8156          Do this only for fields that are aligned (not bit-fields),
8157          because when bit-field insns will be used there is no
8158          advantage in doing this.  */
8159
8160       if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
8161           && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
8162           && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
8163           && type != 0)
8164         {
8165           if (first)
8166             uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
8167           win = fold_convert (type, op);
8168         }
8169     }
8170
8171   *unsignedp_ptr = uns;
8172   return win;
8173 }
8174 \f
8175 /* Returns true if integer constant C has a value that is permissible
8176    for type TYPE (an INTEGER_TYPE).  */
8177
8178 bool
8179 int_fits_type_p (const_tree c, const_tree type)
8180 {
8181   tree type_low_bound, type_high_bound;
8182   bool ok_for_low_bound, ok_for_high_bound, unsc;
8183   double_int dc, dd;
8184
8185   dc = tree_to_double_int (c);
8186   unsc = TYPE_UNSIGNED (TREE_TYPE (c));
8187
8188   if (TREE_CODE (TREE_TYPE (c)) == INTEGER_TYPE
8189       && TYPE_IS_SIZETYPE (TREE_TYPE (c))
8190       && unsc)
8191     /* So c is an unsigned integer whose type is sizetype and type is not.
8192        sizetype'd integers are sign extended even though they are
8193        unsigned. If the integer value fits in the lower end word of c,
8194        and if the higher end word has all its bits set to 1, that
8195        means the higher end bits are set to 1 only for sign extension.
8196        So let's convert c into an equivalent zero extended unsigned
8197        integer.  */
8198     dc = double_int_zext (dc, TYPE_PRECISION (TREE_TYPE (c)));
8199
8200 retry:
8201   type_low_bound = TYPE_MIN_VALUE (type);
8202   type_high_bound = TYPE_MAX_VALUE (type);
8203
8204   /* If at least one bound of the type is a constant integer, we can check
8205      ourselves and maybe make a decision. If no such decision is possible, but
8206      this type is a subtype, try checking against that.  Otherwise, use
8207      double_int_fits_to_tree_p, which checks against the precision.
8208
8209      Compute the status for each possibly constant bound, and return if we see
8210      one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8211      for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8212      for "constant known to fit".  */
8213
8214   /* Check if c >= type_low_bound.  */
8215   if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
8216     {
8217       dd = tree_to_double_int (type_low_bound);
8218       if (TREE_CODE (type) == INTEGER_TYPE
8219           && TYPE_IS_SIZETYPE (type)
8220           && TYPE_UNSIGNED (type))
8221         dd = double_int_zext (dd, TYPE_PRECISION (type));
8222       if (unsc != TYPE_UNSIGNED (TREE_TYPE (type_low_bound)))
8223         {
8224           int c_neg = (!unsc && double_int_negative_p (dc));
8225           int t_neg = (unsc && double_int_negative_p (dd));
8226
8227           if (c_neg && !t_neg)
8228             return false;
8229           if ((c_neg || !t_neg) && double_int_ucmp (dc, dd) < 0)
8230             return false;
8231         }
8232       else if (double_int_cmp (dc, dd, unsc) < 0)
8233         return false;
8234       ok_for_low_bound = true;
8235     }
8236   else
8237     ok_for_low_bound = false;
8238
8239   /* Check if c <= type_high_bound.  */
8240   if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
8241     {
8242       dd = tree_to_double_int (type_high_bound);
8243       if (TREE_CODE (type) == INTEGER_TYPE
8244           && TYPE_IS_SIZETYPE (type)
8245           && TYPE_UNSIGNED (type))
8246         dd = double_int_zext (dd, TYPE_PRECISION (type));
8247       if (unsc != TYPE_UNSIGNED (TREE_TYPE (type_high_bound)))
8248         {
8249           int c_neg = (!unsc && double_int_negative_p (dc));
8250           int t_neg = (unsc && double_int_negative_p (dd));
8251
8252           if (t_neg && !c_neg)
8253             return false;
8254           if ((t_neg || !c_neg) && double_int_ucmp (dc, dd) > 0)
8255             return false;
8256         }
8257       else if (double_int_cmp (dc, dd, unsc) > 0)
8258         return false;
8259       ok_for_high_bound = true;
8260     }
8261   else
8262     ok_for_high_bound = false;
8263
8264   /* If the constant fits both bounds, the result is known.  */
8265   if (ok_for_low_bound && ok_for_high_bound)
8266     return true;
8267
8268   /* Perform some generic filtering which may allow making a decision
8269      even if the bounds are not constant.  First, negative integers
8270      never fit in unsigned types, */
8271   if (TYPE_UNSIGNED (type) && !unsc && double_int_negative_p (dc))
8272     return false;
8273
8274   /* Second, narrower types always fit in wider ones.  */
8275   if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
8276     return true;
8277
8278   /* Third, unsigned integers with top bit set never fit signed types.  */
8279   if (! TYPE_UNSIGNED (type) && unsc)
8280     {
8281       int prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (c))) - 1;
8282       if (prec < HOST_BITS_PER_WIDE_INT)
8283         {
8284           if (((((unsigned HOST_WIDE_INT) 1) << prec) & dc.low) != 0)
8285             return false;
8286         }
8287       else if (((((unsigned HOST_WIDE_INT) 1)
8288                  << (prec - HOST_BITS_PER_WIDE_INT)) & dc.high) != 0)
8289         return false;
8290     }
8291
8292   /* If we haven't been able to decide at this point, there nothing more we
8293      can check ourselves here.  Look at the base type if we have one and it
8294      has the same precision.  */
8295   if (TREE_CODE (type) == INTEGER_TYPE
8296       && TREE_TYPE (type) != 0
8297       && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
8298     {
8299       type = TREE_TYPE (type);
8300       goto retry;
8301     }
8302
8303   /* Or to double_int_fits_to_tree_p, if nothing else.  */
8304   return double_int_fits_to_tree_p (type, dc);
8305 }
8306
8307 /* Stores bounds of an integer TYPE in MIN and MAX.  If TYPE has non-constant
8308    bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8309    represented (assuming two's-complement arithmetic) within the bit
8310    precision of the type are returned instead.  */
8311
8312 void
8313 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
8314 {
8315   if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
8316       && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
8317     mpz_set_double_int (min, tree_to_double_int (TYPE_MIN_VALUE (type)),
8318                         TYPE_UNSIGNED (type));
8319   else
8320     {
8321       if (TYPE_UNSIGNED (type))
8322         mpz_set_ui (min, 0);
8323       else
8324         {
8325           double_int mn;
8326           mn = double_int_mask (TYPE_PRECISION (type) - 1);
8327           mn = double_int_sext (double_int_add (mn, double_int_one),
8328                                 TYPE_PRECISION (type));
8329           mpz_set_double_int (min, mn, false);
8330         }
8331     }
8332
8333   if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
8334       && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
8335     mpz_set_double_int (max, tree_to_double_int (TYPE_MAX_VALUE (type)),
8336                         TYPE_UNSIGNED (type));
8337   else
8338     {
8339       if (TYPE_UNSIGNED (type))
8340         mpz_set_double_int (max, double_int_mask (TYPE_PRECISION (type)),
8341                             true);
8342       else
8343         mpz_set_double_int (max, double_int_mask (TYPE_PRECISION (type) - 1),
8344                             true);
8345     }
8346 }
8347
8348 /* Return true if VAR is an automatic variable defined in function FN.  */
8349
8350 bool
8351 auto_var_in_fn_p (const_tree var, const_tree fn)
8352 {
8353   return (DECL_P (var) && DECL_CONTEXT (var) == fn
8354           && ((((TREE_CODE (var) == VAR_DECL && ! DECL_EXTERNAL (var))
8355                 || TREE_CODE (var) == PARM_DECL)
8356                && ! TREE_STATIC (var))
8357               || TREE_CODE (var) == LABEL_DECL
8358               || TREE_CODE (var) == RESULT_DECL));
8359 }
8360
8361 /* Subprogram of following function.  Called by walk_tree.
8362
8363    Return *TP if it is an automatic variable or parameter of the
8364    function passed in as DATA.  */
8365
8366 static tree
8367 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
8368 {
8369   tree fn = (tree) data;
8370
8371   if (TYPE_P (*tp))
8372     *walk_subtrees = 0;
8373
8374   else if (DECL_P (*tp)
8375            && auto_var_in_fn_p (*tp, fn))
8376     return *tp;
8377
8378   return NULL_TREE;
8379 }
8380
8381 /* Returns true if T is, contains, or refers to a type with variable
8382    size.  For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8383    arguments, but not the return type.  If FN is nonzero, only return
8384    true if a modifier of the type or position of FN is a variable or
8385    parameter inside FN.
8386
8387    This concept is more general than that of C99 'variably modified types':
8388    in C99, a struct type is never variably modified because a VLA may not
8389    appear as a structure member.  However, in GNU C code like:
8390
8391      struct S { int i[f()]; };
8392
8393    is valid, and other languages may define similar constructs.  */
8394
8395 bool
8396 variably_modified_type_p (tree type, tree fn)
8397 {
8398   tree t;
8399
8400 /* Test if T is either variable (if FN is zero) or an expression containing
8401    a variable in FN.  */
8402 #define RETURN_TRUE_IF_VAR(T)                                           \
8403   do { tree _t = (T);                                                   \
8404     if (_t && _t != error_mark_node && TREE_CODE (_t) != INTEGER_CST    \
8405         && (!fn || walk_tree (&_t, find_var_from_fn, fn, NULL)))        \
8406       return true;  } while (0)
8407
8408   if (type == error_mark_node)
8409     return false;
8410
8411   /* If TYPE itself has variable size, it is variably modified.  */
8412   RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
8413   RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
8414
8415   switch (TREE_CODE (type))
8416     {
8417     case POINTER_TYPE:
8418     case REFERENCE_TYPE:
8419     case VECTOR_TYPE:
8420       if (variably_modified_type_p (TREE_TYPE (type), fn))
8421         return true;
8422       break;
8423
8424     case FUNCTION_TYPE:
8425     case METHOD_TYPE:
8426       /* If TYPE is a function type, it is variably modified if the
8427          return type is variably modified.  */
8428       if (variably_modified_type_p (TREE_TYPE (type), fn))
8429           return true;
8430       break;
8431
8432     case INTEGER_TYPE:
8433     case REAL_TYPE:
8434     case FIXED_POINT_TYPE:
8435     case ENUMERAL_TYPE:
8436     case BOOLEAN_TYPE:
8437       /* Scalar types are variably modified if their end points
8438          aren't constant.  */
8439       RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
8440       RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
8441       break;
8442
8443     case RECORD_TYPE:
8444     case UNION_TYPE:
8445     case QUAL_UNION_TYPE:
8446       /* We can't see if any of the fields are variably-modified by the
8447          definition we normally use, since that would produce infinite
8448          recursion via pointers.  */
8449       /* This is variably modified if some field's type is.  */
8450       for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
8451         if (TREE_CODE (t) == FIELD_DECL)
8452           {
8453             RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
8454             RETURN_TRUE_IF_VAR (DECL_SIZE (t));
8455             RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
8456
8457             if (TREE_CODE (type) == QUAL_UNION_TYPE)
8458               RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
8459           }
8460         break;
8461
8462     case ARRAY_TYPE:
8463       /* Do not call ourselves to avoid infinite recursion.  This is
8464          variably modified if the element type is.  */
8465       RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
8466       RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
8467       break;
8468
8469     default:
8470       break;
8471     }
8472
8473   /* The current language may have other cases to check, but in general,
8474      all other types are not variably modified.  */
8475   return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
8476
8477 #undef RETURN_TRUE_IF_VAR
8478 }
8479
8480 /* Given a DECL or TYPE, return the scope in which it was declared, or
8481    NULL_TREE if there is no containing scope.  */
8482
8483 tree
8484 get_containing_scope (const_tree t)
8485 {
8486   return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
8487 }
8488
8489 /* Return the innermost context enclosing DECL that is
8490    a FUNCTION_DECL, or zero if none.  */
8491
8492 tree
8493 decl_function_context (const_tree decl)
8494 {
8495   tree context;
8496
8497   if (TREE_CODE (decl) == ERROR_MARK)
8498     return 0;
8499
8500   /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8501      where we look up the function at runtime.  Such functions always take
8502      a first argument of type 'pointer to real context'.
8503
8504      C++ should really be fixed to use DECL_CONTEXT for the real context,
8505      and use something else for the "virtual context".  */
8506   else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
8507     context
8508       = TYPE_MAIN_VARIANT
8509         (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
8510   else
8511     context = DECL_CONTEXT (decl);
8512
8513   while (context && TREE_CODE (context) != FUNCTION_DECL)
8514     {
8515       if (TREE_CODE (context) == BLOCK)
8516         context = BLOCK_SUPERCONTEXT (context);
8517       else
8518         context = get_containing_scope (context);
8519     }
8520
8521   return context;
8522 }
8523
8524 /* Return the innermost context enclosing DECL that is
8525    a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8526    TYPE_DECLs and FUNCTION_DECLs are transparent to this function.  */
8527
8528 tree
8529 decl_type_context (const_tree decl)
8530 {
8531   tree context = DECL_CONTEXT (decl);
8532
8533   while (context)
8534     switch (TREE_CODE (context))
8535       {
8536       case NAMESPACE_DECL:
8537       case TRANSLATION_UNIT_DECL:
8538         return NULL_TREE;
8539
8540       case RECORD_TYPE:
8541       case UNION_TYPE:
8542       case QUAL_UNION_TYPE:
8543         return context;
8544
8545       case TYPE_DECL:
8546       case FUNCTION_DECL:
8547         context = DECL_CONTEXT (context);
8548         break;
8549
8550       case BLOCK:
8551         context = BLOCK_SUPERCONTEXT (context);
8552         break;
8553
8554       default:
8555         gcc_unreachable ();
8556       }
8557
8558   return NULL_TREE;
8559 }
8560
8561 /* CALL is a CALL_EXPR.  Return the declaration for the function
8562    called, or NULL_TREE if the called function cannot be
8563    determined.  */
8564
8565 tree
8566 get_callee_fndecl (const_tree call)
8567 {
8568   tree addr;
8569
8570   if (call == error_mark_node)
8571     return error_mark_node;
8572
8573   /* It's invalid to call this function with anything but a
8574      CALL_EXPR.  */
8575   gcc_assert (TREE_CODE (call) == CALL_EXPR);
8576
8577   /* The first operand to the CALL is the address of the function
8578      called.  */
8579   addr = CALL_EXPR_FN (call);
8580
8581   STRIP_NOPS (addr);
8582
8583   /* If this is a readonly function pointer, extract its initial value.  */
8584   if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
8585       && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
8586       && DECL_INITIAL (addr))
8587     addr = DECL_INITIAL (addr);
8588
8589   /* If the address is just `&f' for some function `f', then we know
8590      that `f' is being called.  */
8591   if (TREE_CODE (addr) == ADDR_EXPR
8592       && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
8593     return TREE_OPERAND (addr, 0);
8594
8595   /* We couldn't figure out what was being called.  */
8596   return NULL_TREE;
8597 }
8598
8599 /* Print debugging information about tree nodes generated during the compile,
8600    and any language-specific information.  */
8601
8602 void
8603 dump_tree_statistics (void)
8604 {
8605 #ifdef GATHER_STATISTICS
8606   int i;
8607   int total_nodes, total_bytes;
8608 #endif
8609
8610   fprintf (stderr, "\n??? tree nodes created\n\n");
8611 #ifdef GATHER_STATISTICS
8612   fprintf (stderr, "Kind                   Nodes      Bytes\n");
8613   fprintf (stderr, "---------------------------------------\n");
8614   total_nodes = total_bytes = 0;
8615   for (i = 0; i < (int) all_kinds; i++)
8616     {
8617       fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
8618                tree_node_counts[i], tree_node_sizes[i]);
8619       total_nodes += tree_node_counts[i];
8620       total_bytes += tree_node_sizes[i];
8621     }
8622   fprintf (stderr, "---------------------------------------\n");
8623   fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
8624   fprintf (stderr, "---------------------------------------\n");
8625   fprintf (stderr, "Code                   Nodes\n");
8626   fprintf (stderr, "----------------------------\n");
8627   for (i = 0; i < (int) MAX_TREE_CODES; i++)
8628     fprintf (stderr, "%-20s %7d\n", tree_code_name[i], tree_code_counts[i]);
8629   fprintf (stderr, "----------------------------\n");
8630   ssanames_print_statistics ();
8631   phinodes_print_statistics ();
8632 #else
8633   fprintf (stderr, "(No per-node statistics)\n");
8634 #endif
8635   print_type_hash_statistics ();
8636   print_debug_expr_statistics ();
8637   print_value_expr_statistics ();
8638   lang_hooks.print_statistics ();
8639 }
8640 \f
8641 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
8642
8643 /* Generate a crc32 of a byte.  */
8644
8645 unsigned
8646 crc32_byte (unsigned chksum, char byte)
8647 {
8648   unsigned value = (unsigned) byte << 24;
8649       unsigned ix;
8650
8651       for (ix = 8; ix--; value <<= 1)
8652         {
8653           unsigned feedback;
8654
8655           feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
8656           chksum <<= 1;
8657           chksum ^= feedback;
8658         }
8659   return chksum;
8660 }
8661
8662
8663 /* Generate a crc32 of a string.  */
8664
8665 unsigned
8666 crc32_string (unsigned chksum, const char *string)
8667 {
8668   do
8669     {
8670       chksum = crc32_byte (chksum, *string);
8671     }
8672   while (*string++);
8673   return chksum;
8674 }
8675
8676 /* P is a string that will be used in a symbol.  Mask out any characters
8677    that are not valid in that context.  */
8678
8679 void
8680 clean_symbol_name (char *p)
8681 {
8682   for (; *p; p++)
8683     if (! (ISALNUM (*p)
8684 #ifndef NO_DOLLAR_IN_LABEL      /* this for `$'; unlikely, but... -- kr */
8685             || *p == '$'
8686 #endif
8687 #ifndef NO_DOT_IN_LABEL         /* this for `.'; unlikely, but...  */
8688             || *p == '.'
8689 #endif
8690            ))
8691       *p = '_';
8692 }
8693
8694 /* Generate a name for a special-purpose function.
8695    The generated name may need to be unique across the whole link.
8696    Changes to this function may also require corresponding changes to
8697    xstrdup_mask_random.
8698    TYPE is some string to identify the purpose of this function to the
8699    linker or collect2; it must start with an uppercase letter,
8700    one of:
8701    I - for constructors
8702    D - for destructors
8703    N - for C++ anonymous namespaces
8704    F - for DWARF unwind frame information.  */
8705
8706 tree
8707 get_file_function_name (const char *type)
8708 {
8709   char *buf;
8710   const char *p;
8711   char *q;
8712
8713   /* If we already have a name we know to be unique, just use that.  */
8714   if (first_global_object_name)
8715     p = q = ASTRDUP (first_global_object_name);
8716   /* If the target is handling the constructors/destructors, they
8717      will be local to this file and the name is only necessary for
8718      debugging purposes. 
8719      We also assign sub_I and sub_D sufixes to constructors called from
8720      the global static constructors.  These are always local.  */
8721   else if (((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
8722            || (strncmp (type, "sub_", 4) == 0
8723                && (type[4] == 'I' || type[4] == 'D')))
8724     {
8725       const char *file = main_input_filename;
8726       if (! file)
8727         file = input_filename;
8728       /* Just use the file's basename, because the full pathname
8729          might be quite long.  */
8730       p = q = ASTRDUP (lbasename (file));
8731     }
8732   else
8733     {
8734       /* Otherwise, the name must be unique across the entire link.
8735          We don't have anything that we know to be unique to this translation
8736          unit, so use what we do have and throw in some randomness.  */
8737       unsigned len;
8738       const char *name = weak_global_object_name;
8739       const char *file = main_input_filename;
8740
8741       if (! name)
8742         name = "";
8743       if (! file)
8744         file = input_filename;
8745
8746       len = strlen (file);
8747       q = (char *) alloca (9 + 17 + len + 1);
8748       memcpy (q, file, len + 1);
8749
8750       snprintf (q + len, 9 + 17 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX, 
8751                 crc32_string (0, name), get_random_seed (false));
8752
8753       p = q;
8754     }
8755
8756   clean_symbol_name (q);
8757   buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
8758                          + strlen (type));
8759
8760   /* Set up the name of the file-level functions we may need.
8761      Use a global object (which is already required to be unique over
8762      the program) rather than the file name (which imposes extra
8763      constraints).  */
8764   sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
8765
8766   return get_identifier (buf);
8767 }
8768 \f
8769 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
8770
8771 /* Complain that the tree code of NODE does not match the expected 0
8772    terminated list of trailing codes. The trailing code list can be
8773    empty, for a more vague error message.  FILE, LINE, and FUNCTION
8774    are of the caller.  */
8775
8776 void
8777 tree_check_failed (const_tree node, const char *file,
8778                    int line, const char *function, ...)
8779 {
8780   va_list args;
8781   const char *buffer;
8782   unsigned length = 0;
8783   int code;
8784
8785   va_start (args, function);
8786   while ((code = va_arg (args, int)))
8787     length += 4 + strlen (tree_code_name[code]);
8788   va_end (args);
8789   if (length)
8790     {
8791       char *tmp;
8792       va_start (args, function);
8793       length += strlen ("expected ");
8794       buffer = tmp = (char *) alloca (length);
8795       length = 0;
8796       while ((code = va_arg (args, int)))
8797         {
8798           const char *prefix = length ? " or " : "expected ";
8799
8800           strcpy (tmp + length, prefix);
8801           length += strlen (prefix);
8802           strcpy (tmp + length, tree_code_name[code]);
8803           length += strlen (tree_code_name[code]);
8804         }
8805       va_end (args);
8806     }
8807   else
8808     buffer = "unexpected node";
8809
8810   internal_error ("tree check: %s, have %s in %s, at %s:%d",
8811                   buffer, tree_code_name[TREE_CODE (node)],
8812                   function, trim_filename (file), line);
8813 }
8814
8815 /* Complain that the tree code of NODE does match the expected 0
8816    terminated list of trailing codes. FILE, LINE, and FUNCTION are of
8817    the caller.  */
8818
8819 void
8820 tree_not_check_failed (const_tree node, const char *file,
8821                        int line, const char *function, ...)
8822 {
8823   va_list args;
8824   char *buffer;
8825   unsigned length = 0;
8826   int code;
8827
8828   va_start (args, function);
8829   while ((code = va_arg (args, int)))
8830     length += 4 + strlen (tree_code_name[code]);
8831   va_end (args);
8832   va_start (args, function);
8833   buffer = (char *) alloca (length);
8834   length = 0;
8835   while ((code = va_arg (args, int)))
8836     {
8837       if (length)
8838         {
8839           strcpy (buffer + length, " or ");
8840           length += 4;
8841         }
8842       strcpy (buffer + length, tree_code_name[code]);
8843       length += strlen (tree_code_name[code]);
8844     }
8845   va_end (args);
8846
8847   internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
8848                   buffer, tree_code_name[TREE_CODE (node)],
8849                   function, trim_filename (file), line);
8850 }
8851
8852 /* Similar to tree_check_failed, except that we check for a class of tree
8853    code, given in CL.  */
8854
8855 void
8856 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
8857                          const char *file, int line, const char *function)
8858 {
8859   internal_error
8860     ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
8861      TREE_CODE_CLASS_STRING (cl),
8862      TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
8863      tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8864 }
8865
8866 /* Similar to tree_check_failed, except that instead of specifying a
8867    dozen codes, use the knowledge that they're all sequential.  */
8868
8869 void
8870 tree_range_check_failed (const_tree node, const char *file, int line,
8871                          const char *function, enum tree_code c1,
8872                          enum tree_code c2)
8873 {
8874   char *buffer;
8875   unsigned length = 0;
8876   unsigned int c;
8877
8878   for (c = c1; c <= c2; ++c)
8879     length += 4 + strlen (tree_code_name[c]);
8880
8881   length += strlen ("expected ");
8882   buffer = (char *) alloca (length);
8883   length = 0;
8884
8885   for (c = c1; c <= c2; ++c)
8886     {
8887       const char *prefix = length ? " or " : "expected ";
8888
8889       strcpy (buffer + length, prefix);
8890       length += strlen (prefix);
8891       strcpy (buffer + length, tree_code_name[c]);
8892       length += strlen (tree_code_name[c]);
8893     }
8894
8895   internal_error ("tree check: %s, have %s in %s, at %s:%d",
8896                   buffer, tree_code_name[TREE_CODE (node)],
8897                   function, trim_filename (file), line);
8898 }
8899
8900
8901 /* Similar to tree_check_failed, except that we check that a tree does
8902    not have the specified code, given in CL.  */
8903
8904 void
8905 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
8906                              const char *file, int line, const char *function)
8907 {
8908   internal_error
8909     ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
8910      TREE_CODE_CLASS_STRING (cl),
8911      TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
8912      tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8913 }
8914
8915
8916 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes.  */
8917
8918 void
8919 omp_clause_check_failed (const_tree node, const char *file, int line,
8920                          const char *function, enum omp_clause_code code)
8921 {
8922   internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
8923                   omp_clause_code_name[code], tree_code_name[TREE_CODE (node)],
8924                   function, trim_filename (file), line);
8925 }
8926
8927
8928 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes.  */
8929
8930 void
8931 omp_clause_range_check_failed (const_tree node, const char *file, int line,
8932                                const char *function, enum omp_clause_code c1,
8933                                enum omp_clause_code c2)
8934 {
8935   char *buffer;
8936   unsigned length = 0;
8937   unsigned int c;
8938
8939   for (c = c1; c <= c2; ++c)
8940     length += 4 + strlen (omp_clause_code_name[c]);
8941
8942   length += strlen ("expected ");
8943   buffer = (char *) alloca (length);
8944   length = 0;
8945
8946   for (c = c1; c <= c2; ++c)
8947     {
8948       const char *prefix = length ? " or " : "expected ";
8949
8950       strcpy (buffer + length, prefix);
8951       length += strlen (prefix);
8952       strcpy (buffer + length, omp_clause_code_name[c]);
8953       length += strlen (omp_clause_code_name[c]);
8954     }
8955
8956   internal_error ("tree check: %s, have %s in %s, at %s:%d",
8957                   buffer, omp_clause_code_name[TREE_CODE (node)],
8958                   function, trim_filename (file), line);
8959 }
8960
8961
8962 #undef DEFTREESTRUCT
8963 #define DEFTREESTRUCT(VAL, NAME) NAME,
8964
8965 static const char *ts_enum_names[] = {
8966 #include "treestruct.def"
8967 };
8968 #undef DEFTREESTRUCT
8969
8970 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
8971
8972 /* Similar to tree_class_check_failed, except that we check for
8973    whether CODE contains the tree structure identified by EN.  */
8974
8975 void
8976 tree_contains_struct_check_failed (const_tree node,
8977                                    const enum tree_node_structure_enum en,
8978                                    const char *file, int line,
8979                                    const char *function)
8980 {
8981   internal_error
8982     ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
8983      TS_ENUM_NAME(en),
8984      tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8985 }
8986
8987
8988 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
8989    (dynamically sized) vector.  */
8990
8991 void
8992 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
8993                            const char *function)
8994 {
8995   internal_error
8996     ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
8997      idx + 1, len, function, trim_filename (file), line);
8998 }
8999
9000 /* Similar to above, except that the check is for the bounds of the operand
9001    vector of an expression node EXP.  */
9002
9003 void
9004 tree_operand_check_failed (int idx, const_tree exp, const char *file,
9005                            int line, const char *function)
9006 {
9007   int code = TREE_CODE (exp);
9008   internal_error
9009     ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9010      idx + 1, tree_code_name[code], TREE_OPERAND_LENGTH (exp),
9011      function, trim_filename (file), line);
9012 }
9013
9014 /* Similar to above, except that the check is for the number of
9015    operands of an OMP_CLAUSE node.  */
9016
9017 void
9018 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
9019                                  int line, const char *function)
9020 {
9021   internal_error
9022     ("tree check: accessed operand %d of omp_clause %s with %d operands "
9023      "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
9024      omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
9025      trim_filename (file), line);
9026 }
9027 #endif /* ENABLE_TREE_CHECKING */
9028 \f
9029 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9030    and mapped to the machine mode MODE.  Initialize its fields and build
9031    the information necessary for debugging output.  */
9032
9033 static tree
9034 make_vector_type (tree innertype, int nunits, enum machine_mode mode)
9035 {
9036   tree t;
9037   hashval_t hashcode = 0;
9038
9039   t = make_node (VECTOR_TYPE);
9040   TREE_TYPE (t) = TYPE_MAIN_VARIANT (innertype);
9041   SET_TYPE_VECTOR_SUBPARTS (t, nunits);
9042   SET_TYPE_MODE (t, mode);
9043
9044   if (TYPE_STRUCTURAL_EQUALITY_P (innertype))
9045     SET_TYPE_STRUCTURAL_EQUALITY (t);
9046   else if (TYPE_CANONICAL (innertype) != innertype
9047            || mode != VOIDmode)
9048     TYPE_CANONICAL (t)
9049       = make_vector_type (TYPE_CANONICAL (innertype), nunits, VOIDmode);
9050
9051   layout_type (t);
9052
9053   hashcode = iterative_hash_host_wide_int (VECTOR_TYPE, hashcode);
9054   hashcode = iterative_hash_host_wide_int (nunits, hashcode);
9055   hashcode = iterative_hash_host_wide_int (mode, hashcode);
9056   hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (t)), hashcode);
9057   t = type_hash_canon (hashcode, t);
9058
9059   /* We have built a main variant, based on the main variant of the
9060      inner type. Use it to build the variant we return.  */
9061   if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
9062       && TREE_TYPE (t) != innertype)
9063     return build_type_attribute_qual_variant (t,
9064                                               TYPE_ATTRIBUTES (innertype),
9065                                               TYPE_QUALS (innertype));
9066
9067   return t;
9068 }
9069
9070 static tree
9071 make_or_reuse_type (unsigned size, int unsignedp)
9072 {
9073   if (size == INT_TYPE_SIZE)
9074     return unsignedp ? unsigned_type_node : integer_type_node;
9075   if (size == CHAR_TYPE_SIZE)
9076     return unsignedp ? unsigned_char_type_node : signed_char_type_node;
9077   if (size == SHORT_TYPE_SIZE)
9078     return unsignedp ? short_unsigned_type_node : short_integer_type_node;
9079   if (size == LONG_TYPE_SIZE)
9080     return unsignedp ? long_unsigned_type_node : long_integer_type_node;
9081   if (size == LONG_LONG_TYPE_SIZE)
9082     return (unsignedp ? long_long_unsigned_type_node
9083             : long_long_integer_type_node);
9084   if (size == 128 && int128_integer_type_node)
9085     return (unsignedp ? int128_unsigned_type_node
9086             : int128_integer_type_node);
9087
9088   if (unsignedp)
9089     return make_unsigned_type (size);
9090   else
9091     return make_signed_type (size);
9092 }
9093
9094 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP.  */
9095
9096 static tree
9097 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
9098 {
9099   if (satp)
9100     {
9101       if (size == SHORT_FRACT_TYPE_SIZE)
9102         return unsignedp ? sat_unsigned_short_fract_type_node
9103                          : sat_short_fract_type_node;
9104       if (size == FRACT_TYPE_SIZE)
9105         return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
9106       if (size == LONG_FRACT_TYPE_SIZE)
9107         return unsignedp ? sat_unsigned_long_fract_type_node
9108                          : sat_long_fract_type_node;
9109       if (size == LONG_LONG_FRACT_TYPE_SIZE)
9110         return unsignedp ? sat_unsigned_long_long_fract_type_node
9111                          : sat_long_long_fract_type_node;
9112     }
9113   else
9114     {
9115       if (size == SHORT_FRACT_TYPE_SIZE)
9116         return unsignedp ? unsigned_short_fract_type_node
9117                          : short_fract_type_node;
9118       if (size == FRACT_TYPE_SIZE)
9119         return unsignedp ? unsigned_fract_type_node : fract_type_node;
9120       if (size == LONG_FRACT_TYPE_SIZE)
9121         return unsignedp ? unsigned_long_fract_type_node
9122                          : long_fract_type_node;
9123       if (size == LONG_LONG_FRACT_TYPE_SIZE)
9124         return unsignedp ? unsigned_long_long_fract_type_node
9125                          : long_long_fract_type_node;
9126     }
9127
9128   return make_fract_type (size, unsignedp, satp);
9129 }
9130
9131 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP.  */
9132
9133 static tree
9134 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
9135 {
9136   if (satp)
9137     {
9138       if (size == SHORT_ACCUM_TYPE_SIZE)
9139         return unsignedp ? sat_unsigned_short_accum_type_node
9140                          : sat_short_accum_type_node;
9141       if (size == ACCUM_TYPE_SIZE)
9142         return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
9143       if (size == LONG_ACCUM_TYPE_SIZE)
9144         return unsignedp ? sat_unsigned_long_accum_type_node
9145                          : sat_long_accum_type_node;
9146       if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9147         return unsignedp ? sat_unsigned_long_long_accum_type_node
9148                          : sat_long_long_accum_type_node;
9149     }
9150   else
9151     {
9152       if (size == SHORT_ACCUM_TYPE_SIZE)
9153         return unsignedp ? unsigned_short_accum_type_node
9154                          : short_accum_type_node;
9155       if (size == ACCUM_TYPE_SIZE)
9156         return unsignedp ? unsigned_accum_type_node : accum_type_node;
9157       if (size == LONG_ACCUM_TYPE_SIZE)
9158         return unsignedp ? unsigned_long_accum_type_node
9159                          : long_accum_type_node;
9160       if (size == LONG_LONG_ACCUM_TYPE_SIZE)
9161         return unsignedp ? unsigned_long_long_accum_type_node
9162                          : long_long_accum_type_node;
9163     }
9164
9165   return make_accum_type (size, unsignedp, satp);
9166 }
9167
9168 /* Create nodes for all integer types (and error_mark_node) using the sizes
9169    of C datatypes.  SIGNED_CHAR specifies whether char is signed,
9170    SHORT_DOUBLE specifies whether double should be of the same precision
9171    as float.  */
9172
9173 void
9174 build_common_tree_nodes (bool signed_char, bool short_double)
9175 {
9176   error_mark_node = make_node (ERROR_MARK);
9177   TREE_TYPE (error_mark_node) = error_mark_node;
9178
9179   initialize_sizetypes ();
9180
9181   /* Define both `signed char' and `unsigned char'.  */
9182   signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
9183   TYPE_STRING_FLAG (signed_char_type_node) = 1;
9184   unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
9185   TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
9186
9187   /* Define `char', which is like either `signed char' or `unsigned char'
9188      but not the same as either.  */
9189   char_type_node
9190     = (signed_char
9191        ? make_signed_type (CHAR_TYPE_SIZE)
9192        : make_unsigned_type (CHAR_TYPE_SIZE));
9193   TYPE_STRING_FLAG (char_type_node) = 1;
9194
9195   short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
9196   short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
9197   integer_type_node = make_signed_type (INT_TYPE_SIZE);
9198   unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
9199   long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
9200   long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
9201   long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
9202   long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
9203 #if HOST_BITS_PER_WIDE_INT >= 64
9204     /* TODO: This isn't correct, but as logic depends at the moment on
9205        host's instead of target's wide-integer.
9206        If there is a target not supporting TImode, but has an 128-bit
9207        integer-scalar register, this target check needs to be adjusted. */
9208     if (targetm.scalar_mode_supported_p (TImode))
9209       {
9210         int128_integer_type_node = make_signed_type (128);
9211         int128_unsigned_type_node = make_unsigned_type (128);
9212       }
9213 #endif
9214
9215   /* Define a boolean type.  This type only represents boolean values but
9216      may be larger than char depending on the value of BOOL_TYPE_SIZE.
9217      Front ends which want to override this size (i.e. Java) can redefine
9218      boolean_type_node before calling build_common_tree_nodes_2.  */
9219   boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
9220   TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
9221   TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
9222   TYPE_PRECISION (boolean_type_node) = 1;
9223
9224   /* Define what type to use for size_t.  */
9225   if (strcmp (SIZE_TYPE, "unsigned int") == 0)
9226     size_type_node = unsigned_type_node;
9227   else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
9228     size_type_node = long_unsigned_type_node;
9229   else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
9230     size_type_node = long_long_unsigned_type_node;
9231   else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
9232     size_type_node = short_unsigned_type_node;
9233   else
9234     gcc_unreachable ();
9235
9236   /* Fill in the rest of the sized types.  Reuse existing type nodes
9237      when possible.  */
9238   intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
9239   intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
9240   intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
9241   intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
9242   intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
9243
9244   unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
9245   unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
9246   unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
9247   unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
9248   unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
9249
9250   access_public_node = get_identifier ("public");
9251   access_protected_node = get_identifier ("protected");
9252   access_private_node = get_identifier ("private");
9253
9254   /* Define these next since types below may used them.  */
9255   integer_zero_node = build_int_cst (integer_type_node, 0);
9256   integer_one_node = build_int_cst (integer_type_node, 1);
9257   integer_three_node = build_int_cst (integer_type_node, 3);
9258   integer_minus_one_node = build_int_cst (integer_type_node, -1);
9259
9260   size_zero_node = size_int (0);
9261   size_one_node = size_int (1);
9262   bitsize_zero_node = bitsize_int (0);
9263   bitsize_one_node = bitsize_int (1);
9264   bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
9265
9266   boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
9267   boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
9268
9269   void_type_node = make_node (VOID_TYPE);
9270   layout_type (void_type_node);
9271
9272   /* We are not going to have real types in C with less than byte alignment,
9273      so we might as well not have any types that claim to have it.  */
9274   TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
9275   TYPE_USER_ALIGN (void_type_node) = 0;
9276
9277   null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
9278   layout_type (TREE_TYPE (null_pointer_node));
9279
9280   ptr_type_node = build_pointer_type (void_type_node);
9281   const_ptr_type_node
9282     = build_pointer_type (build_type_variant (void_type_node, 1, 0));
9283   fileptr_type_node = ptr_type_node;
9284
9285   float_type_node = make_node (REAL_TYPE);
9286   TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
9287   layout_type (float_type_node);
9288
9289   double_type_node = make_node (REAL_TYPE);
9290   if (short_double)
9291     TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
9292   else
9293     TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
9294   layout_type (double_type_node);
9295
9296   long_double_type_node = make_node (REAL_TYPE);
9297   TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
9298   layout_type (long_double_type_node);
9299
9300   float_ptr_type_node = build_pointer_type (float_type_node);
9301   double_ptr_type_node = build_pointer_type (double_type_node);
9302   long_double_ptr_type_node = build_pointer_type (long_double_type_node);
9303   integer_ptr_type_node = build_pointer_type (integer_type_node);
9304
9305   /* Fixed size integer types.  */
9306   uint32_type_node = build_nonstandard_integer_type (32, true);
9307   uint64_type_node = build_nonstandard_integer_type (64, true);
9308
9309   /* Decimal float types. */
9310   dfloat32_type_node = make_node (REAL_TYPE);
9311   TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
9312   layout_type (dfloat32_type_node);
9313   SET_TYPE_MODE (dfloat32_type_node, SDmode);
9314   dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
9315
9316   dfloat64_type_node = make_node (REAL_TYPE);
9317   TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
9318   layout_type (dfloat64_type_node);
9319   SET_TYPE_MODE (dfloat64_type_node, DDmode);
9320   dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
9321
9322   dfloat128_type_node = make_node (REAL_TYPE);
9323   TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
9324   layout_type (dfloat128_type_node);
9325   SET_TYPE_MODE (dfloat128_type_node, TDmode);
9326   dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
9327
9328   complex_integer_type_node = build_complex_type (integer_type_node);
9329   complex_float_type_node = build_complex_type (float_type_node);
9330   complex_double_type_node = build_complex_type (double_type_node);
9331   complex_long_double_type_node = build_complex_type (long_double_type_node);
9332
9333 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned.  */
9334 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9335   sat_ ## KIND ## _type_node = \
9336     make_sat_signed_ ## KIND ## _type (SIZE); \
9337   sat_unsigned_ ## KIND ## _type_node = \
9338     make_sat_unsigned_ ## KIND ## _type (SIZE); \
9339   KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9340   unsigned_ ## KIND ## _type_node = \
9341     make_unsigned_ ## KIND ## _type (SIZE);
9342
9343 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9344   sat_ ## WIDTH ## KIND ## _type_node = \
9345     make_sat_signed_ ## KIND ## _type (SIZE); \
9346   sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9347     make_sat_unsigned_ ## KIND ## _type (SIZE); \
9348   WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9349   unsigned_ ## WIDTH ## KIND ## _type_node = \
9350     make_unsigned_ ## KIND ## _type (SIZE);
9351
9352 /* Make fixed-point type nodes based on four different widths.  */
9353 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9354   MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9355   MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9356   MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9357   MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9358
9359 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned.  */
9360 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9361   NAME ## _type_node = \
9362     make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9363   u ## NAME ## _type_node = \
9364     make_or_reuse_unsigned_ ## KIND ## _type \
9365       (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9366   sat_ ## NAME ## _type_node = \
9367     make_or_reuse_sat_signed_ ## KIND ## _type \
9368       (GET_MODE_BITSIZE (MODE ## mode)); \
9369   sat_u ## NAME ## _type_node = \
9370     make_or_reuse_sat_unsigned_ ## KIND ## _type \
9371       (GET_MODE_BITSIZE (U ## MODE ## mode));
9372
9373   /* Fixed-point type and mode nodes.  */
9374   MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
9375   MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
9376   MAKE_FIXED_MODE_NODE (fract, qq, QQ)
9377   MAKE_FIXED_MODE_NODE (fract, hq, HQ)
9378   MAKE_FIXED_MODE_NODE (fract, sq, SQ)
9379   MAKE_FIXED_MODE_NODE (fract, dq, DQ)
9380   MAKE_FIXED_MODE_NODE (fract, tq, TQ)
9381   MAKE_FIXED_MODE_NODE (accum, ha, HA)
9382   MAKE_FIXED_MODE_NODE (accum, sa, SA)
9383   MAKE_FIXED_MODE_NODE (accum, da, DA)
9384   MAKE_FIXED_MODE_NODE (accum, ta, TA)
9385
9386   {
9387     tree t = targetm.build_builtin_va_list ();
9388
9389     /* Many back-ends define record types without setting TYPE_NAME.
9390        If we copied the record type here, we'd keep the original
9391        record type without a name.  This breaks name mangling.  So,
9392        don't copy record types and let c_common_nodes_and_builtins()
9393        declare the type to be __builtin_va_list.  */
9394     if (TREE_CODE (t) != RECORD_TYPE)
9395       t = build_variant_type_copy (t);
9396
9397     va_list_type_node = t;
9398   }
9399 }
9400
9401 /* A subroutine of build_common_builtin_nodes.  Define a builtin function.  */
9402
9403 static void
9404 local_define_builtin (const char *name, tree type, enum built_in_function code,
9405                       const char *library_name, int ecf_flags)
9406 {
9407   tree decl;
9408
9409   decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
9410                                library_name, NULL_TREE);
9411   if (ecf_flags & ECF_CONST)
9412     TREE_READONLY (decl) = 1;
9413   if (ecf_flags & ECF_PURE)
9414     DECL_PURE_P (decl) = 1;
9415   if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
9416     DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
9417   if (ecf_flags & ECF_NORETURN)
9418     TREE_THIS_VOLATILE (decl) = 1;
9419   if (ecf_flags & ECF_NOTHROW)
9420     TREE_NOTHROW (decl) = 1;
9421   if (ecf_flags & ECF_MALLOC)
9422     DECL_IS_MALLOC (decl) = 1;
9423   if (ecf_flags & ECF_LEAF)
9424     DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("leaf"),
9425                                         NULL, DECL_ATTRIBUTES (decl));
9426   if ((ecf_flags & ECF_TM_PURE) && flag_tm)
9427     apply_tm_attr (decl, get_identifier ("transaction_pure"));
9428
9429   set_builtin_decl (code, decl, true);
9430 }
9431
9432 /* Call this function after instantiating all builtins that the language
9433    front end cares about.  This will build the rest of the builtins that
9434    are relied upon by the tree optimizers and the middle-end.  */
9435
9436 void
9437 build_common_builtin_nodes (void)
9438 {
9439   tree tmp, ftype;
9440   int ecf_flags;
9441
9442   if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY)
9443       || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
9444     {
9445       ftype = build_function_type_list (ptr_type_node,
9446                                         ptr_type_node, const_ptr_type_node,
9447                                         size_type_node, NULL_TREE);
9448
9449       if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY))
9450         local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
9451                               "memcpy", ECF_NOTHROW | ECF_LEAF);
9452       if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE))
9453         local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
9454                               "memmove", ECF_NOTHROW | ECF_LEAF);
9455     }
9456
9457   if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP))
9458     {
9459       ftype = build_function_type_list (integer_type_node, const_ptr_type_node,
9460                                         const_ptr_type_node, size_type_node,
9461                                         NULL_TREE);
9462       local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
9463                             "memcmp", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
9464     }
9465
9466   if (!builtin_decl_explicit_p (BUILT_IN_MEMSET))
9467     {
9468       ftype = build_function_type_list (ptr_type_node,
9469                                         ptr_type_node, integer_type_node,
9470                                         size_type_node, NULL_TREE);
9471       local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
9472                             "memset", ECF_NOTHROW | ECF_LEAF);
9473     }
9474
9475   if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA))
9476     {
9477       ftype = build_function_type_list (ptr_type_node,
9478                                         size_type_node, NULL_TREE);
9479       local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
9480                             "alloca", ECF_MALLOC | ECF_NOTHROW | ECF_LEAF);
9481     }
9482
9483   ftype = build_function_type_list (ptr_type_node, size_type_node,
9484                                     size_type_node, NULL_TREE);
9485   local_define_builtin ("__builtin_alloca_with_align", ftype,
9486                         BUILT_IN_ALLOCA_WITH_ALIGN, "alloca",
9487                         ECF_MALLOC | ECF_NOTHROW | ECF_LEAF);
9488
9489   /* If we're checking the stack, `alloca' can throw.  */
9490   if (flag_stack_check)
9491     {
9492       TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA)) = 0;
9493       TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN)) = 0;
9494     }
9495
9496   ftype = build_function_type_list (void_type_node,
9497                                     ptr_type_node, ptr_type_node,
9498                                     ptr_type_node, NULL_TREE);
9499   local_define_builtin ("__builtin_init_trampoline", ftype,
9500                         BUILT_IN_INIT_TRAMPOLINE,
9501                         "__builtin_init_trampoline", ECF_NOTHROW | ECF_LEAF);
9502
9503   ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
9504   local_define_builtin ("__builtin_adjust_trampoline", ftype,
9505                         BUILT_IN_ADJUST_TRAMPOLINE,
9506                         "__builtin_adjust_trampoline",
9507                         ECF_CONST | ECF_NOTHROW);
9508
9509   ftype = build_function_type_list (void_type_node,
9510                                     ptr_type_node, ptr_type_node, NULL_TREE);
9511   local_define_builtin ("__builtin_nonlocal_goto", ftype,
9512                         BUILT_IN_NONLOCAL_GOTO,
9513                         "__builtin_nonlocal_goto",
9514                         ECF_NORETURN | ECF_NOTHROW);
9515
9516   ftype = build_function_type_list (void_type_node,
9517                                     ptr_type_node, ptr_type_node, NULL_TREE);
9518   local_define_builtin ("__builtin_setjmp_setup", ftype,
9519                         BUILT_IN_SETJMP_SETUP,
9520                         "__builtin_setjmp_setup", ECF_NOTHROW);
9521
9522   ftype = build_function_type_list (ptr_type_node, ptr_type_node, NULL_TREE);
9523   local_define_builtin ("__builtin_setjmp_dispatcher", ftype,
9524                         BUILT_IN_SETJMP_DISPATCHER,
9525                         "__builtin_setjmp_dispatcher",
9526                         ECF_PURE | ECF_NOTHROW);
9527
9528   ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
9529   local_define_builtin ("__builtin_setjmp_receiver", ftype,
9530                         BUILT_IN_SETJMP_RECEIVER,
9531                         "__builtin_setjmp_receiver", ECF_NOTHROW);
9532
9533   ftype = build_function_type_list (ptr_type_node, NULL_TREE);
9534   local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
9535                         "__builtin_stack_save", ECF_NOTHROW | ECF_LEAF);
9536
9537   ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
9538   local_define_builtin ("__builtin_stack_restore", ftype,
9539                         BUILT_IN_STACK_RESTORE,
9540                         "__builtin_stack_restore", ECF_NOTHROW | ECF_LEAF);
9541
9542   /* If there's a possibility that we might use the ARM EABI, build the
9543     alternate __cxa_end_cleanup node used to resume from C++ and Java.  */
9544   if (targetm.arm_eabi_unwinder)
9545     {
9546       ftype = build_function_type_list (void_type_node, NULL_TREE);
9547       local_define_builtin ("__builtin_cxa_end_cleanup", ftype,
9548                             BUILT_IN_CXA_END_CLEANUP,
9549                             "__cxa_end_cleanup", ECF_NORETURN | ECF_LEAF);
9550     }
9551
9552   ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
9553   local_define_builtin ("__builtin_unwind_resume", ftype,
9554                         BUILT_IN_UNWIND_RESUME,
9555                         ((targetm_common.except_unwind_info (&global_options)
9556                           == UI_SJLJ)
9557                          ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
9558                         ECF_NORETURN);
9559
9560   if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS) == NULL_TREE)
9561     {
9562       ftype = build_function_type_list (ptr_type_node, integer_type_node,
9563                                         NULL_TREE);
9564       local_define_builtin ("__builtin_return_address", ftype,
9565                             BUILT_IN_RETURN_ADDRESS,
9566                             "__builtin_return_address",
9567                             ECF_NOTHROW);
9568     }
9569
9570   if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER)
9571       || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
9572     {
9573       ftype = build_function_type_list (void_type_node, ptr_type_node,
9574                                         ptr_type_node, NULL_TREE);
9575       if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER))
9576         local_define_builtin ("__cyg_profile_func_enter", ftype,
9577                               BUILT_IN_PROFILE_FUNC_ENTER,
9578                               "__cyg_profile_func_enter", 0);
9579       if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT))
9580         local_define_builtin ("__cyg_profile_func_exit", ftype,
9581                               BUILT_IN_PROFILE_FUNC_EXIT,
9582                               "__cyg_profile_func_exit", 0);
9583     }
9584
9585   /* The exception object and filter values from the runtime.  The argument
9586      must be zero before exception lowering, i.e. from the front end.  After
9587      exception lowering, it will be the region number for the exception
9588      landing pad.  These functions are PURE instead of CONST to prevent
9589      them from being hoisted past the exception edge that will initialize
9590      its value in the landing pad.  */
9591   ftype = build_function_type_list (ptr_type_node,
9592                                     integer_type_node, NULL_TREE);
9593   ecf_flags = ECF_PURE | ECF_NOTHROW | ECF_LEAF;
9594   /* Only use TM_PURE if we we have TM language support.  */
9595   if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1))
9596     ecf_flags |= ECF_TM_PURE;
9597   local_define_builtin ("__builtin_eh_pointer", ftype, BUILT_IN_EH_POINTER,
9598                         "__builtin_eh_pointer", ecf_flags);
9599
9600   tmp = lang_hooks.types.type_for_mode (targetm.eh_return_filter_mode (), 0);
9601   ftype = build_function_type_list (tmp, integer_type_node, NULL_TREE);
9602   local_define_builtin ("__builtin_eh_filter", ftype, BUILT_IN_EH_FILTER,
9603                         "__builtin_eh_filter", ECF_PURE | ECF_NOTHROW | ECF_LEAF);
9604
9605   ftype = build_function_type_list (void_type_node,
9606                                     integer_type_node, integer_type_node,
9607                                     NULL_TREE);
9608   local_define_builtin ("__builtin_eh_copy_values", ftype,
9609                         BUILT_IN_EH_COPY_VALUES,
9610                         "__builtin_eh_copy_values", ECF_NOTHROW);
9611
9612   /* Complex multiplication and division.  These are handled as builtins
9613      rather than optabs because emit_library_call_value doesn't support
9614      complex.  Further, we can do slightly better with folding these
9615      beasties if the real and complex parts of the arguments are separate.  */
9616   {
9617     int mode;
9618
9619     for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
9620       {
9621         char mode_name_buf[4], *q;
9622         const char *p;
9623         enum built_in_function mcode, dcode;
9624         tree type, inner_type;
9625         const char *prefix = "__";
9626
9627         if (targetm.libfunc_gnu_prefix)
9628           prefix = "__gnu_";
9629
9630         type = lang_hooks.types.type_for_mode ((enum machine_mode) mode, 0);
9631         if (type == NULL)
9632           continue;
9633         inner_type = TREE_TYPE (type);
9634
9635         ftype = build_function_type_list (type, inner_type, inner_type,
9636                                           inner_type, inner_type, NULL_TREE);
9637
9638         mcode = ((enum built_in_function)
9639                  (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
9640         dcode = ((enum built_in_function)
9641                  (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
9642
9643         for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
9644           *q = TOLOWER (*p);
9645         *q = '\0';
9646
9647         built_in_names[mcode] = concat (prefix, "mul", mode_name_buf, "3",
9648                                         NULL);
9649         local_define_builtin (built_in_names[mcode], ftype, mcode,
9650                               built_in_names[mcode],
9651                               ECF_CONST | ECF_NOTHROW | ECF_LEAF);
9652
9653         built_in_names[dcode] = concat (prefix, "div", mode_name_buf, "3",
9654                                         NULL);
9655         local_define_builtin (built_in_names[dcode], ftype, dcode,
9656                               built_in_names[dcode],
9657                               ECF_CONST | ECF_NOTHROW | ECF_LEAF);
9658       }
9659   }
9660 }
9661
9662 /* HACK.  GROSS.  This is absolutely disgusting.  I wish there was a
9663    better way.
9664
9665    If we requested a pointer to a vector, build up the pointers that
9666    we stripped off while looking for the inner type.  Similarly for
9667    return values from functions.
9668
9669    The argument TYPE is the top of the chain, and BOTTOM is the
9670    new type which we will point to.  */
9671
9672 tree
9673 reconstruct_complex_type (tree type, tree bottom)
9674 {
9675   tree inner, outer;
9676
9677   if (TREE_CODE (type) == POINTER_TYPE)
9678     {
9679       inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9680       outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
9681                                            TYPE_REF_CAN_ALIAS_ALL (type));
9682     }
9683   else if (TREE_CODE (type) == REFERENCE_TYPE)
9684     {
9685       inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9686       outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
9687                                              TYPE_REF_CAN_ALIAS_ALL (type));
9688     }
9689   else if (TREE_CODE (type) == ARRAY_TYPE)
9690     {
9691       inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9692       outer = build_array_type (inner, TYPE_DOMAIN (type));
9693     }
9694   else if (TREE_CODE (type) == FUNCTION_TYPE)
9695     {
9696       inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9697       outer = build_function_type (inner, TYPE_ARG_TYPES (type));
9698     }
9699   else if (TREE_CODE (type) == METHOD_TYPE)
9700     {
9701       inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9702       /* The build_method_type_directly() routine prepends 'this' to argument list,
9703          so we must compensate by getting rid of it.  */
9704       outer
9705         = build_method_type_directly
9706             (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
9707              inner,
9708              TREE_CHAIN (TYPE_ARG_TYPES (type)));
9709     }
9710   else if (TREE_CODE (type) == OFFSET_TYPE)
9711     {
9712       inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9713       outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
9714     }
9715   else
9716     return bottom;
9717
9718   return build_type_attribute_qual_variant (outer, TYPE_ATTRIBUTES (type),
9719                                             TYPE_QUALS (type));
9720 }
9721
9722 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
9723    the inner type.  */
9724 tree
9725 build_vector_type_for_mode (tree innertype, enum machine_mode mode)
9726 {
9727   int nunits;
9728
9729   switch (GET_MODE_CLASS (mode))
9730     {
9731     case MODE_VECTOR_INT:
9732     case MODE_VECTOR_FLOAT:
9733     case MODE_VECTOR_FRACT:
9734     case MODE_VECTOR_UFRACT:
9735     case MODE_VECTOR_ACCUM:
9736     case MODE_VECTOR_UACCUM:
9737       nunits = GET_MODE_NUNITS (mode);
9738       break;
9739
9740     case MODE_INT:
9741       /* Check that there are no leftover bits.  */
9742       gcc_assert (GET_MODE_BITSIZE (mode)
9743                   % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
9744
9745       nunits = GET_MODE_BITSIZE (mode)
9746                / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
9747       break;
9748
9749     default:
9750       gcc_unreachable ();
9751     }
9752
9753   return make_vector_type (innertype, nunits, mode);
9754 }
9755
9756 /* Similarly, but takes the inner type and number of units, which must be
9757    a power of two.  */
9758
9759 tree
9760 build_vector_type (tree innertype, int nunits)
9761 {
9762   return make_vector_type (innertype, nunits, VOIDmode);
9763 }
9764
9765 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set.  */
9766
9767 tree
9768 build_opaque_vector_type (tree innertype, int nunits)
9769 {
9770   tree t = make_vector_type (innertype, nunits, VOIDmode);
9771   tree cand;
9772   /* We always build the non-opaque variant before the opaque one,
9773      so if it already exists, it is TYPE_NEXT_VARIANT of this one.  */
9774   cand = TYPE_NEXT_VARIANT (t);
9775   if (cand
9776       && TYPE_VECTOR_OPAQUE (cand)
9777       && check_qualified_type (cand, t, TYPE_QUALS (t)))
9778     return cand;
9779   /* Othewise build a variant type and make sure to queue it after
9780      the non-opaque type.  */
9781   cand = build_distinct_type_copy (t);
9782   TYPE_VECTOR_OPAQUE (cand) = true;
9783   TYPE_CANONICAL (cand) = TYPE_CANONICAL (t);
9784   TYPE_NEXT_VARIANT (cand) = TYPE_NEXT_VARIANT (t);
9785   TYPE_NEXT_VARIANT (t) = cand;
9786   TYPE_MAIN_VARIANT (cand) = TYPE_MAIN_VARIANT (t);
9787   return cand;
9788 }
9789
9790
9791 /* Given an initializer INIT, return TRUE if INIT is zero or some
9792    aggregate of zeros.  Otherwise return FALSE.  */
9793 bool
9794 initializer_zerop (const_tree init)
9795 {
9796   tree elt;
9797
9798   STRIP_NOPS (init);
9799
9800   switch (TREE_CODE (init))
9801     {
9802     case INTEGER_CST:
9803       return integer_zerop (init);
9804
9805     case REAL_CST:
9806       /* ??? Note that this is not correct for C4X float formats.  There,
9807          a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
9808          negative exponent.  */
9809       return real_zerop (init)
9810         && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
9811
9812     case FIXED_CST:
9813       return fixed_zerop (init);
9814
9815     case COMPLEX_CST:
9816       return integer_zerop (init)
9817         || (real_zerop (init)
9818             && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
9819             && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
9820
9821     case VECTOR_CST:
9822       for (elt = TREE_VECTOR_CST_ELTS (init); elt; elt = TREE_CHAIN (elt))
9823         if (!initializer_zerop (TREE_VALUE (elt)))
9824           return false;
9825       return true;
9826
9827     case CONSTRUCTOR:
9828       {
9829         unsigned HOST_WIDE_INT idx;
9830
9831         FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
9832           if (!initializer_zerop (elt))
9833             return false;
9834         return true;
9835       }
9836
9837     case STRING_CST:
9838       {
9839         int i;
9840
9841         /* We need to loop through all elements to handle cases like
9842            "\0" and "\0foobar".  */
9843         for (i = 0; i < TREE_STRING_LENGTH (init); ++i)
9844           if (TREE_STRING_POINTER (init)[i] != '\0')
9845             return false;
9846
9847         return true;
9848       }
9849
9850     default:
9851       return false;
9852     }
9853 }
9854
9855 /* Build an empty statement at location LOC.  */
9856
9857 tree
9858 build_empty_stmt (location_t loc)
9859 {
9860   tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
9861   SET_EXPR_LOCATION (t, loc);
9862   return t;
9863 }
9864
9865
9866 /* Build an OpenMP clause with code CODE.  LOC is the location of the
9867    clause.  */
9868
9869 tree
9870 build_omp_clause (location_t loc, enum omp_clause_code code)
9871 {
9872   tree t;
9873   int size, length;
9874
9875   length = omp_clause_num_ops[code];
9876   size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
9877
9878   record_node_allocation_statistics (OMP_CLAUSE, size);
9879
9880   t = ggc_alloc_tree_node (size);
9881   memset (t, 0, size);
9882   TREE_SET_CODE (t, OMP_CLAUSE);
9883   OMP_CLAUSE_SET_CODE (t, code);
9884   OMP_CLAUSE_LOCATION (t) = loc;
9885
9886   return t;
9887 }
9888
9889 /* Build a tcc_vl_exp object with code CODE and room for LEN operands.  LEN
9890    includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
9891    Except for the CODE and operand count field, other storage for the
9892    object is initialized to zeros.  */
9893
9894 tree
9895 build_vl_exp_stat (enum tree_code code, int len MEM_STAT_DECL)
9896 {
9897   tree t;
9898   int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
9899
9900   gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
9901   gcc_assert (len >= 1);
9902
9903   record_node_allocation_statistics (code, length);
9904
9905   t = ggc_alloc_zone_cleared_tree_node_stat (&tree_zone, length PASS_MEM_STAT);
9906
9907   TREE_SET_CODE (t, code);
9908
9909   /* Can't use TREE_OPERAND to store the length because if checking is
9910      enabled, it will try to check the length before we store it.  :-P  */
9911   t->exp.operands[0] = build_int_cst (sizetype, len);
9912
9913   return t;
9914 }
9915
9916 /* Helper function for build_call_* functions; build a CALL_EXPR with
9917    indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
9918    the argument slots.  */
9919
9920 static tree
9921 build_call_1 (tree return_type, tree fn, int nargs)
9922 {
9923   tree t;
9924
9925   t = build_vl_exp (CALL_EXPR, nargs + 3);
9926   TREE_TYPE (t) = return_type;
9927   CALL_EXPR_FN (t) = fn;
9928   CALL_EXPR_STATIC_CHAIN (t) = NULL;
9929
9930   return t;
9931 }
9932
9933 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9934    FN and a null static chain slot.  NARGS is the number of call arguments
9935    which are specified as "..." arguments.  */
9936
9937 tree
9938 build_call_nary (tree return_type, tree fn, int nargs, ...)
9939 {
9940   tree ret;
9941   va_list args;
9942   va_start (args, nargs);
9943   ret = build_call_valist (return_type, fn, nargs, args);
9944   va_end (args);
9945   return ret;
9946 }
9947
9948 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9949    FN and a null static chain slot.  NARGS is the number of call arguments
9950    which are specified as a va_list ARGS.  */
9951
9952 tree
9953 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
9954 {
9955   tree t;
9956   int i;
9957
9958   t = build_call_1 (return_type, fn, nargs);
9959   for (i = 0; i < nargs; i++)
9960     CALL_EXPR_ARG (t, i) = va_arg (args, tree);
9961   process_call_operands (t);
9962   return t;
9963 }
9964
9965 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9966    FN and a null static chain slot.  NARGS is the number of call arguments
9967    which are specified as a tree array ARGS.  */
9968
9969 tree
9970 build_call_array_loc (location_t loc, tree return_type, tree fn,
9971                       int nargs, const tree *args)
9972 {
9973   tree t;
9974   int i;
9975
9976   t = build_call_1 (return_type, fn, nargs);
9977   for (i = 0; i < nargs; i++)
9978     CALL_EXPR_ARG (t, i) = args[i];
9979   process_call_operands (t);
9980   SET_EXPR_LOCATION (t, loc);
9981   return t;
9982 }
9983
9984 /* Like build_call_array, but takes a VEC.  */
9985
9986 tree
9987 build_call_vec (tree return_type, tree fn, VEC(tree,gc) *args)
9988 {
9989   tree ret, t;
9990   unsigned int ix;
9991
9992   ret = build_call_1 (return_type, fn, VEC_length (tree, args));
9993   FOR_EACH_VEC_ELT (tree, args, ix, t)
9994     CALL_EXPR_ARG (ret, ix) = t;
9995   process_call_operands (ret);
9996   return ret;
9997 }
9998
9999
10000 /* Returns true if it is possible to prove that the index of
10001    an array access REF (an ARRAY_REF expression) falls into the
10002    array bounds.  */
10003
10004 bool
10005 in_array_bounds_p (tree ref)
10006 {
10007   tree idx = TREE_OPERAND (ref, 1);
10008   tree min, max;
10009
10010   if (TREE_CODE (idx) != INTEGER_CST)
10011     return false;
10012
10013   min = array_ref_low_bound (ref);
10014   max = array_ref_up_bound (ref);
10015   if (!min
10016       || !max
10017       || TREE_CODE (min) != INTEGER_CST
10018       || TREE_CODE (max) != INTEGER_CST)
10019     return false;
10020
10021   if (tree_int_cst_lt (idx, min)
10022       || tree_int_cst_lt (max, idx))
10023     return false;
10024
10025   return true;
10026 }
10027
10028 /* Returns true if it is possible to prove that the range of
10029    an array access REF (an ARRAY_RANGE_REF expression) falls
10030    into the array bounds.  */
10031
10032 bool
10033 range_in_array_bounds_p (tree ref)
10034 {
10035   tree domain_type = TYPE_DOMAIN (TREE_TYPE (ref));
10036   tree range_min, range_max, min, max;
10037
10038   range_min = TYPE_MIN_VALUE (domain_type);
10039   range_max = TYPE_MAX_VALUE (domain_type);
10040   if (!range_min
10041       || !range_max
10042       || TREE_CODE (range_min) != INTEGER_CST
10043       || TREE_CODE (range_max) != INTEGER_CST)
10044     return false;
10045
10046   min = array_ref_low_bound (ref);
10047   max = array_ref_up_bound (ref);
10048   if (!min
10049       || !max
10050       || TREE_CODE (min) != INTEGER_CST
10051       || TREE_CODE (max) != INTEGER_CST)
10052     return false;
10053
10054   if (tree_int_cst_lt (range_min, min)
10055       || tree_int_cst_lt (max, range_max))
10056     return false;
10057
10058   return true;
10059 }
10060
10061 /* Return true if T (assumed to be a DECL) must be assigned a memory
10062    location.  */
10063
10064 bool
10065 needs_to_live_in_memory (const_tree t)
10066 {
10067   if (TREE_CODE (t) == SSA_NAME)
10068     t = SSA_NAME_VAR (t);
10069
10070   return (TREE_ADDRESSABLE (t)
10071           || is_global_var (t)
10072           || (TREE_CODE (t) == RESULT_DECL
10073               && !DECL_BY_REFERENCE (t)
10074               && aggregate_value_p (t, current_function_decl)));
10075 }
10076
10077 /* Return value of a constant X and sign-extend it.  */
10078
10079 HOST_WIDE_INT
10080 int_cst_value (const_tree x)
10081 {
10082   unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
10083   unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
10084
10085   /* Make sure the sign-extended value will fit in a HOST_WIDE_INT.  */
10086   gcc_assert (TREE_INT_CST_HIGH (x) == 0
10087               || TREE_INT_CST_HIGH (x) == -1);
10088
10089   if (bits < HOST_BITS_PER_WIDE_INT)
10090     {
10091       bool negative = ((val >> (bits - 1)) & 1) != 0;
10092       if (negative)
10093         val |= (~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1;
10094       else
10095         val &= ~((~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1);
10096     }
10097
10098   return val;
10099 }
10100
10101 /* Return value of a constant X and sign-extend it.  */
10102
10103 HOST_WIDEST_INT
10104 widest_int_cst_value (const_tree x)
10105 {
10106   unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
10107   unsigned HOST_WIDEST_INT val = TREE_INT_CST_LOW (x);
10108
10109 #if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
10110   gcc_assert (HOST_BITS_PER_WIDEST_INT >= 2 * HOST_BITS_PER_WIDE_INT);
10111   val |= (((unsigned HOST_WIDEST_INT) TREE_INT_CST_HIGH (x))
10112           << HOST_BITS_PER_WIDE_INT);
10113 #else
10114   /* Make sure the sign-extended value will fit in a HOST_WIDE_INT.  */
10115   gcc_assert (TREE_INT_CST_HIGH (x) == 0
10116               || TREE_INT_CST_HIGH (x) == -1);
10117 #endif
10118
10119   if (bits < HOST_BITS_PER_WIDEST_INT)
10120     {
10121       bool negative = ((val >> (bits - 1)) & 1) != 0;
10122       if (negative)
10123         val |= (~(unsigned HOST_WIDEST_INT) 0) << (bits - 1) << 1;
10124       else
10125         val &= ~((~(unsigned HOST_WIDEST_INT) 0) << (bits - 1) << 1);
10126     }
10127
10128   return val;
10129 }
10130
10131 /* If TYPE is an integral type, return an equivalent type which is
10132     unsigned iff UNSIGNEDP is true.  If TYPE is not an integral type,
10133     return TYPE itself.  */
10134
10135 tree
10136 signed_or_unsigned_type_for (int unsignedp, tree type)
10137 {
10138   tree t = type;
10139   if (POINTER_TYPE_P (type))
10140     {
10141       /* If the pointer points to the normal address space, use the
10142          size_type_node.  Otherwise use an appropriate size for the pointer
10143          based on the named address space it points to.  */
10144       if (!TYPE_ADDR_SPACE (TREE_TYPE (t)))
10145         t = size_type_node;
10146       else
10147         return lang_hooks.types.type_for_size (TYPE_PRECISION (t), unsignedp);
10148     }
10149
10150   if (!INTEGRAL_TYPE_P (t) || TYPE_UNSIGNED (t) == unsignedp)
10151     return t;
10152
10153   return lang_hooks.types.type_for_size (TYPE_PRECISION (t), unsignedp);
10154 }
10155
10156 /* Returns unsigned variant of TYPE.  */
10157
10158 tree
10159 unsigned_type_for (tree type)
10160 {
10161   return signed_or_unsigned_type_for (1, type);
10162 }
10163
10164 /* Returns signed variant of TYPE.  */
10165
10166 tree
10167 signed_type_for (tree type)
10168 {
10169   return signed_or_unsigned_type_for (0, type);
10170 }
10171
10172 /* Returns the largest value obtainable by casting something in INNER type to
10173    OUTER type.  */
10174
10175 tree
10176 upper_bound_in_type (tree outer, tree inner)
10177 {
10178   double_int high;
10179   unsigned int det = 0;
10180   unsigned oprec = TYPE_PRECISION (outer);
10181   unsigned iprec = TYPE_PRECISION (inner);
10182   unsigned prec;
10183
10184   /* Compute a unique number for every combination.  */
10185   det |= (oprec > iprec) ? 4 : 0;
10186   det |= TYPE_UNSIGNED (outer) ? 2 : 0;
10187   det |= TYPE_UNSIGNED (inner) ? 1 : 0;
10188
10189   /* Determine the exponent to use.  */
10190   switch (det)
10191     {
10192     case 0:
10193     case 1:
10194       /* oprec <= iprec, outer: signed, inner: don't care.  */
10195       prec = oprec - 1;
10196       break;
10197     case 2:
10198     case 3:
10199       /* oprec <= iprec, outer: unsigned, inner: don't care.  */
10200       prec = oprec;
10201       break;
10202     case 4:
10203       /* oprec > iprec, outer: signed, inner: signed.  */
10204       prec = iprec - 1;
10205       break;
10206     case 5:
10207       /* oprec > iprec, outer: signed, inner: unsigned.  */
10208       prec = iprec;
10209       break;
10210     case 6:
10211       /* oprec > iprec, outer: unsigned, inner: signed.  */
10212       prec = oprec;
10213       break;
10214     case 7:
10215       /* oprec > iprec, outer: unsigned, inner: unsigned.  */
10216       prec = iprec;
10217       break;
10218     default:
10219       gcc_unreachable ();
10220     }
10221
10222   /* Compute 2^^prec - 1.  */
10223   if (prec <= HOST_BITS_PER_WIDE_INT)
10224     {
10225       high.high = 0;
10226       high.low = ((~(unsigned HOST_WIDE_INT) 0)
10227             >> (HOST_BITS_PER_WIDE_INT - prec));
10228     }
10229   else
10230     {
10231       high.high = ((~(unsigned HOST_WIDE_INT) 0)
10232             >> (2 * HOST_BITS_PER_WIDE_INT - prec));
10233       high.low = ~(unsigned HOST_WIDE_INT) 0;
10234     }
10235
10236   return double_int_to_tree (outer, high);
10237 }
10238
10239 /* Returns the smallest value obtainable by casting something in INNER type to
10240    OUTER type.  */
10241
10242 tree
10243 lower_bound_in_type (tree outer, tree inner)
10244 {
10245   double_int low;
10246   unsigned oprec = TYPE_PRECISION (outer);
10247   unsigned iprec = TYPE_PRECISION (inner);
10248
10249   /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
10250      and obtain 0.  */
10251   if (TYPE_UNSIGNED (outer)
10252       /* If we are widening something of an unsigned type, OUTER type
10253          contains all values of INNER type.  In particular, both INNER
10254          and OUTER types have zero in common.  */
10255       || (oprec > iprec && TYPE_UNSIGNED (inner)))
10256     low.low = low.high = 0;
10257   else
10258     {
10259       /* If we are widening a signed type to another signed type, we
10260          want to obtain -2^^(iprec-1).  If we are keeping the
10261          precision or narrowing to a signed type, we want to obtain
10262          -2^(oprec-1).  */
10263       unsigned prec = oprec > iprec ? iprec : oprec;
10264
10265       if (prec <= HOST_BITS_PER_WIDE_INT)
10266         {
10267           low.high = ~(unsigned HOST_WIDE_INT) 0;
10268           low.low = (~(unsigned HOST_WIDE_INT) 0) << (prec - 1);
10269         }
10270       else
10271         {
10272           low.high = ((~(unsigned HOST_WIDE_INT) 0)
10273                 << (prec - HOST_BITS_PER_WIDE_INT - 1));
10274           low.low = 0;
10275         }
10276     }
10277
10278   return double_int_to_tree (outer, low);
10279 }
10280
10281 /* Return nonzero if two operands that are suitable for PHI nodes are
10282    necessarily equal.  Specifically, both ARG0 and ARG1 must be either
10283    SSA_NAME or invariant.  Note that this is strictly an optimization.
10284    That is, callers of this function can directly call operand_equal_p
10285    and get the same result, only slower.  */
10286
10287 int
10288 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
10289 {
10290   if (arg0 == arg1)
10291     return 1;
10292   if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
10293     return 0;
10294   return operand_equal_p (arg0, arg1, 0);
10295 }
10296
10297 /* Returns number of zeros at the end of binary representation of X.
10298
10299    ??? Use ffs if available?  */
10300
10301 tree
10302 num_ending_zeros (const_tree x)
10303 {
10304   unsigned HOST_WIDE_INT fr, nfr;
10305   unsigned num, abits;
10306   tree type = TREE_TYPE (x);
10307
10308   if (TREE_INT_CST_LOW (x) == 0)
10309     {
10310       num = HOST_BITS_PER_WIDE_INT;
10311       fr = TREE_INT_CST_HIGH (x);
10312     }
10313   else
10314     {
10315       num = 0;
10316       fr = TREE_INT_CST_LOW (x);
10317     }
10318
10319   for (abits = HOST_BITS_PER_WIDE_INT / 2; abits; abits /= 2)
10320     {
10321       nfr = fr >> abits;
10322       if (nfr << abits == fr)
10323         {
10324           num += abits;
10325           fr = nfr;
10326         }
10327     }
10328
10329   if (num > TYPE_PRECISION (type))
10330     num = TYPE_PRECISION (type);
10331
10332   return build_int_cst_type (type, num);
10333 }
10334
10335
10336 #define WALK_SUBTREE(NODE)                              \
10337   do                                                    \
10338     {                                                   \
10339       result = walk_tree_1 (&(NODE), func, data, pset, lh);     \
10340       if (result)                                       \
10341         return result;                                  \
10342     }                                                   \
10343   while (0)
10344
10345 /* This is a subroutine of walk_tree that walks field of TYPE that are to
10346    be walked whenever a type is seen in the tree.  Rest of operands and return
10347    value are as for walk_tree.  */
10348
10349 static tree
10350 walk_type_fields (tree type, walk_tree_fn func, void *data,
10351                   struct pointer_set_t *pset, walk_tree_lh lh)
10352 {
10353   tree result = NULL_TREE;
10354
10355   switch (TREE_CODE (type))
10356     {
10357     case POINTER_TYPE:
10358     case REFERENCE_TYPE:
10359       /* We have to worry about mutually recursive pointers.  These can't
10360          be written in C.  They can in Ada.  It's pathological, but
10361          there's an ACATS test (c38102a) that checks it.  Deal with this
10362          by checking if we're pointing to another pointer, that one
10363          points to another pointer, that one does too, and we have no htab.
10364          If so, get a hash table.  We check three levels deep to avoid
10365          the cost of the hash table if we don't need one.  */
10366       if (POINTER_TYPE_P (TREE_TYPE (type))
10367           && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
10368           && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
10369           && !pset)
10370         {
10371           result = walk_tree_without_duplicates (&TREE_TYPE (type),
10372                                                  func, data);
10373           if (result)
10374             return result;
10375
10376           break;
10377         }
10378
10379       /* ... fall through ... */
10380
10381     case COMPLEX_TYPE:
10382       WALK_SUBTREE (TREE_TYPE (type));
10383       break;
10384
10385     case METHOD_TYPE:
10386       WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
10387
10388       /* Fall through.  */
10389
10390     case FUNCTION_TYPE:
10391       WALK_SUBTREE (TREE_TYPE (type));
10392       {
10393         tree arg;
10394
10395         /* We never want to walk into default arguments.  */
10396         for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
10397           WALK_SUBTREE (TREE_VALUE (arg));
10398       }
10399       break;
10400
10401     case ARRAY_TYPE:
10402       /* Don't follow this nodes's type if a pointer for fear that
10403          we'll have infinite recursion.  If we have a PSET, then we
10404          need not fear.  */
10405       if (pset
10406           || (!POINTER_TYPE_P (TREE_TYPE (type))
10407               && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
10408         WALK_SUBTREE (TREE_TYPE (type));
10409       WALK_SUBTREE (TYPE_DOMAIN (type));
10410       break;
10411
10412     case OFFSET_TYPE:
10413       WALK_SUBTREE (TREE_TYPE (type));
10414       WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
10415       break;
10416
10417     default:
10418       break;
10419     }
10420
10421   return NULL_TREE;
10422 }
10423
10424 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal.  FUNC is
10425    called with the DATA and the address of each sub-tree.  If FUNC returns a
10426    non-NULL value, the traversal is stopped, and the value returned by FUNC
10427    is returned.  If PSET is non-NULL it is used to record the nodes visited,
10428    and to avoid visiting a node more than once.  */
10429
10430 tree
10431 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
10432              struct pointer_set_t *pset, walk_tree_lh lh)
10433 {
10434   enum tree_code code;
10435   int walk_subtrees;
10436   tree result;
10437
10438 #define WALK_SUBTREE_TAIL(NODE)                         \
10439   do                                                    \
10440     {                                                   \
10441        tp = & (NODE);                                   \
10442        goto tail_recurse;                               \
10443     }                                                   \
10444   while (0)
10445
10446  tail_recurse:
10447   /* Skip empty subtrees.  */
10448   if (!*tp)
10449     return NULL_TREE;
10450
10451   /* Don't walk the same tree twice, if the user has requested
10452      that we avoid doing so.  */
10453   if (pset && pointer_set_insert (pset, *tp))
10454     return NULL_TREE;
10455
10456   /* Call the function.  */
10457   walk_subtrees = 1;
10458   result = (*func) (tp, &walk_subtrees, data);
10459
10460   /* If we found something, return it.  */
10461   if (result)
10462     return result;
10463
10464   code = TREE_CODE (*tp);
10465
10466   /* Even if we didn't, FUNC may have decided that there was nothing
10467      interesting below this point in the tree.  */
10468   if (!walk_subtrees)
10469     {
10470       /* But we still need to check our siblings.  */
10471       if (code == TREE_LIST)
10472         WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
10473       else if (code == OMP_CLAUSE)
10474         WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10475       else
10476         return NULL_TREE;
10477     }
10478
10479   if (lh)
10480     {
10481       result = (*lh) (tp, &walk_subtrees, func, data, pset);
10482       if (result || !walk_subtrees)
10483         return result;
10484     }
10485
10486   switch (code)
10487     {
10488     case ERROR_MARK:
10489     case IDENTIFIER_NODE:
10490     case INTEGER_CST:
10491     case REAL_CST:
10492     case FIXED_CST:
10493     case VECTOR_CST:
10494     case STRING_CST:
10495     case BLOCK:
10496     case PLACEHOLDER_EXPR:
10497     case SSA_NAME:
10498     case FIELD_DECL:
10499     case RESULT_DECL:
10500       /* None of these have subtrees other than those already walked
10501          above.  */
10502       break;
10503
10504     case TREE_LIST:
10505       WALK_SUBTREE (TREE_VALUE (*tp));
10506       WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
10507       break;
10508
10509     case TREE_VEC:
10510       {
10511         int len = TREE_VEC_LENGTH (*tp);
10512
10513         if (len == 0)
10514           break;
10515
10516         /* Walk all elements but the first.  */
10517         while (--len)
10518           WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
10519
10520         /* Now walk the first one as a tail call.  */
10521         WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
10522       }
10523
10524     case COMPLEX_CST:
10525       WALK_SUBTREE (TREE_REALPART (*tp));
10526       WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
10527
10528     case CONSTRUCTOR:
10529       {
10530         unsigned HOST_WIDE_INT idx;
10531         constructor_elt *ce;
10532
10533         for (idx = 0;
10534              VEC_iterate(constructor_elt, CONSTRUCTOR_ELTS (*tp), idx, ce);
10535              idx++)
10536           WALK_SUBTREE (ce->value);
10537       }
10538       break;
10539
10540     case SAVE_EXPR:
10541       WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
10542
10543     case BIND_EXPR:
10544       {
10545         tree decl;
10546         for (decl = BIND_EXPR_VARS (*tp); decl; decl = DECL_CHAIN (decl))
10547           {
10548             /* Walk the DECL_INITIAL and DECL_SIZE.  We don't want to walk
10549                into declarations that are just mentioned, rather than
10550                declared; they don't really belong to this part of the tree.
10551                And, we can see cycles: the initializer for a declaration
10552                can refer to the declaration itself.  */
10553             WALK_SUBTREE (DECL_INITIAL (decl));
10554             WALK_SUBTREE (DECL_SIZE (decl));
10555             WALK_SUBTREE (DECL_SIZE_UNIT (decl));
10556           }
10557         WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
10558       }
10559
10560     case STATEMENT_LIST:
10561       {
10562         tree_stmt_iterator i;
10563         for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
10564           WALK_SUBTREE (*tsi_stmt_ptr (i));
10565       }
10566       break;
10567
10568     case OMP_CLAUSE:
10569       switch (OMP_CLAUSE_CODE (*tp))
10570         {
10571         case OMP_CLAUSE_PRIVATE:
10572         case OMP_CLAUSE_SHARED:
10573         case OMP_CLAUSE_FIRSTPRIVATE:
10574         case OMP_CLAUSE_COPYIN:
10575         case OMP_CLAUSE_COPYPRIVATE:
10576         case OMP_CLAUSE_FINAL:
10577         case OMP_CLAUSE_IF:
10578         case OMP_CLAUSE_NUM_THREADS:
10579         case OMP_CLAUSE_SCHEDULE:
10580           WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
10581           /* FALLTHRU */
10582
10583         case OMP_CLAUSE_NOWAIT:
10584         case OMP_CLAUSE_ORDERED:
10585         case OMP_CLAUSE_DEFAULT:
10586         case OMP_CLAUSE_UNTIED:
10587         case OMP_CLAUSE_MERGEABLE:
10588           WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10589
10590         case OMP_CLAUSE_LASTPRIVATE:
10591           WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
10592           WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
10593           WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10594
10595         case OMP_CLAUSE_COLLAPSE:
10596           {
10597             int i;
10598             for (i = 0; i < 3; i++)
10599               WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
10600             WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10601           }
10602
10603         case OMP_CLAUSE_REDUCTION:
10604           {
10605             int i;
10606             for (i = 0; i < 4; i++)
10607               WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
10608             WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10609           }
10610
10611         default:
10612           gcc_unreachable ();
10613         }
10614       break;
10615
10616     case TARGET_EXPR:
10617       {
10618         int i, len;
10619
10620         /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
10621            But, we only want to walk once.  */
10622         len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
10623         for (i = 0; i < len; ++i)
10624           WALK_SUBTREE (TREE_OPERAND (*tp, i));
10625         WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
10626       }
10627
10628     case DECL_EXPR:
10629       /* If this is a TYPE_DECL, walk into the fields of the type that it's
10630          defining.  We only want to walk into these fields of a type in this
10631          case and not in the general case of a mere reference to the type.
10632
10633          The criterion is as follows: if the field can be an expression, it
10634          must be walked only here.  This should be in keeping with the fields
10635          that are directly gimplified in gimplify_type_sizes in order for the
10636          mark/copy-if-shared/unmark machinery of the gimplifier to work with
10637          variable-sized types.
10638
10639          Note that DECLs get walked as part of processing the BIND_EXPR.  */
10640       if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
10641         {
10642           tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
10643           if (TREE_CODE (*type_p) == ERROR_MARK)
10644             return NULL_TREE;
10645
10646           /* Call the function for the type.  See if it returns anything or
10647              doesn't want us to continue.  If we are to continue, walk both
10648              the normal fields and those for the declaration case.  */
10649           result = (*func) (type_p, &walk_subtrees, data);
10650           if (result || !walk_subtrees)
10651             return result;
10652
10653           /* But do not walk a pointed-to type since it may itself need to
10654              be walked in the declaration case if it isn't anonymous.  */
10655           if (!POINTER_TYPE_P (*type_p))
10656             {
10657               result = walk_type_fields (*type_p, func, data, pset, lh);
10658               if (result)
10659                 return result;
10660             }
10661
10662           /* If this is a record type, also walk the fields.  */
10663           if (RECORD_OR_UNION_TYPE_P (*type_p))
10664             {
10665               tree field;
10666
10667               for (field = TYPE_FIELDS (*type_p); field;
10668                    field = DECL_CHAIN (field))
10669                 {
10670                   /* We'd like to look at the type of the field, but we can
10671                      easily get infinite recursion.  So assume it's pointed
10672                      to elsewhere in the tree.  Also, ignore things that
10673                      aren't fields.  */
10674                   if (TREE_CODE (field) != FIELD_DECL)
10675                     continue;
10676
10677                   WALK_SUBTREE (DECL_FIELD_OFFSET (field));
10678                   WALK_SUBTREE (DECL_SIZE (field));
10679                   WALK_SUBTREE (DECL_SIZE_UNIT (field));
10680                   if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
10681                     WALK_SUBTREE (DECL_QUALIFIER (field));
10682                 }
10683             }
10684
10685           /* Same for scalar types.  */
10686           else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
10687                    || TREE_CODE (*type_p) == ENUMERAL_TYPE
10688                    || TREE_CODE (*type_p) == INTEGER_TYPE
10689                    || TREE_CODE (*type_p) == FIXED_POINT_TYPE
10690                    || TREE_CODE (*type_p) == REAL_TYPE)
10691             {
10692               WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
10693               WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
10694             }
10695
10696           WALK_SUBTREE (TYPE_SIZE (*type_p));
10697           WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
10698         }
10699       /* FALLTHRU */
10700
10701     default:
10702       if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
10703         {
10704           int i, len;
10705
10706           /* Walk over all the sub-trees of this operand.  */
10707           len = TREE_OPERAND_LENGTH (*tp);
10708
10709           /* Go through the subtrees.  We need to do this in forward order so
10710              that the scope of a FOR_EXPR is handled properly.  */
10711           if (len)
10712             {
10713               for (i = 0; i < len - 1; ++i)
10714                 WALK_SUBTREE (TREE_OPERAND (*tp, i));
10715               WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
10716             }
10717         }
10718       /* If this is a type, walk the needed fields in the type.  */
10719       else if (TYPE_P (*tp))
10720         return walk_type_fields (*tp, func, data, pset, lh);
10721       break;
10722     }
10723
10724   /* We didn't find what we were looking for.  */
10725   return NULL_TREE;
10726
10727 #undef WALK_SUBTREE_TAIL
10728 }
10729 #undef WALK_SUBTREE
10730
10731 /* Like walk_tree, but does not walk duplicate nodes more than once.  */
10732
10733 tree
10734 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
10735                                 walk_tree_lh lh)
10736 {
10737   tree result;
10738   struct pointer_set_t *pset;
10739
10740   pset = pointer_set_create ();
10741   result = walk_tree_1 (tp, func, data, pset, lh);
10742   pointer_set_destroy (pset);
10743   return result;
10744 }
10745
10746
10747 tree *
10748 tree_block (tree t)
10749 {
10750   char const c = TREE_CODE_CLASS (TREE_CODE (t));
10751
10752   if (IS_EXPR_CODE_CLASS (c))
10753     return &t->exp.block;
10754   gcc_unreachable ();
10755   return NULL;
10756 }
10757
10758 /* Create a nameless artificial label and put it in the current
10759    function context.  The label has a location of LOC.  Returns the
10760    newly created label.  */
10761
10762 tree
10763 create_artificial_label (location_t loc)
10764 {
10765   tree lab = build_decl (loc,
10766                          LABEL_DECL, NULL_TREE, void_type_node);
10767
10768   DECL_ARTIFICIAL (lab) = 1;
10769   DECL_IGNORED_P (lab) = 1;
10770   DECL_CONTEXT (lab) = current_function_decl;
10771   return lab;
10772 }
10773
10774 /*  Given a tree, try to return a useful variable name that we can use
10775     to prefix a temporary that is being assigned the value of the tree.
10776     I.E. given  <temp> = &A, return A.  */
10777
10778 const char *
10779 get_name (tree t)
10780 {
10781   tree stripped_decl;
10782
10783   stripped_decl = t;
10784   STRIP_NOPS (stripped_decl);
10785   if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
10786     return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
10787   else
10788     {
10789       switch (TREE_CODE (stripped_decl))
10790         {
10791         case ADDR_EXPR:
10792           return get_name (TREE_OPERAND (stripped_decl, 0));
10793         default:
10794           return NULL;
10795         }
10796     }
10797 }
10798
10799 /* Return true if TYPE has a variable argument list.  */
10800
10801 bool
10802 stdarg_p (const_tree fntype)
10803 {
10804   function_args_iterator args_iter;
10805   tree n = NULL_TREE, t;
10806
10807   if (!fntype)
10808     return false;
10809
10810   FOREACH_FUNCTION_ARGS(fntype, t, args_iter)
10811     {
10812       n = t;
10813     }
10814
10815   return n != NULL_TREE && n != void_type_node;
10816 }
10817
10818 /* Return true if TYPE has a prototype.  */
10819
10820 bool
10821 prototype_p (tree fntype)
10822 {
10823   tree t;
10824
10825   gcc_assert (fntype != NULL_TREE);
10826
10827   t = TYPE_ARG_TYPES (fntype);
10828   return (t != NULL_TREE);
10829 }
10830
10831 /* If BLOCK is inlined from an __attribute__((__artificial__))
10832    routine, return pointer to location from where it has been
10833    called.  */
10834 location_t *
10835 block_nonartificial_location (tree block)
10836 {
10837   location_t *ret = NULL;
10838
10839   while (block && TREE_CODE (block) == BLOCK
10840          && BLOCK_ABSTRACT_ORIGIN (block))
10841     {
10842       tree ao = BLOCK_ABSTRACT_ORIGIN (block);
10843
10844       while (TREE_CODE (ao) == BLOCK
10845              && BLOCK_ABSTRACT_ORIGIN (ao)
10846              && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
10847         ao = BLOCK_ABSTRACT_ORIGIN (ao);
10848
10849       if (TREE_CODE (ao) == FUNCTION_DECL)
10850         {
10851           /* If AO is an artificial inline, point RET to the
10852              call site locus at which it has been inlined and continue
10853              the loop, in case AO's caller is also an artificial
10854              inline.  */
10855           if (DECL_DECLARED_INLINE_P (ao)
10856               && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
10857             ret = &BLOCK_SOURCE_LOCATION (block);
10858           else
10859             break;
10860         }
10861       else if (TREE_CODE (ao) != BLOCK)
10862         break;
10863
10864       block = BLOCK_SUPERCONTEXT (block);
10865     }
10866   return ret;
10867 }
10868
10869
10870 /* If EXP is inlined from an __attribute__((__artificial__))
10871    function, return the location of the original call expression.  */
10872
10873 location_t
10874 tree_nonartificial_location (tree exp)
10875 {
10876   location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
10877
10878   if (loc)
10879     return *loc;
10880   else
10881     return EXPR_LOCATION (exp);
10882 }
10883
10884
10885 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
10886    nodes.  */
10887
10888 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code.  */
10889
10890 static hashval_t
10891 cl_option_hash_hash (const void *x)
10892 {
10893   const_tree const t = (const_tree) x;
10894   const char *p;
10895   size_t i;
10896   size_t len = 0;
10897   hashval_t hash = 0;
10898
10899   if (TREE_CODE (t) == OPTIMIZATION_NODE)
10900     {
10901       p = (const char *)TREE_OPTIMIZATION (t);
10902       len = sizeof (struct cl_optimization);
10903     }
10904
10905   else if (TREE_CODE (t) == TARGET_OPTION_NODE)
10906     {
10907       p = (const char *)TREE_TARGET_OPTION (t);
10908       len = sizeof (struct cl_target_option);
10909     }
10910
10911   else
10912     gcc_unreachable ();
10913
10914   /* assume most opt flags are just 0/1, some are 2-3, and a few might be
10915      something else.  */
10916   for (i = 0; i < len; i++)
10917     if (p[i])
10918       hash = (hash << 4) ^ ((i << 2) | p[i]);
10919
10920   return hash;
10921 }
10922
10923 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
10924    TARGET_OPTION tree node) is the same as that given by *Y, which is the
10925    same.  */
10926
10927 static int
10928 cl_option_hash_eq (const void *x, const void *y)
10929 {
10930   const_tree const xt = (const_tree) x;
10931   const_tree const yt = (const_tree) y;
10932   const char *xp;
10933   const char *yp;
10934   size_t len;
10935
10936   if (TREE_CODE (xt) != TREE_CODE (yt))
10937     return 0;
10938
10939   if (TREE_CODE (xt) == OPTIMIZATION_NODE)
10940     {
10941       xp = (const char *)TREE_OPTIMIZATION (xt);
10942       yp = (const char *)TREE_OPTIMIZATION (yt);
10943       len = sizeof (struct cl_optimization);
10944     }
10945
10946   else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
10947     {
10948       xp = (const char *)TREE_TARGET_OPTION (xt);
10949       yp = (const char *)TREE_TARGET_OPTION (yt);
10950       len = sizeof (struct cl_target_option);
10951     }
10952
10953   else
10954     gcc_unreachable ();
10955
10956   return (memcmp (xp, yp, len) == 0);
10957 }
10958
10959 /* Build an OPTIMIZATION_NODE based on the current options.  */
10960
10961 tree
10962 build_optimization_node (void)
10963 {
10964   tree t;
10965   void **slot;
10966
10967   /* Use the cache of optimization nodes.  */
10968
10969   cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node),
10970                         &global_options);
10971
10972   slot = htab_find_slot (cl_option_hash_table, cl_optimization_node, INSERT);
10973   t = (tree) *slot;
10974   if (!t)
10975     {
10976       /* Insert this one into the hash table.  */
10977       t = cl_optimization_node;
10978       *slot = t;
10979
10980       /* Make a new node for next time round.  */
10981       cl_optimization_node = make_node (OPTIMIZATION_NODE);
10982     }
10983
10984   return t;
10985 }
10986
10987 /* Build a TARGET_OPTION_NODE based on the current options.  */
10988
10989 tree
10990 build_target_option_node (void)
10991 {
10992   tree t;
10993   void **slot;
10994
10995   /* Use the cache of optimization nodes.  */
10996
10997   cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node),
10998                          &global_options);
10999
11000   slot = htab_find_slot (cl_option_hash_table, cl_target_option_node, INSERT);
11001   t = (tree) *slot;
11002   if (!t)
11003     {
11004       /* Insert this one into the hash table.  */
11005       t = cl_target_option_node;
11006       *slot = t;
11007
11008       /* Make a new node for next time round.  */
11009       cl_target_option_node = make_node (TARGET_OPTION_NODE);
11010     }
11011
11012   return t;
11013 }
11014
11015 /* Determine the "ultimate origin" of a block.  The block may be an inlined
11016    instance of an inlined instance of a block which is local to an inline
11017    function, so we have to trace all of the way back through the origin chain
11018    to find out what sort of node actually served as the original seed for the
11019    given block.  */
11020
11021 tree
11022 block_ultimate_origin (const_tree block)
11023 {
11024   tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
11025
11026   /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
11027      nodes in the function to point to themselves; ignore that if
11028      we're trying to output the abstract instance of this function.  */
11029   if (BLOCK_ABSTRACT (block) && immediate_origin == block)
11030     return NULL_TREE;
11031
11032   if (immediate_origin == NULL_TREE)
11033     return NULL_TREE;
11034   else
11035     {
11036       tree ret_val;
11037       tree lookahead = immediate_origin;
11038
11039       do
11040         {
11041           ret_val = lookahead;
11042           lookahead = (TREE_CODE (ret_val) == BLOCK
11043                        ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
11044         }
11045       while (lookahead != NULL && lookahead != ret_val);
11046
11047       /* The block's abstract origin chain may not be the *ultimate* origin of
11048          the block. It could lead to a DECL that has an abstract origin set.
11049          If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11050          will give us if it has one).  Note that DECL's abstract origins are
11051          supposed to be the most distant ancestor (or so decl_ultimate_origin
11052          claims), so we don't need to loop following the DECL origins.  */
11053       if (DECL_P (ret_val))
11054         return DECL_ORIGIN (ret_val);
11055
11056       return ret_val;
11057     }
11058 }
11059
11060 /* Return true if T1 and T2 are equivalent lists.  */
11061
11062 bool
11063 list_equal_p (const_tree t1, const_tree t2)
11064 {
11065   for (; t1 && t2; t1 = TREE_CHAIN (t1) , t2 = TREE_CHAIN (t2))
11066     if (TREE_VALUE (t1) != TREE_VALUE (t2))
11067       return false;
11068   return !t1 && !t2;
11069 }
11070
11071 /* Return true iff conversion in EXP generates no instruction.  Mark
11072    it inline so that we fully inline into the stripping functions even
11073    though we have two uses of this function.  */
11074
11075 static inline bool
11076 tree_nop_conversion (const_tree exp)
11077 {
11078   tree outer_type, inner_type;
11079
11080   if (!CONVERT_EXPR_P (exp)
11081       && TREE_CODE (exp) != NON_LVALUE_EXPR)
11082     return false;
11083   if (TREE_OPERAND (exp, 0) == error_mark_node)
11084     return false;
11085
11086   outer_type = TREE_TYPE (exp);
11087   inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
11088
11089   if (!inner_type)
11090     return false;
11091
11092   /* Use precision rather then machine mode when we can, which gives
11093      the correct answer even for submode (bit-field) types.  */
11094   if ((INTEGRAL_TYPE_P (outer_type)
11095        || POINTER_TYPE_P (outer_type)
11096        || TREE_CODE (outer_type) == OFFSET_TYPE)
11097       && (INTEGRAL_TYPE_P (inner_type)
11098           || POINTER_TYPE_P (inner_type)
11099           || TREE_CODE (inner_type) == OFFSET_TYPE))
11100     return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
11101
11102   /* Otherwise fall back on comparing machine modes (e.g. for
11103      aggregate types, floats).  */
11104   return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
11105 }
11106
11107 /* Return true iff conversion in EXP generates no instruction.  Don't
11108    consider conversions changing the signedness.  */
11109
11110 static bool
11111 tree_sign_nop_conversion (const_tree exp)
11112 {
11113   tree outer_type, inner_type;
11114
11115   if (!tree_nop_conversion (exp))
11116     return false;
11117
11118   outer_type = TREE_TYPE (exp);
11119   inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
11120
11121   return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
11122           && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
11123 }
11124
11125 /* Strip conversions from EXP according to tree_nop_conversion and
11126    return the resulting expression.  */
11127
11128 tree
11129 tree_strip_nop_conversions (tree exp)
11130 {
11131   while (tree_nop_conversion (exp))
11132     exp = TREE_OPERAND (exp, 0);
11133   return exp;
11134 }
11135
11136 /* Strip conversions from EXP according to tree_sign_nop_conversion
11137    and return the resulting expression.  */
11138
11139 tree
11140 tree_strip_sign_nop_conversions (tree exp)
11141 {
11142   while (tree_sign_nop_conversion (exp))
11143     exp = TREE_OPERAND (exp, 0);
11144   return exp;
11145 }
11146
11147 /* Strip out all handled components that produce invariant
11148    offsets.  */
11149
11150 const_tree
11151 strip_invariant_refs (const_tree op)
11152 {
11153   while (handled_component_p (op))
11154     {
11155       switch (TREE_CODE (op))
11156         {
11157         case ARRAY_REF:
11158         case ARRAY_RANGE_REF:
11159           if (!is_gimple_constant (TREE_OPERAND (op, 1))
11160               || TREE_OPERAND (op, 2) != NULL_TREE
11161               || TREE_OPERAND (op, 3) != NULL_TREE)
11162             return NULL;
11163           break;
11164
11165         case COMPONENT_REF:
11166           if (TREE_OPERAND (op, 2) != NULL_TREE)
11167             return NULL;
11168           break;
11169
11170         default:;
11171         }
11172       op = TREE_OPERAND (op, 0);
11173     }
11174
11175   return op;
11176 }
11177
11178 static GTY(()) tree gcc_eh_personality_decl;
11179
11180 /* Return the GCC personality function decl.  */
11181
11182 tree
11183 lhd_gcc_personality (void)
11184 {
11185   if (!gcc_eh_personality_decl)
11186     gcc_eh_personality_decl = build_personality_function ("gcc");
11187   return gcc_eh_personality_decl;
11188 }
11189
11190 /* Try to find a base info of BINFO that would have its field decl at offset
11191    OFFSET within the BINFO type and which is of EXPECTED_TYPE.  If it can be
11192    found, return, otherwise return NULL_TREE.  */
11193
11194 tree
11195 get_binfo_at_offset (tree binfo, HOST_WIDE_INT offset, tree expected_type)
11196 {
11197   tree type = BINFO_TYPE (binfo);
11198
11199   while (true)
11200     {
11201       HOST_WIDE_INT pos, size;
11202       tree fld;
11203       int i;
11204
11205       if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (expected_type))
11206           return binfo;
11207       if (offset < 0)
11208         return NULL_TREE;
11209
11210       for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
11211         {
11212           if (TREE_CODE (fld) != FIELD_DECL)
11213             continue;
11214
11215           pos = int_bit_position (fld);
11216           size = tree_low_cst (DECL_SIZE (fld), 1);
11217           if (pos <= offset && (pos + size) > offset)
11218             break;
11219         }
11220       if (!fld || TREE_CODE (TREE_TYPE (fld)) != RECORD_TYPE)
11221         return NULL_TREE;
11222
11223       if (!DECL_ARTIFICIAL (fld))
11224         {
11225           binfo = TYPE_BINFO (TREE_TYPE (fld));
11226           if (!binfo)
11227             return NULL_TREE;
11228         }
11229       /* Offset 0 indicates the primary base, whose vtable contents are
11230          represented in the binfo for the derived class.  */
11231       else if (offset != 0)
11232         {
11233           tree base_binfo, found_binfo = NULL_TREE;
11234           for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
11235             if (TREE_TYPE (base_binfo) == TREE_TYPE (fld))
11236               {
11237                 found_binfo = base_binfo;
11238                 break;
11239               }
11240           if (!found_binfo)
11241             return NULL_TREE;
11242           binfo = found_binfo;
11243         }
11244
11245       type = TREE_TYPE (fld);
11246       offset -= pos;
11247     }
11248 }
11249
11250 /* Returns true if X is a typedef decl.  */
11251
11252 bool
11253 is_typedef_decl (tree x)
11254 {
11255   return (x && TREE_CODE (x) == TYPE_DECL
11256           && DECL_ORIGINAL_TYPE (x) != NULL_TREE);
11257 }
11258
11259 /* Returns true iff TYPE is a type variant created for a typedef. */
11260
11261 bool
11262 typedef_variant_p (tree type)
11263 {
11264   return is_typedef_decl (TYPE_NAME (type));
11265 }
11266
11267 /* Warn about a use of an identifier which was marked deprecated.  */
11268 void
11269 warn_deprecated_use (tree node, tree attr)
11270 {
11271   const char *msg;
11272
11273   if (node == 0 || !warn_deprecated_decl)
11274     return;
11275
11276   if (!attr)
11277     {
11278       if (DECL_P (node))
11279         attr = DECL_ATTRIBUTES (node);
11280       else if (TYPE_P (node))
11281         {
11282           tree decl = TYPE_STUB_DECL (node);
11283           if (decl)
11284             attr = lookup_attribute ("deprecated",
11285                                      TYPE_ATTRIBUTES (TREE_TYPE (decl)));
11286         }
11287     }
11288
11289   if (attr)
11290     attr = lookup_attribute ("deprecated", attr);
11291
11292   if (attr)
11293     msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
11294   else
11295     msg = NULL;
11296
11297   if (DECL_P (node))
11298     {
11299       expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
11300       if (msg)
11301         warning (OPT_Wdeprecated_declarations,
11302                  "%qD is deprecated (declared at %s:%d): %s",
11303                  node, xloc.file, xloc.line, msg);
11304       else
11305         warning (OPT_Wdeprecated_declarations,
11306                  "%qD is deprecated (declared at %s:%d)",
11307                  node, xloc.file, xloc.line);
11308     }
11309   else if (TYPE_P (node))
11310     {
11311       tree what = NULL_TREE;
11312       tree decl = TYPE_STUB_DECL (node);
11313
11314       if (TYPE_NAME (node))
11315         {
11316           if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
11317             what = TYPE_NAME (node);
11318           else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
11319                    && DECL_NAME (TYPE_NAME (node)))
11320             what = DECL_NAME (TYPE_NAME (node));
11321         }
11322
11323       if (decl)
11324         {
11325           expanded_location xloc
11326             = expand_location (DECL_SOURCE_LOCATION (decl));
11327           if (what)
11328             {
11329               if (msg)
11330                 warning (OPT_Wdeprecated_declarations,
11331                          "%qE is deprecated (declared at %s:%d): %s",
11332                          what, xloc.file, xloc.line, msg);
11333               else
11334                 warning (OPT_Wdeprecated_declarations,
11335                          "%qE is deprecated (declared at %s:%d)", what,
11336                          xloc.file, xloc.line);
11337             }
11338           else
11339             {
11340               if (msg)
11341                 warning (OPT_Wdeprecated_declarations,
11342                          "type is deprecated (declared at %s:%d): %s",
11343                          xloc.file, xloc.line, msg);
11344               else
11345                 warning (OPT_Wdeprecated_declarations,
11346                          "type is deprecated (declared at %s:%d)",
11347                          xloc.file, xloc.line);
11348             }
11349         }
11350       else
11351         {
11352           if (what)
11353             {
11354               if (msg)
11355                 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
11356                          what, msg);
11357               else
11358                 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
11359             }
11360           else
11361             {
11362               if (msg)
11363                 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
11364                          msg);
11365               else
11366                 warning (OPT_Wdeprecated_declarations, "type is deprecated");
11367             }
11368         }
11369     }
11370 }
11371
11372 #include "gt-tree.h"