OSDN Git Service

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