* ggc.h (ggc_alloc_zone_pass_stat): New macro.
[official-gcc.git] / gcc / tree.c
blobed46248be19faf0d24178a9482a7c0d80c69105c
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 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
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.
29 It is intended to be language-independent, but occasionally
30 calls language-dependent routines defined (for C) in typecheck.c. */
32 #include "config.h"
33 #include "system.h"
34 #include "coretypes.h"
35 #include "tm.h"
36 #include "flags.h"
37 #include "tree.h"
38 #include "real.h"
39 #include "tm_p.h"
40 #include "function.h"
41 #include "obstack.h"
42 #include "toplev.h"
43 #include "ggc.h"
44 #include "hashtab.h"
45 #include "output.h"
46 #include "target.h"
47 #include "langhooks.h"
48 #include "tree-iterator.h"
49 #include "basic-block.h"
50 #include "tree-flow.h"
51 #include "params.h"
52 #include "pointer-set.h"
54 /* Each tree code class has an associated string representation.
55 These must correspond to the tree_code_class entries. */
57 const char *const tree_code_class_strings[] =
59 "exceptional",
60 "constant",
61 "type",
62 "declaration",
63 "reference",
64 "comparison",
65 "unary",
66 "binary",
67 "statement",
68 "expression",
71 /* obstack.[ch] explicitly declined to prototype this. */
72 extern int _obstack_allocated_p (struct obstack *h, void *obj);
74 #ifdef GATHER_STATISTICS
75 /* Statistics-gathering stuff. */
77 int tree_node_counts[(int) all_kinds];
78 int tree_node_sizes[(int) all_kinds];
80 /* Keep in sync with tree.h:enum tree_node_kind. */
81 static const char * const tree_node_kind_names[] = {
82 "decls",
83 "types",
84 "blocks",
85 "stmts",
86 "refs",
87 "exprs",
88 "constants",
89 "identifiers",
90 "perm_tree_lists",
91 "temp_tree_lists",
92 "vecs",
93 "binfos",
94 "phi_nodes",
95 "ssa names",
96 "random kinds",
97 "lang_decl kinds",
98 "lang_type kinds"
100 #endif /* GATHER_STATISTICS */
102 /* Unique id for next decl created. */
103 static GTY(()) int next_decl_uid;
104 /* Unique id for next type created. */
105 static GTY(()) int next_type_uid = 1;
107 /* Since we cannot rehash a type after it is in the table, we have to
108 keep the hash code. */
110 struct type_hash GTY(())
112 unsigned long hash;
113 tree type;
116 /* Initial size of the hash table (rounded to next prime). */
117 #define TYPE_HASH_INITIAL_SIZE 1000
119 /* Now here is the hash table. When recording a type, it is added to
120 the slot whose index is the hash code. Note that the hash table is
121 used for several kinds of types (function types, array types and
122 array index range types, for now). While all these live in the
123 same table, they are completely independent, and the hash code is
124 computed differently for each of these. */
126 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash)))
127 htab_t type_hash_table;
129 /* Hash table and temporary node for larger integer const values. */
130 static GTY (()) tree int_cst_node;
131 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
132 htab_t int_cst_hash_table;
134 static void set_type_quals (tree, int);
135 static int type_hash_eq (const void *, const void *);
136 static hashval_t type_hash_hash (const void *);
137 static hashval_t int_cst_hash_hash (const void *);
138 static int int_cst_hash_eq (const void *, const void *);
139 static void print_type_hash_statistics (void);
140 static tree make_vector_type (tree, int, enum machine_mode);
141 static int type_hash_marked_p (const void *);
142 static unsigned int type_hash_list (tree, hashval_t);
143 static unsigned int attribute_hash_list (tree, hashval_t);
145 tree global_trees[TI_MAX];
146 tree integer_types[itk_none];
148 /* Init tree.c. */
150 void
151 init_ttree (void)
153 /* Initialize the hash table of types. */
154 type_hash_table = htab_create_ggc (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
155 type_hash_eq, 0);
156 int_cst_hash_table = htab_create_ggc (1024, int_cst_hash_hash,
157 int_cst_hash_eq, NULL);
158 int_cst_node = make_node (INTEGER_CST);
162 /* The name of the object as the assembler will see it (but before any
163 translations made by ASM_OUTPUT_LABELREF). Often this is the same
164 as DECL_NAME. It is an IDENTIFIER_NODE. */
165 tree
166 decl_assembler_name (tree decl)
168 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
169 lang_hooks.set_decl_assembler_name (decl);
170 return DECL_CHECK (decl)->decl.assembler_name;
173 /* Compute the number of bytes occupied by a tree with code CODE.
174 This function cannot be used for TREE_VEC, PHI_NODE, or STRING_CST
175 codes, which are of variable length. */
176 size_t
177 tree_code_size (enum tree_code code)
179 switch (TREE_CODE_CLASS (code))
181 case tcc_declaration: /* A decl node */
182 return sizeof (struct tree_decl);
184 case tcc_type: /* a type node */
185 return sizeof (struct tree_type);
187 case tcc_reference: /* a reference */
188 case tcc_expression: /* an expression */
189 case tcc_statement: /* an expression with side effects */
190 case tcc_comparison: /* a comparison expression */
191 case tcc_unary: /* a unary arithmetic expression */
192 case tcc_binary: /* a binary arithmetic expression */
193 return (sizeof (struct tree_exp)
194 + (TREE_CODE_LENGTH (code) - 1) * sizeof (char *));
196 case tcc_constant: /* a constant */
197 switch (code)
199 case INTEGER_CST: return sizeof (struct tree_int_cst);
200 case REAL_CST: return sizeof (struct tree_real_cst);
201 case COMPLEX_CST: return sizeof (struct tree_complex);
202 case VECTOR_CST: return sizeof (struct tree_vector);
203 case STRING_CST: gcc_unreachable ();
204 default:
205 return lang_hooks.tree_size (code);
208 case tcc_exceptional: /* something random, like an identifier. */
209 switch (code)
211 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
212 case TREE_LIST: return sizeof (struct tree_list);
214 case ERROR_MARK:
215 case PLACEHOLDER_EXPR: return sizeof (struct tree_common);
217 case TREE_VEC:
218 case PHI_NODE: gcc_unreachable ();
220 case SSA_NAME: return sizeof (struct tree_ssa_name);
222 case STATEMENT_LIST: return sizeof (struct tree_statement_list);
223 case BLOCK: return sizeof (struct tree_block);
224 case VALUE_HANDLE: return sizeof (struct tree_value_handle);
226 default:
227 return lang_hooks.tree_size (code);
230 default:
231 gcc_unreachable ();
235 /* Compute the number of bytes occupied by NODE. This routine only
236 looks at TREE_CODE, except for PHI_NODE and TREE_VEC nodes. */
237 size_t
238 tree_size (tree node)
240 enum tree_code code = TREE_CODE (node);
241 switch (code)
243 case PHI_NODE:
244 return (sizeof (struct tree_phi_node)
245 + (PHI_ARG_CAPACITY (node) - 1) * sizeof (struct phi_arg_d));
247 case TREE_BINFO:
248 return (offsetof (struct tree_binfo, base_binfos)
249 + VEC_embedded_size (tree, BINFO_N_BASE_BINFOS (node)));
251 case TREE_VEC:
252 return (sizeof (struct tree_vec)
253 + (TREE_VEC_LENGTH (node) - 1) * sizeof(char *));
255 case STRING_CST:
256 return sizeof (struct tree_string) + TREE_STRING_LENGTH (node) - 1;
258 default:
259 return tree_code_size (code);
263 /* Return a newly allocated node of code CODE. For decl and type
264 nodes, some other fields are initialized. The rest of the node is
265 initialized to zero. This function cannot be used for PHI_NODE or
266 TREE_VEC nodes, which is enforced by asserts in tree_code_size.
268 Achoo! I got a code in the node. */
270 tree
271 make_node_stat (enum tree_code code MEM_STAT_DECL)
273 tree t;
274 enum tree_code_class type = TREE_CODE_CLASS (code);
275 size_t length = tree_code_size (code);
276 #ifdef GATHER_STATISTICS
277 tree_node_kind kind;
279 switch (type)
281 case tcc_declaration: /* A decl node */
282 kind = d_kind;
283 break;
285 case tcc_type: /* a type node */
286 kind = t_kind;
287 break;
289 case tcc_statement: /* an expression with side effects */
290 kind = s_kind;
291 break;
293 case tcc_reference: /* a reference */
294 kind = r_kind;
295 break;
297 case tcc_expression: /* an expression */
298 case tcc_comparison: /* a comparison expression */
299 case tcc_unary: /* a unary arithmetic expression */
300 case tcc_binary: /* a binary arithmetic expression */
301 kind = e_kind;
302 break;
304 case tcc_constant: /* a constant */
305 kind = c_kind;
306 break;
308 case tcc_exceptional: /* something random, like an identifier. */
309 switch (code)
311 case IDENTIFIER_NODE:
312 kind = id_kind;
313 break;
315 case TREE_VEC:;
316 kind = vec_kind;
317 break;
319 case TREE_BINFO:
320 kind = binfo_kind;
321 break;
323 case PHI_NODE:
324 kind = phi_kind;
325 break;
327 case SSA_NAME:
328 kind = ssa_name_kind;
329 break;
331 case BLOCK:
332 kind = b_kind;
333 break;
335 default:
336 kind = x_kind;
337 break;
339 break;
341 default:
342 gcc_unreachable ();
345 tree_node_counts[(int) kind]++;
346 tree_node_sizes[(int) kind] += length;
347 #endif
349 if (code == IDENTIFIER_NODE)
350 t = ggc_alloc_zone_pass_stat (length, &tree_id_zone);
351 else
352 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
354 memset (t, 0, length);
356 TREE_SET_CODE (t, code);
358 switch (type)
360 case tcc_statement:
361 TREE_SIDE_EFFECTS (t) = 1;
362 break;
364 case tcc_declaration:
365 if (code != FUNCTION_DECL)
366 DECL_ALIGN (t) = 1;
367 DECL_USER_ALIGN (t) = 0;
368 DECL_IN_SYSTEM_HEADER (t) = in_system_header;
369 DECL_SOURCE_LOCATION (t) = input_location;
370 DECL_UID (t) = next_decl_uid++;
372 /* We have not yet computed the alias set for this declaration. */
373 DECL_POINTER_ALIAS_SET (t) = -1;
374 break;
376 case tcc_type:
377 TYPE_UID (t) = next_type_uid++;
378 TYPE_ALIGN (t) = char_type_node ? TYPE_ALIGN (char_type_node) : 0;
379 TYPE_USER_ALIGN (t) = 0;
380 TYPE_MAIN_VARIANT (t) = t;
382 /* Default to no attributes for type, but let target change that. */
383 TYPE_ATTRIBUTES (t) = NULL_TREE;
384 targetm.set_default_type_attributes (t);
386 /* We have not yet computed the alias set for this type. */
387 TYPE_ALIAS_SET (t) = -1;
388 break;
390 case tcc_constant:
391 TREE_CONSTANT (t) = 1;
392 TREE_INVARIANT (t) = 1;
393 break;
395 case tcc_expression:
396 switch (code)
398 case INIT_EXPR:
399 case MODIFY_EXPR:
400 case VA_ARG_EXPR:
401 case PREDECREMENT_EXPR:
402 case PREINCREMENT_EXPR:
403 case POSTDECREMENT_EXPR:
404 case POSTINCREMENT_EXPR:
405 /* All of these have side-effects, no matter what their
406 operands are. */
407 TREE_SIDE_EFFECTS (t) = 1;
408 break;
410 default:
411 break;
413 break;
415 default:
416 /* Other classes need no special treatment. */
417 break;
420 return t;
423 /* Return a new node with the same contents as NODE except that its
424 TREE_CHAIN is zero and it has a fresh uid. */
426 tree
427 copy_node_stat (tree node MEM_STAT_DECL)
429 tree t;
430 enum tree_code code = TREE_CODE (node);
431 size_t length;
433 gcc_assert (code != STATEMENT_LIST);
435 length = tree_size (node);
436 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
437 memcpy (t, node, length);
439 TREE_CHAIN (t) = 0;
440 TREE_ASM_WRITTEN (t) = 0;
441 TREE_VISITED (t) = 0;
442 t->common.ann = 0;
444 if (TREE_CODE_CLASS (code) == tcc_declaration)
445 DECL_UID (t) = next_decl_uid++;
446 else if (TREE_CODE_CLASS (code) == tcc_type)
448 TYPE_UID (t) = next_type_uid++;
449 /* The following is so that the debug code for
450 the copy is different from the original type.
451 The two statements usually duplicate each other
452 (because they clear fields of the same union),
453 but the optimizer should catch that. */
454 TYPE_SYMTAB_POINTER (t) = 0;
455 TYPE_SYMTAB_ADDRESS (t) = 0;
457 /* Do not copy the values cache. */
458 if (TYPE_CACHED_VALUES_P(t))
460 TYPE_CACHED_VALUES_P (t) = 0;
461 TYPE_CACHED_VALUES (t) = NULL_TREE;
465 return t;
468 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
469 For example, this can copy a list made of TREE_LIST nodes. */
471 tree
472 copy_list (tree list)
474 tree head;
475 tree prev, next;
477 if (list == 0)
478 return 0;
480 head = prev = copy_node (list);
481 next = TREE_CHAIN (list);
482 while (next)
484 TREE_CHAIN (prev) = copy_node (next);
485 prev = TREE_CHAIN (prev);
486 next = TREE_CHAIN (next);
488 return head;
492 /* Create an INT_CST node with a LOW value sign extended. */
494 tree
495 build_int_cst (tree type, HOST_WIDE_INT low)
497 return build_int_cst_wide (type, low, low < 0 ? -1 : 0);
500 /* Create an INT_CST node with a LOW value zero extended. */
502 tree
503 build_int_cstu (tree type, unsigned HOST_WIDE_INT low)
505 return build_int_cst_wide (type, low, 0);
508 /* Create an INT_CST node with a LOW value in TYPE. The value is sign extended
509 if it is negative. This function is similar to build_int_cst, but
510 the extra bits outside of the type precision are cleared. Constants
511 with these extra bits may confuse the fold so that it detects overflows
512 even in cases when they do not occur, and in general should be avoided.
513 We cannot however make this a default behavior of build_int_cst without
514 more intrusive changes, since there are parts of gcc that rely on the extra
515 precision of the integer constants. */
517 tree
518 build_int_cst_type (tree type, HOST_WIDE_INT low)
520 unsigned HOST_WIDE_INT val = (unsigned HOST_WIDE_INT) low;
521 unsigned HOST_WIDE_INT hi, mask;
522 unsigned bits;
523 bool signed_p;
524 bool negative;
526 if (!type)
527 type = integer_type_node;
529 bits = TYPE_PRECISION (type);
530 signed_p = !TYPE_UNSIGNED (type);
532 if (bits >= HOST_BITS_PER_WIDE_INT)
533 negative = (low < 0);
534 else
536 /* If the sign bit is inside precision of LOW, use it to determine
537 the sign of the constant. */
538 negative = ((val >> (bits - 1)) & 1) != 0;
540 /* Mask out the bits outside of the precision of the constant. */
541 mask = (((unsigned HOST_WIDE_INT) 2) << (bits - 1)) - 1;
543 if (signed_p && negative)
544 val |= ~mask;
545 else
546 val &= mask;
549 /* Determine the high bits. */
550 hi = (negative ? ~(unsigned HOST_WIDE_INT) 0 : 0);
552 /* For unsigned type we need to mask out the bits outside of the type
553 precision. */
554 if (!signed_p)
556 if (bits <= HOST_BITS_PER_WIDE_INT)
557 hi = 0;
558 else
560 bits -= HOST_BITS_PER_WIDE_INT;
561 mask = (((unsigned HOST_WIDE_INT) 2) << (bits - 1)) - 1;
562 hi &= mask;
566 return build_int_cst_wide (type, val, hi);
569 /* These are the hash table functions for the hash table of INTEGER_CST
570 nodes of a sizetype. */
572 /* Return the hash code code X, an INTEGER_CST. */
574 static hashval_t
575 int_cst_hash_hash (const void *x)
577 tree t = (tree) x;
579 return (TREE_INT_CST_HIGH (t) ^ TREE_INT_CST_LOW (t)
580 ^ htab_hash_pointer (TREE_TYPE (t)));
583 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
584 is the same as that given by *Y, which is the same. */
586 static int
587 int_cst_hash_eq (const void *x, const void *y)
589 tree xt = (tree) x;
590 tree yt = (tree) y;
592 return (TREE_TYPE (xt) == TREE_TYPE (yt)
593 && TREE_INT_CST_HIGH (xt) == TREE_INT_CST_HIGH (yt)
594 && TREE_INT_CST_LOW (xt) == TREE_INT_CST_LOW (yt));
597 /* Create an INT_CST node of TYPE and value HI:LOW. If TYPE is NULL,
598 integer_type_node is used. The returned node is always shared.
599 For small integers we use a per-type vector cache, for larger ones
600 we use a single hash table. */
602 tree
603 build_int_cst_wide (tree type, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
605 tree t;
606 int ix = -1;
607 int limit = 0;
609 if (!type)
610 type = integer_type_node;
612 switch (TREE_CODE (type))
614 case POINTER_TYPE:
615 case REFERENCE_TYPE:
616 /* Cache NULL pointer. */
617 if (!hi && !low)
619 limit = 1;
620 ix = 0;
622 break;
624 case BOOLEAN_TYPE:
625 /* Cache false or true. */
626 limit = 2;
627 if (!hi && low < 2)
628 ix = low;
629 break;
631 case INTEGER_TYPE:
632 case CHAR_TYPE:
633 case OFFSET_TYPE:
634 if (TYPE_UNSIGNED (type))
636 /* Cache 0..N */
637 limit = INTEGER_SHARE_LIMIT;
638 if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
639 ix = low;
641 else
643 /* Cache -1..N */
644 limit = INTEGER_SHARE_LIMIT + 1;
645 if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
646 ix = low + 1;
647 else if (hi == -1 && low == -(unsigned HOST_WIDE_INT)1)
648 ix = 0;
650 break;
651 default:
652 break;
655 if (ix >= 0)
657 /* Look for it in the type's vector of small shared ints. */
658 if (!TYPE_CACHED_VALUES_P (type))
660 TYPE_CACHED_VALUES_P (type) = 1;
661 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
664 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
665 if (t)
667 /* Make sure no one is clobbering the shared constant. */
668 gcc_assert (TREE_TYPE (t) == type);
669 gcc_assert (TREE_INT_CST_LOW (t) == low);
670 gcc_assert (TREE_INT_CST_HIGH (t) == hi);
672 else
674 /* Create a new shared int. */
675 t = make_node (INTEGER_CST);
677 TREE_INT_CST_LOW (t) = low;
678 TREE_INT_CST_HIGH (t) = hi;
679 TREE_TYPE (t) = type;
681 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
684 else
686 /* Use the cache of larger shared ints. */
687 void **slot;
689 TREE_INT_CST_LOW (int_cst_node) = low;
690 TREE_INT_CST_HIGH (int_cst_node) = hi;
691 TREE_TYPE (int_cst_node) = type;
693 slot = htab_find_slot (int_cst_hash_table, int_cst_node, INSERT);
694 t = *slot;
695 if (!t)
697 /* Insert this one into the hash table. */
698 t = int_cst_node;
699 *slot = t;
700 /* Make a new node for next time round. */
701 int_cst_node = make_node (INTEGER_CST);
705 return t;
708 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
709 and the rest are zeros. */
711 tree
712 build_low_bits_mask (tree type, unsigned bits)
714 unsigned HOST_WIDE_INT low;
715 HOST_WIDE_INT high;
716 unsigned HOST_WIDE_INT all_ones = ~(unsigned HOST_WIDE_INT) 0;
718 gcc_assert (bits <= TYPE_PRECISION (type));
720 if (bits == TYPE_PRECISION (type)
721 && !TYPE_UNSIGNED (type))
723 /* Sign extended all-ones mask. */
724 low = all_ones;
725 high = -1;
727 else if (bits <= HOST_BITS_PER_WIDE_INT)
729 low = all_ones >> (HOST_BITS_PER_WIDE_INT - bits);
730 high = 0;
732 else
734 bits -= HOST_BITS_PER_WIDE_INT;
735 low = all_ones;
736 high = all_ones >> (HOST_BITS_PER_WIDE_INT - bits);
739 return build_int_cst_wide (type, low, high);
742 /* Checks that X is integer constant that can be expressed in (unsigned)
743 HOST_WIDE_INT without loss of precision. */
745 bool
746 cst_and_fits_in_hwi (tree x)
748 if (TREE_CODE (x) != INTEGER_CST)
749 return false;
751 if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
752 return false;
754 return (TREE_INT_CST_HIGH (x) == 0
755 || TREE_INT_CST_HIGH (x) == -1);
758 /* Return a new VECTOR_CST node whose type is TYPE and whose values
759 are in a list pointed by VALS. */
761 tree
762 build_vector (tree type, tree vals)
764 tree v = make_node (VECTOR_CST);
765 int over1 = 0, over2 = 0;
766 tree link;
768 TREE_VECTOR_CST_ELTS (v) = vals;
769 TREE_TYPE (v) = type;
771 /* Iterate through elements and check for overflow. */
772 for (link = vals; link; link = TREE_CHAIN (link))
774 tree value = TREE_VALUE (link);
776 over1 |= TREE_OVERFLOW (value);
777 over2 |= TREE_CONSTANT_OVERFLOW (value);
780 TREE_OVERFLOW (v) = over1;
781 TREE_CONSTANT_OVERFLOW (v) = over2;
783 return v;
786 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
787 are in a list pointed to by VALS. */
788 tree
789 build_constructor (tree type, tree vals)
791 tree c = make_node (CONSTRUCTOR);
792 TREE_TYPE (c) = type;
793 CONSTRUCTOR_ELTS (c) = vals;
795 /* ??? May not be necessary. Mirrors what build does. */
796 if (vals)
798 TREE_SIDE_EFFECTS (c) = TREE_SIDE_EFFECTS (vals);
799 TREE_READONLY (c) = TREE_READONLY (vals);
800 TREE_CONSTANT (c) = TREE_CONSTANT (vals);
801 TREE_INVARIANT (c) = TREE_INVARIANT (vals);
804 return c;
807 /* Return a new REAL_CST node whose type is TYPE and value is D. */
809 tree
810 build_real (tree type, REAL_VALUE_TYPE d)
812 tree v;
813 REAL_VALUE_TYPE *dp;
814 int overflow = 0;
816 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
817 Consider doing it via real_convert now. */
819 v = make_node (REAL_CST);
820 dp = ggc_alloc (sizeof (REAL_VALUE_TYPE));
821 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
823 TREE_TYPE (v) = type;
824 TREE_REAL_CST_PTR (v) = dp;
825 TREE_OVERFLOW (v) = TREE_CONSTANT_OVERFLOW (v) = overflow;
826 return v;
829 /* Return a new REAL_CST node whose type is TYPE
830 and whose value is the integer value of the INTEGER_CST node I. */
832 REAL_VALUE_TYPE
833 real_value_from_int_cst (tree type, tree i)
835 REAL_VALUE_TYPE d;
837 /* Clear all bits of the real value type so that we can later do
838 bitwise comparisons to see if two values are the same. */
839 memset (&d, 0, sizeof d);
841 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode,
842 TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i),
843 TYPE_UNSIGNED (TREE_TYPE (i)));
844 return d;
847 /* Given a tree representing an integer constant I, return a tree
848 representing the same value as a floating-point constant of type TYPE. */
850 tree
851 build_real_from_int_cst (tree type, tree i)
853 tree v;
854 int overflow = TREE_OVERFLOW (i);
856 v = build_real (type, real_value_from_int_cst (type, i));
858 TREE_OVERFLOW (v) |= overflow;
859 TREE_CONSTANT_OVERFLOW (v) |= overflow;
860 return v;
863 /* Return a newly constructed STRING_CST node whose value is
864 the LEN characters at STR.
865 The TREE_TYPE is not initialized. */
867 tree
868 build_string (int len, const char *str)
870 tree s;
871 size_t length;
873 length = len + sizeof (struct tree_string);
875 #ifdef GATHER_STATISTICS
876 tree_node_counts[(int) c_kind]++;
877 tree_node_sizes[(int) c_kind] += length;
878 #endif
880 s = ggc_alloc_tree (length);
882 memset (s, 0, sizeof (struct tree_common));
883 TREE_SET_CODE (s, STRING_CST);
884 TREE_STRING_LENGTH (s) = len;
885 memcpy ((char *) TREE_STRING_POINTER (s), str, len);
886 ((char *) TREE_STRING_POINTER (s))[len] = '\0';
888 return s;
891 /* Return a newly constructed COMPLEX_CST node whose value is
892 specified by the real and imaginary parts REAL and IMAG.
893 Both REAL and IMAG should be constant nodes. TYPE, if specified,
894 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
896 tree
897 build_complex (tree type, tree real, tree imag)
899 tree t = make_node (COMPLEX_CST);
901 TREE_REALPART (t) = real;
902 TREE_IMAGPART (t) = imag;
903 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
904 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
905 TREE_CONSTANT_OVERFLOW (t)
906 = TREE_CONSTANT_OVERFLOW (real) | TREE_CONSTANT_OVERFLOW (imag);
907 return t;
910 /* Build a BINFO with LEN language slots. */
912 tree
913 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL)
915 tree t;
916 size_t length = (offsetof (struct tree_binfo, base_binfos)
917 + VEC_embedded_size (tree, base_binfos));
919 #ifdef GATHER_STATISTICS
920 tree_node_counts[(int) binfo_kind]++;
921 tree_node_sizes[(int) binfo_kind] += length;
922 #endif
924 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
926 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
928 TREE_SET_CODE (t, TREE_BINFO);
930 VEC_embedded_init (tree, BINFO_BASE_BINFOS (t), base_binfos);
932 return t;
936 /* Build a newly constructed TREE_VEC node of length LEN. */
938 tree
939 make_tree_vec_stat (int len MEM_STAT_DECL)
941 tree t;
942 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
944 #ifdef GATHER_STATISTICS
945 tree_node_counts[(int) vec_kind]++;
946 tree_node_sizes[(int) vec_kind] += length;
947 #endif
949 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
951 memset (t, 0, length);
953 TREE_SET_CODE (t, TREE_VEC);
954 TREE_VEC_LENGTH (t) = len;
956 return t;
959 /* Return 1 if EXPR is the integer constant zero or a complex constant
960 of zero. */
963 integer_zerop (tree expr)
965 STRIP_NOPS (expr);
967 return ((TREE_CODE (expr) == INTEGER_CST
968 && ! TREE_CONSTANT_OVERFLOW (expr)
969 && TREE_INT_CST_LOW (expr) == 0
970 && TREE_INT_CST_HIGH (expr) == 0)
971 || (TREE_CODE (expr) == COMPLEX_CST
972 && integer_zerop (TREE_REALPART (expr))
973 && integer_zerop (TREE_IMAGPART (expr))));
976 /* Return 1 if EXPR is the integer constant one or the corresponding
977 complex constant. */
980 integer_onep (tree expr)
982 STRIP_NOPS (expr);
984 return ((TREE_CODE (expr) == INTEGER_CST
985 && ! TREE_CONSTANT_OVERFLOW (expr)
986 && TREE_INT_CST_LOW (expr) == 1
987 && TREE_INT_CST_HIGH (expr) == 0)
988 || (TREE_CODE (expr) == COMPLEX_CST
989 && integer_onep (TREE_REALPART (expr))
990 && integer_zerop (TREE_IMAGPART (expr))));
993 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
994 it contains. Likewise for the corresponding complex constant. */
997 integer_all_onesp (tree expr)
999 int prec;
1000 int uns;
1002 STRIP_NOPS (expr);
1004 if (TREE_CODE (expr) == COMPLEX_CST
1005 && integer_all_onesp (TREE_REALPART (expr))
1006 && integer_zerop (TREE_IMAGPART (expr)))
1007 return 1;
1009 else if (TREE_CODE (expr) != INTEGER_CST
1010 || TREE_CONSTANT_OVERFLOW (expr))
1011 return 0;
1013 uns = TYPE_UNSIGNED (TREE_TYPE (expr));
1014 if (!uns)
1015 return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
1016 && TREE_INT_CST_HIGH (expr) == -1);
1018 /* Note that using TYPE_PRECISION here is wrong. We care about the
1019 actual bits, not the (arbitrary) range of the type. */
1020 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr)));
1021 if (prec >= HOST_BITS_PER_WIDE_INT)
1023 HOST_WIDE_INT high_value;
1024 int shift_amount;
1026 shift_amount = prec - HOST_BITS_PER_WIDE_INT;
1028 /* Can not handle precisions greater than twice the host int size. */
1029 gcc_assert (shift_amount <= HOST_BITS_PER_WIDE_INT);
1030 if (shift_amount == HOST_BITS_PER_WIDE_INT)
1031 /* Shifting by the host word size is undefined according to the ANSI
1032 standard, so we must handle this as a special case. */
1033 high_value = -1;
1034 else
1035 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
1037 return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
1038 && TREE_INT_CST_HIGH (expr) == high_value);
1040 else
1041 return TREE_INT_CST_LOW (expr) == ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
1044 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1045 one bit on). */
1048 integer_pow2p (tree expr)
1050 int prec;
1051 HOST_WIDE_INT high, low;
1053 STRIP_NOPS (expr);
1055 if (TREE_CODE (expr) == COMPLEX_CST
1056 && integer_pow2p (TREE_REALPART (expr))
1057 && integer_zerop (TREE_IMAGPART (expr)))
1058 return 1;
1060 if (TREE_CODE (expr) != INTEGER_CST || TREE_CONSTANT_OVERFLOW (expr))
1061 return 0;
1063 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1064 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1065 high = TREE_INT_CST_HIGH (expr);
1066 low = TREE_INT_CST_LOW (expr);
1068 /* First clear all bits that are beyond the type's precision in case
1069 we've been sign extended. */
1071 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1073 else if (prec > HOST_BITS_PER_WIDE_INT)
1074 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1075 else
1077 high = 0;
1078 if (prec < HOST_BITS_PER_WIDE_INT)
1079 low &= ~((HOST_WIDE_INT) (-1) << prec);
1082 if (high == 0 && low == 0)
1083 return 0;
1085 return ((high == 0 && (low & (low - 1)) == 0)
1086 || (low == 0 && (high & (high - 1)) == 0));
1089 /* Return 1 if EXPR is an integer constant other than zero or a
1090 complex constant other than zero. */
1093 integer_nonzerop (tree expr)
1095 STRIP_NOPS (expr);
1097 return ((TREE_CODE (expr) == INTEGER_CST
1098 && ! TREE_CONSTANT_OVERFLOW (expr)
1099 && (TREE_INT_CST_LOW (expr) != 0
1100 || TREE_INT_CST_HIGH (expr) != 0))
1101 || (TREE_CODE (expr) == COMPLEX_CST
1102 && (integer_nonzerop (TREE_REALPART (expr))
1103 || integer_nonzerop (TREE_IMAGPART (expr)))));
1106 /* Return the power of two represented by a tree node known to be a
1107 power of two. */
1110 tree_log2 (tree expr)
1112 int prec;
1113 HOST_WIDE_INT high, low;
1115 STRIP_NOPS (expr);
1117 if (TREE_CODE (expr) == COMPLEX_CST)
1118 return tree_log2 (TREE_REALPART (expr));
1120 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1121 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1123 high = TREE_INT_CST_HIGH (expr);
1124 low = TREE_INT_CST_LOW (expr);
1126 /* First clear all bits that are beyond the type's precision in case
1127 we've been sign extended. */
1129 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1131 else if (prec > HOST_BITS_PER_WIDE_INT)
1132 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1133 else
1135 high = 0;
1136 if (prec < HOST_BITS_PER_WIDE_INT)
1137 low &= ~((HOST_WIDE_INT) (-1) << prec);
1140 return (high != 0 ? HOST_BITS_PER_WIDE_INT + exact_log2 (high)
1141 : exact_log2 (low));
1144 /* Similar, but return the largest integer Y such that 2 ** Y is less
1145 than or equal to EXPR. */
1148 tree_floor_log2 (tree expr)
1150 int prec;
1151 HOST_WIDE_INT high, low;
1153 STRIP_NOPS (expr);
1155 if (TREE_CODE (expr) == COMPLEX_CST)
1156 return tree_log2 (TREE_REALPART (expr));
1158 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1159 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1161 high = TREE_INT_CST_HIGH (expr);
1162 low = TREE_INT_CST_LOW (expr);
1164 /* First clear all bits that are beyond the type's precision in case
1165 we've been sign extended. Ignore if type's precision hasn't been set
1166 since what we are doing is setting it. */
1168 if (prec == 2 * HOST_BITS_PER_WIDE_INT || prec == 0)
1170 else if (prec > HOST_BITS_PER_WIDE_INT)
1171 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1172 else
1174 high = 0;
1175 if (prec < HOST_BITS_PER_WIDE_INT)
1176 low &= ~((HOST_WIDE_INT) (-1) << prec);
1179 return (high != 0 ? HOST_BITS_PER_WIDE_INT + floor_log2 (high)
1180 : floor_log2 (low));
1183 /* Return 1 if EXPR is the real constant zero. */
1186 real_zerop (tree expr)
1188 STRIP_NOPS (expr);
1190 return ((TREE_CODE (expr) == REAL_CST
1191 && ! TREE_CONSTANT_OVERFLOW (expr)
1192 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0))
1193 || (TREE_CODE (expr) == COMPLEX_CST
1194 && real_zerop (TREE_REALPART (expr))
1195 && real_zerop (TREE_IMAGPART (expr))));
1198 /* Return 1 if EXPR is the real constant one in real or complex form. */
1201 real_onep (tree expr)
1203 STRIP_NOPS (expr);
1205 return ((TREE_CODE (expr) == REAL_CST
1206 && ! TREE_CONSTANT_OVERFLOW (expr)
1207 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1))
1208 || (TREE_CODE (expr) == COMPLEX_CST
1209 && real_onep (TREE_REALPART (expr))
1210 && real_zerop (TREE_IMAGPART (expr))));
1213 /* Return 1 if EXPR is the real constant two. */
1216 real_twop (tree expr)
1218 STRIP_NOPS (expr);
1220 return ((TREE_CODE (expr) == REAL_CST
1221 && ! TREE_CONSTANT_OVERFLOW (expr)
1222 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2))
1223 || (TREE_CODE (expr) == COMPLEX_CST
1224 && real_twop (TREE_REALPART (expr))
1225 && real_zerop (TREE_IMAGPART (expr))));
1228 /* Return 1 if EXPR is the real constant minus one. */
1231 real_minus_onep (tree expr)
1233 STRIP_NOPS (expr);
1235 return ((TREE_CODE (expr) == REAL_CST
1236 && ! TREE_CONSTANT_OVERFLOW (expr)
1237 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconstm1))
1238 || (TREE_CODE (expr) == COMPLEX_CST
1239 && real_minus_onep (TREE_REALPART (expr))
1240 && real_zerop (TREE_IMAGPART (expr))));
1243 /* Nonzero if EXP is a constant or a cast of a constant. */
1246 really_constant_p (tree exp)
1248 /* This is not quite the same as STRIP_NOPS. It does more. */
1249 while (TREE_CODE (exp) == NOP_EXPR
1250 || TREE_CODE (exp) == CONVERT_EXPR
1251 || TREE_CODE (exp) == NON_LVALUE_EXPR)
1252 exp = TREE_OPERAND (exp, 0);
1253 return TREE_CONSTANT (exp);
1256 /* Return first list element whose TREE_VALUE is ELEM.
1257 Return 0 if ELEM is not in LIST. */
1259 tree
1260 value_member (tree elem, tree list)
1262 while (list)
1264 if (elem == TREE_VALUE (list))
1265 return list;
1266 list = TREE_CHAIN (list);
1268 return NULL_TREE;
1271 /* Return first list element whose TREE_PURPOSE is ELEM.
1272 Return 0 if ELEM is not in LIST. */
1274 tree
1275 purpose_member (tree elem, tree list)
1277 while (list)
1279 if (elem == TREE_PURPOSE (list))
1280 return list;
1281 list = TREE_CHAIN (list);
1283 return NULL_TREE;
1286 /* Return nonzero if ELEM is part of the chain CHAIN. */
1289 chain_member (tree elem, tree chain)
1291 while (chain)
1293 if (elem == chain)
1294 return 1;
1295 chain = TREE_CHAIN (chain);
1298 return 0;
1301 /* Return the length of a chain of nodes chained through TREE_CHAIN.
1302 We expect a null pointer to mark the end of the chain.
1303 This is the Lisp primitive `length'. */
1306 list_length (tree t)
1308 tree p = t;
1309 #ifdef ENABLE_TREE_CHECKING
1310 tree q = t;
1311 #endif
1312 int len = 0;
1314 while (p)
1316 p = TREE_CHAIN (p);
1317 #ifdef ENABLE_TREE_CHECKING
1318 if (len % 2)
1319 q = TREE_CHAIN (q);
1320 gcc_assert (p != q);
1321 #endif
1322 len++;
1325 return len;
1328 /* Returns the number of FIELD_DECLs in TYPE. */
1331 fields_length (tree type)
1333 tree t = TYPE_FIELDS (type);
1334 int count = 0;
1336 for (; t; t = TREE_CHAIN (t))
1337 if (TREE_CODE (t) == FIELD_DECL)
1338 ++count;
1340 return count;
1343 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
1344 by modifying the last node in chain 1 to point to chain 2.
1345 This is the Lisp primitive `nconc'. */
1347 tree
1348 chainon (tree op1, tree op2)
1350 tree t1;
1352 if (!op1)
1353 return op2;
1354 if (!op2)
1355 return op1;
1357 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
1358 continue;
1359 TREE_CHAIN (t1) = op2;
1361 #ifdef ENABLE_TREE_CHECKING
1363 tree t2;
1364 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
1365 gcc_assert (t2 != t1);
1367 #endif
1369 return op1;
1372 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
1374 tree
1375 tree_last (tree chain)
1377 tree next;
1378 if (chain)
1379 while ((next = TREE_CHAIN (chain)))
1380 chain = next;
1381 return chain;
1384 /* Reverse the order of elements in the chain T,
1385 and return the new head of the chain (old last element). */
1387 tree
1388 nreverse (tree t)
1390 tree prev = 0, decl, next;
1391 for (decl = t; decl; decl = next)
1393 next = TREE_CHAIN (decl);
1394 TREE_CHAIN (decl) = prev;
1395 prev = decl;
1397 return prev;
1400 /* Return a newly created TREE_LIST node whose
1401 purpose and value fields are PARM and VALUE. */
1403 tree
1404 build_tree_list_stat (tree parm, tree value MEM_STAT_DECL)
1406 tree t = make_node_stat (TREE_LIST PASS_MEM_STAT);
1407 TREE_PURPOSE (t) = parm;
1408 TREE_VALUE (t) = value;
1409 return t;
1412 /* Return a newly created TREE_LIST node whose
1413 purpose and value fields are PURPOSE and VALUE
1414 and whose TREE_CHAIN is CHAIN. */
1416 tree
1417 tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
1419 tree node;
1421 node = ggc_alloc_zone_pass_stat (sizeof (struct tree_list), &tree_zone);
1423 memset (node, 0, sizeof (struct tree_common));
1425 #ifdef GATHER_STATISTICS
1426 tree_node_counts[(int) x_kind]++;
1427 tree_node_sizes[(int) x_kind] += sizeof (struct tree_list);
1428 #endif
1430 TREE_SET_CODE (node, TREE_LIST);
1431 TREE_CHAIN (node) = chain;
1432 TREE_PURPOSE (node) = purpose;
1433 TREE_VALUE (node) = value;
1434 return node;
1438 /* Return the size nominally occupied by an object of type TYPE
1439 when it resides in memory. The value is measured in units of bytes,
1440 and its data type is that normally used for type sizes
1441 (which is the first type created by make_signed_type or
1442 make_unsigned_type). */
1444 tree
1445 size_in_bytes (tree type)
1447 tree t;
1449 if (type == error_mark_node)
1450 return integer_zero_node;
1452 type = TYPE_MAIN_VARIANT (type);
1453 t = TYPE_SIZE_UNIT (type);
1455 if (t == 0)
1457 lang_hooks.types.incomplete_type_error (NULL_TREE, type);
1458 return size_zero_node;
1461 if (TREE_CODE (t) == INTEGER_CST)
1462 t = force_fit_type (t, 0, false, false);
1464 return t;
1467 /* Return the size of TYPE (in bytes) as a wide integer
1468 or return -1 if the size can vary or is larger than an integer. */
1470 HOST_WIDE_INT
1471 int_size_in_bytes (tree type)
1473 tree t;
1475 if (type == error_mark_node)
1476 return 0;
1478 type = TYPE_MAIN_VARIANT (type);
1479 t = TYPE_SIZE_UNIT (type);
1480 if (t == 0
1481 || TREE_CODE (t) != INTEGER_CST
1482 || TREE_OVERFLOW (t)
1483 || TREE_INT_CST_HIGH (t) != 0
1484 /* If the result would appear negative, it's too big to represent. */
1485 || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
1486 return -1;
1488 return TREE_INT_CST_LOW (t);
1491 /* Return the bit position of FIELD, in bits from the start of the record.
1492 This is a tree of type bitsizetype. */
1494 tree
1495 bit_position (tree field)
1497 return bit_from_pos (DECL_FIELD_OFFSET (field),
1498 DECL_FIELD_BIT_OFFSET (field));
1501 /* Likewise, but return as an integer. It must be representable in
1502 that way (since it could be a signed value, we don't have the
1503 option of returning -1 like int_size_in_byte can. */
1505 HOST_WIDE_INT
1506 int_bit_position (tree field)
1508 return tree_low_cst (bit_position (field), 0);
1511 /* Return the byte position of FIELD, in bytes from the start of the record.
1512 This is a tree of type sizetype. */
1514 tree
1515 byte_position (tree field)
1517 return byte_from_pos (DECL_FIELD_OFFSET (field),
1518 DECL_FIELD_BIT_OFFSET (field));
1521 /* Likewise, but return as an integer. It must be representable in
1522 that way (since it could be a signed value, we don't have the
1523 option of returning -1 like int_size_in_byte can. */
1525 HOST_WIDE_INT
1526 int_byte_position (tree field)
1528 return tree_low_cst (byte_position (field), 0);
1531 /* Return the strictest alignment, in bits, that T is known to have. */
1533 unsigned int
1534 expr_align (tree t)
1536 unsigned int align0, align1;
1538 switch (TREE_CODE (t))
1540 case NOP_EXPR: case CONVERT_EXPR: case NON_LVALUE_EXPR:
1541 /* If we have conversions, we know that the alignment of the
1542 object must meet each of the alignments of the types. */
1543 align0 = expr_align (TREE_OPERAND (t, 0));
1544 align1 = TYPE_ALIGN (TREE_TYPE (t));
1545 return MAX (align0, align1);
1547 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
1548 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
1549 case CLEANUP_POINT_EXPR:
1550 /* These don't change the alignment of an object. */
1551 return expr_align (TREE_OPERAND (t, 0));
1553 case COND_EXPR:
1554 /* The best we can do is say that the alignment is the least aligned
1555 of the two arms. */
1556 align0 = expr_align (TREE_OPERAND (t, 1));
1557 align1 = expr_align (TREE_OPERAND (t, 2));
1558 return MIN (align0, align1);
1560 case LABEL_DECL: case CONST_DECL:
1561 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
1562 if (DECL_ALIGN (t) != 0)
1563 return DECL_ALIGN (t);
1564 break;
1566 case FUNCTION_DECL:
1567 return FUNCTION_BOUNDARY;
1569 default:
1570 break;
1573 /* Otherwise take the alignment from that of the type. */
1574 return TYPE_ALIGN (TREE_TYPE (t));
1577 /* Return, as a tree node, the number of elements for TYPE (which is an
1578 ARRAY_TYPE) minus one. This counts only elements of the top array. */
1580 tree
1581 array_type_nelts (tree type)
1583 tree index_type, min, max;
1585 /* If they did it with unspecified bounds, then we should have already
1586 given an error about it before we got here. */
1587 if (! TYPE_DOMAIN (type))
1588 return error_mark_node;
1590 index_type = TYPE_DOMAIN (type);
1591 min = TYPE_MIN_VALUE (index_type);
1592 max = TYPE_MAX_VALUE (index_type);
1594 return (integer_zerop (min)
1595 ? max
1596 : fold (build2 (MINUS_EXPR, TREE_TYPE (max), max, min)));
1599 /* If arg is static -- a reference to an object in static storage -- then
1600 return the object. This is not the same as the C meaning of `static'.
1601 If arg isn't static, return NULL. */
1603 tree
1604 staticp (tree arg)
1606 switch (TREE_CODE (arg))
1608 case FUNCTION_DECL:
1609 /* Nested functions are static, even though taking their address will
1610 involve a trampoline as we unnest the nested function and create
1611 the trampoline on the tree level. */
1612 return arg;
1614 case VAR_DECL:
1615 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
1616 && ! DECL_THREAD_LOCAL (arg)
1617 && ! DECL_NON_ADDR_CONST_P (arg)
1618 ? arg : NULL);
1620 case CONST_DECL:
1621 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
1622 ? arg : NULL);
1624 case CONSTRUCTOR:
1625 return TREE_STATIC (arg) ? arg : NULL;
1627 case LABEL_DECL:
1628 case STRING_CST:
1629 return arg;
1631 case COMPONENT_REF:
1632 /* If the thing being referenced is not a field, then it is
1633 something language specific. */
1634 if (TREE_CODE (TREE_OPERAND (arg, 1)) != FIELD_DECL)
1635 return (*lang_hooks.staticp) (arg);
1637 /* If we are referencing a bitfield, we can't evaluate an
1638 ADDR_EXPR at compile time and so it isn't a constant. */
1639 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
1640 return NULL;
1642 return staticp (TREE_OPERAND (arg, 0));
1644 case BIT_FIELD_REF:
1645 return NULL;
1647 case MISALIGNED_INDIRECT_REF:
1648 case ALIGN_INDIRECT_REF:
1649 case INDIRECT_REF:
1650 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
1652 case ARRAY_REF:
1653 case ARRAY_RANGE_REF:
1654 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
1655 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
1656 return staticp (TREE_OPERAND (arg, 0));
1657 else
1658 return false;
1660 default:
1661 if ((unsigned int) TREE_CODE (arg)
1662 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
1663 return lang_hooks.staticp (arg);
1664 else
1665 return NULL;
1669 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
1670 Do this to any expression which may be used in more than one place,
1671 but must be evaluated only once.
1673 Normally, expand_expr would reevaluate the expression each time.
1674 Calling save_expr produces something that is evaluated and recorded
1675 the first time expand_expr is called on it. Subsequent calls to
1676 expand_expr just reuse the recorded value.
1678 The call to expand_expr that generates code that actually computes
1679 the value is the first call *at compile time*. Subsequent calls
1680 *at compile time* generate code to use the saved value.
1681 This produces correct result provided that *at run time* control
1682 always flows through the insns made by the first expand_expr
1683 before reaching the other places where the save_expr was evaluated.
1684 You, the caller of save_expr, must make sure this is so.
1686 Constants, and certain read-only nodes, are returned with no
1687 SAVE_EXPR because that is safe. Expressions containing placeholders
1688 are not touched; see tree.def for an explanation of what these
1689 are used for. */
1691 tree
1692 save_expr (tree expr)
1694 tree t = fold (expr);
1695 tree inner;
1697 /* If the tree evaluates to a constant, then we don't want to hide that
1698 fact (i.e. this allows further folding, and direct checks for constants).
1699 However, a read-only object that has side effects cannot be bypassed.
1700 Since it is no problem to reevaluate literals, we just return the
1701 literal node. */
1702 inner = skip_simple_arithmetic (t);
1704 if (TREE_INVARIANT (inner)
1705 || (TREE_READONLY (inner) && ! TREE_SIDE_EFFECTS (inner))
1706 || TREE_CODE (inner) == SAVE_EXPR
1707 || TREE_CODE (inner) == ERROR_MARK)
1708 return t;
1710 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
1711 it means that the size or offset of some field of an object depends on
1712 the value within another field.
1714 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
1715 and some variable since it would then need to be both evaluated once and
1716 evaluated more than once. Front-ends must assure this case cannot
1717 happen by surrounding any such subexpressions in their own SAVE_EXPR
1718 and forcing evaluation at the proper time. */
1719 if (contains_placeholder_p (inner))
1720 return t;
1722 t = build1 (SAVE_EXPR, TREE_TYPE (expr), t);
1724 /* This expression might be placed ahead of a jump to ensure that the
1725 value was computed on both sides of the jump. So make sure it isn't
1726 eliminated as dead. */
1727 TREE_SIDE_EFFECTS (t) = 1;
1728 TREE_INVARIANT (t) = 1;
1729 return t;
1732 /* Look inside EXPR and into any simple arithmetic operations. Return
1733 the innermost non-arithmetic node. */
1735 tree
1736 skip_simple_arithmetic (tree expr)
1738 tree inner;
1740 /* We don't care about whether this can be used as an lvalue in this
1741 context. */
1742 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
1743 expr = TREE_OPERAND (expr, 0);
1745 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
1746 a constant, it will be more efficient to not make another SAVE_EXPR since
1747 it will allow better simplification and GCSE will be able to merge the
1748 computations if they actually occur. */
1749 inner = expr;
1750 while (1)
1752 if (UNARY_CLASS_P (inner))
1753 inner = TREE_OPERAND (inner, 0);
1754 else if (BINARY_CLASS_P (inner))
1756 if (TREE_INVARIANT (TREE_OPERAND (inner, 1)))
1757 inner = TREE_OPERAND (inner, 0);
1758 else if (TREE_INVARIANT (TREE_OPERAND (inner, 0)))
1759 inner = TREE_OPERAND (inner, 1);
1760 else
1761 break;
1763 else
1764 break;
1767 return inner;
1770 /* Return which tree structure is used by T. */
1772 enum tree_node_structure_enum
1773 tree_node_structure (tree t)
1775 enum tree_code code = TREE_CODE (t);
1777 switch (TREE_CODE_CLASS (code))
1779 case tcc_declaration:
1780 return TS_DECL;
1781 case tcc_type:
1782 return TS_TYPE;
1783 case tcc_reference:
1784 case tcc_comparison:
1785 case tcc_unary:
1786 case tcc_binary:
1787 case tcc_expression:
1788 case tcc_statement:
1789 return TS_EXP;
1790 default: /* tcc_constant and tcc_exceptional */
1791 break;
1793 switch (code)
1795 /* tcc_constant cases. */
1796 case INTEGER_CST: return TS_INT_CST;
1797 case REAL_CST: return TS_REAL_CST;
1798 case COMPLEX_CST: return TS_COMPLEX;
1799 case VECTOR_CST: return TS_VECTOR;
1800 case STRING_CST: return TS_STRING;
1801 /* tcc_exceptional cases. */
1802 case ERROR_MARK: return TS_COMMON;
1803 case IDENTIFIER_NODE: return TS_IDENTIFIER;
1804 case TREE_LIST: return TS_LIST;
1805 case TREE_VEC: return TS_VEC;
1806 case PHI_NODE: return TS_PHI_NODE;
1807 case SSA_NAME: return TS_SSA_NAME;
1808 case PLACEHOLDER_EXPR: return TS_COMMON;
1809 case STATEMENT_LIST: return TS_STATEMENT_LIST;
1810 case BLOCK: return TS_BLOCK;
1811 case TREE_BINFO: return TS_BINFO;
1812 case VALUE_HANDLE: return TS_VALUE_HANDLE;
1814 default:
1815 gcc_unreachable ();
1819 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
1820 or offset that depends on a field within a record. */
1822 bool
1823 contains_placeholder_p (tree exp)
1825 enum tree_code code;
1827 if (!exp)
1828 return 0;
1830 code = TREE_CODE (exp);
1831 if (code == PLACEHOLDER_EXPR)
1832 return 1;
1834 switch (TREE_CODE_CLASS (code))
1836 case tcc_reference:
1837 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
1838 position computations since they will be converted into a
1839 WITH_RECORD_EXPR involving the reference, which will assume
1840 here will be valid. */
1841 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
1843 case tcc_exceptional:
1844 if (code == TREE_LIST)
1845 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
1846 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
1847 break;
1849 case tcc_unary:
1850 case tcc_binary:
1851 case tcc_comparison:
1852 case tcc_expression:
1853 switch (code)
1855 case COMPOUND_EXPR:
1856 /* Ignoring the first operand isn't quite right, but works best. */
1857 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
1859 case COND_EXPR:
1860 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
1861 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
1862 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
1864 default:
1865 break;
1868 switch (TREE_CODE_LENGTH (code))
1870 case 1:
1871 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
1872 case 2:
1873 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
1874 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
1875 default:
1876 return 0;
1879 default:
1880 return 0;
1882 return 0;
1885 /* Return true if any part of the computation of TYPE involves a
1886 PLACEHOLDER_EXPR. This includes size, bounds, qualifiers
1887 (for QUAL_UNION_TYPE) and field positions. */
1889 static bool
1890 type_contains_placeholder_1 (tree type)
1892 /* If the size contains a placeholder or the parent type (component type in
1893 the case of arrays) type involves a placeholder, this type does. */
1894 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
1895 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
1896 || (TREE_TYPE (type) != 0
1897 && type_contains_placeholder_p (TREE_TYPE (type))))
1898 return true;
1900 /* Now do type-specific checks. Note that the last part of the check above
1901 greatly limits what we have to do below. */
1902 switch (TREE_CODE (type))
1904 case VOID_TYPE:
1905 case COMPLEX_TYPE:
1906 case ENUMERAL_TYPE:
1907 case BOOLEAN_TYPE:
1908 case CHAR_TYPE:
1909 case POINTER_TYPE:
1910 case OFFSET_TYPE:
1911 case REFERENCE_TYPE:
1912 case METHOD_TYPE:
1913 case FUNCTION_TYPE:
1914 case VECTOR_TYPE:
1915 return false;
1917 case INTEGER_TYPE:
1918 case REAL_TYPE:
1919 /* Here we just check the bounds. */
1920 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
1921 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
1923 case ARRAY_TYPE:
1924 /* We're already checked the component type (TREE_TYPE), so just check
1925 the index type. */
1926 return type_contains_placeholder_p (TYPE_DOMAIN (type));
1928 case RECORD_TYPE:
1929 case UNION_TYPE:
1930 case QUAL_UNION_TYPE:
1932 tree field;
1934 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1935 if (TREE_CODE (field) == FIELD_DECL
1936 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
1937 || (TREE_CODE (type) == QUAL_UNION_TYPE
1938 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
1939 || type_contains_placeholder_p (TREE_TYPE (field))))
1940 return true;
1942 return false;
1945 default:
1946 gcc_unreachable ();
1950 bool
1951 type_contains_placeholder_p (tree type)
1953 bool result;
1955 /* If the contains_placeholder_bits field has been initialized,
1956 then we know the answer. */
1957 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
1958 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
1960 /* Indicate that we've seen this type node, and the answer is false.
1961 This is what we want to return if we run into recursion via fields. */
1962 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
1964 /* Compute the real value. */
1965 result = type_contains_placeholder_1 (type);
1967 /* Store the real value. */
1968 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
1970 return result;
1973 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
1974 return a tree with all occurrences of references to F in a
1975 PLACEHOLDER_EXPR replaced by R. Note that we assume here that EXP
1976 contains only arithmetic expressions or a CALL_EXPR with a
1977 PLACEHOLDER_EXPR occurring only in its arglist. */
1979 tree
1980 substitute_in_expr (tree exp, tree f, tree r)
1982 enum tree_code code = TREE_CODE (exp);
1983 tree op0, op1, op2;
1984 tree new;
1985 tree inner;
1987 /* We handle TREE_LIST and COMPONENT_REF separately. */
1988 if (code == TREE_LIST)
1990 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
1991 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
1992 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
1993 return exp;
1995 return tree_cons (TREE_PURPOSE (exp), op1, op0);
1997 else if (code == COMPONENT_REF)
1999 /* If this expression is getting a value from a PLACEHOLDER_EXPR
2000 and it is the right field, replace it with R. */
2001 for (inner = TREE_OPERAND (exp, 0);
2002 REFERENCE_CLASS_P (inner);
2003 inner = TREE_OPERAND (inner, 0))
2005 if (TREE_CODE (inner) == PLACEHOLDER_EXPR
2006 && TREE_OPERAND (exp, 1) == f)
2007 return r;
2009 /* If this expression hasn't been completed let, leave it alone. */
2010 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && TREE_TYPE (inner) == 0)
2011 return exp;
2013 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2014 if (op0 == TREE_OPERAND (exp, 0))
2015 return exp;
2017 new = fold (build3 (COMPONENT_REF, TREE_TYPE (exp),
2018 op0, TREE_OPERAND (exp, 1), NULL_TREE));
2020 else
2021 switch (TREE_CODE_CLASS (code))
2023 case tcc_constant:
2024 case tcc_declaration:
2025 return exp;
2027 case tcc_exceptional:
2028 case tcc_unary:
2029 case tcc_binary:
2030 case tcc_comparison:
2031 case tcc_expression:
2032 case tcc_reference:
2033 switch (TREE_CODE_LENGTH (code))
2035 case 0:
2036 return exp;
2038 case 1:
2039 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2040 if (op0 == TREE_OPERAND (exp, 0))
2041 return exp;
2043 new = fold (build1 (code, TREE_TYPE (exp), op0));
2044 break;
2046 case 2:
2047 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2048 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
2050 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
2051 return exp;
2053 new = fold (build2 (code, TREE_TYPE (exp), op0, op1));
2054 break;
2056 case 3:
2057 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2058 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
2059 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
2061 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2062 && op2 == TREE_OPERAND (exp, 2))
2063 return exp;
2065 new = fold (build3 (code, TREE_TYPE (exp), op0, op1, op2));
2066 break;
2068 default:
2069 gcc_unreachable ();
2071 break;
2073 default:
2074 gcc_unreachable ();
2077 TREE_READONLY (new) = TREE_READONLY (exp);
2078 return new;
2081 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
2082 for it within OBJ, a tree that is an object or a chain of references. */
2084 tree
2085 substitute_placeholder_in_expr (tree exp, tree obj)
2087 enum tree_code code = TREE_CODE (exp);
2088 tree op0, op1, op2, op3;
2090 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
2091 in the chain of OBJ. */
2092 if (code == PLACEHOLDER_EXPR)
2094 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
2095 tree elt;
2097 for (elt = obj; elt != 0;
2098 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
2099 || TREE_CODE (elt) == COND_EXPR)
2100 ? TREE_OPERAND (elt, 1)
2101 : (REFERENCE_CLASS_P (elt)
2102 || UNARY_CLASS_P (elt)
2103 || BINARY_CLASS_P (elt)
2104 || EXPRESSION_CLASS_P (elt))
2105 ? TREE_OPERAND (elt, 0) : 0))
2106 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
2107 return elt;
2109 for (elt = obj; elt != 0;
2110 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
2111 || TREE_CODE (elt) == COND_EXPR)
2112 ? TREE_OPERAND (elt, 1)
2113 : (REFERENCE_CLASS_P (elt)
2114 || UNARY_CLASS_P (elt)
2115 || BINARY_CLASS_P (elt)
2116 || EXPRESSION_CLASS_P (elt))
2117 ? TREE_OPERAND (elt, 0) : 0))
2118 if (POINTER_TYPE_P (TREE_TYPE (elt))
2119 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
2120 == need_type))
2121 return fold (build1 (INDIRECT_REF, need_type, elt));
2123 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
2124 survives until RTL generation, there will be an error. */
2125 return exp;
2128 /* TREE_LIST is special because we need to look at TREE_VALUE
2129 and TREE_CHAIN, not TREE_OPERANDS. */
2130 else if (code == TREE_LIST)
2132 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
2133 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
2134 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
2135 return exp;
2137 return tree_cons (TREE_PURPOSE (exp), op1, op0);
2139 else
2140 switch (TREE_CODE_CLASS (code))
2142 case tcc_constant:
2143 case tcc_declaration:
2144 return exp;
2146 case tcc_exceptional:
2147 case tcc_unary:
2148 case tcc_binary:
2149 case tcc_comparison:
2150 case tcc_expression:
2151 case tcc_reference:
2152 case tcc_statement:
2153 switch (TREE_CODE_LENGTH (code))
2155 case 0:
2156 return exp;
2158 case 1:
2159 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2160 if (op0 == TREE_OPERAND (exp, 0))
2161 return exp;
2162 else
2163 return fold (build1 (code, TREE_TYPE (exp), op0));
2165 case 2:
2166 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2167 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
2169 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
2170 return exp;
2171 else
2172 return fold (build2 (code, TREE_TYPE (exp), op0, op1));
2174 case 3:
2175 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2176 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
2177 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
2179 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2180 && op2 == TREE_OPERAND (exp, 2))
2181 return exp;
2182 else
2183 return fold (build3 (code, TREE_TYPE (exp), op0, op1, op2));
2185 case 4:
2186 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
2187 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
2188 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
2189 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
2191 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2192 && op2 == TREE_OPERAND (exp, 2)
2193 && op3 == TREE_OPERAND (exp, 3))
2194 return exp;
2195 else
2196 return fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
2198 default:
2199 gcc_unreachable ();
2201 break;
2203 default:
2204 gcc_unreachable ();
2208 /* Stabilize a reference so that we can use it any number of times
2209 without causing its operands to be evaluated more than once.
2210 Returns the stabilized reference. This works by means of save_expr,
2211 so see the caveats in the comments about save_expr.
2213 Also allows conversion expressions whose operands are references.
2214 Any other kind of expression is returned unchanged. */
2216 tree
2217 stabilize_reference (tree ref)
2219 tree result;
2220 enum tree_code code = TREE_CODE (ref);
2222 switch (code)
2224 case VAR_DECL:
2225 case PARM_DECL:
2226 case RESULT_DECL:
2227 /* No action is needed in this case. */
2228 return ref;
2230 case NOP_EXPR:
2231 case CONVERT_EXPR:
2232 case FLOAT_EXPR:
2233 case FIX_TRUNC_EXPR:
2234 case FIX_FLOOR_EXPR:
2235 case FIX_ROUND_EXPR:
2236 case FIX_CEIL_EXPR:
2237 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
2238 break;
2240 case INDIRECT_REF:
2241 result = build_nt (INDIRECT_REF,
2242 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
2243 break;
2245 case COMPONENT_REF:
2246 result = build_nt (COMPONENT_REF,
2247 stabilize_reference (TREE_OPERAND (ref, 0)),
2248 TREE_OPERAND (ref, 1), NULL_TREE);
2249 break;
2251 case BIT_FIELD_REF:
2252 result = build_nt (BIT_FIELD_REF,
2253 stabilize_reference (TREE_OPERAND (ref, 0)),
2254 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2255 stabilize_reference_1 (TREE_OPERAND (ref, 2)));
2256 break;
2258 case ARRAY_REF:
2259 result = build_nt (ARRAY_REF,
2260 stabilize_reference (TREE_OPERAND (ref, 0)),
2261 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2262 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
2263 break;
2265 case ARRAY_RANGE_REF:
2266 result = build_nt (ARRAY_RANGE_REF,
2267 stabilize_reference (TREE_OPERAND (ref, 0)),
2268 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2269 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
2270 break;
2272 case COMPOUND_EXPR:
2273 /* We cannot wrap the first expression in a SAVE_EXPR, as then
2274 it wouldn't be ignored. This matters when dealing with
2275 volatiles. */
2276 return stabilize_reference_1 (ref);
2278 /* If arg isn't a kind of lvalue we recognize, make no change.
2279 Caller should recognize the error for an invalid lvalue. */
2280 default:
2281 return ref;
2283 case ERROR_MARK:
2284 return error_mark_node;
2287 TREE_TYPE (result) = TREE_TYPE (ref);
2288 TREE_READONLY (result) = TREE_READONLY (ref);
2289 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
2290 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
2292 return result;
2295 /* Subroutine of stabilize_reference; this is called for subtrees of
2296 references. Any expression with side-effects must be put in a SAVE_EXPR
2297 to ensure that it is only evaluated once.
2299 We don't put SAVE_EXPR nodes around everything, because assigning very
2300 simple expressions to temporaries causes us to miss good opportunities
2301 for optimizations. Among other things, the opportunity to fold in the
2302 addition of a constant into an addressing mode often gets lost, e.g.
2303 "y[i+1] += x;". In general, we take the approach that we should not make
2304 an assignment unless we are forced into it - i.e., that any non-side effect
2305 operator should be allowed, and that cse should take care of coalescing
2306 multiple utterances of the same expression should that prove fruitful. */
2308 tree
2309 stabilize_reference_1 (tree e)
2311 tree result;
2312 enum tree_code code = TREE_CODE (e);
2314 /* We cannot ignore const expressions because it might be a reference
2315 to a const array but whose index contains side-effects. But we can
2316 ignore things that are actual constant or that already have been
2317 handled by this function. */
2319 if (TREE_INVARIANT (e))
2320 return e;
2322 switch (TREE_CODE_CLASS (code))
2324 case tcc_exceptional:
2325 case tcc_type:
2326 case tcc_declaration:
2327 case tcc_comparison:
2328 case tcc_statement:
2329 case tcc_expression:
2330 case tcc_reference:
2331 /* If the expression has side-effects, then encase it in a SAVE_EXPR
2332 so that it will only be evaluated once. */
2333 /* The reference (r) and comparison (<) classes could be handled as
2334 below, but it is generally faster to only evaluate them once. */
2335 if (TREE_SIDE_EFFECTS (e))
2336 return save_expr (e);
2337 return e;
2339 case tcc_constant:
2340 /* Constants need no processing. In fact, we should never reach
2341 here. */
2342 return e;
2344 case tcc_binary:
2345 /* Division is slow and tends to be compiled with jumps,
2346 especially the division by powers of 2 that is often
2347 found inside of an array reference. So do it just once. */
2348 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
2349 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
2350 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
2351 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
2352 return save_expr (e);
2353 /* Recursively stabilize each operand. */
2354 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
2355 stabilize_reference_1 (TREE_OPERAND (e, 1)));
2356 break;
2358 case tcc_unary:
2359 /* Recursively stabilize each operand. */
2360 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
2361 break;
2363 default:
2364 gcc_unreachable ();
2367 TREE_TYPE (result) = TREE_TYPE (e);
2368 TREE_READONLY (result) = TREE_READONLY (e);
2369 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
2370 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
2371 TREE_INVARIANT (result) = 1;
2373 return result;
2376 /* Low-level constructors for expressions. */
2378 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
2379 TREE_INVARIANT, and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
2381 void
2382 recompute_tree_invarant_for_addr_expr (tree t)
2384 tree node;
2385 bool tc = true, ti = true, se = false;
2387 /* We started out assuming this address is both invariant and constant, but
2388 does not have side effects. Now go down any handled components and see if
2389 any of them involve offsets that are either non-constant or non-invariant.
2390 Also check for side-effects.
2392 ??? Note that this code makes no attempt to deal with the case where
2393 taking the address of something causes a copy due to misalignment. */
2395 #define UPDATE_TITCSE(NODE) \
2396 do { tree _node = (NODE); \
2397 if (_node && !TREE_INVARIANT (_node)) ti = false; \
2398 if (_node && !TREE_CONSTANT (_node)) tc = false; \
2399 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
2401 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
2402 node = TREE_OPERAND (node, 0))
2404 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
2405 array reference (probably made temporarily by the G++ front end),
2406 so ignore all the operands. */
2407 if ((TREE_CODE (node) == ARRAY_REF
2408 || TREE_CODE (node) == ARRAY_RANGE_REF)
2409 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
2411 UPDATE_TITCSE (TREE_OPERAND (node, 1));
2412 if (TREE_OPERAND (node, 2))
2413 UPDATE_TITCSE (TREE_OPERAND (node, 2));
2414 if (TREE_OPERAND (node, 3))
2415 UPDATE_TITCSE (TREE_OPERAND (node, 3));
2417 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
2418 FIELD_DECL, apparently. The G++ front end can put something else
2419 there, at least temporarily. */
2420 else if (TREE_CODE (node) == COMPONENT_REF
2421 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
2423 if (TREE_OPERAND (node, 2))
2424 UPDATE_TITCSE (TREE_OPERAND (node, 2));
2426 else if (TREE_CODE (node) == BIT_FIELD_REF)
2427 UPDATE_TITCSE (TREE_OPERAND (node, 2));
2430 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
2431 the address, since &(*a)->b is a form of addition. If it's a decl, it's
2432 invariant and constant if the decl is static. It's also invariant if it's
2433 a decl in the current function. Taking the address of a volatile variable
2434 is not volatile. If it's a constant, the address is both invariant and
2435 constant. Otherwise it's neither. */
2436 if (TREE_CODE (node) == INDIRECT_REF)
2437 UPDATE_TITCSE (TREE_OPERAND (node, 0));
2438 else if (DECL_P (node))
2440 if (staticp (node))
2442 else if (decl_function_context (node) == current_function_decl
2443 /* Addresses of thread-local variables are invariant. */
2444 || (TREE_CODE (node) == VAR_DECL && DECL_THREAD_LOCAL (node)))
2445 tc = false;
2446 else
2447 ti = tc = false;
2449 else if (CONSTANT_CLASS_P (node))
2451 else
2453 ti = tc = false;
2454 se |= TREE_SIDE_EFFECTS (node);
2457 TREE_CONSTANT (t) = tc;
2458 TREE_INVARIANT (t) = ti;
2459 TREE_SIDE_EFFECTS (t) = se;
2460 #undef UPDATE_TITCSE
2463 /* Build an expression of code CODE, data type TYPE, and operands as
2464 specified. Expressions and reference nodes can be created this way.
2465 Constants, decls, types and misc nodes cannot be.
2467 We define 5 non-variadic functions, from 0 to 4 arguments. This is
2468 enough for all extant tree codes. These functions can be called
2469 directly (preferably!), but can also be obtained via GCC preprocessor
2470 magic within the build macro. */
2472 tree
2473 build0_stat (enum tree_code code, tree tt MEM_STAT_DECL)
2475 tree t;
2477 gcc_assert (TREE_CODE_LENGTH (code) == 0);
2479 t = make_node_stat (code PASS_MEM_STAT);
2480 TREE_TYPE (t) = tt;
2482 return t;
2485 tree
2486 build1_stat (enum tree_code code, tree type, tree node MEM_STAT_DECL)
2488 int length = sizeof (struct tree_exp);
2489 #ifdef GATHER_STATISTICS
2490 tree_node_kind kind;
2491 #endif
2492 tree t;
2494 #ifdef GATHER_STATISTICS
2495 switch (TREE_CODE_CLASS (code))
2497 case tcc_statement: /* an expression with side effects */
2498 kind = s_kind;
2499 break;
2500 case tcc_reference: /* a reference */
2501 kind = r_kind;
2502 break;
2503 default:
2504 kind = e_kind;
2505 break;
2508 tree_node_counts[(int) kind]++;
2509 tree_node_sizes[(int) kind] += length;
2510 #endif
2512 gcc_assert (TREE_CODE_LENGTH (code) == 1);
2514 t = ggc_alloc_zone_pass_stat (length, &tree_zone);
2516 memset (t, 0, sizeof (struct tree_common));
2518 TREE_SET_CODE (t, code);
2520 TREE_TYPE (t) = type;
2521 #ifdef USE_MAPPED_LOCATION
2522 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
2523 #else
2524 SET_EXPR_LOCUS (t, NULL);
2525 #endif
2526 TREE_COMPLEXITY (t) = 0;
2527 TREE_OPERAND (t, 0) = node;
2528 TREE_BLOCK (t) = NULL_TREE;
2529 if (node && !TYPE_P (node))
2531 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
2532 TREE_READONLY (t) = TREE_READONLY (node);
2535 if (TREE_CODE_CLASS (code) == tcc_statement)
2536 TREE_SIDE_EFFECTS (t) = 1;
2537 else switch (code)
2539 case INIT_EXPR:
2540 case MODIFY_EXPR:
2541 case VA_ARG_EXPR:
2542 case PREDECREMENT_EXPR:
2543 case PREINCREMENT_EXPR:
2544 case POSTDECREMENT_EXPR:
2545 case POSTINCREMENT_EXPR:
2546 /* All of these have side-effects, no matter what their
2547 operands are. */
2548 TREE_SIDE_EFFECTS (t) = 1;
2549 TREE_READONLY (t) = 0;
2550 break;
2552 case MISALIGNED_INDIRECT_REF:
2553 case ALIGN_INDIRECT_REF:
2554 case INDIRECT_REF:
2555 /* Whether a dereference is readonly has nothing to do with whether
2556 its operand is readonly. */
2557 TREE_READONLY (t) = 0;
2558 break;
2560 case ADDR_EXPR:
2561 if (node)
2562 recompute_tree_invarant_for_addr_expr (t);
2563 break;
2565 default:
2566 if (TREE_CODE_CLASS (code) == tcc_unary
2567 && node && !TYPE_P (node)
2568 && TREE_CONSTANT (node))
2569 TREE_CONSTANT (t) = 1;
2570 if (TREE_CODE_CLASS (code) == tcc_unary
2571 && node && TREE_INVARIANT (node))
2572 TREE_INVARIANT (t) = 1;
2573 if (TREE_CODE_CLASS (code) == tcc_reference
2574 && node && TREE_THIS_VOLATILE (node))
2575 TREE_THIS_VOLATILE (t) = 1;
2576 break;
2579 return t;
2582 #define PROCESS_ARG(N) \
2583 do { \
2584 TREE_OPERAND (t, N) = arg##N; \
2585 if (arg##N &&!TYPE_P (arg##N)) \
2587 if (TREE_SIDE_EFFECTS (arg##N)) \
2588 side_effects = 1; \
2589 if (!TREE_READONLY (arg##N)) \
2590 read_only = 0; \
2591 if (!TREE_CONSTANT (arg##N)) \
2592 constant = 0; \
2593 if (!TREE_INVARIANT (arg##N)) \
2594 invariant = 0; \
2596 } while (0)
2598 tree
2599 build2_stat (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
2601 bool constant, read_only, side_effects, invariant;
2602 tree t;
2604 gcc_assert (TREE_CODE_LENGTH (code) == 2);
2606 t = make_node_stat (code PASS_MEM_STAT);
2607 TREE_TYPE (t) = tt;
2609 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
2610 result based on those same flags for the arguments. But if the
2611 arguments aren't really even `tree' expressions, we shouldn't be trying
2612 to do this. */
2614 /* Expressions without side effects may be constant if their
2615 arguments are as well. */
2616 constant = (TREE_CODE_CLASS (code) == tcc_comparison
2617 || TREE_CODE_CLASS (code) == tcc_binary);
2618 read_only = 1;
2619 side_effects = TREE_SIDE_EFFECTS (t);
2620 invariant = constant;
2622 PROCESS_ARG(0);
2623 PROCESS_ARG(1);
2625 TREE_READONLY (t) = read_only;
2626 TREE_CONSTANT (t) = constant;
2627 TREE_INVARIANT (t) = invariant;
2628 TREE_SIDE_EFFECTS (t) = side_effects;
2629 TREE_THIS_VOLATILE (t)
2630 = (TREE_CODE_CLASS (code) == tcc_reference
2631 && arg0 && TREE_THIS_VOLATILE (arg0));
2633 return t;
2636 tree
2637 build3_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
2638 tree arg2 MEM_STAT_DECL)
2640 bool constant, read_only, side_effects, invariant;
2641 tree t;
2643 gcc_assert (TREE_CODE_LENGTH (code) == 3);
2645 t = make_node_stat (code PASS_MEM_STAT);
2646 TREE_TYPE (t) = tt;
2648 side_effects = TREE_SIDE_EFFECTS (t);
2650 PROCESS_ARG(0);
2651 PROCESS_ARG(1);
2652 PROCESS_ARG(2);
2654 if (code == CALL_EXPR && !side_effects)
2656 tree node;
2657 int i;
2659 /* Calls have side-effects, except those to const or
2660 pure functions. */
2661 i = call_expr_flags (t);
2662 if (!(i & (ECF_CONST | ECF_PURE)))
2663 side_effects = 1;
2665 /* And even those have side-effects if their arguments do. */
2666 else for (node = arg1; node; node = TREE_CHAIN (node))
2667 if (TREE_SIDE_EFFECTS (TREE_VALUE (node)))
2669 side_effects = 1;
2670 break;
2674 TREE_SIDE_EFFECTS (t) = side_effects;
2675 TREE_THIS_VOLATILE (t)
2676 = (TREE_CODE_CLASS (code) == tcc_reference
2677 && arg0 && TREE_THIS_VOLATILE (arg0));
2679 return t;
2682 tree
2683 build4_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
2684 tree arg2, tree arg3 MEM_STAT_DECL)
2686 bool constant, read_only, side_effects, invariant;
2687 tree t;
2689 gcc_assert (TREE_CODE_LENGTH (code) == 4);
2691 t = make_node_stat (code PASS_MEM_STAT);
2692 TREE_TYPE (t) = tt;
2694 side_effects = TREE_SIDE_EFFECTS (t);
2696 PROCESS_ARG(0);
2697 PROCESS_ARG(1);
2698 PROCESS_ARG(2);
2699 PROCESS_ARG(3);
2701 TREE_SIDE_EFFECTS (t) = side_effects;
2702 TREE_THIS_VOLATILE (t)
2703 = (TREE_CODE_CLASS (code) == tcc_reference
2704 && arg0 && TREE_THIS_VOLATILE (arg0));
2706 return t;
2709 /* Backup definition for non-gcc build compilers. */
2711 tree
2712 (build) (enum tree_code code, tree tt, ...)
2714 tree t, arg0, arg1, arg2, arg3;
2715 int length = TREE_CODE_LENGTH (code);
2716 va_list p;
2718 va_start (p, tt);
2719 switch (length)
2721 case 0:
2722 t = build0 (code, tt);
2723 break;
2724 case 1:
2725 arg0 = va_arg (p, tree);
2726 t = build1 (code, tt, arg0);
2727 break;
2728 case 2:
2729 arg0 = va_arg (p, tree);
2730 arg1 = va_arg (p, tree);
2731 t = build2 (code, tt, arg0, arg1);
2732 break;
2733 case 3:
2734 arg0 = va_arg (p, tree);
2735 arg1 = va_arg (p, tree);
2736 arg2 = va_arg (p, tree);
2737 t = build3 (code, tt, arg0, arg1, arg2);
2738 break;
2739 case 4:
2740 arg0 = va_arg (p, tree);
2741 arg1 = va_arg (p, tree);
2742 arg2 = va_arg (p, tree);
2743 arg3 = va_arg (p, tree);
2744 t = build4 (code, tt, arg0, arg1, arg2, arg3);
2745 break;
2746 default:
2747 gcc_unreachable ();
2749 va_end (p);
2751 return t;
2754 /* Similar except don't specify the TREE_TYPE
2755 and leave the TREE_SIDE_EFFECTS as 0.
2756 It is permissible for arguments to be null,
2757 or even garbage if their values do not matter. */
2759 tree
2760 build_nt (enum tree_code code, ...)
2762 tree t;
2763 int length;
2764 int i;
2765 va_list p;
2767 va_start (p, code);
2769 t = make_node (code);
2770 length = TREE_CODE_LENGTH (code);
2772 for (i = 0; i < length; i++)
2773 TREE_OPERAND (t, i) = va_arg (p, tree);
2775 va_end (p);
2776 return t;
2779 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
2780 We do NOT enter this node in any sort of symbol table.
2782 layout_decl is used to set up the decl's storage layout.
2783 Other slots are initialized to 0 or null pointers. */
2785 tree
2786 build_decl_stat (enum tree_code code, tree name, tree type MEM_STAT_DECL)
2788 tree t;
2790 t = make_node_stat (code PASS_MEM_STAT);
2792 /* if (type == error_mark_node)
2793 type = integer_type_node; */
2794 /* That is not done, deliberately, so that having error_mark_node
2795 as the type can suppress useless errors in the use of this variable. */
2797 DECL_NAME (t) = name;
2798 TREE_TYPE (t) = type;
2800 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
2801 layout_decl (t, 0);
2802 else if (code == FUNCTION_DECL)
2803 DECL_MODE (t) = FUNCTION_MODE;
2805 /* Set default visibility to whatever the user supplied with
2806 visibility_specified depending on #pragma GCC visibility. */
2807 DECL_VISIBILITY (t) = default_visibility;
2808 DECL_VISIBILITY_SPECIFIED (t) = visibility_options.inpragma;
2810 return t;
2813 /* Builds and returns function declaration with NAME and TYPE. */
2815 tree
2816 build_fn_decl (const char *name, tree type)
2818 tree id = get_identifier (name);
2819 tree decl = build_decl (FUNCTION_DECL, id, type);
2821 DECL_EXTERNAL (decl) = 1;
2822 TREE_PUBLIC (decl) = 1;
2823 DECL_ARTIFICIAL (decl) = 1;
2824 TREE_NOTHROW (decl) = 1;
2826 return decl;
2830 /* BLOCK nodes are used to represent the structure of binding contours
2831 and declarations, once those contours have been exited and their contents
2832 compiled. This information is used for outputting debugging info. */
2834 tree
2835 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
2837 tree block = make_node (BLOCK);
2839 BLOCK_VARS (block) = vars;
2840 BLOCK_SUBBLOCKS (block) = subblocks;
2841 BLOCK_SUPERCONTEXT (block) = supercontext;
2842 BLOCK_CHAIN (block) = chain;
2843 return block;
2846 #if 1 /* ! defined(USE_MAPPED_LOCATION) */
2847 /* ??? gengtype doesn't handle conditionals */
2848 static GTY(()) tree last_annotated_node;
2849 #endif
2851 #ifdef USE_MAPPED_LOCATION
2853 expanded_location
2854 expand_location (source_location loc)
2856 expanded_location xloc;
2857 if (loc == 0) { xloc.file = NULL; xloc.line = 0; xloc.column = 0; }
2858 else
2860 const struct line_map *map = linemap_lookup (&line_table, loc);
2861 xloc.file = map->to_file;
2862 xloc.line = SOURCE_LINE (map, loc);
2863 xloc.column = SOURCE_COLUMN (map, loc);
2865 return xloc;
2868 #else
2870 /* Record the exact location where an expression or an identifier were
2871 encountered. */
2873 void
2874 annotate_with_file_line (tree node, const char *file, int line)
2876 /* Roughly one percent of the calls to this function are to annotate
2877 a node with the same information already attached to that node!
2878 Just return instead of wasting memory. */
2879 if (EXPR_LOCUS (node)
2880 && (EXPR_FILENAME (node) == file
2881 || ! strcmp (EXPR_FILENAME (node), file))
2882 && EXPR_LINENO (node) == line)
2884 last_annotated_node = node;
2885 return;
2888 /* In heavily macroized code (such as GCC itself) this single
2889 entry cache can reduce the number of allocations by more
2890 than half. */
2891 if (last_annotated_node
2892 && EXPR_LOCUS (last_annotated_node)
2893 && (EXPR_FILENAME (last_annotated_node) == file
2894 || ! strcmp (EXPR_FILENAME (last_annotated_node), file))
2895 && EXPR_LINENO (last_annotated_node) == line)
2897 SET_EXPR_LOCUS (node, EXPR_LOCUS (last_annotated_node));
2898 return;
2901 SET_EXPR_LOCUS (node, ggc_alloc (sizeof (location_t)));
2902 EXPR_LINENO (node) = line;
2903 EXPR_FILENAME (node) = file;
2904 last_annotated_node = node;
2907 void
2908 annotate_with_locus (tree node, location_t locus)
2910 annotate_with_file_line (node, locus.file, locus.line);
2912 #endif
2914 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
2915 is ATTRIBUTE. */
2917 tree
2918 build_decl_attribute_variant (tree ddecl, tree attribute)
2920 DECL_ATTRIBUTES (ddecl) = attribute;
2921 return ddecl;
2924 /* Borrowed from hashtab.c iterative_hash implementation. */
2925 #define mix(a,b,c) \
2927 a -= b; a -= c; a ^= (c>>13); \
2928 b -= c; b -= a; b ^= (a<< 8); \
2929 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
2930 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
2931 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
2932 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
2933 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
2934 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
2935 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
2939 /* Produce good hash value combining VAL and VAL2. */
2940 static inline hashval_t
2941 iterative_hash_hashval_t (hashval_t val, hashval_t val2)
2943 /* the golden ratio; an arbitrary value. */
2944 hashval_t a = 0x9e3779b9;
2946 mix (a, val, val2);
2947 return val2;
2950 /* Produce good hash value combining PTR and VAL2. */
2951 static inline hashval_t
2952 iterative_hash_pointer (void *ptr, hashval_t val2)
2954 if (sizeof (ptr) == sizeof (hashval_t))
2955 return iterative_hash_hashval_t ((size_t) ptr, val2);
2956 else
2958 hashval_t a = (hashval_t) (size_t) ptr;
2959 /* Avoid warnings about shifting of more than the width of the type on
2960 hosts that won't execute this path. */
2961 int zero = 0;
2962 hashval_t b = (hashval_t) ((size_t) ptr >> (sizeof (hashval_t) * 8 + zero));
2963 mix (a, b, val2);
2964 return val2;
2968 /* Produce good hash value combining VAL and VAL2. */
2969 static inline hashval_t
2970 iterative_hash_host_wide_int (HOST_WIDE_INT val, hashval_t val2)
2972 if (sizeof (HOST_WIDE_INT) == sizeof (hashval_t))
2973 return iterative_hash_hashval_t (val, val2);
2974 else
2976 hashval_t a = (hashval_t) val;
2977 /* Avoid warnings about shifting of more than the width of the type on
2978 hosts that won't execute this path. */
2979 int zero = 0;
2980 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 8 + zero));
2981 mix (a, b, val2);
2982 if (sizeof (HOST_WIDE_INT) > 2 * sizeof (hashval_t))
2984 hashval_t a = (hashval_t) (val >> (sizeof (hashval_t) * 16 + zero));
2985 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 24 + zero));
2986 mix (a, b, val2);
2988 return val2;
2992 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
2993 is ATTRIBUTE.
2995 Record such modified types already made so we don't make duplicates. */
2997 tree
2998 build_type_attribute_variant (tree ttype, tree attribute)
3000 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
3002 hashval_t hashcode = 0;
3003 tree ntype;
3004 enum tree_code code = TREE_CODE (ttype);
3006 ntype = copy_node (ttype);
3008 TYPE_POINTER_TO (ntype) = 0;
3009 TYPE_REFERENCE_TO (ntype) = 0;
3010 TYPE_ATTRIBUTES (ntype) = attribute;
3012 /* Create a new main variant of TYPE. */
3013 TYPE_MAIN_VARIANT (ntype) = ntype;
3014 TYPE_NEXT_VARIANT (ntype) = 0;
3015 set_type_quals (ntype, TYPE_UNQUALIFIED);
3017 hashcode = iterative_hash_object (code, hashcode);
3018 if (TREE_TYPE (ntype))
3019 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype)),
3020 hashcode);
3021 hashcode = attribute_hash_list (attribute, hashcode);
3023 switch (TREE_CODE (ntype))
3025 case FUNCTION_TYPE:
3026 hashcode = type_hash_list (TYPE_ARG_TYPES (ntype), hashcode);
3027 break;
3028 case ARRAY_TYPE:
3029 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype)),
3030 hashcode);
3031 break;
3032 case INTEGER_TYPE:
3033 hashcode = iterative_hash_object
3034 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype)), hashcode);
3035 hashcode = iterative_hash_object
3036 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype)), hashcode);
3037 break;
3038 case REAL_TYPE:
3040 unsigned int precision = TYPE_PRECISION (ntype);
3041 hashcode = iterative_hash_object (precision, hashcode);
3043 break;
3044 default:
3045 break;
3048 ntype = type_hash_canon (hashcode, ntype);
3049 ttype = build_qualified_type (ntype, TYPE_QUALS (ttype));
3052 return ttype;
3056 /* Return nonzero if IDENT is a valid name for attribute ATTR,
3057 or zero if not.
3059 We try both `text' and `__text__', ATTR may be either one. */
3060 /* ??? It might be a reasonable simplification to require ATTR to be only
3061 `text'. One might then also require attribute lists to be stored in
3062 their canonicalized form. */
3064 static int
3065 is_attribute_with_length_p (const char *attr, int attr_len, tree ident)
3067 int ident_len;
3068 const char *p;
3070 if (TREE_CODE (ident) != IDENTIFIER_NODE)
3071 return 0;
3073 p = IDENTIFIER_POINTER (ident);
3074 ident_len = IDENTIFIER_LENGTH (ident);
3076 if (ident_len == attr_len
3077 && strcmp (attr, p) == 0)
3078 return 1;
3080 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
3081 if (attr[0] == '_')
3083 gcc_assert (attr[1] == '_');
3084 gcc_assert (attr[attr_len - 2] == '_');
3085 gcc_assert (attr[attr_len - 1] == '_');
3086 gcc_assert (attr[1] == '_');
3087 if (ident_len == attr_len - 4
3088 && strncmp (attr + 2, p, attr_len - 4) == 0)
3089 return 1;
3091 else
3093 if (ident_len == attr_len + 4
3094 && p[0] == '_' && p[1] == '_'
3095 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
3096 && strncmp (attr, p + 2, attr_len) == 0)
3097 return 1;
3100 return 0;
3103 /* Return nonzero if IDENT is a valid name for attribute ATTR,
3104 or zero if not.
3106 We try both `text' and `__text__', ATTR may be either one. */
3109 is_attribute_p (const char *attr, tree ident)
3111 return is_attribute_with_length_p (attr, strlen (attr), ident);
3114 /* Given an attribute name and a list of attributes, return a pointer to the
3115 attribute's list element if the attribute is part of the list, or NULL_TREE
3116 if not found. If the attribute appears more than once, this only
3117 returns the first occurrence; the TREE_CHAIN of the return value should
3118 be passed back in if further occurrences are wanted. */
3120 tree
3121 lookup_attribute (const char *attr_name, tree list)
3123 tree l;
3124 size_t attr_len = strlen (attr_name);
3126 for (l = list; l; l = TREE_CHAIN (l))
3128 gcc_assert (TREE_CODE (TREE_PURPOSE (l)) == IDENTIFIER_NODE);
3129 if (is_attribute_with_length_p (attr_name, attr_len, TREE_PURPOSE (l)))
3130 return l;
3133 return NULL_TREE;
3136 /* Return an attribute list that is the union of a1 and a2. */
3138 tree
3139 merge_attributes (tree a1, tree a2)
3141 tree attributes;
3143 /* Either one unset? Take the set one. */
3145 if ((attributes = a1) == 0)
3146 attributes = a2;
3148 /* One that completely contains the other? Take it. */
3150 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
3152 if (attribute_list_contained (a2, a1))
3153 attributes = a2;
3154 else
3156 /* Pick the longest list, and hang on the other list. */
3158 if (list_length (a1) < list_length (a2))
3159 attributes = a2, a2 = a1;
3161 for (; a2 != 0; a2 = TREE_CHAIN (a2))
3163 tree a;
3164 for (a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
3165 attributes);
3166 a != NULL_TREE;
3167 a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
3168 TREE_CHAIN (a)))
3170 if (simple_cst_equal (TREE_VALUE (a), TREE_VALUE (a2)) == 1)
3171 break;
3173 if (a == NULL_TREE)
3175 a1 = copy_node (a2);
3176 TREE_CHAIN (a1) = attributes;
3177 attributes = a1;
3182 return attributes;
3185 /* Given types T1 and T2, merge their attributes and return
3186 the result. */
3188 tree
3189 merge_type_attributes (tree t1, tree t2)
3191 return merge_attributes (TYPE_ATTRIBUTES (t1),
3192 TYPE_ATTRIBUTES (t2));
3195 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
3196 the result. */
3198 tree
3199 merge_decl_attributes (tree olddecl, tree newdecl)
3201 return merge_attributes (DECL_ATTRIBUTES (olddecl),
3202 DECL_ATTRIBUTES (newdecl));
3205 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
3207 /* Specialization of merge_decl_attributes for various Windows targets.
3209 This handles the following situation:
3211 __declspec (dllimport) int foo;
3212 int foo;
3214 The second instance of `foo' nullifies the dllimport. */
3216 tree
3217 merge_dllimport_decl_attributes (tree old, tree new)
3219 tree a;
3220 int delete_dllimport_p;
3222 old = DECL_ATTRIBUTES (old);
3223 new = DECL_ATTRIBUTES (new);
3225 /* What we need to do here is remove from `old' dllimport if it doesn't
3226 appear in `new'. dllimport behaves like extern: if a declaration is
3227 marked dllimport and a definition appears later, then the object
3228 is not dllimport'd. */
3229 if (lookup_attribute ("dllimport", old) != NULL_TREE
3230 && lookup_attribute ("dllimport", new) == NULL_TREE)
3231 delete_dllimport_p = 1;
3232 else
3233 delete_dllimport_p = 0;
3235 a = merge_attributes (old, new);
3237 if (delete_dllimport_p)
3239 tree prev, t;
3241 /* Scan the list for dllimport and delete it. */
3242 for (prev = NULL_TREE, t = a; t; prev = t, t = TREE_CHAIN (t))
3244 if (is_attribute_p ("dllimport", TREE_PURPOSE (t)))
3246 if (prev == NULL_TREE)
3247 a = TREE_CHAIN (a);
3248 else
3249 TREE_CHAIN (prev) = TREE_CHAIN (t);
3250 break;
3255 return a;
3258 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
3259 struct attribute_spec.handler. */
3261 tree
3262 handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
3263 bool *no_add_attrs)
3265 tree node = *pnode;
3267 /* These attributes may apply to structure and union types being created,
3268 but otherwise should pass to the declaration involved. */
3269 if (!DECL_P (node))
3271 if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
3272 | (int) ATTR_FLAG_ARRAY_NEXT))
3274 *no_add_attrs = true;
3275 return tree_cons (name, args, NULL_TREE);
3277 if (TREE_CODE (node) != RECORD_TYPE && TREE_CODE (node) != UNION_TYPE)
3279 warning (0, "%qs attribute ignored", IDENTIFIER_POINTER (name));
3280 *no_add_attrs = true;
3283 return NULL_TREE;
3286 /* Report error on dllimport ambiguities seen now before they cause
3287 any damage. */
3288 if (is_attribute_p ("dllimport", name))
3290 /* Like MS, treat definition of dllimported variables and
3291 non-inlined functions on declaration as syntax errors. We
3292 allow the attribute for function definitions if declared
3293 inline. */
3294 if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node)
3295 && !DECL_DECLARED_INLINE_P (node))
3297 error ("%Jfunction %qD definition is marked dllimport.", node, node);
3298 *no_add_attrs = true;
3301 else if (TREE_CODE (node) == VAR_DECL)
3303 if (DECL_INITIAL (node))
3305 error ("%Jvariable %qD definition is marked dllimport.",
3306 node, node);
3307 *no_add_attrs = true;
3310 /* `extern' needn't be specified with dllimport.
3311 Specify `extern' now and hope for the best. Sigh. */
3312 DECL_EXTERNAL (node) = 1;
3313 /* Also, implicitly give dllimport'd variables declared within
3314 a function global scope, unless declared static. */
3315 if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
3316 TREE_PUBLIC (node) = 1;
3320 /* Report error if symbol is not accessible at global scope. */
3321 if (!TREE_PUBLIC (node)
3322 && (TREE_CODE (node) == VAR_DECL
3323 || TREE_CODE (node) == FUNCTION_DECL))
3325 error ("%Jexternal linkage required for symbol %qD because of "
3326 "%qs attribute.", node, node, IDENTIFIER_POINTER (name));
3327 *no_add_attrs = true;
3330 return NULL_TREE;
3333 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
3335 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
3336 of the various TYPE_QUAL values. */
3338 static void
3339 set_type_quals (tree type, int type_quals)
3341 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
3342 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
3343 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
3346 /* Returns true iff cand is equivalent to base with type_quals. */
3348 bool
3349 check_qualified_type (tree cand, tree base, int type_quals)
3351 return (TYPE_QUALS (cand) == type_quals
3352 && TYPE_NAME (cand) == TYPE_NAME (base)
3353 /* Apparently this is needed for Objective-C. */
3354 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
3355 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
3356 TYPE_ATTRIBUTES (base)));
3359 /* Return a version of the TYPE, qualified as indicated by the
3360 TYPE_QUALS, if one exists. If no qualified version exists yet,
3361 return NULL_TREE. */
3363 tree
3364 get_qualified_type (tree type, int type_quals)
3366 tree t;
3368 if (TYPE_QUALS (type) == type_quals)
3369 return type;
3371 /* Search the chain of variants to see if there is already one there just
3372 like the one we need to have. If so, use that existing one. We must
3373 preserve the TYPE_NAME, since there is code that depends on this. */
3374 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
3375 if (check_qualified_type (t, type, type_quals))
3376 return t;
3378 return NULL_TREE;
3381 /* Like get_qualified_type, but creates the type if it does not
3382 exist. This function never returns NULL_TREE. */
3384 tree
3385 build_qualified_type (tree type, int type_quals)
3387 tree t;
3389 /* See if we already have the appropriate qualified variant. */
3390 t = get_qualified_type (type, type_quals);
3392 /* If not, build it. */
3393 if (!t)
3395 t = build_variant_type_copy (type);
3396 set_type_quals (t, type_quals);
3399 return t;
3402 /* Create a new distinct copy of TYPE. The new type is made its own
3403 MAIN_VARIANT. */
3405 tree
3406 build_distinct_type_copy (tree type)
3408 tree t = copy_node (type);
3410 TYPE_POINTER_TO (t) = 0;
3411 TYPE_REFERENCE_TO (t) = 0;
3413 /* Make it its own variant. */
3414 TYPE_MAIN_VARIANT (t) = t;
3415 TYPE_NEXT_VARIANT (t) = 0;
3417 return t;
3420 /* Create a new variant of TYPE, equivalent but distinct.
3421 This is so the caller can modify it. */
3423 tree
3424 build_variant_type_copy (tree type)
3426 tree t, m = TYPE_MAIN_VARIANT (type);
3428 t = build_distinct_type_copy (type);
3430 /* Add the new type to the chain of variants of TYPE. */
3431 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
3432 TYPE_NEXT_VARIANT (m) = t;
3433 TYPE_MAIN_VARIANT (t) = m;
3435 return t;
3438 /* Hashing of types so that we don't make duplicates.
3439 The entry point is `type_hash_canon'. */
3441 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
3442 with types in the TREE_VALUE slots), by adding the hash codes
3443 of the individual types. */
3445 unsigned int
3446 type_hash_list (tree list, hashval_t hashcode)
3448 tree tail;
3450 for (tail = list; tail; tail = TREE_CHAIN (tail))
3451 if (TREE_VALUE (tail) != error_mark_node)
3452 hashcode = iterative_hash_object (TYPE_HASH (TREE_VALUE (tail)),
3453 hashcode);
3455 return hashcode;
3458 /* These are the Hashtable callback functions. */
3460 /* Returns true iff the types are equivalent. */
3462 static int
3463 type_hash_eq (const void *va, const void *vb)
3465 const struct type_hash *a = va, *b = vb;
3467 /* First test the things that are the same for all types. */
3468 if (a->hash != b->hash
3469 || TREE_CODE (a->type) != TREE_CODE (b->type)
3470 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
3471 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
3472 TYPE_ATTRIBUTES (b->type))
3473 || TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
3474 || TYPE_MODE (a->type) != TYPE_MODE (b->type))
3475 return 0;
3477 switch (TREE_CODE (a->type))
3479 case VOID_TYPE:
3480 case COMPLEX_TYPE:
3481 case POINTER_TYPE:
3482 case REFERENCE_TYPE:
3483 return 1;
3485 case VECTOR_TYPE:
3486 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
3488 case ENUMERAL_TYPE:
3489 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
3490 && !(TYPE_VALUES (a->type)
3491 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
3492 && TYPE_VALUES (b->type)
3493 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
3494 && type_list_equal (TYPE_VALUES (a->type),
3495 TYPE_VALUES (b->type))))
3496 return 0;
3498 /* ... fall through ... */
3500 case INTEGER_TYPE:
3501 case REAL_TYPE:
3502 case BOOLEAN_TYPE:
3503 case CHAR_TYPE:
3504 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
3505 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
3506 TYPE_MAX_VALUE (b->type)))
3507 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
3508 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
3509 TYPE_MIN_VALUE (b->type))));
3511 case OFFSET_TYPE:
3512 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
3514 case METHOD_TYPE:
3515 return (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
3516 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
3517 || (TYPE_ARG_TYPES (a->type)
3518 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
3519 && TYPE_ARG_TYPES (b->type)
3520 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
3521 && type_list_equal (TYPE_ARG_TYPES (a->type),
3522 TYPE_ARG_TYPES (b->type)))));
3524 case ARRAY_TYPE:
3525 return TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type);
3527 case RECORD_TYPE:
3528 case UNION_TYPE:
3529 case QUAL_UNION_TYPE:
3530 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
3531 || (TYPE_FIELDS (a->type)
3532 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
3533 && TYPE_FIELDS (b->type)
3534 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
3535 && type_list_equal (TYPE_FIELDS (a->type),
3536 TYPE_FIELDS (b->type))));
3538 case FUNCTION_TYPE:
3539 return (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
3540 || (TYPE_ARG_TYPES (a->type)
3541 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
3542 && TYPE_ARG_TYPES (b->type)
3543 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
3544 && type_list_equal (TYPE_ARG_TYPES (a->type),
3545 TYPE_ARG_TYPES (b->type))));
3547 default:
3548 return 0;
3552 /* Return the cached hash value. */
3554 static hashval_t
3555 type_hash_hash (const void *item)
3557 return ((const struct type_hash *) item)->hash;
3560 /* Look in the type hash table for a type isomorphic to TYPE.
3561 If one is found, return it. Otherwise return 0. */
3563 tree
3564 type_hash_lookup (hashval_t hashcode, tree type)
3566 struct type_hash *h, in;
3568 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
3569 must call that routine before comparing TYPE_ALIGNs. */
3570 layout_type (type);
3572 in.hash = hashcode;
3573 in.type = type;
3575 h = htab_find_with_hash (type_hash_table, &in, hashcode);
3576 if (h)
3577 return h->type;
3578 return NULL_TREE;
3581 /* Add an entry to the type-hash-table
3582 for a type TYPE whose hash code is HASHCODE. */
3584 void
3585 type_hash_add (hashval_t hashcode, tree type)
3587 struct type_hash *h;
3588 void **loc;
3590 h = ggc_alloc (sizeof (struct type_hash));
3591 h->hash = hashcode;
3592 h->type = type;
3593 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
3594 *(struct type_hash **) loc = h;
3597 /* Given TYPE, and HASHCODE its hash code, return the canonical
3598 object for an identical type if one already exists.
3599 Otherwise, return TYPE, and record it as the canonical object.
3601 To use this function, first create a type of the sort you want.
3602 Then compute its hash code from the fields of the type that
3603 make it different from other similar types.
3604 Then call this function and use the value. */
3606 tree
3607 type_hash_canon (unsigned int hashcode, tree type)
3609 tree t1;
3611 /* The hash table only contains main variants, so ensure that's what we're
3612 being passed. */
3613 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
3615 if (!lang_hooks.types.hash_types)
3616 return type;
3618 /* See if the type is in the hash table already. If so, return it.
3619 Otherwise, add the type. */
3620 t1 = type_hash_lookup (hashcode, type);
3621 if (t1 != 0)
3623 #ifdef GATHER_STATISTICS
3624 tree_node_counts[(int) t_kind]--;
3625 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type);
3626 #endif
3627 return t1;
3629 else
3631 type_hash_add (hashcode, type);
3632 return type;
3636 /* See if the data pointed to by the type hash table is marked. We consider
3637 it marked if the type is marked or if a debug type number or symbol
3638 table entry has been made for the type. This reduces the amount of
3639 debugging output and eliminates that dependency of the debug output on
3640 the number of garbage collections. */
3642 static int
3643 type_hash_marked_p (const void *p)
3645 tree type = ((struct type_hash *) p)->type;
3647 return ggc_marked_p (type) || TYPE_SYMTAB_POINTER (type);
3650 static void
3651 print_type_hash_statistics (void)
3653 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
3654 (long) htab_size (type_hash_table),
3655 (long) htab_elements (type_hash_table),
3656 htab_collisions (type_hash_table));
3659 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
3660 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
3661 by adding the hash codes of the individual attributes. */
3663 unsigned int
3664 attribute_hash_list (tree list, hashval_t hashcode)
3666 tree tail;
3668 for (tail = list; tail; tail = TREE_CHAIN (tail))
3669 /* ??? Do we want to add in TREE_VALUE too? */
3670 hashcode = iterative_hash_object
3671 (IDENTIFIER_HASH_VALUE (TREE_PURPOSE (tail)), hashcode);
3672 return hashcode;
3675 /* Given two lists of attributes, return true if list l2 is
3676 equivalent to l1. */
3679 attribute_list_equal (tree l1, tree l2)
3681 return attribute_list_contained (l1, l2)
3682 && attribute_list_contained (l2, l1);
3685 /* Given two lists of attributes, return true if list L2 is
3686 completely contained within L1. */
3687 /* ??? This would be faster if attribute names were stored in a canonicalized
3688 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
3689 must be used to show these elements are equivalent (which they are). */
3690 /* ??? It's not clear that attributes with arguments will always be handled
3691 correctly. */
3694 attribute_list_contained (tree l1, tree l2)
3696 tree t1, t2;
3698 /* First check the obvious, maybe the lists are identical. */
3699 if (l1 == l2)
3700 return 1;
3702 /* Maybe the lists are similar. */
3703 for (t1 = l1, t2 = l2;
3704 t1 != 0 && t2 != 0
3705 && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
3706 && TREE_VALUE (t1) == TREE_VALUE (t2);
3707 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2));
3709 /* Maybe the lists are equal. */
3710 if (t1 == 0 && t2 == 0)
3711 return 1;
3713 for (; t2 != 0; t2 = TREE_CHAIN (t2))
3715 tree attr;
3716 for (attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)), l1);
3717 attr != NULL_TREE;
3718 attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
3719 TREE_CHAIN (attr)))
3721 if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) == 1)
3722 break;
3725 if (attr == 0)
3726 return 0;
3728 if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) != 1)
3729 return 0;
3732 return 1;
3735 /* Given two lists of types
3736 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
3737 return 1 if the lists contain the same types in the same order.
3738 Also, the TREE_PURPOSEs must match. */
3741 type_list_equal (tree l1, tree l2)
3743 tree t1, t2;
3745 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
3746 if (TREE_VALUE (t1) != TREE_VALUE (t2)
3747 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
3748 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
3749 && (TREE_TYPE (TREE_PURPOSE (t1))
3750 == TREE_TYPE (TREE_PURPOSE (t2))))))
3751 return 0;
3753 return t1 == t2;
3756 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
3757 given by TYPE. If the argument list accepts variable arguments,
3758 then this function counts only the ordinary arguments. */
3761 type_num_arguments (tree type)
3763 int i = 0;
3764 tree t;
3766 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
3767 /* If the function does not take a variable number of arguments,
3768 the last element in the list will have type `void'. */
3769 if (VOID_TYPE_P (TREE_VALUE (t)))
3770 break;
3771 else
3772 ++i;
3774 return i;
3777 /* Nonzero if integer constants T1 and T2
3778 represent the same constant value. */
3781 tree_int_cst_equal (tree t1, tree t2)
3783 if (t1 == t2)
3784 return 1;
3786 if (t1 == 0 || t2 == 0)
3787 return 0;
3789 if (TREE_CODE (t1) == INTEGER_CST
3790 && TREE_CODE (t2) == INTEGER_CST
3791 && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
3792 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
3793 return 1;
3795 return 0;
3798 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
3799 The precise way of comparison depends on their data type. */
3802 tree_int_cst_lt (tree t1, tree t2)
3804 if (t1 == t2)
3805 return 0;
3807 if (TYPE_UNSIGNED (TREE_TYPE (t1)) != TYPE_UNSIGNED (TREE_TYPE (t2)))
3809 int t1_sgn = tree_int_cst_sgn (t1);
3810 int t2_sgn = tree_int_cst_sgn (t2);
3812 if (t1_sgn < t2_sgn)
3813 return 1;
3814 else if (t1_sgn > t2_sgn)
3815 return 0;
3816 /* Otherwise, both are non-negative, so we compare them as
3817 unsigned just in case one of them would overflow a signed
3818 type. */
3820 else if (!TYPE_UNSIGNED (TREE_TYPE (t1)))
3821 return INT_CST_LT (t1, t2);
3823 return INT_CST_LT_UNSIGNED (t1, t2);
3826 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
3829 tree_int_cst_compare (tree t1, tree t2)
3831 if (tree_int_cst_lt (t1, t2))
3832 return -1;
3833 else if (tree_int_cst_lt (t2, t1))
3834 return 1;
3835 else
3836 return 0;
3839 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
3840 the host. If POS is zero, the value can be represented in a single
3841 HOST_WIDE_INT. If POS is nonzero, the value must be positive and can
3842 be represented in a single unsigned HOST_WIDE_INT. */
3845 host_integerp (tree t, int pos)
3847 return (TREE_CODE (t) == INTEGER_CST
3848 && ! TREE_OVERFLOW (t)
3849 && ((TREE_INT_CST_HIGH (t) == 0
3850 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
3851 || (! pos && TREE_INT_CST_HIGH (t) == -1
3852 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0
3853 && !TYPE_UNSIGNED (TREE_TYPE (t)))
3854 || (pos && TREE_INT_CST_HIGH (t) == 0)));
3857 /* Return the HOST_WIDE_INT least significant bits of T if it is an
3858 INTEGER_CST and there is no overflow. POS is nonzero if the result must
3859 be positive. We must be able to satisfy the above conditions. */
3861 HOST_WIDE_INT
3862 tree_low_cst (tree t, int pos)
3864 gcc_assert (host_integerp (t, pos));
3865 return TREE_INT_CST_LOW (t);
3868 /* Return the most significant bit of the integer constant T. */
3871 tree_int_cst_msb (tree t)
3873 int prec;
3874 HOST_WIDE_INT h;
3875 unsigned HOST_WIDE_INT l;
3877 /* Note that using TYPE_PRECISION here is wrong. We care about the
3878 actual bits, not the (arbitrary) range of the type. */
3879 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t))) - 1;
3880 rshift_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t), prec,
3881 2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0);
3882 return (l & 1) == 1;
3885 /* Return an indication of the sign of the integer constant T.
3886 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
3887 Note that -1 will never be returned it T's type is unsigned. */
3890 tree_int_cst_sgn (tree t)
3892 if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
3893 return 0;
3894 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
3895 return 1;
3896 else if (TREE_INT_CST_HIGH (t) < 0)
3897 return -1;
3898 else
3899 return 1;
3902 /* Compare two constructor-element-type constants. Return 1 if the lists
3903 are known to be equal; otherwise return 0. */
3906 simple_cst_list_equal (tree l1, tree l2)
3908 while (l1 != NULL_TREE && l2 != NULL_TREE)
3910 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
3911 return 0;
3913 l1 = TREE_CHAIN (l1);
3914 l2 = TREE_CHAIN (l2);
3917 return l1 == l2;
3920 /* Return truthvalue of whether T1 is the same tree structure as T2.
3921 Return 1 if they are the same.
3922 Return 0 if they are understandably different.
3923 Return -1 if either contains tree structure not understood by
3924 this function. */
3927 simple_cst_equal (tree t1, tree t2)
3929 enum tree_code code1, code2;
3930 int cmp;
3931 int i;
3933 if (t1 == t2)
3934 return 1;
3935 if (t1 == 0 || t2 == 0)
3936 return 0;
3938 code1 = TREE_CODE (t1);
3939 code2 = TREE_CODE (t2);
3941 if (code1 == NOP_EXPR || code1 == CONVERT_EXPR || code1 == NON_LVALUE_EXPR)
3943 if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
3944 || code2 == NON_LVALUE_EXPR)
3945 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3946 else
3947 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
3950 else if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
3951 || code2 == NON_LVALUE_EXPR)
3952 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
3954 if (code1 != code2)
3955 return 0;
3957 switch (code1)
3959 case INTEGER_CST:
3960 return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
3961 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
3963 case REAL_CST:
3964 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
3966 case STRING_CST:
3967 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3968 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3969 TREE_STRING_LENGTH (t1)));
3971 case CONSTRUCTOR:
3972 return simple_cst_list_equal (CONSTRUCTOR_ELTS (t1),
3973 CONSTRUCTOR_ELTS (t2));
3975 case SAVE_EXPR:
3976 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3978 case CALL_EXPR:
3979 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3980 if (cmp <= 0)
3981 return cmp;
3982 return
3983 simple_cst_list_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
3985 case TARGET_EXPR:
3986 /* Special case: if either target is an unallocated VAR_DECL,
3987 it means that it's going to be unified with whatever the
3988 TARGET_EXPR is really supposed to initialize, so treat it
3989 as being equivalent to anything. */
3990 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
3991 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
3992 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
3993 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
3994 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
3995 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
3996 cmp = 1;
3997 else
3998 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4000 if (cmp <= 0)
4001 return cmp;
4003 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
4005 case WITH_CLEANUP_EXPR:
4006 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4007 if (cmp <= 0)
4008 return cmp;
4010 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
4012 case COMPONENT_REF:
4013 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
4014 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4016 return 0;
4018 case VAR_DECL:
4019 case PARM_DECL:
4020 case CONST_DECL:
4021 case FUNCTION_DECL:
4022 return 0;
4024 default:
4025 break;
4028 /* This general rule works for most tree codes. All exceptions should be
4029 handled above. If this is a language-specific tree code, we can't
4030 trust what might be in the operand, so say we don't know
4031 the situation. */
4032 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
4033 return -1;
4035 switch (TREE_CODE_CLASS (code1))
4037 case tcc_unary:
4038 case tcc_binary:
4039 case tcc_comparison:
4040 case tcc_expression:
4041 case tcc_reference:
4042 case tcc_statement:
4043 cmp = 1;
4044 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
4046 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
4047 if (cmp <= 0)
4048 return cmp;
4051 return cmp;
4053 default:
4054 return -1;
4058 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
4059 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
4060 than U, respectively. */
4063 compare_tree_int (tree t, unsigned HOST_WIDE_INT u)
4065 if (tree_int_cst_sgn (t) < 0)
4066 return -1;
4067 else if (TREE_INT_CST_HIGH (t) != 0)
4068 return 1;
4069 else if (TREE_INT_CST_LOW (t) == u)
4070 return 0;
4071 else if (TREE_INT_CST_LOW (t) < u)
4072 return -1;
4073 else
4074 return 1;
4077 /* Return true if CODE represents an associative tree code. Otherwise
4078 return false. */
4079 bool
4080 associative_tree_code (enum tree_code code)
4082 switch (code)
4084 case BIT_IOR_EXPR:
4085 case BIT_AND_EXPR:
4086 case BIT_XOR_EXPR:
4087 case PLUS_EXPR:
4088 case MULT_EXPR:
4089 case MIN_EXPR:
4090 case MAX_EXPR:
4091 return true;
4093 default:
4094 break;
4096 return false;
4099 /* Return true if CODE represents a commutative tree code. Otherwise
4100 return false. */
4101 bool
4102 commutative_tree_code (enum tree_code code)
4104 switch (code)
4106 case PLUS_EXPR:
4107 case MULT_EXPR:
4108 case MIN_EXPR:
4109 case MAX_EXPR:
4110 case BIT_IOR_EXPR:
4111 case BIT_XOR_EXPR:
4112 case BIT_AND_EXPR:
4113 case NE_EXPR:
4114 case EQ_EXPR:
4115 case UNORDERED_EXPR:
4116 case ORDERED_EXPR:
4117 case UNEQ_EXPR:
4118 case LTGT_EXPR:
4119 case TRUTH_AND_EXPR:
4120 case TRUTH_XOR_EXPR:
4121 case TRUTH_OR_EXPR:
4122 return true;
4124 default:
4125 break;
4127 return false;
4130 /* Generate a hash value for an expression. This can be used iteratively
4131 by passing a previous result as the "val" argument.
4133 This function is intended to produce the same hash for expressions which
4134 would compare equal using operand_equal_p. */
4136 hashval_t
4137 iterative_hash_expr (tree t, hashval_t val)
4139 int i;
4140 enum tree_code code;
4141 char class;
4143 if (t == NULL_TREE)
4144 return iterative_hash_pointer (t, val);
4146 code = TREE_CODE (t);
4148 switch (code)
4150 /* Alas, constants aren't shared, so we can't rely on pointer
4151 identity. */
4152 case INTEGER_CST:
4153 val = iterative_hash_host_wide_int (TREE_INT_CST_LOW (t), val);
4154 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t), val);
4155 case REAL_CST:
4157 unsigned int val2 = real_hash (TREE_REAL_CST_PTR (t));
4159 return iterative_hash_hashval_t (val2, val);
4161 case STRING_CST:
4162 return iterative_hash (TREE_STRING_POINTER (t),
4163 TREE_STRING_LENGTH (t), val);
4164 case COMPLEX_CST:
4165 val = iterative_hash_expr (TREE_REALPART (t), val);
4166 return iterative_hash_expr (TREE_IMAGPART (t), val);
4167 case VECTOR_CST:
4168 return iterative_hash_expr (TREE_VECTOR_CST_ELTS (t), val);
4170 case SSA_NAME:
4171 case VALUE_HANDLE:
4172 /* we can just compare by pointer. */
4173 return iterative_hash_pointer (t, val);
4175 case TREE_LIST:
4176 /* A list of expressions, for a CALL_EXPR or as the elements of a
4177 VECTOR_CST. */
4178 for (; t; t = TREE_CHAIN (t))
4179 val = iterative_hash_expr (TREE_VALUE (t), val);
4180 return val;
4181 case FUNCTION_DECL:
4182 /* When referring to a built-in FUNCTION_DECL, use the
4183 __builtin__ form. Otherwise nodes that compare equal
4184 according to operand_equal_p might get different
4185 hash codes. */
4186 if (DECL_BUILT_IN (t))
4188 val = iterative_hash_pointer (built_in_decls[DECL_FUNCTION_CODE (t)],
4189 val);
4190 return val;
4192 /* else FALL THROUGH */
4193 default:
4194 class = TREE_CODE_CLASS (code);
4196 if (class == tcc_declaration)
4198 /* Otherwise, we can just compare decls by pointer. */
4199 val = iterative_hash_pointer (t, val);
4201 else
4203 gcc_assert (IS_EXPR_CODE_CLASS (class));
4205 val = iterative_hash_object (code, val);
4207 /* Don't hash the type, that can lead to having nodes which
4208 compare equal according to operand_equal_p, but which
4209 have different hash codes. */
4210 if (code == NOP_EXPR
4211 || code == CONVERT_EXPR
4212 || code == NON_LVALUE_EXPR)
4214 /* Make sure to include signness in the hash computation. */
4215 val += TYPE_UNSIGNED (TREE_TYPE (t));
4216 val = iterative_hash_expr (TREE_OPERAND (t, 0), val);
4219 else if (commutative_tree_code (code))
4221 /* It's a commutative expression. We want to hash it the same
4222 however it appears. We do this by first hashing both operands
4223 and then rehashing based on the order of their independent
4224 hashes. */
4225 hashval_t one = iterative_hash_expr (TREE_OPERAND (t, 0), 0);
4226 hashval_t two = iterative_hash_expr (TREE_OPERAND (t, 1), 0);
4227 hashval_t t;
4229 if (one > two)
4230 t = one, one = two, two = t;
4232 val = iterative_hash_hashval_t (one, val);
4233 val = iterative_hash_hashval_t (two, val);
4235 else
4236 for (i = TREE_CODE_LENGTH (code) - 1; i >= 0; --i)
4237 val = iterative_hash_expr (TREE_OPERAND (t, i), val);
4239 return val;
4240 break;
4244 /* Constructors for pointer, array and function types.
4245 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
4246 constructed by language-dependent code, not here.) */
4248 /* Construct, lay out and return the type of pointers to TO_TYPE with
4249 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
4250 reference all of memory. If such a type has already been
4251 constructed, reuse it. */
4253 tree
4254 build_pointer_type_for_mode (tree to_type, enum machine_mode mode,
4255 bool can_alias_all)
4257 tree t;
4259 /* In some cases, languages will have things that aren't a POINTER_TYPE
4260 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
4261 In that case, return that type without regard to the rest of our
4262 operands.
4264 ??? This is a kludge, but consistent with the way this function has
4265 always operated and there doesn't seem to be a good way to avoid this
4266 at the moment. */
4267 if (TYPE_POINTER_TO (to_type) != 0
4268 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
4269 return TYPE_POINTER_TO (to_type);
4271 /* First, if we already have a type for pointers to TO_TYPE and it's
4272 the proper mode, use it. */
4273 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
4274 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
4275 return t;
4277 t = make_node (POINTER_TYPE);
4279 TREE_TYPE (t) = to_type;
4280 TYPE_MODE (t) = mode;
4281 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
4282 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
4283 TYPE_POINTER_TO (to_type) = t;
4285 /* Lay out the type. This function has many callers that are concerned
4286 with expression-construction, and this simplifies them all. */
4287 layout_type (t);
4289 return t;
4292 /* By default build pointers in ptr_mode. */
4294 tree
4295 build_pointer_type (tree to_type)
4297 return build_pointer_type_for_mode (to_type, ptr_mode, false);
4300 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
4302 tree
4303 build_reference_type_for_mode (tree to_type, enum machine_mode mode,
4304 bool can_alias_all)
4306 tree t;
4308 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
4309 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
4310 In that case, return that type without regard to the rest of our
4311 operands.
4313 ??? This is a kludge, but consistent with the way this function has
4314 always operated and there doesn't seem to be a good way to avoid this
4315 at the moment. */
4316 if (TYPE_REFERENCE_TO (to_type) != 0
4317 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
4318 return TYPE_REFERENCE_TO (to_type);
4320 /* First, if we already have a type for pointers to TO_TYPE and it's
4321 the proper mode, use it. */
4322 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
4323 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
4324 return t;
4326 t = make_node (REFERENCE_TYPE);
4328 TREE_TYPE (t) = to_type;
4329 TYPE_MODE (t) = mode;
4330 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
4331 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
4332 TYPE_REFERENCE_TO (to_type) = t;
4334 layout_type (t);
4336 return t;
4340 /* Build the node for the type of references-to-TO_TYPE by default
4341 in ptr_mode. */
4343 tree
4344 build_reference_type (tree to_type)
4346 return build_reference_type_for_mode (to_type, ptr_mode, false);
4349 /* Build a type that is compatible with t but has no cv quals anywhere
4350 in its type, thus
4352 const char *const *const * -> char ***. */
4354 tree
4355 build_type_no_quals (tree t)
4357 switch (TREE_CODE (t))
4359 case POINTER_TYPE:
4360 return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
4361 TYPE_MODE (t),
4362 TYPE_REF_CAN_ALIAS_ALL (t));
4363 case REFERENCE_TYPE:
4364 return
4365 build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
4366 TYPE_MODE (t),
4367 TYPE_REF_CAN_ALIAS_ALL (t));
4368 default:
4369 return TYPE_MAIN_VARIANT (t);
4373 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
4374 MAXVAL should be the maximum value in the domain
4375 (one less than the length of the array).
4377 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
4378 We don't enforce this limit, that is up to caller (e.g. language front end).
4379 The limit exists because the result is a signed type and we don't handle
4380 sizes that use more than one HOST_WIDE_INT. */
4382 tree
4383 build_index_type (tree maxval)
4385 tree itype = make_node (INTEGER_TYPE);
4387 TREE_TYPE (itype) = sizetype;
4388 TYPE_PRECISION (itype) = TYPE_PRECISION (sizetype);
4389 TYPE_MIN_VALUE (itype) = size_zero_node;
4390 TYPE_MAX_VALUE (itype) = fold_convert (sizetype, maxval);
4391 TYPE_MODE (itype) = TYPE_MODE (sizetype);
4392 TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
4393 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (sizetype);
4394 TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
4395 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (sizetype);
4397 if (host_integerp (maxval, 1))
4398 return type_hash_canon (tree_low_cst (maxval, 1), itype);
4399 else
4400 return itype;
4403 /* Builds a signed or unsigned integer type of precision PRECISION.
4404 Used for C bitfields whose precision does not match that of
4405 built-in target types. */
4406 tree
4407 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
4408 int unsignedp)
4410 tree itype = make_node (INTEGER_TYPE);
4412 TYPE_PRECISION (itype) = precision;
4414 if (unsignedp)
4415 fixup_unsigned_type (itype);
4416 else
4417 fixup_signed_type (itype);
4419 if (host_integerp (TYPE_MAX_VALUE (itype), 1))
4420 return type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype), 1), itype);
4422 return itype;
4425 /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
4426 ENUMERAL_TYPE, BOOLEAN_TYPE, or CHAR_TYPE), with
4427 low bound LOWVAL and high bound HIGHVAL.
4428 if TYPE==NULL_TREE, sizetype is used. */
4430 tree
4431 build_range_type (tree type, tree lowval, tree highval)
4433 tree itype = make_node (INTEGER_TYPE);
4435 TREE_TYPE (itype) = type;
4436 if (type == NULL_TREE)
4437 type = sizetype;
4439 TYPE_MIN_VALUE (itype) = convert (type, lowval);
4440 TYPE_MAX_VALUE (itype) = highval ? convert (type, highval) : NULL;
4442 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
4443 TYPE_MODE (itype) = TYPE_MODE (type);
4444 TYPE_SIZE (itype) = TYPE_SIZE (type);
4445 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
4446 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
4447 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
4449 if (host_integerp (lowval, 0) && highval != 0 && host_integerp (highval, 0))
4450 return type_hash_canon (tree_low_cst (highval, 0)
4451 - tree_low_cst (lowval, 0),
4452 itype);
4453 else
4454 return itype;
4457 /* Just like build_index_type, but takes lowval and highval instead
4458 of just highval (maxval). */
4460 tree
4461 build_index_2_type (tree lowval, tree highval)
4463 return build_range_type (sizetype, lowval, highval);
4466 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
4467 and number of elements specified by the range of values of INDEX_TYPE.
4468 If such a type has already been constructed, reuse it. */
4470 tree
4471 build_array_type (tree elt_type, tree index_type)
4473 tree t;
4474 hashval_t hashcode = 0;
4476 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
4478 error ("arrays of functions are not meaningful");
4479 elt_type = integer_type_node;
4482 t = make_node (ARRAY_TYPE);
4483 TREE_TYPE (t) = elt_type;
4484 TYPE_DOMAIN (t) = index_type;
4486 if (index_type == 0)
4488 layout_type (t);
4489 return t;
4492 hashcode = iterative_hash_object (TYPE_HASH (elt_type), hashcode);
4493 hashcode = iterative_hash_object (TYPE_HASH (index_type), hashcode);
4494 t = type_hash_canon (hashcode, t);
4496 if (!COMPLETE_TYPE_P (t))
4497 layout_type (t);
4498 return t;
4501 /* Return the TYPE of the elements comprising
4502 the innermost dimension of ARRAY. */
4504 tree
4505 get_inner_array_type (tree array)
4507 tree type = TREE_TYPE (array);
4509 while (TREE_CODE (type) == ARRAY_TYPE)
4510 type = TREE_TYPE (type);
4512 return type;
4515 /* Construct, lay out and return
4516 the type of functions returning type VALUE_TYPE
4517 given arguments of types ARG_TYPES.
4518 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
4519 are data type nodes for the arguments of the function.
4520 If such a type has already been constructed, reuse it. */
4522 tree
4523 build_function_type (tree value_type, tree arg_types)
4525 tree t;
4526 hashval_t hashcode = 0;
4528 if (TREE_CODE (value_type) == FUNCTION_TYPE)
4530 error ("function return type cannot be function");
4531 value_type = integer_type_node;
4534 /* Make a node of the sort we want. */
4535 t = make_node (FUNCTION_TYPE);
4536 TREE_TYPE (t) = value_type;
4537 TYPE_ARG_TYPES (t) = arg_types;
4539 /* If we already have such a type, use the old one. */
4540 hashcode = iterative_hash_object (TYPE_HASH (value_type), hashcode);
4541 hashcode = type_hash_list (arg_types, hashcode);
4542 t = type_hash_canon (hashcode, t);
4544 if (!COMPLETE_TYPE_P (t))
4545 layout_type (t);
4546 return t;
4549 /* Build a function type. The RETURN_TYPE is the type returned by the
4550 function. If additional arguments are provided, they are
4551 additional argument types. The list of argument types must always
4552 be terminated by NULL_TREE. */
4554 tree
4555 build_function_type_list (tree return_type, ...)
4557 tree t, args, last;
4558 va_list p;
4560 va_start (p, return_type);
4562 t = va_arg (p, tree);
4563 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (p, tree))
4564 args = tree_cons (NULL_TREE, t, args);
4566 if (args == NULL_TREE)
4567 args = void_list_node;
4568 else
4570 last = args;
4571 args = nreverse (args);
4572 TREE_CHAIN (last) = void_list_node;
4574 args = build_function_type (return_type, args);
4576 va_end (p);
4577 return args;
4580 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
4581 and ARGTYPES (a TREE_LIST) are the return type and arguments types
4582 for the method. An implicit additional parameter (of type
4583 pointer-to-BASETYPE) is added to the ARGTYPES. */
4585 tree
4586 build_method_type_directly (tree basetype,
4587 tree rettype,
4588 tree argtypes)
4590 tree t;
4591 tree ptype;
4592 int hashcode = 0;
4594 /* Make a node of the sort we want. */
4595 t = make_node (METHOD_TYPE);
4597 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
4598 TREE_TYPE (t) = rettype;
4599 ptype = build_pointer_type (basetype);
4601 /* The actual arglist for this function includes a "hidden" argument
4602 which is "this". Put it into the list of argument types. */
4603 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
4604 TYPE_ARG_TYPES (t) = argtypes;
4606 /* If we already have such a type, use the old one. */
4607 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
4608 hashcode = iterative_hash_object (TYPE_HASH (rettype), hashcode);
4609 hashcode = type_hash_list (argtypes, hashcode);
4610 t = type_hash_canon (hashcode, t);
4612 if (!COMPLETE_TYPE_P (t))
4613 layout_type (t);
4615 return t;
4618 /* Construct, lay out and return the type of methods belonging to class
4619 BASETYPE and whose arguments and values are described by TYPE.
4620 If that type exists already, reuse it.
4621 TYPE must be a FUNCTION_TYPE node. */
4623 tree
4624 build_method_type (tree basetype, tree type)
4626 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
4628 return build_method_type_directly (basetype,
4629 TREE_TYPE (type),
4630 TYPE_ARG_TYPES (type));
4633 /* Construct, lay out and return the type of offsets to a value
4634 of type TYPE, within an object of type BASETYPE.
4635 If a suitable offset type exists already, reuse it. */
4637 tree
4638 build_offset_type (tree basetype, tree type)
4640 tree t;
4641 hashval_t hashcode = 0;
4643 /* Make a node of the sort we want. */
4644 t = make_node (OFFSET_TYPE);
4646 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
4647 TREE_TYPE (t) = type;
4649 /* If we already have such a type, use the old one. */
4650 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
4651 hashcode = iterative_hash_object (TYPE_HASH (type), hashcode);
4652 t = type_hash_canon (hashcode, t);
4654 if (!COMPLETE_TYPE_P (t))
4655 layout_type (t);
4657 return t;
4660 /* Create a complex type whose components are COMPONENT_TYPE. */
4662 tree
4663 build_complex_type (tree component_type)
4665 tree t;
4666 hashval_t hashcode;
4668 /* Make a node of the sort we want. */
4669 t = make_node (COMPLEX_TYPE);
4671 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
4673 /* If we already have such a type, use the old one. */
4674 hashcode = iterative_hash_object (TYPE_HASH (component_type), 0);
4675 t = type_hash_canon (hashcode, t);
4677 if (!COMPLETE_TYPE_P (t))
4678 layout_type (t);
4680 /* If we are writing Dwarf2 output we need to create a name,
4681 since complex is a fundamental type. */
4682 if ((write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
4683 && ! TYPE_NAME (t))
4685 const char *name;
4686 if (component_type == char_type_node)
4687 name = "complex char";
4688 else if (component_type == signed_char_type_node)
4689 name = "complex signed char";
4690 else if (component_type == unsigned_char_type_node)
4691 name = "complex unsigned char";
4692 else if (component_type == short_integer_type_node)
4693 name = "complex short int";
4694 else if (component_type == short_unsigned_type_node)
4695 name = "complex short unsigned int";
4696 else if (component_type == integer_type_node)
4697 name = "complex int";
4698 else if (component_type == unsigned_type_node)
4699 name = "complex unsigned int";
4700 else if (component_type == long_integer_type_node)
4701 name = "complex long int";
4702 else if (component_type == long_unsigned_type_node)
4703 name = "complex long unsigned int";
4704 else if (component_type == long_long_integer_type_node)
4705 name = "complex long long int";
4706 else if (component_type == long_long_unsigned_type_node)
4707 name = "complex long long unsigned int";
4708 else
4709 name = 0;
4711 if (name != 0)
4712 TYPE_NAME (t) = get_identifier (name);
4715 return build_qualified_type (t, TYPE_QUALS (component_type));
4718 /* Return OP, stripped of any conversions to wider types as much as is safe.
4719 Converting the value back to OP's type makes a value equivalent to OP.
4721 If FOR_TYPE is nonzero, we return a value which, if converted to
4722 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
4724 If FOR_TYPE is nonzero, unaligned bit-field references may be changed to the
4725 narrowest type that can hold the value, even if they don't exactly fit.
4726 Otherwise, bit-field references are changed to a narrower type
4727 only if they can be fetched directly from memory in that type.
4729 OP must have integer, real or enumeral type. Pointers are not allowed!
4731 There are some cases where the obvious value we could return
4732 would regenerate to OP if converted to OP's type,
4733 but would not extend like OP to wider types.
4734 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
4735 For example, if OP is (unsigned short)(signed char)-1,
4736 we avoid returning (signed char)-1 if FOR_TYPE is int,
4737 even though extending that to an unsigned short would regenerate OP,
4738 since the result of extending (signed char)-1 to (int)
4739 is different from (int) OP. */
4741 tree
4742 get_unwidened (tree op, tree for_type)
4744 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
4745 tree type = TREE_TYPE (op);
4746 unsigned final_prec
4747 = TYPE_PRECISION (for_type != 0 ? for_type : type);
4748 int uns
4749 = (for_type != 0 && for_type != type
4750 && final_prec > TYPE_PRECISION (type)
4751 && TYPE_UNSIGNED (type));
4752 tree win = op;
4754 while (TREE_CODE (op) == NOP_EXPR
4755 || TREE_CODE (op) == CONVERT_EXPR)
4757 int bitschange
4758 = TYPE_PRECISION (TREE_TYPE (op))
4759 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
4761 /* Truncations are many-one so cannot be removed.
4762 Unless we are later going to truncate down even farther. */
4763 if (bitschange < 0
4764 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
4765 break;
4767 /* See what's inside this conversion. If we decide to strip it,
4768 we will set WIN. */
4769 op = TREE_OPERAND (op, 0);
4771 /* If we have not stripped any zero-extensions (uns is 0),
4772 we can strip any kind of extension.
4773 If we have previously stripped a zero-extension,
4774 only zero-extensions can safely be stripped.
4775 Any extension can be stripped if the bits it would produce
4776 are all going to be discarded later by truncating to FOR_TYPE. */
4778 if (bitschange > 0)
4780 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
4781 win = op;
4782 /* TYPE_UNSIGNED says whether this is a zero-extension.
4783 Let's avoid computing it if it does not affect WIN
4784 and if UNS will not be needed again. */
4785 if ((uns
4786 || TREE_CODE (op) == NOP_EXPR
4787 || TREE_CODE (op) == CONVERT_EXPR)
4788 && TYPE_UNSIGNED (TREE_TYPE (op)))
4790 uns = 1;
4791 win = op;
4796 if (TREE_CODE (op) == COMPONENT_REF
4797 /* Since type_for_size always gives an integer type. */
4798 && TREE_CODE (type) != REAL_TYPE
4799 /* Don't crash if field not laid out yet. */
4800 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
4801 && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
4803 unsigned int innerprec
4804 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
4805 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
4806 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
4807 type = lang_hooks.types.type_for_size (innerprec, unsignedp);
4809 /* We can get this structure field in the narrowest type it fits in.
4810 If FOR_TYPE is 0, do this only for a field that matches the
4811 narrower type exactly and is aligned for it
4812 The resulting extension to its nominal type (a fullword type)
4813 must fit the same conditions as for other extensions. */
4815 if (type != 0
4816 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type), TYPE_SIZE (TREE_TYPE (op)))
4817 && (for_type || ! DECL_BIT_FIELD (TREE_OPERAND (op, 1)))
4818 && (! uns || final_prec <= innerprec || unsignedp))
4820 win = build3 (COMPONENT_REF, type, TREE_OPERAND (op, 0),
4821 TREE_OPERAND (op, 1), NULL_TREE);
4822 TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
4823 TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
4827 return win;
4830 /* Return OP or a simpler expression for a narrower value
4831 which can be sign-extended or zero-extended to give back OP.
4832 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
4833 or 0 if the value should be sign-extended. */
4835 tree
4836 get_narrower (tree op, int *unsignedp_ptr)
4838 int uns = 0;
4839 int first = 1;
4840 tree win = op;
4841 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
4843 while (TREE_CODE (op) == NOP_EXPR)
4845 int bitschange
4846 = (TYPE_PRECISION (TREE_TYPE (op))
4847 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
4849 /* Truncations are many-one so cannot be removed. */
4850 if (bitschange < 0)
4851 break;
4853 /* See what's inside this conversion. If we decide to strip it,
4854 we will set WIN. */
4856 if (bitschange > 0)
4858 op = TREE_OPERAND (op, 0);
4859 /* An extension: the outermost one can be stripped,
4860 but remember whether it is zero or sign extension. */
4861 if (first)
4862 uns = TYPE_UNSIGNED (TREE_TYPE (op));
4863 /* Otherwise, if a sign extension has been stripped,
4864 only sign extensions can now be stripped;
4865 if a zero extension has been stripped, only zero-extensions. */
4866 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
4867 break;
4868 first = 0;
4870 else /* bitschange == 0 */
4872 /* A change in nominal type can always be stripped, but we must
4873 preserve the unsignedness. */
4874 if (first)
4875 uns = TYPE_UNSIGNED (TREE_TYPE (op));
4876 first = 0;
4877 op = TREE_OPERAND (op, 0);
4878 /* Keep trying to narrow, but don't assign op to win if it
4879 would turn an integral type into something else. */
4880 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
4881 continue;
4884 win = op;
4887 if (TREE_CODE (op) == COMPONENT_REF
4888 /* Since type_for_size always gives an integer type. */
4889 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
4890 /* Ensure field is laid out already. */
4891 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
4892 && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
4894 unsigned HOST_WIDE_INT innerprec
4895 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
4896 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
4897 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
4898 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
4900 /* We can get this structure field in a narrower type that fits it,
4901 but the resulting extension to its nominal type (a fullword type)
4902 must satisfy the same conditions as for other extensions.
4904 Do this only for fields that are aligned (not bit-fields),
4905 because when bit-field insns will be used there is no
4906 advantage in doing this. */
4908 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
4909 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
4910 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
4911 && type != 0)
4913 if (first)
4914 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
4915 win = build3 (COMPONENT_REF, type, TREE_OPERAND (op, 0),
4916 TREE_OPERAND (op, 1), NULL_TREE);
4917 TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
4918 TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
4921 *unsignedp_ptr = uns;
4922 return win;
4925 /* Nonzero if integer constant C has a value that is permissible
4926 for type TYPE (an INTEGER_TYPE). */
4929 int_fits_type_p (tree c, tree type)
4931 tree type_low_bound = TYPE_MIN_VALUE (type);
4932 tree type_high_bound = TYPE_MAX_VALUE (type);
4933 bool ok_for_low_bound, ok_for_high_bound;
4934 tree tmp;
4936 /* If at least one bound of the type is a constant integer, we can check
4937 ourselves and maybe make a decision. If no such decision is possible, but
4938 this type is a subtype, try checking against that. Otherwise, use
4939 force_fit_type, which checks against the precision.
4941 Compute the status for each possibly constant bound, and return if we see
4942 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
4943 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
4944 for "constant known to fit". */
4946 /* Check if C >= type_low_bound. */
4947 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
4949 if (tree_int_cst_lt (c, type_low_bound))
4950 return 0;
4951 ok_for_low_bound = true;
4953 else
4954 ok_for_low_bound = false;
4956 /* Check if c <= type_high_bound. */
4957 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
4959 if (tree_int_cst_lt (type_high_bound, c))
4960 return 0;
4961 ok_for_high_bound = true;
4963 else
4964 ok_for_high_bound = false;
4966 /* If the constant fits both bounds, the result is known. */
4967 if (ok_for_low_bound && ok_for_high_bound)
4968 return 1;
4970 /* Perform some generic filtering which may allow making a decision
4971 even if the bounds are not constant. First, negative integers
4972 never fit in unsigned types, */
4973 if (TYPE_UNSIGNED (type) && tree_int_cst_sgn (c) < 0)
4974 return 0;
4976 /* Second, narrower types always fit in wider ones. */
4977 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
4978 return 1;
4980 /* Third, unsigned integers with top bit set never fit signed types. */
4981 if (! TYPE_UNSIGNED (type)
4982 && TYPE_UNSIGNED (TREE_TYPE (c))
4983 && tree_int_cst_msb (c))
4984 return 0;
4986 /* If we haven't been able to decide at this point, there nothing more we
4987 can check ourselves here. Look at the base type if we have one. */
4988 if (TREE_CODE (type) == INTEGER_TYPE && TREE_TYPE (type) != 0)
4989 return int_fits_type_p (c, TREE_TYPE (type));
4991 /* Or to force_fit_type, if nothing else. */
4992 tmp = copy_node (c);
4993 TREE_TYPE (tmp) = type;
4994 tmp = force_fit_type (tmp, -1, false, false);
4995 return TREE_INT_CST_HIGH (tmp) == TREE_INT_CST_HIGH (c)
4996 && TREE_INT_CST_LOW (tmp) == TREE_INT_CST_LOW (c);
4999 /* Subprogram of following function. Called by walk_tree.
5001 Return *TP if it is an automatic variable or parameter of the
5002 function passed in as DATA. */
5004 static tree
5005 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
5007 tree fn = (tree) data;
5009 if (TYPE_P (*tp))
5010 *walk_subtrees = 0;
5012 else if (DECL_P (*tp)
5013 && lang_hooks.tree_inlining.auto_var_in_fn_p (*tp, fn))
5014 return *tp;
5016 return NULL_TREE;
5019 /* Returns true if T is, contains, or refers to a type with variable
5020 size. If FN is nonzero, only return true if a modifier of the type
5021 or position of FN is a variable or parameter inside FN.
5023 This concept is more general than that of C99 'variably modified types':
5024 in C99, a struct type is never variably modified because a VLA may not
5025 appear as a structure member. However, in GNU C code like:
5027 struct S { int i[f()]; };
5029 is valid, and other languages may define similar constructs. */
5031 bool
5032 variably_modified_type_p (tree type, tree fn)
5034 tree t;
5036 /* Test if T is either variable (if FN is zero) or an expression containing
5037 a variable in FN. */
5038 #define RETURN_TRUE_IF_VAR(T) \
5039 do { tree _t = (T); \
5040 if (_t && _t != error_mark_node && TREE_CODE (_t) != INTEGER_CST \
5041 && (!fn || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
5042 return true; } while (0)
5044 if (type == error_mark_node)
5045 return false;
5047 /* If TYPE itself has variable size, it is variably modified.
5049 We do not yet have a representation of the C99 '[*]' syntax.
5050 When a representation is chosen, this function should be modified
5051 to test for that case as well. */
5052 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
5053 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT(type));
5055 switch (TREE_CODE (type))
5057 case POINTER_TYPE:
5058 case REFERENCE_TYPE:
5059 case ARRAY_TYPE:
5060 case VECTOR_TYPE:
5061 if (variably_modified_type_p (TREE_TYPE (type), fn))
5062 return true;
5063 break;
5065 case FUNCTION_TYPE:
5066 case METHOD_TYPE:
5067 /* If TYPE is a function type, it is variably modified if any of the
5068 parameters or the return type are variably modified. */
5069 if (variably_modified_type_p (TREE_TYPE (type), fn))
5070 return true;
5072 for (t = TYPE_ARG_TYPES (type);
5073 t && t != void_list_node;
5074 t = TREE_CHAIN (t))
5075 if (variably_modified_type_p (TREE_VALUE (t), fn))
5076 return true;
5077 break;
5079 case INTEGER_TYPE:
5080 case REAL_TYPE:
5081 case ENUMERAL_TYPE:
5082 case BOOLEAN_TYPE:
5083 case CHAR_TYPE:
5084 /* Scalar types are variably modified if their end points
5085 aren't constant. */
5086 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
5087 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
5088 break;
5090 case RECORD_TYPE:
5091 case UNION_TYPE:
5092 case QUAL_UNION_TYPE:
5093 /* We can't see if any of the field are variably-modified by the
5094 definition we normally use, since that would produce infinite
5095 recursion via pointers. */
5096 /* This is variably modified if some field's type is. */
5097 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
5098 if (TREE_CODE (t) == FIELD_DECL)
5100 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
5101 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
5102 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
5104 if (TREE_CODE (type) == QUAL_UNION_TYPE)
5105 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
5107 break;
5109 default:
5110 break;
5113 /* The current language may have other cases to check, but in general,
5114 all other types are not variably modified. */
5115 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
5117 #undef RETURN_TRUE_IF_VAR
5120 /* Given a DECL or TYPE, return the scope in which it was declared, or
5121 NULL_TREE if there is no containing scope. */
5123 tree
5124 get_containing_scope (tree t)
5126 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
5129 /* Return the innermost context enclosing DECL that is
5130 a FUNCTION_DECL, or zero if none. */
5132 tree
5133 decl_function_context (tree decl)
5135 tree context;
5137 if (TREE_CODE (decl) == ERROR_MARK)
5138 return 0;
5140 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
5141 where we look up the function at runtime. Such functions always take
5142 a first argument of type 'pointer to real context'.
5144 C++ should really be fixed to use DECL_CONTEXT for the real context,
5145 and use something else for the "virtual context". */
5146 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
5147 context
5148 = TYPE_MAIN_VARIANT
5149 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
5150 else
5151 context = DECL_CONTEXT (decl);
5153 while (context && TREE_CODE (context) != FUNCTION_DECL)
5155 if (TREE_CODE (context) == BLOCK)
5156 context = BLOCK_SUPERCONTEXT (context);
5157 else
5158 context = get_containing_scope (context);
5161 return context;
5164 /* Return the innermost context enclosing DECL that is
5165 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
5166 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
5168 tree
5169 decl_type_context (tree decl)
5171 tree context = DECL_CONTEXT (decl);
5173 while (context)
5174 switch (TREE_CODE (context))
5176 case NAMESPACE_DECL:
5177 case TRANSLATION_UNIT_DECL:
5178 return NULL_TREE;
5180 case RECORD_TYPE:
5181 case UNION_TYPE:
5182 case QUAL_UNION_TYPE:
5183 return context;
5185 case TYPE_DECL:
5186 case FUNCTION_DECL:
5187 context = DECL_CONTEXT (context);
5188 break;
5190 case BLOCK:
5191 context = BLOCK_SUPERCONTEXT (context);
5192 break;
5194 default:
5195 gcc_unreachable ();
5198 return NULL_TREE;
5201 /* CALL is a CALL_EXPR. Return the declaration for the function
5202 called, or NULL_TREE if the called function cannot be
5203 determined. */
5205 tree
5206 get_callee_fndecl (tree call)
5208 tree addr;
5210 /* It's invalid to call this function with anything but a
5211 CALL_EXPR. */
5212 gcc_assert (TREE_CODE (call) == CALL_EXPR);
5214 /* The first operand to the CALL is the address of the function
5215 called. */
5216 addr = TREE_OPERAND (call, 0);
5218 STRIP_NOPS (addr);
5220 /* If this is a readonly function pointer, extract its initial value. */
5221 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
5222 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
5223 && DECL_INITIAL (addr))
5224 addr = DECL_INITIAL (addr);
5226 /* If the address is just `&f' for some function `f', then we know
5227 that `f' is being called. */
5228 if (TREE_CODE (addr) == ADDR_EXPR
5229 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
5230 return TREE_OPERAND (addr, 0);
5232 /* We couldn't figure out what was being called. Maybe the front
5233 end has some idea. */
5234 return lang_hooks.lang_get_callee_fndecl (call);
5237 /* Print debugging information about tree nodes generated during the compile,
5238 and any language-specific information. */
5240 void
5241 dump_tree_statistics (void)
5243 #ifdef GATHER_STATISTICS
5244 int i;
5245 int total_nodes, total_bytes;
5246 #endif
5248 fprintf (stderr, "\n??? tree nodes created\n\n");
5249 #ifdef GATHER_STATISTICS
5250 fprintf (stderr, "Kind Nodes Bytes\n");
5251 fprintf (stderr, "---------------------------------------\n");
5252 total_nodes = total_bytes = 0;
5253 for (i = 0; i < (int) all_kinds; i++)
5255 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
5256 tree_node_counts[i], tree_node_sizes[i]);
5257 total_nodes += tree_node_counts[i];
5258 total_bytes += tree_node_sizes[i];
5260 fprintf (stderr, "---------------------------------------\n");
5261 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
5262 fprintf (stderr, "---------------------------------------\n");
5263 ssanames_print_statistics ();
5264 phinodes_print_statistics ();
5265 #else
5266 fprintf (stderr, "(No per-node statistics)\n");
5267 #endif
5268 print_type_hash_statistics ();
5269 lang_hooks.print_statistics ();
5272 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
5274 /* Generate a crc32 of a string. */
5276 unsigned
5277 crc32_string (unsigned chksum, const char *string)
5281 unsigned value = *string << 24;
5282 unsigned ix;
5284 for (ix = 8; ix--; value <<= 1)
5286 unsigned feedback;
5288 feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
5289 chksum <<= 1;
5290 chksum ^= feedback;
5293 while (*string++);
5294 return chksum;
5297 /* P is a string that will be used in a symbol. Mask out any characters
5298 that are not valid in that context. */
5300 void
5301 clean_symbol_name (char *p)
5303 for (; *p; p++)
5304 if (! (ISALNUM (*p)
5305 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
5306 || *p == '$'
5307 #endif
5308 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
5309 || *p == '.'
5310 #endif
5312 *p = '_';
5315 /* Generate a name for a function unique to this translation unit.
5316 TYPE is some string to identify the purpose of this function to the
5317 linker or collect2. */
5319 tree
5320 get_file_function_name_long (const char *type)
5322 char *buf;
5323 const char *p;
5324 char *q;
5326 if (first_global_object_name)
5327 p = first_global_object_name;
5328 else
5330 /* We don't have anything that we know to be unique to this translation
5331 unit, so use what we do have and throw in some randomness. */
5332 unsigned len;
5333 const char *name = weak_global_object_name;
5334 const char *file = main_input_filename;
5336 if (! name)
5337 name = "";
5338 if (! file)
5339 file = input_filename;
5341 len = strlen (file);
5342 q = alloca (9 * 2 + len + 1);
5343 memcpy (q, file, len + 1);
5344 clean_symbol_name (q);
5346 sprintf (q + len, "_%08X_%08X", crc32_string (0, name),
5347 crc32_string (0, flag_random_seed));
5349 p = q;
5352 buf = alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p) + strlen (type));
5354 /* Set up the name of the file-level functions we may need.
5355 Use a global object (which is already required to be unique over
5356 the program) rather than the file name (which imposes extra
5357 constraints). */
5358 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
5360 return get_identifier (buf);
5363 /* If KIND=='I', return a suitable global initializer (constructor) name.
5364 If KIND=='D', return a suitable global clean-up (destructor) name. */
5366 tree
5367 get_file_function_name (int kind)
5369 char p[2];
5371 p[0] = kind;
5372 p[1] = 0;
5374 return get_file_function_name_long (p);
5377 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
5379 /* Complain that the tree code of NODE does not match the expected 0
5380 terminated list of trailing codes. The trailing code list can be
5381 empty, for a more vague error message. FILE, LINE, and FUNCTION
5382 are of the caller. */
5384 void
5385 tree_check_failed (const tree node, const char *file,
5386 int line, const char *function, ...)
5388 va_list args;
5389 char *buffer;
5390 unsigned length = 0;
5391 int code;
5393 va_start (args, function);
5394 while ((code = va_arg (args, int)))
5395 length += 4 + strlen (tree_code_name[code]);
5396 va_end (args);
5397 if (length)
5399 va_start (args, function);
5400 length += strlen ("expected ");
5401 buffer = alloca (length);
5402 length = 0;
5403 while ((code = va_arg (args, int)))
5405 const char *prefix = length ? " or " : "expected ";
5407 strcpy (buffer + length, prefix);
5408 length += strlen (prefix);
5409 strcpy (buffer + length, tree_code_name[code]);
5410 length += strlen (tree_code_name[code]);
5412 va_end (args);
5414 else
5415 buffer = (char *)"unexpected node";
5417 internal_error ("tree check: %s, have %s in %s, at %s:%d",
5418 buffer, tree_code_name[TREE_CODE (node)],
5419 function, trim_filename (file), line);
5422 /* Complain that the tree code of NODE does match the expected 0
5423 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
5424 the caller. */
5426 void
5427 tree_not_check_failed (const tree node, const char *file,
5428 int line, const char *function, ...)
5430 va_list args;
5431 char *buffer;
5432 unsigned length = 0;
5433 int code;
5435 va_start (args, function);
5436 while ((code = va_arg (args, int)))
5437 length += 4 + strlen (tree_code_name[code]);
5438 va_end (args);
5439 va_start (args, function);
5440 buffer = alloca (length);
5441 length = 0;
5442 while ((code = va_arg (args, int)))
5444 if (length)
5446 strcpy (buffer + length, " or ");
5447 length += 4;
5449 strcpy (buffer + length, tree_code_name[code]);
5450 length += strlen (tree_code_name[code]);
5452 va_end (args);
5454 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
5455 buffer, tree_code_name[TREE_CODE (node)],
5456 function, trim_filename (file), line);
5459 /* Similar to tree_check_failed, except that we check for a class of tree
5460 code, given in CL. */
5462 void
5463 tree_class_check_failed (const tree node, const enum tree_code_class cl,
5464 const char *file, int line, const char *function)
5466 internal_error
5467 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
5468 TREE_CODE_CLASS_STRING (cl),
5469 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
5470 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
5473 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
5474 (dynamically sized) vector. */
5476 void
5477 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
5478 const char *function)
5480 internal_error
5481 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
5482 idx + 1, len, function, trim_filename (file), line);
5485 /* Similar to above, except that the check is for the bounds of a PHI_NODE's
5486 (dynamically sized) vector. */
5488 void
5489 phi_node_elt_check_failed (int idx, int len, const char *file, int line,
5490 const char *function)
5492 internal_error
5493 ("tree check: accessed elt %d of phi_node with %d elts in %s, at %s:%d",
5494 idx + 1, len, function, trim_filename (file), line);
5497 /* Similar to above, except that the check is for the bounds of the operand
5498 vector of an expression node. */
5500 void
5501 tree_operand_check_failed (int idx, enum tree_code code, const char *file,
5502 int line, const char *function)
5504 internal_error
5505 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
5506 idx + 1, tree_code_name[code], TREE_CODE_LENGTH (code),
5507 function, trim_filename (file), line);
5509 #endif /* ENABLE_TREE_CHECKING */
5511 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
5512 and mapped to the machine mode MODE. Initialize its fields and build
5513 the information necessary for debugging output. */
5515 static tree
5516 make_vector_type (tree innertype, int nunits, enum machine_mode mode)
5518 tree t = make_node (VECTOR_TYPE);
5520 TREE_TYPE (t) = TYPE_MAIN_VARIANT (innertype);
5521 TYPE_VECTOR_SUBPARTS (t) = nunits;
5522 TYPE_MODE (t) = mode;
5523 TYPE_READONLY (t) = TYPE_READONLY (innertype);
5524 TYPE_VOLATILE (t) = TYPE_VOLATILE (innertype);
5526 layout_type (t);
5529 tree index = build_int_cst (NULL_TREE, nunits - 1);
5530 tree array = build_array_type (innertype, build_index_type (index));
5531 tree rt = make_node (RECORD_TYPE);
5533 TYPE_FIELDS (rt) = build_decl (FIELD_DECL, get_identifier ("f"), array);
5534 DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
5535 layout_type (rt);
5536 TYPE_DEBUG_REPRESENTATION_TYPE (t) = rt;
5537 /* In dwarfout.c, type lookup uses TYPE_UID numbers. We want to output
5538 the representation type, and we want to find that die when looking up
5539 the vector type. This is most easily achieved by making the TYPE_UID
5540 numbers equal. */
5541 TYPE_UID (rt) = TYPE_UID (t);
5544 /* Build our main variant, based on the main variant of the inner type. */
5545 if (TYPE_MAIN_VARIANT (innertype) != innertype)
5547 tree innertype_main_variant = TYPE_MAIN_VARIANT (innertype);
5548 unsigned int hash = TYPE_HASH (innertype_main_variant);
5549 TYPE_MAIN_VARIANT (t)
5550 = type_hash_canon (hash, make_vector_type (innertype_main_variant,
5551 nunits, mode));
5554 return t;
5557 static tree
5558 make_or_reuse_type (unsigned size, int unsignedp)
5560 if (size == INT_TYPE_SIZE)
5561 return unsignedp ? unsigned_type_node : integer_type_node;
5562 if (size == CHAR_TYPE_SIZE)
5563 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
5564 if (size == SHORT_TYPE_SIZE)
5565 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
5566 if (size == LONG_TYPE_SIZE)
5567 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
5568 if (size == LONG_LONG_TYPE_SIZE)
5569 return (unsignedp ? long_long_unsigned_type_node
5570 : long_long_integer_type_node);
5572 if (unsignedp)
5573 return make_unsigned_type (size);
5574 else
5575 return make_signed_type (size);
5578 /* Create nodes for all integer types (and error_mark_node) using the sizes
5579 of C datatypes. The caller should call set_sizetype soon after calling
5580 this function to select one of the types as sizetype. */
5582 void
5583 build_common_tree_nodes (bool signed_char, bool signed_sizetype)
5585 error_mark_node = make_node (ERROR_MARK);
5586 TREE_TYPE (error_mark_node) = error_mark_node;
5588 initialize_sizetypes (signed_sizetype);
5590 /* Define both `signed char' and `unsigned char'. */
5591 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
5592 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
5594 /* Define `char', which is like either `signed char' or `unsigned char'
5595 but not the same as either. */
5596 char_type_node
5597 = (signed_char
5598 ? make_signed_type (CHAR_TYPE_SIZE)
5599 : make_unsigned_type (CHAR_TYPE_SIZE));
5601 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
5602 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
5603 integer_type_node = make_signed_type (INT_TYPE_SIZE);
5604 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
5605 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
5606 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
5607 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
5608 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
5610 /* Define a boolean type. This type only represents boolean values but
5611 may be larger than char depending on the value of BOOL_TYPE_SIZE.
5612 Front ends which want to override this size (i.e. Java) can redefine
5613 boolean_type_node before calling build_common_tree_nodes_2. */
5614 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
5615 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
5616 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
5617 TYPE_PRECISION (boolean_type_node) = 1;
5619 /* Fill in the rest of the sized types. Reuse existing type nodes
5620 when possible. */
5621 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
5622 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
5623 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
5624 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
5625 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
5627 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
5628 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
5629 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
5630 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
5631 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
5633 access_public_node = get_identifier ("public");
5634 access_protected_node = get_identifier ("protected");
5635 access_private_node = get_identifier ("private");
5638 /* Call this function after calling build_common_tree_nodes and set_sizetype.
5639 It will create several other common tree nodes. */
5641 void
5642 build_common_tree_nodes_2 (int short_double)
5644 /* Define these next since types below may used them. */
5645 integer_zero_node = build_int_cst (NULL_TREE, 0);
5646 integer_one_node = build_int_cst (NULL_TREE, 1);
5647 integer_minus_one_node = build_int_cst (NULL_TREE, -1);
5649 size_zero_node = size_int (0);
5650 size_one_node = size_int (1);
5651 bitsize_zero_node = bitsize_int (0);
5652 bitsize_one_node = bitsize_int (1);
5653 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
5655 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
5656 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
5658 void_type_node = make_node (VOID_TYPE);
5659 layout_type (void_type_node);
5661 /* We are not going to have real types in C with less than byte alignment,
5662 so we might as well not have any types that claim to have it. */
5663 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
5664 TYPE_USER_ALIGN (void_type_node) = 0;
5666 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
5667 layout_type (TREE_TYPE (null_pointer_node));
5669 ptr_type_node = build_pointer_type (void_type_node);
5670 const_ptr_type_node
5671 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
5672 fileptr_type_node = ptr_type_node;
5674 float_type_node = make_node (REAL_TYPE);
5675 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
5676 layout_type (float_type_node);
5678 double_type_node = make_node (REAL_TYPE);
5679 if (short_double)
5680 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
5681 else
5682 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
5683 layout_type (double_type_node);
5685 long_double_type_node = make_node (REAL_TYPE);
5686 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
5687 layout_type (long_double_type_node);
5689 float_ptr_type_node = build_pointer_type (float_type_node);
5690 double_ptr_type_node = build_pointer_type (double_type_node);
5691 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
5692 integer_ptr_type_node = build_pointer_type (integer_type_node);
5694 complex_integer_type_node = make_node (COMPLEX_TYPE);
5695 TREE_TYPE (complex_integer_type_node) = integer_type_node;
5696 layout_type (complex_integer_type_node);
5698 complex_float_type_node = make_node (COMPLEX_TYPE);
5699 TREE_TYPE (complex_float_type_node) = float_type_node;
5700 layout_type (complex_float_type_node);
5702 complex_double_type_node = make_node (COMPLEX_TYPE);
5703 TREE_TYPE (complex_double_type_node) = double_type_node;
5704 layout_type (complex_double_type_node);
5706 complex_long_double_type_node = make_node (COMPLEX_TYPE);
5707 TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
5708 layout_type (complex_long_double_type_node);
5711 tree t = targetm.build_builtin_va_list ();
5713 /* Many back-ends define record types without setting TYPE_NAME.
5714 If we copied the record type here, we'd keep the original
5715 record type without a name. This breaks name mangling. So,
5716 don't copy record types and let c_common_nodes_and_builtins()
5717 declare the type to be __builtin_va_list. */
5718 if (TREE_CODE (t) != RECORD_TYPE)
5719 t = build_variant_type_copy (t);
5721 va_list_type_node = t;
5725 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
5727 static void
5728 local_define_builtin (const char *name, tree type, enum built_in_function code,
5729 const char *library_name, int ecf_flags)
5731 tree decl;
5733 decl = lang_hooks.builtin_function (name, type, code, BUILT_IN_NORMAL,
5734 library_name, NULL_TREE);
5735 if (ecf_flags & ECF_CONST)
5736 TREE_READONLY (decl) = 1;
5737 if (ecf_flags & ECF_PURE)
5738 DECL_IS_PURE (decl) = 1;
5739 if (ecf_flags & ECF_NORETURN)
5740 TREE_THIS_VOLATILE (decl) = 1;
5741 if (ecf_flags & ECF_NOTHROW)
5742 TREE_NOTHROW (decl) = 1;
5743 if (ecf_flags & ECF_MALLOC)
5744 DECL_IS_MALLOC (decl) = 1;
5746 built_in_decls[code] = decl;
5747 implicit_built_in_decls[code] = decl;
5750 /* Call this function after instantiating all builtins that the language
5751 front end cares about. This will build the rest of the builtins that
5752 are relied upon by the tree optimizers and the middle-end. */
5754 void
5755 build_common_builtin_nodes (void)
5757 tree tmp, ftype;
5759 if (built_in_decls[BUILT_IN_MEMCPY] == NULL
5760 || built_in_decls[BUILT_IN_MEMMOVE] == NULL)
5762 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
5763 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
5764 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
5765 ftype = build_function_type (ptr_type_node, tmp);
5767 if (built_in_decls[BUILT_IN_MEMCPY] == NULL)
5768 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
5769 "memcpy", ECF_NOTHROW);
5770 if (built_in_decls[BUILT_IN_MEMMOVE] == NULL)
5771 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
5772 "memmove", ECF_NOTHROW);
5775 if (built_in_decls[BUILT_IN_MEMCMP] == NULL)
5777 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
5778 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
5779 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
5780 ftype = build_function_type (ptr_type_node, tmp);
5781 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
5782 "memcmp", ECF_PURE | ECF_NOTHROW);
5785 if (built_in_decls[BUILT_IN_MEMSET] == NULL)
5787 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
5788 tmp = tree_cons (NULL_TREE, integer_type_node, tmp);
5789 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
5790 ftype = build_function_type (ptr_type_node, tmp);
5791 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
5792 "memset", ECF_NOTHROW);
5795 if (built_in_decls[BUILT_IN_ALLOCA] == NULL)
5797 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
5798 ftype = build_function_type (ptr_type_node, tmp);
5799 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
5800 "alloca", ECF_NOTHROW | ECF_MALLOC);
5803 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
5804 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
5805 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
5806 ftype = build_function_type (void_type_node, tmp);
5807 local_define_builtin ("__builtin_init_trampoline", ftype,
5808 BUILT_IN_INIT_TRAMPOLINE,
5809 "__builtin_init_trampoline", ECF_NOTHROW);
5811 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
5812 ftype = build_function_type (ptr_type_node, tmp);
5813 local_define_builtin ("__builtin_adjust_trampoline", ftype,
5814 BUILT_IN_ADJUST_TRAMPOLINE,
5815 "__builtin_adjust_trampoline",
5816 ECF_CONST | ECF_NOTHROW);
5818 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
5819 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
5820 ftype = build_function_type (void_type_node, tmp);
5821 local_define_builtin ("__builtin_nonlocal_goto", ftype,
5822 BUILT_IN_NONLOCAL_GOTO,
5823 "__builtin_nonlocal_goto",
5824 ECF_NORETURN | ECF_NOTHROW);
5826 ftype = build_function_type (ptr_type_node, void_list_node);
5827 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
5828 "__builtin_stack_save", ECF_NOTHROW);
5830 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
5831 ftype = build_function_type (void_type_node, tmp);
5832 local_define_builtin ("__builtin_stack_restore", ftype,
5833 BUILT_IN_STACK_RESTORE,
5834 "__builtin_stack_restore", ECF_NOTHROW);
5836 ftype = build_function_type (void_type_node, void_list_node);
5837 local_define_builtin ("__builtin_profile_func_enter", ftype,
5838 BUILT_IN_PROFILE_FUNC_ENTER, "profile_func_enter", 0);
5839 local_define_builtin ("__builtin_profile_func_exit", ftype,
5840 BUILT_IN_PROFILE_FUNC_EXIT, "profile_func_exit", 0);
5842 /* Complex multiplication and division. These are handled as builtins
5843 rather than optabs because emit_library_call_value doesn't support
5844 complex. Further, we can do slightly better with folding these
5845 beasties if the real and complex parts of the arguments are separate. */
5847 enum machine_mode mode;
5849 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
5851 char mode_name_buf[4], *q;
5852 const char *p;
5853 enum built_in_function mcode, dcode;
5854 tree type, inner_type;
5856 type = lang_hooks.types.type_for_mode (mode, 0);
5857 if (type == NULL)
5858 continue;
5859 inner_type = TREE_TYPE (type);
5861 tmp = tree_cons (NULL_TREE, inner_type, void_list_node);
5862 tmp = tree_cons (NULL_TREE, inner_type, tmp);
5863 tmp = tree_cons (NULL_TREE, inner_type, tmp);
5864 tmp = tree_cons (NULL_TREE, inner_type, tmp);
5865 ftype = build_function_type (type, tmp);
5867 mcode = BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT;
5868 dcode = BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT;
5870 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
5871 *q = TOLOWER (*p);
5872 *q = '\0';
5874 built_in_names[mcode] = concat ("__mul", mode_name_buf, "3", NULL);
5875 local_define_builtin (built_in_names[mcode], ftype, mcode,
5876 built_in_names[mcode], ECF_CONST | ECF_NOTHROW);
5878 built_in_names[dcode] = concat ("__div", mode_name_buf, "3", NULL);
5879 local_define_builtin (built_in_names[dcode], ftype, dcode,
5880 built_in_names[dcode], ECF_CONST | ECF_NOTHROW);
5885 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
5886 better way.
5888 If we requested a pointer to a vector, build up the pointers that
5889 we stripped off while looking for the inner type. Similarly for
5890 return values from functions.
5892 The argument TYPE is the top of the chain, and BOTTOM is the
5893 new type which we will point to. */
5895 tree
5896 reconstruct_complex_type (tree type, tree bottom)
5898 tree inner, outer;
5900 if (POINTER_TYPE_P (type))
5902 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
5903 outer = build_pointer_type (inner);
5905 else if (TREE_CODE (type) == ARRAY_TYPE)
5907 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
5908 outer = build_array_type (inner, TYPE_DOMAIN (type));
5910 else if (TREE_CODE (type) == FUNCTION_TYPE)
5912 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
5913 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
5915 else if (TREE_CODE (type) == METHOD_TYPE)
5917 tree argtypes;
5918 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
5919 /* The build_method_type_directly() routine prepends 'this' to argument list,
5920 so we must compensate by getting rid of it. */
5921 argtypes = TYPE_ARG_TYPES (type);
5922 outer = build_method_type_directly (TYPE_METHOD_BASETYPE (type),
5923 inner,
5924 TYPE_ARG_TYPES (type));
5925 TYPE_ARG_TYPES (outer) = argtypes;
5927 else
5928 return bottom;
5930 TYPE_READONLY (outer) = TYPE_READONLY (type);
5931 TYPE_VOLATILE (outer) = TYPE_VOLATILE (type);
5933 return outer;
5936 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
5937 the inner type. */
5938 tree
5939 build_vector_type_for_mode (tree innertype, enum machine_mode mode)
5941 int nunits;
5943 switch (GET_MODE_CLASS (mode))
5945 case MODE_VECTOR_INT:
5946 case MODE_VECTOR_FLOAT:
5947 nunits = GET_MODE_NUNITS (mode);
5948 break;
5950 case MODE_INT:
5951 /* Check that there are no leftover bits. */
5952 gcc_assert (GET_MODE_BITSIZE (mode)
5953 % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
5955 nunits = GET_MODE_BITSIZE (mode)
5956 / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
5957 break;
5959 default:
5960 gcc_unreachable ();
5963 return make_vector_type (innertype, nunits, mode);
5966 /* Similarly, but takes the inner type and number of units, which must be
5967 a power of two. */
5969 tree
5970 build_vector_type (tree innertype, int nunits)
5972 return make_vector_type (innertype, nunits, VOIDmode);
5975 /* Given an initializer INIT, return TRUE if INIT is zero or some
5976 aggregate of zeros. Otherwise return FALSE. */
5977 bool
5978 initializer_zerop (tree init)
5980 tree elt;
5982 STRIP_NOPS (init);
5984 switch (TREE_CODE (init))
5986 case INTEGER_CST:
5987 return integer_zerop (init);
5989 case REAL_CST:
5990 /* ??? Note that this is not correct for C4X float formats. There,
5991 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
5992 negative exponent. */
5993 return real_zerop (init)
5994 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
5996 case COMPLEX_CST:
5997 return integer_zerop (init)
5998 || (real_zerop (init)
5999 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
6000 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
6002 case VECTOR_CST:
6003 for (elt = TREE_VECTOR_CST_ELTS (init); elt; elt = TREE_CHAIN (elt))
6004 if (!initializer_zerop (TREE_VALUE (elt)))
6005 return false;
6006 return true;
6008 case CONSTRUCTOR:
6009 elt = CONSTRUCTOR_ELTS (init);
6010 if (elt == NULL_TREE)
6011 return true;
6013 for (; elt ; elt = TREE_CHAIN (elt))
6014 if (! initializer_zerop (TREE_VALUE (elt)))
6015 return false;
6016 return true;
6018 default:
6019 return false;
6023 void
6024 add_var_to_bind_expr (tree bind_expr, tree var)
6026 BIND_EXPR_VARS (bind_expr)
6027 = chainon (BIND_EXPR_VARS (bind_expr), var);
6028 if (BIND_EXPR_BLOCK (bind_expr))
6029 BLOCK_VARS (BIND_EXPR_BLOCK (bind_expr))
6030 = BIND_EXPR_VARS (bind_expr);
6033 /* Build an empty statement. */
6035 tree
6036 build_empty_stmt (void)
6038 return build1 (NOP_EXPR, void_type_node, size_zero_node);
6042 /* Returns true if it is possible to prove that the index of
6043 an array access REF (an ARRAY_REF expression) falls into the
6044 array bounds. */
6046 bool
6047 in_array_bounds_p (tree ref)
6049 tree idx = TREE_OPERAND (ref, 1);
6050 tree min, max;
6052 if (TREE_CODE (idx) != INTEGER_CST)
6053 return false;
6055 min = array_ref_low_bound (ref);
6056 max = array_ref_up_bound (ref);
6057 if (!min
6058 || !max
6059 || TREE_CODE (min) != INTEGER_CST
6060 || TREE_CODE (max) != INTEGER_CST)
6061 return false;
6063 if (tree_int_cst_lt (idx, min)
6064 || tree_int_cst_lt (max, idx))
6065 return false;
6067 return true;
6070 /* Return true if T (assumed to be a DECL) is a global variable. */
6072 bool
6073 is_global_var (tree t)
6075 return (TREE_STATIC (t) || DECL_EXTERNAL (t));
6078 /* Return true if T (assumed to be a DECL) must be assigned a memory
6079 location. */
6081 bool
6082 needs_to_live_in_memory (tree t)
6084 return (TREE_ADDRESSABLE (t)
6085 || is_global_var (t)
6086 || (TREE_CODE (t) == RESULT_DECL
6087 && aggregate_value_p (t, current_function_decl)));
6090 /* There are situations in which a language considers record types
6091 compatible which have different field lists. Decide if two fields
6092 are compatible. It is assumed that the parent records are compatible. */
6094 bool
6095 fields_compatible_p (tree f1, tree f2)
6097 if (!operand_equal_p (DECL_FIELD_BIT_OFFSET (f1),
6098 DECL_FIELD_BIT_OFFSET (f2), OEP_ONLY_CONST))
6099 return false;
6101 if (!operand_equal_p (DECL_FIELD_OFFSET (f1),
6102 DECL_FIELD_OFFSET (f2), OEP_ONLY_CONST))
6103 return false;
6105 if (!lang_hooks.types_compatible_p (TREE_TYPE (f1), TREE_TYPE (f2)))
6106 return false;
6108 return true;
6111 /* Locate within RECORD a field that is compatible with ORIG_FIELD. */
6113 tree
6114 find_compatible_field (tree record, tree orig_field)
6116 tree f;
6118 for (f = TYPE_FIELDS (record); f ; f = TREE_CHAIN (f))
6119 if (TREE_CODE (f) == FIELD_DECL
6120 && fields_compatible_p (f, orig_field))
6121 return f;
6123 /* ??? Why isn't this on the main fields list? */
6124 f = TYPE_VFIELD (record);
6125 if (f && TREE_CODE (f) == FIELD_DECL
6126 && fields_compatible_p (f, orig_field))
6127 return f;
6129 /* ??? We should abort here, but Java appears to do Bad Things
6130 with inherited fields. */
6131 return orig_field;
6134 /* Return value of a constant X. */
6136 HOST_WIDE_INT
6137 int_cst_value (tree x)
6139 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
6140 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
6141 bool negative = ((val >> (bits - 1)) & 1) != 0;
6143 gcc_assert (bits <= HOST_BITS_PER_WIDE_INT);
6145 if (negative)
6146 val |= (~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1;
6147 else
6148 val &= ~((~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1);
6150 return val;
6153 /* Returns the greatest common divisor of A and B, which must be
6154 INTEGER_CSTs. */
6156 tree
6157 tree_fold_gcd (tree a, tree b)
6159 tree a_mod_b;
6160 tree type = TREE_TYPE (a);
6162 gcc_assert (TREE_CODE (a) == INTEGER_CST);
6163 gcc_assert (TREE_CODE (b) == INTEGER_CST);
6165 if (integer_zerop (a))
6166 return b;
6168 if (integer_zerop (b))
6169 return a;
6171 if (tree_int_cst_sgn (a) == -1)
6172 a = fold (build2 (MULT_EXPR, type, a,
6173 convert (type, integer_minus_one_node)));
6175 if (tree_int_cst_sgn (b) == -1)
6176 b = fold (build2 (MULT_EXPR, type, b,
6177 convert (type, integer_minus_one_node)));
6179 while (1)
6181 a_mod_b = fold (build2 (FLOOR_MOD_EXPR, type, a, b));
6183 if (!TREE_INT_CST_LOW (a_mod_b)
6184 && !TREE_INT_CST_HIGH (a_mod_b))
6185 return b;
6187 a = b;
6188 b = a_mod_b;
6192 /* Returns unsigned variant of TYPE. */
6194 tree
6195 unsigned_type_for (tree type)
6197 return lang_hooks.types.unsigned_type (type);
6200 /* Returns signed variant of TYPE. */
6202 tree
6203 signed_type_for (tree type)
6205 return lang_hooks.types.signed_type (type);
6208 /* Returns the largest value obtainable by casting something in INNER type to
6209 OUTER type. */
6211 tree
6212 upper_bound_in_type (tree outer, tree inner)
6214 unsigned HOST_WIDE_INT lo, hi;
6215 unsigned bits = TYPE_PRECISION (inner);
6217 if (TYPE_UNSIGNED (outer) || TYPE_UNSIGNED (inner))
6219 /* Zero extending in these cases. */
6220 if (bits <= HOST_BITS_PER_WIDE_INT)
6222 hi = 0;
6223 lo = (~(unsigned HOST_WIDE_INT) 0)
6224 >> (HOST_BITS_PER_WIDE_INT - bits);
6226 else
6228 hi = (~(unsigned HOST_WIDE_INT) 0)
6229 >> (2 * HOST_BITS_PER_WIDE_INT - bits);
6230 lo = ~(unsigned HOST_WIDE_INT) 0;
6233 else
6235 /* Sign extending in these cases. */
6236 if (bits <= HOST_BITS_PER_WIDE_INT)
6238 hi = 0;
6239 lo = (~(unsigned HOST_WIDE_INT) 0)
6240 >> (HOST_BITS_PER_WIDE_INT - bits) >> 1;
6242 else
6244 hi = (~(unsigned HOST_WIDE_INT) 0)
6245 >> (2 * HOST_BITS_PER_WIDE_INT - bits) >> 1;
6246 lo = ~(unsigned HOST_WIDE_INT) 0;
6250 return fold_convert (outer,
6251 build_int_cst_wide (inner, lo, hi));
6254 /* Returns the smallest value obtainable by casting something in INNER type to
6255 OUTER type. */
6257 tree
6258 lower_bound_in_type (tree outer, tree inner)
6260 unsigned HOST_WIDE_INT lo, hi;
6261 unsigned bits = TYPE_PRECISION (inner);
6263 if (TYPE_UNSIGNED (outer) || TYPE_UNSIGNED (inner))
6264 lo = hi = 0;
6265 else if (bits <= HOST_BITS_PER_WIDE_INT)
6267 hi = ~(unsigned HOST_WIDE_INT) 0;
6268 lo = (~(unsigned HOST_WIDE_INT) 0) << (bits - 1);
6270 else
6272 hi = (~(unsigned HOST_WIDE_INT) 0) << (bits - HOST_BITS_PER_WIDE_INT - 1);
6273 lo = 0;
6276 return fold_convert (outer,
6277 build_int_cst_wide (inner, lo, hi));
6280 /* Return nonzero if two operands that are suitable for PHI nodes are
6281 necessarily equal. Specifically, both ARG0 and ARG1 must be either
6282 SSA_NAME or invariant. Note that this is strictly an optimization.
6283 That is, callers of this function can directly call operand_equal_p
6284 and get the same result, only slower. */
6287 operand_equal_for_phi_arg_p (tree arg0, tree arg1)
6289 if (arg0 == arg1)
6290 return 1;
6291 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
6292 return 0;
6293 return operand_equal_p (arg0, arg1, 0);
6296 /* Returns number of zeros at the end of binary representation of X.
6298 ??? Use ffs if available? */
6300 tree
6301 num_ending_zeros (tree x)
6303 unsigned HOST_WIDE_INT fr, nfr;
6304 unsigned num, abits;
6305 tree type = TREE_TYPE (x);
6307 if (TREE_INT_CST_LOW (x) == 0)
6309 num = HOST_BITS_PER_WIDE_INT;
6310 fr = TREE_INT_CST_HIGH (x);
6312 else
6314 num = 0;
6315 fr = TREE_INT_CST_LOW (x);
6318 for (abits = HOST_BITS_PER_WIDE_INT / 2; abits; abits /= 2)
6320 nfr = fr >> abits;
6321 if (nfr << abits == fr)
6323 num += abits;
6324 fr = nfr;
6328 if (num > TYPE_PRECISION (type))
6329 num = TYPE_PRECISION (type);
6331 return build_int_cst_type (type, num);
6335 #define WALK_SUBTREE(NODE) \
6336 do \
6338 result = walk_tree (&(NODE), func, data, pset); \
6339 if (result) \
6340 return result; \
6342 while (0)
6344 /* This is a subroutine of walk_tree that walks field of TYPE that are to
6345 be walked whenever a type is seen in the tree. Rest of operands and return
6346 value are as for walk_tree. */
6348 static tree
6349 walk_type_fields (tree type, walk_tree_fn func, void *data,
6350 struct pointer_set_t *pset)
6352 tree result = NULL_TREE;
6354 switch (TREE_CODE (type))
6356 case POINTER_TYPE:
6357 case REFERENCE_TYPE:
6358 /* We have to worry about mutually recursive pointers. These can't
6359 be written in C. They can in Ada. It's pathological, but
6360 there's an ACATS test (c38102a) that checks it. Deal with this
6361 by checking if we're pointing to another pointer, that one
6362 points to another pointer, that one does too, and we have no htab.
6363 If so, get a hash table. We check three levels deep to avoid
6364 the cost of the hash table if we don't need one. */
6365 if (POINTER_TYPE_P (TREE_TYPE (type))
6366 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
6367 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
6368 && !pset)
6370 result = walk_tree_without_duplicates (&TREE_TYPE (type),
6371 func, data);
6372 if (result)
6373 return result;
6375 break;
6378 /* ... fall through ... */
6380 case COMPLEX_TYPE:
6381 WALK_SUBTREE (TREE_TYPE (type));
6382 break;
6384 case METHOD_TYPE:
6385 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
6387 /* Fall through. */
6389 case FUNCTION_TYPE:
6390 WALK_SUBTREE (TREE_TYPE (type));
6392 tree arg;
6394 /* We never want to walk into default arguments. */
6395 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
6396 WALK_SUBTREE (TREE_VALUE (arg));
6398 break;
6400 case ARRAY_TYPE:
6401 /* Don't follow this nodes's type if a pointer for fear that we'll
6402 have infinite recursion. Those types are uninteresting anyway. */
6403 if (!POINTER_TYPE_P (TREE_TYPE (type))
6404 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE)
6405 WALK_SUBTREE (TREE_TYPE (type));
6406 WALK_SUBTREE (TYPE_DOMAIN (type));
6407 break;
6409 case BOOLEAN_TYPE:
6410 case ENUMERAL_TYPE:
6411 case INTEGER_TYPE:
6412 case CHAR_TYPE:
6413 case REAL_TYPE:
6414 WALK_SUBTREE (TYPE_MIN_VALUE (type));
6415 WALK_SUBTREE (TYPE_MAX_VALUE (type));
6416 break;
6418 case OFFSET_TYPE:
6419 WALK_SUBTREE (TREE_TYPE (type));
6420 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
6421 break;
6423 default:
6424 break;
6427 return NULL_TREE;
6430 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
6431 called with the DATA and the address of each sub-tree. If FUNC returns a
6432 non-NULL value, the traversal is stopped, and the value returned by FUNC
6433 is returned. If PSET is non-NULL it is used to record the nodes visited,
6434 and to avoid visiting a node more than once. */
6436 tree
6437 walk_tree (tree *tp, walk_tree_fn func, void *data, struct pointer_set_t *pset)
6439 enum tree_code code;
6440 int walk_subtrees;
6441 tree result;
6443 #define WALK_SUBTREE_TAIL(NODE) \
6444 do \
6446 tp = & (NODE); \
6447 goto tail_recurse; \
6449 while (0)
6451 tail_recurse:
6452 /* Skip empty subtrees. */
6453 if (!*tp)
6454 return NULL_TREE;
6456 /* Don't walk the same tree twice, if the user has requested
6457 that we avoid doing so. */
6458 if (pset && pointer_set_insert (pset, *tp))
6459 return NULL_TREE;
6461 /* Call the function. */
6462 walk_subtrees = 1;
6463 result = (*func) (tp, &walk_subtrees, data);
6465 /* If we found something, return it. */
6466 if (result)
6467 return result;
6469 code = TREE_CODE (*tp);
6471 /* Even if we didn't, FUNC may have decided that there was nothing
6472 interesting below this point in the tree. */
6473 if (!walk_subtrees)
6475 if (code == TREE_LIST)
6476 /* But we still need to check our siblings. */
6477 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
6478 else
6479 return NULL_TREE;
6482 result = lang_hooks.tree_inlining.walk_subtrees (tp, &walk_subtrees, func,
6483 data, pset);
6484 if (result || ! walk_subtrees)
6485 return result;
6487 /* If this is a DECL_EXPR, walk into various fields of the type that it's
6488 defining. We only want to walk into these fields of a type in this
6489 case. Note that decls get walked as part of the processing of a
6490 BIND_EXPR.
6492 ??? Precisely which fields of types that we are supposed to walk in
6493 this case vs. the normal case aren't well defined. */
6494 if (code == DECL_EXPR
6495 && TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL
6496 && TREE_CODE (TREE_TYPE (DECL_EXPR_DECL (*tp))) != ERROR_MARK)
6498 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
6500 /* Call the function for the type. See if it returns anything or
6501 doesn't want us to continue. If we are to continue, walk both
6502 the normal fields and those for the declaration case. */
6503 result = (*func) (type_p, &walk_subtrees, data);
6504 if (result || !walk_subtrees)
6505 return NULL_TREE;
6507 result = walk_type_fields (*type_p, func, data, pset);
6508 if (result)
6509 return result;
6511 WALK_SUBTREE (TYPE_SIZE (*type_p));
6512 WALK_SUBTREE (TYPE_SIZE_UNIT (*type_p));
6514 /* If this is a record type, also walk the fields. */
6515 if (TREE_CODE (*type_p) == RECORD_TYPE
6516 || TREE_CODE (*type_p) == UNION_TYPE
6517 || TREE_CODE (*type_p) == QUAL_UNION_TYPE)
6519 tree field;
6521 for (field = TYPE_FIELDS (*type_p); field;
6522 field = TREE_CHAIN (field))
6524 /* We'd like to look at the type of the field, but we can easily
6525 get infinite recursion. So assume it's pointed to elsewhere
6526 in the tree. Also, ignore things that aren't fields. */
6527 if (TREE_CODE (field) != FIELD_DECL)
6528 continue;
6530 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
6531 WALK_SUBTREE (DECL_SIZE (field));
6532 WALK_SUBTREE (DECL_SIZE_UNIT (field));
6533 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
6534 WALK_SUBTREE (DECL_QUALIFIER (field));
6539 else if (code != SAVE_EXPR
6540 && code != BIND_EXPR
6541 && IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
6543 int i, len;
6545 /* Walk over all the sub-trees of this operand. */
6546 len = TREE_CODE_LENGTH (code);
6547 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
6548 But, we only want to walk once. */
6549 if (code == TARGET_EXPR
6550 && TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1))
6551 --len;
6553 /* Go through the subtrees. We need to do this in forward order so
6554 that the scope of a FOR_EXPR is handled properly. */
6555 #ifdef DEBUG_WALK_TREE
6556 for (i = 0; i < len; ++i)
6557 WALK_SUBTREE (TREE_OPERAND (*tp, i));
6558 #else
6559 for (i = 0; i < len - 1; ++i)
6560 WALK_SUBTREE (TREE_OPERAND (*tp, i));
6562 if (len)
6564 /* The common case is that we may tail recurse here. */
6565 if (code != BIND_EXPR
6566 && !TREE_CHAIN (*tp))
6567 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
6568 else
6569 WALK_SUBTREE (TREE_OPERAND (*tp, len - 1));
6571 #endif
6574 /* If this is a type, walk the needed fields in the type. */
6575 else if (TYPE_P (*tp))
6577 result = walk_type_fields (*tp, func, data, pset);
6578 if (result)
6579 return result;
6581 else
6583 /* Not one of the easy cases. We must explicitly go through the
6584 children. */
6585 switch (code)
6587 case ERROR_MARK:
6588 case IDENTIFIER_NODE:
6589 case INTEGER_CST:
6590 case REAL_CST:
6591 case VECTOR_CST:
6592 case STRING_CST:
6593 case BLOCK:
6594 case PLACEHOLDER_EXPR:
6595 case SSA_NAME:
6596 case FIELD_DECL:
6597 case RESULT_DECL:
6598 /* None of thse have subtrees other than those already walked
6599 above. */
6600 break;
6602 case TREE_LIST:
6603 WALK_SUBTREE (TREE_VALUE (*tp));
6604 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
6605 break;
6607 case TREE_VEC:
6609 int len = TREE_VEC_LENGTH (*tp);
6611 if (len == 0)
6612 break;
6614 /* Walk all elements but the first. */
6615 while (--len)
6616 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
6618 /* Now walk the first one as a tail call. */
6619 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
6622 case COMPLEX_CST:
6623 WALK_SUBTREE (TREE_REALPART (*tp));
6624 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
6626 case CONSTRUCTOR:
6627 WALK_SUBTREE_TAIL (CONSTRUCTOR_ELTS (*tp));
6629 case SAVE_EXPR:
6630 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
6632 case BIND_EXPR:
6634 tree decl;
6635 for (decl = BIND_EXPR_VARS (*tp); decl; decl = TREE_CHAIN (decl))
6637 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
6638 into declarations that are just mentioned, rather than
6639 declared; they don't really belong to this part of the tree.
6640 And, we can see cycles: the initializer for a declaration
6641 can refer to the declaration itself. */
6642 WALK_SUBTREE (DECL_INITIAL (decl));
6643 WALK_SUBTREE (DECL_SIZE (decl));
6644 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
6646 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
6649 case STATEMENT_LIST:
6651 tree_stmt_iterator i;
6652 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
6653 WALK_SUBTREE (*tsi_stmt_ptr (i));
6655 break;
6657 default:
6658 /* ??? This could be a language-defined node. We really should make
6659 a hook for it, but right now just ignore it. */
6660 break;
6664 /* We didn't find what we were looking for. */
6665 return NULL_TREE;
6667 #undef WALK_SUBTREE_TAIL
6669 #undef WALK_SUBTREE
6671 /* Like walk_tree, but does not walk duplicate nodes more than once. */
6673 tree
6674 walk_tree_without_duplicates (tree *tp, walk_tree_fn func, void *data)
6676 tree result;
6677 struct pointer_set_t *pset;
6679 pset = pointer_set_create ();
6680 result = walk_tree (tp, func, data, pset);
6681 pointer_set_destroy (pset);
6682 return result;
6685 #include "gt-tree.h"