OSDN Git Service

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