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. */
23 /* This file contains the low level primitives for operating on tree nodes,
24 including allocation, list operations, interning of identifiers,
25 construction of data type nodes and statement nodes,
26 and construction of type conversion nodes. It also contains
27 tables index by tree code that describe how to take apart
30 It is intended to be language-independent, but occasionally
31 calls language-dependent routines defined (for C) in typecheck.c.
33 The low-level allocation routines oballoc and permalloc
34 are used also for allocating many other kinds of objects
35 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 /* Tree nodes of permanent duration are allocated in this obstack.
57 They are the identifier nodes, and everything outside of
58 the bodies and parameters of function definitions. */
60 struct obstack permanent_obstack
;
62 /* The initial RTL, and all ..._TYPE nodes, in a function
63 are allocated in this obstack. Usually they are freed at the
64 end of the function, but if the function is inline they are saved.
65 For top-level functions, this is maybepermanent_obstack.
66 Separate obstacks are made for nested functions. */
68 struct obstack
*function_maybepermanent_obstack
;
70 /* This is the function_maybepermanent_obstack for top-level functions. */
72 struct obstack maybepermanent_obstack
;
74 /* The contents of the current function definition are allocated
75 in this obstack, and all are freed at the end of the function.
76 For top-level functions, this is temporary_obstack.
77 Separate obstacks are made for nested functions. */
79 struct obstack
*function_obstack
;
81 /* This is used for reading initializers of global variables. */
83 struct obstack temporary_obstack
;
85 /* The tree nodes of an expression are allocated
86 in this obstack, and all are freed at the end of the expression. */
88 struct obstack momentary_obstack
;
90 /* The tree nodes of a declarator are allocated
91 in this obstack, and all are freed when the declarator
94 static struct obstack temp_decl_obstack
;
96 /* This points at either permanent_obstack
97 or the current function_maybepermanent_obstack. */
99 struct obstack
*saveable_obstack
;
101 /* This is same as saveable_obstack during parse and expansion phase;
102 it points to the current function's obstack during optimization.
103 This is the obstack to be used for creating rtl objects. */
105 struct obstack
*rtl_obstack
;
107 /* This points at either permanent_obstack or the current function_obstack. */
109 struct obstack
*current_obstack
;
111 /* This points at either permanent_obstack or the current function_obstack
112 or momentary_obstack. */
114 struct obstack
*expression_obstack
;
116 /* Stack of obstack selections for push_obstacks and pop_obstacks. */
120 struct obstack_stack
*next
;
121 struct obstack
*current
;
122 struct obstack
*saveable
;
123 struct obstack
*expression
;
127 struct obstack_stack
*obstack_stack
;
129 /* Obstack for allocating struct obstack_stack entries. */
131 static struct obstack obstack_stack_obstack
;
133 /* Addresses of first objects in some obstacks.
134 This is for freeing their entire contents. */
135 char *maybepermanent_firstobj
;
136 char *temporary_firstobj
;
137 char *momentary_firstobj
;
138 char *temp_decl_firstobj
;
140 /* This is used to preserve objects (mainly array initializers) that need to
141 live until the end of the current function, but no further. */
142 char *momentary_function_firstobj
;
144 /* Nonzero means all ..._TYPE nodes should be allocated permanently. */
146 int all_types_permanent
;
148 /* Stack of places to restore the momentary obstack back to. */
150 struct momentary_level
152 /* Pointer back to previous such level. */
153 struct momentary_level
*prev
;
154 /* First object allocated within this level. */
156 /* Value of expression_obstack saved at entry to this level. */
157 struct obstack
*obstack
;
160 struct momentary_level
*momentary_stack
;
162 /* Table indexed by tree code giving a string containing a character
163 classifying the tree code. Possibilities are
164 t, d, s, c, r, <, 1, 2 and e. See tree.def for details. */
166 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
168 char tree_code_type
[MAX_TREE_CODES
] = {
173 /* Table indexed by tree code giving number of expression
174 operands beyond the fixed part of the node structure.
175 Not used for types or decls. */
177 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
179 int tree_code_length
[MAX_TREE_CODES
] = {
184 /* Names of tree components.
185 Used for printing out the tree and error messages. */
186 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
188 const char *tree_code_name
[MAX_TREE_CODES
] = {
193 /* Statistics-gathering stuff. */
214 int tree_node_counts
[(int)all_kinds
];
215 int tree_node_sizes
[(int)all_kinds
];
216 int id_string_size
= 0;
218 static const char * const tree_node_kind_names
[] = {
236 /* Hash table for uniquizing IDENTIFIER_NODEs by name. */
238 #define MAX_HASH_TABLE 1009
239 static tree hash_table
[MAX_HASH_TABLE
]; /* id hash buckets */
241 /* 0 while creating built-in identifiers. */
242 static int do_identifier_warnings
;
244 /* Unique id for next decl created. */
245 static int next_decl_uid
;
246 /* Unique id for next type created. */
247 static int next_type_uid
= 1;
249 /* Here is how primitive or already-canonicalized types' hash
251 #define TYPE_HASH(TYPE) ((unsigned long) (TYPE) & 0777777)
253 /* Since we cannot rehash a type after it is in the table, we have to
254 keep the hash code. */
262 /* Initial size of the hash table (rounded to next prime). */
263 #define TYPE_HASH_INITIAL_SIZE 1000
265 /* Now here is the hash table. When recording a type, it is added to
266 the slot whose index is the hash code. Note that the hash table is
267 used for several kinds of types (function types, array types and
268 array index range types, for now). While all these live in the
269 same table, they are completely independent, and the hash code is
270 computed differently for each of these. */
272 htab_t type_hash_table
;
274 static void build_real_from_int_cst_1
PARAMS ((PTR
));
275 static void set_type_quals
PARAMS ((tree
, int));
276 static void append_random_chars
PARAMS ((char *));
277 static void mark_type_hash
PARAMS ((void *));
278 static int type_hash_eq
PARAMS ((const void*, const void*));
279 static unsigned int type_hash_hash
PARAMS ((const void*));
280 static void print_type_hash_statistics
PARAMS((void));
281 static int mark_hash_entry
PARAMS((void **, void *));
282 static void finish_vector_type
PARAMS((tree
));
284 /* If non-null, these are language-specific helper functions for
285 unsave_expr_now. If present, LANG_UNSAVE is called before its
286 argument (an UNSAVE_EXPR) is to be unsaved, and all other
287 processing in unsave_expr_now is aborted. LANG_UNSAVE_EXPR_NOW is
288 called from unsave_expr_1 for language-specific tree codes. */
289 void (*lang_unsave
) PARAMS ((tree
*));
290 void (*lang_unsave_expr_now
) PARAMS ((tree
));
292 /* The string used as a placeholder instead of a source file name for
293 built-in tree nodes. The variable, which is dynamically allocated,
294 should be used; the macro is only used to initialize it. */
296 static char *built_in_filename
;
297 #define BUILT_IN_FILENAME ("<built-in>")
299 tree global_trees
[TI_MAX
];
300 tree integer_types
[itk_none
];
302 /* Init the principal obstacks. */
307 gcc_obstack_init (&obstack_stack_obstack
);
308 gcc_obstack_init (&permanent_obstack
);
310 gcc_obstack_init (&temporary_obstack
);
311 temporary_firstobj
= (char *) obstack_alloc (&temporary_obstack
, 0);
312 gcc_obstack_init (&momentary_obstack
);
313 momentary_firstobj
= (char *) obstack_alloc (&momentary_obstack
, 0);
314 momentary_function_firstobj
= momentary_firstobj
;
315 gcc_obstack_init (&maybepermanent_obstack
);
316 maybepermanent_firstobj
317 = (char *) obstack_alloc (&maybepermanent_obstack
, 0);
318 gcc_obstack_init (&temp_decl_obstack
);
319 temp_decl_firstobj
= (char *) obstack_alloc (&temp_decl_obstack
, 0);
321 function_obstack
= &temporary_obstack
;
322 function_maybepermanent_obstack
= &maybepermanent_obstack
;
323 current_obstack
= &permanent_obstack
;
324 expression_obstack
= &permanent_obstack
;
325 rtl_obstack
= saveable_obstack
= &permanent_obstack
;
327 /* Init the hash table of identifiers. */
328 bzero ((char *) hash_table
, sizeof hash_table
);
329 ggc_add_tree_root (hash_table
, sizeof hash_table
/ sizeof (tree
));
331 /* Initialize the hash table of types. */
332 type_hash_table
= htab_create (TYPE_HASH_INITIAL_SIZE
, type_hash_hash
,
334 ggc_add_root (&type_hash_table
, 1, sizeof type_hash_table
, mark_type_hash
);
335 ggc_add_tree_root (global_trees
, TI_MAX
);
336 ggc_add_tree_root (integer_types
, itk_none
);
340 gcc_obstack_init (obstack
)
341 struct obstack
*obstack
;
343 /* Let particular systems override the size of a chunk. */
344 #ifndef OBSTACK_CHUNK_SIZE
345 #define OBSTACK_CHUNK_SIZE 0
347 /* Let them override the alloc and free routines too. */
348 #ifndef OBSTACK_CHUNK_ALLOC
349 #define OBSTACK_CHUNK_ALLOC xmalloc
351 #ifndef OBSTACK_CHUNK_FREE
352 #define OBSTACK_CHUNK_FREE free
354 _obstack_begin (obstack
, OBSTACK_CHUNK_SIZE
, 0,
355 (void *(*) PARAMS ((long))) OBSTACK_CHUNK_ALLOC
,
356 (void (*) PARAMS ((void *))) OBSTACK_CHUNK_FREE
);
359 /* Save all variables describing the current status into the structure
360 *P. This function is called whenever we start compiling one
361 function in the midst of compiling another. For example, when
362 compiling a nested function, or, in C++, a template instantiation
363 that is required by the function we are currently compiling.
365 CONTEXT is the decl_function_context for the function we're about to
366 compile; if it isn't current_function_decl, we have to play some games. */
372 p
->all_types_permanent
= all_types_permanent
;
373 p
->momentary_stack
= momentary_stack
;
374 p
->maybepermanent_firstobj
= maybepermanent_firstobj
;
375 p
->temporary_firstobj
= temporary_firstobj
;
376 p
->momentary_firstobj
= momentary_firstobj
;
377 p
->momentary_function_firstobj
= momentary_function_firstobj
;
378 p
->function_obstack
= function_obstack
;
379 p
->function_maybepermanent_obstack
= function_maybepermanent_obstack
;
380 p
->current_obstack
= current_obstack
;
381 p
->expression_obstack
= expression_obstack
;
382 p
->saveable_obstack
= saveable_obstack
;
383 p
->rtl_obstack
= rtl_obstack
;
385 function_maybepermanent_obstack
386 = (struct obstack
*) xmalloc (sizeof (struct obstack
));
387 gcc_obstack_init (function_maybepermanent_obstack
);
388 maybepermanent_firstobj
389 = (char *) obstack_finish (function_maybepermanent_obstack
);
391 function_obstack
= (struct obstack
*) xmalloc (sizeof (struct obstack
));
392 gcc_obstack_init (function_obstack
);
394 current_obstack
= &permanent_obstack
;
395 expression_obstack
= &permanent_obstack
;
396 rtl_obstack
= saveable_obstack
= &permanent_obstack
;
398 temporary_firstobj
= (char *) obstack_alloc (&temporary_obstack
, 0);
399 momentary_firstobj
= (char *) obstack_finish (&momentary_obstack
);
400 momentary_function_firstobj
= momentary_firstobj
;
403 /* Restore all variables describing the current status from the structure *P.
404 This is used after a nested function. */
407 restore_tree_status (p
)
410 all_types_permanent
= p
->all_types_permanent
;
411 momentary_stack
= p
->momentary_stack
;
413 obstack_free (&momentary_obstack
, momentary_function_firstobj
);
415 /* Free saveable storage used by the function just compiled and not
417 obstack_free (function_maybepermanent_obstack
, maybepermanent_firstobj
);
418 if (obstack_empty_p (function_maybepermanent_obstack
))
420 obstack_free (function_maybepermanent_obstack
, NULL
);
421 free (function_maybepermanent_obstack
);
424 obstack_free (&temporary_obstack
, temporary_firstobj
);
425 obstack_free (&momentary_obstack
, momentary_function_firstobj
);
427 obstack_free (function_obstack
, NULL
);
428 free (function_obstack
);
430 temporary_firstobj
= p
->temporary_firstobj
;
431 momentary_firstobj
= p
->momentary_firstobj
;
432 momentary_function_firstobj
= p
->momentary_function_firstobj
;
433 maybepermanent_firstobj
= p
->maybepermanent_firstobj
;
434 function_obstack
= p
->function_obstack
;
435 function_maybepermanent_obstack
= p
->function_maybepermanent_obstack
;
436 current_obstack
= p
->current_obstack
;
437 expression_obstack
= p
->expression_obstack
;
438 saveable_obstack
= p
->saveable_obstack
;
439 rtl_obstack
= p
->rtl_obstack
;
442 /* Start allocating on the temporary (per function) obstack.
443 This is done in start_function before parsing the function body,
444 and before each initialization at top level, and to go back
445 to temporary allocation after doing permanent_allocation. */
448 temporary_allocation ()
450 /* Note that function_obstack at top level points to temporary_obstack.
451 But within a nested function context, it is a separate obstack. */
452 current_obstack
= function_obstack
;
453 expression_obstack
= function_obstack
;
454 rtl_obstack
= saveable_obstack
= function_maybepermanent_obstack
;
458 /* Start allocating on the permanent obstack but don't
459 free the temporary data. After calling this, call
460 `permanent_allocation' to fully resume permanent allocation status. */
463 end_temporary_allocation ()
465 current_obstack
= &permanent_obstack
;
466 expression_obstack
= &permanent_obstack
;
467 rtl_obstack
= saveable_obstack
= &permanent_obstack
;
470 /* Resume allocating on the temporary obstack, undoing
471 effects of `end_temporary_allocation'. */
474 resume_temporary_allocation ()
476 current_obstack
= function_obstack
;
477 expression_obstack
= function_obstack
;
478 rtl_obstack
= saveable_obstack
= function_maybepermanent_obstack
;
481 /* While doing temporary allocation, switch to allocating in such a
482 way as to save all nodes if the function is inlined. Call
483 resume_temporary_allocation to go back to ordinary temporary
487 saveable_allocation ()
489 /* Note that function_obstack at top level points to temporary_obstack.
490 But within a nested function context, it is a separate obstack. */
491 expression_obstack
= current_obstack
= saveable_obstack
;
494 /* Switch to current obstack CURRENT and maybepermanent obstack SAVEABLE,
495 recording the previously current obstacks on a stack.
496 This does not free any storage in any obstack. */
499 push_obstacks (current
, saveable
)
500 struct obstack
*current
, *saveable
;
502 struct obstack_stack
*p
;
504 p
= (struct obstack_stack
*) obstack_alloc (&obstack_stack_obstack
,
505 (sizeof (struct obstack_stack
)));
507 p
->current
= current_obstack
;
508 p
->saveable
= saveable_obstack
;
509 p
->expression
= expression_obstack
;
510 p
->rtl
= rtl_obstack
;
511 p
->next
= obstack_stack
;
514 current_obstack
= current
;
515 expression_obstack
= current
;
516 rtl_obstack
= saveable_obstack
= saveable
;
519 /* Save the current set of obstacks, but don't change them. */
522 push_obstacks_nochange ()
524 struct obstack_stack
*p
;
526 p
= (struct obstack_stack
*) obstack_alloc (&obstack_stack_obstack
,
527 (sizeof (struct obstack_stack
)));
529 p
->current
= current_obstack
;
530 p
->saveable
= saveable_obstack
;
531 p
->expression
= expression_obstack
;
532 p
->rtl
= rtl_obstack
;
533 p
->next
= obstack_stack
;
537 /* Pop the obstack selection stack. */
542 struct obstack_stack
*p
;
545 obstack_stack
= p
->next
;
547 current_obstack
= p
->current
;
548 saveable_obstack
= p
->saveable
;
549 expression_obstack
= p
->expression
;
550 rtl_obstack
= p
->rtl
;
552 obstack_free (&obstack_stack_obstack
, p
);
555 /* Nonzero if temporary allocation is currently in effect.
556 Zero if currently doing permanent allocation. */
559 allocation_temporary_p ()
561 return current_obstack
!= &permanent_obstack
;
564 /* Go back to allocating on the permanent obstack
565 and free everything in the temporary obstack.
567 FUNCTION_END is true only if we have just finished compiling a function.
568 In that case, we also free preserved initial values on the momentary
572 permanent_allocation (function_end
)
575 /* Free up previous temporary obstack data */
576 obstack_free (&temporary_obstack
, temporary_firstobj
);
579 obstack_free (&momentary_obstack
, momentary_function_firstobj
);
580 momentary_firstobj
= momentary_function_firstobj
;
583 obstack_free (&momentary_obstack
, momentary_firstobj
);
585 obstack_free (function_maybepermanent_obstack
, maybepermanent_firstobj
);
586 obstack_free (&temp_decl_obstack
, temp_decl_firstobj
);
588 current_obstack
= &permanent_obstack
;
589 expression_obstack
= &permanent_obstack
;
590 rtl_obstack
= saveable_obstack
= &permanent_obstack
;
593 /* Save permanently everything on the maybepermanent_obstack. */
598 maybepermanent_firstobj
599 = (char *) obstack_alloc (function_maybepermanent_obstack
, 0);
603 preserve_initializer ()
605 struct momentary_level
*tem
;
609 = (char *) obstack_alloc (&temporary_obstack
, 0);
610 maybepermanent_firstobj
611 = (char *) obstack_alloc (function_maybepermanent_obstack
, 0);
613 old_momentary
= momentary_firstobj
;
615 = (char *) obstack_alloc (&momentary_obstack
, 0);
616 if (momentary_firstobj
!= old_momentary
)
617 for (tem
= momentary_stack
; tem
; tem
= tem
->prev
)
618 tem
->base
= momentary_firstobj
;
621 /* Start allocating new rtl in current_obstack.
622 Use resume_temporary_allocation
623 to go back to allocating rtl in saveable_obstack. */
626 rtl_in_current_obstack ()
628 rtl_obstack
= current_obstack
;
631 /* Start allocating rtl from saveable_obstack. Intended to be used after
632 a call to push_obstacks_nochange. */
635 rtl_in_saveable_obstack ()
637 rtl_obstack
= saveable_obstack
;
640 /* Allocate SIZE bytes in the current obstack
641 and return a pointer to them.
642 In practice the current obstack is always the temporary one. */
648 return (char *) obstack_alloc (current_obstack
, size
);
651 /* Free the object PTR in the current obstack
652 as well as everything allocated since PTR.
653 In practice the current obstack is always the temporary one. */
659 obstack_free (current_obstack
, ptr
);
662 /* Allocate SIZE bytes in the permanent obstack
663 and return a pointer to them. */
669 return (char *) obstack_alloc (&permanent_obstack
, size
);
672 /* Allocate NELEM items of SIZE bytes in the permanent obstack
673 and return a pointer to them. The storage is cleared before
674 returning the value. */
677 perm_calloc (nelem
, size
)
681 char *rval
= (char *) obstack_alloc (&permanent_obstack
, nelem
* size
);
682 bzero (rval
, nelem
* size
);
686 /* Allocate SIZE bytes in the saveable obstack
687 and return a pointer to them. */
693 return (char *) obstack_alloc (saveable_obstack
, size
);
696 /* Allocate SIZE bytes in the expression obstack
697 and return a pointer to them. */
703 return (char *) obstack_alloc (expression_obstack
, size
);
706 /* Print out which obstack an object is in. */
709 print_obstack_name (object
, file
, prefix
)
714 struct obstack
*obstack
= NULL
;
715 const char *obstack_name
= NULL
;
718 for (p
= outer_function_chain
; p
; p
= p
->next
)
720 if (_obstack_allocated_p (p
->function_obstack
, object
))
722 obstack
= p
->function_obstack
;
723 obstack_name
= "containing function obstack";
725 if (_obstack_allocated_p (p
->function_maybepermanent_obstack
, object
))
727 obstack
= p
->function_maybepermanent_obstack
;
728 obstack_name
= "containing function maybepermanent obstack";
732 if (_obstack_allocated_p (&obstack_stack_obstack
, object
))
734 obstack
= &obstack_stack_obstack
;
735 obstack_name
= "obstack_stack_obstack";
737 else if (_obstack_allocated_p (function_obstack
, object
))
739 obstack
= function_obstack
;
740 obstack_name
= "function obstack";
742 else if (_obstack_allocated_p (&permanent_obstack
, object
))
744 obstack
= &permanent_obstack
;
745 obstack_name
= "permanent_obstack";
747 else if (_obstack_allocated_p (&momentary_obstack
, object
))
749 obstack
= &momentary_obstack
;
750 obstack_name
= "momentary_obstack";
752 else if (_obstack_allocated_p (function_maybepermanent_obstack
, object
))
754 obstack
= function_maybepermanent_obstack
;
755 obstack_name
= "function maybepermanent obstack";
757 else if (_obstack_allocated_p (&temp_decl_obstack
, object
))
759 obstack
= &temp_decl_obstack
;
760 obstack_name
= "temp_decl_obstack";
763 /* Check to see if the object is in the free area of the obstack. */
766 if (object
>= obstack
->next_free
767 && object
< obstack
->chunk_limit
)
768 fprintf (file
, "%s in free portion of obstack %s",
769 prefix
, obstack_name
);
771 fprintf (file
, "%s allocated from %s", prefix
, obstack_name
);
774 fprintf (file
, "%s not allocated from any obstack", prefix
);
778 debug_obstack (object
)
781 print_obstack_name (object
, stderr
, "object");
782 fprintf (stderr
, ".\n");
785 /* Return 1 if OBJ is in the permanent obstack.
786 This is slow, and should be used only for debugging.
787 Use TREE_PERMANENT for other purposes. */
790 object_permanent_p (obj
)
793 return _obstack_allocated_p (&permanent_obstack
, obj
);
796 /* Start a level of momentary allocation.
797 In C, each compound statement has its own level
798 and that level is freed at the end of each statement.
799 All expression nodes are allocated in the momentary allocation level. */
804 struct momentary_level
*tem
805 = (struct momentary_level
*) obstack_alloc (&momentary_obstack
,
806 sizeof (struct momentary_level
));
807 tem
->prev
= momentary_stack
;
808 tem
->base
= (char *) obstack_base (&momentary_obstack
);
809 tem
->obstack
= expression_obstack
;
810 momentary_stack
= tem
;
811 expression_obstack
= &momentary_obstack
;
814 /* Set things up so the next clear_momentary will only clear memory
815 past our present position in momentary_obstack. */
818 preserve_momentary ()
820 momentary_stack
->base
= (char *) obstack_base (&momentary_obstack
);
823 /* Free all the storage in the current momentary-allocation level.
824 In C, this happens at the end of each statement. */
829 obstack_free (&momentary_obstack
, momentary_stack
->base
);
832 /* Discard a level of momentary allocation.
833 In C, this happens at the end of each compound statement.
834 Restore the status of expression node allocation
835 that was in effect before this level was created. */
840 struct momentary_level
*tem
= momentary_stack
;
841 momentary_stack
= tem
->prev
;
842 expression_obstack
= tem
->obstack
;
843 /* We can't free TEM from the momentary_obstack, because there might
844 be objects above it which have been saved. We can free back to the
845 stack of the level we are popping off though. */
846 obstack_free (&momentary_obstack
, tem
->base
);
849 /* Pop back to the previous level of momentary allocation,
850 but don't free any momentary data just yet. */
853 pop_momentary_nofree ()
855 struct momentary_level
*tem
= momentary_stack
;
856 momentary_stack
= tem
->prev
;
857 expression_obstack
= tem
->obstack
;
860 /* Call when starting to parse a declaration:
861 make expressions in the declaration last the length of the function.
862 Returns an argument that should be passed to resume_momentary later. */
867 register int tem
= expression_obstack
== &momentary_obstack
;
868 expression_obstack
= saveable_obstack
;
872 /* Call when finished parsing a declaration:
873 restore the treatment of node-allocation that was
874 in effect before the suspension.
875 YES should be the value previously returned by suspend_momentary. */
878 resume_momentary (yes
)
882 expression_obstack
= &momentary_obstack
;
885 /* Init the tables indexed by tree code.
886 Note that languages can add to these tables to define their own codes. */
892 = ggc_alloc_string (BUILT_IN_FILENAME
, sizeof (BUILT_IN_FILENAME
));
893 ggc_add_string_root (&built_in_filename
, 1);
896 /* Return a newly allocated node of code CODE.
897 Initialize the node's unique id and its TREE_PERMANENT flag.
898 Note that if garbage collection is in use, TREE_PERMANENT will
899 always be zero - we want to eliminate use of TREE_PERMANENT.
900 For decl and type nodes, some other fields are initialized.
901 The rest of the node is initialized to zero.
903 Achoo! I got a code in the node. */
910 register int type
= TREE_CODE_CLASS (code
);
911 register int length
= 0;
912 register struct obstack
*obstack
= current_obstack
;
913 #ifdef GATHER_STATISTICS
914 register tree_node_kind kind
;
919 case 'd': /* A decl node */
920 #ifdef GATHER_STATISTICS
923 length
= sizeof (struct tree_decl
);
924 /* All decls in an inline function need to be saved. */
925 if (obstack
!= &permanent_obstack
)
926 obstack
= saveable_obstack
;
928 /* PARM_DECLs go on the context of the parent. If this is a nested
929 function, then we must allocate the PARM_DECL on the parent's
930 obstack, so that they will live to the end of the parent's
931 closing brace. This is necessary in case we try to inline the
932 function into its parent.
934 PARM_DECLs of top-level functions do not have this problem. However,
935 we allocate them where we put the FUNCTION_DECL for languages such as
936 Ada that need to consult some flags in the PARM_DECLs of the function
939 See comment in restore_tree_status for why we can't put this
940 in function_obstack. */
941 if (code
== PARM_DECL
&& obstack
!= &permanent_obstack
)
944 if (current_function_decl
)
945 context
= decl_function_context (current_function_decl
);
949 = find_function_data (context
)->function_maybepermanent_obstack
;
953 case 't': /* a type node */
954 #ifdef GATHER_STATISTICS
957 length
= sizeof (struct tree_type
);
958 /* All data types are put where we can preserve them if nec. */
959 if (obstack
!= &permanent_obstack
)
960 obstack
= all_types_permanent
? &permanent_obstack
: saveable_obstack
;
963 case 'b': /* a lexical block */
964 #ifdef GATHER_STATISTICS
967 length
= sizeof (struct tree_block
);
968 /* All BLOCK nodes are put where we can preserve them if nec. */
969 if (obstack
!= &permanent_obstack
)
970 obstack
= saveable_obstack
;
973 case 's': /* an expression with side effects */
974 #ifdef GATHER_STATISTICS
978 case 'r': /* a reference */
979 #ifdef GATHER_STATISTICS
983 case 'e': /* an expression */
984 case '<': /* a comparison expression */
985 case '1': /* a unary arithmetic expression */
986 case '2': /* a binary arithmetic expression */
987 #ifdef GATHER_STATISTICS
991 obstack
= expression_obstack
;
992 /* All BIND_EXPR nodes are put where we can preserve them if nec. */
993 if (code
== BIND_EXPR
&& obstack
!= &permanent_obstack
)
994 obstack
= saveable_obstack
;
995 length
= sizeof (struct tree_exp
)
996 + (TREE_CODE_LENGTH (code
) - 1) * sizeof (char *);
999 case 'c': /* a constant */
1000 #ifdef GATHER_STATISTICS
1003 obstack
= expression_obstack
;
1005 /* We can't use TREE_CODE_LENGTH for INTEGER_CST, since the number of
1006 words is machine-dependent due to varying length of HOST_WIDE_INT,
1007 which might be wider than a pointer (e.g., long long). Similarly
1008 for REAL_CST, since the number of words is machine-dependent due
1009 to varying size and alignment of `double'. */
1011 if (code
== INTEGER_CST
)
1012 length
= sizeof (struct tree_int_cst
);
1013 else if (code
== REAL_CST
)
1014 length
= sizeof (struct tree_real_cst
);
1016 length
= sizeof (struct tree_common
)
1017 + TREE_CODE_LENGTH (code
) * sizeof (char *);
1020 case 'x': /* something random, like an identifier. */
1021 #ifdef GATHER_STATISTICS
1022 if (code
== IDENTIFIER_NODE
)
1024 else if (code
== OP_IDENTIFIER
)
1026 else if (code
== TREE_VEC
)
1031 length
= sizeof (struct tree_common
)
1032 + TREE_CODE_LENGTH (code
) * sizeof (char *);
1033 /* Identifier nodes are always permanent since they are
1034 unique in a compiler run. */
1035 if (code
== IDENTIFIER_NODE
) obstack
= &permanent_obstack
;
1043 t
= ggc_alloc_tree (length
);
1045 t
= (tree
) obstack_alloc (obstack
, length
);
1047 memset ((PTR
) t
, 0, length
);
1049 #ifdef GATHER_STATISTICS
1050 tree_node_counts
[(int)kind
]++;
1051 tree_node_sizes
[(int)kind
] += length
;
1054 TREE_SET_CODE (t
, code
);
1055 TREE_SET_PERMANENT (t
);
1060 TREE_SIDE_EFFECTS (t
) = 1;
1061 TREE_TYPE (t
) = void_type_node
;
1065 if (code
!= FUNCTION_DECL
)
1067 DECL_USER_ALIGN (t
) = 0;
1068 DECL_IN_SYSTEM_HEADER (t
) = in_system_header
;
1069 DECL_SOURCE_LINE (t
) = lineno
;
1070 DECL_SOURCE_FILE (t
) =
1071 (input_filename
) ? input_filename
: built_in_filename
;
1072 DECL_UID (t
) = next_decl_uid
++;
1073 /* Note that we have not yet computed the alias set for this
1075 DECL_POINTER_ALIAS_SET (t
) = -1;
1079 TYPE_UID (t
) = next_type_uid
++;
1081 TYPE_USER_ALIGN (t
) = 0;
1082 TYPE_MAIN_VARIANT (t
) = t
;
1083 TYPE_OBSTACK (t
) = obstack
;
1084 TYPE_ATTRIBUTES (t
) = NULL_TREE
;
1085 #ifdef SET_DEFAULT_TYPE_ATTRIBUTES
1086 SET_DEFAULT_TYPE_ATTRIBUTES (t
);
1088 /* Note that we have not yet computed the alias set for this
1090 TYPE_ALIAS_SET (t
) = -1;
1094 TREE_CONSTANT (t
) = 1;
1104 case PREDECREMENT_EXPR
:
1105 case PREINCREMENT_EXPR
:
1106 case POSTDECREMENT_EXPR
:
1107 case POSTINCREMENT_EXPR
:
1108 /* All of these have side-effects, no matter what their
1110 TREE_SIDE_EFFECTS (t
) = 1;
1122 /* A front-end can reset this to an appropriate function if types need
1123 special handling. */
1125 tree (*make_lang_type_fn
) PARAMS ((enum tree_code
)) = make_node
;
1127 /* Return a new type (with the indicated CODE), doing whatever
1128 language-specific processing is required. */
1131 make_lang_type (code
)
1132 enum tree_code code
;
1134 return (*make_lang_type_fn
) (code
);
1137 /* Return a new node with the same contents as NODE except that its
1138 TREE_CHAIN is zero and it has a fresh uid. Unlike make_node, this
1139 function always performs the allocation on the CURRENT_OBSTACK;
1140 it's up to the caller to pick the right obstack before calling this
1148 register enum tree_code code
= TREE_CODE (node
);
1149 register int length
= 0;
1151 switch (TREE_CODE_CLASS (code
))
1153 case 'd': /* A decl node */
1154 length
= sizeof (struct tree_decl
);
1157 case 't': /* a type node */
1158 length
= sizeof (struct tree_type
);
1161 case 'b': /* a lexical block node */
1162 length
= sizeof (struct tree_block
);
1165 case 'r': /* a reference */
1166 case 'e': /* an expression */
1167 case 's': /* an expression with side effects */
1168 case '<': /* a comparison expression */
1169 case '1': /* a unary arithmetic expression */
1170 case '2': /* a binary arithmetic expression */
1171 length
= sizeof (struct tree_exp
)
1172 + (TREE_CODE_LENGTH (code
) - 1) * sizeof (char *);
1175 case 'c': /* a constant */
1176 /* We can't use TREE_CODE_LENGTH for INTEGER_CST, since the number of
1177 words is machine-dependent due to varying length of HOST_WIDE_INT,
1178 which might be wider than a pointer (e.g., long long). Similarly
1179 for REAL_CST, since the number of words is machine-dependent due
1180 to varying size and alignment of `double'. */
1181 if (code
== INTEGER_CST
)
1182 length
= sizeof (struct tree_int_cst
);
1183 else if (code
== REAL_CST
)
1184 length
= sizeof (struct tree_real_cst
);
1186 length
= (sizeof (struct tree_common
)
1187 + TREE_CODE_LENGTH (code
) * sizeof (char *));
1190 case 'x': /* something random, like an identifier. */
1191 length
= sizeof (struct tree_common
)
1192 + TREE_CODE_LENGTH (code
) * sizeof (char *);
1193 if (code
== TREE_VEC
)
1194 length
+= (TREE_VEC_LENGTH (node
) - 1) * sizeof (char *);
1198 t
= ggc_alloc_tree (length
);
1200 t
= (tree
) obstack_alloc (current_obstack
, length
);
1201 memcpy (t
, node
, length
);
1204 TREE_ASM_WRITTEN (t
) = 0;
1206 if (TREE_CODE_CLASS (code
) == 'd')
1207 DECL_UID (t
) = next_decl_uid
++;
1208 else if (TREE_CODE_CLASS (code
) == 't')
1210 TYPE_UID (t
) = next_type_uid
++;
1211 TYPE_OBSTACK (t
) = current_obstack
;
1213 /* The following is so that the debug code for
1214 the copy is different from the original type.
1215 The two statements usually duplicate each other
1216 (because they clear fields of the same union),
1217 but the optimizer should catch that. */
1218 TYPE_SYMTAB_POINTER (t
) = 0;
1219 TYPE_SYMTAB_ADDRESS (t
) = 0;
1222 TREE_SET_PERMANENT (t
);
1227 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1228 For example, this can copy a list made of TREE_LIST nodes. */
1235 register tree prev
, next
;
1240 head
= prev
= copy_node (list
);
1241 next
= TREE_CHAIN (list
);
1244 TREE_CHAIN (prev
) = copy_node (next
);
1245 prev
= TREE_CHAIN (prev
);
1246 next
= TREE_CHAIN (next
);
1253 /* Return an IDENTIFIER_NODE whose name is TEXT (a null-terminated string).
1254 If an identifier with that name has previously been referred to,
1255 the same node is returned this time. */
1258 get_identifier (text
)
1259 register const char *text
;
1264 register int len
, hash_len
;
1266 /* Compute length of text in len. */
1267 len
= strlen (text
);
1269 /* Decide how much of that length to hash on */
1271 if (warn_id_clash
&& len
> id_clash_len
)
1272 hash_len
= id_clash_len
;
1274 /* Compute hash code */
1275 hi
= hash_len
* 613 + (unsigned) text
[0];
1276 for (i
= 1; i
< hash_len
; i
+= 2)
1277 hi
= ((hi
* 613) + (unsigned) (text
[i
]));
1279 hi
&= (1 << HASHBITS
) - 1;
1280 hi
%= MAX_HASH_TABLE
;
1282 /* Search table for identifier */
1283 for (idp
= hash_table
[hi
]; idp
; idp
= TREE_CHAIN (idp
))
1284 if (IDENTIFIER_LENGTH (idp
) == len
1285 && IDENTIFIER_POINTER (idp
)[0] == text
[0]
1286 && !bcmp (IDENTIFIER_POINTER (idp
), text
, len
))
1287 return idp
; /* <-- return if found */
1289 /* Not found; optionally warn about a similar identifier */
1290 if (warn_id_clash
&& do_identifier_warnings
&& len
>= id_clash_len
)
1291 for (idp
= hash_table
[hi
]; idp
; idp
= TREE_CHAIN (idp
))
1292 if (!strncmp (IDENTIFIER_POINTER (idp
), text
, id_clash_len
))
1294 warning ("`%s' and `%s' identical in first %d characters",
1295 IDENTIFIER_POINTER (idp
), text
, id_clash_len
);
1299 if (TREE_CODE_LENGTH (IDENTIFIER_NODE
) < 0)
1300 abort (); /* set_identifier_size hasn't been called. */
1302 /* Not found, create one, add to chain */
1303 idp
= make_node (IDENTIFIER_NODE
);
1304 IDENTIFIER_LENGTH (idp
) = len
;
1305 #ifdef GATHER_STATISTICS
1306 id_string_size
+= len
;
1310 IDENTIFIER_POINTER (idp
) = ggc_alloc_string (text
, len
);
1312 IDENTIFIER_POINTER (idp
) = obstack_copy0 (&permanent_obstack
, text
, len
);
1314 TREE_CHAIN (idp
) = hash_table
[hi
];
1315 hash_table
[hi
] = idp
;
1316 return idp
; /* <-- return if created */
1319 /* If an identifier with the name TEXT (a null-terminated string) has
1320 previously been referred to, return that node; otherwise return
1324 maybe_get_identifier (text
)
1325 register const char *text
;
1330 register int len
, hash_len
;
1332 /* Compute length of text in len. */
1333 len
= strlen (text
);
1335 /* Decide how much of that length to hash on */
1337 if (warn_id_clash
&& len
> id_clash_len
)
1338 hash_len
= id_clash_len
;
1340 /* Compute hash code */
1341 hi
= hash_len
* 613 + (unsigned) text
[0];
1342 for (i
= 1; i
< hash_len
; i
+= 2)
1343 hi
= ((hi
* 613) + (unsigned) (text
[i
]));
1345 hi
&= (1 << HASHBITS
) - 1;
1346 hi
%= MAX_HASH_TABLE
;
1348 /* Search table for identifier */
1349 for (idp
= hash_table
[hi
]; idp
; idp
= TREE_CHAIN (idp
))
1350 if (IDENTIFIER_LENGTH (idp
) == len
1351 && IDENTIFIER_POINTER (idp
)[0] == text
[0]
1352 && !bcmp (IDENTIFIER_POINTER (idp
), text
, len
))
1353 return idp
; /* <-- return if found */
1358 /* Enable warnings on similar identifiers (if requested).
1359 Done after the built-in identifiers are created. */
1362 start_identifier_warnings ()
1364 do_identifier_warnings
= 1;
1367 /* Record the size of an identifier node for the language in use.
1368 SIZE is the total size in bytes.
1369 This is called by the language-specific files. This must be
1370 called before allocating any identifiers. */
1373 set_identifier_size (size
)
1376 tree_code_length
[(int) IDENTIFIER_NODE
]
1377 = (size
- sizeof (struct tree_common
)) / sizeof (tree
);
1380 /* Return a newly constructed INTEGER_CST node whose constant value
1381 is specified by the two ints LOW and HI.
1382 The TREE_TYPE is set to `int'.
1384 This function should be used via the `build_int_2' macro. */
1387 build_int_2_wide (low
, hi
)
1388 unsigned HOST_WIDE_INT low
;
1391 register tree t
= make_node (INTEGER_CST
);
1393 TREE_INT_CST_LOW (t
) = low
;
1394 TREE_INT_CST_HIGH (t
) = hi
;
1395 TREE_TYPE (t
) = integer_type_node
;
1399 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1402 build_real (type
, d
)
1409 /* Check for valid float value for this type on this target machine;
1410 if not, can print error message and store a valid value in D. */
1411 #ifdef CHECK_FLOAT_VALUE
1412 CHECK_FLOAT_VALUE (TYPE_MODE (type
), d
, overflow
);
1415 v
= make_node (REAL_CST
);
1416 TREE_TYPE (v
) = type
;
1417 TREE_REAL_CST (v
) = d
;
1418 TREE_OVERFLOW (v
) = TREE_CONSTANT_OVERFLOW (v
) = overflow
;
1422 /* Return a new REAL_CST node whose type is TYPE
1423 and whose value is the integer value of the INTEGER_CST node I. */
1425 #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
1428 real_value_from_int_cst (type
, i
)
1429 tree type ATTRIBUTE_UNUSED
, i
;
1433 #ifdef REAL_ARITHMETIC
1434 /* Clear all bits of the real value type so that we can later do
1435 bitwise comparisons to see if two values are the same. */
1436 bzero ((char *) &d
, sizeof d
);
1438 if (! TREE_UNSIGNED (TREE_TYPE (i
)))
1439 REAL_VALUE_FROM_INT (d
, TREE_INT_CST_LOW (i
), TREE_INT_CST_HIGH (i
),
1442 REAL_VALUE_FROM_UNSIGNED_INT (d
, TREE_INT_CST_LOW (i
),
1443 TREE_INT_CST_HIGH (i
), TYPE_MODE (type
));
1444 #else /* not REAL_ARITHMETIC */
1445 /* Some 386 compilers mishandle unsigned int to float conversions,
1446 so introduce a temporary variable E to avoid those bugs. */
1447 if (TREE_INT_CST_HIGH (i
) < 0 && ! TREE_UNSIGNED (TREE_TYPE (i
)))
1451 d
= (double) (~ TREE_INT_CST_HIGH (i
));
1452 e
= ((double) ((HOST_WIDE_INT
) 1 << (HOST_BITS_PER_WIDE_INT
/ 2))
1453 * (double) ((HOST_WIDE_INT
) 1 << (HOST_BITS_PER_WIDE_INT
/ 2)));
1455 e
= (double) (~ TREE_INT_CST_LOW (i
));
1463 d
= (double) (unsigned HOST_WIDE_INT
) TREE_INT_CST_HIGH (i
);
1464 e
= ((double) ((HOST_WIDE_INT
) 1 << (HOST_BITS_PER_WIDE_INT
/ 2))
1465 * (double) ((HOST_WIDE_INT
) 1 << (HOST_BITS_PER_WIDE_INT
/ 2)));
1467 e
= (double) TREE_INT_CST_LOW (i
);
1470 #endif /* not REAL_ARITHMETIC */
1474 /* Args to pass to and from build_real_from_int_cst_1. */
1478 tree type
; /* Input: type to conver to. */
1479 tree i
; /* Input: operand to convert */
1480 REAL_VALUE_TYPE d
; /* Output: floating point value. */
1483 /* Convert an integer to a floating point value while protected by a floating
1484 point exception handler. */
1487 build_real_from_int_cst_1 (data
)
1490 struct brfic_args
*args
= (struct brfic_args
*) data
;
1492 #ifdef REAL_ARITHMETIC
1493 args
->d
= real_value_from_int_cst (args
->type
, args
->i
);
1496 = REAL_VALUE_TRUNCATE (TYPE_MODE (args
->type
),
1497 real_value_from_int_cst (args
->type
, args
->i
));
1501 /* Given a tree representing an integer constant I, return a tree
1502 representing the same value as a floating-point constant of type TYPE.
1503 We cannot perform this operation if there is no way of doing arithmetic
1504 on floating-point values. */
1507 build_real_from_int_cst (type
, i
)
1512 int overflow
= TREE_OVERFLOW (i
);
1514 struct brfic_args args
;
1516 v
= make_node (REAL_CST
);
1517 TREE_TYPE (v
) = type
;
1519 /* Setup input for build_real_from_int_cst_1() */
1523 if (do_float_handler (build_real_from_int_cst_1
, (PTR
) &args
))
1524 /* Receive output from build_real_from_int_cst_1() */
1528 /* We got an exception from build_real_from_int_cst_1() */
1533 /* Check for valid float value for this type on this target machine. */
1535 #ifdef CHECK_FLOAT_VALUE
1536 CHECK_FLOAT_VALUE (TYPE_MODE (type
), d
, overflow
);
1539 TREE_REAL_CST (v
) = d
;
1540 TREE_OVERFLOW (v
) = TREE_CONSTANT_OVERFLOW (v
) = overflow
;
1544 #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
1546 /* Return a newly constructed STRING_CST node whose value is
1547 the LEN characters at STR.
1548 The TREE_TYPE is not initialized. */
1551 build_string (len
, str
)
1555 /* Put the string in saveable_obstack since it will be placed in the RTL
1556 for an "asm" statement and will also be kept around a while if
1557 deferring constant output in varasm.c. */
1559 register tree s
= make_node (STRING_CST
);
1561 TREE_STRING_LENGTH (s
) = len
;
1563 TREE_STRING_POINTER (s
) = ggc_alloc_string (str
, len
);
1565 TREE_STRING_POINTER (s
) = obstack_copy0 (saveable_obstack
, str
, len
);
1570 /* Return a newly constructed COMPLEX_CST node whose value is
1571 specified by the real and imaginary parts REAL and IMAG.
1572 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1573 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1576 build_complex (type
, real
, imag
)
1580 register tree t
= make_node (COMPLEX_CST
);
1582 TREE_REALPART (t
) = real
;
1583 TREE_IMAGPART (t
) = imag
;
1584 TREE_TYPE (t
) = type
? type
: build_complex_type (TREE_TYPE (real
));
1585 TREE_OVERFLOW (t
) = TREE_OVERFLOW (real
) | TREE_OVERFLOW (imag
);
1586 TREE_CONSTANT_OVERFLOW (t
)
1587 = TREE_CONSTANT_OVERFLOW (real
) | TREE_CONSTANT_OVERFLOW (imag
);
1591 /* Build a newly constructed TREE_VEC node of length LEN. */
1598 register int length
= (len
-1) * sizeof (tree
) + sizeof (struct tree_vec
);
1599 register struct obstack
*obstack
= current_obstack
;
1601 #ifdef GATHER_STATISTICS
1602 tree_node_counts
[(int)vec_kind
]++;
1603 tree_node_sizes
[(int)vec_kind
] += length
;
1607 t
= ggc_alloc_tree (length
);
1609 t
= (tree
) obstack_alloc (obstack
, length
);
1611 memset ((PTR
) t
, 0, length
);
1612 TREE_SET_CODE (t
, TREE_VEC
);
1613 TREE_VEC_LENGTH (t
) = len
;
1614 TREE_SET_PERMANENT (t
);
1619 /* Return 1 if EXPR is the integer constant zero or a complex constant
1623 integer_zerop (expr
)
1628 return ((TREE_CODE (expr
) == INTEGER_CST
1629 && ! TREE_CONSTANT_OVERFLOW (expr
)
1630 && TREE_INT_CST_LOW (expr
) == 0
1631 && TREE_INT_CST_HIGH (expr
) == 0)
1632 || (TREE_CODE (expr
) == COMPLEX_CST
1633 && integer_zerop (TREE_REALPART (expr
))
1634 && integer_zerop (TREE_IMAGPART (expr
))));
1637 /* Return 1 if EXPR is the integer constant one or the corresponding
1638 complex constant. */
1646 return ((TREE_CODE (expr
) == INTEGER_CST
1647 && ! TREE_CONSTANT_OVERFLOW (expr
)
1648 && TREE_INT_CST_LOW (expr
) == 1
1649 && TREE_INT_CST_HIGH (expr
) == 0)
1650 || (TREE_CODE (expr
) == COMPLEX_CST
1651 && integer_onep (TREE_REALPART (expr
))
1652 && integer_zerop (TREE_IMAGPART (expr
))));
1655 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
1656 it contains. Likewise for the corresponding complex constant. */
1659 integer_all_onesp (expr
)
1667 if (TREE_CODE (expr
) == COMPLEX_CST
1668 && integer_all_onesp (TREE_REALPART (expr
))
1669 && integer_zerop (TREE_IMAGPART (expr
)))
1672 else if (TREE_CODE (expr
) != INTEGER_CST
1673 || TREE_CONSTANT_OVERFLOW (expr
))
1676 uns
= TREE_UNSIGNED (TREE_TYPE (expr
));
1678 return (TREE_INT_CST_LOW (expr
) == ~ (unsigned HOST_WIDE_INT
) 0
1679 && TREE_INT_CST_HIGH (expr
) == -1);
1681 /* Note that using TYPE_PRECISION here is wrong. We care about the
1682 actual bits, not the (arbitrary) range of the type. */
1683 prec
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr
)));
1684 if (prec
>= HOST_BITS_PER_WIDE_INT
)
1686 HOST_WIDE_INT high_value
;
1689 shift_amount
= prec
- HOST_BITS_PER_WIDE_INT
;
1691 if (shift_amount
> HOST_BITS_PER_WIDE_INT
)
1692 /* Can not handle precisions greater than twice the host int size. */
1694 else if (shift_amount
== HOST_BITS_PER_WIDE_INT
)
1695 /* Shifting by the host word size is undefined according to the ANSI
1696 standard, so we must handle this as a special case. */
1699 high_value
= ((HOST_WIDE_INT
) 1 << shift_amount
) - 1;
1701 return (TREE_INT_CST_LOW (expr
) == ~ (unsigned HOST_WIDE_INT
) 0
1702 && TREE_INT_CST_HIGH (expr
) == high_value
);
1705 return TREE_INT_CST_LOW (expr
) == ((unsigned HOST_WIDE_INT
) 1 << prec
) - 1;
1708 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1712 integer_pow2p (expr
)
1716 HOST_WIDE_INT high
, low
;
1720 if (TREE_CODE (expr
) == COMPLEX_CST
1721 && integer_pow2p (TREE_REALPART (expr
))
1722 && integer_zerop (TREE_IMAGPART (expr
)))
1725 if (TREE_CODE (expr
) != INTEGER_CST
|| TREE_CONSTANT_OVERFLOW (expr
))
1728 prec
= (POINTER_TYPE_P (TREE_TYPE (expr
))
1729 ? POINTER_SIZE
: TYPE_PRECISION (TREE_TYPE (expr
)));
1730 high
= TREE_INT_CST_HIGH (expr
);
1731 low
= TREE_INT_CST_LOW (expr
);
1733 /* First clear all bits that are beyond the type's precision in case
1734 we've been sign extended. */
1736 if (prec
== 2 * HOST_BITS_PER_WIDE_INT
)
1738 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1739 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1743 if (prec
< HOST_BITS_PER_WIDE_INT
)
1744 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1747 if (high
== 0 && low
== 0)
1750 return ((high
== 0 && (low
& (low
- 1)) == 0)
1751 || (low
== 0 && (high
& (high
- 1)) == 0));
1754 /* Return the power of two represented by a tree node known to be a
1762 HOST_WIDE_INT high
, low
;
1766 if (TREE_CODE (expr
) == COMPLEX_CST
)
1767 return tree_log2 (TREE_REALPART (expr
));
1769 prec
= (POINTER_TYPE_P (TREE_TYPE (expr
))
1770 ? POINTER_SIZE
: TYPE_PRECISION (TREE_TYPE (expr
)));
1772 high
= TREE_INT_CST_HIGH (expr
);
1773 low
= TREE_INT_CST_LOW (expr
);
1775 /* First clear all bits that are beyond the type's precision in case
1776 we've been sign extended. */
1778 if (prec
== 2 * HOST_BITS_PER_WIDE_INT
)
1780 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1781 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1785 if (prec
< HOST_BITS_PER_WIDE_INT
)
1786 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1789 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ exact_log2 (high
)
1790 : exact_log2 (low
));
1793 /* Similar, but return the largest integer Y such that 2 ** Y is less
1794 than or equal to EXPR. */
1797 tree_floor_log2 (expr
)
1801 HOST_WIDE_INT high
, low
;
1805 if (TREE_CODE (expr
) == COMPLEX_CST
)
1806 return tree_log2 (TREE_REALPART (expr
));
1808 prec
= (POINTER_TYPE_P (TREE_TYPE (expr
))
1809 ? POINTER_SIZE
: TYPE_PRECISION (TREE_TYPE (expr
)));
1811 high
= TREE_INT_CST_HIGH (expr
);
1812 low
= TREE_INT_CST_LOW (expr
);
1814 /* First clear all bits that are beyond the type's precision in case
1815 we've been sign extended. Ignore if type's precision hasn't been set
1816 since what we are doing is setting it. */
1818 if (prec
== 2 * HOST_BITS_PER_WIDE_INT
|| prec
== 0)
1820 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1821 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1825 if (prec
< HOST_BITS_PER_WIDE_INT
)
1826 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1829 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ floor_log2 (high
)
1830 : floor_log2 (low
));
1833 /* Return 1 if EXPR is the real constant zero. */
1841 return ((TREE_CODE (expr
) == REAL_CST
1842 && ! TREE_CONSTANT_OVERFLOW (expr
)
1843 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst0
))
1844 || (TREE_CODE (expr
) == COMPLEX_CST
1845 && real_zerop (TREE_REALPART (expr
))
1846 && real_zerop (TREE_IMAGPART (expr
))));
1849 /* Return 1 if EXPR is the real constant one in real or complex form. */
1857 return ((TREE_CODE (expr
) == REAL_CST
1858 && ! TREE_CONSTANT_OVERFLOW (expr
)
1859 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst1
))
1860 || (TREE_CODE (expr
) == COMPLEX_CST
1861 && real_onep (TREE_REALPART (expr
))
1862 && real_zerop (TREE_IMAGPART (expr
))));
1865 /* Return 1 if EXPR is the real constant two. */
1873 return ((TREE_CODE (expr
) == REAL_CST
1874 && ! TREE_CONSTANT_OVERFLOW (expr
)
1875 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst2
))
1876 || (TREE_CODE (expr
) == COMPLEX_CST
1877 && real_twop (TREE_REALPART (expr
))
1878 && real_zerop (TREE_IMAGPART (expr
))));
1881 /* Nonzero if EXP is a constant or a cast of a constant. */
1884 really_constant_p (exp
)
1887 /* This is not quite the same as STRIP_NOPS. It does more. */
1888 while (TREE_CODE (exp
) == NOP_EXPR
1889 || TREE_CODE (exp
) == CONVERT_EXPR
1890 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
1891 exp
= TREE_OPERAND (exp
, 0);
1892 return TREE_CONSTANT (exp
);
1895 /* Return first list element whose TREE_VALUE is ELEM.
1896 Return 0 if ELEM is not in LIST. */
1899 value_member (elem
, list
)
1904 if (elem
== TREE_VALUE (list
))
1906 list
= TREE_CHAIN (list
);
1911 /* Return first list element whose TREE_PURPOSE is ELEM.
1912 Return 0 if ELEM is not in LIST. */
1915 purpose_member (elem
, list
)
1920 if (elem
== TREE_PURPOSE (list
))
1922 list
= TREE_CHAIN (list
);
1927 /* Return first list element whose BINFO_TYPE is ELEM.
1928 Return 0 if ELEM is not in LIST. */
1931 binfo_member (elem
, list
)
1936 if (elem
== BINFO_TYPE (list
))
1938 list
= TREE_CHAIN (list
);
1943 /* Return nonzero if ELEM is part of the chain CHAIN. */
1946 chain_member (elem
, chain
)
1953 chain
= TREE_CHAIN (chain
);
1959 /* Return nonzero if ELEM is equal to TREE_VALUE (CHAIN) for any piece of
1960 chain CHAIN. This and the next function are currently unused, but
1961 are retained for completeness. */
1964 chain_member_value (elem
, chain
)
1969 if (elem
== TREE_VALUE (chain
))
1971 chain
= TREE_CHAIN (chain
);
1977 /* Return nonzero if ELEM is equal to TREE_PURPOSE (CHAIN)
1978 for any piece of chain CHAIN. */
1981 chain_member_purpose (elem
, chain
)
1986 if (elem
== TREE_PURPOSE (chain
))
1988 chain
= TREE_CHAIN (chain
);
1994 /* Return the length of a chain of nodes chained through TREE_CHAIN.
1995 We expect a null pointer to mark the end of the chain.
1996 This is the Lisp primitive `length'. */
2003 register int len
= 0;
2005 for (tail
= t
; tail
; tail
= TREE_CHAIN (tail
))
2011 /* Returns the number of FIELD_DECLs in TYPE. */
2014 fields_length (type
)
2017 tree t
= TYPE_FIELDS (type
);
2020 for (; t
; t
= TREE_CHAIN (t
))
2021 if (TREE_CODE (t
) == FIELD_DECL
)
2027 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2028 by modifying the last node in chain 1 to point to chain 2.
2029 This is the Lisp primitive `nconc'. */
2039 #ifdef ENABLE_TREE_CHECKING
2043 for (t1
= op1
; TREE_CHAIN (t1
); t1
= TREE_CHAIN (t1
))
2045 TREE_CHAIN (t1
) = op2
;
2046 #ifdef ENABLE_TREE_CHECKING
2047 for (t2
= op2
; t2
; t2
= TREE_CHAIN (t2
))
2049 abort (); /* Circularity created. */
2056 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2060 register tree chain
;
2064 while ((next
= TREE_CHAIN (chain
)))
2069 /* Reverse the order of elements in the chain T,
2070 and return the new head of the chain (old last element). */
2076 register tree prev
= 0, decl
, next
;
2077 for (decl
= t
; decl
; decl
= next
)
2079 next
= TREE_CHAIN (decl
);
2080 TREE_CHAIN (decl
) = prev
;
2086 /* Given a chain CHAIN of tree nodes,
2087 construct and return a list of those nodes. */
2093 tree result
= NULL_TREE
;
2094 tree in_tail
= chain
;
2095 tree out_tail
= NULL_TREE
;
2099 tree next
= tree_cons (NULL_TREE
, in_tail
, NULL_TREE
);
2101 TREE_CHAIN (out_tail
) = next
;
2105 in_tail
= TREE_CHAIN (in_tail
);
2111 /* Return a newly created TREE_LIST node whose
2112 purpose and value fields are PARM and VALUE. */
2115 build_tree_list (parm
, value
)
2118 register tree t
= make_node (TREE_LIST
);
2119 TREE_PURPOSE (t
) = parm
;
2120 TREE_VALUE (t
) = value
;
2124 /* Similar, but build on the temp_decl_obstack. */
2127 build_decl_list (parm
, value
)
2131 register struct obstack
*ambient_obstack
= current_obstack
;
2133 current_obstack
= &temp_decl_obstack
;
2134 node
= build_tree_list (parm
, value
);
2135 current_obstack
= ambient_obstack
;
2139 /* Similar, but build on the expression_obstack. */
2142 build_expr_list (parm
, value
)
2146 register struct obstack
*ambient_obstack
= current_obstack
;
2148 current_obstack
= expression_obstack
;
2149 node
= build_tree_list (parm
, value
);
2150 current_obstack
= ambient_obstack
;
2154 /* Return a newly created TREE_LIST node whose
2155 purpose and value fields are PARM and VALUE
2156 and whose TREE_CHAIN is CHAIN. */
2159 tree_cons (purpose
, value
, chain
)
2160 tree purpose
, value
, chain
;
2165 node
= ggc_alloc_tree (sizeof (struct tree_list
));
2167 node
= (tree
) obstack_alloc (current_obstack
, sizeof (struct tree_list
));
2169 memset (node
, 0, sizeof (struct tree_common
));
2171 #ifdef GATHER_STATISTICS
2172 tree_node_counts
[(int) x_kind
]++;
2173 tree_node_sizes
[(int) x_kind
] += sizeof (struct tree_list
);
2176 TREE_SET_CODE (node
, TREE_LIST
);
2177 TREE_SET_PERMANENT (node
);
2179 TREE_CHAIN (node
) = chain
;
2180 TREE_PURPOSE (node
) = purpose
;
2181 TREE_VALUE (node
) = value
;
2185 /* Similar, but build on the temp_decl_obstack. */
2188 decl_tree_cons (purpose
, value
, chain
)
2189 tree purpose
, value
, chain
;
2192 register struct obstack
*ambient_obstack
= current_obstack
;
2194 current_obstack
= &temp_decl_obstack
;
2195 node
= tree_cons (purpose
, value
, chain
);
2196 current_obstack
= ambient_obstack
;
2200 /* Similar, but build on the expression_obstack. */
2203 expr_tree_cons (purpose
, value
, chain
)
2204 tree purpose
, value
, chain
;
2207 register struct obstack
*ambient_obstack
= current_obstack
;
2209 current_obstack
= expression_obstack
;
2210 node
= tree_cons (purpose
, value
, chain
);
2211 current_obstack
= ambient_obstack
;
2215 /* Same as `tree_cons' but make a permanent object. */
2218 perm_tree_cons (purpose
, value
, chain
)
2219 tree purpose
, value
, chain
;
2222 register struct obstack
*ambient_obstack
= current_obstack
;
2224 current_obstack
= &permanent_obstack
;
2225 node
= tree_cons (purpose
, value
, chain
);
2226 current_obstack
= ambient_obstack
;
2230 /* Same as `tree_cons', but make this node temporary, regardless. */
2233 temp_tree_cons (purpose
, value
, chain
)
2234 tree purpose
, value
, chain
;
2237 register struct obstack
*ambient_obstack
= current_obstack
;
2239 current_obstack
= &temporary_obstack
;
2240 node
= tree_cons (purpose
, value
, chain
);
2241 current_obstack
= ambient_obstack
;
2245 /* Same as `tree_cons', but save this node if the function's RTL is saved. */
2248 saveable_tree_cons (purpose
, value
, chain
)
2249 tree purpose
, value
, chain
;
2252 register struct obstack
*ambient_obstack
= current_obstack
;
2254 current_obstack
= saveable_obstack
;
2255 node
= tree_cons (purpose
, value
, chain
);
2256 current_obstack
= ambient_obstack
;
2260 /* Return the size nominally occupied by an object of type TYPE
2261 when it resides in memory. The value is measured in units of bytes,
2262 and its data type is that normally used for type sizes
2263 (which is the first type created by make_signed_type or
2264 make_unsigned_type). */
2267 size_in_bytes (type
)
2272 if (type
== error_mark_node
)
2273 return integer_zero_node
;
2275 type
= TYPE_MAIN_VARIANT (type
);
2276 t
= TYPE_SIZE_UNIT (type
);
2280 incomplete_type_error (NULL_TREE
, type
);
2281 return size_zero_node
;
2284 if (TREE_CODE (t
) == INTEGER_CST
)
2285 force_fit_type (t
, 0);
2290 /* Return the size of TYPE (in bytes) as a wide integer
2291 or return -1 if the size can vary or is larger than an integer. */
2294 int_size_in_bytes (type
)
2299 if (type
== error_mark_node
)
2302 type
= TYPE_MAIN_VARIANT (type
);
2303 t
= TYPE_SIZE_UNIT (type
);
2305 || TREE_CODE (t
) != INTEGER_CST
2306 || TREE_OVERFLOW (t
)
2307 || TREE_INT_CST_HIGH (t
) != 0
2308 /* If the result would appear negative, it's too big to represent. */
2309 || (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0)
2312 return TREE_INT_CST_LOW (t
);
2315 /* Return the bit position of FIELD, in bits from the start of the record.
2316 This is a tree of type bitsizetype. */
2319 bit_position (field
)
2323 return bit_from_pos (DECL_FIELD_OFFSET (field
),
2324 DECL_FIELD_BIT_OFFSET (field
));
2327 /* Likewise, but return as an integer. Abort if it cannot be represented
2328 in that way (since it could be a signed value, we don't have the option
2329 of returning -1 like int_size_in_byte can. */
2332 int_bit_position (field
)
2335 return tree_low_cst (bit_position (field
), 0);
2338 /* Return the byte position of FIELD, in bytes from the start of the record.
2339 This is a tree of type sizetype. */
2342 byte_position (field
)
2345 return byte_from_pos (DECL_FIELD_OFFSET (field
),
2346 DECL_FIELD_BIT_OFFSET (field
));
2349 /* Likewise, but return as an integer. Abort if it cannot be represented
2350 in that way (since it could be a signed value, we don't have the option
2351 of returning -1 like int_size_in_byte can. */
2354 int_byte_position (field
)
2357 return tree_low_cst (byte_position (field
), 0);
2360 /* Return the strictest alignment, in bits, that T is known to have. */
2366 unsigned int align0
, align1
;
2368 switch (TREE_CODE (t
))
2370 case NOP_EXPR
: case CONVERT_EXPR
: case NON_LVALUE_EXPR
:
2371 /* If we have conversions, we know that the alignment of the
2372 object must meet each of the alignments of the types. */
2373 align0
= expr_align (TREE_OPERAND (t
, 0));
2374 align1
= TYPE_ALIGN (TREE_TYPE (t
));
2375 return MAX (align0
, align1
);
2377 case SAVE_EXPR
: case COMPOUND_EXPR
: case MODIFY_EXPR
:
2378 case INIT_EXPR
: case TARGET_EXPR
: case WITH_CLEANUP_EXPR
:
2379 case WITH_RECORD_EXPR
: case CLEANUP_POINT_EXPR
: case UNSAVE_EXPR
:
2380 /* These don't change the alignment of an object. */
2381 return expr_align (TREE_OPERAND (t
, 0));
2384 /* The best we can do is say that the alignment is the least aligned
2386 align0
= expr_align (TREE_OPERAND (t
, 1));
2387 align1
= expr_align (TREE_OPERAND (t
, 2));
2388 return MIN (align0
, align1
);
2390 case LABEL_DECL
: case CONST_DECL
:
2391 case VAR_DECL
: case PARM_DECL
: case RESULT_DECL
:
2392 if (DECL_ALIGN (t
) != 0)
2393 return DECL_ALIGN (t
);
2397 return FUNCTION_BOUNDARY
;
2403 /* Otherwise take the alignment from that of the type. */
2404 return TYPE_ALIGN (TREE_TYPE (t
));
2407 /* Return, as a tree node, the number of elements for TYPE (which is an
2408 ARRAY_TYPE) minus one. This counts only elements of the top array. */
2411 array_type_nelts (type
)
2414 tree index_type
, min
, max
;
2416 /* If they did it with unspecified bounds, then we should have already
2417 given an error about it before we got here. */
2418 if (! TYPE_DOMAIN (type
))
2419 return error_mark_node
;
2421 index_type
= TYPE_DOMAIN (type
);
2422 min
= TYPE_MIN_VALUE (index_type
);
2423 max
= TYPE_MAX_VALUE (index_type
);
2425 return (integer_zerop (min
)
2427 : fold (build (MINUS_EXPR
, TREE_TYPE (max
), max
, min
)));
2430 /* Return nonzero if arg is static -- a reference to an object in
2431 static storage. This is not the same as the C meaning of `static'. */
2437 switch (TREE_CODE (arg
))
2440 /* Nested functions aren't static, since taking their address
2441 involves a trampoline. */
2442 return (decl_function_context (arg
) == 0 || DECL_NO_STATIC_CHAIN (arg
))
2443 && ! DECL_NON_ADDR_CONST_P (arg
);
2446 return (TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2447 && ! DECL_NON_ADDR_CONST_P (arg
);
2450 return TREE_STATIC (arg
);
2456 /* If we are referencing a bitfield, we can't evaluate an
2457 ADDR_EXPR at compile time and so it isn't a constant. */
2459 return (! DECL_BIT_FIELD (TREE_OPERAND (arg
, 1))
2460 && staticp (TREE_OPERAND (arg
, 0)));
2466 /* This case is technically correct, but results in setting
2467 TREE_CONSTANT on ADDR_EXPRs that cannot be evaluated at
2470 return TREE_CONSTANT (TREE_OPERAND (arg
, 0));
2474 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg
))) == INTEGER_CST
2475 && TREE_CODE (TREE_OPERAND (arg
, 1)) == INTEGER_CST
)
2476 return staticp (TREE_OPERAND (arg
, 0));
2483 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
2484 Do this to any expression which may be used in more than one place,
2485 but must be evaluated only once.
2487 Normally, expand_expr would reevaluate the expression each time.
2488 Calling save_expr produces something that is evaluated and recorded
2489 the first time expand_expr is called on it. Subsequent calls to
2490 expand_expr just reuse the recorded value.
2492 The call to expand_expr that generates code that actually computes
2493 the value is the first call *at compile time*. Subsequent calls
2494 *at compile time* generate code to use the saved value.
2495 This produces correct result provided that *at run time* control
2496 always flows through the insns made by the first expand_expr
2497 before reaching the other places where the save_expr was evaluated.
2498 You, the caller of save_expr, must make sure this is so.
2500 Constants, and certain read-only nodes, are returned with no
2501 SAVE_EXPR because that is safe. Expressions containing placeholders
2502 are not touched; see tree.def for an explanation of what these
2509 register tree t
= fold (expr
);
2511 /* We don't care about whether this can be used as an lvalue in this
2513 while (TREE_CODE (t
) == NON_LVALUE_EXPR
)
2514 t
= TREE_OPERAND (t
, 0);
2516 /* If the tree evaluates to a constant, then we don't want to hide that
2517 fact (i.e. this allows further folding, and direct checks for constants).
2518 However, a read-only object that has side effects cannot be bypassed.
2519 Since it is no problem to reevaluate literals, we just return the
2522 if (TREE_CONSTANT (t
) || (TREE_READONLY (t
) && ! TREE_SIDE_EFFECTS (t
))
2523 || TREE_CODE (t
) == SAVE_EXPR
|| TREE_CODE (t
) == ERROR_MARK
)
2526 /* If T contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
2527 it means that the size or offset of some field of an object depends on
2528 the value within another field.
2530 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
2531 and some variable since it would then need to be both evaluated once and
2532 evaluated more than once. Front-ends must assure this case cannot
2533 happen by surrounding any such subexpressions in their own SAVE_EXPR
2534 and forcing evaluation at the proper time. */
2535 if (contains_placeholder_p (t
))
2538 t
= build (SAVE_EXPR
, TREE_TYPE (expr
), t
, current_function_decl
, NULL_TREE
);
2540 /* This expression might be placed ahead of a jump to ensure that the
2541 value was computed on both sides of the jump. So make sure it isn't
2542 eliminated as dead. */
2543 TREE_SIDE_EFFECTS (t
) = 1;
2547 /* Arrange for an expression to be expanded multiple independent
2548 times. This is useful for cleanup actions, as the backend can
2549 expand them multiple times in different places. */
2557 /* If this is already protected, no sense in protecting it again. */
2558 if (TREE_CODE (expr
) == UNSAVE_EXPR
)
2561 t
= build1 (UNSAVE_EXPR
, TREE_TYPE (expr
), expr
);
2562 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (expr
);
2566 /* Returns the index of the first non-tree operand for CODE, or the number
2567 of operands if all are trees. */
2571 enum tree_code code
;
2577 case GOTO_SUBROUTINE_EXPR
:
2582 case WITH_CLEANUP_EXPR
:
2583 /* Should be defined to be 2. */
2585 case METHOD_CALL_EXPR
:
2588 return TREE_CODE_LENGTH (code
);
2592 /* Perform any modifications to EXPR required when it is unsaved. Does
2593 not recurse into EXPR's subtrees. */
2596 unsave_expr_1 (expr
)
2599 switch (TREE_CODE (expr
))
2602 if (! SAVE_EXPR_PERSISTENT_P (expr
))
2603 SAVE_EXPR_RTL (expr
) = 0;
2607 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
2608 It's OK for this to happen if it was part of a subtree that
2609 isn't immediately expanded, such as operand 2 of another
2611 if (TREE_OPERAND (expr
, 1))
2614 TREE_OPERAND (expr
, 1) = TREE_OPERAND (expr
, 3);
2615 TREE_OPERAND (expr
, 3) = NULL_TREE
;
2619 /* I don't yet know how to emit a sequence multiple times. */
2620 if (RTL_EXPR_SEQUENCE (expr
) != 0)
2625 CALL_EXPR_RTL (expr
) = 0;
2629 if (lang_unsave_expr_now
!= 0)
2630 (*lang_unsave_expr_now
) (expr
);
2635 /* Helper function for unsave_expr_now. */
2638 unsave_expr_now_r (expr
)
2641 enum tree_code code
;
2643 /* There's nothing to do for NULL_TREE. */
2647 unsave_expr_1 (expr
);
2649 code
= TREE_CODE (expr
);
2650 switch (TREE_CODE_CLASS (code
))
2652 case 'c': /* a constant */
2653 case 't': /* a type node */
2654 case 'd': /* A decl node */
2655 case 'b': /* A block node */
2658 case 'x': /* miscellaneous: e.g., identifier, TREE_LIST or ERROR_MARK. */
2659 if (code
== TREE_LIST
)
2661 unsave_expr_now_r (TREE_VALUE (expr
));
2662 unsave_expr_now_r (TREE_CHAIN (expr
));
2666 case 'e': /* an expression */
2667 case 'r': /* a reference */
2668 case 's': /* an expression with side effects */
2669 case '<': /* a comparison expression */
2670 case '2': /* a binary arithmetic expression */
2671 case '1': /* a unary arithmetic expression */
2675 for (i
= first_rtl_op (code
) - 1; i
>= 0; i
--)
2676 unsave_expr_now_r (TREE_OPERAND (expr
, i
));
2685 /* Modify a tree in place so that all the evaluate only once things
2686 are cleared out. Return the EXPR given. */
2689 unsave_expr_now (expr
)
2692 if (lang_unsave
!= 0)
2693 (*lang_unsave
) (&expr
);
2695 unsave_expr_now_r (expr
);
2700 /* Return 0 if it is safe to evaluate EXPR multiple times,
2701 return 1 if it is safe if EXPR is unsaved afterward, or
2702 return 2 if it is completely unsafe.
2704 This assumes that CALL_EXPRs and TARGET_EXPRs are never replicated in
2705 an expression tree, so that it safe to unsave them and the surrounding
2706 context will be correct.
2708 SAVE_EXPRs basically *only* appear replicated in an expression tree,
2709 occasionally across the whole of a function. It is therefore only
2710 safe to unsave a SAVE_EXPR if you know that all occurrences appear
2711 below the UNSAVE_EXPR.
2713 RTL_EXPRs consume their rtl during evaluation. It is therefore
2714 never possible to unsave them. */
2717 unsafe_for_reeval (expr
)
2721 enum tree_code code
;
2726 if (expr
== NULL_TREE
)
2729 code
= TREE_CODE (expr
);
2730 first_rtl
= first_rtl_op (code
);
2739 for (exp
= expr
; exp
!= 0; exp
= TREE_CHAIN (exp
))
2741 tmp
= unsafe_for_reeval (TREE_VALUE (exp
));
2742 unsafeness
= MAX (tmp
, unsafeness
);
2748 tmp
= unsafe_for_reeval (TREE_OPERAND (expr
, 1));
2749 return MAX (tmp
, 1);
2756 /* ??? Add a lang hook if it becomes necessary. */
2760 switch (TREE_CODE_CLASS (code
))
2762 case 'c': /* a constant */
2763 case 't': /* a type node */
2764 case 'x': /* something random, like an identifier or an ERROR_MARK. */
2765 case 'd': /* A decl node */
2766 case 'b': /* A block node */
2769 case 'e': /* an expression */
2770 case 'r': /* a reference */
2771 case 's': /* an expression with side effects */
2772 case '<': /* a comparison expression */
2773 case '2': /* a binary arithmetic expression */
2774 case '1': /* a unary arithmetic expression */
2775 for (i
= first_rtl
- 1; i
>= 0; i
--)
2777 tmp
= unsafe_for_reeval (TREE_OPERAND (expr
, i
));
2778 unsafeness
= MAX (tmp
, unsafeness
);
2788 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
2789 or offset that depends on a field within a record. */
2792 contains_placeholder_p (exp
)
2795 register enum tree_code code
= TREE_CODE (exp
);
2798 /* If we have a WITH_RECORD_EXPR, it "cancels" any PLACEHOLDER_EXPR
2799 in it since it is supplying a value for it. */
2800 if (code
== WITH_RECORD_EXPR
)
2802 else if (code
== PLACEHOLDER_EXPR
)
2805 switch (TREE_CODE_CLASS (code
))
2808 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2809 position computations since they will be converted into a
2810 WITH_RECORD_EXPR involving the reference, which will assume
2811 here will be valid. */
2812 return contains_placeholder_p (TREE_OPERAND (exp
, 0));
2815 if (code
== TREE_LIST
)
2816 return (contains_placeholder_p (TREE_VALUE (exp
))
2817 || (TREE_CHAIN (exp
) != 0
2818 && contains_placeholder_p (TREE_CHAIN (exp
))));
2827 /* Ignoring the first operand isn't quite right, but works best. */
2828 return contains_placeholder_p (TREE_OPERAND (exp
, 1));
2835 return (contains_placeholder_p (TREE_OPERAND (exp
, 0))
2836 || contains_placeholder_p (TREE_OPERAND (exp
, 1))
2837 || contains_placeholder_p (TREE_OPERAND (exp
, 2)));
2840 /* If we already know this doesn't have a placeholder, don't
2842 if (SAVE_EXPR_NOPLACEHOLDER (exp
) || SAVE_EXPR_RTL (exp
) != 0)
2845 SAVE_EXPR_NOPLACEHOLDER (exp
) = 1;
2846 result
= contains_placeholder_p (TREE_OPERAND (exp
, 0));
2848 SAVE_EXPR_NOPLACEHOLDER (exp
) = 0;
2853 return (TREE_OPERAND (exp
, 1) != 0
2854 && contains_placeholder_p (TREE_OPERAND (exp
, 1)));
2860 switch (TREE_CODE_LENGTH (code
))
2863 return contains_placeholder_p (TREE_OPERAND (exp
, 0));
2865 return (contains_placeholder_p (TREE_OPERAND (exp
, 0))
2866 || contains_placeholder_p (TREE_OPERAND (exp
, 1)));
2877 /* Return 1 if EXP contains any expressions that produce cleanups for an
2878 outer scope to deal with. Used by fold. */
2886 if (! TREE_SIDE_EFFECTS (exp
))
2889 switch (TREE_CODE (exp
))
2892 case GOTO_SUBROUTINE_EXPR
:
2893 case WITH_CLEANUP_EXPR
:
2896 case CLEANUP_POINT_EXPR
:
2900 for (exp
= TREE_OPERAND (exp
, 1); exp
; exp
= TREE_CHAIN (exp
))
2902 cmp
= has_cleanups (TREE_VALUE (exp
));
2912 /* This general rule works for most tree codes. All exceptions should be
2913 handled above. If this is a language-specific tree code, we can't
2914 trust what might be in the operand, so say we don't know
2916 if ((int) TREE_CODE (exp
) >= (int) LAST_AND_UNUSED_TREE_CODE
)
2919 nops
= first_rtl_op (TREE_CODE (exp
));
2920 for (i
= 0; i
< nops
; i
++)
2921 if (TREE_OPERAND (exp
, i
) != 0)
2923 int type
= TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp
, i
)));
2924 if (type
== 'e' || type
== '<' || type
== '1' || type
== '2'
2925 || type
== 'r' || type
== 's')
2927 cmp
= has_cleanups (TREE_OPERAND (exp
, i
));
2936 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
2937 return a tree with all occurrences of references to F in a
2938 PLACEHOLDER_EXPR replaced by R. Note that we assume here that EXP
2939 contains only arithmetic expressions or a CALL_EXPR with a
2940 PLACEHOLDER_EXPR occurring only in its arglist. */
2943 substitute_in_expr (exp
, f
, r
)
2948 enum tree_code code
= TREE_CODE (exp
);
2953 switch (TREE_CODE_CLASS (code
))
2960 if (code
== PLACEHOLDER_EXPR
)
2962 else if (code
== TREE_LIST
)
2964 op0
= (TREE_CHAIN (exp
) == 0
2965 ? 0 : substitute_in_expr (TREE_CHAIN (exp
), f
, r
));
2966 op1
= substitute_in_expr (TREE_VALUE (exp
), f
, r
);
2967 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
2970 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
2979 switch (TREE_CODE_LENGTH (code
))
2982 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
2983 if (op0
== TREE_OPERAND (exp
, 0))
2986 new = fold (build1 (code
, TREE_TYPE (exp
), op0
));
2990 /* An RTL_EXPR cannot contain a PLACEHOLDER_EXPR; a CONSTRUCTOR
2991 could, but we don't support it. */
2992 if (code
== RTL_EXPR
)
2994 else if (code
== CONSTRUCTOR
)
2997 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
2998 op1
= substitute_in_expr (TREE_OPERAND (exp
, 1), f
, r
);
2999 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3002 new = fold (build (code
, TREE_TYPE (exp
), op0
, op1
));
3006 /* It cannot be that anything inside a SAVE_EXPR contains a
3007 PLACEHOLDER_EXPR. */
3008 if (code
== SAVE_EXPR
)
3011 else if (code
== CALL_EXPR
)
3013 op1
= substitute_in_expr (TREE_OPERAND (exp
, 1), f
, r
);
3014 if (op1
== TREE_OPERAND (exp
, 1))
3017 return build (code
, TREE_TYPE (exp
),
3018 TREE_OPERAND (exp
, 0), op1
, NULL_TREE
);
3021 else if (code
!= COND_EXPR
)
3024 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
3025 op1
= substitute_in_expr (TREE_OPERAND (exp
, 1), f
, r
);
3026 op2
= substitute_in_expr (TREE_OPERAND (exp
, 2), f
, r
);
3027 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3028 && op2
== TREE_OPERAND (exp
, 2))
3031 new = fold (build (code
, TREE_TYPE (exp
), op0
, op1
, op2
));
3044 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3045 and it is the right field, replace it with R. */
3046 for (inner
= TREE_OPERAND (exp
, 0);
3047 TREE_CODE_CLASS (TREE_CODE (inner
)) == 'r';
3048 inner
= TREE_OPERAND (inner
, 0))
3050 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
3051 && TREE_OPERAND (exp
, 1) == f
)
3054 /* If this expression hasn't been completed let, leave it
3056 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
3057 && TREE_TYPE (inner
) == 0)
3060 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
3061 if (op0
== TREE_OPERAND (exp
, 0))
3064 new = fold (build (code
, TREE_TYPE (exp
), op0
,
3065 TREE_OPERAND (exp
, 1)));
3069 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
3070 op1
= substitute_in_expr (TREE_OPERAND (exp
, 1), f
, r
);
3071 op2
= substitute_in_expr (TREE_OPERAND (exp
, 2), f
, r
);
3072 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3073 && op2
== TREE_OPERAND (exp
, 2))
3076 new = fold (build (code
, TREE_TYPE (exp
), op0
, op1
, op2
));
3081 op0
= substitute_in_expr (TREE_OPERAND (exp
, 0), f
, r
);
3082 if (op0
== TREE_OPERAND (exp
, 0))
3085 new = fold (build1 (code
, TREE_TYPE (exp
), op0
));
3097 TREE_READONLY (new) = TREE_READONLY (exp
);
3101 /* Stabilize a reference so that we can use it any number of times
3102 without causing its operands to be evaluated more than once.
3103 Returns the stabilized reference. This works by means of save_expr,
3104 so see the caveats in the comments about save_expr.
3106 Also allows conversion expressions whose operands are references.
3107 Any other kind of expression is returned unchanged. */
3110 stabilize_reference (ref
)
3113 register tree result
;
3114 register enum tree_code code
= TREE_CODE (ref
);
3121 /* No action is needed in this case. */
3127 case FIX_TRUNC_EXPR
:
3128 case FIX_FLOOR_EXPR
:
3129 case FIX_ROUND_EXPR
:
3131 result
= build_nt (code
, stabilize_reference (TREE_OPERAND (ref
, 0)));
3135 result
= build_nt (INDIRECT_REF
,
3136 stabilize_reference_1 (TREE_OPERAND (ref
, 0)));
3140 result
= build_nt (COMPONENT_REF
,
3141 stabilize_reference (TREE_OPERAND (ref
, 0)),
3142 TREE_OPERAND (ref
, 1));
3146 result
= build_nt (BIT_FIELD_REF
,
3147 stabilize_reference (TREE_OPERAND (ref
, 0)),
3148 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3149 stabilize_reference_1 (TREE_OPERAND (ref
, 2)));
3153 result
= build_nt (ARRAY_REF
,
3154 stabilize_reference (TREE_OPERAND (ref
, 0)),
3155 stabilize_reference_1 (TREE_OPERAND (ref
, 1)));
3159 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3160 it wouldn't be ignored. This matters when dealing with
3162 return stabilize_reference_1 (ref
);
3165 result
= build1 (INDIRECT_REF
, TREE_TYPE (ref
),
3166 save_expr (build1 (ADDR_EXPR
,
3167 build_pointer_type (TREE_TYPE (ref
)),
3172 /* If arg isn't a kind of lvalue we recognize, make no change.
3173 Caller should recognize the error for an invalid lvalue. */
3178 return error_mark_node
;
3181 TREE_TYPE (result
) = TREE_TYPE (ref
);
3182 TREE_READONLY (result
) = TREE_READONLY (ref
);
3183 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (ref
);
3184 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (ref
);
3189 /* Subroutine of stabilize_reference; this is called for subtrees of
3190 references. Any expression with side-effects must be put in a SAVE_EXPR
3191 to ensure that it is only evaluated once.
3193 We don't put SAVE_EXPR nodes around everything, because assigning very
3194 simple expressions to temporaries causes us to miss good opportunities
3195 for optimizations. Among other things, the opportunity to fold in the
3196 addition of a constant into an addressing mode often gets lost, e.g.
3197 "y[i+1] += x;". In general, we take the approach that we should not make
3198 an assignment unless we are forced into it - i.e., that any non-side effect
3199 operator should be allowed, and that cse should take care of coalescing
3200 multiple utterances of the same expression should that prove fruitful. */
3203 stabilize_reference_1 (e
)
3206 register tree result
;
3207 register enum tree_code code
= TREE_CODE (e
);
3209 /* We cannot ignore const expressions because it might be a reference
3210 to a const array but whose index contains side-effects. But we can
3211 ignore things that are actual constant or that already have been
3212 handled by this function. */
3214 if (TREE_CONSTANT (e
) || code
== SAVE_EXPR
)
3217 switch (TREE_CODE_CLASS (code
))
3227 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3228 so that it will only be evaluated once. */
3229 /* The reference (r) and comparison (<) classes could be handled as
3230 below, but it is generally faster to only evaluate them once. */
3231 if (TREE_SIDE_EFFECTS (e
))
3232 return save_expr (e
);
3236 /* Constants need no processing. In fact, we should never reach
3241 /* Division is slow and tends to be compiled with jumps,
3242 especially the division by powers of 2 that is often
3243 found inside of an array reference. So do it just once. */
3244 if (code
== TRUNC_DIV_EXPR
|| code
== TRUNC_MOD_EXPR
3245 || code
== FLOOR_DIV_EXPR
|| code
== FLOOR_MOD_EXPR
3246 || code
== CEIL_DIV_EXPR
|| code
== CEIL_MOD_EXPR
3247 || code
== ROUND_DIV_EXPR
|| code
== ROUND_MOD_EXPR
)
3248 return save_expr (e
);
3249 /* Recursively stabilize each operand. */
3250 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)),
3251 stabilize_reference_1 (TREE_OPERAND (e
, 1)));
3255 /* Recursively stabilize each operand. */
3256 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)));
3263 TREE_TYPE (result
) = TREE_TYPE (e
);
3264 TREE_READONLY (result
) = TREE_READONLY (e
);
3265 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (e
);
3266 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (e
);
3271 /* Low-level constructors for expressions. */
3273 /* Build an expression of code CODE, data type TYPE,
3274 and operands as specified by the arguments ARG1 and following arguments.
3275 Expressions and reference nodes can be created this way.
3276 Constants, decls, types and misc nodes cannot be. */
3279 build
VPARAMS ((enum tree_code code
, tree tt
, ...))
3281 #ifndef ANSI_PROTOTYPES
3282 enum tree_code code
;
3287 register int length
;
3293 #ifndef ANSI_PROTOTYPES
3294 code
= va_arg (p
, enum tree_code
);
3295 tt
= va_arg (p
, tree
);
3298 t
= make_node (code
);
3299 length
= TREE_CODE_LENGTH (code
);
3302 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_RAISED for
3303 the result based on those same flags for the arguments. But, if
3304 the arguments aren't really even `tree' expressions, we shouldn't
3305 be trying to do this. */
3306 fro
= first_rtl_op (code
);
3310 /* This is equivalent to the loop below, but faster. */
3311 register tree arg0
= va_arg (p
, tree
);
3312 register tree arg1
= va_arg (p
, tree
);
3313 TREE_OPERAND (t
, 0) = arg0
;
3314 TREE_OPERAND (t
, 1) = arg1
;
3315 if (arg0
&& fro
> 0)
3317 if (TREE_SIDE_EFFECTS (arg0
))
3318 TREE_SIDE_EFFECTS (t
) = 1;
3320 if (arg1
&& fro
> 1)
3322 if (TREE_SIDE_EFFECTS (arg1
))
3323 TREE_SIDE_EFFECTS (t
) = 1;
3326 else if (length
== 1)
3328 register tree arg0
= va_arg (p
, tree
);
3330 /* Call build1 for this! */
3331 if (TREE_CODE_CLASS (code
) != 's')
3333 TREE_OPERAND (t
, 0) = arg0
;
3336 if (arg0
&& TREE_SIDE_EFFECTS (arg0
))
3337 TREE_SIDE_EFFECTS (t
) = 1;
3342 for (i
= 0; i
< length
; i
++)
3344 register tree operand
= va_arg (p
, tree
);
3345 TREE_OPERAND (t
, i
) = operand
;
3346 if (operand
&& fro
> i
)
3348 if (TREE_SIDE_EFFECTS (operand
))
3349 TREE_SIDE_EFFECTS (t
) = 1;
3357 /* Same as above, but only builds for unary operators.
3358 Saves lions share of calls to `build'; cuts down use
3359 of varargs, which is expensive for RISC machines. */
3362 build1 (code
, type
, node
)
3363 enum tree_code code
;
3367 register struct obstack
*obstack
= expression_obstack
;
3368 register int length
;
3369 #ifdef GATHER_STATISTICS
3370 register tree_node_kind kind
;
3374 #ifdef GATHER_STATISTICS
3375 if (TREE_CODE_CLASS (code
) == 'r')
3381 length
= sizeof (struct tree_exp
);
3384 t
= ggc_alloc_tree (length
);
3386 t
= (tree
) obstack_alloc (obstack
, length
);
3388 memset ((PTR
) t
, 0, sizeof (struct tree_common
));
3390 #ifdef GATHER_STATISTICS
3391 tree_node_counts
[(int)kind
]++;
3392 tree_node_sizes
[(int)kind
] += length
;
3395 TREE_SET_CODE (t
, code
);
3396 TREE_SET_PERMANENT (t
);
3398 TREE_TYPE (t
) = type
;
3399 TREE_COMPLEXITY (t
) = 0;
3400 TREE_OPERAND (t
, 0) = node
;
3401 if (node
&& first_rtl_op (code
) != 0 && TREE_SIDE_EFFECTS (node
))
3402 TREE_SIDE_EFFECTS (t
) = 1;
3410 case PREDECREMENT_EXPR
:
3411 case PREINCREMENT_EXPR
:
3412 case POSTDECREMENT_EXPR
:
3413 case POSTINCREMENT_EXPR
:
3414 /* All of these have side-effects, no matter what their
3416 TREE_SIDE_EFFECTS (t
) = 1;
3426 /* Similar except don't specify the TREE_TYPE
3427 and leave the TREE_SIDE_EFFECTS as 0.
3428 It is permissible for arguments to be null,
3429 or even garbage if their values do not matter. */
3432 build_nt
VPARAMS ((enum tree_code code
, ...))
3434 #ifndef ANSI_PROTOTYPES
3435 enum tree_code code
;
3439 register int length
;
3444 #ifndef ANSI_PROTOTYPES
3445 code
= va_arg (p
, enum tree_code
);
3448 t
= make_node (code
);
3449 length
= TREE_CODE_LENGTH (code
);
3451 for (i
= 0; i
< length
; i
++)
3452 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
3458 /* Similar to `build_nt', except we build
3459 on the temp_decl_obstack, regardless. */
3462 build_parse_node
VPARAMS ((enum tree_code code
, ...))
3464 #ifndef ANSI_PROTOTYPES
3465 enum tree_code code
;
3467 register struct obstack
*ambient_obstack
= expression_obstack
;
3470 register int length
;
3475 #ifndef ANSI_PROTOTYPES
3476 code
= va_arg (p
, enum tree_code
);
3479 expression_obstack
= &temp_decl_obstack
;
3481 t
= make_node (code
);
3482 length
= TREE_CODE_LENGTH (code
);
3484 for (i
= 0; i
< length
; i
++)
3485 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
3488 expression_obstack
= ambient_obstack
;
3493 /* Commented out because this wants to be done very
3494 differently. See cp-lex.c. */
3496 build_op_identifier (op1
, op2
)
3499 register tree t
= make_node (OP_IDENTIFIER
);
3500 TREE_PURPOSE (t
) = op1
;
3501 TREE_VALUE (t
) = op2
;
3506 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
3507 We do NOT enter this node in any sort of symbol table.
3509 layout_decl is used to set up the decl's storage layout.
3510 Other slots are initialized to 0 or null pointers. */
3513 build_decl (code
, name
, type
)
3514 enum tree_code code
;
3519 t
= make_node (code
);
3521 /* if (type == error_mark_node)
3522 type = integer_type_node; */
3523 /* That is not done, deliberately, so that having error_mark_node
3524 as the type can suppress useless errors in the use of this variable. */
3526 DECL_NAME (t
) = name
;
3527 DECL_ASSEMBLER_NAME (t
) = name
;
3528 TREE_TYPE (t
) = type
;
3530 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
3532 else if (code
== FUNCTION_DECL
)
3533 DECL_MODE (t
) = FUNCTION_MODE
;
3538 /* BLOCK nodes are used to represent the structure of binding contours
3539 and declarations, once those contours have been exited and their contents
3540 compiled. This information is used for outputting debugging info. */
3543 build_block (vars
, tags
, subblocks
, supercontext
, chain
)
3544 tree vars
, tags ATTRIBUTE_UNUSED
, subblocks
, supercontext
, chain
;
3546 register tree block
= make_node (BLOCK
);
3548 BLOCK_VARS (block
) = vars
;
3549 BLOCK_SUBBLOCKS (block
) = subblocks
;
3550 BLOCK_SUPERCONTEXT (block
) = supercontext
;
3551 BLOCK_CHAIN (block
) = chain
;
3555 /* EXPR_WITH_FILE_LOCATION are used to keep track of the exact
3556 location where an expression or an identifier were encountered. It
3557 is necessary for languages where the frontend parser will handle
3558 recursively more than one file (Java is one of them). */
3561 build_expr_wfl (node
, file
, line
, col
)
3566 static const char *last_file
= 0;
3567 static tree last_filenode
= NULL_TREE
;
3568 register tree wfl
= make_node (EXPR_WITH_FILE_LOCATION
);
3570 EXPR_WFL_NODE (wfl
) = node
;
3571 EXPR_WFL_SET_LINECOL (wfl
, line
, col
);
3572 if (file
!= last_file
)
3575 last_filenode
= file
? get_identifier (file
) : NULL_TREE
;
3578 EXPR_WFL_FILENAME_NODE (wfl
) = last_filenode
;
3581 TREE_SIDE_EFFECTS (wfl
) = TREE_SIDE_EFFECTS (node
);
3582 TREE_TYPE (wfl
) = TREE_TYPE (node
);
3588 /* Return a declaration like DDECL except that its DECL_MACHINE_ATTRIBUTE
3592 build_decl_attribute_variant (ddecl
, attribute
)
3593 tree ddecl
, attribute
;
3595 DECL_MACHINE_ATTRIBUTES (ddecl
) = attribute
;
3599 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
3602 Record such modified types already made so we don't make duplicates. */
3605 build_type_attribute_variant (ttype
, attribute
)
3606 tree ttype
, attribute
;
3608 if ( ! attribute_list_equal (TYPE_ATTRIBUTES (ttype
), attribute
))
3610 unsigned int hashcode
;
3613 push_obstacks (TYPE_OBSTACK (ttype
), TYPE_OBSTACK (ttype
));
3614 ntype
= copy_node (ttype
);
3616 TYPE_POINTER_TO (ntype
) = 0;
3617 TYPE_REFERENCE_TO (ntype
) = 0;
3618 TYPE_ATTRIBUTES (ntype
) = attribute
;
3620 /* Create a new main variant of TYPE. */
3621 TYPE_MAIN_VARIANT (ntype
) = ntype
;
3622 TYPE_NEXT_VARIANT (ntype
) = 0;
3623 set_type_quals (ntype
, TYPE_UNQUALIFIED
);
3625 hashcode
= (TYPE_HASH (TREE_CODE (ntype
))
3626 + TYPE_HASH (TREE_TYPE (ntype
))
3627 + attribute_hash_list (attribute
));
3629 switch (TREE_CODE (ntype
))
3632 hashcode
+= TYPE_HASH (TYPE_ARG_TYPES (ntype
));
3635 hashcode
+= TYPE_HASH (TYPE_DOMAIN (ntype
));
3638 hashcode
+= TYPE_HASH (TYPE_MAX_VALUE (ntype
));
3641 hashcode
+= TYPE_HASH (TYPE_PRECISION (ntype
));
3647 ntype
= type_hash_canon (hashcode
, ntype
);
3648 ttype
= build_qualified_type (ntype
, TYPE_QUALS (ttype
));
3655 /* Return a 1 if ATTR_NAME and ATTR_ARGS is valid for either declaration DECL
3656 or type TYPE and 0 otherwise. Validity is determined the configuration
3657 macros VALID_MACHINE_DECL_ATTRIBUTE and VALID_MACHINE_TYPE_ATTRIBUTE. */
3660 valid_machine_attribute (attr_name
, attr_args
, decl
, type
)
3662 tree attr_args ATTRIBUTE_UNUSED
;
3663 tree decl ATTRIBUTE_UNUSED
;
3664 tree type ATTRIBUTE_UNUSED
;
3667 #ifdef VALID_MACHINE_DECL_ATTRIBUTE
3668 tree decl_attr_list
= decl
!= 0 ? DECL_MACHINE_ATTRIBUTES (decl
) : 0;
3670 #ifdef VALID_MACHINE_TYPE_ATTRIBUTE
3671 tree type_attr_list
= TYPE_ATTRIBUTES (type
);
3674 if (TREE_CODE (attr_name
) != IDENTIFIER_NODE
)
3677 #ifdef VALID_MACHINE_DECL_ATTRIBUTE
3679 && VALID_MACHINE_DECL_ATTRIBUTE (decl
, decl_attr_list
, attr_name
,
3682 tree attr
= lookup_attribute (IDENTIFIER_POINTER (attr_name
),
3685 if (attr
!= NULL_TREE
)
3687 /* Override existing arguments. Declarations are unique so we can
3688 modify this in place. */
3689 TREE_VALUE (attr
) = attr_args
;
3693 decl_attr_list
= tree_cons (attr_name
, attr_args
, decl_attr_list
);
3694 decl
= build_decl_attribute_variant (decl
, decl_attr_list
);
3701 #ifdef VALID_MACHINE_TYPE_ATTRIBUTE
3703 /* Don't apply the attribute to both the decl and the type. */;
3704 else if (VALID_MACHINE_TYPE_ATTRIBUTE (type
, type_attr_list
, attr_name
,
3707 tree attr
= lookup_attribute (IDENTIFIER_POINTER (attr_name
),
3710 if (attr
!= NULL_TREE
)
3712 /* Override existing arguments.
3713 ??? This currently works since attribute arguments are not
3714 included in `attribute_hash_list'. Something more complicated
3715 may be needed in the future. */
3716 TREE_VALUE (attr
) = attr_args
;
3720 /* If this is part of a declaration, create a type variant,
3721 otherwise, this is part of a type definition, so add it
3722 to the base type. */
3723 type_attr_list
= tree_cons (attr_name
, attr_args
, type_attr_list
);
3725 type
= build_type_attribute_variant (type
, type_attr_list
);
3727 TYPE_ATTRIBUTES (type
) = type_attr_list
;
3731 TREE_TYPE (decl
) = type
;
3736 /* Handle putting a type attribute on pointer-to-function-type by putting
3737 the attribute on the function type. */
3738 else if (POINTER_TYPE_P (type
)
3739 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
3740 && VALID_MACHINE_TYPE_ATTRIBUTE (TREE_TYPE (type
), type_attr_list
,
3741 attr_name
, attr_args
))
3743 tree inner_type
= TREE_TYPE (type
);
3744 tree inner_attr_list
= TYPE_ATTRIBUTES (inner_type
);
3745 tree attr
= lookup_attribute (IDENTIFIER_POINTER (attr_name
),
3748 if (attr
!= NULL_TREE
)
3749 TREE_VALUE (attr
) = attr_args
;
3752 inner_attr_list
= tree_cons (attr_name
, attr_args
, inner_attr_list
);
3753 inner_type
= build_type_attribute_variant (inner_type
,
3758 TREE_TYPE (decl
) = build_pointer_type (inner_type
);
3761 /* Clear TYPE_POINTER_TO for the old inner type, since
3762 `type' won't be pointing to it anymore. */
3763 TYPE_POINTER_TO (TREE_TYPE (type
)) = NULL_TREE
;
3764 TREE_TYPE (type
) = inner_type
;
3774 /* Return non-zero if IDENT is a valid name for attribute ATTR,
3777 We try both `text' and `__text__', ATTR may be either one. */
3778 /* ??? It might be a reasonable simplification to require ATTR to be only
3779 `text'. One might then also require attribute lists to be stored in
3780 their canonicalized form. */
3783 is_attribute_p (attr
, ident
)
3787 int ident_len
, attr_len
;
3790 if (TREE_CODE (ident
) != IDENTIFIER_NODE
)
3793 if (strcmp (attr
, IDENTIFIER_POINTER (ident
)) == 0)
3796 p
= IDENTIFIER_POINTER (ident
);
3797 ident_len
= strlen (p
);
3798 attr_len
= strlen (attr
);
3800 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
3804 || attr
[attr_len
- 2] != '_'
3805 || attr
[attr_len
- 1] != '_')
3807 if (ident_len
== attr_len
- 4
3808 && strncmp (attr
+ 2, p
, attr_len
- 4) == 0)
3813 if (ident_len
== attr_len
+ 4
3814 && p
[0] == '_' && p
[1] == '_'
3815 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
3816 && strncmp (attr
, p
+ 2, attr_len
) == 0)
3823 /* Given an attribute name and a list of attributes, return a pointer to the
3824 attribute's list element if the attribute is part of the list, or NULL_TREE
3828 lookup_attribute (attr_name
, list
)
3829 const char *attr_name
;
3834 for (l
= list
; l
; l
= TREE_CHAIN (l
))
3836 if (TREE_CODE (TREE_PURPOSE (l
)) != IDENTIFIER_NODE
)
3838 if (is_attribute_p (attr_name
, TREE_PURPOSE (l
)))
3845 /* Return an attribute list that is the union of a1 and a2. */
3848 merge_attributes (a1
, a2
)
3849 register tree a1
, a2
;
3853 /* Either one unset? Take the set one. */
3855 if ((attributes
= a1
) == 0)
3858 /* One that completely contains the other? Take it. */
3860 else if (a2
!= 0 && ! attribute_list_contained (a1
, a2
))
3862 if (attribute_list_contained (a2
, a1
))
3866 /* Pick the longest list, and hang on the other list. */
3867 /* ??? For the moment we punt on the issue of attrs with args. */
3869 if (list_length (a1
) < list_length (a2
))
3870 attributes
= a2
, a2
= a1
;
3872 for (; a2
!= 0; a2
= TREE_CHAIN (a2
))
3873 if (lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2
)),
3874 attributes
) == NULL_TREE
)
3876 a1
= copy_node (a2
);
3877 TREE_CHAIN (a1
) = attributes
;
3885 /* Given types T1 and T2, merge their attributes and return
3889 merge_machine_type_attributes (t1
, t2
)
3892 #ifdef MERGE_MACHINE_TYPE_ATTRIBUTES
3893 return MERGE_MACHINE_TYPE_ATTRIBUTES (t1
, t2
);
3895 return merge_attributes (TYPE_ATTRIBUTES (t1
),
3896 TYPE_ATTRIBUTES (t2
));
3900 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
3904 merge_machine_decl_attributes (olddecl
, newdecl
)
3905 tree olddecl
, newdecl
;
3907 #ifdef MERGE_MACHINE_DECL_ATTRIBUTES
3908 return MERGE_MACHINE_DECL_ATTRIBUTES (olddecl
, newdecl
);
3910 return merge_attributes (DECL_MACHINE_ATTRIBUTES (olddecl
),
3911 DECL_MACHINE_ATTRIBUTES (newdecl
));
3915 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
3916 of the various TYPE_QUAL values. */
3919 set_type_quals (type
, type_quals
)
3923 TYPE_READONLY (type
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
3924 TYPE_VOLATILE (type
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
3925 TYPE_RESTRICT (type
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
3928 /* Given a type node TYPE and a TYPE_QUALIFIER_SET, return a type for
3929 the same kind of data as TYPE describes. Variants point to the
3930 "main variant" (which has no qualifiers set) via TYPE_MAIN_VARIANT,
3931 and it points to a chain of other variants so that duplicate
3932 variants are never made. Only main variants should ever appear as
3933 types of expressions. */
3936 build_qualified_type (type
, type_quals
)
3942 /* Search the chain of variants to see if there is already one there just
3943 like the one we need to have. If so, use that existing one. We must
3944 preserve the TYPE_NAME, since there is code that depends on this. */
3946 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
3947 if (TYPE_QUALS (t
) == type_quals
&& TYPE_NAME (t
) == TYPE_NAME (type
))
3950 /* We need a new one. */
3951 t
= build_type_copy (type
);
3952 set_type_quals (t
, type_quals
);
3956 /* Create a new variant of TYPE, equivalent but distinct.
3957 This is so the caller can modify it. */
3960 build_type_copy (type
)
3963 register tree t
, m
= TYPE_MAIN_VARIANT (type
);
3964 register struct obstack
*ambient_obstack
= current_obstack
;
3966 current_obstack
= TYPE_OBSTACK (type
);
3967 t
= copy_node (type
);
3968 current_obstack
= ambient_obstack
;
3970 TYPE_POINTER_TO (t
) = 0;
3971 TYPE_REFERENCE_TO (t
) = 0;
3973 /* Add this type to the chain of variants of TYPE. */
3974 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
3975 TYPE_NEXT_VARIANT (m
) = t
;
3980 /* Hashing of types so that we don't make duplicates.
3981 The entry point is `type_hash_canon'. */
3983 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
3984 with types in the TREE_VALUE slots), by adding the hash codes
3985 of the individual types. */
3988 type_hash_list (list
)
3991 unsigned int hashcode
;
3994 for (hashcode
= 0, tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
3995 hashcode
+= TYPE_HASH (TREE_VALUE (tail
));
4000 /* These are the Hashtable callback functions. */
4002 /* Returns true if the types are equal. */
4005 type_hash_eq (va
, vb
)
4009 const struct type_hash
*a
= va
, *b
= vb
;
4010 if (a
->hash
== b
->hash
4011 && TREE_CODE (a
->type
) == TREE_CODE (b
->type
)
4012 && TREE_TYPE (a
->type
) == TREE_TYPE (b
->type
)
4013 && attribute_list_equal (TYPE_ATTRIBUTES (a
->type
),
4014 TYPE_ATTRIBUTES (b
->type
))
4015 && TYPE_ALIGN (a
->type
) == TYPE_ALIGN (b
->type
)
4016 && (TYPE_MAX_VALUE (a
->type
) == TYPE_MAX_VALUE (b
->type
)
4017 || tree_int_cst_equal (TYPE_MAX_VALUE (a
->type
),
4018 TYPE_MAX_VALUE (b
->type
)))
4019 && (TYPE_MIN_VALUE (a
->type
) == TYPE_MIN_VALUE (b
->type
)
4020 || tree_int_cst_equal (TYPE_MIN_VALUE (a
->type
),
4021 TYPE_MIN_VALUE (b
->type
)))
4022 /* Note that TYPE_DOMAIN is TYPE_ARG_TYPES for FUNCTION_TYPE. */
4023 && (TYPE_DOMAIN (a
->type
) == TYPE_DOMAIN (b
->type
)
4024 || (TYPE_DOMAIN (a
->type
)
4025 && TREE_CODE (TYPE_DOMAIN (a
->type
)) == TREE_LIST
4026 && TYPE_DOMAIN (b
->type
)
4027 && TREE_CODE (TYPE_DOMAIN (b
->type
)) == TREE_LIST
4028 && type_list_equal (TYPE_DOMAIN (a
->type
),
4029 TYPE_DOMAIN (b
->type
)))))
4034 /* Return the cached hash value. */
4037 type_hash_hash (item
)
4040 return ((const struct type_hash
*)item
)->hash
;
4043 /* Look in the type hash table for a type isomorphic to TYPE.
4044 If one is found, return it. Otherwise return 0. */
4047 type_hash_lookup (hashcode
, type
)
4048 unsigned int hashcode
;
4051 struct type_hash
*h
, in
;
4053 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
4054 must call that routine before comparing TYPE_ALIGNs. */
4060 h
= htab_find_with_hash (type_hash_table
, &in
, hashcode
);
4066 /* Add an entry to the type-hash-table
4067 for a type TYPE whose hash code is HASHCODE. */
4070 type_hash_add (hashcode
, type
)
4071 unsigned int hashcode
;
4074 struct type_hash
*h
;
4077 h
= (struct type_hash
*) permalloc (sizeof (struct type_hash
));
4080 loc
= htab_find_slot_with_hash (type_hash_table
, h
, hashcode
, INSERT
);
4081 *(struct type_hash
**) loc
= h
;
4084 /* Given TYPE, and HASHCODE its hash code, return the canonical
4085 object for an identical type if one already exists.
4086 Otherwise, return TYPE, and record it as the canonical object
4087 if it is a permanent object.
4089 To use this function, first create a type of the sort you want.
4090 Then compute its hash code from the fields of the type that
4091 make it different from other similar types.
4092 Then call this function and use the value.
4093 This function frees the type you pass in if it is a duplicate. */
4095 /* Set to 1 to debug without canonicalization. Never set by program. */
4096 int debug_no_type_hash
= 0;
4099 type_hash_canon (hashcode
, type
)
4100 unsigned int hashcode
;
4105 if (debug_no_type_hash
)
4108 t1
= type_hash_lookup (hashcode
, type
);
4112 obstack_free (TYPE_OBSTACK (type
), type
);
4114 #ifdef GATHER_STATISTICS
4115 tree_node_counts
[(int) t_kind
]--;
4116 tree_node_sizes
[(int) t_kind
] -= sizeof (struct tree_type
);
4121 /* If this is a permanent type, record it for later reuse. */
4122 if (ggc_p
|| TREE_PERMANENT (type
))
4123 type_hash_add (hashcode
, type
);
4128 /* Callback function for htab_traverse. */
4131 mark_hash_entry (entry
, param
)
4133 void *param ATTRIBUTE_UNUSED
;
4135 struct type_hash
*p
= *(struct type_hash
**)entry
;
4137 ggc_mark_tree (p
->type
);
4139 /* Continue scan. */
4143 /* Mark ARG (which is really a htab_t *) for GC. */
4146 mark_type_hash (arg
)
4149 htab_t t
= *(htab_t
*) arg
;
4151 htab_traverse (t
, mark_hash_entry
, 0);
4155 print_type_hash_statistics ()
4157 fprintf (stderr
, "Type hash: size %ld, %ld elements, %f collisions\n",
4158 (long) htab_size (type_hash_table
),
4159 (long) htab_elements (type_hash_table
),
4160 htab_collisions (type_hash_table
));
4163 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
4164 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
4165 by adding the hash codes of the individual attributes. */
4168 attribute_hash_list (list
)
4171 unsigned int hashcode
;
4174 for (hashcode
= 0, tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
4175 /* ??? Do we want to add in TREE_VALUE too? */
4176 hashcode
+= TYPE_HASH (TREE_PURPOSE (tail
));
4180 /* Given two lists of attributes, return true if list l2 is
4181 equivalent to l1. */
4184 attribute_list_equal (l1
, l2
)
4187 return attribute_list_contained (l1
, l2
)
4188 && attribute_list_contained (l2
, l1
);
4191 /* Given two lists of attributes, return true if list L2 is
4192 completely contained within L1. */
4193 /* ??? This would be faster if attribute names were stored in a canonicalized
4194 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
4195 must be used to show these elements are equivalent (which they are). */
4196 /* ??? It's not clear that attributes with arguments will always be handled
4200 attribute_list_contained (l1
, l2
)
4203 register tree t1
, t2
;
4205 /* First check the obvious, maybe the lists are identical. */
4209 /* Maybe the lists are similar. */
4210 for (t1
= l1
, t2
= l2
;
4212 && TREE_PURPOSE (t1
) == TREE_PURPOSE (t2
)
4213 && TREE_VALUE (t1
) == TREE_VALUE (t2
);
4214 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
));
4216 /* Maybe the lists are equal. */
4217 if (t1
== 0 && t2
== 0)
4220 for (; t2
!= 0; t2
= TREE_CHAIN (t2
))
4223 = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2
)), l1
);
4228 if (simple_cst_equal (TREE_VALUE (t2
), TREE_VALUE (attr
)) != 1)
4235 /* Given two lists of types
4236 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
4237 return 1 if the lists contain the same types in the same order.
4238 Also, the TREE_PURPOSEs must match. */
4241 type_list_equal (l1
, l2
)
4244 register tree t1
, t2
;
4246 for (t1
= l1
, t2
= l2
; t1
&& t2
; t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
4247 if (TREE_VALUE (t1
) != TREE_VALUE (t2
)
4248 || (TREE_PURPOSE (t1
) != TREE_PURPOSE (t2
)
4249 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
))
4250 && (TREE_TYPE (TREE_PURPOSE (t1
))
4251 == TREE_TYPE (TREE_PURPOSE (t2
))))))
4257 /* Nonzero if integer constants T1 and T2
4258 represent the same constant value. */
4261 tree_int_cst_equal (t1
, t2
)
4267 if (t1
== 0 || t2
== 0)
4270 if (TREE_CODE (t1
) == INTEGER_CST
4271 && TREE_CODE (t2
) == INTEGER_CST
4272 && TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
4273 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
))
4279 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
4280 The precise way of comparison depends on their data type. */
4283 tree_int_cst_lt (t1
, t2
)
4289 if (! TREE_UNSIGNED (TREE_TYPE (t1
)))
4290 return INT_CST_LT (t1
, t2
);
4292 return INT_CST_LT_UNSIGNED (t1
, t2
);
4295 /* Return 1 if T is an INTEGER_CST that can be represented in a single
4296 HOST_WIDE_INT value. If POS is nonzero, the result must be positive. */
4299 host_integerp (t
, pos
)
4303 return (TREE_CODE (t
) == INTEGER_CST
4304 && ! TREE_OVERFLOW (t
)
4305 && ((TREE_INT_CST_HIGH (t
) == 0
4306 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) >= 0)
4307 || (! pos
&& TREE_INT_CST_HIGH (t
) == -1
4308 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0)
4309 || (! pos
&& TREE_INT_CST_HIGH (t
) == 0
4310 && TREE_UNSIGNED (TREE_TYPE (t
)))));
4313 /* Return the HOST_WIDE_INT least significant bits of T if it is an
4314 INTEGER_CST and there is no overflow. POS is nonzero if the result must
4315 be positive. Abort if we cannot satisfy the above conditions. */
4318 tree_low_cst (t
, pos
)
4322 if (host_integerp (t
, pos
))
4323 return TREE_INT_CST_LOW (t
);
4328 /* Return the most significant bit of the integer constant T. */
4331 tree_int_cst_msb (t
)
4336 unsigned HOST_WIDE_INT l
;
4338 /* Note that using TYPE_PRECISION here is wrong. We care about the
4339 actual bits, not the (arbitrary) range of the type. */
4340 prec
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t
))) - 1;
4341 rshift_double (TREE_INT_CST_LOW (t
), TREE_INT_CST_HIGH (t
), prec
,
4342 2 * HOST_BITS_PER_WIDE_INT
, &l
, &h
, 0);
4343 return (l
& 1) == 1;
4346 /* Return an indication of the sign of the integer constant T.
4347 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
4348 Note that -1 will never be returned it T's type is unsigned. */
4351 tree_int_cst_sgn (t
)
4354 if (TREE_INT_CST_LOW (t
) == 0 && TREE_INT_CST_HIGH (t
) == 0)
4356 else if (TREE_UNSIGNED (TREE_TYPE (t
)))
4358 else if (TREE_INT_CST_HIGH (t
) < 0)
4364 /* Return true if `t' is known to be non-negative. */
4367 tree_expr_nonnegative_p (t
)
4370 switch (TREE_CODE (t
))
4373 return tree_int_cst_sgn (t
) >= 0;
4375 return tree_expr_nonnegative_p (TREE_OPERAND (t
, 1))
4376 && tree_expr_nonnegative_p (TREE_OPERAND (t
, 2));
4378 /* We don't know sign of `t', so be safe and return false. */
4383 /* Compare two constructor-element-type constants. Return 1 if the lists
4384 are known to be equal; otherwise return 0. */
4387 simple_cst_list_equal (l1
, l2
)
4390 while (l1
!= NULL_TREE
&& l2
!= NULL_TREE
)
4392 if (simple_cst_equal (TREE_VALUE (l1
), TREE_VALUE (l2
)) != 1)
4395 l1
= TREE_CHAIN (l1
);
4396 l2
= TREE_CHAIN (l2
);
4402 /* Return truthvalue of whether T1 is the same tree structure as T2.
4403 Return 1 if they are the same.
4404 Return 0 if they are understandably different.
4405 Return -1 if either contains tree structure not understood by
4409 simple_cst_equal (t1
, t2
)
4412 register enum tree_code code1
, code2
;
4418 if (t1
== 0 || t2
== 0)
4421 code1
= TREE_CODE (t1
);
4422 code2
= TREE_CODE (t2
);
4424 if (code1
== NOP_EXPR
|| code1
== CONVERT_EXPR
|| code1
== NON_LVALUE_EXPR
)
4426 if (code2
== NOP_EXPR
|| code2
== CONVERT_EXPR
4427 || code2
== NON_LVALUE_EXPR
)
4428 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
4430 return simple_cst_equal (TREE_OPERAND (t1
, 0), t2
);
4433 else if (code2
== NOP_EXPR
|| code2
== CONVERT_EXPR
4434 || code2
== NON_LVALUE_EXPR
)
4435 return simple_cst_equal (t1
, TREE_OPERAND (t2
, 0));
4443 return (TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
4444 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
));
4447 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
4450 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
4451 && ! bcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
4452 TREE_STRING_LENGTH (t1
)));
4455 if (CONSTRUCTOR_ELTS (t1
) == CONSTRUCTOR_ELTS (t2
))
4461 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
4464 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
4468 simple_cst_list_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
4471 /* Special case: if either target is an unallocated VAR_DECL,
4472 it means that it's going to be unified with whatever the
4473 TARGET_EXPR is really supposed to initialize, so treat it
4474 as being equivalent to anything. */
4475 if ((TREE_CODE (TREE_OPERAND (t1
, 0)) == VAR_DECL
4476 && DECL_NAME (TREE_OPERAND (t1
, 0)) == NULL_TREE
4477 && DECL_RTL (TREE_OPERAND (t1
, 0)) == 0)
4478 || (TREE_CODE (TREE_OPERAND (t2
, 0)) == VAR_DECL
4479 && DECL_NAME (TREE_OPERAND (t2
, 0)) == NULL_TREE
4480 && DECL_RTL (TREE_OPERAND (t2
, 0)) == 0))
4483 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
4488 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
4490 case WITH_CLEANUP_EXPR
:
4491 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
4495 return simple_cst_equal (TREE_OPERAND (t1
, 2), TREE_OPERAND (t1
, 2));
4498 if (TREE_OPERAND (t1
, 1) == TREE_OPERAND (t2
, 1))
4499 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
4513 /* This general rule works for most tree codes. All exceptions should be
4514 handled above. If this is a language-specific tree code, we can't
4515 trust what might be in the operand, so say we don't know
4517 if ((int) code1
>= (int) LAST_AND_UNUSED_TREE_CODE
)
4520 switch (TREE_CODE_CLASS (code1
))
4529 for (i
= 0; i
< TREE_CODE_LENGTH (code1
); i
++)
4531 cmp
= simple_cst_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
));
4543 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
4544 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
4545 than U, respectively. */
4548 compare_tree_int (t
, u
)
4552 if (tree_int_cst_sgn (t
) < 0)
4554 else if (TREE_INT_CST_HIGH (t
) != 0)
4556 else if (TREE_INT_CST_LOW (t
) == u
)
4558 else if (TREE_INT_CST_LOW (t
) < u
)
4564 /* Constructors for pointer, array and function types.
4565 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
4566 constructed by language-dependent code, not here.) */
4568 /* Construct, lay out and return the type of pointers to TO_TYPE.
4569 If such a type has already been constructed, reuse it. */
4572 build_pointer_type (to_type
)
4575 register tree t
= TYPE_POINTER_TO (to_type
);
4577 /* First, if we already have a type for pointers to TO_TYPE, use it. */
4582 /* We need a new one. Put this in the same obstack as TO_TYPE. */
4583 push_obstacks (TYPE_OBSTACK (to_type
), TYPE_OBSTACK (to_type
));
4584 t
= make_node (POINTER_TYPE
);
4587 TREE_TYPE (t
) = to_type
;
4589 /* Record this type as the pointer to TO_TYPE. */
4590 TYPE_POINTER_TO (to_type
) = t
;
4592 /* Lay out the type. This function has many callers that are concerned
4593 with expression-construction, and this simplifies them all.
4594 Also, it guarantees the TYPE_SIZE is in the same obstack as the type. */
4600 /* Build the node for the type of references-to-TO_TYPE. */
4603 build_reference_type (to_type
)
4606 register tree t
= TYPE_REFERENCE_TO (to_type
);
4608 /* First, if we already have a type for pointers to TO_TYPE, use it. */
4613 /* We need a new one. Put this in the same obstack as TO_TYPE. */
4614 push_obstacks (TYPE_OBSTACK (to_type
), TYPE_OBSTACK (to_type
));
4615 t
= make_node (REFERENCE_TYPE
);
4618 TREE_TYPE (t
) = to_type
;
4620 /* Record this type as the pointer to TO_TYPE. */
4621 TYPE_REFERENCE_TO (to_type
) = t
;
4628 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
4629 MAXVAL should be the maximum value in the domain
4630 (one less than the length of the array).
4632 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
4633 We don't enforce this limit, that is up to caller (e.g. language front end).
4634 The limit exists because the result is a signed type and we don't handle
4635 sizes that use more than one HOST_WIDE_INT. */
4638 build_index_type (maxval
)
4641 register tree itype
= make_node (INTEGER_TYPE
);
4643 TREE_TYPE (itype
) = sizetype
;
4644 TYPE_PRECISION (itype
) = TYPE_PRECISION (sizetype
);
4645 TYPE_MIN_VALUE (itype
) = size_zero_node
;
4647 push_obstacks (TYPE_OBSTACK (itype
), TYPE_OBSTACK (itype
));
4648 TYPE_MAX_VALUE (itype
) = convert (sizetype
, maxval
);
4651 TYPE_MODE (itype
) = TYPE_MODE (sizetype
);
4652 TYPE_SIZE (itype
) = TYPE_SIZE (sizetype
);
4653 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (sizetype
);
4654 TYPE_ALIGN (itype
) = TYPE_ALIGN (sizetype
);
4655 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (sizetype
);
4657 if (host_integerp (maxval
, 1))
4658 return type_hash_canon (tree_low_cst (maxval
, 1), itype
);
4663 /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
4664 ENUMERAL_TYPE, BOOLEAN_TYPE, or CHAR_TYPE), with
4665 low bound LOWVAL and high bound HIGHVAL.
4666 if TYPE==NULL_TREE, sizetype is used. */
4669 build_range_type (type
, lowval
, highval
)
4670 tree type
, lowval
, highval
;
4672 register tree itype
= make_node (INTEGER_TYPE
);
4674 TREE_TYPE (itype
) = type
;
4675 if (type
== NULL_TREE
)
4678 push_obstacks (TYPE_OBSTACK (itype
), TYPE_OBSTACK (itype
));
4679 TYPE_MIN_VALUE (itype
) = convert (type
, lowval
);
4680 TYPE_MAX_VALUE (itype
) = highval
? convert (type
, highval
) : NULL
;
4683 TYPE_PRECISION (itype
) = TYPE_PRECISION (type
);
4684 TYPE_MODE (itype
) = TYPE_MODE (type
);
4685 TYPE_SIZE (itype
) = TYPE_SIZE (type
);
4686 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (type
);
4687 TYPE_ALIGN (itype
) = TYPE_ALIGN (type
);
4688 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (type
);
4690 if (host_integerp (lowval
, 0) && highval
!= 0 && host_integerp (highval
, 0))
4691 return type_hash_canon (tree_low_cst (highval
, 0)
4692 - tree_low_cst (lowval
, 0),
4698 /* Just like build_index_type, but takes lowval and highval instead
4699 of just highval (maxval). */
4702 build_index_2_type (lowval
,highval
)
4703 tree lowval
, highval
;
4705 return build_range_type (sizetype
, lowval
, highval
);
4708 /* Return nonzero iff ITYPE1 and ITYPE2 are equal (in the LISP sense).
4709 Needed because when index types are not hashed, equal index types
4710 built at different times appear distinct, even though structurally,
4714 index_type_equal (itype1
, itype2
)
4715 tree itype1
, itype2
;
4717 if (TREE_CODE (itype1
) != TREE_CODE (itype2
))
4720 if (TREE_CODE (itype1
) == INTEGER_TYPE
)
4722 if (TYPE_PRECISION (itype1
) != TYPE_PRECISION (itype2
)
4723 || TYPE_MODE (itype1
) != TYPE_MODE (itype2
)
4724 || simple_cst_equal (TYPE_SIZE (itype1
), TYPE_SIZE (itype2
)) != 1
4725 || TYPE_ALIGN (itype1
) != TYPE_ALIGN (itype2
))
4728 if (1 == simple_cst_equal (TYPE_MIN_VALUE (itype1
),
4729 TYPE_MIN_VALUE (itype2
))
4730 && 1 == simple_cst_equal (TYPE_MAX_VALUE (itype1
),
4731 TYPE_MAX_VALUE (itype2
)))
4738 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
4739 and number of elements specified by the range of values of INDEX_TYPE.
4740 If such a type has already been constructed, reuse it. */
4743 build_array_type (elt_type
, index_type
)
4744 tree elt_type
, index_type
;
4747 unsigned int hashcode
;
4749 if (TREE_CODE (elt_type
) == FUNCTION_TYPE
)
4751 error ("arrays of functions are not meaningful");
4752 elt_type
= integer_type_node
;
4755 /* Make sure TYPE_POINTER_TO (elt_type) is filled in. */
4756 build_pointer_type (elt_type
);
4758 /* Allocate the array after the pointer type,
4759 in case we free it in type_hash_canon. */
4760 t
= make_node (ARRAY_TYPE
);
4761 TREE_TYPE (t
) = elt_type
;
4762 TYPE_DOMAIN (t
) = index_type
;
4764 if (index_type
== 0)
4769 hashcode
= TYPE_HASH (elt_type
) + TYPE_HASH (index_type
);
4770 t
= type_hash_canon (hashcode
, t
);
4772 if (!COMPLETE_TYPE_P (t
))
4777 /* Return the TYPE of the elements comprising
4778 the innermost dimension of ARRAY. */
4781 get_inner_array_type (array
)
4784 tree type
= TREE_TYPE (array
);
4786 while (TREE_CODE (type
) == ARRAY_TYPE
)
4787 type
= TREE_TYPE (type
);
4792 /* Construct, lay out and return
4793 the type of functions returning type VALUE_TYPE
4794 given arguments of types ARG_TYPES.
4795 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
4796 are data type nodes for the arguments of the function.
4797 If such a type has already been constructed, reuse it. */
4800 build_function_type (value_type
, arg_types
)
4801 tree value_type
, arg_types
;
4804 unsigned int hashcode
;
4806 if (TREE_CODE (value_type
) == FUNCTION_TYPE
)
4808 error ("function return type cannot be function");
4809 value_type
= integer_type_node
;
4812 /* Make a node of the sort we want. */
4813 t
= make_node (FUNCTION_TYPE
);
4814 TREE_TYPE (t
) = value_type
;
4815 TYPE_ARG_TYPES (t
) = arg_types
;
4817 /* If we already have such a type, use the old one and free this one. */
4818 hashcode
= TYPE_HASH (value_type
) + type_hash_list (arg_types
);
4819 t
= type_hash_canon (hashcode
, t
);
4821 if (!COMPLETE_TYPE_P (t
))
4826 /* Construct, lay out and return the type of methods belonging to class
4827 BASETYPE and whose arguments and values are described by TYPE.
4828 If that type exists already, reuse it.
4829 TYPE must be a FUNCTION_TYPE node. */
4832 build_method_type (basetype
, type
)
4833 tree basetype
, type
;
4836 unsigned int hashcode
;
4838 /* Make a node of the sort we want. */
4839 t
= make_node (METHOD_TYPE
);
4841 if (TREE_CODE (type
) != FUNCTION_TYPE
)
4844 TYPE_METHOD_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
4845 TREE_TYPE (t
) = TREE_TYPE (type
);
4847 /* The actual arglist for this function includes a "hidden" argument
4848 which is "this". Put it into the list of argument types. */
4851 = tree_cons (NULL_TREE
,
4852 build_pointer_type (basetype
), TYPE_ARG_TYPES (type
));
4854 /* If we already have such a type, use the old one and free this one. */
4855 hashcode
= TYPE_HASH (basetype
) + TYPE_HASH (type
);
4856 t
= type_hash_canon (hashcode
, t
);
4858 if (!COMPLETE_TYPE_P (t
))
4864 /* Construct, lay out and return the type of offsets to a value
4865 of type TYPE, within an object of type BASETYPE.
4866 If a suitable offset type exists already, reuse it. */
4869 build_offset_type (basetype
, type
)
4870 tree basetype
, type
;
4873 unsigned int hashcode
;
4875 /* Make a node of the sort we want. */
4876 t
= make_node (OFFSET_TYPE
);
4878 TYPE_OFFSET_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
4879 TREE_TYPE (t
) = type
;
4881 /* If we already have such a type, use the old one and free this one. */
4882 hashcode
= TYPE_HASH (basetype
) + TYPE_HASH (type
);
4883 t
= type_hash_canon (hashcode
, t
);
4885 if (!COMPLETE_TYPE_P (t
))
4891 /* Create a complex type whose components are COMPONENT_TYPE. */
4894 build_complex_type (component_type
)
4895 tree component_type
;
4898 unsigned int hashcode
;
4900 /* Make a node of the sort we want. */
4901 t
= make_node (COMPLEX_TYPE
);
4903 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (component_type
);
4904 set_type_quals (t
, TYPE_QUALS (component_type
));
4906 /* If we already have such a type, use the old one and free this one. */
4907 hashcode
= TYPE_HASH (component_type
);
4908 t
= type_hash_canon (hashcode
, t
);
4910 if (!COMPLETE_TYPE_P (t
))
4913 /* If we are writing Dwarf2 output we need to create a name,
4914 since complex is a fundamental type. */
4915 if (write_symbols
== DWARF2_DEBUG
&& ! TYPE_NAME (t
))
4918 if (component_type
== char_type_node
)
4919 name
= "complex char";
4920 else if (component_type
== signed_char_type_node
)
4921 name
= "complex signed char";
4922 else if (component_type
== unsigned_char_type_node
)
4923 name
= "complex unsigned char";
4924 else if (component_type
== short_integer_type_node
)
4925 name
= "complex short int";
4926 else if (component_type
== short_unsigned_type_node
)
4927 name
= "complex short unsigned int";
4928 else if (component_type
== integer_type_node
)
4929 name
= "complex int";
4930 else if (component_type
== unsigned_type_node
)
4931 name
= "complex unsigned int";
4932 else if (component_type
== long_integer_type_node
)
4933 name
= "complex long int";
4934 else if (component_type
== long_unsigned_type_node
)
4935 name
= "complex long unsigned int";
4936 else if (component_type
== long_long_integer_type_node
)
4937 name
= "complex long long int";
4938 else if (component_type
== long_long_unsigned_type_node
)
4939 name
= "complex long long unsigned int";
4944 TYPE_NAME (t
) = get_identifier (name
);
4950 /* Return OP, stripped of any conversions to wider types as much as is safe.
4951 Converting the value back to OP's type makes a value equivalent to OP.
4953 If FOR_TYPE is nonzero, we return a value which, if converted to
4954 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
4956 If FOR_TYPE is nonzero, unaligned bit-field references may be changed to the
4957 narrowest type that can hold the value, even if they don't exactly fit.
4958 Otherwise, bit-field references are changed to a narrower type
4959 only if they can be fetched directly from memory in that type.
4961 OP must have integer, real or enumeral type. Pointers are not allowed!
4963 There are some cases where the obvious value we could return
4964 would regenerate to OP if converted to OP's type,
4965 but would not extend like OP to wider types.
4966 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
4967 For example, if OP is (unsigned short)(signed char)-1,
4968 we avoid returning (signed char)-1 if FOR_TYPE is int,
4969 even though extending that to an unsigned short would regenerate OP,
4970 since the result of extending (signed char)-1 to (int)
4971 is different from (int) OP. */
4974 get_unwidened (op
, for_type
)
4978 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
4979 register tree type
= TREE_TYPE (op
);
4980 register unsigned final_prec
4981 = TYPE_PRECISION (for_type
!= 0 ? for_type
: type
);
4983 = (for_type
!= 0 && for_type
!= type
4984 && final_prec
> TYPE_PRECISION (type
)
4985 && TREE_UNSIGNED (type
));
4986 register tree win
= op
;
4988 while (TREE_CODE (op
) == NOP_EXPR
)
4990 register int bitschange
4991 = TYPE_PRECISION (TREE_TYPE (op
))
4992 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0)));
4994 /* Truncations are many-one so cannot be removed.
4995 Unless we are later going to truncate down even farther. */
4997 && final_prec
> TYPE_PRECISION (TREE_TYPE (op
)))
5000 /* See what's inside this conversion. If we decide to strip it,
5002 op
= TREE_OPERAND (op
, 0);
5004 /* If we have not stripped any zero-extensions (uns is 0),
5005 we can strip any kind of extension.
5006 If we have previously stripped a zero-extension,
5007 only zero-extensions can safely be stripped.
5008 Any extension can be stripped if the bits it would produce
5009 are all going to be discarded later by truncating to FOR_TYPE. */
5013 if (! uns
|| final_prec
<= TYPE_PRECISION (TREE_TYPE (op
)))
5015 /* TREE_UNSIGNED says whether this is a zero-extension.
5016 Let's avoid computing it if it does not affect WIN
5017 and if UNS will not be needed again. */
5018 if ((uns
|| TREE_CODE (op
) == NOP_EXPR
)
5019 && TREE_UNSIGNED (TREE_TYPE (op
)))
5027 if (TREE_CODE (op
) == COMPONENT_REF
5028 /* Since type_for_size always gives an integer type. */
5029 && TREE_CODE (type
) != REAL_TYPE
5030 /* Don't crash if field not laid out yet. */
5031 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0)
5033 unsigned int innerprec
5034 = TREE_INT_CST_LOW (DECL_SIZE (TREE_OPERAND (op
, 1)));
5036 type
= type_for_size (innerprec
, TREE_UNSIGNED (TREE_OPERAND (op
, 1)));
5038 /* We can get this structure field in the narrowest type it fits in.
5039 If FOR_TYPE is 0, do this only for a field that matches the
5040 narrower type exactly and is aligned for it
5041 The resulting extension to its nominal type (a fullword type)
5042 must fit the same conditions as for other extensions. */
5044 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
5045 && (for_type
|| ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1)))
5046 && (! uns
|| final_prec
<= innerprec
5047 || TREE_UNSIGNED (TREE_OPERAND (op
, 1)))
5050 win
= build (COMPONENT_REF
, type
, TREE_OPERAND (op
, 0),
5051 TREE_OPERAND (op
, 1));
5052 TREE_SIDE_EFFECTS (win
) = TREE_SIDE_EFFECTS (op
);
5053 TREE_THIS_VOLATILE (win
) = TREE_THIS_VOLATILE (op
);
5059 /* Return OP or a simpler expression for a narrower value
5060 which can be sign-extended or zero-extended to give back OP.
5061 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
5062 or 0 if the value should be sign-extended. */
5065 get_narrower (op
, unsignedp_ptr
)
5069 register int uns
= 0;
5071 register tree win
= op
;
5073 while (TREE_CODE (op
) == NOP_EXPR
)
5075 register int bitschange
5076 = (TYPE_PRECISION (TREE_TYPE (op
))
5077 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0))));
5079 /* Truncations are many-one so cannot be removed. */
5083 /* See what's inside this conversion. If we decide to strip it,
5085 op
= TREE_OPERAND (op
, 0);
5089 /* An extension: the outermost one can be stripped,
5090 but remember whether it is zero or sign extension. */
5092 uns
= TREE_UNSIGNED (TREE_TYPE (op
));
5093 /* Otherwise, if a sign extension has been stripped,
5094 only sign extensions can now be stripped;
5095 if a zero extension has been stripped, only zero-extensions. */
5096 else if (uns
!= TREE_UNSIGNED (TREE_TYPE (op
)))
5100 else /* bitschange == 0 */
5102 /* A change in nominal type can always be stripped, but we must
5103 preserve the unsignedness. */
5105 uns
= TREE_UNSIGNED (TREE_TYPE (op
));
5112 if (TREE_CODE (op
) == COMPONENT_REF
5113 /* Since type_for_size always gives an integer type. */
5114 && TREE_CODE (TREE_TYPE (op
)) != REAL_TYPE
)
5116 unsigned int innerprec
5117 = TREE_INT_CST_LOW (DECL_SIZE (TREE_OPERAND (op
, 1)));
5119 tree type
= type_for_size (innerprec
, TREE_UNSIGNED (op
));
5121 /* We can get this structure field in a narrower type that fits it,
5122 but the resulting extension to its nominal type (a fullword type)
5123 must satisfy the same conditions as for other extensions.
5125 Do this only for fields that are aligned (not bit-fields),
5126 because when bit-field insns will be used there is no
5127 advantage in doing this. */
5129 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
5130 && ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1))
5131 && (first
|| uns
== TREE_UNSIGNED (TREE_OPERAND (op
, 1)))
5135 uns
= TREE_UNSIGNED (TREE_OPERAND (op
, 1));
5136 win
= build (COMPONENT_REF
, type
, TREE_OPERAND (op
, 0),
5137 TREE_OPERAND (op
, 1));
5138 TREE_SIDE_EFFECTS (win
) = TREE_SIDE_EFFECTS (op
);
5139 TREE_THIS_VOLATILE (win
) = TREE_THIS_VOLATILE (op
);
5142 *unsignedp_ptr
= uns
;
5146 /* Nonzero if integer constant C has a value that is permissible
5147 for type TYPE (an INTEGER_TYPE). */
5150 int_fits_type_p (c
, type
)
5153 if (TREE_UNSIGNED (type
))
5154 return (! (TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
5155 && INT_CST_LT_UNSIGNED (TYPE_MAX_VALUE (type
), c
))
5156 && ! (TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
5157 && INT_CST_LT_UNSIGNED (c
, TYPE_MIN_VALUE (type
)))
5158 /* Negative ints never fit unsigned types. */
5159 && ! (TREE_INT_CST_HIGH (c
) < 0
5160 && ! TREE_UNSIGNED (TREE_TYPE (c
))));
5162 return (! (TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
5163 && INT_CST_LT (TYPE_MAX_VALUE (type
), c
))
5164 && ! (TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
5165 && INT_CST_LT (c
, TYPE_MIN_VALUE (type
)))
5166 /* Unsigned ints with top bit set never fit signed types. */
5167 && ! (TREE_INT_CST_HIGH (c
) < 0
5168 && TREE_UNSIGNED (TREE_TYPE (c
))));
5171 /* Given a DECL or TYPE, return the scope in which it was declared, or
5172 NULL_TREE if there is no containing scope. */
5175 get_containing_scope (t
)
5178 return (TYPE_P (t
) ? TYPE_CONTEXT (t
) : DECL_CONTEXT (t
));
5181 /* Return the innermost context enclosing DECL that is
5182 a FUNCTION_DECL, or zero if none. */
5185 decl_function_context (decl
)
5190 if (TREE_CODE (decl
) == ERROR_MARK
)
5193 if (TREE_CODE (decl
) == SAVE_EXPR
)
5194 context
= SAVE_EXPR_CONTEXT (decl
);
5196 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
5197 where we look up the function at runtime. Such functions always take
5198 a first argument of type 'pointer to real context'.
5200 C++ should really be fixed to use DECL_CONTEXT for the real context,
5201 and use something else for the "virtual context". */
5202 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VINDEX (decl
))
5205 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
5207 context
= DECL_CONTEXT (decl
);
5209 while (context
&& TREE_CODE (context
) != FUNCTION_DECL
)
5211 if (TREE_CODE (context
) == BLOCK
)
5212 context
= BLOCK_SUPERCONTEXT (context
);
5214 context
= get_containing_scope (context
);
5220 /* Return the innermost context enclosing DECL that is
5221 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
5222 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
5225 decl_type_context (decl
)
5228 tree context
= DECL_CONTEXT (decl
);
5232 if (TREE_CODE (context
) == RECORD_TYPE
5233 || TREE_CODE (context
) == UNION_TYPE
5234 || TREE_CODE (context
) == QUAL_UNION_TYPE
)
5237 if (TREE_CODE (context
) == TYPE_DECL
5238 || TREE_CODE (context
) == FUNCTION_DECL
)
5239 context
= DECL_CONTEXT (context
);
5241 else if (TREE_CODE (context
) == BLOCK
)
5242 context
= BLOCK_SUPERCONTEXT (context
);
5245 /* Unhandled CONTEXT!? */
5251 /* CALL is a CALL_EXPR. Return the declaration for the function
5252 called, or NULL_TREE if the called function cannot be
5256 get_callee_fndecl (call
)
5261 /* It's invalid to call this function with anything but a
5263 if (TREE_CODE (call
) != CALL_EXPR
)
5266 /* The first operand to the CALL is the address of the function
5268 addr
= TREE_OPERAND (call
, 0);
5272 /* If this is a readonly function pointer, extract its initial value. */
5273 if (DECL_P (addr
) && TREE_CODE (addr
) != FUNCTION_DECL
5274 && TREE_READONLY (addr
) && ! TREE_THIS_VOLATILE (addr
)
5275 && DECL_INITIAL (addr
))
5276 addr
= DECL_INITIAL (addr
);
5278 /* If the address is just `&f' for some function `f', then we know
5279 that `f' is being called. */
5280 if (TREE_CODE (addr
) == ADDR_EXPR
5281 && TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
)
5282 return TREE_OPERAND (addr
, 0);
5284 /* We couldn't figure out what was being called. */
5288 /* Print debugging information about the obstack O, named STR. */
5291 print_obstack_statistics (str
, o
)
5295 struct _obstack_chunk
*chunk
= o
->chunk
;
5299 n_alloc
+= o
->next_free
- chunk
->contents
;
5300 chunk
= chunk
->prev
;
5304 n_alloc
+= chunk
->limit
- &chunk
->contents
[0];
5305 chunk
= chunk
->prev
;
5307 fprintf (stderr
, "obstack %s: %u bytes, %d chunks\n",
5308 str
, n_alloc
, n_chunks
);
5311 /* Print debugging information about tree nodes generated during the compile,
5312 and any language-specific information. */
5315 dump_tree_statistics ()
5317 #ifdef GATHER_STATISTICS
5319 int total_nodes
, total_bytes
;
5322 fprintf (stderr
, "\n??? tree nodes created\n\n");
5323 #ifdef GATHER_STATISTICS
5324 fprintf (stderr
, "Kind Nodes Bytes\n");
5325 fprintf (stderr
, "-------------------------------------\n");
5326 total_nodes
= total_bytes
= 0;
5327 for (i
= 0; i
< (int) all_kinds
; i
++)
5329 fprintf (stderr
, "%-20s %6d %9d\n", tree_node_kind_names
[i
],
5330 tree_node_counts
[i
], tree_node_sizes
[i
]);
5331 total_nodes
+= tree_node_counts
[i
];
5332 total_bytes
+= tree_node_sizes
[i
];
5334 fprintf (stderr
, "%-20s %9d\n", "identifier names", id_string_size
);
5335 fprintf (stderr
, "-------------------------------------\n");
5336 fprintf (stderr
, "%-20s %6d %9d\n", "Total", total_nodes
, total_bytes
);
5337 fprintf (stderr
, "-------------------------------------\n");
5339 fprintf (stderr
, "(No per-node statistics)\n");
5341 print_obstack_statistics ("permanent_obstack", &permanent_obstack
);
5342 print_obstack_statistics ("maybepermanent_obstack", &maybepermanent_obstack
);
5343 print_obstack_statistics ("temporary_obstack", &temporary_obstack
);
5344 print_obstack_statistics ("momentary_obstack", &momentary_obstack
);
5345 print_obstack_statistics ("temp_decl_obstack", &temp_decl_obstack
);
5346 print_type_hash_statistics ();
5347 print_lang_statistics ();
5350 #define FILE_FUNCTION_PREFIX_LEN 9
5352 #ifndef NO_DOLLAR_IN_LABEL
5353 #define FILE_FUNCTION_FORMAT "_GLOBAL_$%s$%s"
5354 #else /* NO_DOLLAR_IN_LABEL */
5355 #ifndef NO_DOT_IN_LABEL
5356 #define FILE_FUNCTION_FORMAT "_GLOBAL_.%s.%s"
5357 #else /* NO_DOT_IN_LABEL */
5358 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
5359 #endif /* NO_DOT_IN_LABEL */
5360 #endif /* NO_DOLLAR_IN_LABEL */
5362 /* Appends 6 random characters to TEMPLATE to (hopefully) avoid name
5363 clashes in cases where we can't reliably choose a unique name.
5365 Derived from mkstemp.c in libiberty. */
5368 append_random_chars (template)
5371 static const char letters
[]
5372 = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
5373 static unsigned HOST_WIDE_INT value
;
5374 unsigned HOST_WIDE_INT v
;
5376 #ifdef HAVE_GETTIMEOFDAY
5380 template += strlen (template);
5382 #ifdef HAVE_GETTIMEOFDAY
5383 /* Get some more or less random data. */
5384 gettimeofday (&tv
, NULL
);
5385 value
+= ((unsigned HOST_WIDE_INT
) tv
.tv_usec
<< 16) ^ tv
.tv_sec
^ getpid ();
5392 /* Fill in the random bits. */
5393 template[0] = letters
[v
% 62];
5395 template[1] = letters
[v
% 62];
5397 template[2] = letters
[v
% 62];
5399 template[3] = letters
[v
% 62];
5401 template[4] = letters
[v
% 62];
5403 template[5] = letters
[v
% 62];
5408 /* Generate a name for a function unique to this translation unit.
5409 TYPE is some string to identify the purpose of this function to the
5410 linker or collect2. */
5413 get_file_function_name_long (type
)
5420 if (first_global_object_name
)
5421 p
= first_global_object_name
;
5424 /* We don't have anything that we know to be unique to this translation
5425 unit, so use what we do have and throw in some randomness. */
5427 const char *name
= weak_global_object_name
;
5428 const char *file
= main_input_filename
;
5433 file
= input_filename
;
5435 q
= (char *) alloca (7 + strlen (name
) + strlen (file
));
5437 sprintf (q
, "%s%s", name
, file
);
5438 append_random_chars (q
);
5442 buf
= (char *) alloca (sizeof (FILE_FUNCTION_FORMAT
) + strlen (p
)
5445 /* Set up the name of the file-level functions we may need.
5446 Use a global object (which is already required to be unique over
5447 the program) rather than the file name (which imposes extra
5449 sprintf (buf
, FILE_FUNCTION_FORMAT
, type
, p
);
5451 /* Don't need to pull weird characters out of global names. */
5452 if (p
!= first_global_object_name
)
5454 for (q
= buf
+11; *q
; q
++)
5456 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
5459 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
5467 return get_identifier (buf
);
5470 /* If KIND=='I', return a suitable global initializer (constructor) name.
5471 If KIND=='D', return a suitable global clean-up (destructor) name. */
5474 get_file_function_name (kind
)
5482 return get_file_function_name_long (p
);
5485 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
5486 The result is placed in BUFFER (which has length BIT_SIZE),
5487 with one bit in each char ('\000' or '\001').
5489 If the constructor is constant, NULL_TREE is returned.
5490 Otherwise, a TREE_LIST of the non-constant elements is emitted. */
5493 get_set_constructor_bits (init
, buffer
, bit_size
)
5500 HOST_WIDE_INT domain_min
5501 = TREE_INT_CST_LOW (TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (init
))));
5502 tree non_const_bits
= NULL_TREE
;
5503 for (i
= 0; i
< bit_size
; i
++)
5506 for (vals
= TREE_OPERAND (init
, 1);
5507 vals
!= NULL_TREE
; vals
= TREE_CHAIN (vals
))
5509 if (TREE_CODE (TREE_VALUE (vals
)) != INTEGER_CST
5510 || (TREE_PURPOSE (vals
) != NULL_TREE
5511 && TREE_CODE (TREE_PURPOSE (vals
)) != INTEGER_CST
))
5513 = tree_cons (TREE_PURPOSE (vals
), TREE_VALUE (vals
), non_const_bits
);
5514 else if (TREE_PURPOSE (vals
) != NULL_TREE
)
5516 /* Set a range of bits to ones. */
5517 HOST_WIDE_INT lo_index
5518 = TREE_INT_CST_LOW (TREE_PURPOSE (vals
)) - domain_min
;
5519 HOST_WIDE_INT hi_index
5520 = TREE_INT_CST_LOW (TREE_VALUE (vals
)) - domain_min
;
5522 if (lo_index
< 0 || lo_index
>= bit_size
5523 || hi_index
< 0 || hi_index
>= bit_size
)
5525 for ( ; lo_index
<= hi_index
; lo_index
++)
5526 buffer
[lo_index
] = 1;
5530 /* Set a single bit to one. */
5532 = TREE_INT_CST_LOW (TREE_VALUE (vals
)) - domain_min
;
5533 if (index
< 0 || index
>= bit_size
)
5535 error ("invalid initializer for bit string");
5541 return non_const_bits
;
5544 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
5545 The result is placed in BUFFER (which is an array of bytes).
5546 If the constructor is constant, NULL_TREE is returned.
5547 Otherwise, a TREE_LIST of the non-constant elements is emitted. */
5550 get_set_constructor_bytes (init
, buffer
, wd_size
)
5552 unsigned char *buffer
;
5556 int set_word_size
= BITS_PER_UNIT
;
5557 int bit_size
= wd_size
* set_word_size
;
5559 unsigned char *bytep
= buffer
;
5560 char *bit_buffer
= (char *) alloca(bit_size
);
5561 tree non_const_bits
= get_set_constructor_bits (init
, bit_buffer
, bit_size
);
5563 for (i
= 0; i
< wd_size
; i
++)
5566 for (i
= 0; i
< bit_size
; i
++)
5570 if (BYTES_BIG_ENDIAN
)
5571 *bytep
|= (1 << (set_word_size
- 1 - bit_pos
));
5573 *bytep
|= 1 << bit_pos
;
5576 if (bit_pos
>= set_word_size
)
5577 bit_pos
= 0, bytep
++;
5579 return non_const_bits
;
5582 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
5583 /* Complain that the tree code of NODE does not match the expected CODE.
5584 FILE, LINE, and FUNCTION are of the caller. */
5586 tree_check_failed (node
, code
, file
, line
, function
)
5588 enum tree_code code
;
5591 const char *function
;
5593 error ("Tree check: expected %s, have %s",
5594 tree_code_name
[code
], tree_code_name
[TREE_CODE (node
)]);
5595 fancy_abort (file
, line
, function
);
5598 /* Similar to above, except that we check for a class of tree
5599 code, given in CL. */
5601 tree_class_check_failed (node
, cl
, file
, line
, function
)
5606 const char *function
;
5608 error ("Tree check: expected class '%c', have '%c' (%s)",
5609 cl
, TREE_CODE_CLASS (TREE_CODE (node
)),
5610 tree_code_name
[TREE_CODE (node
)]);
5611 fancy_abort (file
, line
, function
);
5614 #endif /* ENABLE_TREE_CHECKING */
5617 /* For a new vector type node T, build the information necessary for
5618 debuggint output. */
5620 finish_vector_type (t
)
5626 tree index
= build_int_2 (TYPE_VECTOR_SUBPARTS (t
) - 1, 0);
5627 tree array
= build_array_type (TREE_TYPE (t
),
5628 build_index_type (index
));
5629 tree rt
= make_node (RECORD_TYPE
);
5631 TYPE_FIELDS (rt
) = build_decl (FIELD_DECL
, get_identifier ("f"), array
);
5632 DECL_CONTEXT (TYPE_FIELDS (rt
)) = rt
;
5634 TYPE_DEBUG_REPRESENTATION_TYPE (t
) = rt
;
5635 /* In dwarfout.c, type lookup uses TYPE_UID numbers. We want to output
5636 the representation type, and we want to find that die when looking up
5637 the vector type. This is most easily achieved by making the TYPE_UID
5639 TYPE_UID (rt
) = TYPE_UID (t
);
5643 #ifndef CHAR_TYPE_SIZE
5644 #define CHAR_TYPE_SIZE BITS_PER_UNIT
5647 #ifndef SHORT_TYPE_SIZE
5648 #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
5651 #ifndef INT_TYPE_SIZE
5652 #define INT_TYPE_SIZE BITS_PER_WORD
5655 #ifndef LONG_TYPE_SIZE
5656 #define LONG_TYPE_SIZE BITS_PER_WORD
5659 #ifndef LONG_LONG_TYPE_SIZE
5660 #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
5663 #ifndef FLOAT_TYPE_SIZE
5664 #define FLOAT_TYPE_SIZE BITS_PER_WORD
5667 #ifndef DOUBLE_TYPE_SIZE
5668 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
5671 #ifndef LONG_DOUBLE_TYPE_SIZE
5672 #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
5675 /* Create nodes for all integer types (and error_mark_node) using the sizes
5676 of C datatypes. The caller should call set_sizetype soon after calling
5677 this function to select one of the types as sizetype. */
5680 build_common_tree_nodes (signed_char
)
5683 error_mark_node
= make_node (ERROR_MARK
);
5684 TREE_TYPE (error_mark_node
) = error_mark_node
;
5686 initialize_sizetypes ();
5688 /* Define both `signed char' and `unsigned char'. */
5689 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
5690 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
5692 /* Define `char', which is like either `signed char' or `unsigned char'
5693 but not the same as either. */
5696 ? make_signed_type (CHAR_TYPE_SIZE
)
5697 : make_unsigned_type (CHAR_TYPE_SIZE
));
5699 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
5700 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
5701 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
5702 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
5703 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
5704 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
5705 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
5706 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
5708 intQI_type_node
= make_signed_type (GET_MODE_BITSIZE (QImode
));
5709 intHI_type_node
= make_signed_type (GET_MODE_BITSIZE (HImode
));
5710 intSI_type_node
= make_signed_type (GET_MODE_BITSIZE (SImode
));
5711 intDI_type_node
= make_signed_type (GET_MODE_BITSIZE (DImode
));
5712 #if HOST_BITS_PER_WIDE_INT >= 64
5713 intTI_type_node
= make_signed_type (GET_MODE_BITSIZE (TImode
));
5716 unsigned_intQI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (QImode
));
5717 unsigned_intHI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (HImode
));
5718 unsigned_intSI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (SImode
));
5719 unsigned_intDI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (DImode
));
5720 #if HOST_BITS_PER_WIDE_INT >= 64
5721 unsigned_intTI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (TImode
));
5725 /* Call this function after calling build_common_tree_nodes and set_sizetype.
5726 It will create several other common tree nodes. */
5729 build_common_tree_nodes_2 (short_double
)
5732 /* Define these next since types below may used them. */
5733 integer_zero_node
= build_int_2 (0, 0);
5734 integer_one_node
= build_int_2 (1, 0);
5736 size_zero_node
= size_int (0);
5737 size_one_node
= size_int (1);
5738 bitsize_zero_node
= bitsize_int (0);
5739 bitsize_one_node
= bitsize_int (1);
5740 bitsize_unit_node
= bitsize_int (BITS_PER_UNIT
);
5742 void_type_node
= make_node (VOID_TYPE
);
5743 layout_type (void_type_node
);
5745 /* We are not going to have real types in C with less than byte alignment,
5746 so we might as well not have any types that claim to have it. */
5747 TYPE_ALIGN (void_type_node
) = BITS_PER_UNIT
;
5748 TYPE_USER_ALIGN (void_type_node
) = 0;
5750 null_pointer_node
= build_int_2 (0, 0);
5751 TREE_TYPE (null_pointer_node
) = build_pointer_type (void_type_node
);
5752 layout_type (TREE_TYPE (null_pointer_node
));
5754 ptr_type_node
= build_pointer_type (void_type_node
);
5756 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
5758 float_type_node
= make_node (REAL_TYPE
);
5759 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
5760 layout_type (float_type_node
);
5762 double_type_node
= make_node (REAL_TYPE
);
5764 TYPE_PRECISION (double_type_node
) = FLOAT_TYPE_SIZE
;
5766 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
5767 layout_type (double_type_node
);
5769 long_double_type_node
= make_node (REAL_TYPE
);
5770 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
5771 layout_type (long_double_type_node
);
5773 complex_integer_type_node
= make_node (COMPLEX_TYPE
);
5774 TREE_TYPE (complex_integer_type_node
) = integer_type_node
;
5775 layout_type (complex_integer_type_node
);
5777 complex_float_type_node
= make_node (COMPLEX_TYPE
);
5778 TREE_TYPE (complex_float_type_node
) = float_type_node
;
5779 layout_type (complex_float_type_node
);
5781 complex_double_type_node
= make_node (COMPLEX_TYPE
);
5782 TREE_TYPE (complex_double_type_node
) = double_type_node
;
5783 layout_type (complex_double_type_node
);
5785 complex_long_double_type_node
= make_node (COMPLEX_TYPE
);
5786 TREE_TYPE (complex_long_double_type_node
) = long_double_type_node
;
5787 layout_type (complex_long_double_type_node
);
5789 #ifdef BUILD_VA_LIST_TYPE
5790 BUILD_VA_LIST_TYPE(va_list_type_node
);
5792 va_list_type_node
= ptr_type_node
;
5795 V4SF_type_node
= make_node (VECTOR_TYPE
);
5796 TREE_TYPE (V4SF_type_node
) = float_type_node
;
5797 TYPE_MODE (V4SF_type_node
) = V4SFmode
;
5798 finish_vector_type (V4SF_type_node
);
5800 V4SI_type_node
= make_node (VECTOR_TYPE
);
5801 TREE_TYPE (V4SI_type_node
) = intSI_type_node
;
5802 TYPE_MODE (V4SI_type_node
) = V4SImode
;
5803 finish_vector_type (V4SI_type_node
);
5805 V2SI_type_node
= make_node (VECTOR_TYPE
);
5806 TREE_TYPE (V2SI_type_node
) = intSI_type_node
;
5807 TYPE_MODE (V2SI_type_node
) = V2SImode
;
5808 finish_vector_type (V2SI_type_node
);
5810 V4HI_type_node
= make_node (VECTOR_TYPE
);
5811 TREE_TYPE (V4HI_type_node
) = intHI_type_node
;
5812 TYPE_MODE (V4HI_type_node
) = V4HImode
;
5813 finish_vector_type (V4HI_type_node
);
5815 V8QI_type_node
= make_node (VECTOR_TYPE
);
5816 TREE_TYPE (V8QI_type_node
) = intQI_type_node
;
5817 TYPE_MODE (V8QI_type_node
) = V8QImode
;
5818 finish_vector_type (V8QI_type_node
);