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