OSDN Git Service

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