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