* target.h (struct gcc_target): Add insert_attributes.
[official-gcc.git] / gcc / tree.c
blob7ad066538d0823f205b161681e75bd59218c3697
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 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 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 The low-level allocation routines oballoc and permalloc
33 are used also for allocating many other kinds of objects
34 by all passes of the compiler. */
36 #include "config.h"
37 #include "system.h"
38 #include "flags.h"
39 #include "tree.h"
40 #include "tm_p.h"
41 #include "function.h"
42 #include "obstack.h"
43 #include "toplev.h"
44 #include "ggc.h"
45 #include "hashtab.h"
46 #include "output.h"
47 #include "target.h"
49 #define obstack_chunk_alloc xmalloc
50 #define obstack_chunk_free free
51 /* obstack.[ch] explicitly declined to prototype this. */
52 extern int _obstack_allocated_p PARAMS ((struct obstack *h, PTR obj));
54 static void unsave_expr_now_r PARAMS ((tree));
56 /* Objects allocated on this obstack last forever. */
58 struct obstack permanent_obstack;
60 /* Table indexed by tree code giving a string containing a character
61 classifying the tree code. Possibilities are
62 t, d, s, c, r, <, 1, 2 and e. See tree.def for details. */
64 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
66 char tree_code_type[MAX_TREE_CODES] = {
67 #include "tree.def"
69 #undef DEFTREECODE
71 /* Table indexed by tree code giving number of expression
72 operands beyond the fixed part of the node structure.
73 Not used for types or decls. */
75 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
77 int tree_code_length[MAX_TREE_CODES] = {
78 #include "tree.def"
80 #undef DEFTREECODE
82 /* Names of tree components.
83 Used for printing out the tree and error messages. */
84 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
86 const char *tree_code_name[MAX_TREE_CODES] = {
87 #include "tree.def"
89 #undef DEFTREECODE
91 /* Statistics-gathering stuff. */
92 typedef enum
94 d_kind,
95 t_kind,
96 b_kind,
97 s_kind,
98 r_kind,
99 e_kind,
100 c_kind,
101 id_kind,
102 op_id_kind,
103 perm_list_kind,
104 temp_list_kind,
105 vec_kind,
106 x_kind,
107 lang_decl,
108 lang_type,
109 all_kinds
110 } tree_node_kind;
112 int tree_node_counts[(int) all_kinds];
113 int tree_node_sizes[(int) all_kinds];
114 int id_string_size = 0;
116 static const char * const tree_node_kind_names[] = {
117 "decls",
118 "types",
119 "blocks",
120 "stmts",
121 "refs",
122 "exprs",
123 "constants",
124 "identifiers",
125 "op_identifiers",
126 "perm_tree_lists",
127 "temp_tree_lists",
128 "vecs",
129 "random kinds",
130 "lang_decl kinds",
131 "lang_type kinds"
134 /* Unique id for next decl created. */
135 static int next_decl_uid;
136 /* Unique id for next type created. */
137 static int next_type_uid = 1;
139 /* Here is how primitive or already-canonicalized types' hash
140 codes are made. */
141 #define TYPE_HASH(TYPE) ((unsigned long) (TYPE) & 0777777)
143 /* Since we cannot rehash a type after it is in the table, we have to
144 keep the hash code. */
146 struct type_hash
148 unsigned long hash;
149 tree type;
152 /* Initial size of the hash table (rounded to next prime). */
153 #define TYPE_HASH_INITIAL_SIZE 1000
155 /* Now here is the hash table. When recording a type, it is added to
156 the slot whose index is the hash code. Note that the hash table is
157 used for several kinds of types (function types, array types and
158 array index range types, for now). While all these live in the
159 same table, they are completely independent, and the hash code is
160 computed differently for each of these. */
162 htab_t type_hash_table;
164 static void build_real_from_int_cst_1 PARAMS ((PTR));
165 static void set_type_quals PARAMS ((tree, int));
166 static void append_random_chars PARAMS ((char *));
167 static void mark_type_hash PARAMS ((void *));
168 static int type_hash_eq PARAMS ((const void*, const void*));
169 static unsigned int type_hash_hash PARAMS ((const void*));
170 static void print_type_hash_statistics PARAMS((void));
171 static int mark_hash_entry PARAMS((void **, void *));
172 static void finish_vector_type PARAMS((tree));
173 static int mark_tree_hashtable_entry PARAMS((void **, void *));
175 /* If non-null, these are language-specific helper functions for
176 unsave_expr_now. If present, LANG_UNSAVE is called before its
177 argument (an UNSAVE_EXPR) is to be unsaved, and all other
178 processing in unsave_expr_now is aborted. LANG_UNSAVE_EXPR_NOW is
179 called from unsave_expr_1 for language-specific tree codes. */
180 void (*lang_unsave) PARAMS ((tree *));
181 void (*lang_unsave_expr_now) PARAMS ((tree));
183 /* If non-null, these are language-specific helper functions for
184 unsafe_for_reeval. Return negative to not handle some tree. */
185 int (*lang_unsafe_for_reeval) PARAMS ((tree));
187 /* Set the DECL_ASSEMBLER_NAME for a node. If it is the sort of thing
188 that the assembler should talk about, set DECL_ASSEMBLER_NAME to an
189 appropriate IDENTIFIER_NODE. Otherwise, set it to the
190 ERROR_MARK_NODE to ensure that the assembler does not talk about
191 it. */
192 void (*lang_set_decl_assembler_name) PARAMS ((tree));
194 tree global_trees[TI_MAX];
195 tree integer_types[itk_none];
197 /* Set the DECL_ASSEMBLER_NAME for DECL. */
198 void
199 set_decl_assembler_name (decl)
200 tree decl;
202 /* The language-independent code should never use the
203 DECL_ASSEMBLER_NAME for lots of DECLs. Only FUNCTION_DECLs and
204 VAR_DECLs for variables with static storage duration need a real
205 DECL_ASSEMBLER_NAME. */
206 if (TREE_CODE (decl) == FUNCTION_DECL
207 || (TREE_CODE (decl) == VAR_DECL
208 && (TREE_STATIC (decl)
209 || DECL_EXTERNAL (decl)
210 || TREE_PUBLIC (decl))))
211 /* By default, assume the name to use in assembly code is the
212 same as that used in the source language. (That's correct
213 for C, and GCC used to set DECL_ASSEMBLER_NAME to the same
214 value as DECL_NAME in build_decl, so this choice provides
215 backwards compatibility with existing front-ends. */
216 SET_DECL_ASSEMBLER_NAME (decl, DECL_NAME (decl));
217 else
218 /* Nobody should ever be asking for the DECL_ASSEMBLER_NAME of
219 these DECLs -- unless they're in language-dependent code, in
220 which case lang_set_decl_assembler_name should handle things. */
221 abort ();
224 /* Init the principal obstacks. */
226 void
227 init_obstacks ()
229 gcc_obstack_init (&permanent_obstack);
231 /* Initialize the hash table of types. */
232 type_hash_table = htab_create (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
233 type_hash_eq, 0);
234 ggc_add_root (&type_hash_table, 1, sizeof type_hash_table, mark_type_hash);
235 ggc_add_tree_root (global_trees, TI_MAX);
236 ggc_add_tree_root (integer_types, itk_none);
238 /* Set lang_set_decl_set_assembler_name to a default value. */
239 lang_set_decl_assembler_name = set_decl_assembler_name;
243 /* Allocate SIZE bytes in the permanent obstack
244 and return a pointer to them. */
246 char *
247 permalloc (size)
248 int size;
250 return (char *) obstack_alloc (&permanent_obstack, size);
253 /* Allocate NELEM items of SIZE bytes in the permanent obstack
254 and return a pointer to them. The storage is cleared before
255 returning the value. */
257 char *
258 perm_calloc (nelem, size)
259 int nelem;
260 long size;
262 char *rval = (char *) obstack_alloc (&permanent_obstack, nelem * size);
263 memset (rval, 0, nelem * size);
264 return rval;
267 /* Compute the number of bytes occupied by 'node'. This routine only
268 looks at TREE_CODE and, if the code is TREE_VEC, TREE_VEC_LENGTH. */
269 size_t
270 tree_size (node)
271 tree node;
273 enum tree_code code = TREE_CODE (node);
275 switch (TREE_CODE_CLASS (code))
277 case 'd': /* A decl node */
278 return sizeof (struct tree_decl);
280 case 't': /* a type node */
281 return sizeof (struct tree_type);
283 case 'b': /* a lexical block node */
284 return sizeof (struct tree_block);
286 case 'r': /* a reference */
287 case 'e': /* an expression */
288 case 's': /* an expression with side effects */
289 case '<': /* a comparison expression */
290 case '1': /* a unary arithmetic expression */
291 case '2': /* a binary arithmetic expression */
292 return (sizeof (struct tree_exp)
293 + (TREE_CODE_LENGTH (code) - 1) * sizeof (char *));
295 case 'c': /* a constant */
296 /* We can't use TREE_CODE_LENGTH for INTEGER_CST, since the number of
297 words is machine-dependent due to varying length of HOST_WIDE_INT,
298 which might be wider than a pointer (e.g., long long). Similarly
299 for REAL_CST, since the number of words is machine-dependent due
300 to varying size and alignment of `double'. */
301 if (code == INTEGER_CST)
302 return sizeof (struct tree_int_cst);
303 else if (code == REAL_CST)
304 return sizeof (struct tree_real_cst);
305 else
306 return (sizeof (struct tree_common)
307 + TREE_CODE_LENGTH (code) * sizeof (char *));
309 case 'x': /* something random, like an identifier. */
311 size_t length;
312 length = (sizeof (struct tree_common)
313 + TREE_CODE_LENGTH (code) * sizeof (char *));
314 if (code == TREE_VEC)
315 length += (TREE_VEC_LENGTH (node) - 1) * sizeof (char *);
316 return length;
319 default:
320 abort ();
324 /* Return a newly allocated node of code CODE.
325 For decl and type nodes, some other fields are initialized.
326 The rest of the node is initialized to zero.
328 Achoo! I got a code in the node. */
330 tree
331 make_node (code)
332 enum tree_code code;
334 register tree t;
335 register int type = TREE_CODE_CLASS (code);
336 register size_t length;
337 #ifdef GATHER_STATISTICS
338 register tree_node_kind kind;
339 #endif
340 struct tree_common ttmp;
342 /* We can't allocate a TREE_VEC without knowing how many elements
343 it will have. */
344 if (code == TREE_VEC)
345 abort ();
347 TREE_SET_CODE ((tree)&ttmp, code);
348 length = tree_size ((tree)&ttmp);
350 #ifdef GATHER_STATISTICS
351 switch (type)
353 case 'd': /* A decl node */
354 kind = d_kind;
355 break;
357 case 't': /* a type node */
358 kind = t_kind;
359 break;
361 case 'b': /* a lexical block */
362 kind = b_kind;
363 break;
365 case 's': /* an expression with side effects */
366 kind = s_kind;
367 break;
369 case 'r': /* a reference */
370 kind = r_kind;
371 break;
373 case 'e': /* an expression */
374 case '<': /* a comparison expression */
375 case '1': /* a unary arithmetic expression */
376 case '2': /* a binary arithmetic expression */
377 kind = e_kind;
378 break;
380 case 'c': /* a constant */
381 kind = c_kind;
382 break;
384 case 'x': /* something random, like an identifier. */
385 if (code == IDENTIFIER_NODE)
386 kind = id_kind;
387 else if (code == OP_IDENTIFIER)
388 kind = op_id_kind;
389 else if (code == TREE_VEC)
390 kind = vec_kind;
391 else
392 kind = x_kind;
393 break;
395 default:
396 abort ();
399 tree_node_counts[(int) kind]++;
400 tree_node_sizes[(int) kind] += length;
401 #endif
403 t = ggc_alloc_tree (length);
405 memset ((PTR) t, 0, length);
407 TREE_SET_CODE (t, code);
409 switch (type)
411 case 's':
412 TREE_SIDE_EFFECTS (t) = 1;
413 TREE_TYPE (t) = void_type_node;
414 break;
416 case 'd':
417 if (code != FUNCTION_DECL)
418 DECL_ALIGN (t) = 1;
419 DECL_USER_ALIGN (t) = 0;
420 DECL_IN_SYSTEM_HEADER (t) = in_system_header;
421 DECL_SOURCE_LINE (t) = lineno;
422 DECL_SOURCE_FILE (t) =
423 (input_filename) ? input_filename : "<built-in>";
424 DECL_UID (t) = next_decl_uid++;
426 /* We have not yet computed the alias set for this declaration. */
427 DECL_POINTER_ALIAS_SET (t) = -1;
428 break;
430 case 't':
431 TYPE_UID (t) = next_type_uid++;
432 TYPE_ALIGN (t) = char_type_node ? TYPE_ALIGN (char_type_node) : 0;
433 TYPE_USER_ALIGN (t) = 0;
434 TYPE_MAIN_VARIANT (t) = t;
436 /* Default to no attributes for type, but let target change that. */
437 TYPE_ATTRIBUTES (t) = NULL_TREE;
438 (*targetm.set_default_type_attributes) (t);
440 /* We have not yet computed the alias set for this type. */
441 TYPE_ALIAS_SET (t) = -1;
442 break;
444 case 'c':
445 TREE_CONSTANT (t) = 1;
446 break;
448 case 'e':
449 switch (code)
451 case INIT_EXPR:
452 case MODIFY_EXPR:
453 case VA_ARG_EXPR:
454 case RTL_EXPR:
455 case PREDECREMENT_EXPR:
456 case PREINCREMENT_EXPR:
457 case POSTDECREMENT_EXPR:
458 case POSTINCREMENT_EXPR:
459 /* All of these have side-effects, no matter what their
460 operands are. */
461 TREE_SIDE_EFFECTS (t) = 1;
462 break;
464 default:
465 break;
467 break;
470 return t;
473 /* A front-end can reset this to an appropriate function if types need
474 special handling. */
476 tree (*make_lang_type_fn) PARAMS ((enum tree_code)) = make_node;
478 /* Return a new type (with the indicated CODE), doing whatever
479 language-specific processing is required. */
481 tree
482 make_lang_type (code)
483 enum tree_code code;
485 return (*make_lang_type_fn) (code);
488 /* Return a new node with the same contents as NODE except that its
489 TREE_CHAIN is zero and it has a fresh uid. */
491 tree
492 copy_node (node)
493 tree node;
495 register tree t;
496 register enum tree_code code = TREE_CODE (node);
497 register size_t length;
499 length = tree_size (node);
500 t = ggc_alloc_tree (length);
501 memcpy (t, node, length);
503 TREE_CHAIN (t) = 0;
504 TREE_ASM_WRITTEN (t) = 0;
506 if (TREE_CODE_CLASS (code) == 'd')
507 DECL_UID (t) = next_decl_uid++;
508 else if (TREE_CODE_CLASS (code) == 't')
510 TYPE_UID (t) = next_type_uid++;
511 /* The following is so that the debug code for
512 the copy is different from the original type.
513 The two statements usually duplicate each other
514 (because they clear fields of the same union),
515 but the optimizer should catch that. */
516 TYPE_SYMTAB_POINTER (t) = 0;
517 TYPE_SYMTAB_ADDRESS (t) = 0;
520 return t;
523 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
524 For example, this can copy a list made of TREE_LIST nodes. */
526 tree
527 copy_list (list)
528 tree list;
530 tree head;
531 register tree prev, next;
533 if (list == 0)
534 return 0;
536 head = prev = copy_node (list);
537 next = TREE_CHAIN (list);
538 while (next)
540 TREE_CHAIN (prev) = copy_node (next);
541 prev = TREE_CHAIN (prev);
542 next = TREE_CHAIN (next);
544 return head;
548 /* Return a newly constructed INTEGER_CST node whose constant value
549 is specified by the two ints LOW and HI.
550 The TREE_TYPE is set to `int'.
552 This function should be used via the `build_int_2' macro. */
554 tree
555 build_int_2_wide (low, hi)
556 unsigned HOST_WIDE_INT low;
557 HOST_WIDE_INT hi;
559 register tree t = make_node (INTEGER_CST);
561 TREE_INT_CST_LOW (t) = low;
562 TREE_INT_CST_HIGH (t) = hi;
563 TREE_TYPE (t) = integer_type_node;
564 return t;
567 /* Return a new REAL_CST node whose type is TYPE and value is D. */
569 tree
570 build_real (type, d)
571 tree type;
572 REAL_VALUE_TYPE d;
574 tree v;
575 int overflow = 0;
577 /* Check for valid float value for this type on this target machine;
578 if not, can print error message and store a valid value in D. */
579 #ifdef CHECK_FLOAT_VALUE
580 CHECK_FLOAT_VALUE (TYPE_MODE (type), d, overflow);
581 #endif
583 v = make_node (REAL_CST);
584 TREE_TYPE (v) = type;
585 TREE_REAL_CST (v) = d;
586 TREE_OVERFLOW (v) = TREE_CONSTANT_OVERFLOW (v) = overflow;
587 return v;
590 /* Return a new REAL_CST node whose type is TYPE
591 and whose value is the integer value of the INTEGER_CST node I. */
593 #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
595 REAL_VALUE_TYPE
596 real_value_from_int_cst (type, i)
597 tree type ATTRIBUTE_UNUSED, i;
599 REAL_VALUE_TYPE d;
601 #ifdef REAL_ARITHMETIC
602 /* Clear all bits of the real value type so that we can later do
603 bitwise comparisons to see if two values are the same. */
604 memset ((char *) &d, 0, sizeof d);
606 if (! TREE_UNSIGNED (TREE_TYPE (i)))
607 REAL_VALUE_FROM_INT (d, TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i),
608 TYPE_MODE (type));
609 else
610 REAL_VALUE_FROM_UNSIGNED_INT (d, TREE_INT_CST_LOW (i),
611 TREE_INT_CST_HIGH (i), TYPE_MODE (type));
612 #else /* not REAL_ARITHMETIC */
613 /* Some 386 compilers mishandle unsigned int to float conversions,
614 so introduce a temporary variable E to avoid those bugs. */
615 if (TREE_INT_CST_HIGH (i) < 0 && ! TREE_UNSIGNED (TREE_TYPE (i)))
617 REAL_VALUE_TYPE e;
619 d = (double) (~TREE_INT_CST_HIGH (i));
620 e = ((double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2))
621 * (double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)));
622 d *= e;
623 e = (double) (~TREE_INT_CST_LOW (i));
624 d += e;
625 d = (- d - 1.0);
627 else
629 REAL_VALUE_TYPE e;
631 d = (double) (unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (i);
632 e = ((double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2))
633 * (double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)));
634 d *= e;
635 e = (double) TREE_INT_CST_LOW (i);
636 d += e;
638 #endif /* not REAL_ARITHMETIC */
639 return d;
642 /* Args to pass to and from build_real_from_int_cst_1. */
644 struct brfic_args
646 tree type; /* Input: type to conver to. */
647 tree i; /* Input: operand to convert. */
648 REAL_VALUE_TYPE d; /* Output: floating point value. */
651 /* Convert an integer to a floating point value while protected by a floating
652 point exception handler. */
654 static void
655 build_real_from_int_cst_1 (data)
656 PTR data;
658 struct brfic_args *args = (struct brfic_args *) data;
660 #ifdef REAL_ARITHMETIC
661 args->d = real_value_from_int_cst (args->type, args->i);
662 #else
663 args->d
664 = REAL_VALUE_TRUNCATE (TYPE_MODE (args->type),
665 real_value_from_int_cst (args->type, args->i));
666 #endif
669 /* Given a tree representing an integer constant I, return a tree
670 representing the same value as a floating-point constant of type TYPE.
671 We cannot perform this operation if there is no way of doing arithmetic
672 on floating-point values. */
674 tree
675 build_real_from_int_cst (type, i)
676 tree type;
677 tree i;
679 tree v;
680 int overflow = TREE_OVERFLOW (i);
681 REAL_VALUE_TYPE d;
682 struct brfic_args args;
684 v = make_node (REAL_CST);
685 TREE_TYPE (v) = type;
687 /* Setup input for build_real_from_int_cst_1() */
688 args.type = type;
689 args.i = i;
691 if (do_float_handler (build_real_from_int_cst_1, (PTR) &args))
692 /* Receive output from build_real_from_int_cst_1() */
693 d = args.d;
694 else
696 /* We got an exception from build_real_from_int_cst_1() */
697 d = dconst0;
698 overflow = 1;
701 /* Check for valid float value for this type on this target machine. */
703 #ifdef CHECK_FLOAT_VALUE
704 CHECK_FLOAT_VALUE (TYPE_MODE (type), d, overflow);
705 #endif
707 TREE_REAL_CST (v) = d;
708 TREE_OVERFLOW (v) = TREE_CONSTANT_OVERFLOW (v) = overflow;
709 return v;
712 #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
714 /* Return a newly constructed STRING_CST node whose value is
715 the LEN characters at STR.
716 The TREE_TYPE is not initialized. */
718 tree
719 build_string (len, str)
720 int len;
721 const char *str;
723 register tree s = make_node (STRING_CST);
725 TREE_STRING_LENGTH (s) = len;
726 TREE_STRING_POINTER (s) = ggc_alloc_string (str, len);
728 return s;
731 /* Return a newly constructed COMPLEX_CST node whose value is
732 specified by the real and imaginary parts REAL and IMAG.
733 Both REAL and IMAG should be constant nodes. TYPE, if specified,
734 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
736 tree
737 build_complex (type, real, imag)
738 tree type;
739 tree real, imag;
741 register tree t = make_node (COMPLEX_CST);
743 TREE_REALPART (t) = real;
744 TREE_IMAGPART (t) = imag;
745 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
746 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
747 TREE_CONSTANT_OVERFLOW (t)
748 = TREE_CONSTANT_OVERFLOW (real) | TREE_CONSTANT_OVERFLOW (imag);
749 return t;
752 /* Build a newly constructed TREE_VEC node of length LEN. */
754 tree
755 make_tree_vec (len)
756 int len;
758 register tree t;
759 register int length = (len-1) * sizeof (tree) + sizeof (struct tree_vec);
761 #ifdef GATHER_STATISTICS
762 tree_node_counts[(int)vec_kind]++;
763 tree_node_sizes[(int)vec_kind] += length;
764 #endif
766 t = ggc_alloc_tree (length);
768 memset ((PTR) t, 0, length);
769 TREE_SET_CODE (t, TREE_VEC);
770 TREE_VEC_LENGTH (t) = len;
772 return t;
775 /* Return 1 if EXPR is the integer constant zero or a complex constant
776 of zero. */
779 integer_zerop (expr)
780 tree expr;
782 STRIP_NOPS (expr);
784 return ((TREE_CODE (expr) == INTEGER_CST
785 && ! TREE_CONSTANT_OVERFLOW (expr)
786 && TREE_INT_CST_LOW (expr) == 0
787 && TREE_INT_CST_HIGH (expr) == 0)
788 || (TREE_CODE (expr) == COMPLEX_CST
789 && integer_zerop (TREE_REALPART (expr))
790 && integer_zerop (TREE_IMAGPART (expr))));
793 /* Return 1 if EXPR is the integer constant one or the corresponding
794 complex constant. */
797 integer_onep (expr)
798 tree expr;
800 STRIP_NOPS (expr);
802 return ((TREE_CODE (expr) == INTEGER_CST
803 && ! TREE_CONSTANT_OVERFLOW (expr)
804 && TREE_INT_CST_LOW (expr) == 1
805 && TREE_INT_CST_HIGH (expr) == 0)
806 || (TREE_CODE (expr) == COMPLEX_CST
807 && integer_onep (TREE_REALPART (expr))
808 && integer_zerop (TREE_IMAGPART (expr))));
811 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
812 it contains. Likewise for the corresponding complex constant. */
815 integer_all_onesp (expr)
816 tree expr;
818 register int prec;
819 register int uns;
821 STRIP_NOPS (expr);
823 if (TREE_CODE (expr) == COMPLEX_CST
824 && integer_all_onesp (TREE_REALPART (expr))
825 && integer_zerop (TREE_IMAGPART (expr)))
826 return 1;
828 else if (TREE_CODE (expr) != INTEGER_CST
829 || TREE_CONSTANT_OVERFLOW (expr))
830 return 0;
832 uns = TREE_UNSIGNED (TREE_TYPE (expr));
833 if (!uns)
834 return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
835 && TREE_INT_CST_HIGH (expr) == -1);
837 /* Note that using TYPE_PRECISION here is wrong. We care about the
838 actual bits, not the (arbitrary) range of the type. */
839 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr)));
840 if (prec >= HOST_BITS_PER_WIDE_INT)
842 HOST_WIDE_INT high_value;
843 int shift_amount;
845 shift_amount = prec - HOST_BITS_PER_WIDE_INT;
847 if (shift_amount > HOST_BITS_PER_WIDE_INT)
848 /* Can not handle precisions greater than twice the host int size. */
849 abort ();
850 else if (shift_amount == HOST_BITS_PER_WIDE_INT)
851 /* Shifting by the host word size is undefined according to the ANSI
852 standard, so we must handle this as a special case. */
853 high_value = -1;
854 else
855 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
857 return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
858 && TREE_INT_CST_HIGH (expr) == high_value);
860 else
861 return TREE_INT_CST_LOW (expr) == ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
864 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
865 one bit on). */
868 integer_pow2p (expr)
869 tree expr;
871 int prec;
872 HOST_WIDE_INT high, low;
874 STRIP_NOPS (expr);
876 if (TREE_CODE (expr) == COMPLEX_CST
877 && integer_pow2p (TREE_REALPART (expr))
878 && integer_zerop (TREE_IMAGPART (expr)))
879 return 1;
881 if (TREE_CODE (expr) != INTEGER_CST || TREE_CONSTANT_OVERFLOW (expr))
882 return 0;
884 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
885 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
886 high = TREE_INT_CST_HIGH (expr);
887 low = TREE_INT_CST_LOW (expr);
889 /* First clear all bits that are beyond the type's precision in case
890 we've been sign extended. */
892 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
894 else if (prec > HOST_BITS_PER_WIDE_INT)
895 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
896 else
898 high = 0;
899 if (prec < HOST_BITS_PER_WIDE_INT)
900 low &= ~((HOST_WIDE_INT) (-1) << prec);
903 if (high == 0 && low == 0)
904 return 0;
906 return ((high == 0 && (low & (low - 1)) == 0)
907 || (low == 0 && (high & (high - 1)) == 0));
910 /* Return the power of two represented by a tree node known to be a
911 power of two. */
914 tree_log2 (expr)
915 tree expr;
917 int prec;
918 HOST_WIDE_INT high, low;
920 STRIP_NOPS (expr);
922 if (TREE_CODE (expr) == COMPLEX_CST)
923 return tree_log2 (TREE_REALPART (expr));
925 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
926 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
928 high = TREE_INT_CST_HIGH (expr);
929 low = TREE_INT_CST_LOW (expr);
931 /* First clear all bits that are beyond the type's precision in case
932 we've been sign extended. */
934 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
936 else if (prec > HOST_BITS_PER_WIDE_INT)
937 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
938 else
940 high = 0;
941 if (prec < HOST_BITS_PER_WIDE_INT)
942 low &= ~((HOST_WIDE_INT) (-1) << prec);
945 return (high != 0 ? HOST_BITS_PER_WIDE_INT + exact_log2 (high)
946 : exact_log2 (low));
949 /* Similar, but return the largest integer Y such that 2 ** Y is less
950 than or equal to EXPR. */
953 tree_floor_log2 (expr)
954 tree expr;
956 int prec;
957 HOST_WIDE_INT high, low;
959 STRIP_NOPS (expr);
961 if (TREE_CODE (expr) == COMPLEX_CST)
962 return tree_log2 (TREE_REALPART (expr));
964 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
965 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
967 high = TREE_INT_CST_HIGH (expr);
968 low = TREE_INT_CST_LOW (expr);
970 /* First clear all bits that are beyond the type's precision in case
971 we've been sign extended. Ignore if type's precision hasn't been set
972 since what we are doing is setting it. */
974 if (prec == 2 * HOST_BITS_PER_WIDE_INT || prec == 0)
976 else if (prec > HOST_BITS_PER_WIDE_INT)
977 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
978 else
980 high = 0;
981 if (prec < HOST_BITS_PER_WIDE_INT)
982 low &= ~((HOST_WIDE_INT) (-1) << prec);
985 return (high != 0 ? HOST_BITS_PER_WIDE_INT + floor_log2 (high)
986 : floor_log2 (low));
989 /* Return 1 if EXPR is the real constant zero. */
992 real_zerop (expr)
993 tree expr;
995 STRIP_NOPS (expr);
997 return ((TREE_CODE (expr) == REAL_CST
998 && ! TREE_CONSTANT_OVERFLOW (expr)
999 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0))
1000 || (TREE_CODE (expr) == COMPLEX_CST
1001 && real_zerop (TREE_REALPART (expr))
1002 && real_zerop (TREE_IMAGPART (expr))));
1005 /* Return 1 if EXPR is the real constant one in real or complex form. */
1008 real_onep (expr)
1009 tree expr;
1011 STRIP_NOPS (expr);
1013 return ((TREE_CODE (expr) == REAL_CST
1014 && ! TREE_CONSTANT_OVERFLOW (expr)
1015 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1))
1016 || (TREE_CODE (expr) == COMPLEX_CST
1017 && real_onep (TREE_REALPART (expr))
1018 && real_zerop (TREE_IMAGPART (expr))));
1021 /* Return 1 if EXPR is the real constant two. */
1024 real_twop (expr)
1025 tree expr;
1027 STRIP_NOPS (expr);
1029 return ((TREE_CODE (expr) == REAL_CST
1030 && ! TREE_CONSTANT_OVERFLOW (expr)
1031 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2))
1032 || (TREE_CODE (expr) == COMPLEX_CST
1033 && real_twop (TREE_REALPART (expr))
1034 && real_zerop (TREE_IMAGPART (expr))));
1037 /* Nonzero if EXP is a constant or a cast of a constant. */
1040 really_constant_p (exp)
1041 tree exp;
1043 /* This is not quite the same as STRIP_NOPS. It does more. */
1044 while (TREE_CODE (exp) == NOP_EXPR
1045 || TREE_CODE (exp) == CONVERT_EXPR
1046 || TREE_CODE (exp) == NON_LVALUE_EXPR)
1047 exp = TREE_OPERAND (exp, 0);
1048 return TREE_CONSTANT (exp);
1051 /* Return first list element whose TREE_VALUE is ELEM.
1052 Return 0 if ELEM is not in LIST. */
1054 tree
1055 value_member (elem, list)
1056 tree elem, list;
1058 while (list)
1060 if (elem == TREE_VALUE (list))
1061 return list;
1062 list = TREE_CHAIN (list);
1064 return NULL_TREE;
1067 /* Return first list element whose TREE_PURPOSE is ELEM.
1068 Return 0 if ELEM is not in LIST. */
1070 tree
1071 purpose_member (elem, list)
1072 tree elem, list;
1074 while (list)
1076 if (elem == TREE_PURPOSE (list))
1077 return list;
1078 list = TREE_CHAIN (list);
1080 return NULL_TREE;
1083 /* Return first list element whose BINFO_TYPE is ELEM.
1084 Return 0 if ELEM is not in LIST. */
1086 tree
1087 binfo_member (elem, list)
1088 tree elem, list;
1090 while (list)
1092 if (elem == BINFO_TYPE (list))
1093 return list;
1094 list = TREE_CHAIN (list);
1096 return NULL_TREE;
1099 /* Return nonzero if ELEM is part of the chain CHAIN. */
1102 chain_member (elem, chain)
1103 tree elem, chain;
1105 while (chain)
1107 if (elem == chain)
1108 return 1;
1109 chain = TREE_CHAIN (chain);
1112 return 0;
1115 /* Return nonzero if ELEM is equal to TREE_VALUE (CHAIN) for any piece of
1116 chain CHAIN. This and the next function are currently unused, but
1117 are retained for completeness. */
1120 chain_member_value (elem, chain)
1121 tree elem, chain;
1123 while (chain)
1125 if (elem == TREE_VALUE (chain))
1126 return 1;
1127 chain = TREE_CHAIN (chain);
1130 return 0;
1133 /* Return nonzero if ELEM is equal to TREE_PURPOSE (CHAIN)
1134 for any piece of chain CHAIN. */
1137 chain_member_purpose (elem, chain)
1138 tree elem, chain;
1140 while (chain)
1142 if (elem == TREE_PURPOSE (chain))
1143 return 1;
1144 chain = TREE_CHAIN (chain);
1147 return 0;
1150 /* Return the length of a chain of nodes chained through TREE_CHAIN.
1151 We expect a null pointer to mark the end of the chain.
1152 This is the Lisp primitive `length'. */
1155 list_length (t)
1156 tree t;
1158 register tree tail;
1159 register int len = 0;
1161 for (tail = t; tail; tail = TREE_CHAIN (tail))
1162 len++;
1164 return len;
1167 /* Returns the number of FIELD_DECLs in TYPE. */
1170 fields_length (type)
1171 tree type;
1173 tree t = TYPE_FIELDS (type);
1174 int count = 0;
1176 for (; t; t = TREE_CHAIN (t))
1177 if (TREE_CODE (t) == FIELD_DECL)
1178 ++count;
1180 return count;
1183 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
1184 by modifying the last node in chain 1 to point to chain 2.
1185 This is the Lisp primitive `nconc'. */
1187 tree
1188 chainon (op1, op2)
1189 tree op1, op2;
1192 if (op1)
1194 register tree t1;
1195 #ifdef ENABLE_TREE_CHECKING
1196 register tree t2;
1197 #endif
1199 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
1201 TREE_CHAIN (t1) = op2;
1202 #ifdef ENABLE_TREE_CHECKING
1203 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
1204 if (t2 == t1)
1205 abort (); /* Circularity created. */
1206 #endif
1207 return op1;
1209 else
1210 return op2;
1213 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
1215 tree
1216 tree_last (chain)
1217 register tree chain;
1219 register tree next;
1220 if (chain)
1221 while ((next = TREE_CHAIN (chain)))
1222 chain = next;
1223 return chain;
1226 /* Reverse the order of elements in the chain T,
1227 and return the new head of the chain (old last element). */
1229 tree
1230 nreverse (t)
1231 tree t;
1233 register tree prev = 0, decl, next;
1234 for (decl = t; decl; decl = next)
1236 next = TREE_CHAIN (decl);
1237 TREE_CHAIN (decl) = prev;
1238 prev = decl;
1240 return prev;
1243 /* Given a chain CHAIN of tree nodes,
1244 construct and return a list of those nodes. */
1246 tree
1247 listify (chain)
1248 tree chain;
1250 tree result = NULL_TREE;
1251 tree in_tail = chain;
1252 tree out_tail = NULL_TREE;
1254 while (in_tail)
1256 tree next = tree_cons (NULL_TREE, in_tail, NULL_TREE);
1257 if (out_tail)
1258 TREE_CHAIN (out_tail) = next;
1259 else
1260 result = next;
1261 out_tail = next;
1262 in_tail = TREE_CHAIN (in_tail);
1265 return result;
1268 /* Return a newly created TREE_LIST node whose
1269 purpose and value fields are PARM and VALUE. */
1271 tree
1272 build_tree_list (parm, value)
1273 tree parm, value;
1275 register tree t = make_node (TREE_LIST);
1276 TREE_PURPOSE (t) = parm;
1277 TREE_VALUE (t) = value;
1278 return t;
1281 /* Return a newly created TREE_LIST node whose
1282 purpose and value fields are PARM and VALUE
1283 and whose TREE_CHAIN is CHAIN. */
1285 tree
1286 tree_cons (purpose, value, chain)
1287 tree purpose, value, chain;
1289 register tree node;
1291 node = ggc_alloc_tree (sizeof (struct tree_list));
1293 memset (node, 0, sizeof (struct tree_common));
1295 #ifdef GATHER_STATISTICS
1296 tree_node_counts[(int) x_kind]++;
1297 tree_node_sizes[(int) x_kind] += sizeof (struct tree_list);
1298 #endif
1300 TREE_SET_CODE (node, TREE_LIST);
1301 TREE_CHAIN (node) = chain;
1302 TREE_PURPOSE (node) = purpose;
1303 TREE_VALUE (node) = value;
1304 return node;
1308 /* Return the size nominally occupied by an object of type TYPE
1309 when it resides in memory. The value is measured in units of bytes,
1310 and its data type is that normally used for type sizes
1311 (which is the first type created by make_signed_type or
1312 make_unsigned_type). */
1314 tree
1315 size_in_bytes (type)
1316 tree type;
1318 tree t;
1320 if (type == error_mark_node)
1321 return integer_zero_node;
1323 type = TYPE_MAIN_VARIANT (type);
1324 t = TYPE_SIZE_UNIT (type);
1326 if (t == 0)
1328 incomplete_type_error (NULL_TREE, type);
1329 return size_zero_node;
1332 if (TREE_CODE (t) == INTEGER_CST)
1333 force_fit_type (t, 0);
1335 return t;
1338 /* Return the size of TYPE (in bytes) as a wide integer
1339 or return -1 if the size can vary or is larger than an integer. */
1341 HOST_WIDE_INT
1342 int_size_in_bytes (type)
1343 tree type;
1345 tree t;
1347 if (type == error_mark_node)
1348 return 0;
1350 type = TYPE_MAIN_VARIANT (type);
1351 t = TYPE_SIZE_UNIT (type);
1352 if (t == 0
1353 || TREE_CODE (t) != INTEGER_CST
1354 || TREE_OVERFLOW (t)
1355 || TREE_INT_CST_HIGH (t) != 0
1356 /* If the result would appear negative, it's too big to represent. */
1357 || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
1358 return -1;
1360 return TREE_INT_CST_LOW (t);
1363 /* Return the bit position of FIELD, in bits from the start of the record.
1364 This is a tree of type bitsizetype. */
1366 tree
1367 bit_position (field)
1368 tree field;
1371 return bit_from_pos (DECL_FIELD_OFFSET (field),
1372 DECL_FIELD_BIT_OFFSET (field));
1375 /* Likewise, but return as an integer. Abort if it cannot be represented
1376 in that way (since it could be a signed value, we don't have the option
1377 of returning -1 like int_size_in_byte can. */
1379 HOST_WIDE_INT
1380 int_bit_position (field)
1381 tree field;
1383 return tree_low_cst (bit_position (field), 0);
1386 /* Return the byte position of FIELD, in bytes from the start of the record.
1387 This is a tree of type sizetype. */
1389 tree
1390 byte_position (field)
1391 tree field;
1393 return byte_from_pos (DECL_FIELD_OFFSET (field),
1394 DECL_FIELD_BIT_OFFSET (field));
1397 /* Likewise, but return as an integer. Abort if it cannot be represented
1398 in that way (since it could be a signed value, we don't have the option
1399 of returning -1 like int_size_in_byte can. */
1401 HOST_WIDE_INT
1402 int_byte_position (field)
1403 tree field;
1405 return tree_low_cst (byte_position (field), 0);
1408 /* Return the strictest alignment, in bits, that T is known to have. */
1410 unsigned int
1411 expr_align (t)
1412 tree t;
1414 unsigned int align0, align1;
1416 switch (TREE_CODE (t))
1418 case NOP_EXPR: case CONVERT_EXPR: case NON_LVALUE_EXPR:
1419 /* If we have conversions, we know that the alignment of the
1420 object must meet each of the alignments of the types. */
1421 align0 = expr_align (TREE_OPERAND (t, 0));
1422 align1 = TYPE_ALIGN (TREE_TYPE (t));
1423 return MAX (align0, align1);
1425 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
1426 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
1427 case WITH_RECORD_EXPR: case CLEANUP_POINT_EXPR: case UNSAVE_EXPR:
1428 /* These don't change the alignment of an object. */
1429 return expr_align (TREE_OPERAND (t, 0));
1431 case COND_EXPR:
1432 /* The best we can do is say that the alignment is the least aligned
1433 of the two arms. */
1434 align0 = expr_align (TREE_OPERAND (t, 1));
1435 align1 = expr_align (TREE_OPERAND (t, 2));
1436 return MIN (align0, align1);
1438 case LABEL_DECL: case CONST_DECL:
1439 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
1440 if (DECL_ALIGN (t) != 0)
1441 return DECL_ALIGN (t);
1442 break;
1444 case FUNCTION_DECL:
1445 return FUNCTION_BOUNDARY;
1447 default:
1448 break;
1451 /* Otherwise take the alignment from that of the type. */
1452 return TYPE_ALIGN (TREE_TYPE (t));
1455 /* Return, as a tree node, the number of elements for TYPE (which is an
1456 ARRAY_TYPE) minus one. This counts only elements of the top array. */
1458 tree
1459 array_type_nelts (type)
1460 tree type;
1462 tree index_type, min, max;
1464 /* If they did it with unspecified bounds, then we should have already
1465 given an error about it before we got here. */
1466 if (! TYPE_DOMAIN (type))
1467 return error_mark_node;
1469 index_type = TYPE_DOMAIN (type);
1470 min = TYPE_MIN_VALUE (index_type);
1471 max = TYPE_MAX_VALUE (index_type);
1473 return (integer_zerop (min)
1474 ? max
1475 : fold (build (MINUS_EXPR, TREE_TYPE (max), max, min)));
1478 /* Return nonzero if arg is static -- a reference to an object in
1479 static storage. This is not the same as the C meaning of `static'. */
1482 staticp (arg)
1483 tree arg;
1485 switch (TREE_CODE (arg))
1487 case FUNCTION_DECL:
1488 /* Nested functions aren't static, since taking their address
1489 involves a trampoline. */
1490 return (decl_function_context (arg) == 0 || DECL_NO_STATIC_CHAIN (arg))
1491 && ! DECL_NON_ADDR_CONST_P (arg);
1493 case VAR_DECL:
1494 return (TREE_STATIC (arg) || DECL_EXTERNAL (arg))
1495 && ! DECL_NON_ADDR_CONST_P (arg);
1497 case CONSTRUCTOR:
1498 return TREE_STATIC (arg);
1500 case LABEL_DECL:
1501 case STRING_CST:
1502 return 1;
1504 /* If we are referencing a bitfield, we can't evaluate an
1505 ADDR_EXPR at compile time and so it isn't a constant. */
1506 case COMPONENT_REF:
1507 return (! DECL_BIT_FIELD (TREE_OPERAND (arg, 1))
1508 && staticp (TREE_OPERAND (arg, 0)));
1510 case BIT_FIELD_REF:
1511 return 0;
1513 #if 0
1514 /* This case is technically correct, but results in setting
1515 TREE_CONSTANT on ADDR_EXPRs that cannot be evaluated at
1516 compile time. */
1517 case INDIRECT_REF:
1518 return TREE_CONSTANT (TREE_OPERAND (arg, 0));
1519 #endif
1521 case ARRAY_REF:
1522 case ARRAY_RANGE_REF:
1523 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
1524 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
1525 return staticp (TREE_OPERAND (arg, 0));
1527 default:
1528 return 0;
1532 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
1533 Do this to any expression which may be used in more than one place,
1534 but must be evaluated only once.
1536 Normally, expand_expr would reevaluate the expression each time.
1537 Calling save_expr produces something that is evaluated and recorded
1538 the first time expand_expr is called on it. Subsequent calls to
1539 expand_expr just reuse the recorded value.
1541 The call to expand_expr that generates code that actually computes
1542 the value is the first call *at compile time*. Subsequent calls
1543 *at compile time* generate code to use the saved value.
1544 This produces correct result provided that *at run time* control
1545 always flows through the insns made by the first expand_expr
1546 before reaching the other places where the save_expr was evaluated.
1547 You, the caller of save_expr, must make sure this is so.
1549 Constants, and certain read-only nodes, are returned with no
1550 SAVE_EXPR because that is safe. Expressions containing placeholders
1551 are not touched; see tree.def for an explanation of what these
1552 are used for. */
1554 tree
1555 save_expr (expr)
1556 tree expr;
1558 register tree t = fold (expr);
1560 /* We don't care about whether this can be used as an lvalue in this
1561 context. */
1562 while (TREE_CODE (t) == NON_LVALUE_EXPR)
1563 t = TREE_OPERAND (t, 0);
1565 /* If the tree evaluates to a constant, then we don't want to hide that
1566 fact (i.e. this allows further folding, and direct checks for constants).
1567 However, a read-only object that has side effects cannot be bypassed.
1568 Since it is no problem to reevaluate literals, we just return the
1569 literal node. */
1571 if (TREE_CONSTANT (t) || (TREE_READONLY (t) && ! TREE_SIDE_EFFECTS (t))
1572 || TREE_CODE (t) == SAVE_EXPR || TREE_CODE (t) == ERROR_MARK)
1573 return t;
1575 /* If T contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
1576 it means that the size or offset of some field of an object depends on
1577 the value within another field.
1579 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
1580 and some variable since it would then need to be both evaluated once and
1581 evaluated more than once. Front-ends must assure this case cannot
1582 happen by surrounding any such subexpressions in their own SAVE_EXPR
1583 and forcing evaluation at the proper time. */
1584 if (contains_placeholder_p (t))
1585 return t;
1587 t = build (SAVE_EXPR, TREE_TYPE (expr), t, current_function_decl, NULL_TREE);
1589 /* This expression might be placed ahead of a jump to ensure that the
1590 value was computed on both sides of the jump. So make sure it isn't
1591 eliminated as dead. */
1592 TREE_SIDE_EFFECTS (t) = 1;
1593 TREE_READONLY (t) = 1;
1594 return t;
1597 /* Arrange for an expression to be expanded multiple independent
1598 times. This is useful for cleanup actions, as the backend can
1599 expand them multiple times in different places. */
1601 tree
1602 unsave_expr (expr)
1603 tree expr;
1605 tree t;
1607 /* If this is already protected, no sense in protecting it again. */
1608 if (TREE_CODE (expr) == UNSAVE_EXPR)
1609 return expr;
1611 t = build1 (UNSAVE_EXPR, TREE_TYPE (expr), expr);
1612 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (expr);
1613 return t;
1616 /* Returns the index of the first non-tree operand for CODE, or the number
1617 of operands if all are trees. */
1620 first_rtl_op (code)
1621 enum tree_code code;
1623 switch (code)
1625 case SAVE_EXPR:
1626 return 2;
1627 case GOTO_SUBROUTINE_EXPR:
1628 case RTL_EXPR:
1629 return 0;
1630 case WITH_CLEANUP_EXPR:
1631 /* Should be defined to be 2. */
1632 return 1;
1633 case METHOD_CALL_EXPR:
1634 return 3;
1635 default:
1636 return TREE_CODE_LENGTH (code);
1640 /* Perform any modifications to EXPR required when it is unsaved. Does
1641 not recurse into EXPR's subtrees. */
1643 void
1644 unsave_expr_1 (expr)
1645 tree expr;
1647 switch (TREE_CODE (expr))
1649 case SAVE_EXPR:
1650 if (! SAVE_EXPR_PERSISTENT_P (expr))
1651 SAVE_EXPR_RTL (expr) = 0;
1652 break;
1654 case TARGET_EXPR:
1655 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
1656 It's OK for this to happen if it was part of a subtree that
1657 isn't immediately expanded, such as operand 2 of another
1658 TARGET_EXPR. */
1659 if (TREE_OPERAND (expr, 1))
1660 break;
1662 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
1663 TREE_OPERAND (expr, 3) = NULL_TREE;
1664 break;
1666 case RTL_EXPR:
1667 /* I don't yet know how to emit a sequence multiple times. */
1668 if (RTL_EXPR_SEQUENCE (expr) != 0)
1669 abort ();
1670 break;
1672 default:
1673 if (lang_unsave_expr_now != 0)
1674 (*lang_unsave_expr_now) (expr);
1675 break;
1679 /* Helper function for unsave_expr_now. */
1681 static void
1682 unsave_expr_now_r (expr)
1683 tree expr;
1685 enum tree_code code;
1687 /* There's nothing to do for NULL_TREE. */
1688 if (expr == 0)
1689 return;
1691 unsave_expr_1 (expr);
1693 code = TREE_CODE (expr);
1694 switch (TREE_CODE_CLASS (code))
1696 case 'c': /* a constant */
1697 case 't': /* a type node */
1698 case 'd': /* A decl node */
1699 case 'b': /* A block node */
1700 break;
1702 case 'x': /* miscellaneous: e.g., identifier, TREE_LIST or ERROR_MARK. */
1703 if (code == TREE_LIST)
1705 unsave_expr_now_r (TREE_VALUE (expr));
1706 unsave_expr_now_r (TREE_CHAIN (expr));
1708 break;
1710 case 'e': /* an expression */
1711 case 'r': /* a reference */
1712 case 's': /* an expression with side effects */
1713 case '<': /* a comparison expression */
1714 case '2': /* a binary arithmetic expression */
1715 case '1': /* a unary arithmetic expression */
1717 int i;
1719 for (i = first_rtl_op (code) - 1; i >= 0; i--)
1720 unsave_expr_now_r (TREE_OPERAND (expr, i));
1722 break;
1724 default:
1725 abort ();
1729 /* Modify a tree in place so that all the evaluate only once things
1730 are cleared out. Return the EXPR given. */
1732 tree
1733 unsave_expr_now (expr)
1734 tree expr;
1736 if (lang_unsave!= 0)
1737 (*lang_unsave) (&expr);
1738 else
1739 unsave_expr_now_r (expr);
1741 return expr;
1744 /* Return 0 if it is safe to evaluate EXPR multiple times,
1745 return 1 if it is safe if EXPR is unsaved afterward, or
1746 return 2 if it is completely unsafe.
1748 This assumes that CALL_EXPRs and TARGET_EXPRs are never replicated in
1749 an expression tree, so that it safe to unsave them and the surrounding
1750 context will be correct.
1752 SAVE_EXPRs basically *only* appear replicated in an expression tree,
1753 occasionally across the whole of a function. It is therefore only
1754 safe to unsave a SAVE_EXPR if you know that all occurrences appear
1755 below the UNSAVE_EXPR.
1757 RTL_EXPRs consume their rtl during evaluation. It is therefore
1758 never possible to unsave them. */
1761 unsafe_for_reeval (expr)
1762 tree expr;
1764 int unsafeness = 0;
1765 enum tree_code code;
1766 int i, tmp;
1767 tree exp;
1768 int first_rtl;
1770 if (expr == NULL_TREE)
1771 return 1;
1773 code = TREE_CODE (expr);
1774 first_rtl = first_rtl_op (code);
1776 switch (code)
1778 case SAVE_EXPR:
1779 case RTL_EXPR:
1780 return 2;
1782 case TREE_LIST:
1783 for (exp = expr; exp != 0; exp = TREE_CHAIN (exp))
1785 tmp = unsafe_for_reeval (TREE_VALUE (exp));
1786 unsafeness = MAX (tmp, unsafeness);
1789 return unsafeness;
1791 case CALL_EXPR:
1792 tmp = unsafe_for_reeval (TREE_OPERAND (expr, 1));
1793 return MAX (tmp, 1);
1795 case TARGET_EXPR:
1796 unsafeness = 1;
1797 break;
1799 default:
1800 if (lang_unsafe_for_reeval != 0)
1802 tmp = (*lang_unsafe_for_reeval) (expr);
1803 if (tmp >= 0)
1804 return tmp;
1806 break;
1809 switch (TREE_CODE_CLASS (code))
1811 case 'c': /* a constant */
1812 case 't': /* a type node */
1813 case 'x': /* something random, like an identifier or an ERROR_MARK. */
1814 case 'd': /* A decl node */
1815 case 'b': /* A block node */
1816 return 0;
1818 case 'e': /* an expression */
1819 case 'r': /* a reference */
1820 case 's': /* an expression with side effects */
1821 case '<': /* a comparison expression */
1822 case '2': /* a binary arithmetic expression */
1823 case '1': /* a unary arithmetic expression */
1824 for (i = first_rtl - 1; i >= 0; i--)
1826 tmp = unsafe_for_reeval (TREE_OPERAND (expr, i));
1827 unsafeness = MAX (tmp, unsafeness);
1830 return unsafeness;
1832 default:
1833 return 2;
1837 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
1838 or offset that depends on a field within a record. */
1841 contains_placeholder_p (exp)
1842 tree exp;
1844 register enum tree_code code;
1845 int result;
1847 if (!exp)
1848 return 0;
1850 /* If we have a WITH_RECORD_EXPR, it "cancels" any PLACEHOLDER_EXPR
1851 in it since it is supplying a value for it. */
1852 code = TREE_CODE (exp);
1853 if (code == WITH_RECORD_EXPR)
1854 return 0;
1855 else if (code == PLACEHOLDER_EXPR)
1856 return 1;
1858 switch (TREE_CODE_CLASS (code))
1860 case 'r':
1861 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
1862 position computations since they will be converted into a
1863 WITH_RECORD_EXPR involving the reference, which will assume
1864 here will be valid. */
1865 return contains_placeholder_p (TREE_OPERAND (exp, 0));
1867 case 'x':
1868 if (code == TREE_LIST)
1869 return (contains_placeholder_p (TREE_VALUE (exp))
1870 || (TREE_CHAIN (exp) != 0
1871 && contains_placeholder_p (TREE_CHAIN (exp))));
1872 break;
1874 case '1':
1875 case '2': case '<':
1876 case 'e':
1877 switch (code)
1879 case COMPOUND_EXPR:
1880 /* Ignoring the first operand isn't quite right, but works best. */
1881 return contains_placeholder_p (TREE_OPERAND (exp, 1));
1883 case RTL_EXPR:
1884 case CONSTRUCTOR:
1885 return 0;
1887 case COND_EXPR:
1888 return (contains_placeholder_p (TREE_OPERAND (exp, 0))
1889 || contains_placeholder_p (TREE_OPERAND (exp, 1))
1890 || contains_placeholder_p (TREE_OPERAND (exp, 2)));
1892 case SAVE_EXPR:
1893 /* If we already know this doesn't have a placeholder, don't
1894 check again. */
1895 if (SAVE_EXPR_NOPLACEHOLDER (exp) || SAVE_EXPR_RTL (exp) != 0)
1896 return 0;
1898 SAVE_EXPR_NOPLACEHOLDER (exp) = 1;
1899 result = contains_placeholder_p (TREE_OPERAND (exp, 0));
1900 if (result)
1901 SAVE_EXPR_NOPLACEHOLDER (exp) = 0;
1903 return result;
1905 case CALL_EXPR:
1906 return (TREE_OPERAND (exp, 1) != 0
1907 && contains_placeholder_p (TREE_OPERAND (exp, 1)));
1909 default:
1910 break;
1913 switch (TREE_CODE_LENGTH (code))
1915 case 1:
1916 return contains_placeholder_p (TREE_OPERAND (exp, 0));
1917 case 2:
1918 return (contains_placeholder_p (TREE_OPERAND (exp, 0))
1919 || contains_placeholder_p (TREE_OPERAND (exp, 1)));
1920 default:
1921 return 0;
1924 default:
1925 return 0;
1927 return 0;
1930 /* Return 1 if EXP contains any expressions that produce cleanups for an
1931 outer scope to deal with. Used by fold. */
1934 has_cleanups (exp)
1935 tree exp;
1937 int i, nops, cmp;
1939 if (! TREE_SIDE_EFFECTS (exp))
1940 return 0;
1942 switch (TREE_CODE (exp))
1944 case TARGET_EXPR:
1945 case GOTO_SUBROUTINE_EXPR:
1946 case WITH_CLEANUP_EXPR:
1947 return 1;
1949 case CLEANUP_POINT_EXPR:
1950 return 0;
1952 case CALL_EXPR:
1953 for (exp = TREE_OPERAND (exp, 1); exp; exp = TREE_CHAIN (exp))
1955 cmp = has_cleanups (TREE_VALUE (exp));
1956 if (cmp)
1957 return cmp;
1959 return 0;
1961 default:
1962 break;
1965 /* This general rule works for most tree codes. All exceptions should be
1966 handled above. If this is a language-specific tree code, we can't
1967 trust what might be in the operand, so say we don't know
1968 the situation. */
1969 if ((int) TREE_CODE (exp) >= (int) LAST_AND_UNUSED_TREE_CODE)
1970 return -1;
1972 nops = first_rtl_op (TREE_CODE (exp));
1973 for (i = 0; i < nops; i++)
1974 if (TREE_OPERAND (exp, i) != 0)
1976 int type = TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, i)));
1977 if (type == 'e' || type == '<' || type == '1' || type == '2'
1978 || type == 'r' || type == 's')
1980 cmp = has_cleanups (TREE_OPERAND (exp, i));
1981 if (cmp)
1982 return cmp;
1986 return 0;
1989 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
1990 return a tree with all occurrences of references to F in a
1991 PLACEHOLDER_EXPR replaced by R. Note that we assume here that EXP
1992 contains only arithmetic expressions or a CALL_EXPR with a
1993 PLACEHOLDER_EXPR occurring only in its arglist. */
1995 tree
1996 substitute_in_expr (exp, f, r)
1997 tree exp;
1998 tree f;
1999 tree r;
2001 enum tree_code code = TREE_CODE (exp);
2002 tree op0, op1, op2;
2003 tree new;
2004 tree inner;
2006 switch (TREE_CODE_CLASS (code))
2008 case 'c':
2009 case 'd':
2010 return exp;
2012 case 'x':
2013 if (code == PLACEHOLDER_EXPR)
2014 return exp;
2015 else if (code == TREE_LIST)
2017 op0 = (TREE_CHAIN (exp) == 0
2018 ? 0 : substitute_in_expr (TREE_CHAIN (exp), f, r));
2019 op1 = substitute_in_expr (TREE_VALUE (exp), f, r);
2020 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
2021 return exp;
2023 return tree_cons (TREE_PURPOSE (exp), op1, op0);
2026 abort ();
2028 case '1':
2029 case '2':
2030 case '<':
2031 case 'e':
2032 switch (TREE_CODE_LENGTH (code))
2034 case 1:
2035 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2036 if (op0 == TREE_OPERAND (exp, 0))
2037 return exp;
2039 if (code == NON_LVALUE_EXPR)
2040 return op0;
2042 new = fold (build1 (code, TREE_TYPE (exp), op0));
2043 break;
2045 case 2:
2046 /* An RTL_EXPR cannot contain a PLACEHOLDER_EXPR; a CONSTRUCTOR
2047 could, but we don't support it. */
2048 if (code == RTL_EXPR)
2049 return exp;
2050 else if (code == CONSTRUCTOR)
2051 abort ();
2053 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2054 op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
2055 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
2056 return exp;
2058 new = fold (build (code, TREE_TYPE (exp), op0, op1));
2059 break;
2061 case 3:
2062 /* It cannot be that anything inside a SAVE_EXPR contains a
2063 PLACEHOLDER_EXPR. */
2064 if (code == SAVE_EXPR)
2065 return exp;
2067 else if (code == CALL_EXPR)
2069 op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
2070 if (op1 == TREE_OPERAND (exp, 1))
2071 return exp;
2073 return build (code, TREE_TYPE (exp),
2074 TREE_OPERAND (exp, 0), op1, NULL_TREE);
2077 else if (code != COND_EXPR)
2078 abort ();
2080 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2081 op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
2082 op2 = substitute_in_expr (TREE_OPERAND (exp, 2), f, r);
2083 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2084 && op2 == TREE_OPERAND (exp, 2))
2085 return exp;
2087 new = fold (build (code, TREE_TYPE (exp), op0, op1, op2));
2088 break;
2090 default:
2091 abort ();
2094 break;
2096 case 'r':
2097 switch (code)
2099 case COMPONENT_REF:
2100 /* If this expression is getting a value from a PLACEHOLDER_EXPR
2101 and it is the right field, replace it with R. */
2102 for (inner = TREE_OPERAND (exp, 0);
2103 TREE_CODE_CLASS (TREE_CODE (inner)) == 'r';
2104 inner = TREE_OPERAND (inner, 0))
2106 if (TREE_CODE (inner) == PLACEHOLDER_EXPR
2107 && TREE_OPERAND (exp, 1) == f)
2108 return r;
2110 /* If this expression hasn't been completed let, leave it
2111 alone. */
2112 if (TREE_CODE (inner) == PLACEHOLDER_EXPR
2113 && TREE_TYPE (inner) == 0)
2114 return exp;
2116 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2117 if (op0 == TREE_OPERAND (exp, 0))
2118 return exp;
2120 new = fold (build (code, TREE_TYPE (exp), op0,
2121 TREE_OPERAND (exp, 1)));
2122 break;
2124 case BIT_FIELD_REF:
2125 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2126 op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
2127 op2 = substitute_in_expr (TREE_OPERAND (exp, 2), f, r);
2128 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
2129 && op2 == TREE_OPERAND (exp, 2))
2130 return exp;
2132 new = fold (build (code, TREE_TYPE (exp), op0, op1, op2));
2133 break;
2135 case INDIRECT_REF:
2136 case BUFFER_REF:
2137 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2138 if (op0 == TREE_OPERAND (exp, 0))
2139 return exp;
2141 new = fold (build1 (code, TREE_TYPE (exp), op0));
2142 break;
2144 default:
2145 abort ();
2147 break;
2149 default:
2150 abort ();
2153 TREE_READONLY (new) = TREE_READONLY (exp);
2154 return new;
2157 /* Stabilize a reference so that we can use it any number of times
2158 without causing its operands to be evaluated more than once.
2159 Returns the stabilized reference. This works by means of save_expr,
2160 so see the caveats in the comments about save_expr.
2162 Also allows conversion expressions whose operands are references.
2163 Any other kind of expression is returned unchanged. */
2165 tree
2166 stabilize_reference (ref)
2167 tree ref;
2169 register tree result;
2170 register enum tree_code code = TREE_CODE (ref);
2172 switch (code)
2174 case VAR_DECL:
2175 case PARM_DECL:
2176 case RESULT_DECL:
2177 /* No action is needed in this case. */
2178 return ref;
2180 case NOP_EXPR:
2181 case CONVERT_EXPR:
2182 case FLOAT_EXPR:
2183 case FIX_TRUNC_EXPR:
2184 case FIX_FLOOR_EXPR:
2185 case FIX_ROUND_EXPR:
2186 case FIX_CEIL_EXPR:
2187 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
2188 break;
2190 case INDIRECT_REF:
2191 result = build_nt (INDIRECT_REF,
2192 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
2193 break;
2195 case COMPONENT_REF:
2196 result = build_nt (COMPONENT_REF,
2197 stabilize_reference (TREE_OPERAND (ref, 0)),
2198 TREE_OPERAND (ref, 1));
2199 break;
2201 case BIT_FIELD_REF:
2202 result = build_nt (BIT_FIELD_REF,
2203 stabilize_reference (TREE_OPERAND (ref, 0)),
2204 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
2205 stabilize_reference_1 (TREE_OPERAND (ref, 2)));
2206 break;
2208 case ARRAY_REF:
2209 result = build_nt (ARRAY_REF,
2210 stabilize_reference (TREE_OPERAND (ref, 0)),
2211 stabilize_reference_1 (TREE_OPERAND (ref, 1)));
2212 break;
2214 case ARRAY_RANGE_REF:
2215 result = build_nt (ARRAY_RANGE_REF,
2216 stabilize_reference (TREE_OPERAND (ref, 0)),
2217 stabilize_reference_1 (TREE_OPERAND (ref, 1)));
2218 break;
2220 case COMPOUND_EXPR:
2221 /* We cannot wrap the first expression in a SAVE_EXPR, as then
2222 it wouldn't be ignored. This matters when dealing with
2223 volatiles. */
2224 return stabilize_reference_1 (ref);
2226 case RTL_EXPR:
2227 result = build1 (INDIRECT_REF, TREE_TYPE (ref),
2228 save_expr (build1 (ADDR_EXPR,
2229 build_pointer_type (TREE_TYPE (ref)),
2230 ref)));
2231 break;
2233 /* If arg isn't a kind of lvalue we recognize, make no change.
2234 Caller should recognize the error for an invalid lvalue. */
2235 default:
2236 return ref;
2238 case ERROR_MARK:
2239 return error_mark_node;
2242 TREE_TYPE (result) = TREE_TYPE (ref);
2243 TREE_READONLY (result) = TREE_READONLY (ref);
2244 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
2245 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
2247 return result;
2250 /* Subroutine of stabilize_reference; this is called for subtrees of
2251 references. Any expression with side-effects must be put in a SAVE_EXPR
2252 to ensure that it is only evaluated once.
2254 We don't put SAVE_EXPR nodes around everything, because assigning very
2255 simple expressions to temporaries causes us to miss good opportunities
2256 for optimizations. Among other things, the opportunity to fold in the
2257 addition of a constant into an addressing mode often gets lost, e.g.
2258 "y[i+1] += x;". In general, we take the approach that we should not make
2259 an assignment unless we are forced into it - i.e., that any non-side effect
2260 operator should be allowed, and that cse should take care of coalescing
2261 multiple utterances of the same expression should that prove fruitful. */
2263 tree
2264 stabilize_reference_1 (e)
2265 tree e;
2267 register tree result;
2268 register enum tree_code code = TREE_CODE (e);
2270 /* We cannot ignore const expressions because it might be a reference
2271 to a const array but whose index contains side-effects. But we can
2272 ignore things that are actual constant or that already have been
2273 handled by this function. */
2275 if (TREE_CONSTANT (e) || code == SAVE_EXPR)
2276 return e;
2278 switch (TREE_CODE_CLASS (code))
2280 case 'x':
2281 case 't':
2282 case 'd':
2283 case 'b':
2284 case '<':
2285 case 's':
2286 case 'e':
2287 case 'r':
2288 /* If the expression has side-effects, then encase it in a SAVE_EXPR
2289 so that it will only be evaluated once. */
2290 /* The reference (r) and comparison (<) classes could be handled as
2291 below, but it is generally faster to only evaluate them once. */
2292 if (TREE_SIDE_EFFECTS (e))
2293 return save_expr (e);
2294 return e;
2296 case 'c':
2297 /* Constants need no processing. In fact, we should never reach
2298 here. */
2299 return e;
2301 case '2':
2302 /* Division is slow and tends to be compiled with jumps,
2303 especially the division by powers of 2 that is often
2304 found inside of an array reference. So do it just once. */
2305 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
2306 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
2307 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
2308 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
2309 return save_expr (e);
2310 /* Recursively stabilize each operand. */
2311 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
2312 stabilize_reference_1 (TREE_OPERAND (e, 1)));
2313 break;
2315 case '1':
2316 /* Recursively stabilize each operand. */
2317 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
2318 break;
2320 default:
2321 abort ();
2324 TREE_TYPE (result) = TREE_TYPE (e);
2325 TREE_READONLY (result) = TREE_READONLY (e);
2326 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
2327 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
2329 return result;
2332 /* Low-level constructors for expressions. */
2334 /* Build an expression of code CODE, data type TYPE,
2335 and operands as specified by the arguments ARG1 and following arguments.
2336 Expressions and reference nodes can be created this way.
2337 Constants, decls, types and misc nodes cannot be. */
2339 tree
2340 build VPARAMS ((enum tree_code code, tree tt, ...))
2342 #ifndef ANSI_PROTOTYPES
2343 enum tree_code code;
2344 tree tt;
2345 #endif
2346 va_list p;
2347 register tree t;
2348 register int length;
2349 register int i;
2350 int fro;
2351 int constant;
2353 VA_START (p, tt);
2355 #ifndef ANSI_PROTOTYPES
2356 code = va_arg (p, enum tree_code);
2357 tt = va_arg (p, tree);
2358 #endif
2360 t = make_node (code);
2361 length = TREE_CODE_LENGTH (code);
2362 TREE_TYPE (t) = tt;
2364 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
2365 result based on those same flags for the arguments. But if the
2366 arguments aren't really even `tree' expressions, we shouldn't be trying
2367 to do this. */
2368 fro = first_rtl_op (code);
2370 /* Expressions without side effects may be constant if their
2371 arguments are as well. */
2372 constant = (TREE_CODE_CLASS (code) == '<'
2373 || TREE_CODE_CLASS (code) == '1'
2374 || TREE_CODE_CLASS (code) == '2'
2375 || TREE_CODE_CLASS (code) == 'c');
2377 if (length == 2)
2379 /* This is equivalent to the loop below, but faster. */
2380 register tree arg0 = va_arg (p, tree);
2381 register tree arg1 = va_arg (p, tree);
2383 TREE_OPERAND (t, 0) = arg0;
2384 TREE_OPERAND (t, 1) = arg1;
2385 TREE_READONLY (t) = 1;
2386 if (arg0 && fro > 0)
2388 if (TREE_SIDE_EFFECTS (arg0))
2389 TREE_SIDE_EFFECTS (t) = 1;
2390 if (!TREE_READONLY (arg0))
2391 TREE_READONLY (t) = 0;
2392 if (!TREE_CONSTANT (arg0))
2393 constant = 0;
2396 if (arg1 && fro > 1)
2398 if (TREE_SIDE_EFFECTS (arg1))
2399 TREE_SIDE_EFFECTS (t) = 1;
2400 if (!TREE_READONLY (arg1))
2401 TREE_READONLY (t) = 0;
2402 if (!TREE_CONSTANT (arg1))
2403 constant = 0;
2406 else if (length == 1)
2408 register tree arg0 = va_arg (p, tree);
2410 /* The only one-operand cases we handle here are those with side-effects.
2411 Others are handled with build1. So don't bother checked if the
2412 arg has side-effects since we'll already have set it.
2414 ??? This really should use build1 too. */
2415 if (TREE_CODE_CLASS (code) != 's')
2416 abort ();
2417 TREE_OPERAND (t, 0) = arg0;
2419 else
2421 for (i = 0; i < length; i++)
2423 register tree operand = va_arg (p, tree);
2425 TREE_OPERAND (t, i) = operand;
2426 if (operand && fro > i)
2428 if (TREE_SIDE_EFFECTS (operand))
2429 TREE_SIDE_EFFECTS (t) = 1;
2430 if (!TREE_CONSTANT (operand))
2431 constant = 0;
2435 va_end (p);
2437 TREE_CONSTANT (t) = constant;
2438 return t;
2441 /* Same as above, but only builds for unary operators.
2442 Saves lions share of calls to `build'; cuts down use
2443 of varargs, which is expensive for RISC machines. */
2445 tree
2446 build1 (code, type, node)
2447 enum tree_code code;
2448 tree type;
2449 tree node;
2451 register int length;
2452 #ifdef GATHER_STATISTICS
2453 register tree_node_kind kind;
2454 #endif
2455 register tree t;
2457 #ifdef GATHER_STATISTICS
2458 if (TREE_CODE_CLASS (code) == 'r')
2459 kind = r_kind;
2460 else
2461 kind = e_kind;
2462 #endif
2464 #ifdef ENABLE_CHECKING
2465 if (TREE_CODE_CLASS (code) == '2'
2466 || TREE_CODE_CLASS (code) == '<'
2467 || TREE_CODE_LENGTH (code) != 1)
2468 abort ();
2469 #endif /* ENABLE_CHECKING */
2471 length = sizeof (struct tree_exp);
2473 t = ggc_alloc_tree (length);
2475 memset ((PTR) t, 0, sizeof (struct tree_common));
2477 #ifdef GATHER_STATISTICS
2478 tree_node_counts[(int) kind]++;
2479 tree_node_sizes[(int) kind] += length;
2480 #endif
2482 TREE_SET_CODE (t, code);
2484 TREE_TYPE (t) = type;
2485 TREE_COMPLEXITY (t) = 0;
2486 TREE_OPERAND (t, 0) = node;
2487 if (node && first_rtl_op (code) != 0)
2489 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
2490 TREE_READONLY (t) = TREE_READONLY (node);
2493 switch (code)
2495 case INIT_EXPR:
2496 case MODIFY_EXPR:
2497 case VA_ARG_EXPR:
2498 case RTL_EXPR:
2499 case PREDECREMENT_EXPR:
2500 case PREINCREMENT_EXPR:
2501 case POSTDECREMENT_EXPR:
2502 case POSTINCREMENT_EXPR:
2503 /* All of these have side-effects, no matter what their
2504 operands are. */
2505 TREE_SIDE_EFFECTS (t) = 1;
2506 TREE_READONLY (t) = 0;
2507 break;
2509 default:
2510 if (TREE_CODE_CLASS (code) == '1' && node && TREE_CONSTANT (node))
2511 TREE_CONSTANT (t) = 1;
2512 break;
2515 return t;
2518 /* Similar except don't specify the TREE_TYPE
2519 and leave the TREE_SIDE_EFFECTS as 0.
2520 It is permissible for arguments to be null,
2521 or even garbage if their values do not matter. */
2523 tree
2524 build_nt VPARAMS ((enum tree_code code, ...))
2526 #ifndef ANSI_PROTOTYPES
2527 enum tree_code code;
2528 #endif
2529 va_list p;
2530 register tree t;
2531 register int length;
2532 register int i;
2534 VA_START (p, code);
2536 #ifndef ANSI_PROTOTYPES
2537 code = va_arg (p, enum tree_code);
2538 #endif
2540 t = make_node (code);
2541 length = TREE_CODE_LENGTH (code);
2543 for (i = 0; i < length; i++)
2544 TREE_OPERAND (t, i) = va_arg (p, tree);
2546 va_end (p);
2547 return t;
2550 #if 0
2551 /* Commented out because this wants to be done very
2552 differently. See cp-lex.c. */
2553 tree
2554 build_op_identifier (op1, op2)
2555 tree op1, op2;
2557 register tree t = make_node (OP_IDENTIFIER);
2558 TREE_PURPOSE (t) = op1;
2559 TREE_VALUE (t) = op2;
2560 return t;
2562 #endif
2564 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
2565 We do NOT enter this node in any sort of symbol table.
2567 layout_decl is used to set up the decl's storage layout.
2568 Other slots are initialized to 0 or null pointers. */
2570 tree
2571 build_decl (code, name, type)
2572 enum tree_code code;
2573 tree name, type;
2575 register tree t;
2577 t = make_node (code);
2579 /* if (type == error_mark_node)
2580 type = integer_type_node; */
2581 /* That is not done, deliberately, so that having error_mark_node
2582 as the type can suppress useless errors in the use of this variable. */
2584 DECL_NAME (t) = name;
2585 TREE_TYPE (t) = type;
2587 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
2588 layout_decl (t, 0);
2589 else if (code == FUNCTION_DECL)
2590 DECL_MODE (t) = FUNCTION_MODE;
2592 return t;
2595 /* BLOCK nodes are used to represent the structure of binding contours
2596 and declarations, once those contours have been exited and their contents
2597 compiled. This information is used for outputting debugging info. */
2599 tree
2600 build_block (vars, tags, subblocks, supercontext, chain)
2601 tree vars, tags ATTRIBUTE_UNUSED, subblocks, supercontext, chain;
2603 register tree block = make_node (BLOCK);
2605 BLOCK_VARS (block) = vars;
2606 BLOCK_SUBBLOCKS (block) = subblocks;
2607 BLOCK_SUPERCONTEXT (block) = supercontext;
2608 BLOCK_CHAIN (block) = chain;
2609 return block;
2612 /* EXPR_WITH_FILE_LOCATION are used to keep track of the exact
2613 location where an expression or an identifier were encountered. It
2614 is necessary for languages where the frontend parser will handle
2615 recursively more than one file (Java is one of them). */
2617 tree
2618 build_expr_wfl (node, file, line, col)
2619 tree node;
2620 const char *file;
2621 int line, col;
2623 static const char *last_file = 0;
2624 static tree last_filenode = NULL_TREE;
2625 register tree wfl = make_node (EXPR_WITH_FILE_LOCATION);
2627 EXPR_WFL_NODE (wfl) = node;
2628 EXPR_WFL_SET_LINECOL (wfl, line, col);
2629 if (file != last_file)
2631 last_file = file;
2632 last_filenode = file ? get_identifier (file) : NULL_TREE;
2635 EXPR_WFL_FILENAME_NODE (wfl) = last_filenode;
2636 if (node)
2638 TREE_SIDE_EFFECTS (wfl) = TREE_SIDE_EFFECTS (node);
2639 TREE_TYPE (wfl) = TREE_TYPE (node);
2642 return wfl;
2645 /* Return a declaration like DDECL except that its DECL_MACHINE_ATTRIBUTE
2646 is ATTRIBUTE. */
2648 tree
2649 build_decl_attribute_variant (ddecl, attribute)
2650 tree ddecl, attribute;
2652 DECL_MACHINE_ATTRIBUTES (ddecl) = attribute;
2653 return ddecl;
2656 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
2657 is ATTRIBUTE.
2659 Record such modified types already made so we don't make duplicates. */
2661 tree
2662 build_type_attribute_variant (ttype, attribute)
2663 tree ttype, attribute;
2665 if ( ! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
2667 unsigned int hashcode;
2668 tree ntype;
2670 ntype = copy_node (ttype);
2672 TYPE_POINTER_TO (ntype) = 0;
2673 TYPE_REFERENCE_TO (ntype) = 0;
2674 TYPE_ATTRIBUTES (ntype) = attribute;
2676 /* Create a new main variant of TYPE. */
2677 TYPE_MAIN_VARIANT (ntype) = ntype;
2678 TYPE_NEXT_VARIANT (ntype) = 0;
2679 set_type_quals (ntype, TYPE_UNQUALIFIED);
2681 hashcode = (TYPE_HASH (TREE_CODE (ntype))
2682 + TYPE_HASH (TREE_TYPE (ntype))
2683 + attribute_hash_list (attribute));
2685 switch (TREE_CODE (ntype))
2687 case FUNCTION_TYPE:
2688 hashcode += TYPE_HASH (TYPE_ARG_TYPES (ntype));
2689 break;
2690 case ARRAY_TYPE:
2691 hashcode += TYPE_HASH (TYPE_DOMAIN (ntype));
2692 break;
2693 case INTEGER_TYPE:
2694 hashcode += TYPE_HASH (TYPE_MAX_VALUE (ntype));
2695 break;
2696 case REAL_TYPE:
2697 hashcode += TYPE_HASH (TYPE_PRECISION (ntype));
2698 break;
2699 default:
2700 break;
2703 ntype = type_hash_canon (hashcode, ntype);
2704 ttype = build_qualified_type (ntype, TYPE_QUALS (ttype));
2707 return ttype;
2710 /* Default value of targetm.valid_decl_attribute_p and
2711 targetm.valid_type_attribute_p that always returns false. */
2714 default_valid_attribute_p PARAMS ((attr_name, attr_args, decl, type))
2715 tree attr_name ATTRIBUTE_UNUSED;
2716 tree attr_args ATTRIBUTE_UNUSED;
2717 tree decl ATTRIBUTE_UNUSED;
2718 tree type ATTRIBUTE_UNUSED;
2720 return 0;
2723 /* Default value of targetm.comp_type_attributes that always returns 1. */
2726 default_comp_type_attributes (type1, type2)
2727 tree type1 ATTRIBUTE_UNUSED;
2728 tree type2 ATTRIBUTE_UNUSED;
2730 return 1;
2733 /* Default version of targetm.set_default_type_attributes that always does
2734 nothing. */
2736 void
2737 default_set_default_type_attributes (type)
2738 tree type ATTRIBUTE_UNUSED;
2742 /* Default version of targetm.insert_attributes that always does nothing. */
2743 void
2744 default_insert_attributes (decl, attr_ptr)
2745 tree decl ATTRIBUTE_UNUSED;
2746 tree *attr_ptr ATTRIBUTE_UNUSED;
2750 /* Return 1 if ATTR_NAME and ATTR_ARGS is valid for either declaration
2751 DECL or type TYPE and 0 otherwise. Validity is determined the
2752 target functions valid_decl_attribute and valid_machine_attribute. */
2755 valid_machine_attribute (attr_name, attr_args, decl, type)
2756 tree attr_name;
2757 tree attr_args;
2758 tree decl;
2759 tree type;
2761 tree type_attrs;
2763 if (TREE_CODE (attr_name) != IDENTIFIER_NODE)
2764 abort ();
2766 if (decl)
2768 tree decl_attrs = DECL_MACHINE_ATTRIBUTES (decl);
2770 if ((*targetm.valid_decl_attribute) (decl, decl_attrs, attr_name,
2771 attr_args))
2773 tree attr = lookup_attribute (IDENTIFIER_POINTER (attr_name),
2774 decl_attrs);
2776 if (attr != NULL_TREE)
2778 /* Override existing arguments. Declarations are unique
2779 so we can modify this in place. */
2780 TREE_VALUE (attr) = attr_args;
2782 else
2784 decl_attrs = tree_cons (attr_name, attr_args, decl_attrs);
2785 decl = build_decl_attribute_variant (decl, decl_attrs);
2788 /* Don't apply the attribute to both the decl and the type. */
2789 return 1;
2793 type_attrs = TYPE_ATTRIBUTES (type);
2794 if ((*targetm.valid_type_attribute) (type, type_attrs, attr_name,
2795 attr_args))
2797 tree attr = lookup_attribute (IDENTIFIER_POINTER (attr_name),
2798 type_attrs);
2800 if (attr != NULL_TREE)
2802 /* Override existing arguments. ??? This currently
2803 works since attribute arguments are not included in
2804 `attribute_hash_list'. Something more complicated
2805 may be needed in the future. */
2806 TREE_VALUE (attr) = attr_args;
2808 else
2810 /* If this is part of a declaration, create a type variant,
2811 otherwise, this is part of a type definition, so add it
2812 to the base type. */
2813 type_attrs = tree_cons (attr_name, attr_args, type_attrs);
2814 if (decl != 0)
2815 type = build_type_attribute_variant (type, type_attrs);
2816 else
2817 TYPE_ATTRIBUTES (type) = type_attrs;
2820 if (decl)
2821 TREE_TYPE (decl) = type;
2823 return 1;
2825 /* Handle putting a type attribute on pointer-to-function-type
2826 by putting the attribute on the function type. */
2827 else if (POINTER_TYPE_P (type)
2828 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
2829 && (*targetm.valid_type_attribute) (TREE_TYPE (type), type_attrs,
2830 attr_name, attr_args))
2832 tree inner_type = TREE_TYPE (type);
2833 tree inner_attrs = TYPE_ATTRIBUTES (inner_type);
2834 tree attr = lookup_attribute (IDENTIFIER_POINTER (attr_name),
2835 type_attrs);
2837 if (attr != NULL_TREE)
2838 TREE_VALUE (attr) = attr_args;
2839 else
2841 inner_attrs = tree_cons (attr_name, attr_args, inner_attrs);
2842 inner_type = build_type_attribute_variant (inner_type,
2843 inner_attrs);
2846 if (decl)
2847 TREE_TYPE (decl) = build_pointer_type (inner_type);
2848 else
2850 /* Clear TYPE_POINTER_TO for the old inner type, since
2851 `type' won't be pointing to it anymore. */
2852 TYPE_POINTER_TO (TREE_TYPE (type)) = NULL_TREE;
2853 TREE_TYPE (type) = inner_type;
2856 return 1;
2859 return 0;
2862 /* Return non-zero if IDENT is a valid name for attribute ATTR,
2863 or zero if not.
2865 We try both `text' and `__text__', ATTR may be either one. */
2866 /* ??? It might be a reasonable simplification to require ATTR to be only
2867 `text'. One might then also require attribute lists to be stored in
2868 their canonicalized form. */
2871 is_attribute_p (attr, ident)
2872 const char *attr;
2873 tree ident;
2875 int ident_len, attr_len;
2876 const char *p;
2878 if (TREE_CODE (ident) != IDENTIFIER_NODE)
2879 return 0;
2881 if (strcmp (attr, IDENTIFIER_POINTER (ident)) == 0)
2882 return 1;
2884 p = IDENTIFIER_POINTER (ident);
2885 ident_len = strlen (p);
2886 attr_len = strlen (attr);
2888 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
2889 if (attr[0] == '_')
2891 if (attr[1] != '_'
2892 || attr[attr_len - 2] != '_'
2893 || attr[attr_len - 1] != '_')
2894 abort ();
2895 if (ident_len == attr_len - 4
2896 && strncmp (attr + 2, p, attr_len - 4) == 0)
2897 return 1;
2899 else
2901 if (ident_len == attr_len + 4
2902 && p[0] == '_' && p[1] == '_'
2903 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
2904 && strncmp (attr, p + 2, attr_len) == 0)
2905 return 1;
2908 return 0;
2911 /* Given an attribute name and a list of attributes, return a pointer to the
2912 attribute's list element if the attribute is part of the list, or NULL_TREE
2913 if not found. */
2915 tree
2916 lookup_attribute (attr_name, list)
2917 const char *attr_name;
2918 tree list;
2920 tree l;
2922 for (l = list; l; l = TREE_CHAIN (l))
2924 if (TREE_CODE (TREE_PURPOSE (l)) != IDENTIFIER_NODE)
2925 abort ();
2926 if (is_attribute_p (attr_name, TREE_PURPOSE (l)))
2927 return l;
2930 return NULL_TREE;
2933 /* Return an attribute list that is the union of a1 and a2. */
2935 tree
2936 merge_attributes (a1, a2)
2937 register tree a1, a2;
2939 tree attributes;
2941 /* Either one unset? Take the set one. */
2943 if ((attributes = a1) == 0)
2944 attributes = a2;
2946 /* One that completely contains the other? Take it. */
2948 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
2950 if (attribute_list_contained (a2, a1))
2951 attributes = a2;
2952 else
2954 /* Pick the longest list, and hang on the other list. */
2955 /* ??? For the moment we punt on the issue of attrs with args. */
2957 if (list_length (a1) < list_length (a2))
2958 attributes = a2, a2 = a1;
2960 for (; a2 != 0; a2 = TREE_CHAIN (a2))
2961 if (lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
2962 attributes) == NULL_TREE)
2964 a1 = copy_node (a2);
2965 TREE_CHAIN (a1) = attributes;
2966 attributes = a1;
2970 return attributes;
2973 /* Given types T1 and T2, merge their attributes and return
2974 the result. */
2976 tree
2977 merge_type_attributes (t1, t2)
2978 tree t1, t2;
2980 return merge_attributes (TYPE_ATTRIBUTES (t1),
2981 TYPE_ATTRIBUTES (t2));
2984 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
2985 the result. */
2987 tree
2988 merge_decl_attributes (olddecl, newdecl)
2989 tree olddecl, newdecl;
2991 return merge_attributes (DECL_MACHINE_ATTRIBUTES (olddecl),
2992 DECL_MACHINE_ATTRIBUTES (newdecl));
2995 #ifdef TARGET_DLLIMPORT_DECL_ATTRIBUTES
2997 /* Specialization of merge_decl_attributes for various Windows targets.
2999 This handles the following situation:
3001 __declspec (dllimport) int foo;
3002 int foo;
3004 The second instance of `foo' nullifies the dllimport. */
3006 tree
3007 merge_dllimport_decl_attributes (old, new)
3008 tree old;
3009 tree new;
3011 tree a;
3012 int delete_dllimport_p;
3014 old = DECL_MACHINE_ATTRIBUTES (old);
3015 new = DECL_MACHINE_ATTRIBUTES (new);
3017 /* What we need to do here is remove from `old' dllimport if it doesn't
3018 appear in `new'. dllimport behaves like extern: if a declaration is
3019 marked dllimport and a definition appears later, then the object
3020 is not dllimport'd. */
3021 if (lookup_attribute ("dllimport", old) != NULL_TREE
3022 && lookup_attribute ("dllimport", new) == NULL_TREE)
3023 delete_dllimport_p = 1;
3024 else
3025 delete_dllimport_p = 0;
3027 a = merge_attributes (old, new);
3029 if (delete_dllimport_p)
3031 tree prev,t;
3033 /* Scan the list for dllimport and delete it. */
3034 for (prev = NULL_TREE, t = a; t; prev = t, t = TREE_CHAIN (t))
3036 if (is_attribute_p ("dllimport", TREE_PURPOSE (t)))
3038 if (prev == NULL_TREE)
3039 a = TREE_CHAIN (a);
3040 else
3041 TREE_CHAIN (prev) = TREE_CHAIN (t);
3042 break;
3047 return a;
3050 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
3052 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
3053 of the various TYPE_QUAL values. */
3055 static void
3056 set_type_quals (type, type_quals)
3057 tree type;
3058 int type_quals;
3060 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
3061 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
3062 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
3065 /* Return a version of the TYPE, qualified as indicated by the
3066 TYPE_QUALS, if one exists. If no qualified version exists yet,
3067 return NULL_TREE. */
3069 tree
3070 get_qualified_type (type, type_quals)
3071 tree type;
3072 int type_quals;
3074 tree t;
3076 /* Search the chain of variants to see if there is already one there just
3077 like the one we need to have. If so, use that existing one. We must
3078 preserve the TYPE_NAME, since there is code that depends on this. */
3079 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
3080 if (TYPE_QUALS (t) == type_quals && TYPE_NAME (t) == TYPE_NAME (type))
3081 return t;
3083 return NULL_TREE;
3086 /* Like get_qualified_type, but creates the type if it does not
3087 exist. This function never returns NULL_TREE. */
3089 tree
3090 build_qualified_type (type, type_quals)
3091 tree type;
3092 int type_quals;
3094 tree t;
3096 /* See if we already have the appropriate qualified variant. */
3097 t = get_qualified_type (type, type_quals);
3099 /* If not, build it. */
3100 if (!t)
3102 t = build_type_copy (type);
3103 set_type_quals (t, type_quals);
3106 return t;
3109 /* Create a new variant of TYPE, equivalent but distinct.
3110 This is so the caller can modify it. */
3112 tree
3113 build_type_copy (type)
3114 tree type;
3116 register tree t, m = TYPE_MAIN_VARIANT (type);
3118 t = copy_node (type);
3120 TYPE_POINTER_TO (t) = 0;
3121 TYPE_REFERENCE_TO (t) = 0;
3123 /* Add this type to the chain of variants of TYPE. */
3124 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
3125 TYPE_NEXT_VARIANT (m) = t;
3127 return t;
3130 /* Hashing of types so that we don't make duplicates.
3131 The entry point is `type_hash_canon'. */
3133 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
3134 with types in the TREE_VALUE slots), by adding the hash codes
3135 of the individual types. */
3137 unsigned int
3138 type_hash_list (list)
3139 tree list;
3141 unsigned int hashcode;
3142 register tree tail;
3144 for (hashcode = 0, tail = list; tail; tail = TREE_CHAIN (tail))
3145 hashcode += TYPE_HASH (TREE_VALUE (tail));
3147 return hashcode;
3150 /* These are the Hashtable callback functions. */
3152 /* Returns true if the types are equal. */
3154 static int
3155 type_hash_eq (va, vb)
3156 const void *va;
3157 const void *vb;
3159 const struct type_hash *a = va, *b = vb;
3160 if (a->hash == b->hash
3161 && TREE_CODE (a->type) == TREE_CODE (b->type)
3162 && TREE_TYPE (a->type) == TREE_TYPE (b->type)
3163 && attribute_list_equal (TYPE_ATTRIBUTES (a->type),
3164 TYPE_ATTRIBUTES (b->type))
3165 && TYPE_ALIGN (a->type) == TYPE_ALIGN (b->type)
3166 && (TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
3167 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
3168 TYPE_MAX_VALUE (b->type)))
3169 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
3170 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
3171 TYPE_MIN_VALUE (b->type)))
3172 /* Note that TYPE_DOMAIN is TYPE_ARG_TYPES for FUNCTION_TYPE. */
3173 && (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
3174 || (TYPE_DOMAIN (a->type)
3175 && TREE_CODE (TYPE_DOMAIN (a->type)) == TREE_LIST
3176 && TYPE_DOMAIN (b->type)
3177 && TREE_CODE (TYPE_DOMAIN (b->type)) == TREE_LIST
3178 && type_list_equal (TYPE_DOMAIN (a->type),
3179 TYPE_DOMAIN (b->type)))))
3180 return 1;
3181 return 0;
3184 /* Return the cached hash value. */
3186 static unsigned int
3187 type_hash_hash (item)
3188 const void *item;
3190 return ((const struct type_hash *) item)->hash;
3193 /* Look in the type hash table for a type isomorphic to TYPE.
3194 If one is found, return it. Otherwise return 0. */
3196 tree
3197 type_hash_lookup (hashcode, type)
3198 unsigned int hashcode;
3199 tree type;
3201 struct type_hash *h, in;
3203 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
3204 must call that routine before comparing TYPE_ALIGNs. */
3205 layout_type (type);
3207 in.hash = hashcode;
3208 in.type = type;
3210 h = htab_find_with_hash (type_hash_table, &in, hashcode);
3211 if (h)
3212 return h->type;
3213 return NULL_TREE;
3216 /* Add an entry to the type-hash-table
3217 for a type TYPE whose hash code is HASHCODE. */
3219 void
3220 type_hash_add (hashcode, type)
3221 unsigned int hashcode;
3222 tree type;
3224 struct type_hash *h;
3225 void **loc;
3227 h = (struct type_hash *) permalloc (sizeof (struct type_hash));
3228 h->hash = hashcode;
3229 h->type = type;
3230 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
3231 *(struct type_hash **) loc = h;
3234 /* Given TYPE, and HASHCODE its hash code, return the canonical
3235 object for an identical type if one already exists.
3236 Otherwise, return TYPE, and record it as the canonical object
3237 if it is a permanent object.
3239 To use this function, first create a type of the sort you want.
3240 Then compute its hash code from the fields of the type that
3241 make it different from other similar types.
3242 Then call this function and use the value.
3243 This function frees the type you pass in if it is a duplicate. */
3245 /* Set to 1 to debug without canonicalization. Never set by program. */
3246 int debug_no_type_hash = 0;
3248 tree
3249 type_hash_canon (hashcode, type)
3250 unsigned int hashcode;
3251 tree type;
3253 tree t1;
3255 if (debug_no_type_hash)
3256 return type;
3258 t1 = type_hash_lookup (hashcode, type);
3259 if (t1 != 0)
3261 #ifdef GATHER_STATISTICS
3262 tree_node_counts[(int) t_kind]--;
3263 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type);
3264 #endif
3265 return t1;
3268 /* If this is a permanent type, record it for later reuse. */
3269 type_hash_add (hashcode, type);
3271 return type;
3274 /* Callback function for htab_traverse. */
3276 static int
3277 mark_hash_entry (entry, param)
3278 void **entry;
3279 void *param ATTRIBUTE_UNUSED;
3281 struct type_hash *p = *(struct type_hash **) entry;
3283 ggc_mark_tree (p->type);
3285 /* Continue scan. */
3286 return 1;
3289 /* Mark ARG (which is really a htab_t *) for GC. */
3291 static void
3292 mark_type_hash (arg)
3293 void *arg;
3295 htab_t t = *(htab_t *) arg;
3297 htab_traverse (t, mark_hash_entry, 0);
3300 /* Mark the hashtable slot pointed to by ENTRY (which is really a
3301 `tree**') for GC. */
3303 static int
3304 mark_tree_hashtable_entry (entry, data)
3305 void **entry;
3306 void *data ATTRIBUTE_UNUSED;
3308 ggc_mark_tree ((tree) *entry);
3309 return 1;
3312 /* Mark ARG (which is really a htab_t whose slots are trees) for
3313 GC. */
3315 void
3316 mark_tree_hashtable (arg)
3317 void *arg;
3319 htab_t t = *(htab_t *) arg;
3320 htab_traverse (t, mark_tree_hashtable_entry, 0);
3323 static void
3324 print_type_hash_statistics ()
3326 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
3327 (long) htab_size (type_hash_table),
3328 (long) htab_elements (type_hash_table),
3329 htab_collisions (type_hash_table));
3332 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
3333 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
3334 by adding the hash codes of the individual attributes. */
3336 unsigned int
3337 attribute_hash_list (list)
3338 tree list;
3340 unsigned int hashcode;
3341 register tree tail;
3343 for (hashcode = 0, tail = list; tail; tail = TREE_CHAIN (tail))
3344 /* ??? Do we want to add in TREE_VALUE too? */
3345 hashcode += TYPE_HASH (TREE_PURPOSE (tail));
3346 return hashcode;
3349 /* Given two lists of attributes, return true if list l2 is
3350 equivalent to l1. */
3353 attribute_list_equal (l1, l2)
3354 tree l1, l2;
3356 return attribute_list_contained (l1, l2)
3357 && attribute_list_contained (l2, l1);
3360 /* Given two lists of attributes, return true if list L2 is
3361 completely contained within L1. */
3362 /* ??? This would be faster if attribute names were stored in a canonicalized
3363 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
3364 must be used to show these elements are equivalent (which they are). */
3365 /* ??? It's not clear that attributes with arguments will always be handled
3366 correctly. */
3369 attribute_list_contained (l1, l2)
3370 tree l1, l2;
3372 register tree t1, t2;
3374 /* First check the obvious, maybe the lists are identical. */
3375 if (l1 == l2)
3376 return 1;
3378 /* Maybe the lists are similar. */
3379 for (t1 = l1, t2 = l2;
3380 t1 != 0 && t2 != 0
3381 && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
3382 && TREE_VALUE (t1) == TREE_VALUE (t2);
3383 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2));
3385 /* Maybe the lists are equal. */
3386 if (t1 == 0 && t2 == 0)
3387 return 1;
3389 for (; t2 != 0; t2 = TREE_CHAIN (t2))
3391 tree attr
3392 = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)), l1);
3394 if (attr == 0)
3395 return 0;
3397 if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) != 1)
3398 return 0;
3401 return 1;
3404 /* Given two lists of types
3405 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
3406 return 1 if the lists contain the same types in the same order.
3407 Also, the TREE_PURPOSEs must match. */
3410 type_list_equal (l1, l2)
3411 tree l1, l2;
3413 register tree t1, t2;
3415 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
3416 if (TREE_VALUE (t1) != TREE_VALUE (t2)
3417 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
3418 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
3419 && (TREE_TYPE (TREE_PURPOSE (t1))
3420 == TREE_TYPE (TREE_PURPOSE (t2))))))
3421 return 0;
3423 return t1 == t2;
3426 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
3427 given by TYPE. If the argument list accepts variable arguments,
3428 then this function counts only the ordinary arguments. */
3431 type_num_arguments (type)
3432 tree type;
3434 int i = 0;
3435 tree t;
3437 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
3438 /* If the function does not take a variable number of arguments,
3439 the last element in the list will have type `void'. */
3440 if (VOID_TYPE_P (TREE_VALUE (t)))
3441 break;
3442 else
3443 ++i;
3445 return i;
3448 /* Nonzero if integer constants T1 and T2
3449 represent the same constant value. */
3452 tree_int_cst_equal (t1, t2)
3453 tree t1, t2;
3455 if (t1 == t2)
3456 return 1;
3458 if (t1 == 0 || t2 == 0)
3459 return 0;
3461 if (TREE_CODE (t1) == INTEGER_CST
3462 && TREE_CODE (t2) == INTEGER_CST
3463 && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
3464 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
3465 return 1;
3467 return 0;
3470 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
3471 The precise way of comparison depends on their data type. */
3474 tree_int_cst_lt (t1, t2)
3475 tree t1, t2;
3477 if (t1 == t2)
3478 return 0;
3480 if (! TREE_UNSIGNED (TREE_TYPE (t1)))
3481 return INT_CST_LT (t1, t2);
3483 return INT_CST_LT_UNSIGNED (t1, t2);
3486 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
3489 tree_int_cst_compare (t1, t2)
3490 tree t1;
3491 tree t2;
3493 if (tree_int_cst_lt (t1, t2))
3494 return -1;
3495 else if (tree_int_cst_lt (t2, t1))
3496 return 1;
3497 else
3498 return 0;
3501 /* Return 1 if T is an INTEGER_CST that can be represented in a single
3502 HOST_WIDE_INT value. If POS is nonzero, the result must be positive. */
3505 host_integerp (t, pos)
3506 tree t;
3507 int pos;
3509 return (TREE_CODE (t) == INTEGER_CST
3510 && ! TREE_OVERFLOW (t)
3511 && ((TREE_INT_CST_HIGH (t) == 0
3512 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
3513 || (! pos && TREE_INT_CST_HIGH (t) == -1
3514 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
3515 || (! pos && TREE_INT_CST_HIGH (t) == 0
3516 && TREE_UNSIGNED (TREE_TYPE (t)))));
3519 /* Return the HOST_WIDE_INT least significant bits of T if it is an
3520 INTEGER_CST and there is no overflow. POS is nonzero if the result must
3521 be positive. Abort if we cannot satisfy the above conditions. */
3523 HOST_WIDE_INT
3524 tree_low_cst (t, pos)
3525 tree t;
3526 int pos;
3528 if (host_integerp (t, pos))
3529 return TREE_INT_CST_LOW (t);
3530 else
3531 abort ();
3534 /* Return the most significant bit of the integer constant T. */
3537 tree_int_cst_msb (t)
3538 tree t;
3540 register int prec;
3541 HOST_WIDE_INT h;
3542 unsigned HOST_WIDE_INT l;
3544 /* Note that using TYPE_PRECISION here is wrong. We care about the
3545 actual bits, not the (arbitrary) range of the type. */
3546 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t))) - 1;
3547 rshift_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t), prec,
3548 2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0);
3549 return (l & 1) == 1;
3552 /* Return an indication of the sign of the integer constant T.
3553 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
3554 Note that -1 will never be returned it T's type is unsigned. */
3557 tree_int_cst_sgn (t)
3558 tree t;
3560 if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
3561 return 0;
3562 else if (TREE_UNSIGNED (TREE_TYPE (t)))
3563 return 1;
3564 else if (TREE_INT_CST_HIGH (t) < 0)
3565 return -1;
3566 else
3567 return 1;
3570 /* Compare two constructor-element-type constants. Return 1 if the lists
3571 are known to be equal; otherwise return 0. */
3574 simple_cst_list_equal (l1, l2)
3575 tree l1, l2;
3577 while (l1 != NULL_TREE && l2 != NULL_TREE)
3579 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
3580 return 0;
3582 l1 = TREE_CHAIN (l1);
3583 l2 = TREE_CHAIN (l2);
3586 return l1 == l2;
3589 /* Return truthvalue of whether T1 is the same tree structure as T2.
3590 Return 1 if they are the same.
3591 Return 0 if they are understandably different.
3592 Return -1 if either contains tree structure not understood by
3593 this function. */
3596 simple_cst_equal (t1, t2)
3597 tree t1, t2;
3599 register enum tree_code code1, code2;
3600 int cmp;
3601 int i;
3603 if (t1 == t2)
3604 return 1;
3605 if (t1 == 0 || t2 == 0)
3606 return 0;
3608 code1 = TREE_CODE (t1);
3609 code2 = TREE_CODE (t2);
3611 if (code1 == NOP_EXPR || code1 == CONVERT_EXPR || code1 == NON_LVALUE_EXPR)
3613 if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
3614 || code2 == NON_LVALUE_EXPR)
3615 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3616 else
3617 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
3620 else if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
3621 || code2 == NON_LVALUE_EXPR)
3622 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
3624 if (code1 != code2)
3625 return 0;
3627 switch (code1)
3629 case INTEGER_CST:
3630 return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
3631 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
3633 case REAL_CST:
3634 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
3636 case STRING_CST:
3637 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3638 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3639 TREE_STRING_LENGTH (t1)));
3641 case CONSTRUCTOR:
3642 if (CONSTRUCTOR_ELTS (t1) == CONSTRUCTOR_ELTS (t2))
3643 return 1;
3644 else
3645 abort ();
3647 case SAVE_EXPR:
3648 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3650 case CALL_EXPR:
3651 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3652 if (cmp <= 0)
3653 return cmp;
3654 return
3655 simple_cst_list_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
3657 case TARGET_EXPR:
3658 /* Special case: if either target is an unallocated VAR_DECL,
3659 it means that it's going to be unified with whatever the
3660 TARGET_EXPR is really supposed to initialize, so treat it
3661 as being equivalent to anything. */
3662 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
3663 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
3664 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
3665 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
3666 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
3667 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
3668 cmp = 1;
3669 else
3670 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3672 if (cmp <= 0)
3673 return cmp;
3675 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
3677 case WITH_CLEANUP_EXPR:
3678 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3679 if (cmp <= 0)
3680 return cmp;
3682 return simple_cst_equal (TREE_OPERAND (t1, 2), TREE_OPERAND (t1, 2));
3684 case COMPONENT_REF:
3685 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
3686 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3688 return 0;
3690 case VAR_DECL:
3691 case PARM_DECL:
3692 case CONST_DECL:
3693 case FUNCTION_DECL:
3694 return 0;
3696 default:
3697 break;
3700 /* This general rule works for most tree codes. All exceptions should be
3701 handled above. If this is a language-specific tree code, we can't
3702 trust what might be in the operand, so say we don't know
3703 the situation. */
3704 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
3705 return -1;
3707 switch (TREE_CODE_CLASS (code1))
3709 case '1':
3710 case '2':
3711 case '<':
3712 case 'e':
3713 case 'r':
3714 case 's':
3715 cmp = 1;
3716 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
3718 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
3719 if (cmp <= 0)
3720 return cmp;
3723 return cmp;
3725 default:
3726 return -1;
3730 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
3731 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
3732 than U, respectively. */
3735 compare_tree_int (t, u)
3736 tree t;
3737 unsigned int u;
3739 if (tree_int_cst_sgn (t) < 0)
3740 return -1;
3741 else if (TREE_INT_CST_HIGH (t) != 0)
3742 return 1;
3743 else if (TREE_INT_CST_LOW (t) == u)
3744 return 0;
3745 else if (TREE_INT_CST_LOW (t) < u)
3746 return -1;
3747 else
3748 return 1;
3751 /* Constructors for pointer, array and function types.
3752 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
3753 constructed by language-dependent code, not here.) */
3755 /* Construct, lay out and return the type of pointers to TO_TYPE.
3756 If such a type has already been constructed, reuse it. */
3758 tree
3759 build_pointer_type (to_type)
3760 tree to_type;
3762 register tree t = TYPE_POINTER_TO (to_type);
3764 /* First, if we already have a type for pointers to TO_TYPE, use it. */
3766 if (t != 0)
3767 return t;
3769 /* We need a new one. */
3770 t = make_node (POINTER_TYPE);
3772 TREE_TYPE (t) = to_type;
3774 /* Record this type as the pointer to TO_TYPE. */
3775 TYPE_POINTER_TO (to_type) = t;
3777 /* Lay out the type. This function has many callers that are concerned
3778 with expression-construction, and this simplifies them all.
3779 Also, it guarantees the TYPE_SIZE is in the same obstack as the type. */
3780 layout_type (t);
3782 return t;
3785 /* Build the node for the type of references-to-TO_TYPE. */
3787 tree
3788 build_reference_type (to_type)
3789 tree to_type;
3791 register tree t = TYPE_REFERENCE_TO (to_type);
3793 /* First, if we already have a type for pointers to TO_TYPE, use it. */
3795 if (t)
3796 return t;
3798 /* We need a new one. */
3799 t = make_node (REFERENCE_TYPE);
3801 TREE_TYPE (t) = to_type;
3803 /* Record this type as the pointer to TO_TYPE. */
3804 TYPE_REFERENCE_TO (to_type) = t;
3806 layout_type (t);
3808 return t;
3811 /* Build a type that is compatible with t but has no cv quals anywhere
3812 in its type, thus
3814 const char *const *const * -> char ***. */
3816 tree
3817 build_type_no_quals (t)
3818 tree t;
3820 switch (TREE_CODE (t))
3822 case POINTER_TYPE:
3823 return build_pointer_type (build_type_no_quals (TREE_TYPE (t)));
3824 case REFERENCE_TYPE:
3825 return build_reference_type (build_type_no_quals (TREE_TYPE (t)));
3826 default:
3827 return TYPE_MAIN_VARIANT (t);
3831 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
3832 MAXVAL should be the maximum value in the domain
3833 (one less than the length of the array).
3835 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
3836 We don't enforce this limit, that is up to caller (e.g. language front end).
3837 The limit exists because the result is a signed type and we don't handle
3838 sizes that use more than one HOST_WIDE_INT. */
3840 tree
3841 build_index_type (maxval)
3842 tree maxval;
3844 register tree itype = make_node (INTEGER_TYPE);
3846 TREE_TYPE (itype) = sizetype;
3847 TYPE_PRECISION (itype) = TYPE_PRECISION (sizetype);
3848 TYPE_MIN_VALUE (itype) = size_zero_node;
3849 TYPE_MAX_VALUE (itype) = convert (sizetype, maxval);
3850 TYPE_MODE (itype) = TYPE_MODE (sizetype);
3851 TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
3852 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (sizetype);
3853 TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
3854 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (sizetype);
3856 if (host_integerp (maxval, 1))
3857 return type_hash_canon (tree_low_cst (maxval, 1), itype);
3858 else
3859 return itype;
3862 /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
3863 ENUMERAL_TYPE, BOOLEAN_TYPE, or CHAR_TYPE), with
3864 low bound LOWVAL and high bound HIGHVAL.
3865 if TYPE==NULL_TREE, sizetype is used. */
3867 tree
3868 build_range_type (type, lowval, highval)
3869 tree type, lowval, highval;
3871 register tree itype = make_node (INTEGER_TYPE);
3873 TREE_TYPE (itype) = type;
3874 if (type == NULL_TREE)
3875 type = sizetype;
3877 TYPE_MIN_VALUE (itype) = convert (type, lowval);
3878 TYPE_MAX_VALUE (itype) = highval ? convert (type, highval) : NULL;
3880 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
3881 TYPE_MODE (itype) = TYPE_MODE (type);
3882 TYPE_SIZE (itype) = TYPE_SIZE (type);
3883 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
3884 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
3885 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
3887 if (host_integerp (lowval, 0) && highval != 0 && host_integerp (highval, 0))
3888 return type_hash_canon (tree_low_cst (highval, 0)
3889 - tree_low_cst (lowval, 0),
3890 itype);
3891 else
3892 return itype;
3895 /* Just like build_index_type, but takes lowval and highval instead
3896 of just highval (maxval). */
3898 tree
3899 build_index_2_type (lowval,highval)
3900 tree lowval, highval;
3902 return build_range_type (sizetype, lowval, highval);
3905 /* Return nonzero iff ITYPE1 and ITYPE2 are equal (in the LISP sense).
3906 Needed because when index types are not hashed, equal index types
3907 built at different times appear distinct, even though structurally,
3908 they are not. */
3911 index_type_equal (itype1, itype2)
3912 tree itype1, itype2;
3914 if (TREE_CODE (itype1) != TREE_CODE (itype2))
3915 return 0;
3917 if (TREE_CODE (itype1) == INTEGER_TYPE)
3919 if (TYPE_PRECISION (itype1) != TYPE_PRECISION (itype2)
3920 || TYPE_MODE (itype1) != TYPE_MODE (itype2)
3921 || simple_cst_equal (TYPE_SIZE (itype1), TYPE_SIZE (itype2)) != 1
3922 || TYPE_ALIGN (itype1) != TYPE_ALIGN (itype2))
3923 return 0;
3925 if (1 == simple_cst_equal (TYPE_MIN_VALUE (itype1),
3926 TYPE_MIN_VALUE (itype2))
3927 && 1 == simple_cst_equal (TYPE_MAX_VALUE (itype1),
3928 TYPE_MAX_VALUE (itype2)))
3929 return 1;
3932 return 0;
3935 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
3936 and number of elements specified by the range of values of INDEX_TYPE.
3937 If such a type has already been constructed, reuse it. */
3939 tree
3940 build_array_type (elt_type, index_type)
3941 tree elt_type, index_type;
3943 register tree t;
3944 unsigned int hashcode;
3946 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
3948 error ("arrays of functions are not meaningful");
3949 elt_type = integer_type_node;
3952 /* Make sure TYPE_POINTER_TO (elt_type) is filled in. */
3953 build_pointer_type (elt_type);
3955 /* Allocate the array after the pointer type,
3956 in case we free it in type_hash_canon. */
3957 t = make_node (ARRAY_TYPE);
3958 TREE_TYPE (t) = elt_type;
3959 TYPE_DOMAIN (t) = index_type;
3961 if (index_type == 0)
3963 return t;
3966 hashcode = TYPE_HASH (elt_type) + TYPE_HASH (index_type);
3967 t = type_hash_canon (hashcode, t);
3969 if (!COMPLETE_TYPE_P (t))
3970 layout_type (t);
3971 return t;
3974 /* Return the TYPE of the elements comprising
3975 the innermost dimension of ARRAY. */
3977 tree
3978 get_inner_array_type (array)
3979 tree array;
3981 tree type = TREE_TYPE (array);
3983 while (TREE_CODE (type) == ARRAY_TYPE)
3984 type = TREE_TYPE (type);
3986 return type;
3989 /* Construct, lay out and return
3990 the type of functions returning type VALUE_TYPE
3991 given arguments of types ARG_TYPES.
3992 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
3993 are data type nodes for the arguments of the function.
3994 If such a type has already been constructed, reuse it. */
3996 tree
3997 build_function_type (value_type, arg_types)
3998 tree value_type, arg_types;
4000 register tree t;
4001 unsigned int hashcode;
4003 if (TREE_CODE (value_type) == FUNCTION_TYPE)
4005 error ("function return type cannot be function");
4006 value_type = integer_type_node;
4009 /* Make a node of the sort we want. */
4010 t = make_node (FUNCTION_TYPE);
4011 TREE_TYPE (t) = value_type;
4012 TYPE_ARG_TYPES (t) = arg_types;
4014 /* If we already have such a type, use the old one and free this one. */
4015 hashcode = TYPE_HASH (value_type) + type_hash_list (arg_types);
4016 t = type_hash_canon (hashcode, t);
4018 if (!COMPLETE_TYPE_P (t))
4019 layout_type (t);
4020 return t;
4023 /* Construct, lay out and return the type of methods belonging to class
4024 BASETYPE and whose arguments and values are described by TYPE.
4025 If that type exists already, reuse it.
4026 TYPE must be a FUNCTION_TYPE node. */
4028 tree
4029 build_method_type (basetype, type)
4030 tree basetype, type;
4032 register tree t;
4033 unsigned int hashcode;
4035 /* Make a node of the sort we want. */
4036 t = make_node (METHOD_TYPE);
4038 if (TREE_CODE (type) != FUNCTION_TYPE)
4039 abort ();
4041 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
4042 TREE_TYPE (t) = TREE_TYPE (type);
4044 /* The actual arglist for this function includes a "hidden" argument
4045 which is "this". Put it into the list of argument types. */
4047 TYPE_ARG_TYPES (t)
4048 = tree_cons (NULL_TREE,
4049 build_pointer_type (basetype), TYPE_ARG_TYPES (type));
4051 /* If we already have such a type, use the old one and free this one. */
4052 hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
4053 t = type_hash_canon (hashcode, t);
4055 if (!COMPLETE_TYPE_P (t))
4056 layout_type (t);
4058 return t;
4061 /* Construct, lay out and return the type of offsets to a value
4062 of type TYPE, within an object of type BASETYPE.
4063 If a suitable offset type exists already, reuse it. */
4065 tree
4066 build_offset_type (basetype, type)
4067 tree basetype, type;
4069 register tree t;
4070 unsigned int hashcode;
4072 /* Make a node of the sort we want. */
4073 t = make_node (OFFSET_TYPE);
4075 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
4076 TREE_TYPE (t) = type;
4078 /* If we already have such a type, use the old one and free this one. */
4079 hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
4080 t = type_hash_canon (hashcode, t);
4082 if (!COMPLETE_TYPE_P (t))
4083 layout_type (t);
4085 return t;
4088 /* Create a complex type whose components are COMPONENT_TYPE. */
4090 tree
4091 build_complex_type (component_type)
4092 tree component_type;
4094 register tree t;
4095 unsigned int hashcode;
4097 /* Make a node of the sort we want. */
4098 t = make_node (COMPLEX_TYPE);
4100 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
4101 set_type_quals (t, TYPE_QUALS (component_type));
4103 /* If we already have such a type, use the old one and free this one. */
4104 hashcode = TYPE_HASH (component_type);
4105 t = type_hash_canon (hashcode, t);
4107 if (!COMPLETE_TYPE_P (t))
4108 layout_type (t);
4110 /* If we are writing Dwarf2 output we need to create a name,
4111 since complex is a fundamental type. */
4112 if (write_symbols == DWARF2_DEBUG && ! TYPE_NAME (t))
4114 const char *name;
4115 if (component_type == char_type_node)
4116 name = "complex char";
4117 else if (component_type == signed_char_type_node)
4118 name = "complex signed char";
4119 else if (component_type == unsigned_char_type_node)
4120 name = "complex unsigned char";
4121 else if (component_type == short_integer_type_node)
4122 name = "complex short int";
4123 else if (component_type == short_unsigned_type_node)
4124 name = "complex short unsigned int";
4125 else if (component_type == integer_type_node)
4126 name = "complex int";
4127 else if (component_type == unsigned_type_node)
4128 name = "complex unsigned int";
4129 else if (component_type == long_integer_type_node)
4130 name = "complex long int";
4131 else if (component_type == long_unsigned_type_node)
4132 name = "complex long unsigned int";
4133 else if (component_type == long_long_integer_type_node)
4134 name = "complex long long int";
4135 else if (component_type == long_long_unsigned_type_node)
4136 name = "complex long long unsigned int";
4137 else
4138 name = 0;
4140 if (name != 0)
4141 TYPE_NAME (t) = get_identifier (name);
4144 return t;
4147 /* Return OP, stripped of any conversions to wider types as much as is safe.
4148 Converting the value back to OP's type makes a value equivalent to OP.
4150 If FOR_TYPE is nonzero, we return a value which, if converted to
4151 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
4153 If FOR_TYPE is nonzero, unaligned bit-field references may be changed to the
4154 narrowest type that can hold the value, even if they don't exactly fit.
4155 Otherwise, bit-field references are changed to a narrower type
4156 only if they can be fetched directly from memory in that type.
4158 OP must have integer, real or enumeral type. Pointers are not allowed!
4160 There are some cases where the obvious value we could return
4161 would regenerate to OP if converted to OP's type,
4162 but would not extend like OP to wider types.
4163 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
4164 For example, if OP is (unsigned short)(signed char)-1,
4165 we avoid returning (signed char)-1 if FOR_TYPE is int,
4166 even though extending that to an unsigned short would regenerate OP,
4167 since the result of extending (signed char)-1 to (int)
4168 is different from (int) OP. */
4170 tree
4171 get_unwidened (op, for_type)
4172 register tree op;
4173 tree for_type;
4175 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
4176 register tree type = TREE_TYPE (op);
4177 register unsigned final_prec
4178 = TYPE_PRECISION (for_type != 0 ? for_type : type);
4179 register int uns
4180 = (for_type != 0 && for_type != type
4181 && final_prec > TYPE_PRECISION (type)
4182 && TREE_UNSIGNED (type));
4183 register tree win = op;
4185 while (TREE_CODE (op) == NOP_EXPR)
4187 register int bitschange
4188 = TYPE_PRECISION (TREE_TYPE (op))
4189 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
4191 /* Truncations are many-one so cannot be removed.
4192 Unless we are later going to truncate down even farther. */
4193 if (bitschange < 0
4194 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
4195 break;
4197 /* See what's inside this conversion. If we decide to strip it,
4198 we will set WIN. */
4199 op = TREE_OPERAND (op, 0);
4201 /* If we have not stripped any zero-extensions (uns is 0),
4202 we can strip any kind of extension.
4203 If we have previously stripped a zero-extension,
4204 only zero-extensions can safely be stripped.
4205 Any extension can be stripped if the bits it would produce
4206 are all going to be discarded later by truncating to FOR_TYPE. */
4208 if (bitschange > 0)
4210 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
4211 win = op;
4212 /* TREE_UNSIGNED says whether this is a zero-extension.
4213 Let's avoid computing it if it does not affect WIN
4214 and if UNS will not be needed again. */
4215 if ((uns || TREE_CODE (op) == NOP_EXPR)
4216 && TREE_UNSIGNED (TREE_TYPE (op)))
4218 uns = 1;
4219 win = op;
4224 if (TREE_CODE (op) == COMPONENT_REF
4225 /* Since type_for_size always gives an integer type. */
4226 && TREE_CODE (type) != REAL_TYPE
4227 /* Don't crash if field not laid out yet. */
4228 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
4229 && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
4231 unsigned int innerprec
4232 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
4234 type = type_for_size (innerprec, TREE_UNSIGNED (TREE_OPERAND (op, 1)));
4236 /* We can get this structure field in the narrowest type it fits in.
4237 If FOR_TYPE is 0, do this only for a field that matches the
4238 narrower type exactly and is aligned for it
4239 The resulting extension to its nominal type (a fullword type)
4240 must fit the same conditions as for other extensions. */
4242 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
4243 && (for_type || ! DECL_BIT_FIELD (TREE_OPERAND (op, 1)))
4244 && (! uns || final_prec <= innerprec
4245 || TREE_UNSIGNED (TREE_OPERAND (op, 1)))
4246 && type != 0)
4248 win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
4249 TREE_OPERAND (op, 1));
4250 TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
4251 TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
4255 return win;
4258 /* Return OP or a simpler expression for a narrower value
4259 which can be sign-extended or zero-extended to give back OP.
4260 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
4261 or 0 if the value should be sign-extended. */
4263 tree
4264 get_narrower (op, unsignedp_ptr)
4265 register tree op;
4266 int *unsignedp_ptr;
4268 register int uns = 0;
4269 int first = 1;
4270 register tree win = op;
4272 while (TREE_CODE (op) == NOP_EXPR)
4274 register int bitschange
4275 = (TYPE_PRECISION (TREE_TYPE (op))
4276 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
4278 /* Truncations are many-one so cannot be removed. */
4279 if (bitschange < 0)
4280 break;
4282 /* See what's inside this conversion. If we decide to strip it,
4283 we will set WIN. */
4284 op = TREE_OPERAND (op, 0);
4286 if (bitschange > 0)
4288 /* An extension: the outermost one can be stripped,
4289 but remember whether it is zero or sign extension. */
4290 if (first)
4291 uns = TREE_UNSIGNED (TREE_TYPE (op));
4292 /* Otherwise, if a sign extension has been stripped,
4293 only sign extensions can now be stripped;
4294 if a zero extension has been stripped, only zero-extensions. */
4295 else if (uns != TREE_UNSIGNED (TREE_TYPE (op)))
4296 break;
4297 first = 0;
4299 else /* bitschange == 0 */
4301 /* A change in nominal type can always be stripped, but we must
4302 preserve the unsignedness. */
4303 if (first)
4304 uns = TREE_UNSIGNED (TREE_TYPE (op));
4305 first = 0;
4308 win = op;
4311 if (TREE_CODE (op) == COMPONENT_REF
4312 /* Since type_for_size always gives an integer type. */
4313 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
4314 /* Ensure field is laid out already. */
4315 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0)
4317 unsigned HOST_WIDE_INT innerprec
4318 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
4319 tree type = type_for_size (innerprec, TREE_UNSIGNED (op));
4321 /* We can get this structure field in a narrower type that fits it,
4322 but the resulting extension to its nominal type (a fullword type)
4323 must satisfy the same conditions as for other extensions.
4325 Do this only for fields that are aligned (not bit-fields),
4326 because when bit-field insns will be used there is no
4327 advantage in doing this. */
4329 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
4330 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
4331 && (first || uns == TREE_UNSIGNED (TREE_OPERAND (op, 1)))
4332 && type != 0)
4334 if (first)
4335 uns = TREE_UNSIGNED (TREE_OPERAND (op, 1));
4336 win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
4337 TREE_OPERAND (op, 1));
4338 TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
4339 TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
4342 *unsignedp_ptr = uns;
4343 return win;
4346 /* Nonzero if integer constant C has a value that is permissible
4347 for type TYPE (an INTEGER_TYPE). */
4350 int_fits_type_p (c, type)
4351 tree c, type;
4353 /* If the bounds of the type are integers, we can check ourselves.
4354 Otherwise,. use force_fit_type, which checks against the precision. */
4355 if (TYPE_MAX_VALUE (type) != NULL_TREE
4356 && TYPE_MIN_VALUE (type) != NULL_TREE
4357 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST
4358 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
4360 if (TREE_UNSIGNED (type))
4361 return (! INT_CST_LT_UNSIGNED (TYPE_MAX_VALUE (type), c)
4362 && ! INT_CST_LT_UNSIGNED (c, TYPE_MIN_VALUE (type))
4363 /* Negative ints never fit unsigned types. */
4364 && ! (TREE_INT_CST_HIGH (c) < 0
4365 && ! TREE_UNSIGNED (TREE_TYPE (c))));
4366 else
4367 return (! INT_CST_LT (TYPE_MAX_VALUE (type), c)
4368 && ! INT_CST_LT (c, TYPE_MIN_VALUE (type))
4369 /* Unsigned ints with top bit set never fit signed types. */
4370 && ! (TREE_INT_CST_HIGH (c) < 0
4371 && TREE_UNSIGNED (TREE_TYPE (c))));
4373 else
4375 c = copy_node (c);
4376 TREE_TYPE (c) = type;
4377 return !force_fit_type (c, 0);
4381 /* Given a DECL or TYPE, return the scope in which it was declared, or
4382 NULL_TREE if there is no containing scope. */
4384 tree
4385 get_containing_scope (t)
4386 tree t;
4388 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
4391 /* Return the innermost context enclosing DECL that is
4392 a FUNCTION_DECL, or zero if none. */
4394 tree
4395 decl_function_context (decl)
4396 tree decl;
4398 tree context;
4400 if (TREE_CODE (decl) == ERROR_MARK)
4401 return 0;
4403 if (TREE_CODE (decl) == SAVE_EXPR)
4404 context = SAVE_EXPR_CONTEXT (decl);
4406 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
4407 where we look up the function at runtime. Such functions always take
4408 a first argument of type 'pointer to real context'.
4410 C++ should really be fixed to use DECL_CONTEXT for the real context,
4411 and use something else for the "virtual context". */
4412 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
4413 context
4414 = TYPE_MAIN_VARIANT
4415 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4416 else
4417 context = DECL_CONTEXT (decl);
4419 while (context && TREE_CODE (context) != FUNCTION_DECL)
4421 if (TREE_CODE (context) == BLOCK)
4422 context = BLOCK_SUPERCONTEXT (context);
4423 else
4424 context = get_containing_scope (context);
4427 return context;
4430 /* Return the innermost context enclosing DECL that is
4431 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
4432 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
4434 tree
4435 decl_type_context (decl)
4436 tree decl;
4438 tree context = DECL_CONTEXT (decl);
4440 while (context)
4442 if (TREE_CODE (context) == RECORD_TYPE
4443 || TREE_CODE (context) == UNION_TYPE
4444 || TREE_CODE (context) == QUAL_UNION_TYPE)
4445 return context;
4447 if (TREE_CODE (context) == TYPE_DECL
4448 || TREE_CODE (context) == FUNCTION_DECL)
4449 context = DECL_CONTEXT (context);
4451 else if (TREE_CODE (context) == BLOCK)
4452 context = BLOCK_SUPERCONTEXT (context);
4454 else
4455 /* Unhandled CONTEXT!? */
4456 abort ();
4458 return NULL_TREE;
4461 /* CALL is a CALL_EXPR. Return the declaration for the function
4462 called, or NULL_TREE if the called function cannot be
4463 determined. */
4465 tree
4466 get_callee_fndecl (call)
4467 tree call;
4469 tree addr;
4471 /* It's invalid to call this function with anything but a
4472 CALL_EXPR. */
4473 if (TREE_CODE (call) != CALL_EXPR)
4474 abort ();
4476 /* The first operand to the CALL is the address of the function
4477 called. */
4478 addr = TREE_OPERAND (call, 0);
4480 STRIP_NOPS (addr);
4482 /* If this is a readonly function pointer, extract its initial value. */
4483 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
4484 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
4485 && DECL_INITIAL (addr))
4486 addr = DECL_INITIAL (addr);
4488 /* If the address is just `&f' for some function `f', then we know
4489 that `f' is being called. */
4490 if (TREE_CODE (addr) == ADDR_EXPR
4491 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
4492 return TREE_OPERAND (addr, 0);
4494 /* We couldn't figure out what was being called. */
4495 return NULL_TREE;
4498 /* Print debugging information about the obstack O, named STR. */
4500 void
4501 print_obstack_statistics (str, o)
4502 const char *str;
4503 struct obstack *o;
4505 struct _obstack_chunk *chunk = o->chunk;
4506 int n_chunks = 1;
4507 int n_alloc = 0;
4509 n_alloc += o->next_free - chunk->contents;
4510 chunk = chunk->prev;
4511 while (chunk)
4513 n_chunks += 1;
4514 n_alloc += chunk->limit - &chunk->contents[0];
4515 chunk = chunk->prev;
4517 fprintf (stderr, "obstack %s: %u bytes, %d chunks\n",
4518 str, n_alloc, n_chunks);
4521 /* Print debugging information about tree nodes generated during the compile,
4522 and any language-specific information. */
4524 void
4525 dump_tree_statistics ()
4527 #ifdef GATHER_STATISTICS
4528 int i;
4529 int total_nodes, total_bytes;
4530 #endif
4532 fprintf (stderr, "\n??? tree nodes created\n\n");
4533 #ifdef GATHER_STATISTICS
4534 fprintf (stderr, "Kind Nodes Bytes\n");
4535 fprintf (stderr, "-------------------------------------\n");
4536 total_nodes = total_bytes = 0;
4537 for (i = 0; i < (int) all_kinds; i++)
4539 fprintf (stderr, "%-20s %6d %9d\n", tree_node_kind_names[i],
4540 tree_node_counts[i], tree_node_sizes[i]);
4541 total_nodes += tree_node_counts[i];
4542 total_bytes += tree_node_sizes[i];
4544 fprintf (stderr, "%-20s %9d\n", "identifier names", id_string_size);
4545 fprintf (stderr, "-------------------------------------\n");
4546 fprintf (stderr, "%-20s %6d %9d\n", "Total", total_nodes, total_bytes);
4547 fprintf (stderr, "-------------------------------------\n");
4548 #else
4549 fprintf (stderr, "(No per-node statistics)\n");
4550 #endif
4551 print_obstack_statistics ("permanent_obstack", &permanent_obstack);
4552 print_type_hash_statistics ();
4553 print_lang_statistics ();
4556 #define FILE_FUNCTION_PREFIX_LEN 9
4558 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
4560 /* Appends 6 random characters to TEMPLATE to (hopefully) avoid name
4561 clashes in cases where we can't reliably choose a unique name.
4563 Derived from mkstemp.c in libiberty. */
4565 static void
4566 append_random_chars (template)
4567 char *template;
4569 static const char letters[]
4570 = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
4571 static unsigned HOST_WIDE_INT value;
4572 unsigned HOST_WIDE_INT v;
4574 #ifdef HAVE_GETTIMEOFDAY
4575 struct timeval tv;
4576 #endif
4578 template += strlen (template);
4580 #ifdef HAVE_GETTIMEOFDAY
4581 /* Get some more or less random data. */
4582 gettimeofday (&tv, NULL);
4583 value += ((unsigned HOST_WIDE_INT) tv.tv_usec << 16) ^ tv.tv_sec ^ getpid ();
4584 #else
4585 value += getpid ();
4586 #endif
4588 v = value;
4590 /* Fill in the random bits. */
4591 template[0] = letters[v % 62];
4592 v /= 62;
4593 template[1] = letters[v % 62];
4594 v /= 62;
4595 template[2] = letters[v % 62];
4596 v /= 62;
4597 template[3] = letters[v % 62];
4598 v /= 62;
4599 template[4] = letters[v % 62];
4600 v /= 62;
4601 template[5] = letters[v % 62];
4603 template[6] = '\0';
4606 /* P is a string that will be used in a symbol. Mask out any characters
4607 that are not valid in that context. */
4609 void
4610 clean_symbol_name (p)
4611 char *p;
4613 for (; *p; p++)
4614 if (! (ISDIGIT(*p)
4615 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
4616 || *p == '$'
4617 #endif
4618 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
4619 || *p == '.'
4620 #endif
4621 || ISUPPER (*p)
4622 || ISLOWER (*p)))
4623 *p = '_';
4626 /* Generate a name for a function unique to this translation unit.
4627 TYPE is some string to identify the purpose of this function to the
4628 linker or collect2. */
4630 tree
4631 get_file_function_name_long (type)
4632 const char *type;
4634 char *buf;
4635 const char *p;
4636 char *q;
4638 if (first_global_object_name)
4639 p = first_global_object_name;
4640 else
4642 /* We don't have anything that we know to be unique to this translation
4643 unit, so use what we do have and throw in some randomness. */
4645 const char *name = weak_global_object_name;
4646 const char *file = main_input_filename;
4648 if (! name)
4649 name = "";
4650 if (! file)
4651 file = input_filename;
4653 q = (char *) alloca (7 + strlen (name) + strlen (file));
4655 sprintf (q, "%s%s", name, file);
4656 append_random_chars (q);
4657 p = q;
4660 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
4661 + strlen (type));
4663 /* Set up the name of the file-level functions we may need.
4664 Use a global object (which is already required to be unique over
4665 the program) rather than the file name (which imposes extra
4666 constraints). */
4667 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
4669 /* Don't need to pull weird characters out of global names. */
4670 if (p != first_global_object_name)
4671 clean_symbol_name (buf + 11);
4673 return get_identifier (buf);
4676 /* If KIND=='I', return a suitable global initializer (constructor) name.
4677 If KIND=='D', return a suitable global clean-up (destructor) name. */
4679 tree
4680 get_file_function_name (kind)
4681 int kind;
4683 char p[2];
4685 p[0] = kind;
4686 p[1] = 0;
4688 return get_file_function_name_long (p);
4691 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
4692 The result is placed in BUFFER (which has length BIT_SIZE),
4693 with one bit in each char ('\000' or '\001').
4695 If the constructor is constant, NULL_TREE is returned.
4696 Otherwise, a TREE_LIST of the non-constant elements is emitted. */
4698 tree
4699 get_set_constructor_bits (init, buffer, bit_size)
4700 tree init;
4701 char *buffer;
4702 int bit_size;
4704 int i;
4705 tree vals;
4706 HOST_WIDE_INT domain_min
4707 = tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (init))), 0);
4708 tree non_const_bits = NULL_TREE;
4710 for (i = 0; i < bit_size; i++)
4711 buffer[i] = 0;
4713 for (vals = TREE_OPERAND (init, 1);
4714 vals != NULL_TREE; vals = TREE_CHAIN (vals))
4716 if (!host_integerp (TREE_VALUE (vals), 0)
4717 || (TREE_PURPOSE (vals) != NULL_TREE
4718 && !host_integerp (TREE_PURPOSE (vals), 0)))
4719 non_const_bits
4720 = tree_cons (TREE_PURPOSE (vals), TREE_VALUE (vals), non_const_bits);
4721 else if (TREE_PURPOSE (vals) != NULL_TREE)
4723 /* Set a range of bits to ones. */
4724 HOST_WIDE_INT lo_index
4725 = tree_low_cst (TREE_PURPOSE (vals), 0) - domain_min;
4726 HOST_WIDE_INT hi_index
4727 = tree_low_cst (TREE_VALUE (vals), 0) - domain_min;
4729 if (lo_index < 0 || lo_index >= bit_size
4730 || hi_index < 0 || hi_index >= bit_size)
4731 abort ();
4732 for (; lo_index <= hi_index; lo_index++)
4733 buffer[lo_index] = 1;
4735 else
4737 /* Set a single bit to one. */
4738 HOST_WIDE_INT index
4739 = tree_low_cst (TREE_VALUE (vals), 0) - domain_min;
4740 if (index < 0 || index >= bit_size)
4742 error ("invalid initializer for bit string");
4743 return NULL_TREE;
4745 buffer[index] = 1;
4748 return non_const_bits;
4751 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
4752 The result is placed in BUFFER (which is an array of bytes).
4753 If the constructor is constant, NULL_TREE is returned.
4754 Otherwise, a TREE_LIST of the non-constant elements is emitted. */
4756 tree
4757 get_set_constructor_bytes (init, buffer, wd_size)
4758 tree init;
4759 unsigned char *buffer;
4760 int wd_size;
4762 int i;
4763 int set_word_size = BITS_PER_UNIT;
4764 int bit_size = wd_size * set_word_size;
4765 int bit_pos = 0;
4766 unsigned char *bytep = buffer;
4767 char *bit_buffer = (char *) alloca (bit_size);
4768 tree non_const_bits = get_set_constructor_bits (init, bit_buffer, bit_size);
4770 for (i = 0; i < wd_size; i++)
4771 buffer[i] = 0;
4773 for (i = 0; i < bit_size; i++)
4775 if (bit_buffer[i])
4777 if (BYTES_BIG_ENDIAN)
4778 *bytep |= (1 << (set_word_size - 1 - bit_pos));
4779 else
4780 *bytep |= 1 << bit_pos;
4782 bit_pos++;
4783 if (bit_pos >= set_word_size)
4784 bit_pos = 0, bytep++;
4786 return non_const_bits;
4789 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
4790 /* Complain that the tree code of NODE does not match the expected CODE.
4791 FILE, LINE, and FUNCTION are of the caller. */
4793 void
4794 tree_check_failed (node, code, file, line, function)
4795 const tree node;
4796 enum tree_code code;
4797 const char *file;
4798 int line;
4799 const char *function;
4801 internal_error ("Tree check: expected %s, have %s in %s, at %s:%d",
4802 tree_code_name[code], tree_code_name[TREE_CODE (node)],
4803 function, trim_filename (file), line);
4806 /* Similar to above, except that we check for a class of tree
4807 code, given in CL. */
4809 void
4810 tree_class_check_failed (node, cl, file, line, function)
4811 const tree node;
4812 int cl;
4813 const char *file;
4814 int line;
4815 const char *function;
4817 internal_error
4818 ("Tree check: expected class '%c', have '%c' (%s) in %s, at %s:%d",
4819 cl, TREE_CODE_CLASS (TREE_CODE (node)),
4820 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
4823 #endif /* ENABLE_TREE_CHECKING */
4825 /* For a new vector type node T, build the information necessary for
4826 debuggint output. */
4828 static void
4829 finish_vector_type (t)
4830 tree t;
4832 layout_type (t);
4835 tree index = build_int_2 (TYPE_VECTOR_SUBPARTS (t) - 1, 0);
4836 tree array = build_array_type (TREE_TYPE (t),
4837 build_index_type (index));
4838 tree rt = make_node (RECORD_TYPE);
4840 TYPE_FIELDS (rt) = build_decl (FIELD_DECL, get_identifier ("f"), array);
4841 DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
4842 layout_type (rt);
4843 TYPE_DEBUG_REPRESENTATION_TYPE (t) = rt;
4844 /* In dwarfout.c, type lookup uses TYPE_UID numbers. We want to output
4845 the representation type, and we want to find that die when looking up
4846 the vector type. This is most easily achieved by making the TYPE_UID
4847 numbers equal. */
4848 TYPE_UID (rt) = TYPE_UID (t);
4852 /* Create nodes for all integer types (and error_mark_node) using the sizes
4853 of C datatypes. The caller should call set_sizetype soon after calling
4854 this function to select one of the types as sizetype. */
4856 void
4857 build_common_tree_nodes (signed_char)
4858 int signed_char;
4860 error_mark_node = make_node (ERROR_MARK);
4861 TREE_TYPE (error_mark_node) = error_mark_node;
4863 initialize_sizetypes ();
4865 /* Define both `signed char' and `unsigned char'. */
4866 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
4867 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
4869 /* Define `char', which is like either `signed char' or `unsigned char'
4870 but not the same as either. */
4871 char_type_node
4872 = (signed_char
4873 ? make_signed_type (CHAR_TYPE_SIZE)
4874 : make_unsigned_type (CHAR_TYPE_SIZE));
4876 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
4877 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
4878 integer_type_node = make_signed_type (INT_TYPE_SIZE);
4879 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
4880 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
4881 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
4882 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
4883 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
4885 intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
4886 intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
4887 intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
4888 intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
4889 intTI_type_node = make_signed_type (GET_MODE_BITSIZE (TImode));
4891 unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
4892 unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
4893 unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
4894 unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
4895 unsigned_intTI_type_node = make_unsigned_type (GET_MODE_BITSIZE (TImode));
4898 /* Call this function after calling build_common_tree_nodes and set_sizetype.
4899 It will create several other common tree nodes. */
4901 void
4902 build_common_tree_nodes_2 (short_double)
4903 int short_double;
4905 /* Define these next since types below may used them. */
4906 integer_zero_node = build_int_2 (0, 0);
4907 integer_one_node = build_int_2 (1, 0);
4908 integer_minus_one_node = build_int_2 (-1, -1);
4910 size_zero_node = size_int (0);
4911 size_one_node = size_int (1);
4912 bitsize_zero_node = bitsize_int (0);
4913 bitsize_one_node = bitsize_int (1);
4914 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
4916 void_type_node = make_node (VOID_TYPE);
4917 layout_type (void_type_node);
4919 /* We are not going to have real types in C with less than byte alignment,
4920 so we might as well not have any types that claim to have it. */
4921 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
4922 TYPE_USER_ALIGN (void_type_node) = 0;
4924 null_pointer_node = build_int_2 (0, 0);
4925 TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
4926 layout_type (TREE_TYPE (null_pointer_node));
4928 ptr_type_node = build_pointer_type (void_type_node);
4929 const_ptr_type_node
4930 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
4932 float_type_node = make_node (REAL_TYPE);
4933 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
4934 layout_type (float_type_node);
4936 double_type_node = make_node (REAL_TYPE);
4937 if (short_double)
4938 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
4939 else
4940 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
4941 layout_type (double_type_node);
4943 long_double_type_node = make_node (REAL_TYPE);
4944 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
4945 layout_type (long_double_type_node);
4947 complex_integer_type_node = make_node (COMPLEX_TYPE);
4948 TREE_TYPE (complex_integer_type_node) = integer_type_node;
4949 layout_type (complex_integer_type_node);
4951 complex_float_type_node = make_node (COMPLEX_TYPE);
4952 TREE_TYPE (complex_float_type_node) = float_type_node;
4953 layout_type (complex_float_type_node);
4955 complex_double_type_node = make_node (COMPLEX_TYPE);
4956 TREE_TYPE (complex_double_type_node) = double_type_node;
4957 layout_type (complex_double_type_node);
4959 complex_long_double_type_node = make_node (COMPLEX_TYPE);
4960 TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
4961 layout_type (complex_long_double_type_node);
4964 tree t;
4965 BUILD_VA_LIST_TYPE (t);
4967 /* Many back-ends define record types without seting TYPE_NAME.
4968 If we copied the record type here, we'd keep the original
4969 record type without a name. This breaks name mangling. So,
4970 don't copy record types and let c_common_nodes_and_builtins()
4971 declare the type to be __builtin_va_list. */
4972 if (TREE_CODE (t) != RECORD_TYPE)
4973 t = build_type_copy (t);
4975 va_list_type_node = t;
4978 V4SF_type_node = make_node (VECTOR_TYPE);
4979 TREE_TYPE (V4SF_type_node) = float_type_node;
4980 TYPE_MODE (V4SF_type_node) = V4SFmode;
4981 finish_vector_type (V4SF_type_node);
4983 V4SI_type_node = make_node (VECTOR_TYPE);
4984 TREE_TYPE (V4SI_type_node) = intSI_type_node;
4985 TYPE_MODE (V4SI_type_node) = V4SImode;
4986 finish_vector_type (V4SI_type_node);
4988 V2SI_type_node = make_node (VECTOR_TYPE);
4989 TREE_TYPE (V2SI_type_node) = intSI_type_node;
4990 TYPE_MODE (V2SI_type_node) = V2SImode;
4991 finish_vector_type (V2SI_type_node);
4993 V4HI_type_node = make_node (VECTOR_TYPE);
4994 TREE_TYPE (V4HI_type_node) = intHI_type_node;
4995 TYPE_MODE (V4HI_type_node) = V4HImode;
4996 finish_vector_type (V4HI_type_node);
4998 V8QI_type_node = make_node (VECTOR_TYPE);
4999 TREE_TYPE (V8QI_type_node) = intQI_type_node;
5000 TYPE_MODE (V8QI_type_node) = V8QImode;
5001 finish_vector_type (V8QI_type_node);