m68k.c (m68k_output_function_prologue): use %U in label name
[official-gcc.git] / gcc / tree.c
blobd38a87daf1f90609da35be1048011d47b318ee85
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 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"
49 /* obstack.[ch] explicitly declined to prototype this. */
50 extern int _obstack_allocated_p (struct obstack *h, void *obj);
52 #ifdef GATHER_STATISTICS
53 /* Statistics-gathering stuff. */
55 int tree_node_counts[(int) all_kinds];
56 int tree_node_sizes[(int) all_kinds];
58 /* Keep in sync with tree.h:enum tree_node_kind. */
59 static const char * const tree_node_kind_names[] = {
60 "decls",
61 "types",
62 "blocks",
63 "stmts",
64 "refs",
65 "exprs",
66 "constants",
67 "identifiers",
68 "perm_tree_lists",
69 "temp_tree_lists",
70 "vecs",
71 "random kinds",
72 "lang_decl kinds",
73 "lang_type kinds"
75 #endif /* GATHER_STATISTICS */
77 /* Unique id for next decl created. */
78 static GTY(()) int next_decl_uid;
79 /* Unique id for next type created. */
80 static GTY(()) int next_type_uid = 1;
82 /* Since we cannot rehash a type after it is in the table, we have to
83 keep the hash code. */
85 struct type_hash GTY(())
87 unsigned long hash;
88 tree type;
91 /* Initial size of the hash table (rounded to next prime). */
92 #define TYPE_HASH_INITIAL_SIZE 1000
94 /* Now here is the hash table. When recording a type, it is added to
95 the slot whose index is the hash code. Note that the hash table is
96 used for several kinds of types (function types, array types and
97 array index range types, for now). While all these live in the
98 same table, they are completely independent, and the hash code is
99 computed differently for each of these. */
101 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash)))
102 htab_t type_hash_table;
104 static void set_type_quals (tree, int);
105 static int type_hash_eq (const void *, const void *);
106 static hashval_t type_hash_hash (const void *);
107 static void print_type_hash_statistics (void);
108 static void finish_vector_type (tree);
109 static tree make_vector (enum machine_mode, tree, int);
110 static int type_hash_marked_p (const void *);
112 tree global_trees[TI_MAX];
113 tree integer_types[itk_none];
115 /* Init tree.c. */
117 void
118 init_ttree (void)
120 /* Initialize the hash table of types. */
121 type_hash_table = htab_create_ggc (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
122 type_hash_eq, 0);
126 /* The name of the object as the assembler will see it (but before any
127 translations made by ASM_OUTPUT_LABELREF). Often this is the same
128 as DECL_NAME. It is an IDENTIFIER_NODE. */
129 tree
130 decl_assembler_name (tree decl)
132 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
133 (*lang_hooks.set_decl_assembler_name) (decl);
134 return DECL_CHECK (decl)->decl.assembler_name;
137 /* Compute the number of bytes occupied by 'node'. This routine only
138 looks at TREE_CODE and, if the code is TREE_VEC, TREE_VEC_LENGTH. */
139 size_t
140 tree_size (tree node)
142 enum tree_code code = TREE_CODE (node);
144 switch (TREE_CODE_CLASS (code))
146 case 'd': /* A decl node */
147 return sizeof (struct tree_decl);
149 case 't': /* a type node */
150 return sizeof (struct tree_type);
152 case 'b': /* a lexical block node */
153 return sizeof (struct tree_block);
155 case 'r': /* a reference */
156 case 'e': /* an expression */
157 case 's': /* an expression with side effects */
158 case '<': /* a comparison expression */
159 case '1': /* a unary arithmetic expression */
160 case '2': /* a binary arithmetic expression */
161 return (sizeof (struct tree_exp)
162 + TREE_CODE_LENGTH (code) * sizeof (char *) - sizeof (char *));
164 case 'c': /* a constant */
165 switch (code)
167 case INTEGER_CST: return sizeof (struct tree_int_cst);
168 case REAL_CST: return sizeof (struct tree_real_cst);
169 case COMPLEX_CST: return sizeof (struct tree_complex);
170 case VECTOR_CST: return sizeof (struct tree_vector);
171 case STRING_CST: return sizeof (struct tree_string);
172 default:
173 return (*lang_hooks.tree_size) (code);
176 case 'x': /* something random, like an identifier. */
177 switch (code)
179 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
180 case TREE_LIST: return sizeof (struct tree_list);
181 case TREE_VEC: return (sizeof (struct tree_vec)
182 + TREE_VEC_LENGTH(node) * sizeof(char *)
183 - sizeof (char *));
185 case ERROR_MARK:
186 case PLACEHOLDER_EXPR: return sizeof (struct tree_common);
188 default:
189 return (*lang_hooks.tree_size) (code);
192 default:
193 abort ();
197 /* Return a newly allocated node of code CODE.
198 For decl and type nodes, some other fields are initialized.
199 The rest of the node is initialized to zero.
201 Achoo! I got a code in the node. */
203 tree
204 make_node (enum tree_code code)
206 tree t;
207 int type = TREE_CODE_CLASS (code);
208 size_t length;
209 #ifdef GATHER_STATISTICS
210 tree_node_kind kind;
211 #endif
212 struct tree_common ttmp;
214 /* We can't allocate a TREE_VEC without knowing how many elements
215 it will have. */
216 if (code == TREE_VEC)
217 abort ();
219 TREE_SET_CODE ((tree)&ttmp, code);
220 length = tree_size ((tree)&ttmp);
222 #ifdef GATHER_STATISTICS
223 switch (type)
225 case 'd': /* A decl node */
226 kind = d_kind;
227 break;
229 case 't': /* a type node */
230 kind = t_kind;
231 break;
233 case 'b': /* a lexical block */
234 kind = b_kind;
235 break;
237 case 's': /* an expression with side effects */
238 kind = s_kind;
239 break;
241 case 'r': /* a reference */
242 kind = r_kind;
243 break;
245 case 'e': /* an expression */
246 case '<': /* a comparison expression */
247 case '1': /* a unary arithmetic expression */
248 case '2': /* a binary arithmetic expression */
249 kind = e_kind;
250 break;
252 case 'c': /* a constant */
253 kind = c_kind;
254 break;
256 case 'x': /* something random, like an identifier. */
257 if (code == IDENTIFIER_NODE)
258 kind = id_kind;
259 else if (code == TREE_VEC)
260 kind = vec_kind;
261 else
262 kind = x_kind;
263 break;
265 default:
266 abort ();
269 tree_node_counts[(int) kind]++;
270 tree_node_sizes[(int) kind] += length;
271 #endif
273 t = ggc_alloc_tree (length);
275 memset (t, 0, length);
277 TREE_SET_CODE (t, code);
279 switch (type)
281 case 's':
282 TREE_SIDE_EFFECTS (t) = 1;
283 break;
285 case 'd':
286 if (code != FUNCTION_DECL)
287 DECL_ALIGN (t) = 1;
288 DECL_USER_ALIGN (t) = 0;
289 DECL_IN_SYSTEM_HEADER (t) = in_system_header;
290 DECL_SOURCE_LOCATION (t) = input_location;
291 DECL_UID (t) = next_decl_uid++;
293 /* We have not yet computed the alias set for this declaration. */
294 DECL_POINTER_ALIAS_SET (t) = -1;
295 break;
297 case 't':
298 TYPE_UID (t) = next_type_uid++;
299 TYPE_ALIGN (t) = char_type_node ? TYPE_ALIGN (char_type_node) : 0;
300 TYPE_USER_ALIGN (t) = 0;
301 TYPE_MAIN_VARIANT (t) = t;
303 /* Default to no attributes for type, but let target change that. */
304 TYPE_ATTRIBUTES (t) = NULL_TREE;
305 (*targetm.set_default_type_attributes) (t);
307 /* We have not yet computed the alias set for this type. */
308 TYPE_ALIAS_SET (t) = -1;
309 break;
311 case 'c':
312 TREE_CONSTANT (t) = 1;
313 break;
315 case 'e':
316 switch (code)
318 case INIT_EXPR:
319 case MODIFY_EXPR:
320 case VA_ARG_EXPR:
321 case RTL_EXPR:
322 case PREDECREMENT_EXPR:
323 case PREINCREMENT_EXPR:
324 case POSTDECREMENT_EXPR:
325 case POSTINCREMENT_EXPR:
326 /* All of these have side-effects, no matter what their
327 operands are. */
328 TREE_SIDE_EFFECTS (t) = 1;
329 break;
331 default:
332 break;
334 break;
337 return t;
340 /* Return a new node with the same contents as NODE except that its
341 TREE_CHAIN is zero and it has a fresh uid. */
343 tree
344 copy_node (tree node)
346 tree t;
347 enum tree_code code = TREE_CODE (node);
348 size_t length;
350 length = tree_size (node);
351 t = ggc_alloc_tree (length);
352 memcpy (t, node, length);
354 TREE_CHAIN (t) = 0;
355 TREE_ASM_WRITTEN (t) = 0;
357 if (TREE_CODE_CLASS (code) == 'd')
358 DECL_UID (t) = next_decl_uid++;
359 else if (TREE_CODE_CLASS (code) == 't')
361 TYPE_UID (t) = next_type_uid++;
362 /* The following is so that the debug code for
363 the copy is different from the original type.
364 The two statements usually duplicate each other
365 (because they clear fields of the same union),
366 but the optimizer should catch that. */
367 TYPE_SYMTAB_POINTER (t) = 0;
368 TYPE_SYMTAB_ADDRESS (t) = 0;
371 return t;
374 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
375 For example, this can copy a list made of TREE_LIST nodes. */
377 tree
378 copy_list (tree list)
380 tree head;
381 tree prev, next;
383 if (list == 0)
384 return 0;
386 head = prev = copy_node (list);
387 next = TREE_CHAIN (list);
388 while (next)
390 TREE_CHAIN (prev) = copy_node (next);
391 prev = TREE_CHAIN (prev);
392 next = TREE_CHAIN (next);
394 return head;
398 /* Return a newly constructed INTEGER_CST node whose constant value
399 is specified by the two ints LOW and HI.
400 The TREE_TYPE is set to `int'.
402 This function should be used via the `build_int_2' macro. */
404 tree
405 build_int_2_wide (unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
407 tree t = make_node (INTEGER_CST);
409 TREE_INT_CST_LOW (t) = low;
410 TREE_INT_CST_HIGH (t) = hi;
411 TREE_TYPE (t) = integer_type_node;
412 return t;
415 /* Return a new VECTOR_CST node whose type is TYPE and whose values
416 are in a list pointed by VALS. */
418 tree
419 build_vector (tree type, tree vals)
421 tree v = make_node (VECTOR_CST);
422 int over1 = 0, over2 = 0;
423 tree link;
425 TREE_VECTOR_CST_ELTS (v) = vals;
426 TREE_TYPE (v) = type;
428 /* Iterate through elements and check for overflow. */
429 for (link = vals; link; link = TREE_CHAIN (link))
431 tree value = TREE_VALUE (link);
433 over1 |= TREE_OVERFLOW (value);
434 over2 |= TREE_CONSTANT_OVERFLOW (value);
437 TREE_OVERFLOW (v) = over1;
438 TREE_CONSTANT_OVERFLOW (v) = over2;
440 return v;
443 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
444 are in a list pointed to by VALS. */
445 tree
446 build_constructor (tree type, tree vals)
448 tree c = make_node (CONSTRUCTOR);
449 TREE_TYPE (c) = type;
450 CONSTRUCTOR_ELTS (c) = vals;
452 /* ??? May not be necessary. Mirrors what build does. */
453 if (vals)
455 TREE_SIDE_EFFECTS (c) = TREE_SIDE_EFFECTS (vals);
456 TREE_READONLY (c) = TREE_READONLY (vals);
457 TREE_CONSTANT (c) = TREE_CONSTANT (vals);
459 else
460 TREE_CONSTANT (c) = 0; /* safe side */
462 return c;
465 /* Return a new REAL_CST node whose type is TYPE and value is D. */
467 tree
468 build_real (tree type, REAL_VALUE_TYPE d)
470 tree v;
471 REAL_VALUE_TYPE *dp;
472 int overflow = 0;
474 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
475 Consider doing it via real_convert now. */
477 v = make_node (REAL_CST);
478 dp = ggc_alloc (sizeof (REAL_VALUE_TYPE));
479 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
481 TREE_TYPE (v) = type;
482 TREE_REAL_CST_PTR (v) = dp;
483 TREE_OVERFLOW (v) = TREE_CONSTANT_OVERFLOW (v) = overflow;
484 return v;
487 /* Return a new REAL_CST node whose type is TYPE
488 and whose value is the integer value of the INTEGER_CST node I. */
490 REAL_VALUE_TYPE
491 real_value_from_int_cst (tree type ATTRIBUTE_UNUSED, tree i)
493 REAL_VALUE_TYPE d;
495 /* Clear all bits of the real value type so that we can later do
496 bitwise comparisons to see if two values are the same. */
497 memset (&d, 0, sizeof d);
499 if (! TREE_UNSIGNED (TREE_TYPE (i)))
500 REAL_VALUE_FROM_INT (d, TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i),
501 TYPE_MODE (type));
502 else
503 REAL_VALUE_FROM_UNSIGNED_INT (d, TREE_INT_CST_LOW (i),
504 TREE_INT_CST_HIGH (i), TYPE_MODE (type));
505 return d;
508 /* Given a tree representing an integer constant I, return a tree
509 representing the same value as a floating-point constant of type TYPE. */
511 tree
512 build_real_from_int_cst (tree type, tree i)
514 tree v;
515 int overflow = TREE_OVERFLOW (i);
517 v = build_real (type, real_value_from_int_cst (type, i));
519 TREE_OVERFLOW (v) |= overflow;
520 TREE_CONSTANT_OVERFLOW (v) |= overflow;
521 return v;
524 /* Return a newly constructed STRING_CST node whose value is
525 the LEN characters at STR.
526 The TREE_TYPE is not initialized. */
528 tree
529 build_string (int len, const char *str)
531 tree s = make_node (STRING_CST);
533 TREE_STRING_LENGTH (s) = len;
534 TREE_STRING_POINTER (s) = ggc_alloc_string (str, len);
536 return s;
539 /* Return a newly constructed COMPLEX_CST node whose value is
540 specified by the real and imaginary parts REAL and IMAG.
541 Both REAL and IMAG should be constant nodes. TYPE, if specified,
542 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
544 tree
545 build_complex (tree type, tree real, tree imag)
547 tree t = make_node (COMPLEX_CST);
549 TREE_REALPART (t) = real;
550 TREE_IMAGPART (t) = imag;
551 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
552 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
553 TREE_CONSTANT_OVERFLOW (t)
554 = TREE_CONSTANT_OVERFLOW (real) | TREE_CONSTANT_OVERFLOW (imag);
555 return t;
558 /* Build a newly constructed TREE_VEC node of length LEN. */
560 tree
561 make_tree_vec (int len)
563 tree t;
564 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
566 #ifdef GATHER_STATISTICS
567 tree_node_counts[(int) vec_kind]++;
568 tree_node_sizes[(int) vec_kind] += length;
569 #endif
571 t = ggc_alloc_tree (length);
573 memset (t, 0, length);
574 TREE_SET_CODE (t, TREE_VEC);
575 TREE_VEC_LENGTH (t) = len;
577 return t;
580 /* Return 1 if EXPR is the integer constant zero or a complex constant
581 of zero. */
584 integer_zerop (tree expr)
586 STRIP_NOPS (expr);
588 return ((TREE_CODE (expr) == INTEGER_CST
589 && ! TREE_CONSTANT_OVERFLOW (expr)
590 && TREE_INT_CST_LOW (expr) == 0
591 && TREE_INT_CST_HIGH (expr) == 0)
592 || (TREE_CODE (expr) == COMPLEX_CST
593 && integer_zerop (TREE_REALPART (expr))
594 && integer_zerop (TREE_IMAGPART (expr))));
597 /* Return 1 if EXPR is the integer constant one or the corresponding
598 complex constant. */
601 integer_onep (tree expr)
603 STRIP_NOPS (expr);
605 return ((TREE_CODE (expr) == INTEGER_CST
606 && ! TREE_CONSTANT_OVERFLOW (expr)
607 && TREE_INT_CST_LOW (expr) == 1
608 && TREE_INT_CST_HIGH (expr) == 0)
609 || (TREE_CODE (expr) == COMPLEX_CST
610 && integer_onep (TREE_REALPART (expr))
611 && integer_zerop (TREE_IMAGPART (expr))));
614 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
615 it contains. Likewise for the corresponding complex constant. */
618 integer_all_onesp (tree expr)
620 int prec;
621 int uns;
623 STRIP_NOPS (expr);
625 if (TREE_CODE (expr) == COMPLEX_CST
626 && integer_all_onesp (TREE_REALPART (expr))
627 && integer_zerop (TREE_IMAGPART (expr)))
628 return 1;
630 else if (TREE_CODE (expr) != INTEGER_CST
631 || TREE_CONSTANT_OVERFLOW (expr))
632 return 0;
634 uns = TREE_UNSIGNED (TREE_TYPE (expr));
635 if (!uns)
636 return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
637 && TREE_INT_CST_HIGH (expr) == -1);
639 /* Note that using TYPE_PRECISION here is wrong. We care about the
640 actual bits, not the (arbitrary) range of the type. */
641 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr)));
642 if (prec >= HOST_BITS_PER_WIDE_INT)
644 HOST_WIDE_INT high_value;
645 int shift_amount;
647 shift_amount = prec - HOST_BITS_PER_WIDE_INT;
649 if (shift_amount > HOST_BITS_PER_WIDE_INT)
650 /* Can not handle precisions greater than twice the host int size. */
651 abort ();
652 else if (shift_amount == HOST_BITS_PER_WIDE_INT)
653 /* Shifting by the host word size is undefined according to the ANSI
654 standard, so we must handle this as a special case. */
655 high_value = -1;
656 else
657 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
659 return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
660 && TREE_INT_CST_HIGH (expr) == high_value);
662 else
663 return TREE_INT_CST_LOW (expr) == ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
666 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
667 one bit on). */
670 integer_pow2p (tree expr)
672 int prec;
673 HOST_WIDE_INT high, low;
675 STRIP_NOPS (expr);
677 if (TREE_CODE (expr) == COMPLEX_CST
678 && integer_pow2p (TREE_REALPART (expr))
679 && integer_zerop (TREE_IMAGPART (expr)))
680 return 1;
682 if (TREE_CODE (expr) != INTEGER_CST || TREE_CONSTANT_OVERFLOW (expr))
683 return 0;
685 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
686 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
687 high = TREE_INT_CST_HIGH (expr);
688 low = TREE_INT_CST_LOW (expr);
690 /* First clear all bits that are beyond the type's precision in case
691 we've been sign extended. */
693 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
695 else if (prec > HOST_BITS_PER_WIDE_INT)
696 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
697 else
699 high = 0;
700 if (prec < HOST_BITS_PER_WIDE_INT)
701 low &= ~((HOST_WIDE_INT) (-1) << prec);
704 if (high == 0 && low == 0)
705 return 0;
707 return ((high == 0 && (low & (low - 1)) == 0)
708 || (low == 0 && (high & (high - 1)) == 0));
711 /* Return 1 if EXPR is an integer constant other than zero or a
712 complex constant other than zero. */
715 integer_nonzerop (tree expr)
717 STRIP_NOPS (expr);
719 return ((TREE_CODE (expr) == INTEGER_CST
720 && ! TREE_CONSTANT_OVERFLOW (expr)
721 && (TREE_INT_CST_LOW (expr) != 0
722 || TREE_INT_CST_HIGH (expr) != 0))
723 || (TREE_CODE (expr) == COMPLEX_CST
724 && (integer_nonzerop (TREE_REALPART (expr))
725 || integer_nonzerop (TREE_IMAGPART (expr)))));
728 /* Return the power of two represented by a tree node known to be a
729 power of two. */
732 tree_log2 (tree expr)
734 int prec;
735 HOST_WIDE_INT high, low;
737 STRIP_NOPS (expr);
739 if (TREE_CODE (expr) == COMPLEX_CST)
740 return tree_log2 (TREE_REALPART (expr));
742 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
743 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
745 high = TREE_INT_CST_HIGH (expr);
746 low = TREE_INT_CST_LOW (expr);
748 /* First clear all bits that are beyond the type's precision in case
749 we've been sign extended. */
751 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
753 else if (prec > HOST_BITS_PER_WIDE_INT)
754 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
755 else
757 high = 0;
758 if (prec < HOST_BITS_PER_WIDE_INT)
759 low &= ~((HOST_WIDE_INT) (-1) << prec);
762 return (high != 0 ? HOST_BITS_PER_WIDE_INT + exact_log2 (high)
763 : exact_log2 (low));
766 /* Similar, but return the largest integer Y such that 2 ** Y is less
767 than or equal to EXPR. */
770 tree_floor_log2 (tree expr)
772 int prec;
773 HOST_WIDE_INT high, low;
775 STRIP_NOPS (expr);
777 if (TREE_CODE (expr) == COMPLEX_CST)
778 return tree_log2 (TREE_REALPART (expr));
780 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
781 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
783 high = TREE_INT_CST_HIGH (expr);
784 low = TREE_INT_CST_LOW (expr);
786 /* First clear all bits that are beyond the type's precision in case
787 we've been sign extended. Ignore if type's precision hasn't been set
788 since what we are doing is setting it. */
790 if (prec == 2 * HOST_BITS_PER_WIDE_INT || prec == 0)
792 else if (prec > HOST_BITS_PER_WIDE_INT)
793 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
794 else
796 high = 0;
797 if (prec < HOST_BITS_PER_WIDE_INT)
798 low &= ~((HOST_WIDE_INT) (-1) << prec);
801 return (high != 0 ? HOST_BITS_PER_WIDE_INT + floor_log2 (high)
802 : floor_log2 (low));
805 /* Return 1 if EXPR is the real constant zero. */
808 real_zerop (tree expr)
810 STRIP_NOPS (expr);
812 return ((TREE_CODE (expr) == REAL_CST
813 && ! TREE_CONSTANT_OVERFLOW (expr)
814 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0))
815 || (TREE_CODE (expr) == COMPLEX_CST
816 && real_zerop (TREE_REALPART (expr))
817 && real_zerop (TREE_IMAGPART (expr))));
820 /* Return 1 if EXPR is the real constant one in real or complex form. */
823 real_onep (tree expr)
825 STRIP_NOPS (expr);
827 return ((TREE_CODE (expr) == REAL_CST
828 && ! TREE_CONSTANT_OVERFLOW (expr)
829 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1))
830 || (TREE_CODE (expr) == COMPLEX_CST
831 && real_onep (TREE_REALPART (expr))
832 && real_zerop (TREE_IMAGPART (expr))));
835 /* Return 1 if EXPR is the real constant two. */
838 real_twop (tree expr)
840 STRIP_NOPS (expr);
842 return ((TREE_CODE (expr) == REAL_CST
843 && ! TREE_CONSTANT_OVERFLOW (expr)
844 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2))
845 || (TREE_CODE (expr) == COMPLEX_CST
846 && real_twop (TREE_REALPART (expr))
847 && real_zerop (TREE_IMAGPART (expr))));
850 /* Return 1 if EXPR is the real constant minus one. */
853 real_minus_onep (tree expr)
855 STRIP_NOPS (expr);
857 return ((TREE_CODE (expr) == REAL_CST
858 && ! TREE_CONSTANT_OVERFLOW (expr)
859 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconstm1))
860 || (TREE_CODE (expr) == COMPLEX_CST
861 && real_minus_onep (TREE_REALPART (expr))
862 && real_zerop (TREE_IMAGPART (expr))));
865 /* Nonzero if EXP is a constant or a cast of a constant. */
868 really_constant_p (tree exp)
870 /* This is not quite the same as STRIP_NOPS. It does more. */
871 while (TREE_CODE (exp) == NOP_EXPR
872 || TREE_CODE (exp) == CONVERT_EXPR
873 || TREE_CODE (exp) == NON_LVALUE_EXPR)
874 exp = TREE_OPERAND (exp, 0);
875 return TREE_CONSTANT (exp);
878 /* Return first list element whose TREE_VALUE is ELEM.
879 Return 0 if ELEM is not in LIST. */
881 tree
882 value_member (tree elem, tree list)
884 while (list)
886 if (elem == TREE_VALUE (list))
887 return list;
888 list = TREE_CHAIN (list);
890 return NULL_TREE;
893 /* Return first list element whose TREE_PURPOSE is ELEM.
894 Return 0 if ELEM is not in LIST. */
896 tree
897 purpose_member (tree elem, tree list)
899 while (list)
901 if (elem == TREE_PURPOSE (list))
902 return list;
903 list = TREE_CHAIN (list);
905 return NULL_TREE;
908 /* Return first list element whose BINFO_TYPE is ELEM.
909 Return 0 if ELEM is not in LIST. */
911 tree
912 binfo_member (tree elem, tree list)
914 while (list)
916 if (elem == BINFO_TYPE (list))
917 return list;
918 list = TREE_CHAIN (list);
920 return NULL_TREE;
923 /* Return nonzero if ELEM is part of the chain CHAIN. */
926 chain_member (tree elem, tree chain)
928 while (chain)
930 if (elem == chain)
931 return 1;
932 chain = TREE_CHAIN (chain);
935 return 0;
938 /* Return the length of a chain of nodes chained through TREE_CHAIN.
939 We expect a null pointer to mark the end of the chain.
940 This is the Lisp primitive `length'. */
943 list_length (tree t)
945 tree tail;
946 int len = 0;
948 for (tail = t; tail; tail = TREE_CHAIN (tail))
949 len++;
951 return len;
954 /* Returns the number of FIELD_DECLs in TYPE. */
957 fields_length (tree type)
959 tree t = TYPE_FIELDS (type);
960 int count = 0;
962 for (; t; t = TREE_CHAIN (t))
963 if (TREE_CODE (t) == FIELD_DECL)
964 ++count;
966 return count;
969 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
970 by modifying the last node in chain 1 to point to chain 2.
971 This is the Lisp primitive `nconc'. */
973 tree
974 chainon (tree op1, tree op2)
976 tree t1;
978 if (!op1)
979 return op2;
980 if (!op2)
981 return op1;
983 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
984 continue;
985 TREE_CHAIN (t1) = op2;
987 #ifdef ENABLE_TREE_CHECKING
989 tree t2;
990 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
991 if (t2 == t1)
992 abort (); /* Circularity created. */
994 #endif
996 return op1;
999 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
1001 tree
1002 tree_last (tree chain)
1004 tree next;
1005 if (chain)
1006 while ((next = TREE_CHAIN (chain)))
1007 chain = next;
1008 return chain;
1011 /* Reverse the order of elements in the chain T,
1012 and return the new head of the chain (old last element). */
1014 tree
1015 nreverse (tree t)
1017 tree prev = 0, decl, next;
1018 for (decl = t; decl; decl = next)
1020 next = TREE_CHAIN (decl);
1021 TREE_CHAIN (decl) = prev;
1022 prev = decl;
1024 return prev;
1027 /* Return a newly created TREE_LIST node whose
1028 purpose and value fields are PARM and VALUE. */
1030 tree
1031 build_tree_list (tree parm, tree value)
1033 tree t = make_node (TREE_LIST);
1034 TREE_PURPOSE (t) = parm;
1035 TREE_VALUE (t) = value;
1036 return t;
1039 /* Return a newly created TREE_LIST node whose
1040 purpose and value fields are PURPOSE and VALUE
1041 and whose TREE_CHAIN is CHAIN. */
1043 tree
1044 tree_cons (tree purpose, tree value, tree chain)
1046 tree node;
1048 node = ggc_alloc_tree (sizeof (struct tree_list));
1050 memset (node, 0, sizeof (struct tree_common));
1052 #ifdef GATHER_STATISTICS
1053 tree_node_counts[(int) x_kind]++;
1054 tree_node_sizes[(int) x_kind] += sizeof (struct tree_list);
1055 #endif
1057 TREE_SET_CODE (node, TREE_LIST);
1058 TREE_CHAIN (node) = chain;
1059 TREE_PURPOSE (node) = purpose;
1060 TREE_VALUE (node) = value;
1061 return node;
1064 /* Return the first expression in a sequence of COMPOUND_EXPRs. */
1066 tree
1067 expr_first (tree expr)
1069 if (expr == NULL_TREE)
1070 return expr;
1071 while (TREE_CODE (expr) == COMPOUND_EXPR)
1072 expr = TREE_OPERAND (expr, 0);
1073 return expr;
1076 /* Return the last expression in a sequence of COMPOUND_EXPRs. */
1078 tree
1079 expr_last (tree expr)
1081 if (expr == NULL_TREE)
1082 return expr;
1083 while (TREE_CODE (expr) == COMPOUND_EXPR)
1084 expr = TREE_OPERAND (expr, 1);
1085 return expr;
1088 /* Return the number of subexpressions in a sequence of COMPOUND_EXPRs. */
1091 expr_length (tree expr)
1093 int len = 0;
1095 if (expr == NULL_TREE)
1096 return 0;
1097 for (; TREE_CODE (expr) == COMPOUND_EXPR; expr = TREE_OPERAND (expr, 1))
1098 len += expr_length (TREE_OPERAND (expr, 0));
1099 ++len;
1100 return len;
1103 /* Return the size nominally occupied by an object of type TYPE
1104 when it resides in memory. The value is measured in units of bytes,
1105 and its data type is that normally used for type sizes
1106 (which is the first type created by make_signed_type or
1107 make_unsigned_type). */
1109 tree
1110 size_in_bytes (tree type)
1112 tree t;
1114 if (type == error_mark_node)
1115 return integer_zero_node;
1117 type = TYPE_MAIN_VARIANT (type);
1118 t = TYPE_SIZE_UNIT (type);
1120 if (t == 0)
1122 (*lang_hooks.types.incomplete_type_error) (NULL_TREE, type);
1123 return size_zero_node;
1126 if (TREE_CODE (t) == INTEGER_CST)
1127 force_fit_type (t, 0);
1129 return t;
1132 /* Return the size of TYPE (in bytes) as a wide integer
1133 or return -1 if the size can vary or is larger than an integer. */
1135 HOST_WIDE_INT
1136 int_size_in_bytes (tree type)
1138 tree t;
1140 if (type == error_mark_node)
1141 return 0;
1143 type = TYPE_MAIN_VARIANT (type);
1144 t = TYPE_SIZE_UNIT (type);
1145 if (t == 0
1146 || TREE_CODE (t) != INTEGER_CST
1147 || TREE_OVERFLOW (t)
1148 || TREE_INT_CST_HIGH (t) != 0
1149 /* If the result would appear negative, it's too big to represent. */
1150 || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
1151 return -1;
1153 return TREE_INT_CST_LOW (t);
1156 /* Return the bit position of FIELD, in bits from the start of the record.
1157 This is a tree of type bitsizetype. */
1159 tree
1160 bit_position (tree field)
1162 return bit_from_pos (DECL_FIELD_OFFSET (field),
1163 DECL_FIELD_BIT_OFFSET (field));
1166 /* Likewise, but return as an integer. Abort if it cannot be represented
1167 in that way (since it could be a signed value, we don't have the option
1168 of returning -1 like int_size_in_byte can. */
1170 HOST_WIDE_INT
1171 int_bit_position (tree field)
1173 return tree_low_cst (bit_position (field), 0);
1176 /* Return the byte position of FIELD, in bytes from the start of the record.
1177 This is a tree of type sizetype. */
1179 tree
1180 byte_position (tree field)
1182 return byte_from_pos (DECL_FIELD_OFFSET (field),
1183 DECL_FIELD_BIT_OFFSET (field));
1186 /* Likewise, but return as an integer. Abort if it cannot be represented
1187 in that way (since it could be a signed value, we don't have the option
1188 of returning -1 like int_size_in_byte can. */
1190 HOST_WIDE_INT
1191 int_byte_position (tree field)
1193 return tree_low_cst (byte_position (field), 0);
1196 /* Return the strictest alignment, in bits, that T is known to have. */
1198 unsigned int
1199 expr_align (tree t)
1201 unsigned int align0, align1;
1203 switch (TREE_CODE (t))
1205 case NOP_EXPR: case CONVERT_EXPR: case NON_LVALUE_EXPR:
1206 /* If we have conversions, we know that the alignment of the
1207 object must meet each of the alignments of the types. */
1208 align0 = expr_align (TREE_OPERAND (t, 0));
1209 align1 = TYPE_ALIGN (TREE_TYPE (t));
1210 return MAX (align0, align1);
1212 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
1213 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
1214 case WITH_RECORD_EXPR: case CLEANUP_POINT_EXPR: case UNSAVE_EXPR:
1215 /* These don't change the alignment of an object. */
1216 return expr_align (TREE_OPERAND (t, 0));
1218 case COND_EXPR:
1219 /* The best we can do is say that the alignment is the least aligned
1220 of the two arms. */
1221 align0 = expr_align (TREE_OPERAND (t, 1));
1222 align1 = expr_align (TREE_OPERAND (t, 2));
1223 return MIN (align0, align1);
1225 case LABEL_DECL: case CONST_DECL:
1226 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
1227 if (DECL_ALIGN (t) != 0)
1228 return DECL_ALIGN (t);
1229 break;
1231 case FUNCTION_DECL:
1232 return FUNCTION_BOUNDARY;
1234 default:
1235 break;
1238 /* Otherwise take the alignment from that of the type. */
1239 return TYPE_ALIGN (TREE_TYPE (t));
1242 /* Return, as a tree node, the number of elements for TYPE (which is an
1243 ARRAY_TYPE) minus one. This counts only elements of the top array. */
1245 tree
1246 array_type_nelts (tree type)
1248 tree index_type, min, max;
1250 /* If they did it with unspecified bounds, then we should have already
1251 given an error about it before we got here. */
1252 if (! TYPE_DOMAIN (type))
1253 return error_mark_node;
1255 index_type = TYPE_DOMAIN (type);
1256 min = TYPE_MIN_VALUE (index_type);
1257 max = TYPE_MAX_VALUE (index_type);
1259 return (integer_zerop (min)
1260 ? max
1261 : fold (build (MINUS_EXPR, TREE_TYPE (max), max, min)));
1264 /* Return nonzero if arg is static -- a reference to an object in
1265 static storage. This is not the same as the C meaning of `static'. */
1268 staticp (tree arg)
1270 switch (TREE_CODE (arg))
1272 case FUNCTION_DECL:
1273 /* Nested functions aren't static, since taking their address
1274 involves a trampoline. */
1275 return ((decl_function_context (arg) == 0 || DECL_NO_STATIC_CHAIN (arg))
1276 && ! DECL_NON_ADDR_CONST_P (arg));
1278 case VAR_DECL:
1279 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
1280 && ! DECL_THREAD_LOCAL (arg)
1281 && ! DECL_NON_ADDR_CONST_P (arg));
1283 case CONSTRUCTOR:
1284 return TREE_STATIC (arg);
1286 case LABEL_DECL:
1287 case STRING_CST:
1288 return 1;
1290 /* If we are referencing a bitfield, we can't evaluate an
1291 ADDR_EXPR at compile time and so it isn't a constant. */
1292 case COMPONENT_REF:
1293 return (! DECL_BIT_FIELD (TREE_OPERAND (arg, 1))
1294 && staticp (TREE_OPERAND (arg, 0)));
1296 case BIT_FIELD_REF:
1297 return 0;
1299 #if 0
1300 /* This case is technically correct, but results in setting
1301 TREE_CONSTANT on ADDR_EXPRs that cannot be evaluated at
1302 compile time. */
1303 case INDIRECT_REF:
1304 return TREE_CONSTANT (TREE_OPERAND (arg, 0));
1305 #endif
1307 case ARRAY_REF:
1308 case ARRAY_RANGE_REF:
1309 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
1310 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
1311 return staticp (TREE_OPERAND (arg, 0));
1313 default:
1314 if ((unsigned int) TREE_CODE (arg)
1315 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
1316 return (*lang_hooks.staticp) (arg);
1317 else
1318 return 0;
1322 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
1323 Do this to any expression which may be used in more than one place,
1324 but must be evaluated only once.
1326 Normally, expand_expr would reevaluate the expression each time.
1327 Calling save_expr produces something that is evaluated and recorded
1328 the first time expand_expr is called on it. Subsequent calls to
1329 expand_expr just reuse the recorded value.
1331 The call to expand_expr that generates code that actually computes
1332 the value is the first call *at compile time*. Subsequent calls
1333 *at compile time* generate code to use the saved value.
1334 This produces correct result provided that *at run time* control
1335 always flows through the insns made by the first expand_expr
1336 before reaching the other places where the save_expr was evaluated.
1337 You, the caller of save_expr, must make sure this is so.
1339 Constants, and certain read-only nodes, are returned with no
1340 SAVE_EXPR because that is safe. Expressions containing placeholders
1341 are not touched; see tree.def for an explanation of what these
1342 are used for. */
1344 tree
1345 save_expr (tree expr)
1347 tree t = fold (expr);
1348 tree inner;
1350 /* If the tree evaluates to a constant, then we don't want to hide that
1351 fact (i.e. this allows further folding, and direct checks for constants).
1352 However, a read-only object that has side effects cannot be bypassed.
1353 Since it is no problem to reevaluate literals, we just return the
1354 literal node. */
1355 inner = skip_simple_arithmetic (t);
1356 if (TREE_CONSTANT (inner)
1357 || (TREE_READONLY (inner) && ! TREE_SIDE_EFFECTS (inner))
1358 || TREE_CODE (inner) == SAVE_EXPR
1359 || TREE_CODE (inner) == ERROR_MARK)
1360 return t;
1362 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
1363 it means that the size or offset of some field of an object depends on
1364 the value within another field.
1366 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
1367 and some variable since it would then need to be both evaluated once and
1368 evaluated more than once. Front-ends must assure this case cannot
1369 happen by surrounding any such subexpressions in their own SAVE_EXPR
1370 and forcing evaluation at the proper time. */
1371 if (contains_placeholder_p (inner))
1372 return t;
1374 t = build (SAVE_EXPR, TREE_TYPE (expr), t, current_function_decl, NULL_TREE);
1376 /* This expression might be placed ahead of a jump to ensure that the
1377 value was computed on both sides of the jump. So make sure it isn't
1378 eliminated as dead. */
1379 TREE_SIDE_EFFECTS (t) = 1;
1380 TREE_READONLY (t) = 1;
1381 return t;
1384 /* Look inside EXPR and into any simple arithmetic operations. Return
1385 the innermost non-arithmetic node. */
1387 tree
1388 skip_simple_arithmetic (tree expr)
1390 tree inner;
1392 /* We don't care about whether this can be used as an lvalue in this
1393 context. */
1394 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
1395 expr = TREE_OPERAND (expr, 0);
1397 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
1398 a constant, it will be more efficient to not make another SAVE_EXPR since
1399 it will allow better simplification and GCSE will be able to merge the
1400 computations if they actually occur. */
1401 inner = expr;
1402 while (1)
1404 if (TREE_CODE_CLASS (TREE_CODE (inner)) == '1')
1405 inner = TREE_OPERAND (inner, 0);
1406 else if (TREE_CODE_CLASS (TREE_CODE (inner)) == '2')
1408 if (TREE_CONSTANT (TREE_OPERAND (inner, 1)))
1409 inner = TREE_OPERAND (inner, 0);
1410 else if (TREE_CONSTANT (TREE_OPERAND (inner, 0)))
1411 inner = TREE_OPERAND (inner, 1);
1412 else
1413 break;
1415 else
1416 break;
1419 return inner;
1422 /* Return TRUE if EXPR is a SAVE_EXPR or wraps simple arithmetic around a
1423 SAVE_EXPR. Return FALSE otherwise. */
1425 bool
1426 saved_expr_p (tree expr)
1428 return TREE_CODE (skip_simple_arithmetic (expr)) == SAVE_EXPR;
1431 /* Arrange for an expression to be expanded multiple independent
1432 times. This is useful for cleanup actions, as the backend can
1433 expand them multiple times in different places. */
1435 tree
1436 unsave_expr (tree expr)
1438 tree t;
1440 /* If this is already protected, no sense in protecting it again. */
1441 if (TREE_CODE (expr) == UNSAVE_EXPR)
1442 return expr;
1444 t = build1 (UNSAVE_EXPR, TREE_TYPE (expr), expr);
1445 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (expr);
1446 return t;
1449 /* Returns the index of the first non-tree operand for CODE, or the number
1450 of operands if all are trees. */
1453 first_rtl_op (enum tree_code code)
1455 switch (code)
1457 case SAVE_EXPR:
1458 return 2;
1459 case GOTO_SUBROUTINE_EXPR:
1460 case RTL_EXPR:
1461 return 0;
1462 case WITH_CLEANUP_EXPR:
1463 return 2;
1464 default:
1465 return TREE_CODE_LENGTH (code);
1469 /* Return which tree structure is used by T. */
1471 enum tree_node_structure_enum
1472 tree_node_structure (tree t)
1474 enum tree_code code = TREE_CODE (t);
1476 switch (TREE_CODE_CLASS (code))
1478 case 'd': return TS_DECL;
1479 case 't': return TS_TYPE;
1480 case 'b': return TS_BLOCK;
1481 case 'r': case '<': case '1': case '2': case 'e': case 's':
1482 return TS_EXP;
1483 default: /* 'c' and 'x' */
1484 break;
1486 switch (code)
1488 /* 'c' cases. */
1489 case INTEGER_CST: return TS_INT_CST;
1490 case REAL_CST: return TS_REAL_CST;
1491 case COMPLEX_CST: return TS_COMPLEX;
1492 case VECTOR_CST: return TS_VECTOR;
1493 case STRING_CST: return TS_STRING;
1494 /* 'x' cases. */
1495 case ERROR_MARK: return TS_COMMON;
1496 case IDENTIFIER_NODE: return TS_IDENTIFIER;
1497 case TREE_LIST: return TS_LIST;
1498 case TREE_VEC: return TS_VEC;
1499 case PLACEHOLDER_EXPR: return TS_COMMON;
1501 default:
1502 abort ();
1506 /* Perform any modifications to EXPR required when it is unsaved. Does
1507 not recurse into EXPR's subtrees. */
1509 void
1510 unsave_expr_1 (tree expr)
1512 switch (TREE_CODE (expr))
1514 case SAVE_EXPR:
1515 if (! SAVE_EXPR_PERSISTENT_P (expr))
1516 SAVE_EXPR_RTL (expr) = 0;
1517 break;
1519 case TARGET_EXPR:
1520 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
1521 It's OK for this to happen if it was part of a subtree that
1522 isn't immediately expanded, such as operand 2 of another
1523 TARGET_EXPR. */
1524 if (TREE_OPERAND (expr, 1))
1525 break;
1527 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
1528 TREE_OPERAND (expr, 3) = NULL_TREE;
1529 break;
1531 case RTL_EXPR:
1532 /* I don't yet know how to emit a sequence multiple times. */
1533 if (RTL_EXPR_SEQUENCE (expr) != 0)
1534 abort ();
1535 break;
1537 default:
1538 break;
1542 /* Default lang hook for "unsave_expr_now". */
1544 tree
1545 lhd_unsave_expr_now (tree expr)
1547 enum tree_code code;
1549 /* There's nothing to do for NULL_TREE. */
1550 if (expr == 0)
1551 return expr;
1553 unsave_expr_1 (expr);
1555 code = TREE_CODE (expr);
1556 switch (TREE_CODE_CLASS (code))
1558 case 'c': /* a constant */
1559 case 't': /* a type node */
1560 case 'd': /* A decl node */
1561 case 'b': /* A block node */
1562 break;
1564 case 'x': /* miscellaneous: e.g., identifier, TREE_LIST or ERROR_MARK. */
1565 if (code == TREE_LIST)
1567 lhd_unsave_expr_now (TREE_VALUE (expr));
1568 lhd_unsave_expr_now (TREE_CHAIN (expr));
1570 break;
1572 case 'e': /* an expression */
1573 case 'r': /* a reference */
1574 case 's': /* an expression with side effects */
1575 case '<': /* a comparison expression */
1576 case '2': /* a binary arithmetic expression */
1577 case '1': /* a unary arithmetic expression */
1579 int i;
1581 for (i = first_rtl_op (code) - 1; i >= 0; i--)
1582 lhd_unsave_expr_now (TREE_OPERAND (expr, i));
1584 break;
1586 default:
1587 abort ();
1590 return expr;
1593 /* Return 0 if it is safe to evaluate EXPR multiple times,
1594 return 1 if it is safe if EXPR is unsaved afterward, or
1595 return 2 if it is completely unsafe.
1597 This assumes that CALL_EXPRs and TARGET_EXPRs are never replicated in
1598 an expression tree, so that it safe to unsave them and the surrounding
1599 context will be correct.
1601 SAVE_EXPRs basically *only* appear replicated in an expression tree,
1602 occasionally across the whole of a function. It is therefore only
1603 safe to unsave a SAVE_EXPR if you know that all occurrences appear
1604 below the UNSAVE_EXPR.
1606 RTL_EXPRs consume their rtl during evaluation. It is therefore
1607 never possible to unsave them. */
1610 unsafe_for_reeval (tree expr)
1612 int unsafeness = 0;
1613 enum tree_code code;
1614 int i, tmp, tmp2;
1615 tree exp;
1616 int first_rtl;
1618 if (expr == NULL_TREE)
1619 return 1;
1621 code = TREE_CODE (expr);
1622 first_rtl = first_rtl_op (code);
1624 switch (code)
1626 case SAVE_EXPR:
1627 case RTL_EXPR:
1628 return 2;
1630 case TREE_LIST:
1631 for (exp = expr; exp != 0; exp = TREE_CHAIN (exp))
1633 tmp = unsafe_for_reeval (TREE_VALUE (exp));
1634 unsafeness = MAX (tmp, unsafeness);
1637 return unsafeness;
1639 case CALL_EXPR:
1640 tmp2 = unsafe_for_reeval (TREE_OPERAND (expr, 0));
1641 tmp = unsafe_for_reeval (TREE_OPERAND (expr, 1));
1642 return MAX (MAX (tmp, 1), tmp2);
1644 case TARGET_EXPR:
1645 unsafeness = 1;
1646 break;
1648 default:
1649 tmp = (*lang_hooks.unsafe_for_reeval) (expr);
1650 if (tmp >= 0)
1651 return tmp;
1652 break;
1655 switch (TREE_CODE_CLASS (code))
1657 case 'c': /* a constant */
1658 case 't': /* a type node */
1659 case 'x': /* something random, like an identifier or an ERROR_MARK. */
1660 case 'd': /* A decl node */
1661 case 'b': /* A block node */
1662 return 0;
1664 case 'e': /* an expression */
1665 case 'r': /* a reference */
1666 case 's': /* an expression with side effects */
1667 case '<': /* a comparison expression */
1668 case '2': /* a binary arithmetic expression */
1669 case '1': /* a unary arithmetic expression */
1670 for (i = first_rtl - 1; i >= 0; i--)
1672 tmp = unsafe_for_reeval (TREE_OPERAND (expr, i));
1673 unsafeness = MAX (tmp, unsafeness);
1676 return unsafeness;
1678 default:
1679 return 2;
1683 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
1684 or offset that depends on a field within a record. */
1686 bool
1687 contains_placeholder_p (tree exp)
1689 enum tree_code code;
1690 int result;
1692 if (!exp)
1693 return 0;
1695 /* If we have a WITH_RECORD_EXPR, it "cancels" any PLACEHOLDER_EXPR
1696 in it since it is supplying a value for it. */
1697 code = TREE_CODE (exp);
1698 if (code == WITH_RECORD_EXPR)
1699 return 0;
1700 else if (code == PLACEHOLDER_EXPR)
1701 return 1;
1703 switch (TREE_CODE_CLASS (code))
1705 case 'r':
1706 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
1707 position computations since they will be converted into a
1708 WITH_RECORD_EXPR involving the reference, which will assume
1709 here will be valid. */
1710 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
1712 case 'x':
1713 if (code == TREE_LIST)
1714 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
1715 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
1716 break;
1718 case '1':
1719 case '2': case '<':
1720 case 'e':
1721 switch (code)
1723 case COMPOUND_EXPR:
1724 /* Ignoring the first operand isn't quite right, but works best. */
1725 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
1727 case RTL_EXPR:
1728 case CONSTRUCTOR:
1729 return 0;
1731 case COND_EXPR:
1732 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
1733 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
1734 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
1736 case SAVE_EXPR:
1737 /* If we already know this doesn't have a placeholder, don't
1738 check again. */
1739 if (SAVE_EXPR_NOPLACEHOLDER (exp) || SAVE_EXPR_RTL (exp) != 0)
1740 return 0;
1742 SAVE_EXPR_NOPLACEHOLDER (exp) = 1;
1743 result = CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
1744 if (result)
1745 SAVE_EXPR_NOPLACEHOLDER (exp) = 0;
1747 return result;
1749 case CALL_EXPR:
1750 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
1752 default:
1753 break;
1756 switch (TREE_CODE_LENGTH (code))
1758 case 1:
1759 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
1760 case 2:
1761 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
1762 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
1763 default:
1764 return 0;
1767 default:
1768 return 0;
1770 return 0;
1773 /* Return 1 if any part of the computation of TYPE involves a PLACEHOLDER_EXPR.
1774 This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and field
1775 positions. */
1777 bool
1778 type_contains_placeholder_p (tree type)
1780 /* If the size contains a placeholder or the parent type (component type in
1781 the case of arrays) type involves a placeholder, this type does. */
1782 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
1783 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
1784 || (TREE_TYPE (type) != 0
1785 && type_contains_placeholder_p (TREE_TYPE (type))))
1786 return 1;
1788 /* Now do type-specific checks. Note that the last part of the check above
1789 greatly limits what we have to do below. */
1790 switch (TREE_CODE (type))
1792 case VOID_TYPE:
1793 case COMPLEX_TYPE:
1794 case VECTOR_TYPE:
1795 case ENUMERAL_TYPE:
1796 case BOOLEAN_TYPE:
1797 case CHAR_TYPE:
1798 case POINTER_TYPE:
1799 case OFFSET_TYPE:
1800 case REFERENCE_TYPE:
1801 case METHOD_TYPE:
1802 case FILE_TYPE:
1803 case FUNCTION_TYPE:
1804 return 0;
1806 case INTEGER_TYPE:
1807 case REAL_TYPE:
1808 /* Here we just check the bounds. */
1809 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
1810 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
1812 case ARRAY_TYPE:
1813 case SET_TYPE:
1814 /* We're already checked the component type (TREE_TYPE), so just check
1815 the index type. */
1816 return type_contains_placeholder_p (TYPE_DOMAIN (type));
1818 case RECORD_TYPE:
1819 case UNION_TYPE:
1820 case QUAL_UNION_TYPE:
1822 static tree seen_types = 0;
1823 tree field;
1824 bool ret = 0;
1826 /* We have to be careful here that we don't end up in infinite
1827 recursions due to a field of a type being a pointer to that type
1828 or to a mutually-recursive type. So we store a list of record
1829 types that we've seen and see if this type is in them. To save
1830 memory, we don't use a list for just one type. Here we check
1831 whether we've seen this type before and store it if not. */
1832 if (seen_types == 0)
1833 seen_types = type;
1834 else if (TREE_CODE (seen_types) != TREE_LIST)
1836 if (seen_types == type)
1837 return 0;
1839 seen_types = tree_cons (NULL_TREE, type,
1840 build_tree_list (NULL_TREE, seen_types));
1842 else
1844 if (value_member (type, seen_types) != 0)
1845 return 0;
1847 seen_types = tree_cons (NULL_TREE, type, seen_types);
1850 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1851 if (TREE_CODE (field) == FIELD_DECL
1852 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
1853 || (TREE_CODE (type) == QUAL_UNION_TYPE
1854 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
1855 || type_contains_placeholder_p (TREE_TYPE (field))))
1857 ret = true;
1858 break;
1861 /* Now remove us from seen_types and return the result. */
1862 if (seen_types == type)
1863 seen_types = 0;
1864 else
1865 seen_types = TREE_CHAIN (seen_types);
1867 return ret;
1870 default:
1871 abort ();
1875 /* Return 1 if EXP contains any expressions that produce cleanups for an
1876 outer scope to deal with. Used by fold. */
1879 has_cleanups (tree exp)
1881 int i, nops, cmp;
1883 if (! TREE_SIDE_EFFECTS (exp))
1884 return 0;
1886 switch (TREE_CODE (exp))
1888 case TARGET_EXPR:
1889 case GOTO_SUBROUTINE_EXPR:
1890 case WITH_CLEANUP_EXPR:
1891 return 1;
1893 case CLEANUP_POINT_EXPR:
1894 return 0;
1896 case CALL_EXPR:
1897 for (exp = TREE_OPERAND (exp, 1); exp; exp = TREE_CHAIN (exp))
1899 cmp = has_cleanups (TREE_VALUE (exp));
1900 if (cmp)
1901 return cmp;
1903 return 0;
1905 default:
1906 break;
1909 /* This general rule works for most tree codes. All exceptions should be
1910 handled above. If this is a language-specific tree code, we can't
1911 trust what might be in the operand, so say we don't know
1912 the situation. */
1913 if ((int) TREE_CODE (exp) >= (int) LAST_AND_UNUSED_TREE_CODE)
1914 return -1;
1916 nops = first_rtl_op (TREE_CODE (exp));
1917 for (i = 0; i < nops; i++)
1918 if (TREE_OPERAND (exp, i) != 0)
1920 int type = TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, i)));
1921 if (type == 'e' || type == '<' || type == '1' || type == '2'
1922 || type == 'r' || type == 's')
1924 cmp = has_cleanups (TREE_OPERAND (exp, i));
1925 if (cmp)
1926 return cmp;
1930 return 0;
1933 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
1934 return a tree with all occurrences of references to F in a
1935 PLACEHOLDER_EXPR replaced by R. Note that we assume here that EXP
1936 contains only arithmetic expressions or a CALL_EXPR with a
1937 PLACEHOLDER_EXPR occurring only in its arglist. */
1939 tree
1940 substitute_in_expr (tree exp, tree f, tree r)
1942 enum tree_code code = TREE_CODE (exp);
1943 tree op0, op1, op2;
1944 tree new;
1945 tree inner;
1947 switch (TREE_CODE_CLASS (code))
1949 case 'c':
1950 case 'd':
1951 return exp;
1953 case 'x':
1954 if (code == PLACEHOLDER_EXPR)
1955 return exp;
1956 else if (code == TREE_LIST)
1958 op0 = (TREE_CHAIN (exp) == 0
1959 ? 0 : substitute_in_expr (TREE_CHAIN (exp), f, r));
1960 op1 = substitute_in_expr (TREE_VALUE (exp), f, r);
1961 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
1962 return exp;
1964 return tree_cons (TREE_PURPOSE (exp), op1, op0);
1967 abort ();
1969 case '1':
1970 case '2':
1971 case '<':
1972 case 'e':
1973 switch (TREE_CODE_LENGTH (code))
1975 case 1:
1976 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
1977 if (op0 == TREE_OPERAND (exp, 0))
1978 return exp;
1980 if (code == NON_LVALUE_EXPR)
1981 return op0;
1983 new = fold (build1 (code, TREE_TYPE (exp), op0));
1984 break;
1986 case 2:
1987 /* An RTL_EXPR cannot contain a PLACEHOLDER_EXPR; a CONSTRUCTOR
1988 could, but we don't support it. */
1989 if (code == RTL_EXPR)
1990 return exp;
1991 else if (code == CONSTRUCTOR)
1992 abort ();
1994 op0 = TREE_OPERAND (exp, 0);
1995 op1 = TREE_OPERAND (exp, 1);
1996 if (CONTAINS_PLACEHOLDER_P (op0))
1997 op0 = substitute_in_expr (op0, f, r);
1998 if (CONTAINS_PLACEHOLDER_P (op1))
1999 op1 = substitute_in_expr (op1, f, r);
2001 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
2002 return exp;
2004 new = fold (build (code, TREE_TYPE (exp), op0, op1));
2005 break;
2007 case 3:
2008 /* It cannot be that anything inside a SAVE_EXPR contains a
2009 PLACEHOLDER_EXPR. */
2010 if (code == SAVE_EXPR)
2011 return exp;
2013 else if (code == CALL_EXPR)
2015 op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
2016 if (op1 == TREE_OPERAND (exp, 1))
2017 return exp;
2019 return build (code, TREE_TYPE (exp),
2020 TREE_OPERAND (exp, 0), op1, NULL_TREE);
2023 else if (code != COND_EXPR)
2024 abort ();
2026 op0 = TREE_OPERAND (exp, 0);
2027 op1 = TREE_OPERAND (exp, 1);
2028 op2 = TREE_OPERAND (exp, 2);
2030 if (CONTAINS_PLACEHOLDER_P (op0))
2031 op0 = substitute_in_expr (op0, f, r);
2032 if (CONTAINS_PLACEHOLDER_P (op1))
2033 op1 = substitute_in_expr (op1, f, r);
2034 if (CONTAINS_PLACEHOLDER_P (op2))
2035 op2 = substitute_in_expr (op2, f, r);
2037 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2038 && op2 == TREE_OPERAND (exp, 2))
2039 return exp;
2041 new = fold (build (code, TREE_TYPE (exp), op0, op1, op2));
2042 break;
2044 default:
2045 abort ();
2048 break;
2050 case 'r':
2051 switch (code)
2053 case COMPONENT_REF:
2054 /* If this expression is getting a value from a PLACEHOLDER_EXPR
2055 and it is the right field, replace it with R. */
2056 for (inner = TREE_OPERAND (exp, 0);
2057 TREE_CODE_CLASS (TREE_CODE (inner)) == 'r';
2058 inner = TREE_OPERAND (inner, 0))
2060 if (TREE_CODE (inner) == PLACEHOLDER_EXPR
2061 && TREE_OPERAND (exp, 1) == f)
2062 return r;
2064 /* If this expression hasn't been completed let, leave it
2065 alone. */
2066 if (TREE_CODE (inner) == PLACEHOLDER_EXPR
2067 && TREE_TYPE (inner) == 0)
2068 return exp;
2070 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2071 if (op0 == TREE_OPERAND (exp, 0))
2072 return exp;
2074 new = fold (build (code, TREE_TYPE (exp), op0,
2075 TREE_OPERAND (exp, 1)));
2076 break;
2078 case BIT_FIELD_REF:
2079 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2080 op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
2081 op2 = substitute_in_expr (TREE_OPERAND (exp, 2), f, r);
2082 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2083 && op2 == TREE_OPERAND (exp, 2))
2084 return exp;
2086 new = fold (build (code, TREE_TYPE (exp), op0, op1, op2));
2087 break;
2089 case INDIRECT_REF:
2090 case BUFFER_REF:
2091 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2092 if (op0 == TREE_OPERAND (exp, 0))
2093 return exp;
2095 new = fold (build1 (code, TREE_TYPE (exp), op0));
2096 break;
2098 default:
2099 abort ();
2101 break;
2103 default:
2104 abort ();
2107 TREE_READONLY (new) = TREE_READONLY (exp);
2108 return new;
2111 /* Stabilize a reference so that we can use it any number of times
2112 without causing its operands to be evaluated more than once.
2113 Returns the stabilized reference. This works by means of save_expr,
2114 so see the caveats in the comments about save_expr.
2116 Also allows conversion expressions whose operands are references.
2117 Any other kind of expression is returned unchanged. */
2119 tree
2120 stabilize_reference (tree ref)
2122 tree result;
2123 enum tree_code code = TREE_CODE (ref);
2125 switch (code)
2127 case VAR_DECL:
2128 case PARM_DECL:
2129 case RESULT_DECL:
2130 /* No action is needed in this case. */
2131 return ref;
2133 case NOP_EXPR:
2134 case CONVERT_EXPR:
2135 case FLOAT_EXPR:
2136 case FIX_TRUNC_EXPR:
2137 case FIX_FLOOR_EXPR:
2138 case FIX_ROUND_EXPR:
2139 case FIX_CEIL_EXPR:
2140 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
2141 break;
2143 case INDIRECT_REF:
2144 result = build_nt (INDIRECT_REF,
2145 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
2146 break;
2148 case COMPONENT_REF:
2149 result = build_nt (COMPONENT_REF,
2150 stabilize_reference (TREE_OPERAND (ref, 0)),
2151 TREE_OPERAND (ref, 1));
2152 break;
2154 case BIT_FIELD_REF:
2155 result = build_nt (BIT_FIELD_REF,
2156 stabilize_reference (TREE_OPERAND (ref, 0)),
2157 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2158 stabilize_reference_1 (TREE_OPERAND (ref, 2)));
2159 break;
2161 case ARRAY_REF:
2162 result = build_nt (ARRAY_REF,
2163 stabilize_reference (TREE_OPERAND (ref, 0)),
2164 stabilize_reference_1 (TREE_OPERAND (ref, 1)));
2165 break;
2167 case ARRAY_RANGE_REF:
2168 result = build_nt (ARRAY_RANGE_REF,
2169 stabilize_reference (TREE_OPERAND (ref, 0)),
2170 stabilize_reference_1 (TREE_OPERAND (ref, 1)));
2171 break;
2173 case COMPOUND_EXPR:
2174 /* We cannot wrap the first expression in a SAVE_EXPR, as then
2175 it wouldn't be ignored. This matters when dealing with
2176 volatiles. */
2177 return stabilize_reference_1 (ref);
2179 case RTL_EXPR:
2180 result = build1 (INDIRECT_REF, TREE_TYPE (ref),
2181 save_expr (build1 (ADDR_EXPR,
2182 build_pointer_type (TREE_TYPE (ref)),
2183 ref)));
2184 break;
2186 /* If arg isn't a kind of lvalue we recognize, make no change.
2187 Caller should recognize the error for an invalid lvalue. */
2188 default:
2189 return ref;
2191 case ERROR_MARK:
2192 return error_mark_node;
2195 TREE_TYPE (result) = TREE_TYPE (ref);
2196 TREE_READONLY (result) = TREE_READONLY (ref);
2197 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
2198 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
2200 return result;
2203 /* Subroutine of stabilize_reference; this is called for subtrees of
2204 references. Any expression with side-effects must be put in a SAVE_EXPR
2205 to ensure that it is only evaluated once.
2207 We don't put SAVE_EXPR nodes around everything, because assigning very
2208 simple expressions to temporaries causes us to miss good opportunities
2209 for optimizations. Among other things, the opportunity to fold in the
2210 addition of a constant into an addressing mode often gets lost, e.g.
2211 "y[i+1] += x;". In general, we take the approach that we should not make
2212 an assignment unless we are forced into it - i.e., that any non-side effect
2213 operator should be allowed, and that cse should take care of coalescing
2214 multiple utterances of the same expression should that prove fruitful. */
2216 tree
2217 stabilize_reference_1 (tree e)
2219 tree result;
2220 enum tree_code code = TREE_CODE (e);
2222 /* We cannot ignore const expressions because it might be a reference
2223 to a const array but whose index contains side-effects. But we can
2224 ignore things that are actual constant or that already have been
2225 handled by this function. */
2227 if (TREE_CONSTANT (e) || code == SAVE_EXPR)
2228 return e;
2230 switch (TREE_CODE_CLASS (code))
2232 case 'x':
2233 case 't':
2234 case 'd':
2235 case 'b':
2236 case '<':
2237 case 's':
2238 case 'e':
2239 case 'r':
2240 /* If the expression has side-effects, then encase it in a SAVE_EXPR
2241 so that it will only be evaluated once. */
2242 /* The reference (r) and comparison (<) classes could be handled as
2243 below, but it is generally faster to only evaluate them once. */
2244 if (TREE_SIDE_EFFECTS (e))
2245 return save_expr (e);
2246 return e;
2248 case 'c':
2249 /* Constants need no processing. In fact, we should never reach
2250 here. */
2251 return e;
2253 case '2':
2254 /* Division is slow and tends to be compiled with jumps,
2255 especially the division by powers of 2 that is often
2256 found inside of an array reference. So do it just once. */
2257 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
2258 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
2259 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
2260 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
2261 return save_expr (e);
2262 /* Recursively stabilize each operand. */
2263 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
2264 stabilize_reference_1 (TREE_OPERAND (e, 1)));
2265 break;
2267 case '1':
2268 /* Recursively stabilize each operand. */
2269 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
2270 break;
2272 default:
2273 abort ();
2276 TREE_TYPE (result) = TREE_TYPE (e);
2277 TREE_READONLY (result) = TREE_READONLY (e);
2278 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
2279 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
2281 return result;
2284 /* Low-level constructors for expressions. */
2286 /* Build an expression of code CODE, data type TYPE,
2287 and operands as specified by the arguments ARG1 and following arguments.
2288 Expressions and reference nodes can be created this way.
2289 Constants, decls, types and misc nodes cannot be. */
2291 tree
2292 build (enum tree_code code, tree tt, ...)
2294 tree t;
2295 int length;
2296 int i;
2297 int fro;
2298 int constant;
2299 va_list p;
2301 va_start (p, tt);
2303 t = make_node (code);
2304 length = TREE_CODE_LENGTH (code);
2305 TREE_TYPE (t) = tt;
2307 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
2308 result based on those same flags for the arguments. But if the
2309 arguments aren't really even `tree' expressions, we shouldn't be trying
2310 to do this. */
2311 fro = first_rtl_op (code);
2313 /* Expressions without side effects may be constant if their
2314 arguments are as well. */
2315 constant = (TREE_CODE_CLASS (code) == '<'
2316 || TREE_CODE_CLASS (code) == '1'
2317 || TREE_CODE_CLASS (code) == '2'
2318 || TREE_CODE_CLASS (code) == 'c');
2320 if (length == 2)
2322 /* This is equivalent to the loop below, but faster. */
2323 tree arg0 = va_arg (p, tree);
2324 tree arg1 = va_arg (p, tree);
2326 TREE_OPERAND (t, 0) = arg0;
2327 TREE_OPERAND (t, 1) = arg1;
2328 TREE_READONLY (t) = 1;
2329 if (arg0 && fro > 0)
2331 if (TREE_SIDE_EFFECTS (arg0))
2332 TREE_SIDE_EFFECTS (t) = 1;
2333 if (!TREE_READONLY (arg0))
2334 TREE_READONLY (t) = 0;
2335 if (!TREE_CONSTANT (arg0))
2336 constant = 0;
2339 if (arg1 && fro > 1)
2341 if (TREE_SIDE_EFFECTS (arg1))
2342 TREE_SIDE_EFFECTS (t) = 1;
2343 if (!TREE_READONLY (arg1))
2344 TREE_READONLY (t) = 0;
2345 if (!TREE_CONSTANT (arg1))
2346 constant = 0;
2349 else if (length == 1)
2351 tree arg0 = va_arg (p, tree);
2353 /* The only one-operand cases we handle here are those with side-effects.
2354 Others are handled with build1. So don't bother checked if the
2355 arg has side-effects since we'll already have set it.
2357 ??? This really should use build1 too. */
2358 if (TREE_CODE_CLASS (code) != 's')
2359 abort ();
2360 TREE_OPERAND (t, 0) = arg0;
2362 else
2364 for (i = 0; i < length; i++)
2366 tree operand = va_arg (p, tree);
2368 TREE_OPERAND (t, i) = operand;
2369 if (operand && fro > i)
2371 if (TREE_SIDE_EFFECTS (operand))
2372 TREE_SIDE_EFFECTS (t) = 1;
2373 if (!TREE_CONSTANT (operand))
2374 constant = 0;
2378 va_end (p);
2380 TREE_CONSTANT (t) = constant;
2381 return t;
2384 /* Same as above, but only builds for unary operators.
2385 Saves lions share of calls to `build'; cuts down use
2386 of varargs, which is expensive for RISC machines. */
2388 tree
2389 build1 (enum tree_code code, tree type, tree node)
2391 int length = sizeof (struct tree_exp);
2392 #ifdef GATHER_STATISTICS
2393 tree_node_kind kind;
2394 #endif
2395 tree t;
2397 #ifdef GATHER_STATISTICS
2398 switch (TREE_CODE_CLASS (code))
2400 case 's': /* an expression with side effects */
2401 kind = s_kind;
2402 break;
2403 case 'r': /* a reference */
2404 kind = r_kind;
2405 break;
2406 default:
2407 kind = e_kind;
2408 break;
2411 tree_node_counts[(int) kind]++;
2412 tree_node_sizes[(int) kind] += length;
2413 #endif
2415 #ifdef ENABLE_CHECKING
2416 if (TREE_CODE_CLASS (code) == '2'
2417 || TREE_CODE_CLASS (code) == '<'
2418 || TREE_CODE_LENGTH (code) != 1)
2419 abort ();
2420 #endif /* ENABLE_CHECKING */
2422 t = ggc_alloc_tree (length);
2424 memset (t, 0, sizeof (struct tree_common));
2426 TREE_SET_CODE (t, code);
2428 TREE_TYPE (t) = type;
2429 TREE_COMPLEXITY (t) = 0;
2430 TREE_OPERAND (t, 0) = node;
2431 if (node && first_rtl_op (code) != 0)
2433 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
2434 TREE_READONLY (t) = TREE_READONLY (node);
2437 if (TREE_CODE_CLASS (code) == 's')
2438 TREE_SIDE_EFFECTS (t) = 1;
2439 else switch (code)
2441 case INIT_EXPR:
2442 case MODIFY_EXPR:
2443 case VA_ARG_EXPR:
2444 case RTL_EXPR:
2445 case PREDECREMENT_EXPR:
2446 case PREINCREMENT_EXPR:
2447 case POSTDECREMENT_EXPR:
2448 case POSTINCREMENT_EXPR:
2449 /* All of these have side-effects, no matter what their
2450 operands are. */
2451 TREE_SIDE_EFFECTS (t) = 1;
2452 TREE_READONLY (t) = 0;
2453 break;
2455 case INDIRECT_REF:
2456 /* Whether a dereference is readonly has nothing to do with whether
2457 its operand is readonly. */
2458 TREE_READONLY (t) = 0;
2459 break;
2461 default:
2462 if (TREE_CODE_CLASS (code) == '1' && node && TREE_CONSTANT (node))
2463 TREE_CONSTANT (t) = 1;
2464 break;
2467 return t;
2470 /* Similar except don't specify the TREE_TYPE
2471 and leave the TREE_SIDE_EFFECTS as 0.
2472 It is permissible for arguments to be null,
2473 or even garbage if their values do not matter. */
2475 tree
2476 build_nt (enum tree_code code, ...)
2478 tree t;
2479 int length;
2480 int i;
2481 va_list p;
2483 va_start (p, code);
2485 t = make_node (code);
2486 length = TREE_CODE_LENGTH (code);
2488 for (i = 0; i < length; i++)
2489 TREE_OPERAND (t, i) = va_arg (p, tree);
2491 va_end (p);
2492 return t;
2495 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
2496 We do NOT enter this node in any sort of symbol table.
2498 layout_decl is used to set up the decl's storage layout.
2499 Other slots are initialized to 0 or null pointers. */
2501 tree
2502 build_decl (enum tree_code code, tree name, tree type)
2504 tree t;
2506 t = make_node (code);
2508 /* if (type == error_mark_node)
2509 type = integer_type_node; */
2510 /* That is not done, deliberately, so that having error_mark_node
2511 as the type can suppress useless errors in the use of this variable. */
2513 DECL_NAME (t) = name;
2514 TREE_TYPE (t) = type;
2516 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
2517 layout_decl (t, 0);
2518 else if (code == FUNCTION_DECL)
2519 DECL_MODE (t) = FUNCTION_MODE;
2521 return t;
2524 /* BLOCK nodes are used to represent the structure of binding contours
2525 and declarations, once those contours have been exited and their contents
2526 compiled. This information is used for outputting debugging info. */
2528 tree
2529 build_block (tree vars, tree tags ATTRIBUTE_UNUSED, tree subblocks,
2530 tree supercontext, tree chain)
2532 tree block = make_node (BLOCK);
2534 BLOCK_VARS (block) = vars;
2535 BLOCK_SUBBLOCKS (block) = subblocks;
2536 BLOCK_SUPERCONTEXT (block) = supercontext;
2537 BLOCK_CHAIN (block) = chain;
2538 return block;
2541 /* EXPR_WITH_FILE_LOCATION are used to keep track of the exact
2542 location where an expression or an identifier were encountered. It
2543 is necessary for languages where the frontend parser will handle
2544 recursively more than one file (Java is one of them). */
2546 tree
2547 build_expr_wfl (tree node, const char *file, int line, int col)
2549 static const char *last_file = 0;
2550 static tree last_filenode = NULL_TREE;
2551 tree wfl = make_node (EXPR_WITH_FILE_LOCATION);
2553 EXPR_WFL_NODE (wfl) = node;
2554 EXPR_WFL_SET_LINECOL (wfl, line, col);
2555 if (file != last_file)
2557 last_file = file;
2558 last_filenode = file ? get_identifier (file) : NULL_TREE;
2561 EXPR_WFL_FILENAME_NODE (wfl) = last_filenode;
2562 if (node)
2564 TREE_SIDE_EFFECTS (wfl) = TREE_SIDE_EFFECTS (node);
2565 TREE_TYPE (wfl) = TREE_TYPE (node);
2568 return wfl;
2571 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
2572 is ATTRIBUTE. */
2574 tree
2575 build_decl_attribute_variant (tree ddecl, tree attribute)
2577 DECL_ATTRIBUTES (ddecl) = attribute;
2578 return ddecl;
2581 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
2582 is ATTRIBUTE.
2584 Record such modified types already made so we don't make duplicates. */
2586 tree
2587 build_type_attribute_variant (tree ttype, tree attribute)
2589 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
2591 unsigned int hashcode;
2592 tree ntype;
2594 ntype = copy_node (ttype);
2596 TYPE_POINTER_TO (ntype) = 0;
2597 TYPE_REFERENCE_TO (ntype) = 0;
2598 TYPE_ATTRIBUTES (ntype) = attribute;
2600 /* Create a new main variant of TYPE. */
2601 TYPE_MAIN_VARIANT (ntype) = ntype;
2602 TYPE_NEXT_VARIANT (ntype) = 0;
2603 set_type_quals (ntype, TYPE_UNQUALIFIED);
2605 hashcode = (TYPE_HASH (TREE_CODE (ntype))
2606 + TYPE_HASH (TREE_TYPE (ntype))
2607 + attribute_hash_list (attribute));
2609 switch (TREE_CODE (ntype))
2611 case FUNCTION_TYPE:
2612 hashcode += TYPE_HASH (TYPE_ARG_TYPES (ntype));
2613 break;
2614 case ARRAY_TYPE:
2615 hashcode += TYPE_HASH (TYPE_DOMAIN (ntype));
2616 break;
2617 case INTEGER_TYPE:
2618 hashcode += TYPE_HASH (TYPE_MAX_VALUE (ntype));
2619 break;
2620 case REAL_TYPE:
2621 hashcode += TYPE_HASH (TYPE_PRECISION (ntype));
2622 break;
2623 default:
2624 break;
2627 ntype = type_hash_canon (hashcode, ntype);
2628 ttype = build_qualified_type (ntype, TYPE_QUALS (ttype));
2631 return ttype;
2634 /* Return nonzero if IDENT is a valid name for attribute ATTR,
2635 or zero if not.
2637 We try both `text' and `__text__', ATTR may be either one. */
2638 /* ??? It might be a reasonable simplification to require ATTR to be only
2639 `text'. One might then also require attribute lists to be stored in
2640 their canonicalized form. */
2643 is_attribute_p (const char *attr, tree ident)
2645 int ident_len, attr_len;
2646 const char *p;
2648 if (TREE_CODE (ident) != IDENTIFIER_NODE)
2649 return 0;
2651 if (strcmp (attr, IDENTIFIER_POINTER (ident)) == 0)
2652 return 1;
2654 p = IDENTIFIER_POINTER (ident);
2655 ident_len = strlen (p);
2656 attr_len = strlen (attr);
2658 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
2659 if (attr[0] == '_')
2661 if (attr[1] != '_'
2662 || attr[attr_len - 2] != '_'
2663 || attr[attr_len - 1] != '_')
2664 abort ();
2665 if (ident_len == attr_len - 4
2666 && strncmp (attr + 2, p, attr_len - 4) == 0)
2667 return 1;
2669 else
2671 if (ident_len == attr_len + 4
2672 && p[0] == '_' && p[1] == '_'
2673 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
2674 && strncmp (attr, p + 2, attr_len) == 0)
2675 return 1;
2678 return 0;
2681 /* Given an attribute name and a list of attributes, return a pointer to the
2682 attribute's list element if the attribute is part of the list, or NULL_TREE
2683 if not found. If the attribute appears more than once, this only
2684 returns the first occurrence; the TREE_CHAIN of the return value should
2685 be passed back in if further occurrences are wanted. */
2687 tree
2688 lookup_attribute (const char *attr_name, tree list)
2690 tree l;
2692 for (l = list; l; l = TREE_CHAIN (l))
2694 if (TREE_CODE (TREE_PURPOSE (l)) != IDENTIFIER_NODE)
2695 abort ();
2696 if (is_attribute_p (attr_name, TREE_PURPOSE (l)))
2697 return l;
2700 return NULL_TREE;
2703 /* Return an attribute list that is the union of a1 and a2. */
2705 tree
2706 merge_attributes (tree a1, tree a2)
2708 tree attributes;
2710 /* Either one unset? Take the set one. */
2712 if ((attributes = a1) == 0)
2713 attributes = a2;
2715 /* One that completely contains the other? Take it. */
2717 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
2719 if (attribute_list_contained (a2, a1))
2720 attributes = a2;
2721 else
2723 /* Pick the longest list, and hang on the other list. */
2725 if (list_length (a1) < list_length (a2))
2726 attributes = a2, a2 = a1;
2728 for (; a2 != 0; a2 = TREE_CHAIN (a2))
2730 tree a;
2731 for (a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
2732 attributes);
2733 a != NULL_TREE;
2734 a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
2735 TREE_CHAIN (a)))
2737 if (simple_cst_equal (TREE_VALUE (a), TREE_VALUE (a2)) == 1)
2738 break;
2740 if (a == NULL_TREE)
2742 a1 = copy_node (a2);
2743 TREE_CHAIN (a1) = attributes;
2744 attributes = a1;
2749 return attributes;
2752 /* Given types T1 and T2, merge their attributes and return
2753 the result. */
2755 tree
2756 merge_type_attributes (tree t1, tree t2)
2758 return merge_attributes (TYPE_ATTRIBUTES (t1),
2759 TYPE_ATTRIBUTES (t2));
2762 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
2763 the result. */
2765 tree
2766 merge_decl_attributes (tree olddecl, tree newdecl)
2768 return merge_attributes (DECL_ATTRIBUTES (olddecl),
2769 DECL_ATTRIBUTES (newdecl));
2772 #ifdef TARGET_DLLIMPORT_DECL_ATTRIBUTES
2774 /* Specialization of merge_decl_attributes for various Windows targets.
2776 This handles the following situation:
2778 __declspec (dllimport) int foo;
2779 int foo;
2781 The second instance of `foo' nullifies the dllimport. */
2783 tree
2784 merge_dllimport_decl_attributes (tree old, tree new)
2786 tree a;
2787 int delete_dllimport_p;
2789 old = DECL_ATTRIBUTES (old);
2790 new = DECL_ATTRIBUTES (new);
2792 /* What we need to do here is remove from `old' dllimport if it doesn't
2793 appear in `new'. dllimport behaves like extern: if a declaration is
2794 marked dllimport and a definition appears later, then the object
2795 is not dllimport'd. */
2796 if (lookup_attribute ("dllimport", old) != NULL_TREE
2797 && lookup_attribute ("dllimport", new) == NULL_TREE)
2798 delete_dllimport_p = 1;
2799 else
2800 delete_dllimport_p = 0;
2802 a = merge_attributes (old, new);
2804 if (delete_dllimport_p)
2806 tree prev, t;
2808 /* Scan the list for dllimport and delete it. */
2809 for (prev = NULL_TREE, t = a; t; prev = t, t = TREE_CHAIN (t))
2811 if (is_attribute_p ("dllimport", TREE_PURPOSE (t)))
2813 if (prev == NULL_TREE)
2814 a = TREE_CHAIN (a);
2815 else
2816 TREE_CHAIN (prev) = TREE_CHAIN (t);
2817 break;
2822 return a;
2825 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
2827 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
2828 of the various TYPE_QUAL values. */
2830 static void
2831 set_type_quals (tree type, int type_quals)
2833 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
2834 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
2835 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
2838 /* Return a version of the TYPE, qualified as indicated by the
2839 TYPE_QUALS, if one exists. If no qualified version exists yet,
2840 return NULL_TREE. */
2842 tree
2843 get_qualified_type (tree type, int type_quals)
2845 tree t;
2847 /* Search the chain of variants to see if there is already one there just
2848 like the one we need to have. If so, use that existing one. We must
2849 preserve the TYPE_NAME, since there is code that depends on this. */
2850 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
2851 if (TYPE_QUALS (t) == type_quals && TYPE_NAME (t) == TYPE_NAME (type)
2852 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
2853 && attribute_list_equal (TYPE_ATTRIBUTES (t), TYPE_ATTRIBUTES (type)))
2854 return t;
2856 return NULL_TREE;
2859 /* Like get_qualified_type, but creates the type if it does not
2860 exist. This function never returns NULL_TREE. */
2862 tree
2863 build_qualified_type (tree type, int type_quals)
2865 tree t;
2867 /* See if we already have the appropriate qualified variant. */
2868 t = get_qualified_type (type, type_quals);
2870 /* If not, build it. */
2871 if (!t)
2873 t = build_type_copy (type);
2874 set_type_quals (t, type_quals);
2877 return t;
2880 /* Create a new variant of TYPE, equivalent but distinct.
2881 This is so the caller can modify it. */
2883 tree
2884 build_type_copy (tree type)
2886 tree t, m = TYPE_MAIN_VARIANT (type);
2888 t = copy_node (type);
2890 TYPE_POINTER_TO (t) = 0;
2891 TYPE_REFERENCE_TO (t) = 0;
2893 /* Add this type to the chain of variants of TYPE. */
2894 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
2895 TYPE_NEXT_VARIANT (m) = t;
2897 return t;
2900 /* Hashing of types so that we don't make duplicates.
2901 The entry point is `type_hash_canon'. */
2903 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
2904 with types in the TREE_VALUE slots), by adding the hash codes
2905 of the individual types. */
2907 unsigned int
2908 type_hash_list (tree list)
2910 unsigned int hashcode;
2911 tree tail;
2913 for (hashcode = 0, tail = list; tail; tail = TREE_CHAIN (tail))
2914 hashcode += TYPE_HASH (TREE_VALUE (tail));
2916 return hashcode;
2919 /* These are the Hashtable callback functions. */
2921 /* Returns true if the types are equal. */
2923 static int
2924 type_hash_eq (const void *va, const void *vb)
2926 const struct type_hash *a = va, *b = vb;
2927 if (a->hash == b->hash
2928 && TREE_CODE (a->type) == TREE_CODE (b->type)
2929 && TREE_TYPE (a->type) == TREE_TYPE (b->type)
2930 && attribute_list_equal (TYPE_ATTRIBUTES (a->type),
2931 TYPE_ATTRIBUTES (b->type))
2932 && TYPE_ALIGN (a->type) == TYPE_ALIGN (b->type)
2933 && (TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
2934 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
2935 TYPE_MAX_VALUE (b->type)))
2936 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
2937 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
2938 TYPE_MIN_VALUE (b->type)))
2939 /* Note that TYPE_DOMAIN is TYPE_ARG_TYPES for FUNCTION_TYPE. */
2940 && (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
2941 || (TYPE_DOMAIN (a->type)
2942 && TREE_CODE (TYPE_DOMAIN (a->type)) == TREE_LIST
2943 && TYPE_DOMAIN (b->type)
2944 && TREE_CODE (TYPE_DOMAIN (b->type)) == TREE_LIST
2945 && type_list_equal (TYPE_DOMAIN (a->type),
2946 TYPE_DOMAIN (b->type)))))
2947 return 1;
2948 return 0;
2951 /* Return the cached hash value. */
2953 static hashval_t
2954 type_hash_hash (const void *item)
2956 return ((const struct type_hash *) item)->hash;
2959 /* Look in the type hash table for a type isomorphic to TYPE.
2960 If one is found, return it. Otherwise return 0. */
2962 tree
2963 type_hash_lookup (unsigned int hashcode, tree type)
2965 struct type_hash *h, in;
2967 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
2968 must call that routine before comparing TYPE_ALIGNs. */
2969 layout_type (type);
2971 in.hash = hashcode;
2972 in.type = type;
2974 h = htab_find_with_hash (type_hash_table, &in, hashcode);
2975 if (h)
2976 return h->type;
2977 return NULL_TREE;
2980 /* Add an entry to the type-hash-table
2981 for a type TYPE whose hash code is HASHCODE. */
2983 void
2984 type_hash_add (unsigned int hashcode, tree type)
2986 struct type_hash *h;
2987 void **loc;
2989 h = ggc_alloc (sizeof (struct type_hash));
2990 h->hash = hashcode;
2991 h->type = type;
2992 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
2993 *(struct type_hash **) loc = h;
2996 /* Given TYPE, and HASHCODE its hash code, return the canonical
2997 object for an identical type if one already exists.
2998 Otherwise, return TYPE, and record it as the canonical object
2999 if it is a permanent object.
3001 To use this function, first create a type of the sort you want.
3002 Then compute its hash code from the fields of the type that
3003 make it different from other similar types.
3004 Then call this function and use the value.
3005 This function frees the type you pass in if it is a duplicate. */
3007 /* Set to 1 to debug without canonicalization. Never set by program. */
3008 int debug_no_type_hash = 0;
3010 tree
3011 type_hash_canon (unsigned int hashcode, tree type)
3013 tree t1;
3015 if (debug_no_type_hash)
3016 return type;
3018 /* See if the type is in the hash table already. If so, return it.
3019 Otherwise, add the type. */
3020 t1 = type_hash_lookup (hashcode, type);
3021 if (t1 != 0)
3023 #ifdef GATHER_STATISTICS
3024 tree_node_counts[(int) t_kind]--;
3025 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type);
3026 #endif
3027 return t1;
3029 else
3031 type_hash_add (hashcode, type);
3032 return type;
3036 /* See if the data pointed to by the type hash table is marked. We consider
3037 it marked if the type is marked or if a debug type number or symbol
3038 table entry has been made for the type. This reduces the amount of
3039 debugging output and eliminates that dependency of the debug output on
3040 the number of garbage collections. */
3042 static int
3043 type_hash_marked_p (const void *p)
3045 tree type = ((struct type_hash *) p)->type;
3047 return ggc_marked_p (type) || TYPE_SYMTAB_POINTER (type);
3050 static void
3051 print_type_hash_statistics (void)
3053 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
3054 (long) htab_size (type_hash_table),
3055 (long) htab_elements (type_hash_table),
3056 htab_collisions (type_hash_table));
3059 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
3060 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
3061 by adding the hash codes of the individual attributes. */
3063 unsigned int
3064 attribute_hash_list (tree list)
3066 unsigned int hashcode;
3067 tree tail;
3069 for (hashcode = 0, tail = list; tail; tail = TREE_CHAIN (tail))
3070 /* ??? Do we want to add in TREE_VALUE too? */
3071 hashcode += TYPE_HASH (TREE_PURPOSE (tail));
3072 return hashcode;
3075 /* Given two lists of attributes, return true if list l2 is
3076 equivalent to l1. */
3079 attribute_list_equal (tree l1, tree l2)
3081 return attribute_list_contained (l1, l2)
3082 && attribute_list_contained (l2, l1);
3085 /* Given two lists of attributes, return true if list L2 is
3086 completely contained within L1. */
3087 /* ??? This would be faster if attribute names were stored in a canonicalized
3088 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
3089 must be used to show these elements are equivalent (which they are). */
3090 /* ??? It's not clear that attributes with arguments will always be handled
3091 correctly. */
3094 attribute_list_contained (tree l1, tree l2)
3096 tree t1, t2;
3098 /* First check the obvious, maybe the lists are identical. */
3099 if (l1 == l2)
3100 return 1;
3102 /* Maybe the lists are similar. */
3103 for (t1 = l1, t2 = l2;
3104 t1 != 0 && t2 != 0
3105 && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
3106 && TREE_VALUE (t1) == TREE_VALUE (t2);
3107 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2));
3109 /* Maybe the lists are equal. */
3110 if (t1 == 0 && t2 == 0)
3111 return 1;
3113 for (; t2 != 0; t2 = TREE_CHAIN (t2))
3115 tree attr;
3116 for (attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)), l1);
3117 attr != NULL_TREE;
3118 attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
3119 TREE_CHAIN (attr)))
3121 if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) == 1)
3122 break;
3125 if (attr == 0)
3126 return 0;
3128 if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) != 1)
3129 return 0;
3132 return 1;
3135 /* Given two lists of types
3136 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
3137 return 1 if the lists contain the same types in the same order.
3138 Also, the TREE_PURPOSEs must match. */
3141 type_list_equal (tree l1, tree l2)
3143 tree t1, t2;
3145 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
3146 if (TREE_VALUE (t1) != TREE_VALUE (t2)
3147 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
3148 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
3149 && (TREE_TYPE (TREE_PURPOSE (t1))
3150 == TREE_TYPE (TREE_PURPOSE (t2))))))
3151 return 0;
3153 return t1 == t2;
3156 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
3157 given by TYPE. If the argument list accepts variable arguments,
3158 then this function counts only the ordinary arguments. */
3161 type_num_arguments (tree type)
3163 int i = 0;
3164 tree t;
3166 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
3167 /* If the function does not take a variable number of arguments,
3168 the last element in the list will have type `void'. */
3169 if (VOID_TYPE_P (TREE_VALUE (t)))
3170 break;
3171 else
3172 ++i;
3174 return i;
3177 /* Nonzero if integer constants T1 and T2
3178 represent the same constant value. */
3181 tree_int_cst_equal (tree t1, tree t2)
3183 if (t1 == t2)
3184 return 1;
3186 if (t1 == 0 || t2 == 0)
3187 return 0;
3189 if (TREE_CODE (t1) == INTEGER_CST
3190 && TREE_CODE (t2) == INTEGER_CST
3191 && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
3192 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
3193 return 1;
3195 return 0;
3198 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
3199 The precise way of comparison depends on their data type. */
3202 tree_int_cst_lt (tree t1, tree t2)
3204 if (t1 == t2)
3205 return 0;
3207 if (TREE_UNSIGNED (TREE_TYPE (t1)) != TREE_UNSIGNED (TREE_TYPE (t2)))
3209 int t1_sgn = tree_int_cst_sgn (t1);
3210 int t2_sgn = tree_int_cst_sgn (t2);
3212 if (t1_sgn < t2_sgn)
3213 return 1;
3214 else if (t1_sgn > t2_sgn)
3215 return 0;
3216 /* Otherwise, both are non-negative, so we compare them as
3217 unsigned just in case one of them would overflow a signed
3218 type. */
3220 else if (! TREE_UNSIGNED (TREE_TYPE (t1)))
3221 return INT_CST_LT (t1, t2);
3223 return INT_CST_LT_UNSIGNED (t1, t2);
3226 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
3229 tree_int_cst_compare (tree t1, tree t2)
3231 if (tree_int_cst_lt (t1, t2))
3232 return -1;
3233 else if (tree_int_cst_lt (t2, t1))
3234 return 1;
3235 else
3236 return 0;
3239 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
3240 the host. If POS is zero, the value can be represented in a single
3241 HOST_WIDE_INT. If POS is nonzero, the value must be positive and can
3242 be represented in a single unsigned HOST_WIDE_INT. */
3245 host_integerp (tree t, int pos)
3247 return (TREE_CODE (t) == INTEGER_CST
3248 && ! TREE_OVERFLOW (t)
3249 && ((TREE_INT_CST_HIGH (t) == 0
3250 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
3251 || (! pos && TREE_INT_CST_HIGH (t) == -1
3252 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0
3253 && ! TREE_UNSIGNED (TREE_TYPE (t)))
3254 || (pos && TREE_INT_CST_HIGH (t) == 0)));
3257 /* Return the HOST_WIDE_INT least significant bits of T if it is an
3258 INTEGER_CST and there is no overflow. POS is nonzero if the result must
3259 be positive. Abort if we cannot satisfy the above conditions. */
3261 HOST_WIDE_INT
3262 tree_low_cst (tree t, int pos)
3264 if (host_integerp (t, pos))
3265 return TREE_INT_CST_LOW (t);
3266 else
3267 abort ();
3270 /* Return the most significant bit of the integer constant T. */
3273 tree_int_cst_msb (tree t)
3275 int prec;
3276 HOST_WIDE_INT h;
3277 unsigned HOST_WIDE_INT l;
3279 /* Note that using TYPE_PRECISION here is wrong. We care about the
3280 actual bits, not the (arbitrary) range of the type. */
3281 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t))) - 1;
3282 rshift_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t), prec,
3283 2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0);
3284 return (l & 1) == 1;
3287 /* Return an indication of the sign of the integer constant T.
3288 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
3289 Note that -1 will never be returned it T's type is unsigned. */
3292 tree_int_cst_sgn (tree t)
3294 if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
3295 return 0;
3296 else if (TREE_UNSIGNED (TREE_TYPE (t)))
3297 return 1;
3298 else if (TREE_INT_CST_HIGH (t) < 0)
3299 return -1;
3300 else
3301 return 1;
3304 /* Compare two constructor-element-type constants. Return 1 if the lists
3305 are known to be equal; otherwise return 0. */
3308 simple_cst_list_equal (tree l1, tree l2)
3310 while (l1 != NULL_TREE && l2 != NULL_TREE)
3312 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
3313 return 0;
3315 l1 = TREE_CHAIN (l1);
3316 l2 = TREE_CHAIN (l2);
3319 return l1 == l2;
3322 /* Return truthvalue of whether T1 is the same tree structure as T2.
3323 Return 1 if they are the same.
3324 Return 0 if they are understandably different.
3325 Return -1 if either contains tree structure not understood by
3326 this function. */
3329 simple_cst_equal (tree t1, tree t2)
3331 enum tree_code code1, code2;
3332 int cmp;
3333 int i;
3335 if (t1 == t2)
3336 return 1;
3337 if (t1 == 0 || t2 == 0)
3338 return 0;
3340 code1 = TREE_CODE (t1);
3341 code2 = TREE_CODE (t2);
3343 if (code1 == NOP_EXPR || code1 == CONVERT_EXPR || code1 == NON_LVALUE_EXPR)
3345 if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
3346 || code2 == NON_LVALUE_EXPR)
3347 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3348 else
3349 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
3352 else if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
3353 || code2 == NON_LVALUE_EXPR)
3354 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
3356 if (code1 != code2)
3357 return 0;
3359 switch (code1)
3361 case INTEGER_CST:
3362 return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
3363 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
3365 case REAL_CST:
3366 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
3368 case STRING_CST:
3369 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3370 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3371 TREE_STRING_LENGTH (t1)));
3373 case CONSTRUCTOR:
3374 if (CONSTRUCTOR_ELTS (t1) == CONSTRUCTOR_ELTS (t2))
3375 return 1;
3376 else
3377 abort ();
3379 case SAVE_EXPR:
3380 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3382 case CALL_EXPR:
3383 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3384 if (cmp <= 0)
3385 return cmp;
3386 return
3387 simple_cst_list_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
3389 case TARGET_EXPR:
3390 /* Special case: if either target is an unallocated VAR_DECL,
3391 it means that it's going to be unified with whatever the
3392 TARGET_EXPR is really supposed to initialize, so treat it
3393 as being equivalent to anything. */
3394 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
3395 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
3396 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
3397 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
3398 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
3399 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
3400 cmp = 1;
3401 else
3402 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3404 if (cmp <= 0)
3405 return cmp;
3407 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
3409 case WITH_CLEANUP_EXPR:
3410 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3411 if (cmp <= 0)
3412 return cmp;
3414 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
3416 case COMPONENT_REF:
3417 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
3418 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3420 return 0;
3422 case VAR_DECL:
3423 case PARM_DECL:
3424 case CONST_DECL:
3425 case FUNCTION_DECL:
3426 return 0;
3428 default:
3429 break;
3432 /* This general rule works for most tree codes. All exceptions should be
3433 handled above. If this is a language-specific tree code, we can't
3434 trust what might be in the operand, so say we don't know
3435 the situation. */
3436 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
3437 return -1;
3439 switch (TREE_CODE_CLASS (code1))
3441 case '1':
3442 case '2':
3443 case '<':
3444 case 'e':
3445 case 'r':
3446 case 's':
3447 cmp = 1;
3448 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
3450 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
3451 if (cmp <= 0)
3452 return cmp;
3455 return cmp;
3457 default:
3458 return -1;
3462 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
3463 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
3464 than U, respectively. */
3467 compare_tree_int (tree t, unsigned HOST_WIDE_INT u)
3469 if (tree_int_cst_sgn (t) < 0)
3470 return -1;
3471 else if (TREE_INT_CST_HIGH (t) != 0)
3472 return 1;
3473 else if (TREE_INT_CST_LOW (t) == u)
3474 return 0;
3475 else if (TREE_INT_CST_LOW (t) < u)
3476 return -1;
3477 else
3478 return 1;
3481 /* Generate a hash value for an expression. This can be used iteratively
3482 by passing a previous result as the "val" argument.
3484 This function is intended to produce the same hash for expressions which
3485 would compare equal using operand_equal_p. */
3487 hashval_t
3488 iterative_hash_expr (tree t, hashval_t val)
3490 int i;
3491 enum tree_code code;
3492 char class;
3494 if (t == NULL_TREE)
3495 return iterative_hash_object (t, val);
3497 code = TREE_CODE (t);
3498 class = TREE_CODE_CLASS (code);
3500 if (class == 'd')
3502 /* Decls we can just compare by pointer. */
3503 val = iterative_hash_object (t, val);
3505 else if (class == 'c')
3507 /* Alas, constants aren't shared, so we can't rely on pointer
3508 identity. */
3509 if (code == INTEGER_CST)
3511 val = iterative_hash_object (TREE_INT_CST_LOW (t), val);
3512 val = iterative_hash_object (TREE_INT_CST_HIGH (t), val);
3514 else if (code == REAL_CST)
3515 val = iterative_hash (TREE_REAL_CST_PTR (t),
3516 sizeof (REAL_VALUE_TYPE), val);
3517 else if (code == STRING_CST)
3518 val = iterative_hash (TREE_STRING_POINTER (t),
3519 TREE_STRING_LENGTH (t), val);
3520 else if (code == COMPLEX_CST)
3522 val = iterative_hash_expr (TREE_REALPART (t), val);
3523 val = iterative_hash_expr (TREE_IMAGPART (t), val);
3525 else if (code == VECTOR_CST)
3526 val = iterative_hash_expr (TREE_VECTOR_CST_ELTS (t), val);
3527 else
3528 abort ();
3530 else if (IS_EXPR_CODE_CLASS (class))
3532 val = iterative_hash_object (code, val);
3534 if (code == NOP_EXPR || code == CONVERT_EXPR
3535 || code == NON_LVALUE_EXPR)
3536 val = iterative_hash_object (TREE_TYPE (t), val);
3538 if (code == PLUS_EXPR || code == MULT_EXPR || code == MIN_EXPR
3539 || code == MAX_EXPR || code == BIT_IOR_EXPR || code == BIT_XOR_EXPR
3540 || code == BIT_AND_EXPR || code == NE_EXPR || code == EQ_EXPR)
3542 /* It's a commutative expression. We want to hash it the same
3543 however it appears. We do this by first hashing both operands
3544 and then rehashing based on the order of their independent
3545 hashes. */
3546 hashval_t one = iterative_hash_expr (TREE_OPERAND (t, 0), 0);
3547 hashval_t two = iterative_hash_expr (TREE_OPERAND (t, 1), 0);
3548 hashval_t t;
3550 if (one > two)
3551 t = one, one = two, two = t;
3553 val = iterative_hash_object (one, val);
3554 val = iterative_hash_object (two, val);
3556 else
3557 for (i = first_rtl_op (code) - 1; i >= 0; --i)
3558 val = iterative_hash_expr (TREE_OPERAND (t, i), val);
3560 else if (code == TREE_LIST)
3562 /* A list of expressions, for a CALL_EXPR or as the elements of a
3563 VECTOR_CST. */
3564 for (; t; t = TREE_CHAIN (t))
3565 val = iterative_hash_expr (TREE_VALUE (t), val);
3567 else
3568 abort ();
3570 return val;
3573 /* Constructors for pointer, array and function types.
3574 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
3575 constructed by language-dependent code, not here.) */
3577 /* Construct, lay out and return the type of pointers to TO_TYPE
3578 with mode MODE. If such a type has already been constructed,
3579 reuse it. */
3581 tree
3582 build_pointer_type_for_mode (tree to_type, enum machine_mode mode)
3584 tree t = TYPE_POINTER_TO (to_type);
3586 /* First, if we already have a type for pointers to TO_TYPE, use it. */
3587 if (t != 0 && mode == ptr_mode)
3588 return t;
3590 t = make_node (POINTER_TYPE);
3592 TREE_TYPE (t) = to_type;
3593 TYPE_MODE (t) = mode;
3595 /* Record this type as the pointer to TO_TYPE. */
3596 if (mode == ptr_mode)
3597 TYPE_POINTER_TO (to_type) = t;
3599 /* Lay out the type. This function has many callers that are concerned
3600 with expression-construction, and this simplifies them all.
3601 Also, it guarantees the TYPE_SIZE is in the same obstack as the type. */
3602 layout_type (t);
3604 return t;
3607 /* By default build pointers in ptr_mode. */
3609 tree
3610 build_pointer_type (tree to_type)
3612 return build_pointer_type_for_mode (to_type, ptr_mode);
3615 /* Construct, lay out and return the type of references to TO_TYPE
3616 with mode MODE. If such a type has already been constructed,
3617 reuse it. */
3619 tree
3620 build_reference_type_for_mode (tree to_type, enum machine_mode mode)
3622 tree t = TYPE_REFERENCE_TO (to_type);
3624 /* First, if we already have a type for pointers to TO_TYPE, use it. */
3625 if (t != 0 && mode == ptr_mode)
3626 return t;
3628 t = make_node (REFERENCE_TYPE);
3630 TREE_TYPE (t) = to_type;
3631 TYPE_MODE (t) = mode;
3633 /* Record this type as the pointer to TO_TYPE. */
3634 if (mode == ptr_mode)
3635 TYPE_REFERENCE_TO (to_type) = t;
3637 layout_type (t);
3639 return t;
3643 /* Build the node for the type of references-to-TO_TYPE by default
3644 in ptr_mode. */
3646 tree
3647 build_reference_type (tree to_type)
3649 return build_reference_type_for_mode (to_type, ptr_mode);
3652 /* Build a type that is compatible with t but has no cv quals anywhere
3653 in its type, thus
3655 const char *const *const * -> char ***. */
3657 tree
3658 build_type_no_quals (tree t)
3660 switch (TREE_CODE (t))
3662 case POINTER_TYPE:
3663 return build_pointer_type (build_type_no_quals (TREE_TYPE (t)));
3664 case REFERENCE_TYPE:
3665 return build_reference_type (build_type_no_quals (TREE_TYPE (t)));
3666 default:
3667 return TYPE_MAIN_VARIANT (t);
3671 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
3672 MAXVAL should be the maximum value in the domain
3673 (one less than the length of the array).
3675 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
3676 We don't enforce this limit, that is up to caller (e.g. language front end).
3677 The limit exists because the result is a signed type and we don't handle
3678 sizes that use more than one HOST_WIDE_INT. */
3680 tree
3681 build_index_type (tree maxval)
3683 tree itype = make_node (INTEGER_TYPE);
3685 TREE_TYPE (itype) = sizetype;
3686 TYPE_PRECISION (itype) = TYPE_PRECISION (sizetype);
3687 TYPE_MIN_VALUE (itype) = size_zero_node;
3688 TYPE_MAX_VALUE (itype) = convert (sizetype, maxval);
3689 TYPE_MODE (itype) = TYPE_MODE (sizetype);
3690 TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
3691 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (sizetype);
3692 TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
3693 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (sizetype);
3695 if (host_integerp (maxval, 1))
3696 return type_hash_canon (tree_low_cst (maxval, 1), itype);
3697 else
3698 return itype;
3701 /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
3702 ENUMERAL_TYPE, BOOLEAN_TYPE, or CHAR_TYPE), with
3703 low bound LOWVAL and high bound HIGHVAL.
3704 if TYPE==NULL_TREE, sizetype is used. */
3706 tree
3707 build_range_type (tree type, tree lowval, tree highval)
3709 tree itype = make_node (INTEGER_TYPE);
3711 TREE_TYPE (itype) = type;
3712 if (type == NULL_TREE)
3713 type = sizetype;
3715 TYPE_MIN_VALUE (itype) = convert (type, lowval);
3716 TYPE_MAX_VALUE (itype) = highval ? convert (type, highval) : NULL;
3718 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
3719 TYPE_MODE (itype) = TYPE_MODE (type);
3720 TYPE_SIZE (itype) = TYPE_SIZE (type);
3721 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
3722 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
3723 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
3725 if (host_integerp (lowval, 0) && highval != 0 && host_integerp (highval, 0))
3726 return type_hash_canon (tree_low_cst (highval, 0)
3727 - tree_low_cst (lowval, 0),
3728 itype);
3729 else
3730 return itype;
3733 /* Just like build_index_type, but takes lowval and highval instead
3734 of just highval (maxval). */
3736 tree
3737 build_index_2_type (tree lowval, tree highval)
3739 return build_range_type (sizetype, lowval, highval);
3742 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
3743 and number of elements specified by the range of values of INDEX_TYPE.
3744 If such a type has already been constructed, reuse it. */
3746 tree
3747 build_array_type (tree elt_type, tree index_type)
3749 tree t;
3750 unsigned int hashcode;
3752 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
3754 error ("arrays of functions are not meaningful");
3755 elt_type = integer_type_node;
3758 /* Make sure TYPE_POINTER_TO (elt_type) is filled in. */
3759 build_pointer_type (elt_type);
3761 /* Allocate the array after the pointer type,
3762 in case we free it in type_hash_canon. */
3763 t = make_node (ARRAY_TYPE);
3764 TREE_TYPE (t) = elt_type;
3765 TYPE_DOMAIN (t) = index_type;
3767 if (index_type == 0)
3769 return t;
3772 hashcode = TYPE_HASH (elt_type) + TYPE_HASH (index_type);
3773 t = type_hash_canon (hashcode, t);
3775 if (!COMPLETE_TYPE_P (t))
3776 layout_type (t);
3777 return t;
3780 /* Return the TYPE of the elements comprising
3781 the innermost dimension of ARRAY. */
3783 tree
3784 get_inner_array_type (tree array)
3786 tree type = TREE_TYPE (array);
3788 while (TREE_CODE (type) == ARRAY_TYPE)
3789 type = TREE_TYPE (type);
3791 return type;
3794 /* Construct, lay out and return
3795 the type of functions returning type VALUE_TYPE
3796 given arguments of types ARG_TYPES.
3797 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
3798 are data type nodes for the arguments of the function.
3799 If such a type has already been constructed, reuse it. */
3801 tree
3802 build_function_type (tree value_type, tree arg_types)
3804 tree t;
3805 unsigned int hashcode;
3807 if (TREE_CODE (value_type) == FUNCTION_TYPE)
3809 error ("function return type cannot be function");
3810 value_type = integer_type_node;
3813 /* Make a node of the sort we want. */
3814 t = make_node (FUNCTION_TYPE);
3815 TREE_TYPE (t) = value_type;
3816 TYPE_ARG_TYPES (t) = arg_types;
3818 /* If we already have such a type, use the old one and free this one. */
3819 hashcode = TYPE_HASH (value_type) + type_hash_list (arg_types);
3820 t = type_hash_canon (hashcode, t);
3822 if (!COMPLETE_TYPE_P (t))
3823 layout_type (t);
3824 return t;
3827 /* Build a function type. The RETURN_TYPE is the type returned by the
3828 function. If additional arguments are provided, they are
3829 additional argument types. The list of argument types must always
3830 be terminated by NULL_TREE. */
3832 tree
3833 build_function_type_list (tree return_type, ...)
3835 tree t, args, last;
3836 va_list p;
3838 va_start (p, return_type);
3840 t = va_arg (p, tree);
3841 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (p, tree))
3842 args = tree_cons (NULL_TREE, t, args);
3844 last = args;
3845 args = nreverse (args);
3846 TREE_CHAIN (last) = void_list_node;
3847 args = build_function_type (return_type, args);
3849 va_end (p);
3850 return args;
3853 /* Construct, lay out and return the type of methods belonging to class
3854 BASETYPE and whose arguments and values are described by TYPE.
3855 If that type exists already, reuse it.
3856 TYPE must be a FUNCTION_TYPE node. */
3858 tree
3859 build_method_type (tree basetype, tree type)
3861 tree t;
3862 unsigned int hashcode;
3864 /* Make a node of the sort we want. */
3865 t = make_node (METHOD_TYPE);
3867 if (TREE_CODE (type) != FUNCTION_TYPE)
3868 abort ();
3870 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
3871 TREE_TYPE (t) = TREE_TYPE (type);
3873 /* The actual arglist for this function includes a "hidden" argument
3874 which is "this". Put it into the list of argument types. */
3876 TYPE_ARG_TYPES (t)
3877 = tree_cons (NULL_TREE,
3878 build_pointer_type (basetype), TYPE_ARG_TYPES (type));
3880 /* If we already have such a type, use the old one and free this one. */
3881 hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
3882 t = type_hash_canon (hashcode, t);
3884 if (!COMPLETE_TYPE_P (t))
3885 layout_type (t);
3887 return t;
3890 /* Construct, lay out and return the type of offsets to a value
3891 of type TYPE, within an object of type BASETYPE.
3892 If a suitable offset type exists already, reuse it. */
3894 tree
3895 build_offset_type (tree basetype, tree type)
3897 tree t;
3898 unsigned int hashcode;
3900 /* Make a node of the sort we want. */
3901 t = make_node (OFFSET_TYPE);
3903 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
3904 TREE_TYPE (t) = type;
3906 /* If we already have such a type, use the old one and free this one. */
3907 hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
3908 t = type_hash_canon (hashcode, t);
3910 if (!COMPLETE_TYPE_P (t))
3911 layout_type (t);
3913 return t;
3916 /* Create a complex type whose components are COMPONENT_TYPE. */
3918 tree
3919 build_complex_type (tree component_type)
3921 tree t;
3922 unsigned int hashcode;
3924 /* Make a node of the sort we want. */
3925 t = make_node (COMPLEX_TYPE);
3927 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
3928 set_type_quals (t, TYPE_QUALS (component_type));
3930 /* If we already have such a type, use the old one and free this one. */
3931 hashcode = TYPE_HASH (component_type);
3932 t = type_hash_canon (hashcode, t);
3934 if (!COMPLETE_TYPE_P (t))
3935 layout_type (t);
3937 /* If we are writing Dwarf2 output we need to create a name,
3938 since complex is a fundamental type. */
3939 if ((write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
3940 && ! TYPE_NAME (t))
3942 const char *name;
3943 if (component_type == char_type_node)
3944 name = "complex char";
3945 else if (component_type == signed_char_type_node)
3946 name = "complex signed char";
3947 else if (component_type == unsigned_char_type_node)
3948 name = "complex unsigned char";
3949 else if (component_type == short_integer_type_node)
3950 name = "complex short int";
3951 else if (component_type == short_unsigned_type_node)
3952 name = "complex short unsigned int";
3953 else if (component_type == integer_type_node)
3954 name = "complex int";
3955 else if (component_type == unsigned_type_node)
3956 name = "complex unsigned int";
3957 else if (component_type == long_integer_type_node)
3958 name = "complex long int";
3959 else if (component_type == long_unsigned_type_node)
3960 name = "complex long unsigned int";
3961 else if (component_type == long_long_integer_type_node)
3962 name = "complex long long int";
3963 else if (component_type == long_long_unsigned_type_node)
3964 name = "complex long long unsigned int";
3965 else
3966 name = 0;
3968 if (name != 0)
3969 TYPE_NAME (t) = get_identifier (name);
3972 return t;
3975 /* Return OP, stripped of any conversions to wider types as much as is safe.
3976 Converting the value back to OP's type makes a value equivalent to OP.
3978 If FOR_TYPE is nonzero, we return a value which, if converted to
3979 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
3981 If FOR_TYPE is nonzero, unaligned bit-field references may be changed to the
3982 narrowest type that can hold the value, even if they don't exactly fit.
3983 Otherwise, bit-field references are changed to a narrower type
3984 only if they can be fetched directly from memory in that type.
3986 OP must have integer, real or enumeral type. Pointers are not allowed!
3988 There are some cases where the obvious value we could return
3989 would regenerate to OP if converted to OP's type,
3990 but would not extend like OP to wider types.
3991 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
3992 For example, if OP is (unsigned short)(signed char)-1,
3993 we avoid returning (signed char)-1 if FOR_TYPE is int,
3994 even though extending that to an unsigned short would regenerate OP,
3995 since the result of extending (signed char)-1 to (int)
3996 is different from (int) OP. */
3998 tree
3999 get_unwidened (tree op, tree for_type)
4001 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
4002 tree type = TREE_TYPE (op);
4003 unsigned final_prec
4004 = TYPE_PRECISION (for_type != 0 ? for_type : type);
4005 int uns
4006 = (for_type != 0 && for_type != type
4007 && final_prec > TYPE_PRECISION (type)
4008 && TREE_UNSIGNED (type));
4009 tree win = op;
4011 while (TREE_CODE (op) == NOP_EXPR)
4013 int bitschange
4014 = TYPE_PRECISION (TREE_TYPE (op))
4015 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
4017 /* Truncations are many-one so cannot be removed.
4018 Unless we are later going to truncate down even farther. */
4019 if (bitschange < 0
4020 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
4021 break;
4023 /* See what's inside this conversion. If we decide to strip it,
4024 we will set WIN. */
4025 op = TREE_OPERAND (op, 0);
4027 /* If we have not stripped any zero-extensions (uns is 0),
4028 we can strip any kind of extension.
4029 If we have previously stripped a zero-extension,
4030 only zero-extensions can safely be stripped.
4031 Any extension can be stripped if the bits it would produce
4032 are all going to be discarded later by truncating to FOR_TYPE. */
4034 if (bitschange > 0)
4036 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
4037 win = op;
4038 /* TREE_UNSIGNED says whether this is a zero-extension.
4039 Let's avoid computing it if it does not affect WIN
4040 and if UNS will not be needed again. */
4041 if ((uns || TREE_CODE (op) == NOP_EXPR)
4042 && TREE_UNSIGNED (TREE_TYPE (op)))
4044 uns = 1;
4045 win = op;
4050 if (TREE_CODE (op) == COMPONENT_REF
4051 /* Since type_for_size always gives an integer type. */
4052 && TREE_CODE (type) != REAL_TYPE
4053 /* Don't crash if field not laid out yet. */
4054 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
4055 && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
4057 unsigned int innerprec
4058 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
4059 int unsignedp = TREE_UNSIGNED (TREE_OPERAND (op, 1));
4060 type = (*lang_hooks.types.type_for_size) (innerprec, unsignedp);
4062 /* We can get this structure field in the narrowest type it fits in.
4063 If FOR_TYPE is 0, do this only for a field that matches the
4064 narrower type exactly and is aligned for it
4065 The resulting extension to its nominal type (a fullword type)
4066 must fit the same conditions as for other extensions. */
4068 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
4069 && (for_type || ! DECL_BIT_FIELD (TREE_OPERAND (op, 1)))
4070 && (! uns || final_prec <= innerprec || unsignedp)
4071 && type != 0)
4073 win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
4074 TREE_OPERAND (op, 1));
4075 TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
4076 TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
4080 return win;
4083 /* Return OP or a simpler expression for a narrower value
4084 which can be sign-extended or zero-extended to give back OP.
4085 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
4086 or 0 if the value should be sign-extended. */
4088 tree
4089 get_narrower (tree op, int *unsignedp_ptr)
4091 int uns = 0;
4092 int first = 1;
4093 tree win = op;
4095 while (TREE_CODE (op) == NOP_EXPR)
4097 int bitschange
4098 = (TYPE_PRECISION (TREE_TYPE (op))
4099 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
4101 /* Truncations are many-one so cannot be removed. */
4102 if (bitschange < 0)
4103 break;
4105 /* See what's inside this conversion. If we decide to strip it,
4106 we will set WIN. */
4108 if (bitschange > 0)
4110 op = TREE_OPERAND (op, 0);
4111 /* An extension: the outermost one can be stripped,
4112 but remember whether it is zero or sign extension. */
4113 if (first)
4114 uns = TREE_UNSIGNED (TREE_TYPE (op));
4115 /* Otherwise, if a sign extension has been stripped,
4116 only sign extensions can now be stripped;
4117 if a zero extension has been stripped, only zero-extensions. */
4118 else if (uns != TREE_UNSIGNED (TREE_TYPE (op)))
4119 break;
4120 first = 0;
4122 else /* bitschange == 0 */
4124 /* A change in nominal type can always be stripped, but we must
4125 preserve the unsignedness. */
4126 if (first)
4127 uns = TREE_UNSIGNED (TREE_TYPE (op));
4128 first = 0;
4129 op = TREE_OPERAND (op, 0);
4132 win = op;
4135 if (TREE_CODE (op) == COMPONENT_REF
4136 /* Since type_for_size always gives an integer type. */
4137 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
4138 /* Ensure field is laid out already. */
4139 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0)
4141 unsigned HOST_WIDE_INT innerprec
4142 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
4143 tree type = (*lang_hooks.types.type_for_size) (innerprec,
4144 TREE_UNSIGNED (op));
4146 /* We can get this structure field in a narrower type that fits it,
4147 but the resulting extension to its nominal type (a fullword type)
4148 must satisfy the same conditions as for other extensions.
4150 Do this only for fields that are aligned (not bit-fields),
4151 because when bit-field insns will be used there is no
4152 advantage in doing this. */
4154 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
4155 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
4156 && (first || uns == TREE_UNSIGNED (TREE_OPERAND (op, 1)))
4157 && type != 0)
4159 if (first)
4160 uns = TREE_UNSIGNED (TREE_OPERAND (op, 1));
4161 win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
4162 TREE_OPERAND (op, 1));
4163 TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
4164 TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
4167 *unsignedp_ptr = uns;
4168 return win;
4171 /* Nonzero if integer constant C has a value that is permissible
4172 for type TYPE (an INTEGER_TYPE). */
4175 int_fits_type_p (tree c, tree type)
4177 tree type_low_bound = TYPE_MIN_VALUE (type);
4178 tree type_high_bound = TYPE_MAX_VALUE (type);
4179 int ok_for_low_bound, ok_for_high_bound;
4181 /* Perform some generic filtering first, which may allow making a decision
4182 even if the bounds are not constant. First, negative integers never fit
4183 in unsigned types, */
4184 if ((TREE_UNSIGNED (type) && tree_int_cst_sgn (c) < 0)
4185 /* Also, unsigned integers with top bit set never fit signed types. */
4186 || (! TREE_UNSIGNED (type)
4187 && TREE_UNSIGNED (TREE_TYPE (c)) && tree_int_cst_msb (c)))
4188 return 0;
4190 /* If at least one bound of the type is a constant integer, we can check
4191 ourselves and maybe make a decision. If no such decision is possible, but
4192 this type is a subtype, try checking against that. Otherwise, use
4193 force_fit_type, which checks against the precision.
4195 Compute the status for each possibly constant bound, and return if we see
4196 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
4197 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
4198 for "constant known to fit". */
4200 ok_for_low_bound = -1;
4201 ok_for_high_bound = -1;
4203 /* Check if C >= type_low_bound. */
4204 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
4206 ok_for_low_bound = ! tree_int_cst_lt (c, type_low_bound);
4207 if (! ok_for_low_bound)
4208 return 0;
4211 /* Check if c <= type_high_bound. */
4212 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
4214 ok_for_high_bound = ! tree_int_cst_lt (type_high_bound, c);
4215 if (! ok_for_high_bound)
4216 return 0;
4219 /* If the constant fits both bounds, the result is known. */
4220 if (ok_for_low_bound == 1 && ok_for_high_bound == 1)
4221 return 1;
4223 /* If we haven't been able to decide at this point, there nothing more we
4224 can check ourselves here. Look at the base type if we have one. */
4225 else if (TREE_CODE (type) == INTEGER_TYPE && TREE_TYPE (type) != 0)
4226 return int_fits_type_p (c, TREE_TYPE (type));
4228 /* Or to force_fit_type, if nothing else. */
4229 else
4231 c = copy_node (c);
4232 TREE_TYPE (c) = type;
4233 return !force_fit_type (c, 0);
4237 /* Returns true if T is, contains, or refers to a type with variable
4238 size. This concept is more general than that of C99 'variably
4239 modified types': in C99, a struct type is never variably modified
4240 because a VLA may not appear as a structure member. However, in
4241 GNU C code like:
4243 struct S { int i[f()]; };
4245 is valid, and other languages may define similar constructs. */
4247 bool
4248 variably_modified_type_p (tree type)
4250 if (type == error_mark_node)
4251 return false;
4253 /* If TYPE itself has variable size, it is variably modified.
4255 We do not yet have a representation of the C99 '[*]' syntax.
4256 When a representation is chosen, this function should be modified
4257 to test for that case as well. */
4258 if (TYPE_SIZE (type)
4259 && TYPE_SIZE (type) != error_mark_node
4260 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4261 return true;
4263 /* If TYPE is a pointer or reference, it is variably modified if
4264 the type pointed to is variably modified. */
4265 if ((TREE_CODE (type) == POINTER_TYPE
4266 || TREE_CODE (type) == REFERENCE_TYPE)
4267 && variably_modified_type_p (TREE_TYPE (type)))
4268 return true;
4270 /* If TYPE is an array, it is variably modified if the array
4271 elements are. (Note that the VLA case has already been checked
4272 above.) */
4273 if (TREE_CODE (type) == ARRAY_TYPE
4274 && variably_modified_type_p (TREE_TYPE (type)))
4275 return true;
4277 /* If TYPE is a function type, it is variably modified if any of the
4278 parameters or the return type are variably modified. */
4279 if (TREE_CODE (type) == FUNCTION_TYPE
4280 || TREE_CODE (type) == METHOD_TYPE)
4282 tree parm;
4284 if (variably_modified_type_p (TREE_TYPE (type)))
4285 return true;
4286 for (parm = TYPE_ARG_TYPES (type);
4287 parm && parm != void_list_node;
4288 parm = TREE_CHAIN (parm))
4289 if (variably_modified_type_p (TREE_VALUE (parm)))
4290 return true;
4293 /* The current language may have other cases to check, but in general,
4294 all other types are not variably modified. */
4295 return (*lang_hooks.tree_inlining.var_mod_type_p) (type);
4298 /* Given a DECL or TYPE, return the scope in which it was declared, or
4299 NULL_TREE if there is no containing scope. */
4301 tree
4302 get_containing_scope (tree t)
4304 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
4307 /* Return the innermost context enclosing DECL that is
4308 a FUNCTION_DECL, or zero if none. */
4310 tree
4311 decl_function_context (tree decl)
4313 tree context;
4315 if (TREE_CODE (decl) == ERROR_MARK)
4316 return 0;
4318 if (TREE_CODE (decl) == SAVE_EXPR)
4319 context = SAVE_EXPR_CONTEXT (decl);
4321 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
4322 where we look up the function at runtime. Such functions always take
4323 a first argument of type 'pointer to real context'.
4325 C++ should really be fixed to use DECL_CONTEXT for the real context,
4326 and use something else for the "virtual context". */
4327 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
4328 context
4329 = TYPE_MAIN_VARIANT
4330 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4331 else
4332 context = DECL_CONTEXT (decl);
4334 while (context && TREE_CODE (context) != FUNCTION_DECL)
4336 if (TREE_CODE (context) == BLOCK)
4337 context = BLOCK_SUPERCONTEXT (context);
4338 else
4339 context = get_containing_scope (context);
4342 return context;
4345 /* Return the innermost context enclosing DECL that is
4346 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
4347 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
4349 tree
4350 decl_type_context (tree decl)
4352 tree context = DECL_CONTEXT (decl);
4354 while (context)
4355 switch (TREE_CODE (context))
4357 case NAMESPACE_DECL:
4358 case TRANSLATION_UNIT_DECL:
4359 return NULL_TREE;
4361 case RECORD_TYPE:
4362 case UNION_TYPE:
4363 case QUAL_UNION_TYPE:
4364 return context;
4366 case TYPE_DECL:
4367 case FUNCTION_DECL:
4368 context = DECL_CONTEXT (context);
4369 break;
4371 case BLOCK:
4372 context = BLOCK_SUPERCONTEXT (context);
4373 break;
4375 default:
4376 abort ();
4379 return NULL_TREE;
4382 /* CALL is a CALL_EXPR. Return the declaration for the function
4383 called, or NULL_TREE if the called function cannot be
4384 determined. */
4386 tree
4387 get_callee_fndecl (tree call)
4389 tree addr;
4391 /* It's invalid to call this function with anything but a
4392 CALL_EXPR. */
4393 if (TREE_CODE (call) != CALL_EXPR)
4394 abort ();
4396 /* The first operand to the CALL is the address of the function
4397 called. */
4398 addr = TREE_OPERAND (call, 0);
4400 STRIP_NOPS (addr);
4402 /* If this is a readonly function pointer, extract its initial value. */
4403 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
4404 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
4405 && DECL_INITIAL (addr))
4406 addr = DECL_INITIAL (addr);
4408 /* If the address is just `&f' for some function `f', then we know
4409 that `f' is being called. */
4410 if (TREE_CODE (addr) == ADDR_EXPR
4411 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
4412 return TREE_OPERAND (addr, 0);
4414 /* We couldn't figure out what was being called. */
4415 return NULL_TREE;
4418 /* Print debugging information about tree nodes generated during the compile,
4419 and any language-specific information. */
4421 void
4422 dump_tree_statistics (void)
4424 #ifdef GATHER_STATISTICS
4425 int i;
4426 int total_nodes, total_bytes;
4427 #endif
4429 fprintf (stderr, "\n??? tree nodes created\n\n");
4430 #ifdef GATHER_STATISTICS
4431 fprintf (stderr, "Kind Nodes Bytes\n");
4432 fprintf (stderr, "---------------------------------------\n");
4433 total_nodes = total_bytes = 0;
4434 for (i = 0; i < (int) all_kinds; i++)
4436 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
4437 tree_node_counts[i], tree_node_sizes[i]);
4438 total_nodes += tree_node_counts[i];
4439 total_bytes += tree_node_sizes[i];
4441 fprintf (stderr, "---------------------------------------\n");
4442 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
4443 fprintf (stderr, "---------------------------------------\n");
4444 #else
4445 fprintf (stderr, "(No per-node statistics)\n");
4446 #endif
4447 print_type_hash_statistics ();
4448 (*lang_hooks.print_statistics) ();
4451 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
4453 /* Generate a crc32 of a string. */
4455 unsigned
4456 crc32_string (unsigned chksum, const char *string)
4460 unsigned value = *string << 24;
4461 unsigned ix;
4463 for (ix = 8; ix--; value <<= 1)
4465 unsigned feedback;
4467 feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
4468 chksum <<= 1;
4469 chksum ^= feedback;
4472 while (*string++);
4473 return chksum;
4476 /* P is a string that will be used in a symbol. Mask out any characters
4477 that are not valid in that context. */
4479 void
4480 clean_symbol_name (char *p)
4482 for (; *p; p++)
4483 if (! (ISALNUM (*p)
4484 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
4485 || *p == '$'
4486 #endif
4487 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
4488 || *p == '.'
4489 #endif
4491 *p = '_';
4494 /* Generate a name for a function unique to this translation unit.
4495 TYPE is some string to identify the purpose of this function to the
4496 linker or collect2. */
4498 tree
4499 get_file_function_name_long (const char *type)
4501 char *buf;
4502 const char *p;
4503 char *q;
4505 if (first_global_object_name)
4506 p = first_global_object_name;
4507 else
4509 /* We don't have anything that we know to be unique to this translation
4510 unit, so use what we do have and throw in some randomness. */
4511 unsigned len;
4512 const char *name = weak_global_object_name;
4513 const char *file = main_input_filename;
4515 if (! name)
4516 name = "";
4517 if (! file)
4518 file = input_filename;
4520 len = strlen (file);
4521 q = alloca (9 * 2 + len + 1);
4522 memcpy (q, file, len + 1);
4523 clean_symbol_name (q);
4525 sprintf (q + len, "_%08X_%08X", crc32_string (0, name),
4526 crc32_string (0, flag_random_seed));
4528 p = q;
4531 buf = alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p) + strlen (type));
4533 /* Set up the name of the file-level functions we may need.
4534 Use a global object (which is already required to be unique over
4535 the program) rather than the file name (which imposes extra
4536 constraints). */
4537 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
4539 return get_identifier (buf);
4542 /* If KIND=='I', return a suitable global initializer (constructor) name.
4543 If KIND=='D', return a suitable global clean-up (destructor) name. */
4545 tree
4546 get_file_function_name (int kind)
4548 char p[2];
4550 p[0] = kind;
4551 p[1] = 0;
4553 return get_file_function_name_long (p);
4556 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
4557 The result is placed in BUFFER (which has length BIT_SIZE),
4558 with one bit in each char ('\000' or '\001').
4560 If the constructor is constant, NULL_TREE is returned.
4561 Otherwise, a TREE_LIST of the non-constant elements is emitted. */
4563 tree
4564 get_set_constructor_bits (tree init, char *buffer, int bit_size)
4566 int i;
4567 tree vals;
4568 HOST_WIDE_INT domain_min
4569 = tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (init))), 0);
4570 tree non_const_bits = NULL_TREE;
4572 for (i = 0; i < bit_size; i++)
4573 buffer[i] = 0;
4575 for (vals = TREE_OPERAND (init, 1);
4576 vals != NULL_TREE; vals = TREE_CHAIN (vals))
4578 if (!host_integerp (TREE_VALUE (vals), 0)
4579 || (TREE_PURPOSE (vals) != NULL_TREE
4580 && !host_integerp (TREE_PURPOSE (vals), 0)))
4581 non_const_bits
4582 = tree_cons (TREE_PURPOSE (vals), TREE_VALUE (vals), non_const_bits);
4583 else if (TREE_PURPOSE (vals) != NULL_TREE)
4585 /* Set a range of bits to ones. */
4586 HOST_WIDE_INT lo_index
4587 = tree_low_cst (TREE_PURPOSE (vals), 0) - domain_min;
4588 HOST_WIDE_INT hi_index
4589 = tree_low_cst (TREE_VALUE (vals), 0) - domain_min;
4591 if (lo_index < 0 || lo_index >= bit_size
4592 || hi_index < 0 || hi_index >= bit_size)
4593 abort ();
4594 for (; lo_index <= hi_index; lo_index++)
4595 buffer[lo_index] = 1;
4597 else
4599 /* Set a single bit to one. */
4600 HOST_WIDE_INT index
4601 = tree_low_cst (TREE_VALUE (vals), 0) - domain_min;
4602 if (index < 0 || index >= bit_size)
4604 error ("invalid initializer for bit string");
4605 return NULL_TREE;
4607 buffer[index] = 1;
4610 return non_const_bits;
4613 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
4614 The result is placed in BUFFER (which is an array of bytes).
4615 If the constructor is constant, NULL_TREE is returned.
4616 Otherwise, a TREE_LIST of the non-constant elements is emitted. */
4618 tree
4619 get_set_constructor_bytes (tree init, unsigned char *buffer, int wd_size)
4621 int i;
4622 int set_word_size = BITS_PER_UNIT;
4623 int bit_size = wd_size * set_word_size;
4624 int bit_pos = 0;
4625 unsigned char *bytep = buffer;
4626 char *bit_buffer = alloca (bit_size);
4627 tree non_const_bits = get_set_constructor_bits (init, bit_buffer, bit_size);
4629 for (i = 0; i < wd_size; i++)
4630 buffer[i] = 0;
4632 for (i = 0; i < bit_size; i++)
4634 if (bit_buffer[i])
4636 if (BYTES_BIG_ENDIAN)
4637 *bytep |= (1 << (set_word_size - 1 - bit_pos));
4638 else
4639 *bytep |= 1 << bit_pos;
4641 bit_pos++;
4642 if (bit_pos >= set_word_size)
4643 bit_pos = 0, bytep++;
4645 return non_const_bits;
4648 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
4649 /* Complain that the tree code of NODE does not match the expected CODE.
4650 FILE, LINE, and FUNCTION are of the caller. */
4652 void
4653 tree_check_failed (const tree node, enum tree_code code, const char *file,
4654 int line, const char *function)
4656 internal_error ("tree check: expected %s, have %s in %s, at %s:%d",
4657 tree_code_name[code], tree_code_name[TREE_CODE (node)],
4658 function, trim_filename (file), line);
4661 /* Similar to above, except that we check for a class of tree
4662 code, given in CL. */
4664 void
4665 tree_class_check_failed (const tree node, int cl, const char *file,
4666 int line, const char *function)
4668 internal_error
4669 ("tree check: expected class '%c', have '%c' (%s) in %s, at %s:%d",
4670 cl, TREE_CODE_CLASS (TREE_CODE (node)),
4671 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
4674 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
4675 (dynamically sized) vector. */
4677 void
4678 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
4679 const char *function)
4681 internal_error
4682 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
4683 idx + 1, len, function, trim_filename (file), line);
4686 /* Similar to above, except that the check is for the bounds of the operand
4687 vector of an expression node. */
4689 void
4690 tree_operand_check_failed (int idx, enum tree_code code, const char *file,
4691 int line, const char *function)
4693 internal_error
4694 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
4695 idx + 1, tree_code_name[code], TREE_CODE_LENGTH (code),
4696 function, trim_filename (file), line);
4698 #endif /* ENABLE_TREE_CHECKING */
4700 /* For a new vector type node T, build the information necessary for
4701 debugging output. */
4703 static void
4704 finish_vector_type (tree t)
4706 layout_type (t);
4709 tree index = build_int_2 (TYPE_VECTOR_SUBPARTS (t) - 1, 0);
4710 tree array = build_array_type (TREE_TYPE (t),
4711 build_index_type (index));
4712 tree rt = make_node (RECORD_TYPE);
4714 TYPE_FIELDS (rt) = build_decl (FIELD_DECL, get_identifier ("f"), array);
4715 DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
4716 layout_type (rt);
4717 TYPE_DEBUG_REPRESENTATION_TYPE (t) = rt;
4718 /* In dwarfout.c, type lookup uses TYPE_UID numbers. We want to output
4719 the representation type, and we want to find that die when looking up
4720 the vector type. This is most easily achieved by making the TYPE_UID
4721 numbers equal. */
4722 TYPE_UID (rt) = TYPE_UID (t);
4726 /* Create nodes for all integer types (and error_mark_node) using the sizes
4727 of C datatypes. The caller should call set_sizetype soon after calling
4728 this function to select one of the types as sizetype. */
4730 void
4731 build_common_tree_nodes (int signed_char)
4733 error_mark_node = make_node (ERROR_MARK);
4734 TREE_TYPE (error_mark_node) = error_mark_node;
4736 initialize_sizetypes ();
4738 /* Define both `signed char' and `unsigned char'. */
4739 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
4740 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
4742 /* Define `char', which is like either `signed char' or `unsigned char'
4743 but not the same as either. */
4744 char_type_node
4745 = (signed_char
4746 ? make_signed_type (CHAR_TYPE_SIZE)
4747 : make_unsigned_type (CHAR_TYPE_SIZE));
4749 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
4750 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
4751 integer_type_node = make_signed_type (INT_TYPE_SIZE);
4752 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
4753 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
4754 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
4755 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
4756 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
4758 /* Define a boolean type. This type only represents boolean values but
4759 may be larger than char depending on the value of BOOL_TYPE_SIZE.
4760 Front ends which want to override this size (i.e. Java) can redefine
4761 boolean_type_node before calling build_common_tree_nodes_2. */
4762 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
4763 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
4764 TYPE_MAX_VALUE (boolean_type_node) = build_int_2 (1, 0);
4765 TREE_TYPE (TYPE_MAX_VALUE (boolean_type_node)) = boolean_type_node;
4766 TYPE_PRECISION (boolean_type_node) = 1;
4768 intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
4769 intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
4770 intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
4771 intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
4772 intTI_type_node = make_signed_type (GET_MODE_BITSIZE (TImode));
4774 unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
4775 unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
4776 unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
4777 unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
4778 unsigned_intTI_type_node = make_unsigned_type (GET_MODE_BITSIZE (TImode));
4781 /* Call this function after calling build_common_tree_nodes and set_sizetype.
4782 It will create several other common tree nodes. */
4784 void
4785 build_common_tree_nodes_2 (int short_double)
4787 /* Define these next since types below may used them. */
4788 integer_zero_node = build_int_2 (0, 0);
4789 integer_one_node = build_int_2 (1, 0);
4790 integer_minus_one_node = build_int_2 (-1, -1);
4792 size_zero_node = size_int (0);
4793 size_one_node = size_int (1);
4794 bitsize_zero_node = bitsize_int (0);
4795 bitsize_one_node = bitsize_int (1);
4796 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
4798 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
4799 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
4801 void_type_node = make_node (VOID_TYPE);
4802 layout_type (void_type_node);
4804 /* We are not going to have real types in C with less than byte alignment,
4805 so we might as well not have any types that claim to have it. */
4806 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
4807 TYPE_USER_ALIGN (void_type_node) = 0;
4809 null_pointer_node = build_int_2 (0, 0);
4810 TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
4811 layout_type (TREE_TYPE (null_pointer_node));
4813 ptr_type_node = build_pointer_type (void_type_node);
4814 const_ptr_type_node
4815 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
4817 float_type_node = make_node (REAL_TYPE);
4818 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
4819 layout_type (float_type_node);
4821 double_type_node = make_node (REAL_TYPE);
4822 if (short_double)
4823 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
4824 else
4825 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
4826 layout_type (double_type_node);
4828 long_double_type_node = make_node (REAL_TYPE);
4829 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
4830 layout_type (long_double_type_node);
4832 complex_integer_type_node = make_node (COMPLEX_TYPE);
4833 TREE_TYPE (complex_integer_type_node) = integer_type_node;
4834 layout_type (complex_integer_type_node);
4836 complex_float_type_node = make_node (COMPLEX_TYPE);
4837 TREE_TYPE (complex_float_type_node) = float_type_node;
4838 layout_type (complex_float_type_node);
4840 complex_double_type_node = make_node (COMPLEX_TYPE);
4841 TREE_TYPE (complex_double_type_node) = double_type_node;
4842 layout_type (complex_double_type_node);
4844 complex_long_double_type_node = make_node (COMPLEX_TYPE);
4845 TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
4846 layout_type (complex_long_double_type_node);
4849 tree t;
4850 BUILD_VA_LIST_TYPE (t);
4852 /* Many back-ends define record types without setting TYPE_NAME.
4853 If we copied the record type here, we'd keep the original
4854 record type without a name. This breaks name mangling. So,
4855 don't copy record types and let c_common_nodes_and_builtins()
4856 declare the type to be __builtin_va_list. */
4857 if (TREE_CODE (t) != RECORD_TYPE)
4858 t = build_type_copy (t);
4860 va_list_type_node = t;
4863 unsigned_V4SI_type_node
4864 = make_vector (V4SImode, unsigned_intSI_type_node, 1);
4865 unsigned_V2HI_type_node
4866 = make_vector (V2HImode, unsigned_intHI_type_node, 1);
4867 unsigned_V2SI_type_node
4868 = make_vector (V2SImode, unsigned_intSI_type_node, 1);
4869 unsigned_V2DI_type_node
4870 = make_vector (V2DImode, unsigned_intDI_type_node, 1);
4871 unsigned_V4HI_type_node
4872 = make_vector (V4HImode, unsigned_intHI_type_node, 1);
4873 unsigned_V8QI_type_node
4874 = make_vector (V8QImode, unsigned_intQI_type_node, 1);
4875 unsigned_V8HI_type_node
4876 = make_vector (V8HImode, unsigned_intHI_type_node, 1);
4877 unsigned_V16QI_type_node
4878 = make_vector (V16QImode, unsigned_intQI_type_node, 1);
4879 unsigned_V1DI_type_node
4880 = make_vector (V1DImode, unsigned_intDI_type_node, 1);
4882 V16SF_type_node = make_vector (V16SFmode, float_type_node, 0);
4883 V4SF_type_node = make_vector (V4SFmode, float_type_node, 0);
4884 V4SI_type_node = make_vector (V4SImode, intSI_type_node, 0);
4885 V2HI_type_node = make_vector (V2HImode, intHI_type_node, 0);
4886 V2SI_type_node = make_vector (V2SImode, intSI_type_node, 0);
4887 V2DI_type_node = make_vector (V2DImode, intDI_type_node, 0);
4888 V4HI_type_node = make_vector (V4HImode, intHI_type_node, 0);
4889 V8QI_type_node = make_vector (V8QImode, intQI_type_node, 0);
4890 V8HI_type_node = make_vector (V8HImode, intHI_type_node, 0);
4891 V2SF_type_node = make_vector (V2SFmode, float_type_node, 0);
4892 V2DF_type_node = make_vector (V2DFmode, double_type_node, 0);
4893 V16QI_type_node = make_vector (V16QImode, intQI_type_node, 0);
4894 V1DI_type_node = make_vector (V1DImode, intDI_type_node, 0);
4895 V4DF_type_node = make_vector (V4DFmode, double_type_node, 0);
4898 /* Returns a vector tree node given a vector mode, the inner type, and
4899 the signness. */
4901 static tree
4902 make_vector (enum machine_mode mode, tree innertype, int unsignedp)
4904 tree t;
4906 t = make_node (VECTOR_TYPE);
4907 TREE_TYPE (t) = innertype;
4908 TYPE_MODE (t) = mode;
4909 TREE_UNSIGNED (TREE_TYPE (t)) = unsignedp;
4910 finish_vector_type (t);
4912 return t;
4915 /* Given an initializer INIT, return TRUE if INIT is zero or some
4916 aggregate of zeros. Otherwise return FALSE. */
4918 bool
4919 initializer_zerop (tree init)
4921 STRIP_NOPS (init);
4923 switch (TREE_CODE (init))
4925 case INTEGER_CST:
4926 return integer_zerop (init);
4927 case REAL_CST:
4928 return real_zerop (init)
4929 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
4930 case COMPLEX_CST:
4931 return integer_zerop (init)
4932 || (real_zerop (init)
4933 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
4934 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
4935 case CONSTRUCTOR:
4937 if (AGGREGATE_TYPE_P (TREE_TYPE (init)))
4939 tree aggr_init = CONSTRUCTOR_ELTS (init);
4941 while (aggr_init)
4943 if (! initializer_zerop (TREE_VALUE (aggr_init)))
4944 return false;
4945 aggr_init = TREE_CHAIN (aggr_init);
4947 return true;
4949 return false;
4951 default:
4952 return false;
4956 #include "gt-tree.h"