OSDN Git Service

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