OSDN Git Service

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