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 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)
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
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. */
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
] = {
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
] = {
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
] = {
91 /* Statistics-gathering stuff. */
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
[] = {
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
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. */
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 tree global_trees
[TI_MAX
];
188 tree integer_types
[itk_none
];
190 /* Init the principal obstacks. */
195 gcc_obstack_init (&permanent_obstack
);
197 /* Initialize the hash table of types. */
198 type_hash_table
= htab_create (TYPE_HASH_INITIAL_SIZE
, type_hash_hash
,
200 ggc_add_root (&type_hash_table
, 1, sizeof type_hash_table
, mark_type_hash
);
201 ggc_add_tree_root (global_trees
, TI_MAX
);
202 ggc_add_tree_root (integer_types
, itk_none
);
206 gcc_obstack_init (obstack
)
207 struct obstack
*obstack
;
209 /* Let particular systems override the size of a chunk. */
210 #ifndef OBSTACK_CHUNK_SIZE
211 #define OBSTACK_CHUNK_SIZE 0
213 /* Let them override the alloc and free routines too. */
214 #ifndef OBSTACK_CHUNK_ALLOC
215 #define OBSTACK_CHUNK_ALLOC xmalloc
217 #ifndef OBSTACK_CHUNK_FREE
218 #define OBSTACK_CHUNK_FREE free
220 _obstack_begin (obstack
, OBSTACK_CHUNK_SIZE
, 0,
221 (void *(*) PARAMS ((long))) OBSTACK_CHUNK_ALLOC
,
222 (void (*) PARAMS ((void *))) OBSTACK_CHUNK_FREE
);
226 /* Allocate SIZE bytes in the permanent obstack
227 and return a pointer to them. */
233 return (char *) obstack_alloc (&permanent_obstack
, size
);
236 /* Allocate NELEM items of SIZE bytes in the permanent obstack
237 and return a pointer to them. The storage is cleared before
238 returning the value. */
241 perm_calloc (nelem
, size
)
245 char *rval
= (char *) obstack_alloc (&permanent_obstack
, nelem
* size
);
246 memset (rval
, 0, nelem
* size
);
250 /* Compute the number of bytes occupied by 'node'. This routine only
251 looks at TREE_CODE and, if the code is TREE_VEC, TREE_VEC_LENGTH. */
256 enum tree_code code
= TREE_CODE (node
);
258 switch (TREE_CODE_CLASS (code
))
260 case 'd': /* A decl node */
261 return sizeof (struct tree_decl
);
263 case 't': /* a type node */
264 return sizeof (struct tree_type
);
266 case 'b': /* a lexical block node */
267 return sizeof (struct tree_block
);
269 case 'r': /* a reference */
270 case 'e': /* an expression */
271 case 's': /* an expression with side effects */
272 case '<': /* a comparison expression */
273 case '1': /* a unary arithmetic expression */
274 case '2': /* a binary arithmetic expression */
275 return (sizeof (struct tree_exp
)
276 + (TREE_CODE_LENGTH (code
) - 1) * sizeof (char *));
278 case 'c': /* a constant */
279 /* We can't use TREE_CODE_LENGTH for INTEGER_CST, since the number of
280 words is machine-dependent due to varying length of HOST_WIDE_INT,
281 which might be wider than a pointer (e.g., long long). Similarly
282 for REAL_CST, since the number of words is machine-dependent due
283 to varying size and alignment of `double'. */
284 if (code
== INTEGER_CST
)
285 return sizeof (struct tree_int_cst
);
286 else if (code
== REAL_CST
)
287 return sizeof (struct tree_real_cst
);
289 return (sizeof (struct tree_common
)
290 + TREE_CODE_LENGTH (code
) * sizeof (char *));
292 case 'x': /* something random, like an identifier. */
295 length
= (sizeof (struct tree_common
)
296 + TREE_CODE_LENGTH (code
) * sizeof (char *));
297 if (code
== TREE_VEC
)
298 length
+= (TREE_VEC_LENGTH (node
) - 1) * sizeof (char *);
307 /* Return a newly allocated node of code CODE.
308 For decl and type nodes, some other fields are initialized.
309 The rest of the node is initialized to zero.
311 Achoo! I got a code in the node. */
318 register int type
= TREE_CODE_CLASS (code
);
319 register size_t length
;
320 #ifdef GATHER_STATISTICS
321 register tree_node_kind kind
;
323 struct tree_common ttmp
;
325 /* We can't allocate a TREE_VEC without knowing how many elements
327 if (code
== TREE_VEC
)
330 TREE_SET_CODE ((tree
)&ttmp
, code
);
331 length
= tree_size ((tree
)&ttmp
);
333 #ifdef GATHER_STATISTICS
336 case 'd': /* A decl node */
340 case 't': /* a type node */
344 case 'b': /* a lexical block */
348 case 's': /* an expression with side effects */
352 case 'r': /* a reference */
356 case 'e': /* an expression */
357 case '<': /* a comparison expression */
358 case '1': /* a unary arithmetic expression */
359 case '2': /* a binary arithmetic expression */
363 case 'c': /* a constant */
367 case 'x': /* something random, like an identifier. */
368 if (code
== IDENTIFIER_NODE
)
370 else if (code
== OP_IDENTIFIER
)
372 else if (code
== TREE_VEC
)
382 tree_node_counts
[(int) kind
]++;
383 tree_node_sizes
[(int) kind
] += length
;
386 t
= ggc_alloc_tree (length
);
388 memset ((PTR
) t
, 0, length
);
390 TREE_SET_CODE (t
, code
);
395 TREE_SIDE_EFFECTS (t
) = 1;
396 TREE_TYPE (t
) = void_type_node
;
400 if (code
!= FUNCTION_DECL
)
402 DECL_USER_ALIGN (t
) = 0;
403 DECL_IN_SYSTEM_HEADER (t
) = in_system_header
;
404 DECL_SOURCE_LINE (t
) = lineno
;
405 DECL_SOURCE_FILE (t
) =
406 (input_filename
) ? input_filename
: "<built-in>";
407 DECL_UID (t
) = next_decl_uid
++;
408 /* Note that we have not yet computed the alias set for this
410 DECL_POINTER_ALIAS_SET (t
) = -1;
414 TYPE_UID (t
) = next_type_uid
++;
415 TYPE_ALIGN (t
) = char_type_node
? TYPE_ALIGN (char_type_node
) : 0;
416 TYPE_USER_ALIGN (t
) = 0;
417 TYPE_MAIN_VARIANT (t
) = t
;
418 TYPE_ATTRIBUTES (t
) = NULL_TREE
;
419 #ifdef SET_DEFAULT_TYPE_ATTRIBUTES
420 SET_DEFAULT_TYPE_ATTRIBUTES (t
);
422 /* Note that we have not yet computed the alias set for this
424 TYPE_ALIAS_SET (t
) = -1;
428 TREE_CONSTANT (t
) = 1;
438 case PREDECREMENT_EXPR
:
439 case PREINCREMENT_EXPR
:
440 case POSTDECREMENT_EXPR
:
441 case POSTINCREMENT_EXPR
:
442 /* All of these have side-effects, no matter what their
444 TREE_SIDE_EFFECTS (t
) = 1;
456 /* A front-end can reset this to an appropriate function if types need
459 tree (*make_lang_type_fn
) PARAMS ((enum tree_code
)) = make_node
;
461 /* Return a new type (with the indicated CODE), doing whatever
462 language-specific processing is required. */
465 make_lang_type (code
)
468 return (*make_lang_type_fn
) (code
);
471 /* Return a new node with the same contents as NODE except that its
472 TREE_CHAIN is zero and it has a fresh uid. */
479 register enum tree_code code
= TREE_CODE (node
);
480 register size_t length
;
482 length
= tree_size (node
);
483 t
= ggc_alloc_tree (length
);
484 memcpy (t
, node
, length
);
487 TREE_ASM_WRITTEN (t
) = 0;
489 if (TREE_CODE_CLASS (code
) == 'd')
490 DECL_UID (t
) = next_decl_uid
++;
491 else if (TREE_CODE_CLASS (code
) == 't')
493 TYPE_UID (t
) = next_type_uid
++;
494 /* The following is so that the debug code for
495 the copy is different from the original type.
496 The two statements usually duplicate each other
497 (because they clear fields of the same union),
498 but the optimizer should catch that. */
499 TYPE_SYMTAB_POINTER (t
) = 0;
500 TYPE_SYMTAB_ADDRESS (t
) = 0;
506 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
507 For example, this can copy a list made of TREE_LIST nodes. */
514 register tree prev
, next
;
519 head
= prev
= copy_node (list
);
520 next
= TREE_CHAIN (list
);
523 TREE_CHAIN (prev
) = copy_node (next
);
524 prev
= TREE_CHAIN (prev
);
525 next
= TREE_CHAIN (next
);
531 /* Return a newly constructed INTEGER_CST node whose constant value
532 is specified by the two ints LOW and HI.
533 The TREE_TYPE is set to `int'.
535 This function should be used via the `build_int_2' macro. */
538 build_int_2_wide (low
, hi
)
539 unsigned HOST_WIDE_INT low
;
542 register tree t
= make_node (INTEGER_CST
);
544 TREE_INT_CST_LOW (t
) = low
;
545 TREE_INT_CST_HIGH (t
) = hi
;
546 TREE_TYPE (t
) = integer_type_node
;
550 /* Return a new REAL_CST node whose type is TYPE and value is D. */
560 /* Check for valid float value for this type on this target machine;
561 if not, can print error message and store a valid value in D. */
562 #ifdef CHECK_FLOAT_VALUE
563 CHECK_FLOAT_VALUE (TYPE_MODE (type
), d
, overflow
);
566 v
= make_node (REAL_CST
);
567 TREE_TYPE (v
) = type
;
568 TREE_REAL_CST (v
) = d
;
569 TREE_OVERFLOW (v
) = TREE_CONSTANT_OVERFLOW (v
) = overflow
;
573 /* Return a new REAL_CST node whose type is TYPE
574 and whose value is the integer value of the INTEGER_CST node I. */
576 #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
579 real_value_from_int_cst (type
, i
)
580 tree type ATTRIBUTE_UNUSED
, i
;
584 #ifdef REAL_ARITHMETIC
585 /* Clear all bits of the real value type so that we can later do
586 bitwise comparisons to see if two values are the same. */
587 memset ((char *) &d
, 0, sizeof d
);
589 if (! TREE_UNSIGNED (TREE_TYPE (i
)))
590 REAL_VALUE_FROM_INT (d
, TREE_INT_CST_LOW (i
), TREE_INT_CST_HIGH (i
),
593 REAL_VALUE_FROM_UNSIGNED_INT (d
, TREE_INT_CST_LOW (i
),
594 TREE_INT_CST_HIGH (i
), TYPE_MODE (type
));
595 #else /* not REAL_ARITHMETIC */
596 /* Some 386 compilers mishandle unsigned int to float conversions,
597 so introduce a temporary variable E to avoid those bugs. */
598 if (TREE_INT_CST_HIGH (i
) < 0 && ! TREE_UNSIGNED (TREE_TYPE (i
)))
602 d
= (double) (~TREE_INT_CST_HIGH (i
));
603 e
= ((double) ((HOST_WIDE_INT
) 1 << (HOST_BITS_PER_WIDE_INT
/ 2))
604 * (double) ((HOST_WIDE_INT
) 1 << (HOST_BITS_PER_WIDE_INT
/ 2)));
606 e
= (double) (~TREE_INT_CST_LOW (i
));
614 d
= (double) (unsigned HOST_WIDE_INT
) TREE_INT_CST_HIGH (i
);
615 e
= ((double) ((HOST_WIDE_INT
) 1 << (HOST_BITS_PER_WIDE_INT
/ 2))
616 * (double) ((HOST_WIDE_INT
) 1 << (HOST_BITS_PER_WIDE_INT
/ 2)));
618 e
= (double) TREE_INT_CST_LOW (i
);
621 #endif /* not REAL_ARITHMETIC */
625 /* Args to pass to and from build_real_from_int_cst_1. */
629 tree type
; /* Input: type to conver to. */
630 tree i
; /* Input: operand to convert. */
631 REAL_VALUE_TYPE d
; /* Output: floating point value. */
634 /* Convert an integer to a floating point value while protected by a floating
635 point exception handler. */
638 build_real_from_int_cst_1 (data
)
641 struct brfic_args
*args
= (struct brfic_args
*) data
;
643 #ifdef REAL_ARITHMETIC
644 args
->d
= real_value_from_int_cst (args
->type
, args
->i
);
647 = REAL_VALUE_TRUNCATE (TYPE_MODE (args
->type
),
648 real_value_from_int_cst (args
->type
, args
->i
));
652 /* Given a tree representing an integer constant I, return a tree
653 representing the same value as a floating-point constant of type TYPE.
654 We cannot perform this operation if there is no way of doing arithmetic
655 on floating-point values. */
658 build_real_from_int_cst (type
, i
)
663 int overflow
= TREE_OVERFLOW (i
);
665 struct brfic_args args
;
667 v
= make_node (REAL_CST
);
668 TREE_TYPE (v
) = type
;
670 /* Setup input for build_real_from_int_cst_1() */
674 if (do_float_handler (build_real_from_int_cst_1
, (PTR
) &args
))
675 /* Receive output from build_real_from_int_cst_1() */
679 /* We got an exception from build_real_from_int_cst_1() */
684 /* Check for valid float value for this type on this target machine. */
686 #ifdef CHECK_FLOAT_VALUE
687 CHECK_FLOAT_VALUE (TYPE_MODE (type
), d
, overflow
);
690 TREE_REAL_CST (v
) = d
;
691 TREE_OVERFLOW (v
) = TREE_CONSTANT_OVERFLOW (v
) = overflow
;
695 #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
697 /* Return a newly constructed STRING_CST node whose value is
698 the LEN characters at STR.
699 The TREE_TYPE is not initialized. */
702 build_string (len
, str
)
706 register tree s
= make_node (STRING_CST
);
708 TREE_STRING_LENGTH (s
) = len
;
709 TREE_STRING_POINTER (s
) = ggc_alloc_string (str
, len
);
714 /* Return a newly constructed COMPLEX_CST node whose value is
715 specified by the real and imaginary parts REAL and IMAG.
716 Both REAL and IMAG should be constant nodes. TYPE, if specified,
717 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
720 build_complex (type
, real
, imag
)
724 register tree t
= make_node (COMPLEX_CST
);
726 TREE_REALPART (t
) = real
;
727 TREE_IMAGPART (t
) = imag
;
728 TREE_TYPE (t
) = type
? type
: build_complex_type (TREE_TYPE (real
));
729 TREE_OVERFLOW (t
) = TREE_OVERFLOW (real
) | TREE_OVERFLOW (imag
);
730 TREE_CONSTANT_OVERFLOW (t
)
731 = TREE_CONSTANT_OVERFLOW (real
) | TREE_CONSTANT_OVERFLOW (imag
);
735 /* Build a newly constructed TREE_VEC node of length LEN. */
742 register int length
= (len
-1) * sizeof (tree
) + sizeof (struct tree_vec
);
744 #ifdef GATHER_STATISTICS
745 tree_node_counts
[(int)vec_kind
]++;
746 tree_node_sizes
[(int)vec_kind
] += length
;
749 t
= ggc_alloc_tree (length
);
751 memset ((PTR
) t
, 0, length
);
752 TREE_SET_CODE (t
, TREE_VEC
);
753 TREE_VEC_LENGTH (t
) = len
;
758 /* Return 1 if EXPR is the integer constant zero or a complex constant
767 return ((TREE_CODE (expr
) == INTEGER_CST
768 && ! TREE_CONSTANT_OVERFLOW (expr
)
769 && TREE_INT_CST_LOW (expr
) == 0
770 && TREE_INT_CST_HIGH (expr
) == 0)
771 || (TREE_CODE (expr
) == COMPLEX_CST
772 && integer_zerop (TREE_REALPART (expr
))
773 && integer_zerop (TREE_IMAGPART (expr
))));
776 /* Return 1 if EXPR is the integer constant one or the corresponding
785 return ((TREE_CODE (expr
) == INTEGER_CST
786 && ! TREE_CONSTANT_OVERFLOW (expr
)
787 && TREE_INT_CST_LOW (expr
) == 1
788 && TREE_INT_CST_HIGH (expr
) == 0)
789 || (TREE_CODE (expr
) == COMPLEX_CST
790 && integer_onep (TREE_REALPART (expr
))
791 && integer_zerop (TREE_IMAGPART (expr
))));
794 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
795 it contains. Likewise for the corresponding complex constant. */
798 integer_all_onesp (expr
)
806 if (TREE_CODE (expr
) == COMPLEX_CST
807 && integer_all_onesp (TREE_REALPART (expr
))
808 && integer_zerop (TREE_IMAGPART (expr
)))
811 else if (TREE_CODE (expr
) != INTEGER_CST
812 || TREE_CONSTANT_OVERFLOW (expr
))
815 uns
= TREE_UNSIGNED (TREE_TYPE (expr
));
817 return (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
818 && TREE_INT_CST_HIGH (expr
) == -1);
820 /* Note that using TYPE_PRECISION here is wrong. We care about the
821 actual bits, not the (arbitrary) range of the type. */
822 prec
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr
)));
823 if (prec
>= HOST_BITS_PER_WIDE_INT
)
825 HOST_WIDE_INT high_value
;
828 shift_amount
= prec
- HOST_BITS_PER_WIDE_INT
;
830 if (shift_amount
> HOST_BITS_PER_WIDE_INT
)
831 /* Can not handle precisions greater than twice the host int size. */
833 else if (shift_amount
== HOST_BITS_PER_WIDE_INT
)
834 /* Shifting by the host word size is undefined according to the ANSI
835 standard, so we must handle this as a special case. */
838 high_value
= ((HOST_WIDE_INT
) 1 << shift_amount
) - 1;
840 return (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
841 && TREE_INT_CST_HIGH (expr
) == high_value
);
844 return TREE_INT_CST_LOW (expr
) == ((unsigned HOST_WIDE_INT
) 1 << prec
) - 1;
847 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
855 HOST_WIDE_INT high
, low
;
859 if (TREE_CODE (expr
) == COMPLEX_CST
860 && integer_pow2p (TREE_REALPART (expr
))
861 && integer_zerop (TREE_IMAGPART (expr
)))
864 if (TREE_CODE (expr
) != INTEGER_CST
|| TREE_CONSTANT_OVERFLOW (expr
))
867 prec
= (POINTER_TYPE_P (TREE_TYPE (expr
))
868 ? POINTER_SIZE
: TYPE_PRECISION (TREE_TYPE (expr
)));
869 high
= TREE_INT_CST_HIGH (expr
);
870 low
= TREE_INT_CST_LOW (expr
);
872 /* First clear all bits that are beyond the type's precision in case
873 we've been sign extended. */
875 if (prec
== 2 * HOST_BITS_PER_WIDE_INT
)
877 else if (prec
> HOST_BITS_PER_WIDE_INT
)
878 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
882 if (prec
< HOST_BITS_PER_WIDE_INT
)
883 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
886 if (high
== 0 && low
== 0)
889 return ((high
== 0 && (low
& (low
- 1)) == 0)
890 || (low
== 0 && (high
& (high
- 1)) == 0));
893 /* Return the power of two represented by a tree node known to be a
901 HOST_WIDE_INT high
, low
;
905 if (TREE_CODE (expr
) == COMPLEX_CST
)
906 return tree_log2 (TREE_REALPART (expr
));
908 prec
= (POINTER_TYPE_P (TREE_TYPE (expr
))
909 ? POINTER_SIZE
: TYPE_PRECISION (TREE_TYPE (expr
)));
911 high
= TREE_INT_CST_HIGH (expr
);
912 low
= TREE_INT_CST_LOW (expr
);
914 /* First clear all bits that are beyond the type's precision in case
915 we've been sign extended. */
917 if (prec
== 2 * HOST_BITS_PER_WIDE_INT
)
919 else if (prec
> HOST_BITS_PER_WIDE_INT
)
920 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
924 if (prec
< HOST_BITS_PER_WIDE_INT
)
925 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
928 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ exact_log2 (high
)
932 /* Similar, but return the largest integer Y such that 2 ** Y is less
933 than or equal to EXPR. */
936 tree_floor_log2 (expr
)
940 HOST_WIDE_INT high
, low
;
944 if (TREE_CODE (expr
) == COMPLEX_CST
)
945 return tree_log2 (TREE_REALPART (expr
));
947 prec
= (POINTER_TYPE_P (TREE_TYPE (expr
))
948 ? POINTER_SIZE
: TYPE_PRECISION (TREE_TYPE (expr
)));
950 high
= TREE_INT_CST_HIGH (expr
);
951 low
= TREE_INT_CST_LOW (expr
);
953 /* First clear all bits that are beyond the type's precision in case
954 we've been sign extended. Ignore if type's precision hasn't been set
955 since what we are doing is setting it. */
957 if (prec
== 2 * HOST_BITS_PER_WIDE_INT
|| prec
== 0)
959 else if (prec
> HOST_BITS_PER_WIDE_INT
)
960 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
964 if (prec
< HOST_BITS_PER_WIDE_INT
)
965 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
968 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ floor_log2 (high
)
972 /* Return 1 if EXPR is the real constant zero. */
980 return ((TREE_CODE (expr
) == REAL_CST
981 && ! TREE_CONSTANT_OVERFLOW (expr
)
982 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst0
))
983 || (TREE_CODE (expr
) == COMPLEX_CST
984 && real_zerop (TREE_REALPART (expr
))
985 && real_zerop (TREE_IMAGPART (expr
))));
988 /* Return 1 if EXPR is the real constant one in real or complex form. */
996 return ((TREE_CODE (expr
) == REAL_CST
997 && ! TREE_CONSTANT_OVERFLOW (expr
)
998 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst1
))
999 || (TREE_CODE (expr
) == COMPLEX_CST
1000 && real_onep (TREE_REALPART (expr
))
1001 && real_zerop (TREE_IMAGPART (expr
))));
1004 /* Return 1 if EXPR is the real constant two. */
1012 return ((TREE_CODE (expr
) == REAL_CST
1013 && ! TREE_CONSTANT_OVERFLOW (expr
)
1014 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst2
))
1015 || (TREE_CODE (expr
) == COMPLEX_CST
1016 && real_twop (TREE_REALPART (expr
))
1017 && real_zerop (TREE_IMAGPART (expr
))));
1020 /* Nonzero if EXP is a constant or a cast of a constant. */
1023 really_constant_p (exp
)
1026 /* This is not quite the same as STRIP_NOPS. It does more. */
1027 while (TREE_CODE (exp
) == NOP_EXPR
1028 || TREE_CODE (exp
) == CONVERT_EXPR
1029 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
1030 exp
= TREE_OPERAND (exp
, 0);
1031 return TREE_CONSTANT (exp
);
1034 /* Return first list element whose TREE_VALUE is ELEM.
1035 Return 0 if ELEM is not in LIST. */
1038 value_member (elem
, list
)
1043 if (elem
== TREE_VALUE (list
))
1045 list
= TREE_CHAIN (list
);
1050 /* Return first list element whose TREE_PURPOSE is ELEM.
1051 Return 0 if ELEM is not in LIST. */
1054 purpose_member (elem
, list
)
1059 if (elem
== TREE_PURPOSE (list
))
1061 list
= TREE_CHAIN (list
);
1066 /* Return first list element whose BINFO_TYPE is ELEM.
1067 Return 0 if ELEM is not in LIST. */
1070 binfo_member (elem
, list
)
1075 if (elem
== BINFO_TYPE (list
))
1077 list
= TREE_CHAIN (list
);
1082 /* Return nonzero if ELEM is part of the chain CHAIN. */
1085 chain_member (elem
, chain
)
1092 chain
= TREE_CHAIN (chain
);
1098 /* Return nonzero if ELEM is equal to TREE_VALUE (CHAIN) for any piece of
1099 chain CHAIN. This and the next function are currently unused, but
1100 are retained for completeness. */
1103 chain_member_value (elem
, chain
)
1108 if (elem
== TREE_VALUE (chain
))
1110 chain
= TREE_CHAIN (chain
);
1116 /* Return nonzero if ELEM is equal to TREE_PURPOSE (CHAIN)
1117 for any piece of chain CHAIN. */
1120 chain_member_purpose (elem
, chain
)
1125 if (elem
== TREE_PURPOSE (chain
))
1127 chain
= TREE_CHAIN (chain
);
1133 /* Return the length of a chain of nodes chained through TREE_CHAIN.
1134 We expect a null pointer to mark the end of the chain.
1135 This is the Lisp primitive `length'. */
1142 register int len
= 0;
1144 for (tail
= t
; tail
; tail
= TREE_CHAIN (tail
))
1150 /* Returns the number of FIELD_DECLs in TYPE. */
1153 fields_length (type
)
1156 tree t
= TYPE_FIELDS (type
);
1159 for (; t
; t
= TREE_CHAIN (t
))
1160 if (TREE_CODE (t
) == FIELD_DECL
)
1166 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
1167 by modifying the last node in chain 1 to point to chain 2.
1168 This is the Lisp primitive `nconc'. */
1178 #ifdef ENABLE_TREE_CHECKING
1182 for (t1
= op1
; TREE_CHAIN (t1
); t1
= TREE_CHAIN (t1
))
1184 TREE_CHAIN (t1
) = op2
;
1185 #ifdef ENABLE_TREE_CHECKING
1186 for (t2
= op2
; t2
; t2
= TREE_CHAIN (t2
))
1188 abort (); /* Circularity created. */
1196 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
1200 register tree chain
;
1204 while ((next
= TREE_CHAIN (chain
)))
1209 /* Reverse the order of elements in the chain T,
1210 and return the new head of the chain (old last element). */
1216 register tree prev
= 0, decl
, next
;
1217 for (decl
= t
; decl
; decl
= next
)
1219 next
= TREE_CHAIN (decl
);
1220 TREE_CHAIN (decl
) = prev
;
1226 /* Given a chain CHAIN of tree nodes,
1227 construct and return a list of those nodes. */
1233 tree result
= NULL_TREE
;
1234 tree in_tail
= chain
;
1235 tree out_tail
= NULL_TREE
;
1239 tree next
= tree_cons (NULL_TREE
, in_tail
, NULL_TREE
);
1241 TREE_CHAIN (out_tail
) = next
;
1245 in_tail
= TREE_CHAIN (in_tail
);
1251 /* Return a newly created TREE_LIST node whose
1252 purpose and value fields are PARM and VALUE. */
1255 build_tree_list (parm
, value
)
1258 register tree t
= make_node (TREE_LIST
);
1259 TREE_PURPOSE (t
) = parm
;
1260 TREE_VALUE (t
) = value
;
1264 /* Return a newly created TREE_LIST node whose
1265 purpose and value fields are PARM and VALUE
1266 and whose TREE_CHAIN is CHAIN. */
1269 tree_cons (purpose
, value
, chain
)
1270 tree purpose
, value
, chain
;
1274 node
= ggc_alloc_tree (sizeof (struct tree_list
));
1276 memset (node
, 0, sizeof (struct tree_common
));
1278 #ifdef GATHER_STATISTICS
1279 tree_node_counts
[(int) x_kind
]++;
1280 tree_node_sizes
[(int) x_kind
] += sizeof (struct tree_list
);
1283 TREE_SET_CODE (node
, TREE_LIST
);
1284 TREE_CHAIN (node
) = chain
;
1285 TREE_PURPOSE (node
) = purpose
;
1286 TREE_VALUE (node
) = value
;
1291 /* Return the size nominally occupied by an object of type TYPE
1292 when it resides in memory. The value is measured in units of bytes,
1293 and its data type is that normally used for type sizes
1294 (which is the first type created by make_signed_type or
1295 make_unsigned_type). */
1298 size_in_bytes (type
)
1303 if (type
== error_mark_node
)
1304 return integer_zero_node
;
1306 type
= TYPE_MAIN_VARIANT (type
);
1307 t
= TYPE_SIZE_UNIT (type
);
1311 incomplete_type_error (NULL_TREE
, type
);
1312 return size_zero_node
;
1315 if (TREE_CODE (t
) == INTEGER_CST
)
1316 force_fit_type (t
, 0);
1321 /* Return the size of TYPE (in bytes) as a wide integer
1322 or return -1 if the size can vary or is larger than an integer. */
1325 int_size_in_bytes (type
)
1330 if (type
== error_mark_node
)
1333 type
= TYPE_MAIN_VARIANT (type
);
1334 t
= TYPE_SIZE_UNIT (type
);
1336 || TREE_CODE (t
) != INTEGER_CST
1337 || TREE_OVERFLOW (t
)
1338 || TREE_INT_CST_HIGH (t
) != 0
1339 /* If the result would appear negative, it's too big to represent. */
1340 || (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0)
1343 return TREE_INT_CST_LOW (t
);
1346 /* Return the bit position of FIELD, in bits from the start of the record.
1347 This is a tree of type bitsizetype. */
1350 bit_position (field
)
1354 return bit_from_pos (DECL_FIELD_OFFSET (field
),
1355 DECL_FIELD_BIT_OFFSET (field
));
1358 /* Likewise, but return as an integer. Abort if it cannot be represented
1359 in that way (since it could be a signed value, we don't have the option
1360 of returning -1 like int_size_in_byte can. */
1363 int_bit_position (field
)
1366 return tree_low_cst (bit_position (field
), 0);
1369 /* Return the byte position of FIELD, in bytes from the start of the record.
1370 This is a tree of type sizetype. */
1373 byte_position (field
)
1376 return byte_from_pos (DECL_FIELD_OFFSET (field
),
1377 DECL_FIELD_BIT_OFFSET (field
));
1380 /* Likewise, but return as an integer. Abort if it cannot be represented
1381 in that way (since it could be a signed value, we don't have the option
1382 of returning -1 like int_size_in_byte can. */
1385 int_byte_position (field
)
1388 return tree_low_cst (byte_position (field
), 0);
1391 /* Return the strictest alignment, in bits, that T is known to have. */
1397 unsigned int align0
, align1
;
1399 switch (TREE_CODE (t
))
1401 case NOP_EXPR
: case CONVERT_EXPR
: case NON_LVALUE_EXPR
:
1402 /* If we have conversions, we know that the alignment of the
1403 object must meet each of the alignments of the types. */
1404 align0
= expr_align (TREE_OPERAND (t
, 0));
1405 align1
= TYPE_ALIGN (TREE_TYPE (t
));
1406 return MAX (align0
, align1
);
1408 case SAVE_EXPR
: case COMPOUND_EXPR
: case MODIFY_EXPR
:
1409 case INIT_EXPR
: case TARGET_EXPR
: case WITH_CLEANUP_EXPR
:
1410 case WITH_RECORD_EXPR
: case CLEANUP_POINT_EXPR
: case UNSAVE_EXPR
:
1411 /* These don't change the alignment of an object. */
1412 return expr_align (TREE_OPERAND (t
, 0));
1415 /* The best we can do is say that the alignment is the least aligned
1417 align0
= expr_align (TREE_OPERAND (t
, 1));
1418 align1
= expr_align (TREE_OPERAND (t
, 2));
1419 return MIN (align0
, align1
);
1421 case LABEL_DECL
: case CONST_DECL
:
1422 case VAR_DECL
: case PARM_DECL
: case RESULT_DECL
:
1423 if (DECL_ALIGN (t
) != 0)
1424 return DECL_ALIGN (t
);
1428 return FUNCTION_BOUNDARY
;
1434 /* Otherwise take the alignment from that of the type. */
1435 return TYPE_ALIGN (TREE_TYPE (t
));
1438 /* Return, as a tree node, the number of elements for TYPE (which is an
1439 ARRAY_TYPE) minus one. This counts only elements of the top array. */
1442 array_type_nelts (type
)
1445 tree index_type
, min
, max
;
1447 /* If they did it with unspecified bounds, then we should have already
1448 given an error about it before we got here. */
1449 if (! TYPE_DOMAIN (type
))
1450 return error_mark_node
;
1452 index_type
= TYPE_DOMAIN (type
);
1453 min
= TYPE_MIN_VALUE (index_type
);
1454 max
= TYPE_MAX_VALUE (index_type
);
1456 return (integer_zerop (min
)
1458 : fold (build (MINUS_EXPR
, TREE_TYPE (max
), max
, min
)));
1461 /* Return nonzero if arg is static -- a reference to an object in
1462 static storage. This is not the same as the C meaning of `static'. */
1468 switch (TREE_CODE (arg
))
1471 /* Nested functions aren't static, since taking their address
1472 involves a trampoline. */
1473 return (decl_function_context (arg
) == 0 || DECL_NO_STATIC_CHAIN (arg
))
1474 && ! DECL_NON_ADDR_CONST_P (arg
);
1477 return (TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
1478 && ! DECL_NON_ADDR_CONST_P (arg
);
1481 return TREE_STATIC (arg
);
1487 /* If we are referencing a bitfield, we can't evaluate an
1488 ADDR_EXPR at compile time and so it isn't a constant. */
1490 return (! DECL_BIT_FIELD (TREE_OPERAND (arg
, 1))
1491 && staticp (TREE_OPERAND (arg
, 0)));
1497 /* This case is technically correct, but results in setting
1498 TREE_CONSTANT on ADDR_EXPRs that cannot be evaluated at
1501 return TREE_CONSTANT (TREE_OPERAND (arg
, 0));
1505 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg
))) == INTEGER_CST
1506 && TREE_CODE (TREE_OPERAND (arg
, 1)) == INTEGER_CST
)
1507 return staticp (TREE_OPERAND (arg
, 0));
1514 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
1515 Do this to any expression which may be used in more than one place,
1516 but must be evaluated only once.
1518 Normally, expand_expr would reevaluate the expression each time.
1519 Calling save_expr produces something that is evaluated and recorded
1520 the first time expand_expr is called on it. Subsequent calls to
1521 expand_expr just reuse the recorded value.
1523 The call to expand_expr that generates code that actually computes
1524 the value is the first call *at compile time*. Subsequent calls
1525 *at compile time* generate code to use the saved value.
1526 This produces correct result provided that *at run time* control
1527 always flows through the insns made by the first expand_expr
1528 before reaching the other places where the save_expr was evaluated.
1529 You, the caller of save_expr, must make sure this is so.
1531 Constants, and certain read-only nodes, are returned with no
1532 SAVE_EXPR because that is safe. Expressions containing placeholders
1533 are not touched; see tree.def for an explanation of what these
1540 register tree t
= fold (expr
);
1542 /* We don't care about whether this can be used as an lvalue in this
1544 while (TREE_CODE (t
) == NON_LVALUE_EXPR
)
1545 t
= TREE_OPERAND (t
, 0);
1547 /* If the tree evaluates to a constant, then we don't want to hide that
1548 fact (i.e. this allows further folding, and direct checks for constants).
1549 However, a read-only object that has side effects cannot be bypassed.
1550 Since it is no problem to reevaluate literals, we just return the
1553 if (TREE_CONSTANT (t
) || (TREE_READONLY (t
) && ! TREE_SIDE_EFFECTS (t
))
1554 || TREE_CODE (t
) == SAVE_EXPR
|| TREE_CODE (t
) == ERROR_MARK
)
1557 /* If T contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
1558 it means that the size or offset of some field of an object depends on
1559 the value within another field.
1561 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
1562 and some variable since it would then need to be both evaluated once and
1563 evaluated more than once. Front-ends must assure this case cannot
1564 happen by surrounding any such subexpressions in their own SAVE_EXPR
1565 and forcing evaluation at the proper time. */
1566 if (contains_placeholder_p (t
))
1569 t
= build (SAVE_EXPR
, TREE_TYPE (expr
), t
, current_function_decl
, NULL_TREE
);
1571 /* This expression might be placed ahead of a jump to ensure that the
1572 value was computed on both sides of the jump. So make sure it isn't
1573 eliminated as dead. */
1574 TREE_SIDE_EFFECTS (t
) = 1;
1575 TREE_READONLY (t
) = 1;
1579 /* Arrange for an expression to be expanded multiple independent
1580 times. This is useful for cleanup actions, as the backend can
1581 expand them multiple times in different places. */
1589 /* If this is already protected, no sense in protecting it again. */
1590 if (TREE_CODE (expr
) == UNSAVE_EXPR
)
1593 t
= build1 (UNSAVE_EXPR
, TREE_TYPE (expr
), expr
);
1594 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (expr
);
1598 /* Returns the index of the first non-tree operand for CODE, or the number
1599 of operands if all are trees. */
1603 enum tree_code code
;
1609 case GOTO_SUBROUTINE_EXPR
:
1612 case WITH_CLEANUP_EXPR
:
1613 /* Should be defined to be 2. */
1615 case METHOD_CALL_EXPR
:
1618 return TREE_CODE_LENGTH (code
);
1622 /* Perform any modifications to EXPR required when it is unsaved. Does
1623 not recurse into EXPR's subtrees. */
1626 unsave_expr_1 (expr
)
1629 switch (TREE_CODE (expr
))
1632 if (! SAVE_EXPR_PERSISTENT_P (expr
))
1633 SAVE_EXPR_RTL (expr
) = 0;
1637 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
1638 It's OK for this to happen if it was part of a subtree that
1639 isn't immediately expanded, such as operand 2 of another
1641 if (TREE_OPERAND (expr
, 1))
1644 TREE_OPERAND (expr
, 1) = TREE_OPERAND (expr
, 3);
1645 TREE_OPERAND (expr
, 3) = NULL_TREE
;
1649 /* I don't yet know how to emit a sequence multiple times. */
1650 if (RTL_EXPR_SEQUENCE (expr
) != 0)
1655 if (lang_unsave_expr_now
!= 0)
1656 (*lang_unsave_expr_now
) (expr
);
1661 /* Helper function for unsave_expr_now. */
1664 unsave_expr_now_r (expr
)
1667 enum tree_code code
;
1669 /* There's nothing to do for NULL_TREE. */
1673 unsave_expr_1 (expr
);
1675 code
= TREE_CODE (expr
);
1676 switch (TREE_CODE_CLASS (code
))
1678 case 'c': /* a constant */
1679 case 't': /* a type node */
1680 case 'd': /* A decl node */
1681 case 'b': /* A block node */
1684 case 'x': /* miscellaneous: e.g., identifier, TREE_LIST or ERROR_MARK. */
1685 if (code
== TREE_LIST
)
1687 unsave_expr_now_r (TREE_VALUE (expr
));
1688 unsave_expr_now_r (TREE_CHAIN (expr
));
1692 case 'e': /* an expression */
1693 case 'r': /* a reference */
1694 case 's': /* an expression with side effects */
1695 case '<': /* a comparison expression */
1696 case '2': /* a binary arithmetic expression */
1697 case '1': /* a unary arithmetic expression */
1701 for (i
= first_rtl_op (code
) - 1; i
>= 0; i
--)
1702 unsave_expr_now_r (TREE_OPERAND (expr
, i
));
1711 /* Modify a tree in place so that all the evaluate only once things
1712 are cleared out. Return the EXPR given. */
1715 unsave_expr_now (expr
)
1718 if (lang_unsave
!= 0)
1719 (*lang_unsave
) (&expr
);
1721 unsave_expr_now_r (expr
);
1726 /* Return 0 if it is safe to evaluate EXPR multiple times,
1727 return 1 if it is safe if EXPR is unsaved afterward, or
1728 return 2 if it is completely unsafe.
1730 This assumes that CALL_EXPRs and TARGET_EXPRs are never replicated in
1731 an expression tree, so that it safe to unsave them and the surrounding
1732 context will be correct.
1734 SAVE_EXPRs basically *only* appear replicated in an expression tree,
1735 occasionally across the whole of a function. It is therefore only
1736 safe to unsave a SAVE_EXPR if you know that all occurrences appear
1737 below the UNSAVE_EXPR.
1739 RTL_EXPRs consume their rtl during evaluation. It is therefore
1740 never possible to unsave them. */
1743 unsafe_for_reeval (expr
)
1747 enum tree_code code
;
1752 if (expr
== NULL_TREE
)
1755 code
= TREE_CODE (expr
);
1756 first_rtl
= first_rtl_op (code
);
1765 for (exp
= expr
; exp
!= 0; exp
= TREE_CHAIN (exp
))
1767 tmp
= unsafe_for_reeval (TREE_VALUE (exp
));
1768 unsafeness
= MAX (tmp
, unsafeness
);
1774 tmp
= unsafe_for_reeval (TREE_OPERAND (expr
, 1));
1775 return MAX (tmp
, 1);
1782 if (lang_unsafe_for_reeval
!= 0)
1784 tmp
= (*lang_unsafe_for_reeval
) (expr
);
1791 switch (TREE_CODE_CLASS (code
))
1793 case 'c': /* a constant */
1794 case 't': /* a type node */
1795 case 'x': /* something random, like an identifier or an ERROR_MARK. */
1796 case 'd': /* A decl node */
1797 case 'b': /* A block node */
1800 case 'e': /* an expression */
1801 case 'r': /* a reference */
1802 case 's': /* an expression with side effects */
1803 case '<': /* a comparison expression */
1804 case '2': /* a binary arithmetic expression */
1805 case '1': /* a unary arithmetic expression */
1806 for (i
= first_rtl
- 1; i
>= 0; i
--)
1808 tmp
= unsafe_for_reeval (TREE_OPERAND (expr
, i
));
1809 unsafeness
= MAX (tmp
, unsafeness
);
1819 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
1820 or offset that depends on a field within a record. */
1823 contains_placeholder_p (exp
)
1826 register enum tree_code code
;
1832 /* If we have a WITH_RECORD_EXPR, it "cancels" any PLACEHOLDER_EXPR
1833 in it since it is supplying a value for it. */
1834 code
= TREE_CODE (exp
);
1835 if (code
== WITH_RECORD_EXPR
)
1837 else if (code
== PLACEHOLDER_EXPR
)
1840 switch (TREE_CODE_CLASS (code
))
1843 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
1844 position computations since they will be converted into a
1845 WITH_RECORD_EXPR involving the reference, which will assume
1846 here will be valid. */
1847 return contains_placeholder_p (TREE_OPERAND (exp
, 0));
1850 if (code
== TREE_LIST
)
1851 return (contains_placeholder_p (TREE_VALUE (exp
))
1852 || (TREE_CHAIN (exp
) != 0
1853 && contains_placeholder_p (TREE_CHAIN (exp
))));
1862 /* Ignoring the first operand isn't quite right, but works best. */
1863 return contains_placeholder_p (TREE_OPERAND (exp
, 1));
1870 return (contains_placeholder_p (TREE_OPERAND (exp
, 0))
1871 || contains_placeholder_p (TREE_OPERAND (exp
, 1))
1872 || contains_placeholder_p (TREE_OPERAND (exp
, 2)));
1875 /* If we already know this doesn't have a placeholder, don't
1877 if (SAVE_EXPR_NOPLACEHOLDER (exp
) || SAVE_EXPR_RTL (exp
) != 0)
1880 SAVE_EXPR_NOPLACEHOLDER (exp
) = 1;
1881 result
= contains_placeholder_p (TREE_OPERAND (exp
, 0));
1883 SAVE_EXPR_NOPLACEHOLDER (exp
) = 0;
1888 return (TREE_OPERAND (exp
, 1) != 0
1889 && contains_placeholder_p (TREE_OPERAND (exp
, 1)));
1895 switch (TREE_CODE_LENGTH (code
))
1898 return contains_placeholder_p (TREE_OPERAND (exp
, 0));
1900 return (contains_placeholder_p (TREE_OPERAND (exp
, 0))
1901 || contains_placeholder_p (TREE_OPERAND (exp
, 1)));
1912 /* Return 1 if EXP contains any expressions that produce cleanups for an
1913 outer scope to deal with. Used by fold. */
1921 if (! TREE_SIDE_EFFECTS (exp
))
1924 switch (TREE_CODE (exp
))
1927 case GOTO_SUBROUTINE_EXPR
:
1928 case WITH_CLEANUP_EXPR
:
1931 case CLEANUP_POINT_EXPR
:
1935 for (exp
= TREE_OPERAND (exp
, 1); exp
; exp
= TREE_CHAIN (exp
))
1937 cmp
= has_cleanups (TREE_VALUE (exp
));
1947 /* This general rule works for most tree codes. All exceptions should be
1948 handled above. If this is a language-specific tree code, we can't
1949 trust what might be in the operand, so say we don't know
1951 if ((int) TREE_CODE (exp
) >= (int) LAST_AND_UNUSED_TREE_CODE
)
1954 nops
= first_rtl_op (TREE_CODE (exp
));
1955 for (i
= 0; i
< nops
; i
++)
1956 if (TREE_OPERAND (exp
, i
) != 0)
1958 int type
= TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp
, i
)));
1959 if (type
== 'e' || type
== '<' || type
== '1' || type
== '2'
1960 || type
== 'r' || type
== 's')
1962 cmp
= has_cleanups (TREE_OPERAND (exp
, i
));
1971 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
1972 return a tree with all occurrences of references to F in a
1973 PLACEHOLDER_EXPR replaced by R. Note that we assume here that EXP
1974 contains only arithmetic expressions or a CALL_EXPR with a
1975 PLACEHOLDER_EXPR occurring only in its arglist. */
1978 substitute_in_expr (exp
, f
, r
)
1983 enum tree_code code
= TREE_CODE (exp
);
1988 switch (TREE_CODE_CLASS (code
))
1995 if (code
== PLACEHOLDER_EXPR
)
1997 else if (code
== TREE_LIST
)
1999 op0
= (TREE_CHAIN (exp
) == 0
2000 ? 0 : substitute_in_expr (TREE_CHAIN (exp
), f
, r
));
2001 op1
= substitute_in_expr (TREE_VALUE (exp
), f
, r
);
2002 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
2005 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
2014 switch (TREE_CODE_LENGTH (code
))
2017 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
2018 if (op0
== TREE_OPERAND (exp
, 0))
2021 if (code
== NON_LVALUE_EXPR
)
2024 new = fold (build1 (code
, TREE_TYPE (exp
), op0
));
2028 /* An RTL_EXPR cannot contain a PLACEHOLDER_EXPR; a CONSTRUCTOR
2029 could, but we don't support it. */
2030 if (code
== RTL_EXPR
)
2032 else if (code
== CONSTRUCTOR
)
2035 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
2036 op1
= substitute_in_expr (TREE_OPERAND (exp
, 1), f
, r
);
2037 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
2040 new = fold (build (code
, TREE_TYPE (exp
), op0
, op1
));
2044 /* It cannot be that anything inside a SAVE_EXPR contains a
2045 PLACEHOLDER_EXPR. */
2046 if (code
== SAVE_EXPR
)
2049 else if (code
== CALL_EXPR
)
2051 op1
= substitute_in_expr (TREE_OPERAND (exp
, 1), f
, r
);
2052 if (op1
== TREE_OPERAND (exp
, 1))
2055 return build (code
, TREE_TYPE (exp
),
2056 TREE_OPERAND (exp
, 0), op1
, NULL_TREE
);
2059 else if (code
!= COND_EXPR
)
2062 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
2063 op1
= substitute_in_expr (TREE_OPERAND (exp
, 1), f
, r
);
2064 op2
= substitute_in_expr (TREE_OPERAND (exp
, 2), f
, r
);
2065 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
2066 && op2
== TREE_OPERAND (exp
, 2))
2069 new = fold (build (code
, TREE_TYPE (exp
), op0
, op1
, op2
));
2082 /* If this expression is getting a value from a PLACEHOLDER_EXPR
2083 and it is the right field, replace it with R. */
2084 for (inner
= TREE_OPERAND (exp
, 0);
2085 TREE_CODE_CLASS (TREE_CODE (inner
)) == 'r';
2086 inner
= TREE_OPERAND (inner
, 0))
2088 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
2089 && TREE_OPERAND (exp
, 1) == f
)
2092 /* If this expression hasn't been completed let, leave it
2094 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
2095 && TREE_TYPE (inner
) == 0)
2098 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
2099 if (op0
== TREE_OPERAND (exp
, 0))
2102 new = fold (build (code
, TREE_TYPE (exp
), op0
,
2103 TREE_OPERAND (exp
, 1)));
2107 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
2108 op1
= substitute_in_expr (TREE_OPERAND (exp
, 1), f
, r
);
2109 op2
= substitute_in_expr (TREE_OPERAND (exp
, 2), f
, r
);
2110 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
2111 && op2
== TREE_OPERAND (exp
, 2))
2114 new = fold (build (code
, TREE_TYPE (exp
), op0
, op1
, op2
));
2119 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
2120 if (op0
== TREE_OPERAND (exp
, 0))
2123 new = fold (build1 (code
, TREE_TYPE (exp
), op0
));
2135 TREE_READONLY (new) = TREE_READONLY (exp
);
2139 /* Stabilize a reference so that we can use it any number of times
2140 without causing its operands to be evaluated more than once.
2141 Returns the stabilized reference. This works by means of save_expr,
2142 so see the caveats in the comments about save_expr.
2144 Also allows conversion expressions whose operands are references.
2145 Any other kind of expression is returned unchanged. */
2148 stabilize_reference (ref
)
2151 register tree result
;
2152 register enum tree_code code
= TREE_CODE (ref
);
2159 /* No action is needed in this case. */
2165 case FIX_TRUNC_EXPR
:
2166 case FIX_FLOOR_EXPR
:
2167 case FIX_ROUND_EXPR
:
2169 result
= build_nt (code
, stabilize_reference (TREE_OPERAND (ref
, 0)));
2173 result
= build_nt (INDIRECT_REF
,
2174 stabilize_reference_1 (TREE_OPERAND (ref
, 0)));
2178 result
= build_nt (COMPONENT_REF
,
2179 stabilize_reference (TREE_OPERAND (ref
, 0)),
2180 TREE_OPERAND (ref
, 1));
2184 result
= build_nt (BIT_FIELD_REF
,
2185 stabilize_reference (TREE_OPERAND (ref
, 0)),
2186 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
2187 stabilize_reference_1 (TREE_OPERAND (ref
, 2)));
2191 result
= build_nt (ARRAY_REF
,
2192 stabilize_reference (TREE_OPERAND (ref
, 0)),
2193 stabilize_reference_1 (TREE_OPERAND (ref
, 1)));
2197 /* We cannot wrap the first expression in a SAVE_EXPR, as then
2198 it wouldn't be ignored. This matters when dealing with
2200 return stabilize_reference_1 (ref
);
2203 result
= build1 (INDIRECT_REF
, TREE_TYPE (ref
),
2204 save_expr (build1 (ADDR_EXPR
,
2205 build_pointer_type (TREE_TYPE (ref
)),
2209 /* If arg isn't a kind of lvalue we recognize, make no change.
2210 Caller should recognize the error for an invalid lvalue. */
2215 return error_mark_node
;
2218 TREE_TYPE (result
) = TREE_TYPE (ref
);
2219 TREE_READONLY (result
) = TREE_READONLY (ref
);
2220 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (ref
);
2221 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (ref
);
2226 /* Subroutine of stabilize_reference; this is called for subtrees of
2227 references. Any expression with side-effects must be put in a SAVE_EXPR
2228 to ensure that it is only evaluated once.
2230 We don't put SAVE_EXPR nodes around everything, because assigning very
2231 simple expressions to temporaries causes us to miss good opportunities
2232 for optimizations. Among other things, the opportunity to fold in the
2233 addition of a constant into an addressing mode often gets lost, e.g.
2234 "y[i+1] += x;". In general, we take the approach that we should not make
2235 an assignment unless we are forced into it - i.e., that any non-side effect
2236 operator should be allowed, and that cse should take care of coalescing
2237 multiple utterances of the same expression should that prove fruitful. */
2240 stabilize_reference_1 (e
)
2243 register tree result
;
2244 register enum tree_code code
= TREE_CODE (e
);
2246 /* We cannot ignore const expressions because it might be a reference
2247 to a const array but whose index contains side-effects. But we can
2248 ignore things that are actual constant or that already have been
2249 handled by this function. */
2251 if (TREE_CONSTANT (e
) || code
== SAVE_EXPR
)
2254 switch (TREE_CODE_CLASS (code
))
2264 /* If the expression has side-effects, then encase it in a SAVE_EXPR
2265 so that it will only be evaluated once. */
2266 /* The reference (r) and comparison (<) classes could be handled as
2267 below, but it is generally faster to only evaluate them once. */
2268 if (TREE_SIDE_EFFECTS (e
))
2269 return save_expr (e
);
2273 /* Constants need no processing. In fact, we should never reach
2278 /* Division is slow and tends to be compiled with jumps,
2279 especially the division by powers of 2 that is often
2280 found inside of an array reference. So do it just once. */
2281 if (code
== TRUNC_DIV_EXPR
|| code
== TRUNC_MOD_EXPR
2282 || code
== FLOOR_DIV_EXPR
|| code
== FLOOR_MOD_EXPR
2283 || code
== CEIL_DIV_EXPR
|| code
== CEIL_MOD_EXPR
2284 || code
== ROUND_DIV_EXPR
|| code
== ROUND_MOD_EXPR
)
2285 return save_expr (e
);
2286 /* Recursively stabilize each operand. */
2287 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)),
2288 stabilize_reference_1 (TREE_OPERAND (e
, 1)));
2292 /* Recursively stabilize each operand. */
2293 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)));
2300 TREE_TYPE (result
) = TREE_TYPE (e
);
2301 TREE_READONLY (result
) = TREE_READONLY (e
);
2302 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (e
);
2303 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (e
);
2308 /* Low-level constructors for expressions. */
2310 /* Build an expression of code CODE, data type TYPE,
2311 and operands as specified by the arguments ARG1 and following arguments.
2312 Expressions and reference nodes can be created this way.
2313 Constants, decls, types and misc nodes cannot be. */
2316 build
VPARAMS ((enum tree_code code
, tree tt
, ...))
2318 #ifndef ANSI_PROTOTYPES
2319 enum tree_code code
;
2324 register int length
;
2330 #ifndef ANSI_PROTOTYPES
2331 code
= va_arg (p
, enum tree_code
);
2332 tt
= va_arg (p
, tree
);
2335 t
= make_node (code
);
2336 length
= TREE_CODE_LENGTH (code
);
2339 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
2340 result based on those same flags for the arguments. But if the
2341 arguments aren't really even `tree' expressions, we shouldn't be trying
2343 fro
= first_rtl_op (code
);
2347 /* This is equivalent to the loop below, but faster. */
2348 register tree arg0
= va_arg (p
, tree
);
2349 register tree arg1
= va_arg (p
, tree
);
2351 TREE_OPERAND (t
, 0) = arg0
;
2352 TREE_OPERAND (t
, 1) = arg1
;
2353 TREE_READONLY (t
) = 1;
2354 if (arg0
&& fro
> 0)
2356 if (TREE_SIDE_EFFECTS (arg0
))
2357 TREE_SIDE_EFFECTS (t
) = 1;
2358 if (!TREE_READONLY (arg0
))
2359 TREE_READONLY (t
) = 0;
2362 if (arg1
&& fro
> 1)
2364 if (TREE_SIDE_EFFECTS (arg1
))
2365 TREE_SIDE_EFFECTS (t
) = 1;
2366 if (!TREE_READONLY (arg1
))
2367 TREE_READONLY (t
) = 0;
2370 else if (length
== 1)
2372 register tree arg0
= va_arg (p
, tree
);
2374 /* The only one-operand cases we handle here are those with side-effects.
2375 Others are handled with build1. So don't bother checked if the
2376 arg has side-effects since we'll already have set it.
2378 ??? This really should use build1 too. */
2379 if (TREE_CODE_CLASS (code
) != 's')
2381 TREE_OPERAND (t
, 0) = arg0
;
2385 for (i
= 0; i
< length
; i
++)
2387 register tree operand
= va_arg (p
, tree
);
2389 TREE_OPERAND (t
, i
) = operand
;
2390 if (operand
&& fro
> i
)
2392 if (TREE_SIDE_EFFECTS (operand
))
2393 TREE_SIDE_EFFECTS (t
) = 1;
2401 /* Same as above, but only builds for unary operators.
2402 Saves lions share of calls to `build'; cuts down use
2403 of varargs, which is expensive for RISC machines. */
2406 build1 (code
, type
, node
)
2407 enum tree_code code
;
2411 register int length
;
2412 #ifdef GATHER_STATISTICS
2413 register tree_node_kind kind
;
2417 #ifdef GATHER_STATISTICS
2418 if (TREE_CODE_CLASS (code
) == 'r')
2424 #ifdef ENABLE_CHECKING
2425 if (TREE_CODE_CLASS (code
) == '2'
2426 || TREE_CODE_CLASS (code
) == '<'
2427 || TREE_CODE_LENGTH (code
) != 1)
2429 #endif /* ENABLE_CHECKING */
2431 length
= sizeof (struct tree_exp
);
2433 t
= ggc_alloc_tree (length
);
2435 memset ((PTR
) t
, 0, sizeof (struct tree_common
));
2437 #ifdef GATHER_STATISTICS
2438 tree_node_counts
[(int) kind
]++;
2439 tree_node_sizes
[(int) kind
] += length
;
2442 TREE_SET_CODE (t
, code
);
2444 TREE_TYPE (t
) = type
;
2445 TREE_COMPLEXITY (t
) = 0;
2446 TREE_OPERAND (t
, 0) = node
;
2447 if (node
&& first_rtl_op (code
) != 0)
2449 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (node
);
2450 TREE_READONLY (t
) = TREE_READONLY (node
);
2459 case PREDECREMENT_EXPR
:
2460 case PREINCREMENT_EXPR
:
2461 case POSTDECREMENT_EXPR
:
2462 case POSTINCREMENT_EXPR
:
2463 /* All of these have side-effects, no matter what their
2465 TREE_SIDE_EFFECTS (t
) = 1;
2466 TREE_READONLY (t
) = 0;
2476 /* Similar except don't specify the TREE_TYPE
2477 and leave the TREE_SIDE_EFFECTS as 0.
2478 It is permissible for arguments to be null,
2479 or even garbage if their values do not matter. */
2482 build_nt
VPARAMS ((enum tree_code code
, ...))
2484 #ifndef ANSI_PROTOTYPES
2485 enum tree_code code
;
2489 register int length
;
2494 #ifndef ANSI_PROTOTYPES
2495 code
= va_arg (p
, enum tree_code
);
2498 t
= make_node (code
);
2499 length
= TREE_CODE_LENGTH (code
);
2501 for (i
= 0; i
< length
; i
++)
2502 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
2508 /* Similar to `build_nt', except we build
2509 on the temp_decl_obstack, regardless. */
2512 build_parse_node
VPARAMS ((enum tree_code code
, ...))
2514 #ifndef ANSI_PROTOTYPES
2515 enum tree_code code
;
2519 register int length
;
2524 #ifndef ANSI_PROTOTYPES
2525 code
= va_arg (p
, enum tree_code
);
2528 t
= make_node (code
);
2529 length
= TREE_CODE_LENGTH (code
);
2531 for (i
= 0; i
< length
; i
++)
2532 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
2539 /* Commented out because this wants to be done very
2540 differently. See cp-lex.c. */
2542 build_op_identifier (op1
, op2
)
2545 register tree t
= make_node (OP_IDENTIFIER
);
2546 TREE_PURPOSE (t
) = op1
;
2547 TREE_VALUE (t
) = op2
;
2552 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
2553 We do NOT enter this node in any sort of symbol table.
2555 layout_decl is used to set up the decl's storage layout.
2556 Other slots are initialized to 0 or null pointers. */
2559 build_decl (code
, name
, type
)
2560 enum tree_code code
;
2565 t
= make_node (code
);
2567 /* if (type == error_mark_node)
2568 type = integer_type_node; */
2569 /* That is not done, deliberately, so that having error_mark_node
2570 as the type can suppress useless errors in the use of this variable. */
2572 DECL_NAME (t
) = name
;
2573 DECL_ASSEMBLER_NAME (t
) = name
;
2574 TREE_TYPE (t
) = type
;
2576 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
2578 else if (code
== FUNCTION_DECL
)
2579 DECL_MODE (t
) = FUNCTION_MODE
;
2584 /* BLOCK nodes are used to represent the structure of binding contours
2585 and declarations, once those contours have been exited and their contents
2586 compiled. This information is used for outputting debugging info. */
2589 build_block (vars
, tags
, subblocks
, supercontext
, chain
)
2590 tree vars
, tags ATTRIBUTE_UNUSED
, subblocks
, supercontext
, chain
;
2592 register tree block
= make_node (BLOCK
);
2594 BLOCK_VARS (block
) = vars
;
2595 BLOCK_SUBBLOCKS (block
) = subblocks
;
2596 BLOCK_SUPERCONTEXT (block
) = supercontext
;
2597 BLOCK_CHAIN (block
) = chain
;
2601 /* EXPR_WITH_FILE_LOCATION are used to keep track of the exact
2602 location where an expression or an identifier were encountered. It
2603 is necessary for languages where the frontend parser will handle
2604 recursively more than one file (Java is one of them). */
2607 build_expr_wfl (node
, file
, line
, col
)
2612 static const char *last_file
= 0;
2613 static tree last_filenode
= NULL_TREE
;
2614 register tree wfl
= make_node (EXPR_WITH_FILE_LOCATION
);
2616 EXPR_WFL_NODE (wfl
) = node
;
2617 EXPR_WFL_SET_LINECOL (wfl
, line
, col
);
2618 if (file
!= last_file
)
2621 last_filenode
= file
? get_identifier (file
) : NULL_TREE
;
2624 EXPR_WFL_FILENAME_NODE (wfl
) = last_filenode
;
2627 TREE_SIDE_EFFECTS (wfl
) = TREE_SIDE_EFFECTS (node
);
2628 TREE_TYPE (wfl
) = TREE_TYPE (node
);
2634 /* Return a declaration like DDECL except that its DECL_MACHINE_ATTRIBUTE
2638 build_decl_attribute_variant (ddecl
, attribute
)
2639 tree ddecl
, attribute
;
2641 DECL_MACHINE_ATTRIBUTES (ddecl
) = attribute
;
2645 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
2648 Record such modified types already made so we don't make duplicates. */
2651 build_type_attribute_variant (ttype
, attribute
)
2652 tree ttype
, attribute
;
2654 if ( ! attribute_list_equal (TYPE_ATTRIBUTES (ttype
), attribute
))
2656 unsigned int hashcode
;
2659 ntype
= copy_node (ttype
);
2661 TYPE_POINTER_TO (ntype
) = 0;
2662 TYPE_REFERENCE_TO (ntype
) = 0;
2663 TYPE_ATTRIBUTES (ntype
) = attribute
;
2665 /* Create a new main variant of TYPE. */
2666 TYPE_MAIN_VARIANT (ntype
) = ntype
;
2667 TYPE_NEXT_VARIANT (ntype
) = 0;
2668 set_type_quals (ntype
, TYPE_UNQUALIFIED
);
2670 hashcode
= (TYPE_HASH (TREE_CODE (ntype
))
2671 + TYPE_HASH (TREE_TYPE (ntype
))
2672 + attribute_hash_list (attribute
));
2674 switch (TREE_CODE (ntype
))
2677 hashcode
+= TYPE_HASH (TYPE_ARG_TYPES (ntype
));
2680 hashcode
+= TYPE_HASH (TYPE_DOMAIN (ntype
));
2683 hashcode
+= TYPE_HASH (TYPE_MAX_VALUE (ntype
));
2686 hashcode
+= TYPE_HASH (TYPE_PRECISION (ntype
));
2692 ntype
= type_hash_canon (hashcode
, ntype
);
2693 ttype
= build_qualified_type (ntype
, TYPE_QUALS (ttype
));
2699 /* Return a 1 if ATTR_NAME and ATTR_ARGS is valid for either declaration DECL
2700 or type TYPE and 0 otherwise. Validity is determined the configuration
2701 macros VALID_MACHINE_DECL_ATTRIBUTE and VALID_MACHINE_TYPE_ATTRIBUTE. */
2704 valid_machine_attribute (attr_name
, attr_args
, decl
, type
)
2706 tree attr_args ATTRIBUTE_UNUSED
;
2707 tree decl ATTRIBUTE_UNUSED
;
2708 tree type ATTRIBUTE_UNUSED
;
2711 #ifdef VALID_MACHINE_DECL_ATTRIBUTE
2712 tree decl_attr_list
= decl
!= 0 ? DECL_MACHINE_ATTRIBUTES (decl
) : 0;
2714 #ifdef VALID_MACHINE_TYPE_ATTRIBUTE
2715 tree type_attr_list
= TYPE_ATTRIBUTES (type
);
2718 if (TREE_CODE (attr_name
) != IDENTIFIER_NODE
)
2721 #ifdef VALID_MACHINE_DECL_ATTRIBUTE
2723 && VALID_MACHINE_DECL_ATTRIBUTE (decl
, decl_attr_list
, attr_name
,
2726 tree attr
= lookup_attribute (IDENTIFIER_POINTER (attr_name
),
2729 if (attr
!= NULL_TREE
)
2731 /* Override existing arguments. Declarations are unique so we can
2732 modify this in place. */
2733 TREE_VALUE (attr
) = attr_args
;
2737 decl_attr_list
= tree_cons (attr_name
, attr_args
, decl_attr_list
);
2738 decl
= build_decl_attribute_variant (decl
, decl_attr_list
);
2745 #ifdef VALID_MACHINE_TYPE_ATTRIBUTE
2747 /* Don't apply the attribute to both the decl and the type. */
2749 else if (VALID_MACHINE_TYPE_ATTRIBUTE (type
, type_attr_list
, attr_name
,
2752 tree attr
= lookup_attribute (IDENTIFIER_POINTER (attr_name
),
2755 if (attr
!= NULL_TREE
)
2757 /* Override existing arguments.
2758 ??? This currently works since attribute arguments are not
2759 included in `attribute_hash_list'. Something more complicated
2760 may be needed in the future. */
2761 TREE_VALUE (attr
) = attr_args
;
2765 /* If this is part of a declaration, create a type variant,
2766 otherwise, this is part of a type definition, so add it
2767 to the base type. */
2768 type_attr_list
= tree_cons (attr_name
, attr_args
, type_attr_list
);
2770 type
= build_type_attribute_variant (type
, type_attr_list
);
2772 TYPE_ATTRIBUTES (type
) = type_attr_list
;
2776 TREE_TYPE (decl
) = type
;
2781 /* Handle putting a type attribute on pointer-to-function-type by putting
2782 the attribute on the function type. */
2783 else if (POINTER_TYPE_P (type
)
2784 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
2785 && VALID_MACHINE_TYPE_ATTRIBUTE (TREE_TYPE (type
), type_attr_list
,
2786 attr_name
, attr_args
))
2788 tree inner_type
= TREE_TYPE (type
);
2789 tree inner_attr_list
= TYPE_ATTRIBUTES (inner_type
);
2790 tree attr
= lookup_attribute (IDENTIFIER_POINTER (attr_name
),
2793 if (attr
!= NULL_TREE
)
2794 TREE_VALUE (attr
) = attr_args
;
2797 inner_attr_list
= tree_cons (attr_name
, attr_args
, inner_attr_list
);
2798 inner_type
= build_type_attribute_variant (inner_type
,
2803 TREE_TYPE (decl
) = build_pointer_type (inner_type
);
2806 /* Clear TYPE_POINTER_TO for the old inner type, since
2807 `type' won't be pointing to it anymore. */
2808 TYPE_POINTER_TO (TREE_TYPE (type
)) = NULL_TREE
;
2809 TREE_TYPE (type
) = inner_type
;
2819 /* Return non-zero if IDENT is a valid name for attribute ATTR,
2822 We try both `text' and `__text__', ATTR may be either one. */
2823 /* ??? It might be a reasonable simplification to require ATTR to be only
2824 `text'. One might then also require attribute lists to be stored in
2825 their canonicalized form. */
2828 is_attribute_p (attr
, ident
)
2832 int ident_len
, attr_len
;
2835 if (TREE_CODE (ident
) != IDENTIFIER_NODE
)
2838 if (strcmp (attr
, IDENTIFIER_POINTER (ident
)) == 0)
2841 p
= IDENTIFIER_POINTER (ident
);
2842 ident_len
= strlen (p
);
2843 attr_len
= strlen (attr
);
2845 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
2849 || attr
[attr_len
- 2] != '_'
2850 || attr
[attr_len
- 1] != '_')
2852 if (ident_len
== attr_len
- 4
2853 && strncmp (attr
+ 2, p
, attr_len
- 4) == 0)
2858 if (ident_len
== attr_len
+ 4
2859 && p
[0] == '_' && p
[1] == '_'
2860 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
2861 && strncmp (attr
, p
+ 2, attr_len
) == 0)
2868 /* Given an attribute name and a list of attributes, return a pointer to the
2869 attribute's list element if the attribute is part of the list, or NULL_TREE
2873 lookup_attribute (attr_name
, list
)
2874 const char *attr_name
;
2879 for (l
= list
; l
; l
= TREE_CHAIN (l
))
2881 if (TREE_CODE (TREE_PURPOSE (l
)) != IDENTIFIER_NODE
)
2883 if (is_attribute_p (attr_name
, TREE_PURPOSE (l
)))
2890 /* Return an attribute list that is the union of a1 and a2. */
2893 merge_attributes (a1
, a2
)
2894 register tree a1
, a2
;
2898 /* Either one unset? Take the set one. */
2900 if ((attributes
= a1
) == 0)
2903 /* One that completely contains the other? Take it. */
2905 else if (a2
!= 0 && ! attribute_list_contained (a1
, a2
))
2907 if (attribute_list_contained (a2
, a1
))
2911 /* Pick the longest list, and hang on the other list. */
2912 /* ??? For the moment we punt on the issue of attrs with args. */
2914 if (list_length (a1
) < list_length (a2
))
2915 attributes
= a2
, a2
= a1
;
2917 for (; a2
!= 0; a2
= TREE_CHAIN (a2
))
2918 if (lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2
)),
2919 attributes
) == NULL_TREE
)
2921 a1
= copy_node (a2
);
2922 TREE_CHAIN (a1
) = attributes
;
2930 /* Given types T1 and T2, merge their attributes and return
2934 merge_machine_type_attributes (t1
, t2
)
2937 #ifdef MERGE_MACHINE_TYPE_ATTRIBUTES
2938 return MERGE_MACHINE_TYPE_ATTRIBUTES (t1
, t2
);
2940 return merge_attributes (TYPE_ATTRIBUTES (t1
),
2941 TYPE_ATTRIBUTES (t2
));
2945 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
2949 merge_machine_decl_attributes (olddecl
, newdecl
)
2950 tree olddecl
, newdecl
;
2952 #ifdef MERGE_MACHINE_DECL_ATTRIBUTES
2953 return MERGE_MACHINE_DECL_ATTRIBUTES (olddecl
, newdecl
);
2955 return merge_attributes (DECL_MACHINE_ATTRIBUTES (olddecl
),
2956 DECL_MACHINE_ATTRIBUTES (newdecl
));
2960 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
2961 of the various TYPE_QUAL values. */
2964 set_type_quals (type
, type_quals
)
2968 TYPE_READONLY (type
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
2969 TYPE_VOLATILE (type
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
2970 TYPE_RESTRICT (type
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
2973 /* Given a type node TYPE and a TYPE_QUALIFIER_SET, return a type for
2974 the same kind of data as TYPE describes. Variants point to the
2975 "main variant" (which has no qualifiers set) via TYPE_MAIN_VARIANT,
2976 and it points to a chain of other variants so that duplicate
2977 variants are never made. Only main variants should ever appear as
2978 types of expressions. */
2981 build_qualified_type (type
, type_quals
)
2987 /* Search the chain of variants to see if there is already one there just
2988 like the one we need to have. If so, use that existing one. We must
2989 preserve the TYPE_NAME, since there is code that depends on this. */
2991 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
2992 if (TYPE_QUALS (t
) == type_quals
&& TYPE_NAME (t
) == TYPE_NAME (type
))
2995 /* We need a new one. */
2996 t
= build_type_copy (type
);
2997 set_type_quals (t
, type_quals
);
3001 /* Create a new variant of TYPE, equivalent but distinct.
3002 This is so the caller can modify it. */
3005 build_type_copy (type
)
3008 register tree t
, m
= TYPE_MAIN_VARIANT (type
);
3010 t
= copy_node (type
);
3012 TYPE_POINTER_TO (t
) = 0;
3013 TYPE_REFERENCE_TO (t
) = 0;
3015 /* Add this type to the chain of variants of TYPE. */
3016 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
3017 TYPE_NEXT_VARIANT (m
) = t
;
3022 /* Hashing of types so that we don't make duplicates.
3023 The entry point is `type_hash_canon'. */
3025 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
3026 with types in the TREE_VALUE slots), by adding the hash codes
3027 of the individual types. */
3030 type_hash_list (list
)
3033 unsigned int hashcode
;
3036 for (hashcode
= 0, tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
3037 hashcode
+= TYPE_HASH (TREE_VALUE (tail
));
3042 /* These are the Hashtable callback functions. */
3044 /* Returns true if the types are equal. */
3047 type_hash_eq (va
, vb
)
3051 const struct type_hash
*a
= va
, *b
= vb
;
3052 if (a
->hash
== b
->hash
3053 && TREE_CODE (a
->type
) == TREE_CODE (b
->type
)
3054 && TREE_TYPE (a
->type
) == TREE_TYPE (b
->type
)
3055 && attribute_list_equal (TYPE_ATTRIBUTES (a
->type
),
3056 TYPE_ATTRIBUTES (b
->type
))
3057 && TYPE_ALIGN (a
->type
) == TYPE_ALIGN (b
->type
)
3058 && (TYPE_MAX_VALUE (a
->type
) == TYPE_MAX_VALUE (b
->type
)
3059 || tree_int_cst_equal (TYPE_MAX_VALUE (a
->type
),
3060 TYPE_MAX_VALUE (b
->type
)))
3061 && (TYPE_MIN_VALUE (a
->type
) == TYPE_MIN_VALUE (b
->type
)
3062 || tree_int_cst_equal (TYPE_MIN_VALUE (a
->type
),
3063 TYPE_MIN_VALUE (b
->type
)))
3064 /* Note that TYPE_DOMAIN is TYPE_ARG_TYPES for FUNCTION_TYPE. */
3065 && (TYPE_DOMAIN (a
->type
) == TYPE_DOMAIN (b
->type
)
3066 || (TYPE_DOMAIN (a
->type
)
3067 && TREE_CODE (TYPE_DOMAIN (a
->type
)) == TREE_LIST
3068 && TYPE_DOMAIN (b
->type
)
3069 && TREE_CODE (TYPE_DOMAIN (b
->type
)) == TREE_LIST
3070 && type_list_equal (TYPE_DOMAIN (a
->type
),
3071 TYPE_DOMAIN (b
->type
)))))
3076 /* Return the cached hash value. */
3079 type_hash_hash (item
)
3082 return ((const struct type_hash
*) item
)->hash
;
3085 /* Look in the type hash table for a type isomorphic to TYPE.
3086 If one is found, return it. Otherwise return 0. */
3089 type_hash_lookup (hashcode
, type
)
3090 unsigned int hashcode
;
3093 struct type_hash
*h
, in
;
3095 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
3096 must call that routine before comparing TYPE_ALIGNs. */
3102 h
= htab_find_with_hash (type_hash_table
, &in
, hashcode
);
3108 /* Add an entry to the type-hash-table
3109 for a type TYPE whose hash code is HASHCODE. */
3112 type_hash_add (hashcode
, type
)
3113 unsigned int hashcode
;
3116 struct type_hash
*h
;
3119 h
= (struct type_hash
*) permalloc (sizeof (struct type_hash
));
3122 loc
= htab_find_slot_with_hash (type_hash_table
, h
, hashcode
, INSERT
);
3123 *(struct type_hash
**) loc
= h
;
3126 /* Given TYPE, and HASHCODE its hash code, return the canonical
3127 object for an identical type if one already exists.
3128 Otherwise, return TYPE, and record it as the canonical object
3129 if it is a permanent object.
3131 To use this function, first create a type of the sort you want.
3132 Then compute its hash code from the fields of the type that
3133 make it different from other similar types.
3134 Then call this function and use the value.
3135 This function frees the type you pass in if it is a duplicate. */
3137 /* Set to 1 to debug without canonicalization. Never set by program. */
3138 int debug_no_type_hash
= 0;
3141 type_hash_canon (hashcode
, type
)
3142 unsigned int hashcode
;
3147 if (debug_no_type_hash
)
3150 t1
= type_hash_lookup (hashcode
, type
);
3153 #ifdef GATHER_STATISTICS
3154 tree_node_counts
[(int) t_kind
]--;
3155 tree_node_sizes
[(int) t_kind
] -= sizeof (struct tree_type
);
3160 /* If this is a permanent type, record it for later reuse. */
3161 type_hash_add (hashcode
, type
);
3166 /* Callback function for htab_traverse. */
3169 mark_hash_entry (entry
, param
)
3171 void *param ATTRIBUTE_UNUSED
;
3173 struct type_hash
*p
= *(struct type_hash
**) entry
;
3175 ggc_mark_tree (p
->type
);
3177 /* Continue scan. */
3181 /* Mark ARG (which is really a htab_t *) for GC. */
3184 mark_type_hash (arg
)
3187 htab_t t
= *(htab_t
*) arg
;
3189 htab_traverse (t
, mark_hash_entry
, 0);
3192 /* Mark the hashtable slot pointed to by ENTRY (which is really a
3193 `tree**') for GC. */
3196 mark_tree_hashtable_entry (entry
, data
)
3198 void *data ATTRIBUTE_UNUSED
;
3200 ggc_mark_tree ((tree
) *entry
);
3204 /* Mark ARG (which is really a htab_t whose slots are trees) for
3208 mark_tree_hashtable (arg
)
3211 htab_t t
= *(htab_t
*) arg
;
3212 htab_traverse (t
, mark_tree_hashtable_entry
, 0);
3216 print_type_hash_statistics ()
3218 fprintf (stderr
, "Type hash: size %ld, %ld elements, %f collisions\n",
3219 (long) htab_size (type_hash_table
),
3220 (long) htab_elements (type_hash_table
),
3221 htab_collisions (type_hash_table
));
3224 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
3225 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
3226 by adding the hash codes of the individual attributes. */
3229 attribute_hash_list (list
)
3232 unsigned int hashcode
;
3235 for (hashcode
= 0, tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
3236 /* ??? Do we want to add in TREE_VALUE too? */
3237 hashcode
+= TYPE_HASH (TREE_PURPOSE (tail
));
3241 /* Given two lists of attributes, return true if list l2 is
3242 equivalent to l1. */
3245 attribute_list_equal (l1
, l2
)
3248 return attribute_list_contained (l1
, l2
)
3249 && attribute_list_contained (l2
, l1
);
3252 /* Given two lists of attributes, return true if list L2 is
3253 completely contained within L1. */
3254 /* ??? This would be faster if attribute names were stored in a canonicalized
3255 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
3256 must be used to show these elements are equivalent (which they are). */
3257 /* ??? It's not clear that attributes with arguments will always be handled
3261 attribute_list_contained (l1
, l2
)
3264 register tree t1
, t2
;
3266 /* First check the obvious, maybe the lists are identical. */
3270 /* Maybe the lists are similar. */
3271 for (t1
= l1
, t2
= l2
;
3273 && TREE_PURPOSE (t1
) == TREE_PURPOSE (t2
)
3274 && TREE_VALUE (t1
) == TREE_VALUE (t2
);
3275 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
));
3277 /* Maybe the lists are equal. */
3278 if (t1
== 0 && t2
== 0)
3281 for (; t2
!= 0; t2
= TREE_CHAIN (t2
))
3284 = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2
)), l1
);
3289 if (simple_cst_equal (TREE_VALUE (t2
), TREE_VALUE (attr
)) != 1)
3296 /* Given two lists of types
3297 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
3298 return 1 if the lists contain the same types in the same order.
3299 Also, the TREE_PURPOSEs must match. */
3302 type_list_equal (l1
, l2
)
3305 register tree t1
, t2
;
3307 for (t1
= l1
, t2
= l2
; t1
&& t2
; t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
3308 if (TREE_VALUE (t1
) != TREE_VALUE (t2
)
3309 || (TREE_PURPOSE (t1
) != TREE_PURPOSE (t2
)
3310 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
))
3311 && (TREE_TYPE (TREE_PURPOSE (t1
))
3312 == TREE_TYPE (TREE_PURPOSE (t2
))))))
3318 /* Nonzero if integer constants T1 and T2
3319 represent the same constant value. */
3322 tree_int_cst_equal (t1
, t2
)
3328 if (t1
== 0 || t2
== 0)
3331 if (TREE_CODE (t1
) == INTEGER_CST
3332 && TREE_CODE (t2
) == INTEGER_CST
3333 && TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
3334 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
))
3340 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
3341 The precise way of comparison depends on their data type. */
3344 tree_int_cst_lt (t1
, t2
)
3350 if (! TREE_UNSIGNED (TREE_TYPE (t1
)))
3351 return INT_CST_LT (t1
, t2
);
3353 return INT_CST_LT_UNSIGNED (t1
, t2
);
3356 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
3359 tree_int_cst_compare (t1
, t2
)
3363 if (tree_int_cst_lt (t1
, t2
))
3365 else if (tree_int_cst_lt (t2
, t1
))
3371 /* Return 1 if T is an INTEGER_CST that can be represented in a single
3372 HOST_WIDE_INT value. If POS is nonzero, the result must be positive. */
3375 host_integerp (t
, pos
)
3379 return (TREE_CODE (t
) == INTEGER_CST
3380 && ! TREE_OVERFLOW (t
)
3381 && ((TREE_INT_CST_HIGH (t
) == 0
3382 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) >= 0)
3383 || (! pos
&& TREE_INT_CST_HIGH (t
) == -1
3384 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0)
3385 || (! pos
&& TREE_INT_CST_HIGH (t
) == 0
3386 && TREE_UNSIGNED (TREE_TYPE (t
)))));
3389 /* Return the HOST_WIDE_INT least significant bits of T if it is an
3390 INTEGER_CST and there is no overflow. POS is nonzero if the result must
3391 be positive. Abort if we cannot satisfy the above conditions. */
3394 tree_low_cst (t
, pos
)
3398 if (host_integerp (t
, pos
))
3399 return TREE_INT_CST_LOW (t
);
3404 /* Return the most significant bit of the integer constant T. */
3407 tree_int_cst_msb (t
)
3412 unsigned HOST_WIDE_INT l
;
3414 /* Note that using TYPE_PRECISION here is wrong. We care about the
3415 actual bits, not the (arbitrary) range of the type. */
3416 prec
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t
))) - 1;
3417 rshift_double (TREE_INT_CST_LOW (t
), TREE_INT_CST_HIGH (t
), prec
,
3418 2 * HOST_BITS_PER_WIDE_INT
, &l
, &h
, 0);
3419 return (l
& 1) == 1;
3422 /* Return an indication of the sign of the integer constant T.
3423 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
3424 Note that -1 will never be returned it T's type is unsigned. */
3427 tree_int_cst_sgn (t
)
3430 if (TREE_INT_CST_LOW (t
) == 0 && TREE_INT_CST_HIGH (t
) == 0)
3432 else if (TREE_UNSIGNED (TREE_TYPE (t
)))
3434 else if (TREE_INT_CST_HIGH (t
) < 0)
3440 /* Compare two constructor-element-type constants. Return 1 if the lists
3441 are known to be equal; otherwise return 0. */
3444 simple_cst_list_equal (l1
, l2
)
3447 while (l1
!= NULL_TREE
&& l2
!= NULL_TREE
)
3449 if (simple_cst_equal (TREE_VALUE (l1
), TREE_VALUE (l2
)) != 1)
3452 l1
= TREE_CHAIN (l1
);
3453 l2
= TREE_CHAIN (l2
);
3459 /* Return truthvalue of whether T1 is the same tree structure as T2.
3460 Return 1 if they are the same.
3461 Return 0 if they are understandably different.
3462 Return -1 if either contains tree structure not understood by
3466 simple_cst_equal (t1
, t2
)
3469 register enum tree_code code1
, code2
;
3475 if (t1
== 0 || t2
== 0)
3478 code1
= TREE_CODE (t1
);
3479 code2
= TREE_CODE (t2
);
3481 if (code1
== NOP_EXPR
|| code1
== CONVERT_EXPR
|| code1
== NON_LVALUE_EXPR
)
3483 if (code2
== NOP_EXPR
|| code2
== CONVERT_EXPR
3484 || code2
== NON_LVALUE_EXPR
)
3485 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3487 return simple_cst_equal (TREE_OPERAND (t1
, 0), t2
);
3490 else if (code2
== NOP_EXPR
|| code2
== CONVERT_EXPR
3491 || code2
== NON_LVALUE_EXPR
)
3492 return simple_cst_equal (t1
, TREE_OPERAND (t2
, 0));
3500 return (TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
3501 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
));
3504 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
3507 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
3508 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
3509 TREE_STRING_LENGTH (t1
)));
3512 if (CONSTRUCTOR_ELTS (t1
) == CONSTRUCTOR_ELTS (t2
))
3518 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3521 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3525 simple_cst_list_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
3528 /* Special case: if either target is an unallocated VAR_DECL,
3529 it means that it's going to be unified with whatever the
3530 TARGET_EXPR is really supposed to initialize, so treat it
3531 as being equivalent to anything. */
3532 if ((TREE_CODE (TREE_OPERAND (t1
, 0)) == VAR_DECL
3533 && DECL_NAME (TREE_OPERAND (t1
, 0)) == NULL_TREE
3534 && DECL_RTL (TREE_OPERAND (t1
, 0)) == 0)
3535 || (TREE_CODE (TREE_OPERAND (t2
, 0)) == VAR_DECL
3536 && DECL_NAME (TREE_OPERAND (t2
, 0)) == NULL_TREE
3537 && DECL_RTL (TREE_OPERAND (t2
, 0)) == 0))
3540 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3545 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
3547 case WITH_CLEANUP_EXPR
:
3548 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3552 return simple_cst_equal (TREE_OPERAND (t1
, 2), TREE_OPERAND (t1
, 2));
3555 if (TREE_OPERAND (t1
, 1) == TREE_OPERAND (t2
, 1))
3556 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3570 /* This general rule works for most tree codes. All exceptions should be
3571 handled above. If this is a language-specific tree code, we can't
3572 trust what might be in the operand, so say we don't know
3574 if ((int) code1
>= (int) LAST_AND_UNUSED_TREE_CODE
)
3577 switch (TREE_CODE_CLASS (code1
))
3586 for (i
= 0; i
< TREE_CODE_LENGTH (code1
); i
++)
3588 cmp
= simple_cst_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
));
3600 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
3601 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
3602 than U, respectively. */
3605 compare_tree_int (t
, u
)
3609 if (tree_int_cst_sgn (t
) < 0)
3611 else if (TREE_INT_CST_HIGH (t
) != 0)
3613 else if (TREE_INT_CST_LOW (t
) == u
)
3615 else if (TREE_INT_CST_LOW (t
) < u
)
3621 /* Constructors for pointer, array and function types.
3622 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
3623 constructed by language-dependent code, not here.) */
3625 /* Construct, lay out and return the type of pointers to TO_TYPE.
3626 If such a type has already been constructed, reuse it. */
3629 build_pointer_type (to_type
)
3632 register tree t
= TYPE_POINTER_TO (to_type
);
3634 /* First, if we already have a type for pointers to TO_TYPE, use it. */
3639 /* We need a new one. */
3640 t
= make_node (POINTER_TYPE
);
3642 TREE_TYPE (t
) = to_type
;
3644 /* Record this type as the pointer to TO_TYPE. */
3645 TYPE_POINTER_TO (to_type
) = t
;
3647 /* Lay out the type. This function has many callers that are concerned
3648 with expression-construction, and this simplifies them all.
3649 Also, it guarantees the TYPE_SIZE is in the same obstack as the type. */
3655 /* Build the node for the type of references-to-TO_TYPE. */
3658 build_reference_type (to_type
)
3661 register tree t
= TYPE_REFERENCE_TO (to_type
);
3663 /* First, if we already have a type for pointers to TO_TYPE, use it. */
3668 /* We need a new one. */
3669 t
= make_node (REFERENCE_TYPE
);
3671 TREE_TYPE (t
) = to_type
;
3673 /* Record this type as the pointer to TO_TYPE. */
3674 TYPE_REFERENCE_TO (to_type
) = t
;
3681 /* Build a type that is compatible with t but has no cv quals anywhere
3684 const char *const *const * -> char ***. */
3687 build_type_no_quals (t
)
3690 switch (TREE_CODE (t
))
3693 return build_pointer_type (build_type_no_quals (TREE_TYPE (t
)));
3694 case REFERENCE_TYPE
:
3695 return build_reference_type (build_type_no_quals (TREE_TYPE (t
)));
3697 return TYPE_MAIN_VARIANT (t
);
3701 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
3702 MAXVAL should be the maximum value in the domain
3703 (one less than the length of the array).
3705 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
3706 We don't enforce this limit, that is up to caller (e.g. language front end).
3707 The limit exists because the result is a signed type and we don't handle
3708 sizes that use more than one HOST_WIDE_INT. */
3711 build_index_type (maxval
)
3714 register tree itype
= make_node (INTEGER_TYPE
);
3716 TREE_TYPE (itype
) = sizetype
;
3717 TYPE_PRECISION (itype
) = TYPE_PRECISION (sizetype
);
3718 TYPE_MIN_VALUE (itype
) = size_zero_node
;
3719 TYPE_MAX_VALUE (itype
) = convert (sizetype
, maxval
);
3720 TYPE_MODE (itype
) = TYPE_MODE (sizetype
);
3721 TYPE_SIZE (itype
) = TYPE_SIZE (sizetype
);
3722 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (sizetype
);
3723 TYPE_ALIGN (itype
) = TYPE_ALIGN (sizetype
);
3724 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (sizetype
);
3726 if (host_integerp (maxval
, 1))
3727 return type_hash_canon (tree_low_cst (maxval
, 1), itype
);
3732 /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
3733 ENUMERAL_TYPE, BOOLEAN_TYPE, or CHAR_TYPE), with
3734 low bound LOWVAL and high bound HIGHVAL.
3735 if TYPE==NULL_TREE, sizetype is used. */
3738 build_range_type (type
, lowval
, highval
)
3739 tree type
, lowval
, highval
;
3741 register tree itype
= make_node (INTEGER_TYPE
);
3743 TREE_TYPE (itype
) = type
;
3744 if (type
== NULL_TREE
)
3747 TYPE_MIN_VALUE (itype
) = convert (type
, lowval
);
3748 TYPE_MAX_VALUE (itype
) = highval
? convert (type
, highval
) : NULL
;
3750 TYPE_PRECISION (itype
) = TYPE_PRECISION (type
);
3751 TYPE_MODE (itype
) = TYPE_MODE (type
);
3752 TYPE_SIZE (itype
) = TYPE_SIZE (type
);
3753 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (type
);
3754 TYPE_ALIGN (itype
) = TYPE_ALIGN (type
);
3755 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (type
);
3757 if (host_integerp (lowval
, 0) && highval
!= 0 && host_integerp (highval
, 0))
3758 return type_hash_canon (tree_low_cst (highval
, 0)
3759 - tree_low_cst (lowval
, 0),
3765 /* Just like build_index_type, but takes lowval and highval instead
3766 of just highval (maxval). */
3769 build_index_2_type (lowval
,highval
)
3770 tree lowval
, highval
;
3772 return build_range_type (sizetype
, lowval
, highval
);
3775 /* Return nonzero iff ITYPE1 and ITYPE2 are equal (in the LISP sense).
3776 Needed because when index types are not hashed, equal index types
3777 built at different times appear distinct, even though structurally,
3781 index_type_equal (itype1
, itype2
)
3782 tree itype1
, itype2
;
3784 if (TREE_CODE (itype1
) != TREE_CODE (itype2
))
3787 if (TREE_CODE (itype1
) == INTEGER_TYPE
)
3789 if (TYPE_PRECISION (itype1
) != TYPE_PRECISION (itype2
)
3790 || TYPE_MODE (itype1
) != TYPE_MODE (itype2
)
3791 || simple_cst_equal (TYPE_SIZE (itype1
), TYPE_SIZE (itype2
)) != 1
3792 || TYPE_ALIGN (itype1
) != TYPE_ALIGN (itype2
))
3795 if (1 == simple_cst_equal (TYPE_MIN_VALUE (itype1
),
3796 TYPE_MIN_VALUE (itype2
))
3797 && 1 == simple_cst_equal (TYPE_MAX_VALUE (itype1
),
3798 TYPE_MAX_VALUE (itype2
)))
3805 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
3806 and number of elements specified by the range of values of INDEX_TYPE.
3807 If such a type has already been constructed, reuse it. */
3810 build_array_type (elt_type
, index_type
)
3811 tree elt_type
, index_type
;
3814 unsigned int hashcode
;
3816 if (TREE_CODE (elt_type
) == FUNCTION_TYPE
)
3818 error ("arrays of functions are not meaningful");
3819 elt_type
= integer_type_node
;
3822 /* Make sure TYPE_POINTER_TO (elt_type) is filled in. */
3823 build_pointer_type (elt_type
);
3825 /* Allocate the array after the pointer type,
3826 in case we free it in type_hash_canon. */
3827 t
= make_node (ARRAY_TYPE
);
3828 TREE_TYPE (t
) = elt_type
;
3829 TYPE_DOMAIN (t
) = index_type
;
3831 if (index_type
== 0)
3836 hashcode
= TYPE_HASH (elt_type
) + TYPE_HASH (index_type
);
3837 t
= type_hash_canon (hashcode
, t
);
3839 if (!COMPLETE_TYPE_P (t
))
3844 /* Return the TYPE of the elements comprising
3845 the innermost dimension of ARRAY. */
3848 get_inner_array_type (array
)
3851 tree type
= TREE_TYPE (array
);
3853 while (TREE_CODE (type
) == ARRAY_TYPE
)
3854 type
= TREE_TYPE (type
);
3859 /* Construct, lay out and return
3860 the type of functions returning type VALUE_TYPE
3861 given arguments of types ARG_TYPES.
3862 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
3863 are data type nodes for the arguments of the function.
3864 If such a type has already been constructed, reuse it. */
3867 build_function_type (value_type
, arg_types
)
3868 tree value_type
, arg_types
;
3871 unsigned int hashcode
;
3873 if (TREE_CODE (value_type
) == FUNCTION_TYPE
)
3875 error ("function return type cannot be function");
3876 value_type
= integer_type_node
;
3879 /* Make a node of the sort we want. */
3880 t
= make_node (FUNCTION_TYPE
);
3881 TREE_TYPE (t
) = value_type
;
3882 TYPE_ARG_TYPES (t
) = arg_types
;
3884 /* If we already have such a type, use the old one and free this one. */
3885 hashcode
= TYPE_HASH (value_type
) + type_hash_list (arg_types
);
3886 t
= type_hash_canon (hashcode
, t
);
3888 if (!COMPLETE_TYPE_P (t
))
3893 /* Construct, lay out and return the type of methods belonging to class
3894 BASETYPE and whose arguments and values are described by TYPE.
3895 If that type exists already, reuse it.
3896 TYPE must be a FUNCTION_TYPE node. */
3899 build_method_type (basetype
, type
)
3900 tree basetype
, type
;
3903 unsigned int hashcode
;
3905 /* Make a node of the sort we want. */
3906 t
= make_node (METHOD_TYPE
);
3908 if (TREE_CODE (type
) != FUNCTION_TYPE
)
3911 TYPE_METHOD_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
3912 TREE_TYPE (t
) = TREE_TYPE (type
);
3914 /* The actual arglist for this function includes a "hidden" argument
3915 which is "this". Put it into the list of argument types. */
3918 = tree_cons (NULL_TREE
,
3919 build_pointer_type (basetype
), TYPE_ARG_TYPES (type
));
3921 /* If we already have such a type, use the old one and free this one. */
3922 hashcode
= TYPE_HASH (basetype
) + TYPE_HASH (type
);
3923 t
= type_hash_canon (hashcode
, t
);
3925 if (!COMPLETE_TYPE_P (t
))
3931 /* Construct, lay out and return the type of offsets to a value
3932 of type TYPE, within an object of type BASETYPE.
3933 If a suitable offset type exists already, reuse it. */
3936 build_offset_type (basetype
, type
)
3937 tree basetype
, type
;
3940 unsigned int hashcode
;
3942 /* Make a node of the sort we want. */
3943 t
= make_node (OFFSET_TYPE
);
3945 TYPE_OFFSET_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
3946 TREE_TYPE (t
) = type
;
3948 /* If we already have such a type, use the old one and free this one. */
3949 hashcode
= TYPE_HASH (basetype
) + TYPE_HASH (type
);
3950 t
= type_hash_canon (hashcode
, t
);
3952 if (!COMPLETE_TYPE_P (t
))
3958 /* Create a complex type whose components are COMPONENT_TYPE. */
3961 build_complex_type (component_type
)
3962 tree component_type
;
3965 unsigned int hashcode
;
3967 /* Make a node of the sort we want. */
3968 t
= make_node (COMPLEX_TYPE
);
3970 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (component_type
);
3971 set_type_quals (t
, TYPE_QUALS (component_type
));
3973 /* If we already have such a type, use the old one and free this one. */
3974 hashcode
= TYPE_HASH (component_type
);
3975 t
= type_hash_canon (hashcode
, t
);
3977 if (!COMPLETE_TYPE_P (t
))
3980 /* If we are writing Dwarf2 output we need to create a name,
3981 since complex is a fundamental type. */
3982 if (write_symbols
== DWARF2_DEBUG
&& ! TYPE_NAME (t
))
3985 if (component_type
== char_type_node
)
3986 name
= "complex char";
3987 else if (component_type
== signed_char_type_node
)
3988 name
= "complex signed char";
3989 else if (component_type
== unsigned_char_type_node
)
3990 name
= "complex unsigned char";
3991 else if (component_type
== short_integer_type_node
)
3992 name
= "complex short int";
3993 else if (component_type
== short_unsigned_type_node
)
3994 name
= "complex short unsigned int";
3995 else if (component_type
== integer_type_node
)
3996 name
= "complex int";
3997 else if (component_type
== unsigned_type_node
)
3998 name
= "complex unsigned int";
3999 else if (component_type
== long_integer_type_node
)
4000 name
= "complex long int";
4001 else if (component_type
== long_unsigned_type_node
)
4002 name
= "complex long unsigned int";
4003 else if (component_type
== long_long_integer_type_node
)
4004 name
= "complex long long int";
4005 else if (component_type
== long_long_unsigned_type_node
)
4006 name
= "complex long long unsigned int";
4011 TYPE_NAME (t
) = get_identifier (name
);
4017 /* Return OP, stripped of any conversions to wider types as much as is safe.
4018 Converting the value back to OP's type makes a value equivalent to OP.
4020 If FOR_TYPE is nonzero, we return a value which, if converted to
4021 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
4023 If FOR_TYPE is nonzero, unaligned bit-field references may be changed to the
4024 narrowest type that can hold the value, even if they don't exactly fit.
4025 Otherwise, bit-field references are changed to a narrower type
4026 only if they can be fetched directly from memory in that type.
4028 OP must have integer, real or enumeral type. Pointers are not allowed!
4030 There are some cases where the obvious value we could return
4031 would regenerate to OP if converted to OP's type,
4032 but would not extend like OP to wider types.
4033 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
4034 For example, if OP is (unsigned short)(signed char)-1,
4035 we avoid returning (signed char)-1 if FOR_TYPE is int,
4036 even though extending that to an unsigned short would regenerate OP,
4037 since the result of extending (signed char)-1 to (int)
4038 is different from (int) OP. */
4041 get_unwidened (op
, for_type
)
4045 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
4046 register tree type
= TREE_TYPE (op
);
4047 register unsigned final_prec
4048 = TYPE_PRECISION (for_type
!= 0 ? for_type
: type
);
4050 = (for_type
!= 0 && for_type
!= type
4051 && final_prec
> TYPE_PRECISION (type
)
4052 && TREE_UNSIGNED (type
));
4053 register tree win
= op
;
4055 while (TREE_CODE (op
) == NOP_EXPR
)
4057 register int bitschange
4058 = TYPE_PRECISION (TREE_TYPE (op
))
4059 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0)));
4061 /* Truncations are many-one so cannot be removed.
4062 Unless we are later going to truncate down even farther. */
4064 && final_prec
> TYPE_PRECISION (TREE_TYPE (op
)))
4067 /* See what's inside this conversion. If we decide to strip it,
4069 op
= TREE_OPERAND (op
, 0);
4071 /* If we have not stripped any zero-extensions (uns is 0),
4072 we can strip any kind of extension.
4073 If we have previously stripped a zero-extension,
4074 only zero-extensions can safely be stripped.
4075 Any extension can be stripped if the bits it would produce
4076 are all going to be discarded later by truncating to FOR_TYPE. */
4080 if (! uns
|| final_prec
<= TYPE_PRECISION (TREE_TYPE (op
)))
4082 /* TREE_UNSIGNED says whether this is a zero-extension.
4083 Let's avoid computing it if it does not affect WIN
4084 and if UNS will not be needed again. */
4085 if ((uns
|| TREE_CODE (op
) == NOP_EXPR
)
4086 && TREE_UNSIGNED (TREE_TYPE (op
)))
4094 if (TREE_CODE (op
) == COMPONENT_REF
4095 /* Since type_for_size always gives an integer type. */
4096 && TREE_CODE (type
) != REAL_TYPE
4097 /* Don't crash if field not laid out yet. */
4098 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0
4099 && host_integerp (DECL_SIZE (TREE_OPERAND (op
, 1)), 1))
4101 unsigned int innerprec
4102 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op
, 1)), 1);
4104 type
= type_for_size (innerprec
, TREE_UNSIGNED (TREE_OPERAND (op
, 1)));
4106 /* We can get this structure field in the narrowest type it fits in.
4107 If FOR_TYPE is 0, do this only for a field that matches the
4108 narrower type exactly and is aligned for it
4109 The resulting extension to its nominal type (a fullword type)
4110 must fit the same conditions as for other extensions. */
4112 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
4113 && (for_type
|| ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1)))
4114 && (! uns
|| final_prec
<= innerprec
4115 || TREE_UNSIGNED (TREE_OPERAND (op
, 1)))
4118 win
= build (COMPONENT_REF
, type
, TREE_OPERAND (op
, 0),
4119 TREE_OPERAND (op
, 1));
4120 TREE_SIDE_EFFECTS (win
) = TREE_SIDE_EFFECTS (op
);
4121 TREE_THIS_VOLATILE (win
) = TREE_THIS_VOLATILE (op
);
4128 /* Return OP or a simpler expression for a narrower value
4129 which can be sign-extended or zero-extended to give back OP.
4130 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
4131 or 0 if the value should be sign-extended. */
4134 get_narrower (op
, unsignedp_ptr
)
4138 register int uns
= 0;
4140 register tree win
= op
;
4142 while (TREE_CODE (op
) == NOP_EXPR
)
4144 register int bitschange
4145 = (TYPE_PRECISION (TREE_TYPE (op
))
4146 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0))));
4148 /* Truncations are many-one so cannot be removed. */
4152 /* See what's inside this conversion. If we decide to strip it,
4154 op
= TREE_OPERAND (op
, 0);
4158 /* An extension: the outermost one can be stripped,
4159 but remember whether it is zero or sign extension. */
4161 uns
= TREE_UNSIGNED (TREE_TYPE (op
));
4162 /* Otherwise, if a sign extension has been stripped,
4163 only sign extensions can now be stripped;
4164 if a zero extension has been stripped, only zero-extensions. */
4165 else if (uns
!= TREE_UNSIGNED (TREE_TYPE (op
)))
4169 else /* bitschange == 0 */
4171 /* A change in nominal type can always be stripped, but we must
4172 preserve the unsignedness. */
4174 uns
= TREE_UNSIGNED (TREE_TYPE (op
));
4181 if (TREE_CODE (op
) == COMPONENT_REF
4182 /* Since type_for_size always gives an integer type. */
4183 && TREE_CODE (TREE_TYPE (op
)) != REAL_TYPE
4184 /* Ensure field is laid out already. */
4185 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0)
4187 unsigned HOST_WIDE_INT innerprec
4188 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op
, 1)), 1);
4189 tree type
= type_for_size (innerprec
, TREE_UNSIGNED (op
));
4191 /* We can get this structure field in a narrower type that fits it,
4192 but the resulting extension to its nominal type (a fullword type)
4193 must satisfy the same conditions as for other extensions.
4195 Do this only for fields that are aligned (not bit-fields),
4196 because when bit-field insns will be used there is no
4197 advantage in doing this. */
4199 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
4200 && ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1))
4201 && (first
|| uns
== TREE_UNSIGNED (TREE_OPERAND (op
, 1)))
4205 uns
= TREE_UNSIGNED (TREE_OPERAND (op
, 1));
4206 win
= build (COMPONENT_REF
, type
, TREE_OPERAND (op
, 0),
4207 TREE_OPERAND (op
, 1));
4208 TREE_SIDE_EFFECTS (win
) = TREE_SIDE_EFFECTS (op
);
4209 TREE_THIS_VOLATILE (win
) = TREE_THIS_VOLATILE (op
);
4212 *unsignedp_ptr
= uns
;
4216 /* Nonzero if integer constant C has a value that is permissible
4217 for type TYPE (an INTEGER_TYPE). */
4220 int_fits_type_p (c
, type
)
4223 /* If the bounds of the type are integers, we can check ourselves.
4224 Otherwise,. use force_fit_type, which checks against the precision. */
4225 if (TYPE_MAX_VALUE (type
) != NULL_TREE
4226 && TYPE_MIN_VALUE (type
) != NULL_TREE
4227 && TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
4228 && TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
)
4230 if (TREE_UNSIGNED (type
))
4231 return (! INT_CST_LT_UNSIGNED (TYPE_MAX_VALUE (type
), c
)
4232 && ! INT_CST_LT_UNSIGNED (c
, TYPE_MIN_VALUE (type
))
4233 /* Negative ints never fit unsigned types. */
4234 && ! (TREE_INT_CST_HIGH (c
) < 0
4235 && ! TREE_UNSIGNED (TREE_TYPE (c
))));
4237 return (! INT_CST_LT (TYPE_MAX_VALUE (type
), c
)
4238 && ! INT_CST_LT (c
, TYPE_MIN_VALUE (type
))
4239 /* Unsigned ints with top bit set never fit signed types. */
4240 && ! (TREE_INT_CST_HIGH (c
) < 0
4241 && TREE_UNSIGNED (TREE_TYPE (c
))));
4246 TREE_TYPE (c
) = type
;
4247 return !force_fit_type (c
, 0);
4251 /* Given a DECL or TYPE, return the scope in which it was declared, or
4252 NULL_TREE if there is no containing scope. */
4255 get_containing_scope (t
)
4258 return (TYPE_P (t
) ? TYPE_CONTEXT (t
) : DECL_CONTEXT (t
));
4261 /* Return the innermost context enclosing DECL that is
4262 a FUNCTION_DECL, or zero if none. */
4265 decl_function_context (decl
)
4270 if (TREE_CODE (decl
) == ERROR_MARK
)
4273 if (TREE_CODE (decl
) == SAVE_EXPR
)
4274 context
= SAVE_EXPR_CONTEXT (decl
);
4276 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
4277 where we look up the function at runtime. Such functions always take
4278 a first argument of type 'pointer to real context'.
4280 C++ should really be fixed to use DECL_CONTEXT for the real context,
4281 and use something else for the "virtual context". */
4282 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VINDEX (decl
))
4285 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
4287 context
= DECL_CONTEXT (decl
);
4289 while (context
&& TREE_CODE (context
) != FUNCTION_DECL
)
4291 if (TREE_CODE (context
) == BLOCK
)
4292 context
= BLOCK_SUPERCONTEXT (context
);
4294 context
= get_containing_scope (context
);
4300 /* Return the innermost context enclosing DECL that is
4301 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
4302 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
4305 decl_type_context (decl
)
4308 tree context
= DECL_CONTEXT (decl
);
4312 if (TREE_CODE (context
) == RECORD_TYPE
4313 || TREE_CODE (context
) == UNION_TYPE
4314 || TREE_CODE (context
) == QUAL_UNION_TYPE
)
4317 if (TREE_CODE (context
) == TYPE_DECL
4318 || TREE_CODE (context
) == FUNCTION_DECL
)
4319 context
= DECL_CONTEXT (context
);
4321 else if (TREE_CODE (context
) == BLOCK
)
4322 context
= BLOCK_SUPERCONTEXT (context
);
4325 /* Unhandled CONTEXT!? */
4331 /* CALL is a CALL_EXPR. Return the declaration for the function
4332 called, or NULL_TREE if the called function cannot be
4336 get_callee_fndecl (call
)
4341 /* It's invalid to call this function with anything but a
4343 if (TREE_CODE (call
) != CALL_EXPR
)
4346 /* The first operand to the CALL is the address of the function
4348 addr
= TREE_OPERAND (call
, 0);
4352 /* If this is a readonly function pointer, extract its initial value. */
4353 if (DECL_P (addr
) && TREE_CODE (addr
) != FUNCTION_DECL
4354 && TREE_READONLY (addr
) && ! TREE_THIS_VOLATILE (addr
)
4355 && DECL_INITIAL (addr
))
4356 addr
= DECL_INITIAL (addr
);
4358 /* If the address is just `&f' for some function `f', then we know
4359 that `f' is being called. */
4360 if (TREE_CODE (addr
) == ADDR_EXPR
4361 && TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
)
4362 return TREE_OPERAND (addr
, 0);
4364 /* We couldn't figure out what was being called. */
4368 /* Print debugging information about the obstack O, named STR. */
4371 print_obstack_statistics (str
, o
)
4375 struct _obstack_chunk
*chunk
= o
->chunk
;
4379 n_alloc
+= o
->next_free
- chunk
->contents
;
4380 chunk
= chunk
->prev
;
4384 n_alloc
+= chunk
->limit
- &chunk
->contents
[0];
4385 chunk
= chunk
->prev
;
4387 fprintf (stderr
, "obstack %s: %u bytes, %d chunks\n",
4388 str
, n_alloc
, n_chunks
);
4391 /* Print debugging information about tree nodes generated during the compile,
4392 and any language-specific information. */
4395 dump_tree_statistics ()
4397 #ifdef GATHER_STATISTICS
4399 int total_nodes
, total_bytes
;
4402 fprintf (stderr
, "\n??? tree nodes created\n\n");
4403 #ifdef GATHER_STATISTICS
4404 fprintf (stderr
, "Kind Nodes Bytes\n");
4405 fprintf (stderr
, "-------------------------------------\n");
4406 total_nodes
= total_bytes
= 0;
4407 for (i
= 0; i
< (int) all_kinds
; i
++)
4409 fprintf (stderr
, "%-20s %6d %9d\n", tree_node_kind_names
[i
],
4410 tree_node_counts
[i
], tree_node_sizes
[i
]);
4411 total_nodes
+= tree_node_counts
[i
];
4412 total_bytes
+= tree_node_sizes
[i
];
4414 fprintf (stderr
, "%-20s %9d\n", "identifier names", id_string_size
);
4415 fprintf (stderr
, "-------------------------------------\n");
4416 fprintf (stderr
, "%-20s %6d %9d\n", "Total", total_nodes
, total_bytes
);
4417 fprintf (stderr
, "-------------------------------------\n");
4419 fprintf (stderr
, "(No per-node statistics)\n");
4421 print_obstack_statistics ("permanent_obstack", &permanent_obstack
);
4422 print_type_hash_statistics ();
4423 print_lang_statistics ();
4426 #define FILE_FUNCTION_PREFIX_LEN 9
4428 #ifndef NO_DOLLAR_IN_LABEL
4429 #define FILE_FUNCTION_FORMAT "_GLOBAL_$%s$%s"
4430 #else /* NO_DOLLAR_IN_LABEL */
4431 #ifndef NO_DOT_IN_LABEL
4432 #define FILE_FUNCTION_FORMAT "_GLOBAL_.%s.%s"
4433 #else /* NO_DOT_IN_LABEL */
4434 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
4435 #endif /* NO_DOT_IN_LABEL */
4436 #endif /* NO_DOLLAR_IN_LABEL */
4438 /* Appends 6 random characters to TEMPLATE to (hopefully) avoid name
4439 clashes in cases where we can't reliably choose a unique name.
4441 Derived from mkstemp.c in libiberty. */
4444 append_random_chars (template)
4447 static const char letters
[]
4448 = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
4449 static unsigned HOST_WIDE_INT value
;
4450 unsigned HOST_WIDE_INT v
;
4452 #ifdef HAVE_GETTIMEOFDAY
4456 template += strlen (template);
4458 #ifdef HAVE_GETTIMEOFDAY
4459 /* Get some more or less random data. */
4460 gettimeofday (&tv
, NULL
);
4461 value
+= ((unsigned HOST_WIDE_INT
) tv
.tv_usec
<< 16) ^ tv
.tv_sec
^ getpid ();
4468 /* Fill in the random bits. */
4469 template[0] = letters
[v
% 62];
4471 template[1] = letters
[v
% 62];
4473 template[2] = letters
[v
% 62];
4475 template[3] = letters
[v
% 62];
4477 template[4] = letters
[v
% 62];
4479 template[5] = letters
[v
% 62];
4484 /* P is a string that will be used in a symbol. Mask out any characters
4485 that are not valid in that context. */
4488 clean_symbol_name (p
)
4493 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
4496 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
4504 /* Generate a name for a function unique to this translation unit.
4505 TYPE is some string to identify the purpose of this function to the
4506 linker or collect2. */
4509 get_file_function_name_long (type
)
4516 if (first_global_object_name
)
4517 p
= first_global_object_name
;
4520 /* We don't have anything that we know to be unique to this translation
4521 unit, so use what we do have and throw in some randomness. */
4523 const char *name
= weak_global_object_name
;
4524 const char *file
= main_input_filename
;
4529 file
= input_filename
;
4531 q
= (char *) alloca (7 + strlen (name
) + strlen (file
));
4533 sprintf (q
, "%s%s", name
, file
);
4534 append_random_chars (q
);
4538 buf
= (char *) alloca (sizeof (FILE_FUNCTION_FORMAT
) + strlen (p
)
4541 /* Set up the name of the file-level functions we may need.
4542 Use a global object (which is already required to be unique over
4543 the program) rather than the file name (which imposes extra
4545 sprintf (buf
, FILE_FUNCTION_FORMAT
, type
, p
);
4547 /* Don't need to pull weird characters out of global names. */
4548 if (p
!= first_global_object_name
)
4549 clean_symbol_name (buf
+ 11);
4551 return get_identifier (buf
);
4554 /* If KIND=='I', return a suitable global initializer (constructor) name.
4555 If KIND=='D', return a suitable global clean-up (destructor) name. */
4558 get_file_function_name (kind
)
4566 return get_file_function_name_long (p
);
4569 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
4570 The result is placed in BUFFER (which has length BIT_SIZE),
4571 with one bit in each char ('\000' or '\001').
4573 If the constructor is constant, NULL_TREE is returned.
4574 Otherwise, a TREE_LIST of the non-constant elements is emitted. */
4577 get_set_constructor_bits (init
, buffer
, bit_size
)
4584 HOST_WIDE_INT domain_min
4585 = tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (init
))), 0);
4586 tree non_const_bits
= NULL_TREE
;
4588 for (i
= 0; i
< bit_size
; i
++)
4591 for (vals
= TREE_OPERAND (init
, 1);
4592 vals
!= NULL_TREE
; vals
= TREE_CHAIN (vals
))
4594 if (!host_integerp (TREE_VALUE (vals
), 0)
4595 || (TREE_PURPOSE (vals
) != NULL_TREE
4596 && !host_integerp (TREE_PURPOSE (vals
), 0)))
4598 = tree_cons (TREE_PURPOSE (vals
), TREE_VALUE (vals
), non_const_bits
);
4599 else if (TREE_PURPOSE (vals
) != NULL_TREE
)
4601 /* Set a range of bits to ones. */
4602 HOST_WIDE_INT lo_index
4603 = tree_low_cst (TREE_PURPOSE (vals
), 0) - domain_min
;
4604 HOST_WIDE_INT hi_index
4605 = tree_low_cst (TREE_VALUE (vals
), 0) - domain_min
;
4607 if (lo_index
< 0 || lo_index
>= bit_size
4608 || hi_index
< 0 || hi_index
>= bit_size
)
4610 for (; lo_index
<= hi_index
; lo_index
++)
4611 buffer
[lo_index
] = 1;
4615 /* Set a single bit to one. */
4617 = tree_low_cst (TREE_VALUE (vals
), 0) - domain_min
;
4618 if (index
< 0 || index
>= bit_size
)
4620 error ("invalid initializer for bit string");
4626 return non_const_bits
;
4629 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
4630 The result is placed in BUFFER (which is an array of bytes).
4631 If the constructor is constant, NULL_TREE is returned.
4632 Otherwise, a TREE_LIST of the non-constant elements is emitted. */
4635 get_set_constructor_bytes (init
, buffer
, wd_size
)
4637 unsigned char *buffer
;
4641 int set_word_size
= BITS_PER_UNIT
;
4642 int bit_size
= wd_size
* set_word_size
;
4644 unsigned char *bytep
= buffer
;
4645 char *bit_buffer
= (char *) alloca (bit_size
);
4646 tree non_const_bits
= get_set_constructor_bits (init
, bit_buffer
, bit_size
);
4648 for (i
= 0; i
< wd_size
; i
++)
4651 for (i
= 0; i
< bit_size
; i
++)
4655 if (BYTES_BIG_ENDIAN
)
4656 *bytep
|= (1 << (set_word_size
- 1 - bit_pos
));
4658 *bytep
|= 1 << bit_pos
;
4661 if (bit_pos
>= set_word_size
)
4662 bit_pos
= 0, bytep
++;
4664 return non_const_bits
;
4667 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
4668 /* Complain that the tree code of NODE does not match the expected CODE.
4669 FILE, LINE, and FUNCTION are of the caller. */
4672 tree_check_failed (node
, code
, file
, line
, function
)
4674 enum tree_code code
;
4677 const char *function
;
4679 error ("Tree check: expected %s, have %s",
4680 tree_code_name
[code
], tree_code_name
[TREE_CODE (node
)]);
4681 fancy_abort (file
, line
, function
);
4684 /* Similar to above, except that we check for a class of tree
4685 code, given in CL. */
4688 tree_class_check_failed (node
, cl
, file
, line
, function
)
4693 const char *function
;
4695 error ("Tree check: expected class '%c', have '%c' (%s)",
4696 cl
, TREE_CODE_CLASS (TREE_CODE (node
)),
4697 tree_code_name
[TREE_CODE (node
)]);
4698 fancy_abort (file
, line
, function
);
4701 #endif /* ENABLE_TREE_CHECKING */
4703 /* For a new vector type node T, build the information necessary for
4704 debuggint output. */
4707 finish_vector_type (t
)
4713 tree index
= build_int_2 (TYPE_VECTOR_SUBPARTS (t
) - 1, 0);
4714 tree array
= build_array_type (TREE_TYPE (t
),
4715 build_index_type (index
));
4716 tree rt
= make_node (RECORD_TYPE
);
4718 TYPE_FIELDS (rt
) = build_decl (FIELD_DECL
, get_identifier ("f"), array
);
4719 DECL_CONTEXT (TYPE_FIELDS (rt
)) = rt
;
4721 TYPE_DEBUG_REPRESENTATION_TYPE (t
) = rt
;
4722 /* In dwarfout.c, type lookup uses TYPE_UID numbers. We want to output
4723 the representation type, and we want to find that die when looking up
4724 the vector type. This is most easily achieved by making the TYPE_UID
4726 TYPE_UID (rt
) = TYPE_UID (t
);
4730 /* Create nodes for all integer types (and error_mark_node) using the sizes
4731 of C datatypes. The caller should call set_sizetype soon after calling
4732 this function to select one of the types as sizetype. */
4735 build_common_tree_nodes (signed_char
)
4738 error_mark_node
= make_node (ERROR_MARK
);
4739 TREE_TYPE (error_mark_node
) = error_mark_node
;
4741 initialize_sizetypes ();
4743 /* Define both `signed char' and `unsigned char'. */
4744 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
4745 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
4747 /* Define `char', which is like either `signed char' or `unsigned char'
4748 but not the same as either. */
4751 ? make_signed_type (CHAR_TYPE_SIZE
)
4752 : make_unsigned_type (CHAR_TYPE_SIZE
));
4754 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
4755 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
4756 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
4757 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
4758 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
4759 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
4760 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
4761 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
4763 intQI_type_node
= make_signed_type (GET_MODE_BITSIZE (QImode
));
4764 intHI_type_node
= make_signed_type (GET_MODE_BITSIZE (HImode
));
4765 intSI_type_node
= make_signed_type (GET_MODE_BITSIZE (SImode
));
4766 intDI_type_node
= make_signed_type (GET_MODE_BITSIZE (DImode
));
4767 #if HOST_BITS_PER_WIDE_INT >= 64
4768 intTI_type_node
= make_signed_type (GET_MODE_BITSIZE (TImode
));
4771 unsigned_intQI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (QImode
));
4772 unsigned_intHI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (HImode
));
4773 unsigned_intSI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (SImode
));
4774 unsigned_intDI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (DImode
));
4775 #if HOST_BITS_PER_WIDE_INT >= 64
4776 unsigned_intTI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (TImode
));
4780 /* Call this function after calling build_common_tree_nodes and set_sizetype.
4781 It will create several other common tree nodes. */
4784 build_common_tree_nodes_2 (short_double
)
4787 /* Define these next since types below may used them. */
4788 integer_zero_node
= build_int_2 (0, 0);
4789 integer_one_node
= build_int_2 (1, 0);
4791 size_zero_node
= size_int (0);
4792 size_one_node
= size_int (1);
4793 bitsize_zero_node
= bitsize_int (0);
4794 bitsize_one_node
= bitsize_int (1);
4795 bitsize_unit_node
= bitsize_int (BITS_PER_UNIT
);
4797 void_type_node
= make_node (VOID_TYPE
);
4798 layout_type (void_type_node
);
4800 /* We are not going to have real types in C with less than byte alignment,
4801 so we might as well not have any types that claim to have it. */
4802 TYPE_ALIGN (void_type_node
) = BITS_PER_UNIT
;
4803 TYPE_USER_ALIGN (void_type_node
) = 0;
4805 null_pointer_node
= build_int_2 (0, 0);
4806 TREE_TYPE (null_pointer_node
) = build_pointer_type (void_type_node
);
4807 layout_type (TREE_TYPE (null_pointer_node
));
4809 ptr_type_node
= build_pointer_type (void_type_node
);
4811 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
4813 float_type_node
= make_node (REAL_TYPE
);
4814 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
4815 layout_type (float_type_node
);
4817 double_type_node
= make_node (REAL_TYPE
);
4819 TYPE_PRECISION (double_type_node
) = FLOAT_TYPE_SIZE
;
4821 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
4822 layout_type (double_type_node
);
4824 long_double_type_node
= make_node (REAL_TYPE
);
4825 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
4826 layout_type (long_double_type_node
);
4828 complex_integer_type_node
= make_node (COMPLEX_TYPE
);
4829 TREE_TYPE (complex_integer_type_node
) = integer_type_node
;
4830 layout_type (complex_integer_type_node
);
4832 complex_float_type_node
= make_node (COMPLEX_TYPE
);
4833 TREE_TYPE (complex_float_type_node
) = float_type_node
;
4834 layout_type (complex_float_type_node
);
4836 complex_double_type_node
= make_node (COMPLEX_TYPE
);
4837 TREE_TYPE (complex_double_type_node
) = double_type_node
;
4838 layout_type (complex_double_type_node
);
4840 complex_long_double_type_node
= make_node (COMPLEX_TYPE
);
4841 TREE_TYPE (complex_long_double_type_node
) = long_double_type_node
;
4842 layout_type (complex_long_double_type_node
);
4846 BUILD_VA_LIST_TYPE (t
);
4847 va_list_type_node
= build_type_copy (t
);
4850 V4SF_type_node
= make_node (VECTOR_TYPE
);
4851 TREE_TYPE (V4SF_type_node
) = float_type_node
;
4852 TYPE_MODE (V4SF_type_node
) = V4SFmode
;
4853 finish_vector_type (V4SF_type_node
);
4855 V4SI_type_node
= make_node (VECTOR_TYPE
);
4856 TREE_TYPE (V4SI_type_node
) = intSI_type_node
;
4857 TYPE_MODE (V4SI_type_node
) = V4SImode
;
4858 finish_vector_type (V4SI_type_node
);
4860 V2SI_type_node
= make_node (VECTOR_TYPE
);
4861 TREE_TYPE (V2SI_type_node
) = intSI_type_node
;
4862 TYPE_MODE (V2SI_type_node
) = V2SImode
;
4863 finish_vector_type (V2SI_type_node
);
4865 V4HI_type_node
= make_node (VECTOR_TYPE
);
4866 TREE_TYPE (V4HI_type_node
) = intHI_type_node
;
4867 TYPE_MODE (V4HI_type_node
) = V4HImode
;
4868 finish_vector_type (V4HI_type_node
);
4870 V8QI_type_node
= make_node (VECTOR_TYPE
);
4871 TREE_TYPE (V8QI_type_node
) = intQI_type_node
;
4872 TYPE_MODE (V8QI_type_node
) = V8QImode
;
4873 finish_vector_type (V8QI_type_node
);