2000-07-03 Donn Terry (donnte@microsoft.com)
[official-gcc.git] / gcc / tree.c
blobe1551c56338ed3eb994ad931d0f1c1c61e345b35
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)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
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
28 nodes of that code.
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. */
37 #include "config.h"
38 #include "system.h"
39 #include "flags.h"
40 #include "tree.h"
41 #include "tm_p.h"
42 #include "function.h"
43 #include "obstack.h"
44 #include "toplev.h"
45 #include "ggc.h"
46 #include "hashtab.h"
47 #include "output.h"
49 #define obstack_chunk_alloc xmalloc
50 #define obstack_chunk_free free
51 /* obstack.[ch] explicitly declined to prototype this. */
52 extern int _obstack_allocated_p PARAMS ((struct obstack *h, PTR obj));
54 static void unsave_expr_now_r PARAMS ((tree));
56 /* 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
92 has been parsed. */
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. */
118 struct obstack_stack
120 struct obstack_stack *next;
121 struct obstack *current;
122 struct obstack *saveable;
123 struct obstack *expression;
124 struct obstack *rtl;
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. */
155 char *base;
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] = {
169 #include "tree.def"
171 #undef DEFTREECODE
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] = {
180 #include "tree.def"
182 #undef DEFTREECODE
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] = {
189 #include "tree.def"
191 #undef DEFTREECODE
193 /* Statistics-gathering stuff. */
194 typedef enum
196 d_kind,
197 t_kind,
198 b_kind,
199 s_kind,
200 r_kind,
201 e_kind,
202 c_kind,
203 id_kind,
204 op_id_kind,
205 perm_list_kind,
206 temp_list_kind,
207 vec_kind,
208 x_kind,
209 lang_decl,
210 lang_type,
211 all_kinds
212 } tree_node_kind;
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[] = {
219 "decls",
220 "types",
221 "blocks",
222 "stmts",
223 "refs",
224 "exprs",
225 "constants",
226 "identifiers",
227 "op_identifiers",
228 "perm_tree_lists",
229 "temp_tree_lists",
230 "vecs",
231 "random kinds",
232 "lang_decl kinds",
233 "lang_type kinds"
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
250 codes are made. */
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. */
256 struct type_hash
258 unsigned long hash;
259 tree type;
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 *));
283 /* If non-null, these are language-specific helper functions for
284 unsave_expr_now. If present, LANG_UNSAVE is called before its
285 argument (an UNSAVE_EXPR) is to be unsaved, and all other
286 processing in unsave_expr_now is aborted. LANG_UNSAVE_EXPR_NOW is
287 called from unsave_expr_1 for language-specific tree codes. */
288 void (*lang_unsave) PARAMS ((tree *));
289 void (*lang_unsave_expr_now) PARAMS ((tree));
291 /* The string used as a placeholder instead of a source file name for
292 built-in tree nodes. The variable, which is dynamically allocated,
293 should be used; the macro is only used to initialize it. */
295 static char *built_in_filename;
296 #define BUILT_IN_FILENAME ("<built-in>")
298 tree global_trees[TI_MAX];
299 tree integer_types[itk_none];
301 /* Init the principal obstacks. */
303 void
304 init_obstacks ()
306 gcc_obstack_init (&obstack_stack_obstack);
307 gcc_obstack_init (&permanent_obstack);
309 gcc_obstack_init (&temporary_obstack);
310 temporary_firstobj = (char *) obstack_alloc (&temporary_obstack, 0);
311 gcc_obstack_init (&momentary_obstack);
312 momentary_firstobj = (char *) obstack_alloc (&momentary_obstack, 0);
313 momentary_function_firstobj = momentary_firstobj;
314 gcc_obstack_init (&maybepermanent_obstack);
315 maybepermanent_firstobj
316 = (char *) obstack_alloc (&maybepermanent_obstack, 0);
317 gcc_obstack_init (&temp_decl_obstack);
318 temp_decl_firstobj = (char *) obstack_alloc (&temp_decl_obstack, 0);
320 function_obstack = &temporary_obstack;
321 function_maybepermanent_obstack = &maybepermanent_obstack;
322 current_obstack = &permanent_obstack;
323 expression_obstack = &permanent_obstack;
324 rtl_obstack = saveable_obstack = &permanent_obstack;
326 /* Init the hash table of identifiers. */
327 bzero ((char *) hash_table, sizeof hash_table);
328 ggc_add_tree_root (hash_table, sizeof hash_table / sizeof (tree));
330 /* Initialize the hash table of types. */
331 type_hash_table = htab_create (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
332 type_hash_eq, 0);
333 ggc_add_root (&type_hash_table, 1, sizeof type_hash_table, mark_type_hash);
334 ggc_add_tree_root (global_trees, TI_MAX);
335 ggc_add_tree_root (integer_types, itk_none);
338 void
339 gcc_obstack_init (obstack)
340 struct obstack *obstack;
342 /* Let particular systems override the size of a chunk. */
343 #ifndef OBSTACK_CHUNK_SIZE
344 #define OBSTACK_CHUNK_SIZE 0
345 #endif
346 /* Let them override the alloc and free routines too. */
347 #ifndef OBSTACK_CHUNK_ALLOC
348 #define OBSTACK_CHUNK_ALLOC xmalloc
349 #endif
350 #ifndef OBSTACK_CHUNK_FREE
351 #define OBSTACK_CHUNK_FREE free
352 #endif
353 _obstack_begin (obstack, OBSTACK_CHUNK_SIZE, 0,
354 (void *(*) PARAMS ((long))) OBSTACK_CHUNK_ALLOC,
355 (void (*) PARAMS ((void *))) OBSTACK_CHUNK_FREE);
358 /* Save all variables describing the current status into the structure
359 *P. This function is called whenever we start compiling one
360 function in the midst of compiling another. For example, when
361 compiling a nested function, or, in C++, a template instantiation
362 that is required by the function we are currently compiling.
364 CONTEXT is the decl_function_context for the function we're about to
365 compile; if it isn't current_function_decl, we have to play some games. */
367 void
368 save_tree_status (p)
369 struct function *p;
371 p->all_types_permanent = all_types_permanent;
372 p->momentary_stack = momentary_stack;
373 p->maybepermanent_firstobj = maybepermanent_firstobj;
374 p->temporary_firstobj = temporary_firstobj;
375 p->momentary_firstobj = momentary_firstobj;
376 p->momentary_function_firstobj = momentary_function_firstobj;
377 p->function_obstack = function_obstack;
378 p->function_maybepermanent_obstack = function_maybepermanent_obstack;
379 p->current_obstack = current_obstack;
380 p->expression_obstack = expression_obstack;
381 p->saveable_obstack = saveable_obstack;
382 p->rtl_obstack = rtl_obstack;
384 function_maybepermanent_obstack
385 = (struct obstack *) xmalloc (sizeof (struct obstack));
386 gcc_obstack_init (function_maybepermanent_obstack);
387 maybepermanent_firstobj
388 = (char *) obstack_finish (function_maybepermanent_obstack);
390 function_obstack = (struct obstack *) xmalloc (sizeof (struct obstack));
391 gcc_obstack_init (function_obstack);
393 current_obstack = &permanent_obstack;
394 expression_obstack = &permanent_obstack;
395 rtl_obstack = saveable_obstack = &permanent_obstack;
397 temporary_firstobj = (char *) obstack_alloc (&temporary_obstack, 0);
398 momentary_firstobj = (char *) obstack_finish (&momentary_obstack);
399 momentary_function_firstobj = momentary_firstobj;
402 /* Restore all variables describing the current status from the structure *P.
403 This is used after a nested function. */
405 void
406 restore_tree_status (p)
407 struct function *p;
409 all_types_permanent = p->all_types_permanent;
410 momentary_stack = p->momentary_stack;
412 obstack_free (&momentary_obstack, momentary_function_firstobj);
414 /* Free saveable storage used by the function just compiled and not
415 saved. */
416 obstack_free (function_maybepermanent_obstack, maybepermanent_firstobj);
417 if (obstack_empty_p (function_maybepermanent_obstack))
419 obstack_free (function_maybepermanent_obstack, NULL);
420 free (function_maybepermanent_obstack);
423 obstack_free (&temporary_obstack, temporary_firstobj);
424 obstack_free (&momentary_obstack, momentary_function_firstobj);
426 obstack_free (function_obstack, NULL);
427 free (function_obstack);
429 temporary_firstobj = p->temporary_firstobj;
430 momentary_firstobj = p->momentary_firstobj;
431 momentary_function_firstobj = p->momentary_function_firstobj;
432 maybepermanent_firstobj = p->maybepermanent_firstobj;
433 function_obstack = p->function_obstack;
434 function_maybepermanent_obstack = p->function_maybepermanent_obstack;
435 current_obstack = p->current_obstack;
436 expression_obstack = p->expression_obstack;
437 saveable_obstack = p->saveable_obstack;
438 rtl_obstack = p->rtl_obstack;
441 /* Start allocating on the temporary (per function) obstack.
442 This is done in start_function before parsing the function body,
443 and before each initialization at top level, and to go back
444 to temporary allocation after doing permanent_allocation. */
446 void
447 temporary_allocation ()
449 /* Note that function_obstack at top level points to temporary_obstack.
450 But within a nested function context, it is a separate obstack. */
451 current_obstack = function_obstack;
452 expression_obstack = function_obstack;
453 rtl_obstack = saveable_obstack = function_maybepermanent_obstack;
454 momentary_stack = 0;
457 /* Start allocating on the permanent obstack but don't
458 free the temporary data. After calling this, call
459 `permanent_allocation' to fully resume permanent allocation status. */
461 void
462 end_temporary_allocation ()
464 current_obstack = &permanent_obstack;
465 expression_obstack = &permanent_obstack;
466 rtl_obstack = saveable_obstack = &permanent_obstack;
469 /* Resume allocating on the temporary obstack, undoing
470 effects of `end_temporary_allocation'. */
472 void
473 resume_temporary_allocation ()
475 current_obstack = function_obstack;
476 expression_obstack = function_obstack;
477 rtl_obstack = saveable_obstack = function_maybepermanent_obstack;
480 /* While doing temporary allocation, switch to allocating in such a
481 way as to save all nodes if the function is inlined. Call
482 resume_temporary_allocation to go back to ordinary temporary
483 allocation. */
485 void
486 saveable_allocation ()
488 /* Note that function_obstack at top level points to temporary_obstack.
489 But within a nested function context, it is a separate obstack. */
490 expression_obstack = current_obstack = saveable_obstack;
493 /* Switch to current obstack CURRENT and maybepermanent obstack SAVEABLE,
494 recording the previously current obstacks on a stack.
495 This does not free any storage in any obstack. */
497 void
498 push_obstacks (current, saveable)
499 struct obstack *current, *saveable;
501 struct obstack_stack *p;
503 p = (struct obstack_stack *) obstack_alloc (&obstack_stack_obstack,
504 (sizeof (struct obstack_stack)));
506 p->current = current_obstack;
507 p->saveable = saveable_obstack;
508 p->expression = expression_obstack;
509 p->rtl = rtl_obstack;
510 p->next = obstack_stack;
511 obstack_stack = p;
513 current_obstack = current;
514 expression_obstack = current;
515 rtl_obstack = saveable_obstack = saveable;
518 /* Save the current set of obstacks, but don't change them. */
520 void
521 push_obstacks_nochange ()
523 struct obstack_stack *p;
525 p = (struct obstack_stack *) obstack_alloc (&obstack_stack_obstack,
526 (sizeof (struct obstack_stack)));
528 p->current = current_obstack;
529 p->saveable = saveable_obstack;
530 p->expression = expression_obstack;
531 p->rtl = rtl_obstack;
532 p->next = obstack_stack;
533 obstack_stack = p;
536 /* Pop the obstack selection stack. */
538 void
539 pop_obstacks ()
541 struct obstack_stack *p;
543 p = obstack_stack;
544 obstack_stack = p->next;
546 current_obstack = p->current;
547 saveable_obstack = p->saveable;
548 expression_obstack = p->expression;
549 rtl_obstack = p->rtl;
551 obstack_free (&obstack_stack_obstack, p);
554 /* Nonzero if temporary allocation is currently in effect.
555 Zero if currently doing permanent allocation. */
558 allocation_temporary_p ()
560 return current_obstack != &permanent_obstack;
563 /* Go back to allocating on the permanent obstack
564 and free everything in the temporary obstack.
566 FUNCTION_END is true only if we have just finished compiling a function.
567 In that case, we also free preserved initial values on the momentary
568 obstack. */
570 void
571 permanent_allocation (function_end)
572 int function_end;
574 /* Free up previous temporary obstack data */
575 obstack_free (&temporary_obstack, temporary_firstobj);
576 if (function_end)
578 obstack_free (&momentary_obstack, momentary_function_firstobj);
579 momentary_firstobj = momentary_function_firstobj;
581 else
582 obstack_free (&momentary_obstack, momentary_firstobj);
584 obstack_free (function_maybepermanent_obstack, maybepermanent_firstobj);
585 obstack_free (&temp_decl_obstack, temp_decl_firstobj);
587 current_obstack = &permanent_obstack;
588 expression_obstack = &permanent_obstack;
589 rtl_obstack = saveable_obstack = &permanent_obstack;
592 /* Save permanently everything on the maybepermanent_obstack. */
594 void
595 preserve_data ()
597 maybepermanent_firstobj
598 = (char *) obstack_alloc (function_maybepermanent_obstack, 0);
601 void
602 preserve_initializer ()
604 struct momentary_level *tem;
605 char *old_momentary;
607 temporary_firstobj
608 = (char *) obstack_alloc (&temporary_obstack, 0);
609 maybepermanent_firstobj
610 = (char *) obstack_alloc (function_maybepermanent_obstack, 0);
612 old_momentary = momentary_firstobj;
613 momentary_firstobj
614 = (char *) obstack_alloc (&momentary_obstack, 0);
615 if (momentary_firstobj != old_momentary)
616 for (tem = momentary_stack; tem; tem = tem->prev)
617 tem->base = momentary_firstobj;
620 /* Start allocating new rtl in current_obstack.
621 Use resume_temporary_allocation
622 to go back to allocating rtl in saveable_obstack. */
624 void
625 rtl_in_current_obstack ()
627 rtl_obstack = current_obstack;
630 /* Start allocating rtl from saveable_obstack. Intended to be used after
631 a call to push_obstacks_nochange. */
633 void
634 rtl_in_saveable_obstack ()
636 rtl_obstack = saveable_obstack;
639 /* Allocate SIZE bytes in the current obstack
640 and return a pointer to them.
641 In practice the current obstack is always the temporary one. */
643 char *
644 oballoc (size)
645 int size;
647 return (char *) obstack_alloc (current_obstack, size);
650 /* Free the object PTR in the current obstack
651 as well as everything allocated since PTR.
652 In practice the current obstack is always the temporary one. */
654 void
655 obfree (ptr)
656 char *ptr;
658 obstack_free (current_obstack, ptr);
661 /* Allocate SIZE bytes in the permanent obstack
662 and return a pointer to them. */
664 char *
665 permalloc (size)
666 int size;
668 return (char *) obstack_alloc (&permanent_obstack, size);
671 /* Allocate NELEM items of SIZE bytes in the permanent obstack
672 and return a pointer to them. The storage is cleared before
673 returning the value. */
675 char *
676 perm_calloc (nelem, size)
677 int nelem;
678 long size;
680 char *rval = (char *) obstack_alloc (&permanent_obstack, nelem * size);
681 bzero (rval, nelem * size);
682 return rval;
685 /* Allocate SIZE bytes in the saveable obstack
686 and return a pointer to them. */
688 char *
689 savealloc (size)
690 int size;
692 return (char *) obstack_alloc (saveable_obstack, size);
695 /* Allocate SIZE bytes in the expression obstack
696 and return a pointer to them. */
698 char *
699 expralloc (size)
700 int size;
702 return (char *) obstack_alloc (expression_obstack, size);
705 /* Print out which obstack an object is in. */
707 void
708 print_obstack_name (object, file, prefix)
709 char *object;
710 FILE *file;
711 const char *prefix;
713 struct obstack *obstack = NULL;
714 const char *obstack_name = NULL;
715 struct function *p;
717 for (p = outer_function_chain; p; p = p->next)
719 if (_obstack_allocated_p (p->function_obstack, object))
721 obstack = p->function_obstack;
722 obstack_name = "containing function obstack";
724 if (_obstack_allocated_p (p->function_maybepermanent_obstack, object))
726 obstack = p->function_maybepermanent_obstack;
727 obstack_name = "containing function maybepermanent obstack";
731 if (_obstack_allocated_p (&obstack_stack_obstack, object))
733 obstack = &obstack_stack_obstack;
734 obstack_name = "obstack_stack_obstack";
736 else if (_obstack_allocated_p (function_obstack, object))
738 obstack = function_obstack;
739 obstack_name = "function obstack";
741 else if (_obstack_allocated_p (&permanent_obstack, object))
743 obstack = &permanent_obstack;
744 obstack_name = "permanent_obstack";
746 else if (_obstack_allocated_p (&momentary_obstack, object))
748 obstack = &momentary_obstack;
749 obstack_name = "momentary_obstack";
751 else if (_obstack_allocated_p (function_maybepermanent_obstack, object))
753 obstack = function_maybepermanent_obstack;
754 obstack_name = "function maybepermanent obstack";
756 else if (_obstack_allocated_p (&temp_decl_obstack, object))
758 obstack = &temp_decl_obstack;
759 obstack_name = "temp_decl_obstack";
762 /* Check to see if the object is in the free area of the obstack. */
763 if (obstack != NULL)
765 if (object >= obstack->next_free
766 && object < obstack->chunk_limit)
767 fprintf (file, "%s in free portion of obstack %s",
768 prefix, obstack_name);
769 else
770 fprintf (file, "%s allocated from %s", prefix, obstack_name);
772 else
773 fprintf (file, "%s not allocated from any obstack", prefix);
776 void
777 debug_obstack (object)
778 char *object;
780 print_obstack_name (object, stderr, "object");
781 fprintf (stderr, ".\n");
784 /* Return 1 if OBJ is in the permanent obstack.
785 This is slow, and should be used only for debugging.
786 Use TREE_PERMANENT for other purposes. */
789 object_permanent_p (obj)
790 tree obj;
792 return _obstack_allocated_p (&permanent_obstack, obj);
795 /* Start a level of momentary allocation.
796 In C, each compound statement has its own level
797 and that level is freed at the end of each statement.
798 All expression nodes are allocated in the momentary allocation level. */
800 void
801 push_momentary ()
803 struct momentary_level *tem
804 = (struct momentary_level *) obstack_alloc (&momentary_obstack,
805 sizeof (struct momentary_level));
806 tem->prev = momentary_stack;
807 tem->base = (char *) obstack_base (&momentary_obstack);
808 tem->obstack = expression_obstack;
809 momentary_stack = tem;
810 expression_obstack = &momentary_obstack;
813 /* Set things up so the next clear_momentary will only clear memory
814 past our present position in momentary_obstack. */
816 void
817 preserve_momentary ()
819 momentary_stack->base = (char *) obstack_base (&momentary_obstack);
822 /* Free all the storage in the current momentary-allocation level.
823 In C, this happens at the end of each statement. */
825 void
826 clear_momentary ()
828 obstack_free (&momentary_obstack, momentary_stack->base);
831 /* Discard a level of momentary allocation.
832 In C, this happens at the end of each compound statement.
833 Restore the status of expression node allocation
834 that was in effect before this level was created. */
836 void
837 pop_momentary ()
839 struct momentary_level *tem = momentary_stack;
840 momentary_stack = tem->prev;
841 expression_obstack = tem->obstack;
842 /* We can't free TEM from the momentary_obstack, because there might
843 be objects above it which have been saved. We can free back to the
844 stack of the level we are popping off though. */
845 obstack_free (&momentary_obstack, tem->base);
848 /* Pop back to the previous level of momentary allocation,
849 but don't free any momentary data just yet. */
851 void
852 pop_momentary_nofree ()
854 struct momentary_level *tem = momentary_stack;
855 momentary_stack = tem->prev;
856 expression_obstack = tem->obstack;
859 /* Call when starting to parse a declaration:
860 make expressions in the declaration last the length of the function.
861 Returns an argument that should be passed to resume_momentary later. */
864 suspend_momentary ()
866 register int tem = expression_obstack == &momentary_obstack;
867 expression_obstack = saveable_obstack;
868 return tem;
871 /* Call when finished parsing a declaration:
872 restore the treatment of node-allocation that was
873 in effect before the suspension.
874 YES should be the value previously returned by suspend_momentary. */
876 void
877 resume_momentary (yes)
878 int yes;
880 if (yes)
881 expression_obstack = &momentary_obstack;
884 /* Init the tables indexed by tree code.
885 Note that languages can add to these tables to define their own codes. */
887 void
888 init_tree_codes ()
890 built_in_filename
891 = ggc_alloc_string (BUILT_IN_FILENAME, sizeof (BUILT_IN_FILENAME));
892 ggc_add_string_root (&built_in_filename, 1);
895 /* Return a newly allocated node of code CODE.
896 Initialize the node's unique id and its TREE_PERMANENT flag.
897 Note that if garbage collection is in use, TREE_PERMANENT will
898 always be zero - we want to eliminate use of TREE_PERMANENT.
899 For decl and type nodes, some other fields are initialized.
900 The rest of the node is initialized to zero.
902 Achoo! I got a code in the node. */
904 tree
905 make_node (code)
906 enum tree_code code;
908 register tree t;
909 register int type = TREE_CODE_CLASS (code);
910 register int length = 0;
911 register struct obstack *obstack = current_obstack;
912 #ifdef GATHER_STATISTICS
913 register tree_node_kind kind;
914 #endif
916 switch (type)
918 case 'd': /* A decl node */
919 #ifdef GATHER_STATISTICS
920 kind = d_kind;
921 #endif
922 length = sizeof (struct tree_decl);
923 /* All decls in an inline function need to be saved. */
924 if (obstack != &permanent_obstack)
925 obstack = saveable_obstack;
927 /* PARM_DECLs go on the context of the parent. If this is a nested
928 function, then we must allocate the PARM_DECL on the parent's
929 obstack, so that they will live to the end of the parent's
930 closing brace. This is necessary in case we try to inline the
931 function into its parent.
933 PARM_DECLs of top-level functions do not have this problem. However,
934 we allocate them where we put the FUNCTION_DECL for languages such as
935 Ada that need to consult some flags in the PARM_DECLs of the function
936 when calling it.
938 See comment in restore_tree_status for why we can't put this
939 in function_obstack. */
940 if (code == PARM_DECL && obstack != &permanent_obstack)
942 tree context = 0;
943 if (current_function_decl)
944 context = decl_function_context (current_function_decl);
946 if (context)
947 obstack
948 = find_function_data (context)->function_maybepermanent_obstack;
950 break;
952 case 't': /* a type node */
953 #ifdef GATHER_STATISTICS
954 kind = t_kind;
955 #endif
956 length = sizeof (struct tree_type);
957 /* All data types are put where we can preserve them if nec. */
958 if (obstack != &permanent_obstack)
959 obstack = all_types_permanent ? &permanent_obstack : saveable_obstack;
960 break;
962 case 'b': /* a lexical block */
963 #ifdef GATHER_STATISTICS
964 kind = b_kind;
965 #endif
966 length = sizeof (struct tree_block);
967 /* All BLOCK nodes are put where we can preserve them if nec. */
968 if (obstack != &permanent_obstack)
969 obstack = saveable_obstack;
970 break;
972 case 's': /* an expression with side effects */
973 #ifdef GATHER_STATISTICS
974 kind = s_kind;
975 goto usual_kind;
976 #endif
977 case 'r': /* a reference */
978 #ifdef GATHER_STATISTICS
979 kind = r_kind;
980 goto usual_kind;
981 #endif
982 case 'e': /* an expression */
983 case '<': /* a comparison expression */
984 case '1': /* a unary arithmetic expression */
985 case '2': /* a binary arithmetic expression */
986 #ifdef GATHER_STATISTICS
987 kind = e_kind;
988 usual_kind:
989 #endif
990 obstack = expression_obstack;
991 /* All BIND_EXPR nodes are put where we can preserve them if nec. */
992 if (code == BIND_EXPR && obstack != &permanent_obstack)
993 obstack = saveable_obstack;
994 length = sizeof (struct tree_exp)
995 + (TREE_CODE_LENGTH (code) - 1) * sizeof (char *);
996 break;
998 case 'c': /* a constant */
999 #ifdef GATHER_STATISTICS
1000 kind = c_kind;
1001 #endif
1002 obstack = expression_obstack;
1004 /* We can't use TREE_CODE_LENGTH for INTEGER_CST, since the number of
1005 words is machine-dependent due to varying length of HOST_WIDE_INT,
1006 which might be wider than a pointer (e.g., long long). Similarly
1007 for REAL_CST, since the number of words is machine-dependent due
1008 to varying size and alignment of `double'. */
1010 if (code == INTEGER_CST)
1011 length = sizeof (struct tree_int_cst);
1012 else if (code == REAL_CST)
1013 length = sizeof (struct tree_real_cst);
1014 else
1015 length = sizeof (struct tree_common)
1016 + TREE_CODE_LENGTH (code) * sizeof (char *);
1017 break;
1019 case 'x': /* something random, like an identifier. */
1020 #ifdef GATHER_STATISTICS
1021 if (code == IDENTIFIER_NODE)
1022 kind = id_kind;
1023 else if (code == OP_IDENTIFIER)
1024 kind = op_id_kind;
1025 else if (code == TREE_VEC)
1026 kind = vec_kind;
1027 else
1028 kind = x_kind;
1029 #endif
1030 length = sizeof (struct tree_common)
1031 + TREE_CODE_LENGTH (code) * sizeof (char *);
1032 /* Identifier nodes are always permanent since they are
1033 unique in a compiler run. */
1034 if (code == IDENTIFIER_NODE) obstack = &permanent_obstack;
1035 break;
1037 default:
1038 abort ();
1041 if (ggc_p)
1042 t = ggc_alloc_tree (length);
1043 else
1044 t = (tree) obstack_alloc (obstack, length);
1046 memset ((PTR) t, 0, length);
1048 #ifdef GATHER_STATISTICS
1049 tree_node_counts[(int)kind]++;
1050 tree_node_sizes[(int)kind] += length;
1051 #endif
1053 TREE_SET_CODE (t, code);
1054 TREE_SET_PERMANENT (t);
1056 switch (type)
1058 case 's':
1059 TREE_SIDE_EFFECTS (t) = 1;
1060 TREE_TYPE (t) = void_type_node;
1061 break;
1063 case 'd':
1064 if (code != FUNCTION_DECL)
1065 DECL_ALIGN (t) = 1;
1066 DECL_USER_ALIGN (t) = 0;
1067 DECL_IN_SYSTEM_HEADER (t) = in_system_header;
1068 DECL_SOURCE_LINE (t) = lineno;
1069 DECL_SOURCE_FILE (t) =
1070 (input_filename) ? input_filename : built_in_filename;
1071 DECL_UID (t) = next_decl_uid++;
1072 /* Note that we have not yet computed the alias set for this
1073 declaration. */
1074 DECL_POINTER_ALIAS_SET (t) = -1;
1075 break;
1077 case 't':
1078 TYPE_UID (t) = next_type_uid++;
1079 TYPE_ALIGN (t) = 1;
1080 TYPE_USER_ALIGN (t) = 0;
1081 TYPE_MAIN_VARIANT (t) = t;
1082 TYPE_OBSTACK (t) = obstack;
1083 TYPE_ATTRIBUTES (t) = NULL_TREE;
1084 #ifdef SET_DEFAULT_TYPE_ATTRIBUTES
1085 SET_DEFAULT_TYPE_ATTRIBUTES (t);
1086 #endif
1087 /* Note that we have not yet computed the alias set for this
1088 type. */
1089 TYPE_ALIAS_SET (t) = -1;
1090 break;
1092 case 'c':
1093 TREE_CONSTANT (t) = 1;
1094 break;
1096 case 'e':
1097 switch (code)
1099 case INIT_EXPR:
1100 case MODIFY_EXPR:
1101 case VA_ARG_EXPR:
1102 case RTL_EXPR:
1103 case PREDECREMENT_EXPR:
1104 case PREINCREMENT_EXPR:
1105 case POSTDECREMENT_EXPR:
1106 case POSTINCREMENT_EXPR:
1107 /* All of these have side-effects, no matter what their
1108 operands are. */
1109 TREE_SIDE_EFFECTS (t) = 1;
1110 break;
1112 default:
1113 break;
1115 break;
1118 return t;
1121 /* A front-end can reset this to an appropriate function if types need
1122 special handling. */
1124 tree (*make_lang_type_fn) PARAMS ((enum tree_code)) = make_node;
1126 /* Return a new type (with the indicated CODE), doing whatever
1127 language-specific processing is required. */
1129 tree
1130 make_lang_type (code)
1131 enum tree_code code;
1133 return (*make_lang_type_fn) (code);
1136 /* Return a new node with the same contents as NODE except that its
1137 TREE_CHAIN is zero and it has a fresh uid. Unlike make_node, this
1138 function always performs the allocation on the CURRENT_OBSTACK;
1139 it's up to the caller to pick the right obstack before calling this
1140 function. */
1142 tree
1143 copy_node (node)
1144 tree node;
1146 register tree t;
1147 register enum tree_code code = TREE_CODE (node);
1148 register int length = 0;
1150 switch (TREE_CODE_CLASS (code))
1152 case 'd': /* A decl node */
1153 length = sizeof (struct tree_decl);
1154 break;
1156 case 't': /* a type node */
1157 length = sizeof (struct tree_type);
1158 break;
1160 case 'b': /* a lexical block node */
1161 length = sizeof (struct tree_block);
1162 break;
1164 case 'r': /* a reference */
1165 case 'e': /* an expression */
1166 case 's': /* an expression with side effects */
1167 case '<': /* a comparison expression */
1168 case '1': /* a unary arithmetic expression */
1169 case '2': /* a binary arithmetic expression */
1170 length = sizeof (struct tree_exp)
1171 + (TREE_CODE_LENGTH (code) - 1) * sizeof (char *);
1172 break;
1174 case 'c': /* a constant */
1175 /* We can't use TREE_CODE_LENGTH for INTEGER_CST, since the number of
1176 words is machine-dependent due to varying length of HOST_WIDE_INT,
1177 which might be wider than a pointer (e.g., long long). Similarly
1178 for REAL_CST, since the number of words is machine-dependent due
1179 to varying size and alignment of `double'. */
1180 if (code == INTEGER_CST)
1181 length = sizeof (struct tree_int_cst);
1182 else if (code == REAL_CST)
1183 length = sizeof (struct tree_real_cst);
1184 else
1185 length = (sizeof (struct tree_common)
1186 + TREE_CODE_LENGTH (code) * sizeof (char *));
1187 break;
1189 case 'x': /* something random, like an identifier. */
1190 length = sizeof (struct tree_common)
1191 + TREE_CODE_LENGTH (code) * sizeof (char *);
1192 if (code == TREE_VEC)
1193 length += (TREE_VEC_LENGTH (node) - 1) * sizeof (char *);
1196 if (ggc_p)
1197 t = ggc_alloc_tree (length);
1198 else
1199 t = (tree) obstack_alloc (current_obstack, length);
1200 memcpy (t, node, length);
1202 TREE_CHAIN (t) = 0;
1203 TREE_ASM_WRITTEN (t) = 0;
1205 if (TREE_CODE_CLASS (code) == 'd')
1206 DECL_UID (t) = next_decl_uid++;
1207 else if (TREE_CODE_CLASS (code) == 't')
1209 TYPE_UID (t) = next_type_uid++;
1210 TYPE_OBSTACK (t) = current_obstack;
1212 /* The following is so that the debug code for
1213 the copy is different from the original type.
1214 The two statements usually duplicate each other
1215 (because they clear fields of the same union),
1216 but the optimizer should catch that. */
1217 TYPE_SYMTAB_POINTER (t) = 0;
1218 TYPE_SYMTAB_ADDRESS (t) = 0;
1221 TREE_SET_PERMANENT (t);
1223 return t;
1226 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1227 For example, this can copy a list made of TREE_LIST nodes. */
1229 tree
1230 copy_list (list)
1231 tree list;
1233 tree head;
1234 register tree prev, next;
1236 if (list == 0)
1237 return 0;
1239 head = prev = copy_node (list);
1240 next = TREE_CHAIN (list);
1241 while (next)
1243 TREE_CHAIN (prev) = copy_node (next);
1244 prev = TREE_CHAIN (prev);
1245 next = TREE_CHAIN (next);
1247 return head;
1250 #define HASHBITS 30
1252 /* Return an IDENTIFIER_NODE whose name is TEXT (a null-terminated string).
1253 If an identifier with that name has previously been referred to,
1254 the same node is returned this time. */
1256 tree
1257 get_identifier (text)
1258 register const char *text;
1260 register int hi;
1261 register int i;
1262 register tree idp;
1263 register int len, hash_len;
1265 /* Compute length of text in len. */
1266 len = strlen (text);
1268 /* Decide how much of that length to hash on */
1269 hash_len = len;
1270 if (warn_id_clash && len > id_clash_len)
1271 hash_len = id_clash_len;
1273 /* Compute hash code */
1274 hi = hash_len * 613 + (unsigned) text[0];
1275 for (i = 1; i < hash_len; i += 2)
1276 hi = ((hi * 613) + (unsigned) (text[i]));
1278 hi &= (1 << HASHBITS) - 1;
1279 hi %= MAX_HASH_TABLE;
1281 /* Search table for identifier */
1282 for (idp = hash_table[hi]; idp; idp = TREE_CHAIN (idp))
1283 if (IDENTIFIER_LENGTH (idp) == len
1284 && IDENTIFIER_POINTER (idp)[0] == text[0]
1285 && !bcmp (IDENTIFIER_POINTER (idp), text, len))
1286 return idp; /* <-- return if found */
1288 /* Not found; optionally warn about a similar identifier */
1289 if (warn_id_clash && do_identifier_warnings && len >= id_clash_len)
1290 for (idp = hash_table[hi]; idp; idp = TREE_CHAIN (idp))
1291 if (!strncmp (IDENTIFIER_POINTER (idp), text, id_clash_len))
1293 warning ("`%s' and `%s' identical in first %d characters",
1294 IDENTIFIER_POINTER (idp), text, id_clash_len);
1295 break;
1298 if (TREE_CODE_LENGTH (IDENTIFIER_NODE) < 0)
1299 abort (); /* set_identifier_size hasn't been called. */
1301 /* Not found, create one, add to chain */
1302 idp = make_node (IDENTIFIER_NODE);
1303 IDENTIFIER_LENGTH (idp) = len;
1304 #ifdef GATHER_STATISTICS
1305 id_string_size += len;
1306 #endif
1308 if (ggc_p)
1309 IDENTIFIER_POINTER (idp) = ggc_alloc_string (text, len);
1310 else
1311 IDENTIFIER_POINTER (idp) = obstack_copy0 (&permanent_obstack, text, len);
1313 TREE_CHAIN (idp) = hash_table[hi];
1314 hash_table[hi] = idp;
1315 return idp; /* <-- return if created */
1318 /* If an identifier with the name TEXT (a null-terminated string) has
1319 previously been referred to, return that node; otherwise return
1320 NULL_TREE. */
1322 tree
1323 maybe_get_identifier (text)
1324 register const char *text;
1326 register int hi;
1327 register int i;
1328 register tree idp;
1329 register int len, hash_len;
1331 /* Compute length of text in len. */
1332 len = strlen (text);
1334 /* Decide how much of that length to hash on */
1335 hash_len = len;
1336 if (warn_id_clash && len > id_clash_len)
1337 hash_len = id_clash_len;
1339 /* Compute hash code */
1340 hi = hash_len * 613 + (unsigned) text[0];
1341 for (i = 1; i < hash_len; i += 2)
1342 hi = ((hi * 613) + (unsigned) (text[i]));
1344 hi &= (1 << HASHBITS) - 1;
1345 hi %= MAX_HASH_TABLE;
1347 /* Search table for identifier */
1348 for (idp = hash_table[hi]; idp; idp = TREE_CHAIN (idp))
1349 if (IDENTIFIER_LENGTH (idp) == len
1350 && IDENTIFIER_POINTER (idp)[0] == text[0]
1351 && !bcmp (IDENTIFIER_POINTER (idp), text, len))
1352 return idp; /* <-- return if found */
1354 return NULL_TREE;
1357 /* Enable warnings on similar identifiers (if requested).
1358 Done after the built-in identifiers are created. */
1360 void
1361 start_identifier_warnings ()
1363 do_identifier_warnings = 1;
1366 /* Record the size of an identifier node for the language in use.
1367 SIZE is the total size in bytes.
1368 This is called by the language-specific files. This must be
1369 called before allocating any identifiers. */
1371 void
1372 set_identifier_size (size)
1373 int size;
1375 tree_code_length[(int) IDENTIFIER_NODE]
1376 = (size - sizeof (struct tree_common)) / sizeof (tree);
1379 /* Return a newly constructed INTEGER_CST node whose constant value
1380 is specified by the two ints LOW and HI.
1381 The TREE_TYPE is set to `int'.
1383 This function should be used via the `build_int_2' macro. */
1385 tree
1386 build_int_2_wide (low, hi)
1387 unsigned HOST_WIDE_INT low;
1388 HOST_WIDE_INT hi;
1390 register tree t = make_node (INTEGER_CST);
1392 TREE_INT_CST_LOW (t) = low;
1393 TREE_INT_CST_HIGH (t) = hi;
1394 TREE_TYPE (t) = integer_type_node;
1395 return t;
1398 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1400 tree
1401 build_real (type, d)
1402 tree type;
1403 REAL_VALUE_TYPE d;
1405 tree v;
1406 int overflow = 0;
1408 /* Check for valid float value for this type on this target machine;
1409 if not, can print error message and store a valid value in D. */
1410 #ifdef CHECK_FLOAT_VALUE
1411 CHECK_FLOAT_VALUE (TYPE_MODE (type), d, overflow);
1412 #endif
1414 v = make_node (REAL_CST);
1415 TREE_TYPE (v) = type;
1416 TREE_REAL_CST (v) = d;
1417 TREE_OVERFLOW (v) = TREE_CONSTANT_OVERFLOW (v) = overflow;
1418 return v;
1421 /* Return a new REAL_CST node whose type is TYPE
1422 and whose value is the integer value of the INTEGER_CST node I. */
1424 #if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
1426 REAL_VALUE_TYPE
1427 real_value_from_int_cst (type, i)
1428 tree type ATTRIBUTE_UNUSED, i;
1430 REAL_VALUE_TYPE d;
1432 #ifdef REAL_ARITHMETIC
1433 /* Clear all bits of the real value type so that we can later do
1434 bitwise comparisons to see if two values are the same. */
1435 bzero ((char *) &d, sizeof d);
1437 if (! TREE_UNSIGNED (TREE_TYPE (i)))
1438 REAL_VALUE_FROM_INT (d, TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i),
1439 TYPE_MODE (type));
1440 else
1441 REAL_VALUE_FROM_UNSIGNED_INT (d, TREE_INT_CST_LOW (i),
1442 TREE_INT_CST_HIGH (i), TYPE_MODE (type));
1443 #else /* not REAL_ARITHMETIC */
1444 /* Some 386 compilers mishandle unsigned int to float conversions,
1445 so introduce a temporary variable E to avoid those bugs. */
1446 if (TREE_INT_CST_HIGH (i) < 0 && ! TREE_UNSIGNED (TREE_TYPE (i)))
1448 REAL_VALUE_TYPE e;
1450 d = (double) (~ TREE_INT_CST_HIGH (i));
1451 e = ((double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2))
1452 * (double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)));
1453 d *= e;
1454 e = (double) (~ TREE_INT_CST_LOW (i));
1455 d += e;
1456 d = (- d - 1.0);
1458 else
1460 REAL_VALUE_TYPE e;
1462 d = (double) (unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (i);
1463 e = ((double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2))
1464 * (double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)));
1465 d *= e;
1466 e = (double) TREE_INT_CST_LOW (i);
1467 d += e;
1469 #endif /* not REAL_ARITHMETIC */
1470 return d;
1473 /* Args to pass to and from build_real_from_int_cst_1. */
1475 struct brfic_args
1477 tree type; /* Input: type to conver to. */
1478 tree i; /* Input: operand to convert */
1479 REAL_VALUE_TYPE d; /* Output: floating point value. */
1482 /* Convert an integer to a floating point value while protected by a floating
1483 point exception handler. */
1485 static void
1486 build_real_from_int_cst_1 (data)
1487 PTR data;
1489 struct brfic_args *args = (struct brfic_args *) data;
1491 #ifdef REAL_ARITHMETIC
1492 args->d = real_value_from_int_cst (args->type, args->i);
1493 #else
1494 args->d
1495 = REAL_VALUE_TRUNCATE (TYPE_MODE (args->type),
1496 real_value_from_int_cst (args->type, args->i));
1497 #endif
1500 /* Given a tree representing an integer constant I, return a tree
1501 representing the same value as a floating-point constant of type TYPE.
1502 We cannot perform this operation if there is no way of doing arithmetic
1503 on floating-point values. */
1505 tree
1506 build_real_from_int_cst (type, i)
1507 tree type;
1508 tree i;
1510 tree v;
1511 int overflow = TREE_OVERFLOW (i);
1512 REAL_VALUE_TYPE d;
1513 struct brfic_args args;
1515 v = make_node (REAL_CST);
1516 TREE_TYPE (v) = type;
1518 /* Setup input for build_real_from_int_cst_1() */
1519 args.type = type;
1520 args.i = i;
1522 if (do_float_handler (build_real_from_int_cst_1, (PTR) &args))
1523 /* Receive output from build_real_from_int_cst_1() */
1524 d = args.d;
1525 else
1527 /* We got an exception from build_real_from_int_cst_1() */
1528 d = dconst0;
1529 overflow = 1;
1532 /* Check for valid float value for this type on this target machine. */
1534 #ifdef CHECK_FLOAT_VALUE
1535 CHECK_FLOAT_VALUE (TYPE_MODE (type), d, overflow);
1536 #endif
1538 TREE_REAL_CST (v) = d;
1539 TREE_OVERFLOW (v) = TREE_CONSTANT_OVERFLOW (v) = overflow;
1540 return v;
1543 #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
1545 /* Return a newly constructed STRING_CST node whose value is
1546 the LEN characters at STR.
1547 The TREE_TYPE is not initialized. */
1549 tree
1550 build_string (len, str)
1551 int len;
1552 const char *str;
1554 /* Put the string in saveable_obstack since it will be placed in the RTL
1555 for an "asm" statement and will also be kept around a while if
1556 deferring constant output in varasm.c. */
1558 register tree s = make_node (STRING_CST);
1560 TREE_STRING_LENGTH (s) = len;
1561 if (ggc_p)
1562 TREE_STRING_POINTER (s) = ggc_alloc_string (str, len);
1563 else
1564 TREE_STRING_POINTER (s) = obstack_copy0 (saveable_obstack, str, len);
1566 return s;
1569 /* Return a newly constructed COMPLEX_CST node whose value is
1570 specified by the real and imaginary parts REAL and IMAG.
1571 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1572 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1574 tree
1575 build_complex (type, real, imag)
1576 tree type;
1577 tree real, imag;
1579 register tree t = make_node (COMPLEX_CST);
1581 TREE_REALPART (t) = real;
1582 TREE_IMAGPART (t) = imag;
1583 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
1584 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
1585 TREE_CONSTANT_OVERFLOW (t)
1586 = TREE_CONSTANT_OVERFLOW (real) | TREE_CONSTANT_OVERFLOW (imag);
1587 return t;
1590 /* Build a newly constructed TREE_VEC node of length LEN. */
1592 tree
1593 make_tree_vec (len)
1594 int len;
1596 register tree t;
1597 register int length = (len-1) * sizeof (tree) + sizeof (struct tree_vec);
1598 register struct obstack *obstack = current_obstack;
1600 #ifdef GATHER_STATISTICS
1601 tree_node_counts[(int)vec_kind]++;
1602 tree_node_sizes[(int)vec_kind] += length;
1603 #endif
1605 if (ggc_p)
1606 t = ggc_alloc_tree (length);
1607 else
1608 t = (tree) obstack_alloc (obstack, length);
1610 memset ((PTR) t, 0, length);
1611 TREE_SET_CODE (t, TREE_VEC);
1612 TREE_VEC_LENGTH (t) = len;
1613 TREE_SET_PERMANENT (t);
1615 return t;
1618 /* Return 1 if EXPR is the integer constant zero or a complex constant
1619 of zero. */
1622 integer_zerop (expr)
1623 tree expr;
1625 STRIP_NOPS (expr);
1627 return ((TREE_CODE (expr) == INTEGER_CST
1628 && ! TREE_CONSTANT_OVERFLOW (expr)
1629 && TREE_INT_CST_LOW (expr) == 0
1630 && TREE_INT_CST_HIGH (expr) == 0)
1631 || (TREE_CODE (expr) == COMPLEX_CST
1632 && integer_zerop (TREE_REALPART (expr))
1633 && integer_zerop (TREE_IMAGPART (expr))));
1636 /* Return 1 if EXPR is the integer constant one or the corresponding
1637 complex constant. */
1640 integer_onep (expr)
1641 tree expr;
1643 STRIP_NOPS (expr);
1645 return ((TREE_CODE (expr) == INTEGER_CST
1646 && ! TREE_CONSTANT_OVERFLOW (expr)
1647 && TREE_INT_CST_LOW (expr) == 1
1648 && TREE_INT_CST_HIGH (expr) == 0)
1649 || (TREE_CODE (expr) == COMPLEX_CST
1650 && integer_onep (TREE_REALPART (expr))
1651 && integer_zerop (TREE_IMAGPART (expr))));
1654 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
1655 it contains. Likewise for the corresponding complex constant. */
1658 integer_all_onesp (expr)
1659 tree expr;
1661 register int prec;
1662 register int uns;
1664 STRIP_NOPS (expr);
1666 if (TREE_CODE (expr) == COMPLEX_CST
1667 && integer_all_onesp (TREE_REALPART (expr))
1668 && integer_zerop (TREE_IMAGPART (expr)))
1669 return 1;
1671 else if (TREE_CODE (expr) != INTEGER_CST
1672 || TREE_CONSTANT_OVERFLOW (expr))
1673 return 0;
1675 uns = TREE_UNSIGNED (TREE_TYPE (expr));
1676 if (!uns)
1677 return (TREE_INT_CST_LOW (expr) == ~ (unsigned HOST_WIDE_INT) 0
1678 && TREE_INT_CST_HIGH (expr) == -1);
1680 /* Note that using TYPE_PRECISION here is wrong. We care about the
1681 actual bits, not the (arbitrary) range of the type. */
1682 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr)));
1683 if (prec >= HOST_BITS_PER_WIDE_INT)
1685 HOST_WIDE_INT high_value;
1686 int shift_amount;
1688 shift_amount = prec - HOST_BITS_PER_WIDE_INT;
1690 if (shift_amount > HOST_BITS_PER_WIDE_INT)
1691 /* Can not handle precisions greater than twice the host int size. */
1692 abort ();
1693 else if (shift_amount == HOST_BITS_PER_WIDE_INT)
1694 /* Shifting by the host word size is undefined according to the ANSI
1695 standard, so we must handle this as a special case. */
1696 high_value = -1;
1697 else
1698 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
1700 return (TREE_INT_CST_LOW (expr) == ~ (unsigned HOST_WIDE_INT) 0
1701 && TREE_INT_CST_HIGH (expr) == high_value);
1703 else
1704 return TREE_INT_CST_LOW (expr) == ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
1707 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1708 one bit on). */
1711 integer_pow2p (expr)
1712 tree expr;
1714 int prec;
1715 HOST_WIDE_INT high, low;
1717 STRIP_NOPS (expr);
1719 if (TREE_CODE (expr) == COMPLEX_CST
1720 && integer_pow2p (TREE_REALPART (expr))
1721 && integer_zerop (TREE_IMAGPART (expr)))
1722 return 1;
1724 if (TREE_CODE (expr) != INTEGER_CST || TREE_CONSTANT_OVERFLOW (expr))
1725 return 0;
1727 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1728 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1729 high = TREE_INT_CST_HIGH (expr);
1730 low = TREE_INT_CST_LOW (expr);
1732 /* First clear all bits that are beyond the type's precision in case
1733 we've been sign extended. */
1735 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1737 else if (prec > HOST_BITS_PER_WIDE_INT)
1738 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1739 else
1741 high = 0;
1742 if (prec < HOST_BITS_PER_WIDE_INT)
1743 low &= ~((HOST_WIDE_INT) (-1) << prec);
1746 if (high == 0 && low == 0)
1747 return 0;
1749 return ((high == 0 && (low & (low - 1)) == 0)
1750 || (low == 0 && (high & (high - 1)) == 0));
1753 /* Return the power of two represented by a tree node known to be a
1754 power of two. */
1757 tree_log2 (expr)
1758 tree expr;
1760 int prec;
1761 HOST_WIDE_INT high, low;
1763 STRIP_NOPS (expr);
1765 if (TREE_CODE (expr) == COMPLEX_CST)
1766 return tree_log2 (TREE_REALPART (expr));
1768 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1769 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1771 high = TREE_INT_CST_HIGH (expr);
1772 low = TREE_INT_CST_LOW (expr);
1774 /* First clear all bits that are beyond the type's precision in case
1775 we've been sign extended. */
1777 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1779 else if (prec > HOST_BITS_PER_WIDE_INT)
1780 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1781 else
1783 high = 0;
1784 if (prec < HOST_BITS_PER_WIDE_INT)
1785 low &= ~((HOST_WIDE_INT) (-1) << prec);
1788 return (high != 0 ? HOST_BITS_PER_WIDE_INT + exact_log2 (high)
1789 : exact_log2 (low));
1792 /* Similar, but return the largest integer Y such that 2 ** Y is less
1793 than or equal to EXPR. */
1796 tree_floor_log2 (expr)
1797 tree expr;
1799 int prec;
1800 HOST_WIDE_INT high, low;
1802 STRIP_NOPS (expr);
1804 if (TREE_CODE (expr) == COMPLEX_CST)
1805 return tree_log2 (TREE_REALPART (expr));
1807 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1808 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1810 high = TREE_INT_CST_HIGH (expr);
1811 low = TREE_INT_CST_LOW (expr);
1813 /* First clear all bits that are beyond the type's precision in case
1814 we've been sign extended. Ignore if type's precision hasn't been set
1815 since what we are doing is setting it. */
1817 if (prec == 2 * HOST_BITS_PER_WIDE_INT || prec == 0)
1819 else if (prec > HOST_BITS_PER_WIDE_INT)
1820 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1821 else
1823 high = 0;
1824 if (prec < HOST_BITS_PER_WIDE_INT)
1825 low &= ~((HOST_WIDE_INT) (-1) << prec);
1828 return (high != 0 ? HOST_BITS_PER_WIDE_INT + floor_log2 (high)
1829 : floor_log2 (low));
1832 /* Return 1 if EXPR is the real constant zero. */
1835 real_zerop (expr)
1836 tree expr;
1838 STRIP_NOPS (expr);
1840 return ((TREE_CODE (expr) == REAL_CST
1841 && ! TREE_CONSTANT_OVERFLOW (expr)
1842 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0))
1843 || (TREE_CODE (expr) == COMPLEX_CST
1844 && real_zerop (TREE_REALPART (expr))
1845 && real_zerop (TREE_IMAGPART (expr))));
1848 /* Return 1 if EXPR is the real constant one in real or complex form. */
1851 real_onep (expr)
1852 tree expr;
1854 STRIP_NOPS (expr);
1856 return ((TREE_CODE (expr) == REAL_CST
1857 && ! TREE_CONSTANT_OVERFLOW (expr)
1858 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1))
1859 || (TREE_CODE (expr) == COMPLEX_CST
1860 && real_onep (TREE_REALPART (expr))
1861 && real_zerop (TREE_IMAGPART (expr))));
1864 /* Return 1 if EXPR is the real constant two. */
1867 real_twop (expr)
1868 tree expr;
1870 STRIP_NOPS (expr);
1872 return ((TREE_CODE (expr) == REAL_CST
1873 && ! TREE_CONSTANT_OVERFLOW (expr)
1874 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2))
1875 || (TREE_CODE (expr) == COMPLEX_CST
1876 && real_twop (TREE_REALPART (expr))
1877 && real_zerop (TREE_IMAGPART (expr))));
1880 /* Nonzero if EXP is a constant or a cast of a constant. */
1883 really_constant_p (exp)
1884 tree exp;
1886 /* This is not quite the same as STRIP_NOPS. It does more. */
1887 while (TREE_CODE (exp) == NOP_EXPR
1888 || TREE_CODE (exp) == CONVERT_EXPR
1889 || TREE_CODE (exp) == NON_LVALUE_EXPR)
1890 exp = TREE_OPERAND (exp, 0);
1891 return TREE_CONSTANT (exp);
1894 /* Return first list element whose TREE_VALUE is ELEM.
1895 Return 0 if ELEM is not in LIST. */
1897 tree
1898 value_member (elem, list)
1899 tree elem, list;
1901 while (list)
1903 if (elem == TREE_VALUE (list))
1904 return list;
1905 list = TREE_CHAIN (list);
1907 return NULL_TREE;
1910 /* Return first list element whose TREE_PURPOSE is ELEM.
1911 Return 0 if ELEM is not in LIST. */
1913 tree
1914 purpose_member (elem, list)
1915 tree elem, list;
1917 while (list)
1919 if (elem == TREE_PURPOSE (list))
1920 return list;
1921 list = TREE_CHAIN (list);
1923 return NULL_TREE;
1926 /* Return first list element whose BINFO_TYPE is ELEM.
1927 Return 0 if ELEM is not in LIST. */
1929 tree
1930 binfo_member (elem, list)
1931 tree elem, list;
1933 while (list)
1935 if (elem == BINFO_TYPE (list))
1936 return list;
1937 list = TREE_CHAIN (list);
1939 return NULL_TREE;
1942 /* Return nonzero if ELEM is part of the chain CHAIN. */
1945 chain_member (elem, chain)
1946 tree elem, chain;
1948 while (chain)
1950 if (elem == chain)
1951 return 1;
1952 chain = TREE_CHAIN (chain);
1955 return 0;
1958 /* Return nonzero if ELEM is equal to TREE_VALUE (CHAIN) for any piece of
1959 chain CHAIN. This and the next function are currently unused, but
1960 are retained for completeness. */
1963 chain_member_value (elem, chain)
1964 tree elem, chain;
1966 while (chain)
1968 if (elem == TREE_VALUE (chain))
1969 return 1;
1970 chain = TREE_CHAIN (chain);
1973 return 0;
1976 /* Return nonzero if ELEM is equal to TREE_PURPOSE (CHAIN)
1977 for any piece of chain CHAIN. */
1980 chain_member_purpose (elem, chain)
1981 tree elem, chain;
1983 while (chain)
1985 if (elem == TREE_PURPOSE (chain))
1986 return 1;
1987 chain = TREE_CHAIN (chain);
1990 return 0;
1993 /* Return the length of a chain of nodes chained through TREE_CHAIN.
1994 We expect a null pointer to mark the end of the chain.
1995 This is the Lisp primitive `length'. */
1998 list_length (t)
1999 tree t;
2001 register tree tail;
2002 register int len = 0;
2004 for (tail = t; tail; tail = TREE_CHAIN (tail))
2005 len++;
2007 return len;
2010 /* Returns the number of FIELD_DECLs in TYPE. */
2013 fields_length (type)
2014 tree type;
2016 tree t = TYPE_FIELDS (type);
2017 int count = 0;
2019 for (; t; t = TREE_CHAIN (t))
2020 if (TREE_CODE (t) == FIELD_DECL)
2021 ++count;
2023 return count;
2026 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2027 by modifying the last node in chain 1 to point to chain 2.
2028 This is the Lisp primitive `nconc'. */
2030 tree
2031 chainon (op1, op2)
2032 tree op1, op2;
2035 if (op1)
2037 register tree t1;
2038 #ifdef ENABLE_TREE_CHECKING
2039 register tree t2;
2040 #endif
2042 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
2044 TREE_CHAIN (t1) = op2;
2045 #ifdef ENABLE_TREE_CHECKING
2046 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
2047 if (t2 == t1)
2048 abort (); /* Circularity created. */
2049 #endif
2050 return op1;
2052 else return op2;
2055 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2057 tree
2058 tree_last (chain)
2059 register tree chain;
2061 register tree next;
2062 if (chain)
2063 while ((next = TREE_CHAIN (chain)))
2064 chain = next;
2065 return chain;
2068 /* Reverse the order of elements in the chain T,
2069 and return the new head of the chain (old last element). */
2071 tree
2072 nreverse (t)
2073 tree t;
2075 register tree prev = 0, decl, next;
2076 for (decl = t; decl; decl = next)
2078 next = TREE_CHAIN (decl);
2079 TREE_CHAIN (decl) = prev;
2080 prev = decl;
2082 return prev;
2085 /* Given a chain CHAIN of tree nodes,
2086 construct and return a list of those nodes. */
2088 tree
2089 listify (chain)
2090 tree chain;
2092 tree result = NULL_TREE;
2093 tree in_tail = chain;
2094 tree out_tail = NULL_TREE;
2096 while (in_tail)
2098 tree next = tree_cons (NULL_TREE, in_tail, NULL_TREE);
2099 if (out_tail)
2100 TREE_CHAIN (out_tail) = next;
2101 else
2102 result = next;
2103 out_tail = next;
2104 in_tail = TREE_CHAIN (in_tail);
2107 return result;
2110 /* Return a newly created TREE_LIST node whose
2111 purpose and value fields are PARM and VALUE. */
2113 tree
2114 build_tree_list (parm, value)
2115 tree parm, value;
2117 register tree t = make_node (TREE_LIST);
2118 TREE_PURPOSE (t) = parm;
2119 TREE_VALUE (t) = value;
2120 return t;
2123 /* Similar, but build on the temp_decl_obstack. */
2125 tree
2126 build_decl_list (parm, value)
2127 tree parm, value;
2129 register tree node;
2130 register struct obstack *ambient_obstack = current_obstack;
2132 current_obstack = &temp_decl_obstack;
2133 node = build_tree_list (parm, value);
2134 current_obstack = ambient_obstack;
2135 return node;
2138 /* Similar, but build on the expression_obstack. */
2140 tree
2141 build_expr_list (parm, value)
2142 tree parm, value;
2144 register tree node;
2145 register struct obstack *ambient_obstack = current_obstack;
2147 current_obstack = expression_obstack;
2148 node = build_tree_list (parm, value);
2149 current_obstack = ambient_obstack;
2150 return node;
2153 /* Return a newly created TREE_LIST node whose
2154 purpose and value fields are PARM and VALUE
2155 and whose TREE_CHAIN is CHAIN. */
2157 tree
2158 tree_cons (purpose, value, chain)
2159 tree purpose, value, chain;
2161 register tree node;
2163 if (ggc_p)
2164 node = ggc_alloc_tree (sizeof (struct tree_list));
2165 else
2166 node = (tree) obstack_alloc (current_obstack, sizeof (struct tree_list));
2168 memset (node, 0, sizeof (struct tree_common));
2170 #ifdef GATHER_STATISTICS
2171 tree_node_counts[(int) x_kind]++;
2172 tree_node_sizes[(int) x_kind] += sizeof (struct tree_list);
2173 #endif
2175 TREE_SET_CODE (node, TREE_LIST);
2176 TREE_SET_PERMANENT (node);
2178 TREE_CHAIN (node) = chain;
2179 TREE_PURPOSE (node) = purpose;
2180 TREE_VALUE (node) = value;
2181 return node;
2184 /* Similar, but build on the temp_decl_obstack. */
2186 tree
2187 decl_tree_cons (purpose, value, chain)
2188 tree purpose, value, chain;
2190 register tree node;
2191 register struct obstack *ambient_obstack = current_obstack;
2193 current_obstack = &temp_decl_obstack;
2194 node = tree_cons (purpose, value, chain);
2195 current_obstack = ambient_obstack;
2196 return node;
2199 /* Similar, but build on the expression_obstack. */
2201 tree
2202 expr_tree_cons (purpose, value, chain)
2203 tree purpose, value, chain;
2205 register tree node;
2206 register struct obstack *ambient_obstack = current_obstack;
2208 current_obstack = expression_obstack;
2209 node = tree_cons (purpose, value, chain);
2210 current_obstack = ambient_obstack;
2211 return node;
2214 /* Same as `tree_cons' but make a permanent object. */
2216 tree
2217 perm_tree_cons (purpose, value, chain)
2218 tree purpose, value, chain;
2220 register tree node;
2221 register struct obstack *ambient_obstack = current_obstack;
2223 current_obstack = &permanent_obstack;
2224 node = tree_cons (purpose, value, chain);
2225 current_obstack = ambient_obstack;
2226 return node;
2229 /* Same as `tree_cons', but make this node temporary, regardless. */
2231 tree
2232 temp_tree_cons (purpose, value, chain)
2233 tree purpose, value, chain;
2235 register tree node;
2236 register struct obstack *ambient_obstack = current_obstack;
2238 current_obstack = &temporary_obstack;
2239 node = tree_cons (purpose, value, chain);
2240 current_obstack = ambient_obstack;
2241 return node;
2244 /* Same as `tree_cons', but save this node if the function's RTL is saved. */
2246 tree
2247 saveable_tree_cons (purpose, value, chain)
2248 tree purpose, value, chain;
2250 register tree node;
2251 register struct obstack *ambient_obstack = current_obstack;
2253 current_obstack = saveable_obstack;
2254 node = tree_cons (purpose, value, chain);
2255 current_obstack = ambient_obstack;
2256 return node;
2259 /* Return the size nominally occupied by an object of type TYPE
2260 when it resides in memory. The value is measured in units of bytes,
2261 and its data type is that normally used for type sizes
2262 (which is the first type created by make_signed_type or
2263 make_unsigned_type). */
2265 tree
2266 size_in_bytes (type)
2267 tree type;
2269 tree t;
2271 if (type == error_mark_node)
2272 return integer_zero_node;
2274 type = TYPE_MAIN_VARIANT (type);
2275 t = TYPE_SIZE_UNIT (type);
2277 if (t == 0)
2279 incomplete_type_error (NULL_TREE, type);
2280 return size_zero_node;
2283 if (TREE_CODE (t) == INTEGER_CST)
2284 force_fit_type (t, 0);
2286 return t;
2289 /* Return the size of TYPE (in bytes) as a wide integer
2290 or return -1 if the size can vary or is larger than an integer. */
2292 HOST_WIDE_INT
2293 int_size_in_bytes (type)
2294 tree type;
2296 tree t;
2298 if (type == error_mark_node)
2299 return 0;
2301 type = TYPE_MAIN_VARIANT (type);
2302 t = TYPE_SIZE_UNIT (type);
2303 if (t == 0
2304 || TREE_CODE (t) != INTEGER_CST
2305 || TREE_OVERFLOW (t)
2306 || TREE_INT_CST_HIGH (t) != 0
2307 /* If the result would appear negative, it's too big to represent. */
2308 || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
2309 return -1;
2311 return TREE_INT_CST_LOW (t);
2314 /* Return the bit position of FIELD, in bits from the start of the record.
2315 This is a tree of type bitsizetype. */
2317 tree
2318 bit_position (field)
2319 tree field;
2322 return bit_from_pos (DECL_FIELD_OFFSET (field),
2323 DECL_FIELD_BIT_OFFSET (field));
2326 /* Likewise, but return as an integer. Abort if it cannot be represented
2327 in that way (since it could be a signed value, we don't have the option
2328 of returning -1 like int_size_in_byte can. */
2330 HOST_WIDE_INT
2331 int_bit_position (field)
2332 tree field;
2334 return tree_low_cst (bit_position (field), 0);
2337 /* Return the byte position of FIELD, in bytes from the start of the record.
2338 This is a tree of type sizetype. */
2340 tree
2341 byte_position (field)
2342 tree field;
2344 return byte_from_pos (DECL_FIELD_OFFSET (field),
2345 DECL_FIELD_BIT_OFFSET (field));
2348 /* Likewise, but return as an integer. Abort if it cannot be represented
2349 in that way (since it could be a signed value, we don't have the option
2350 of returning -1 like int_size_in_byte can. */
2352 HOST_WIDE_INT
2353 int_byte_position (field)
2354 tree field;
2356 return tree_low_cst (byte_position (field), 0);
2359 /* Return the strictest alignment, in bits, that T is known to have. */
2361 unsigned int
2362 expr_align (t)
2363 tree t;
2365 unsigned int align0, align1;
2367 switch (TREE_CODE (t))
2369 case NOP_EXPR: case CONVERT_EXPR: case NON_LVALUE_EXPR:
2370 /* If we have conversions, we know that the alignment of the
2371 object must meet each of the alignments of the types. */
2372 align0 = expr_align (TREE_OPERAND (t, 0));
2373 align1 = TYPE_ALIGN (TREE_TYPE (t));
2374 return MAX (align0, align1);
2376 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
2377 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
2378 case WITH_RECORD_EXPR: case CLEANUP_POINT_EXPR: case UNSAVE_EXPR:
2379 /* These don't change the alignment of an object. */
2380 return expr_align (TREE_OPERAND (t, 0));
2382 case COND_EXPR:
2383 /* The best we can do is say that the alignment is the least aligned
2384 of the two arms. */
2385 align0 = expr_align (TREE_OPERAND (t, 1));
2386 align1 = expr_align (TREE_OPERAND (t, 2));
2387 return MIN (align0, align1);
2389 case LABEL_DECL: case CONST_DECL:
2390 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
2391 if (DECL_ALIGN (t) != 0)
2392 return DECL_ALIGN (t);
2393 break;
2395 case FUNCTION_DECL:
2396 return FUNCTION_BOUNDARY;
2398 default:
2399 break;
2402 /* Otherwise take the alignment from that of the type. */
2403 return TYPE_ALIGN (TREE_TYPE (t));
2406 /* Return, as a tree node, the number of elements for TYPE (which is an
2407 ARRAY_TYPE) minus one. This counts only elements of the top array. */
2409 tree
2410 array_type_nelts (type)
2411 tree type;
2413 tree index_type, min, max;
2415 /* If they did it with unspecified bounds, then we should have already
2416 given an error about it before we got here. */
2417 if (! TYPE_DOMAIN (type))
2418 return error_mark_node;
2420 index_type = TYPE_DOMAIN (type);
2421 min = TYPE_MIN_VALUE (index_type);
2422 max = TYPE_MAX_VALUE (index_type);
2424 return (integer_zerop (min)
2425 ? max
2426 : fold (build (MINUS_EXPR, TREE_TYPE (max), max, min)));
2429 /* Return nonzero if arg is static -- a reference to an object in
2430 static storage. This is not the same as the C meaning of `static'. */
2433 staticp (arg)
2434 tree arg;
2436 switch (TREE_CODE (arg))
2438 case FUNCTION_DECL:
2439 /* Nested functions aren't static, since taking their address
2440 involves a trampoline. */
2441 return (decl_function_context (arg) == 0 || DECL_NO_STATIC_CHAIN (arg))
2442 && ! DECL_NON_ADDR_CONST_P (arg);
2444 case VAR_DECL:
2445 return (TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2446 && ! DECL_NON_ADDR_CONST_P (arg);
2448 case CONSTRUCTOR:
2449 return TREE_STATIC (arg);
2451 case LABEL_DECL:
2452 case STRING_CST:
2453 return 1;
2455 /* If we are referencing a bitfield, we can't evaluate an
2456 ADDR_EXPR at compile time and so it isn't a constant. */
2457 case COMPONENT_REF:
2458 return (! DECL_BIT_FIELD (TREE_OPERAND (arg, 1))
2459 && staticp (TREE_OPERAND (arg, 0)));
2461 case BIT_FIELD_REF:
2462 return 0;
2464 #if 0
2465 /* This case is technically correct, but results in setting
2466 TREE_CONSTANT on ADDR_EXPRs that cannot be evaluated at
2467 compile time. */
2468 case INDIRECT_REF:
2469 return TREE_CONSTANT (TREE_OPERAND (arg, 0));
2470 #endif
2472 case ARRAY_REF:
2473 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
2474 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
2475 return staticp (TREE_OPERAND (arg, 0));
2477 default:
2478 return 0;
2482 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
2483 Do this to any expression which may be used in more than one place,
2484 but must be evaluated only once.
2486 Normally, expand_expr would reevaluate the expression each time.
2487 Calling save_expr produces something that is evaluated and recorded
2488 the first time expand_expr is called on it. Subsequent calls to
2489 expand_expr just reuse the recorded value.
2491 The call to expand_expr that generates code that actually computes
2492 the value is the first call *at compile time*. Subsequent calls
2493 *at compile time* generate code to use the saved value.
2494 This produces correct result provided that *at run time* control
2495 always flows through the insns made by the first expand_expr
2496 before reaching the other places where the save_expr was evaluated.
2497 You, the caller of save_expr, must make sure this is so.
2499 Constants, and certain read-only nodes, are returned with no
2500 SAVE_EXPR because that is safe. Expressions containing placeholders
2501 are not touched; see tree.def for an explanation of what these
2502 are used for. */
2504 tree
2505 save_expr (expr)
2506 tree expr;
2508 register tree t = fold (expr);
2510 /* We don't care about whether this can be used as an lvalue in this
2511 context. */
2512 while (TREE_CODE (t) == NON_LVALUE_EXPR)
2513 t = TREE_OPERAND (t, 0);
2515 /* If the tree evaluates to a constant, then we don't want to hide that
2516 fact (i.e. this allows further folding, and direct checks for constants).
2517 However, a read-only object that has side effects cannot be bypassed.
2518 Since it is no problem to reevaluate literals, we just return the
2519 literal node. */
2521 if (TREE_CONSTANT (t) || (TREE_READONLY (t) && ! TREE_SIDE_EFFECTS (t))
2522 || TREE_CODE (t) == SAVE_EXPR || TREE_CODE (t) == ERROR_MARK)
2523 return t;
2525 /* If T contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
2526 it means that the size or offset of some field of an object depends on
2527 the value within another field.
2529 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
2530 and some variable since it would then need to be both evaluated once and
2531 evaluated more than once. Front-ends must assure this case cannot
2532 happen by surrounding any such subexpressions in their own SAVE_EXPR
2533 and forcing evaluation at the proper time. */
2534 if (contains_placeholder_p (t))
2535 return t;
2537 t = build (SAVE_EXPR, TREE_TYPE (expr), t, current_function_decl, NULL_TREE);
2539 /* This expression might be placed ahead of a jump to ensure that the
2540 value was computed on both sides of the jump. So make sure it isn't
2541 eliminated as dead. */
2542 TREE_SIDE_EFFECTS (t) = 1;
2543 return t;
2546 /* Arrange for an expression to be expanded multiple independent
2547 times. This is useful for cleanup actions, as the backend can
2548 expand them multiple times in different places. */
2550 tree
2551 unsave_expr (expr)
2552 tree expr;
2554 tree t;
2556 /* If this is already protected, no sense in protecting it again. */
2557 if (TREE_CODE (expr) == UNSAVE_EXPR)
2558 return expr;
2560 t = build1 (UNSAVE_EXPR, TREE_TYPE (expr), expr);
2561 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (expr);
2562 return t;
2565 /* Returns the index of the first non-tree operand for CODE, or the number
2566 of operands if all are trees. */
2569 first_rtl_op (code)
2570 enum tree_code code;
2572 switch (code)
2574 case SAVE_EXPR:
2575 return 2;
2576 case GOTO_SUBROUTINE_EXPR:
2577 case RTL_EXPR:
2578 return 0;
2579 case CALL_EXPR:
2580 return 2;
2581 case WITH_CLEANUP_EXPR:
2582 /* Should be defined to be 2. */
2583 return 1;
2584 case METHOD_CALL_EXPR:
2585 return 3;
2586 default:
2587 return TREE_CODE_LENGTH (code);
2591 /* Perform any modifications to EXPR required when it is unsaved. Does
2592 not recurse into EXPR's subtrees. */
2594 void
2595 unsave_expr_1 (expr)
2596 tree expr;
2598 switch (TREE_CODE (expr))
2600 case SAVE_EXPR:
2601 if (! SAVE_EXPR_PERSISTENT_P (expr))
2602 SAVE_EXPR_RTL (expr) = 0;
2603 break;
2605 case TARGET_EXPR:
2606 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
2607 It's OK for this to happen if it was part of a subtree that
2608 isn't immediately expanded, such as operand 2 of another
2609 TARGET_EXPR. */
2610 if (TREE_OPERAND (expr, 1))
2611 break;
2613 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
2614 TREE_OPERAND (expr, 3) = NULL_TREE;
2615 break;
2617 case RTL_EXPR:
2618 /* I don't yet know how to emit a sequence multiple times. */
2619 if (RTL_EXPR_SEQUENCE (expr) != 0)
2620 abort ();
2621 break;
2623 case CALL_EXPR:
2624 CALL_EXPR_RTL (expr) = 0;
2625 break;
2627 default:
2628 if (lang_unsave_expr_now != 0)
2629 (*lang_unsave_expr_now) (expr);
2630 break;
2634 /* Helper function for unsave_expr_now. */
2636 static void
2637 unsave_expr_now_r (expr)
2638 tree expr;
2640 enum tree_code code;
2642 /* There's nothing to do for NULL_TREE. */
2643 if (expr == 0)
2644 return;
2646 unsave_expr_1 (expr);
2648 code = TREE_CODE (expr);
2649 switch (TREE_CODE_CLASS (code))
2651 case 'c': /* a constant */
2652 case 't': /* a type node */
2653 case 'd': /* A decl node */
2654 case 'b': /* A block node */
2655 break;
2657 case 'x': /* miscellaneous: e.g., identifier, TREE_LIST or ERROR_MARK. */
2658 if (code == TREE_LIST)
2660 unsave_expr_now_r (TREE_VALUE (expr));
2661 unsave_expr_now_r (TREE_CHAIN (expr));
2663 break;
2665 case 'e': /* an expression */
2666 case 'r': /* a reference */
2667 case 's': /* an expression with side effects */
2668 case '<': /* a comparison expression */
2669 case '2': /* a binary arithmetic expression */
2670 case '1': /* a unary arithmetic expression */
2672 int i;
2674 for (i = first_rtl_op (code) - 1; i >= 0; i--)
2675 unsave_expr_now_r (TREE_OPERAND (expr, i));
2677 break;
2679 default:
2680 abort ();
2684 /* Modify a tree in place so that all the evaluate only once things
2685 are cleared out. Return the EXPR given. */
2687 tree
2688 unsave_expr_now (expr)
2689 tree expr;
2691 if (lang_unsave!= 0)
2692 (*lang_unsave) (&expr);
2693 else
2694 unsave_expr_now_r (expr);
2696 return expr;
2699 /* Return 0 if it is safe to evaluate EXPR multiple times,
2700 return 1 if it is safe if EXPR is unsaved afterward, or
2701 return 2 if it is completely unsafe.
2703 This assumes that CALL_EXPRs and TARGET_EXPRs are never replicated in
2704 an expression tree, so that it safe to unsave them and the surrounding
2705 context will be correct.
2707 SAVE_EXPRs basically *only* appear replicated in an expression tree,
2708 occasionally across the whole of a function. It is therefore only
2709 safe to unsave a SAVE_EXPR if you know that all occurrences appear
2710 below the UNSAVE_EXPR.
2712 RTL_EXPRs consume their rtl during evaluation. It is therefore
2713 never possible to unsave them. */
2716 unsafe_for_reeval (expr)
2717 tree expr;
2719 int unsafeness = 0;
2720 enum tree_code code;
2721 int i, tmp;
2722 tree exp;
2723 int first_rtl;
2725 if (expr == NULL_TREE)
2726 return 1;
2728 code = TREE_CODE (expr);
2729 first_rtl = first_rtl_op (code);
2731 switch (code)
2733 case SAVE_EXPR:
2734 case RTL_EXPR:
2735 return 2;
2737 case TREE_LIST:
2738 for (exp = expr; exp != 0; exp = TREE_CHAIN (exp))
2740 tmp = unsafe_for_reeval (TREE_VALUE (exp));
2741 unsafeness = MAX (tmp, unsafeness);
2744 return unsafeness;
2746 case CALL_EXPR:
2747 tmp = unsafe_for_reeval (TREE_OPERAND (expr, 1));
2748 return MAX (tmp, 1);
2750 case TARGET_EXPR:
2751 unsafeness = 1;
2752 break;
2754 default:
2755 /* ??? Add a lang hook if it becomes necessary. */
2756 break;
2759 switch (TREE_CODE_CLASS (code))
2761 case 'c': /* a constant */
2762 case 't': /* a type node */
2763 case 'x': /* something random, like an identifier or an ERROR_MARK. */
2764 case 'd': /* A decl node */
2765 case 'b': /* A block node */
2766 return 0;
2768 case 'e': /* an expression */
2769 case 'r': /* a reference */
2770 case 's': /* an expression with side effects */
2771 case '<': /* a comparison expression */
2772 case '2': /* a binary arithmetic expression */
2773 case '1': /* a unary arithmetic expression */
2774 for (i = first_rtl - 1; i >= 0; i--)
2776 tmp = unsafe_for_reeval (TREE_OPERAND (expr, i));
2777 unsafeness = MAX (tmp, unsafeness);
2780 return unsafeness;
2782 default:
2783 return 2;
2787 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
2788 or offset that depends on a field within a record. */
2791 contains_placeholder_p (exp)
2792 tree exp;
2794 register enum tree_code code = TREE_CODE (exp);
2795 int result;
2797 /* If we have a WITH_RECORD_EXPR, it "cancels" any PLACEHOLDER_EXPR
2798 in it since it is supplying a value for it. */
2799 if (code == WITH_RECORD_EXPR)
2800 return 0;
2801 else if (code == PLACEHOLDER_EXPR)
2802 return 1;
2804 switch (TREE_CODE_CLASS (code))
2806 case 'r':
2807 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2808 position computations since they will be converted into a
2809 WITH_RECORD_EXPR involving the reference, which will assume
2810 here will be valid. */
2811 return contains_placeholder_p (TREE_OPERAND (exp, 0));
2813 case 'x':
2814 if (code == TREE_LIST)
2815 return (contains_placeholder_p (TREE_VALUE (exp))
2816 || (TREE_CHAIN (exp) != 0
2817 && contains_placeholder_p (TREE_CHAIN (exp))));
2818 break;
2820 case '1':
2821 case '2': case '<':
2822 case 'e':
2823 switch (code)
2825 case COMPOUND_EXPR:
2826 /* Ignoring the first operand isn't quite right, but works best. */
2827 return contains_placeholder_p (TREE_OPERAND (exp, 1));
2829 case RTL_EXPR:
2830 case CONSTRUCTOR:
2831 return 0;
2833 case COND_EXPR:
2834 return (contains_placeholder_p (TREE_OPERAND (exp, 0))
2835 || contains_placeholder_p (TREE_OPERAND (exp, 1))
2836 || contains_placeholder_p (TREE_OPERAND (exp, 2)));
2838 case SAVE_EXPR:
2839 /* If we already know this doesn't have a placeholder, don't
2840 check again. */
2841 if (SAVE_EXPR_NOPLACEHOLDER (exp) || SAVE_EXPR_RTL (exp) != 0)
2842 return 0;
2844 SAVE_EXPR_NOPLACEHOLDER (exp) = 1;
2845 result = contains_placeholder_p (TREE_OPERAND (exp, 0));
2846 if (result)
2847 SAVE_EXPR_NOPLACEHOLDER (exp) = 0;
2849 return result;
2851 case CALL_EXPR:
2852 return (TREE_OPERAND (exp, 1) != 0
2853 && contains_placeholder_p (TREE_OPERAND (exp, 1)));
2855 default:
2856 break;
2859 switch (TREE_CODE_LENGTH (code))
2861 case 1:
2862 return contains_placeholder_p (TREE_OPERAND (exp, 0));
2863 case 2:
2864 return (contains_placeholder_p (TREE_OPERAND (exp, 0))
2865 || contains_placeholder_p (TREE_OPERAND (exp, 1)));
2866 default:
2867 return 0;
2870 default:
2871 return 0;
2873 return 0;
2876 /* Return 1 if EXP contains any expressions that produce cleanups for an
2877 outer scope to deal with. Used by fold. */
2880 has_cleanups (exp)
2881 tree exp;
2883 int i, nops, cmp;
2885 if (! TREE_SIDE_EFFECTS (exp))
2886 return 0;
2888 switch (TREE_CODE (exp))
2890 case TARGET_EXPR:
2891 case GOTO_SUBROUTINE_EXPR:
2892 case WITH_CLEANUP_EXPR:
2893 return 1;
2895 case CLEANUP_POINT_EXPR:
2896 return 0;
2898 case CALL_EXPR:
2899 for (exp = TREE_OPERAND (exp, 1); exp; exp = TREE_CHAIN (exp))
2901 cmp = has_cleanups (TREE_VALUE (exp));
2902 if (cmp)
2903 return cmp;
2905 return 0;
2907 default:
2908 break;
2911 /* This general rule works for most tree codes. All exceptions should be
2912 handled above. If this is a language-specific tree code, we can't
2913 trust what might be in the operand, so say we don't know
2914 the situation. */
2915 if ((int) TREE_CODE (exp) >= (int) LAST_AND_UNUSED_TREE_CODE)
2916 return -1;
2918 nops = first_rtl_op (TREE_CODE (exp));
2919 for (i = 0; i < nops; i++)
2920 if (TREE_OPERAND (exp, i) != 0)
2922 int type = TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, i)));
2923 if (type == 'e' || type == '<' || type == '1' || type == '2'
2924 || type == 'r' || type == 's')
2926 cmp = has_cleanups (TREE_OPERAND (exp, i));
2927 if (cmp)
2928 return cmp;
2932 return 0;
2935 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
2936 return a tree with all occurrences of references to F in a
2937 PLACEHOLDER_EXPR replaced by R. Note that we assume here that EXP
2938 contains only arithmetic expressions or a CALL_EXPR with a
2939 PLACEHOLDER_EXPR occurring only in its arglist. */
2941 tree
2942 substitute_in_expr (exp, f, r)
2943 tree exp;
2944 tree f;
2945 tree r;
2947 enum tree_code code = TREE_CODE (exp);
2948 tree op0, op1, op2;
2949 tree new;
2950 tree inner;
2952 switch (TREE_CODE_CLASS (code))
2954 case 'c':
2955 case 'd':
2956 return exp;
2958 case 'x':
2959 if (code == PLACEHOLDER_EXPR)
2960 return exp;
2961 else if (code == TREE_LIST)
2963 op0 = (TREE_CHAIN (exp) == 0
2964 ? 0 : substitute_in_expr (TREE_CHAIN (exp), f, r));
2965 op1 = substitute_in_expr (TREE_VALUE (exp), f, r);
2966 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
2967 return exp;
2969 return tree_cons (TREE_PURPOSE (exp), op1, op0);
2972 abort ();
2974 case '1':
2975 case '2':
2976 case '<':
2977 case 'e':
2978 switch (TREE_CODE_LENGTH (code))
2980 case 1:
2981 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2982 if (op0 == TREE_OPERAND (exp, 0))
2983 return exp;
2985 new = fold (build1 (code, TREE_TYPE (exp), op0));
2986 break;
2988 case 2:
2989 /* An RTL_EXPR cannot contain a PLACEHOLDER_EXPR; a CONSTRUCTOR
2990 could, but we don't support it. */
2991 if (code == RTL_EXPR)
2992 return exp;
2993 else if (code == CONSTRUCTOR)
2994 abort ();
2996 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
2997 op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
2998 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
2999 return exp;
3001 new = fold (build (code, TREE_TYPE (exp), op0, op1));
3002 break;
3004 case 3:
3005 /* It cannot be that anything inside a SAVE_EXPR contains a
3006 PLACEHOLDER_EXPR. */
3007 if (code == SAVE_EXPR)
3008 return exp;
3010 else if (code == CALL_EXPR)
3012 op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
3013 if (op1 == TREE_OPERAND (exp, 1))
3014 return exp;
3016 return build (code, TREE_TYPE (exp),
3017 TREE_OPERAND (exp, 0), op1, NULL_TREE);
3020 else if (code != COND_EXPR)
3021 abort ();
3023 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
3024 op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
3025 op2 = substitute_in_expr (TREE_OPERAND (exp, 2), f, r);
3026 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3027 && op2 == TREE_OPERAND (exp, 2))
3028 return exp;
3030 new = fold (build (code, TREE_TYPE (exp), op0, op1, op2));
3031 break;
3033 default:
3034 abort ();
3037 break;
3039 case 'r':
3040 switch (code)
3042 case COMPONENT_REF:
3043 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3044 and it is the right field, replace it with R. */
3045 for (inner = TREE_OPERAND (exp, 0);
3046 TREE_CODE_CLASS (TREE_CODE (inner)) == 'r';
3047 inner = TREE_OPERAND (inner, 0))
3049 if (TREE_CODE (inner) == PLACEHOLDER_EXPR
3050 && TREE_OPERAND (exp, 1) == f)
3051 return r;
3053 /* If this expression hasn't been completed let, leave it
3054 alone. */
3055 if (TREE_CODE (inner) == PLACEHOLDER_EXPR
3056 && TREE_TYPE (inner) == 0)
3057 return exp;
3059 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
3060 if (op0 == TREE_OPERAND (exp, 0))
3061 return exp;
3063 new = fold (build (code, TREE_TYPE (exp), op0,
3064 TREE_OPERAND (exp, 1)));
3065 break;
3067 case BIT_FIELD_REF:
3068 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
3069 op1 = substitute_in_expr (TREE_OPERAND (exp, 1), f, r);
3070 op2 = substitute_in_expr (TREE_OPERAND (exp, 2), f, r);
3071 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3072 && op2 == TREE_OPERAND (exp, 2))
3073 return exp;
3075 new = fold (build (code, TREE_TYPE (exp), op0, op1, op2));
3076 break;
3078 case INDIRECT_REF:
3079 case BUFFER_REF:
3080 op0 = substitute_in_expr (TREE_OPERAND (exp, 0), f, r);
3081 if (op0 == TREE_OPERAND (exp, 0))
3082 return exp;
3084 new = fold (build1 (code, TREE_TYPE (exp), op0));
3085 break;
3087 default:
3088 abort ();
3090 break;
3092 default:
3093 abort ();
3096 TREE_READONLY (new) = TREE_READONLY (exp);
3097 return new;
3100 /* Stabilize a reference so that we can use it any number of times
3101 without causing its operands to be evaluated more than once.
3102 Returns the stabilized reference. This works by means of save_expr,
3103 so see the caveats in the comments about save_expr.
3105 Also allows conversion expressions whose operands are references.
3106 Any other kind of expression is returned unchanged. */
3108 tree
3109 stabilize_reference (ref)
3110 tree ref;
3112 register tree result;
3113 register enum tree_code code = TREE_CODE (ref);
3115 switch (code)
3117 case VAR_DECL:
3118 case PARM_DECL:
3119 case RESULT_DECL:
3120 /* No action is needed in this case. */
3121 return ref;
3123 case NOP_EXPR:
3124 case CONVERT_EXPR:
3125 case FLOAT_EXPR:
3126 case FIX_TRUNC_EXPR:
3127 case FIX_FLOOR_EXPR:
3128 case FIX_ROUND_EXPR:
3129 case FIX_CEIL_EXPR:
3130 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
3131 break;
3133 case INDIRECT_REF:
3134 result = build_nt (INDIRECT_REF,
3135 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
3136 break;
3138 case COMPONENT_REF:
3139 result = build_nt (COMPONENT_REF,
3140 stabilize_reference (TREE_OPERAND (ref, 0)),
3141 TREE_OPERAND (ref, 1));
3142 break;
3144 case BIT_FIELD_REF:
3145 result = build_nt (BIT_FIELD_REF,
3146 stabilize_reference (TREE_OPERAND (ref, 0)),
3147 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3148 stabilize_reference_1 (TREE_OPERAND (ref, 2)));
3149 break;
3151 case ARRAY_REF:
3152 result = build_nt (ARRAY_REF,
3153 stabilize_reference (TREE_OPERAND (ref, 0)),
3154 stabilize_reference_1 (TREE_OPERAND (ref, 1)));
3155 break;
3157 case COMPOUND_EXPR:
3158 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3159 it wouldn't be ignored. This matters when dealing with
3160 volatiles. */
3161 return stabilize_reference_1 (ref);
3163 case RTL_EXPR:
3164 result = build1 (INDIRECT_REF, TREE_TYPE (ref),
3165 save_expr (build1 (ADDR_EXPR,
3166 build_pointer_type (TREE_TYPE (ref)),
3167 ref)));
3168 break;
3171 /* If arg isn't a kind of lvalue we recognize, make no change.
3172 Caller should recognize the error for an invalid lvalue. */
3173 default:
3174 return ref;
3176 case ERROR_MARK:
3177 return error_mark_node;
3180 TREE_TYPE (result) = TREE_TYPE (ref);
3181 TREE_READONLY (result) = TREE_READONLY (ref);
3182 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
3183 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
3185 return result;
3188 /* Subroutine of stabilize_reference; this is called for subtrees of
3189 references. Any expression with side-effects must be put in a SAVE_EXPR
3190 to ensure that it is only evaluated once.
3192 We don't put SAVE_EXPR nodes around everything, because assigning very
3193 simple expressions to temporaries causes us to miss good opportunities
3194 for optimizations. Among other things, the opportunity to fold in the
3195 addition of a constant into an addressing mode often gets lost, e.g.
3196 "y[i+1] += x;". In general, we take the approach that we should not make
3197 an assignment unless we are forced into it - i.e., that any non-side effect
3198 operator should be allowed, and that cse should take care of coalescing
3199 multiple utterances of the same expression should that prove fruitful. */
3201 tree
3202 stabilize_reference_1 (e)
3203 tree e;
3205 register tree result;
3206 register enum tree_code code = TREE_CODE (e);
3208 /* We cannot ignore const expressions because it might be a reference
3209 to a const array but whose index contains side-effects. But we can
3210 ignore things that are actual constant or that already have been
3211 handled by this function. */
3213 if (TREE_CONSTANT (e) || code == SAVE_EXPR)
3214 return e;
3216 switch (TREE_CODE_CLASS (code))
3218 case 'x':
3219 case 't':
3220 case 'd':
3221 case 'b':
3222 case '<':
3223 case 's':
3224 case 'e':
3225 case 'r':
3226 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3227 so that it will only be evaluated once. */
3228 /* The reference (r) and comparison (<) classes could be handled as
3229 below, but it is generally faster to only evaluate them once. */
3230 if (TREE_SIDE_EFFECTS (e))
3231 return save_expr (e);
3232 return e;
3234 case 'c':
3235 /* Constants need no processing. In fact, we should never reach
3236 here. */
3237 return e;
3239 case '2':
3240 /* Division is slow and tends to be compiled with jumps,
3241 especially the division by powers of 2 that is often
3242 found inside of an array reference. So do it just once. */
3243 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
3244 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
3245 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
3246 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
3247 return save_expr (e);
3248 /* Recursively stabilize each operand. */
3249 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
3250 stabilize_reference_1 (TREE_OPERAND (e, 1)));
3251 break;
3253 case '1':
3254 /* Recursively stabilize each operand. */
3255 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
3256 break;
3258 default:
3259 abort ();
3262 TREE_TYPE (result) = TREE_TYPE (e);
3263 TREE_READONLY (result) = TREE_READONLY (e);
3264 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
3265 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
3267 return result;
3270 /* Low-level constructors for expressions. */
3272 /* Build an expression of code CODE, data type TYPE,
3273 and operands as specified by the arguments ARG1 and following arguments.
3274 Expressions and reference nodes can be created this way.
3275 Constants, decls, types and misc nodes cannot be. */
3277 tree
3278 build VPARAMS ((enum tree_code code, tree tt, ...))
3280 #ifndef ANSI_PROTOTYPES
3281 enum tree_code code;
3282 tree tt;
3283 #endif
3284 va_list p;
3285 register tree t;
3286 register int length;
3287 register int i;
3288 int fro;
3290 VA_START (p, tt);
3292 #ifndef ANSI_PROTOTYPES
3293 code = va_arg (p, enum tree_code);
3294 tt = va_arg (p, tree);
3295 #endif
3297 t = make_node (code);
3298 length = TREE_CODE_LENGTH (code);
3299 TREE_TYPE (t) = tt;
3301 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_RAISED for
3302 the result based on those same flags for the arguments. But, if
3303 the arguments aren't really even `tree' expressions, we shouldn't
3304 be trying to do this. */
3305 fro = first_rtl_op (code);
3307 if (length == 2)
3309 /* This is equivalent to the loop below, but faster. */
3310 register tree arg0 = va_arg (p, tree);
3311 register tree arg1 = va_arg (p, tree);
3312 TREE_OPERAND (t, 0) = arg0;
3313 TREE_OPERAND (t, 1) = arg1;
3314 if (arg0 && fro > 0)
3316 if (TREE_SIDE_EFFECTS (arg0))
3317 TREE_SIDE_EFFECTS (t) = 1;
3319 if (arg1 && fro > 1)
3321 if (TREE_SIDE_EFFECTS (arg1))
3322 TREE_SIDE_EFFECTS (t) = 1;
3325 else if (length == 1)
3327 register tree arg0 = va_arg (p, tree);
3329 /* Call build1 for this! */
3330 if (TREE_CODE_CLASS (code) != 's')
3331 abort ();
3332 TREE_OPERAND (t, 0) = arg0;
3333 if (fro > 0)
3335 if (arg0 && TREE_SIDE_EFFECTS (arg0))
3336 TREE_SIDE_EFFECTS (t) = 1;
3339 else
3341 for (i = 0; i < length; i++)
3343 register tree operand = va_arg (p, tree);
3344 TREE_OPERAND (t, i) = operand;
3345 if (operand && fro > i)
3347 if (TREE_SIDE_EFFECTS (operand))
3348 TREE_SIDE_EFFECTS (t) = 1;
3352 va_end (p);
3353 return t;
3356 /* Same as above, but only builds for unary operators.
3357 Saves lions share of calls to `build'; cuts down use
3358 of varargs, which is expensive for RISC machines. */
3360 tree
3361 build1 (code, type, node)
3362 enum tree_code code;
3363 tree type;
3364 tree node;
3366 register struct obstack *obstack = expression_obstack;
3367 register int length;
3368 #ifdef GATHER_STATISTICS
3369 register tree_node_kind kind;
3370 #endif
3371 register tree t;
3373 #ifdef GATHER_STATISTICS
3374 if (TREE_CODE_CLASS (code) == 'r')
3375 kind = r_kind;
3376 else
3377 kind = e_kind;
3378 #endif
3380 length = sizeof (struct tree_exp);
3382 if (ggc_p)
3383 t = ggc_alloc_tree (length);
3384 else
3385 t = (tree) obstack_alloc (obstack, length);
3387 memset ((PTR) t, 0, sizeof (struct tree_common));
3389 #ifdef GATHER_STATISTICS
3390 tree_node_counts[(int)kind]++;
3391 tree_node_sizes[(int)kind] += length;
3392 #endif
3394 TREE_SET_CODE (t, code);
3395 TREE_SET_PERMANENT (t);
3397 TREE_TYPE (t) = type;
3398 TREE_COMPLEXITY (t) = 0;
3399 TREE_OPERAND (t, 0) = node;
3400 if (node && first_rtl_op (code) != 0 && TREE_SIDE_EFFECTS (node))
3401 TREE_SIDE_EFFECTS (t) = 1;
3403 switch (code)
3405 case INIT_EXPR:
3406 case MODIFY_EXPR:
3407 case VA_ARG_EXPR:
3408 case RTL_EXPR:
3409 case PREDECREMENT_EXPR:
3410 case PREINCREMENT_EXPR:
3411 case POSTDECREMENT_EXPR:
3412 case POSTINCREMENT_EXPR:
3413 /* All of these have side-effects, no matter what their
3414 operands are. */
3415 TREE_SIDE_EFFECTS (t) = 1;
3416 break;
3418 default:
3419 break;
3422 return t;
3425 /* Similar except don't specify the TREE_TYPE
3426 and leave the TREE_SIDE_EFFECTS as 0.
3427 It is permissible for arguments to be null,
3428 or even garbage if their values do not matter. */
3430 tree
3431 build_nt VPARAMS ((enum tree_code code, ...))
3433 #ifndef ANSI_PROTOTYPES
3434 enum tree_code code;
3435 #endif
3436 va_list p;
3437 register tree t;
3438 register int length;
3439 register int i;
3441 VA_START (p, code);
3443 #ifndef ANSI_PROTOTYPES
3444 code = va_arg (p, enum tree_code);
3445 #endif
3447 t = make_node (code);
3448 length = TREE_CODE_LENGTH (code);
3450 for (i = 0; i < length; i++)
3451 TREE_OPERAND (t, i) = va_arg (p, tree);
3453 va_end (p);
3454 return t;
3457 /* Similar to `build_nt', except we build
3458 on the temp_decl_obstack, regardless. */
3460 tree
3461 build_parse_node VPARAMS ((enum tree_code code, ...))
3463 #ifndef ANSI_PROTOTYPES
3464 enum tree_code code;
3465 #endif
3466 register struct obstack *ambient_obstack = expression_obstack;
3467 va_list p;
3468 register tree t;
3469 register int length;
3470 register int i;
3472 VA_START (p, code);
3474 #ifndef ANSI_PROTOTYPES
3475 code = va_arg (p, enum tree_code);
3476 #endif
3478 expression_obstack = &temp_decl_obstack;
3480 t = make_node (code);
3481 length = TREE_CODE_LENGTH (code);
3483 for (i = 0; i < length; i++)
3484 TREE_OPERAND (t, i) = va_arg (p, tree);
3486 va_end (p);
3487 expression_obstack = ambient_obstack;
3488 return t;
3491 #if 0
3492 /* Commented out because this wants to be done very
3493 differently. See cp-lex.c. */
3494 tree
3495 build_op_identifier (op1, op2)
3496 tree op1, op2;
3498 register tree t = make_node (OP_IDENTIFIER);
3499 TREE_PURPOSE (t) = op1;
3500 TREE_VALUE (t) = op2;
3501 return t;
3503 #endif
3505 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
3506 We do NOT enter this node in any sort of symbol table.
3508 layout_decl is used to set up the decl's storage layout.
3509 Other slots are initialized to 0 or null pointers. */
3511 tree
3512 build_decl (code, name, type)
3513 enum tree_code code;
3514 tree name, type;
3516 register tree t;
3518 t = make_node (code);
3520 /* if (type == error_mark_node)
3521 type = integer_type_node; */
3522 /* That is not done, deliberately, so that having error_mark_node
3523 as the type can suppress useless errors in the use of this variable. */
3525 DECL_NAME (t) = name;
3526 DECL_ASSEMBLER_NAME (t) = name;
3527 TREE_TYPE (t) = type;
3529 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
3530 layout_decl (t, 0);
3531 else if (code == FUNCTION_DECL)
3532 DECL_MODE (t) = FUNCTION_MODE;
3534 return t;
3537 /* BLOCK nodes are used to represent the structure of binding contours
3538 and declarations, once those contours have been exited and their contents
3539 compiled. This information is used for outputting debugging info. */
3541 tree
3542 build_block (vars, tags, subblocks, supercontext, chain)
3543 tree vars, tags ATTRIBUTE_UNUSED, subblocks, supercontext, chain;
3545 register tree block = make_node (BLOCK);
3547 BLOCK_VARS (block) = vars;
3548 BLOCK_SUBBLOCKS (block) = subblocks;
3549 BLOCK_SUPERCONTEXT (block) = supercontext;
3550 BLOCK_CHAIN (block) = chain;
3551 return block;
3554 /* EXPR_WITH_FILE_LOCATION are used to keep track of the exact
3555 location where an expression or an identifier were encountered. It
3556 is necessary for languages where the frontend parser will handle
3557 recursively more than one file (Java is one of them). */
3559 tree
3560 build_expr_wfl (node, file, line, col)
3561 tree node;
3562 const char *file;
3563 int line, col;
3565 static const char *last_file = 0;
3566 static tree last_filenode = NULL_TREE;
3567 register tree wfl = make_node (EXPR_WITH_FILE_LOCATION);
3569 EXPR_WFL_NODE (wfl) = node;
3570 EXPR_WFL_SET_LINECOL (wfl, line, col);
3571 if (file != last_file)
3573 last_file = file;
3574 last_filenode = file ? get_identifier (file) : NULL_TREE;
3577 EXPR_WFL_FILENAME_NODE (wfl) = last_filenode;
3578 if (node)
3580 TREE_SIDE_EFFECTS (wfl) = TREE_SIDE_EFFECTS (node);
3581 TREE_TYPE (wfl) = TREE_TYPE (node);
3584 return wfl;
3587 /* Return a declaration like DDECL except that its DECL_MACHINE_ATTRIBUTE
3588 is ATTRIBUTE. */
3590 tree
3591 build_decl_attribute_variant (ddecl, attribute)
3592 tree ddecl, attribute;
3594 DECL_MACHINE_ATTRIBUTES (ddecl) = attribute;
3595 return ddecl;
3598 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
3599 is ATTRIBUTE.
3601 Record such modified types already made so we don't make duplicates. */
3603 tree
3604 build_type_attribute_variant (ttype, attribute)
3605 tree ttype, attribute;
3607 if ( ! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
3609 unsigned int hashcode;
3610 tree ntype;
3612 push_obstacks (TYPE_OBSTACK (ttype), TYPE_OBSTACK (ttype));
3613 ntype = copy_node (ttype);
3615 TYPE_POINTER_TO (ntype) = 0;
3616 TYPE_REFERENCE_TO (ntype) = 0;
3617 TYPE_ATTRIBUTES (ntype) = attribute;
3619 /* Create a new main variant of TYPE. */
3620 TYPE_MAIN_VARIANT (ntype) = ntype;
3621 TYPE_NEXT_VARIANT (ntype) = 0;
3622 set_type_quals (ntype, TYPE_UNQUALIFIED);
3624 hashcode = (TYPE_HASH (TREE_CODE (ntype))
3625 + TYPE_HASH (TREE_TYPE (ntype))
3626 + attribute_hash_list (attribute));
3628 switch (TREE_CODE (ntype))
3630 case FUNCTION_TYPE:
3631 hashcode += TYPE_HASH (TYPE_ARG_TYPES (ntype));
3632 break;
3633 case ARRAY_TYPE:
3634 hashcode += TYPE_HASH (TYPE_DOMAIN (ntype));
3635 break;
3636 case INTEGER_TYPE:
3637 hashcode += TYPE_HASH (TYPE_MAX_VALUE (ntype));
3638 break;
3639 case REAL_TYPE:
3640 hashcode += TYPE_HASH (TYPE_PRECISION (ntype));
3641 break;
3642 default:
3643 break;
3646 ntype = type_hash_canon (hashcode, ntype);
3647 ttype = build_qualified_type (ntype, TYPE_QUALS (ttype));
3648 pop_obstacks ();
3651 return ttype;
3654 /* Return a 1 if ATTR_NAME and ATTR_ARGS is valid for either declaration DECL
3655 or type TYPE and 0 otherwise. Validity is determined the configuration
3656 macros VALID_MACHINE_DECL_ATTRIBUTE and VALID_MACHINE_TYPE_ATTRIBUTE. */
3659 valid_machine_attribute (attr_name, attr_args, decl, type)
3660 tree attr_name;
3661 tree attr_args ATTRIBUTE_UNUSED;
3662 tree decl ATTRIBUTE_UNUSED;
3663 tree type ATTRIBUTE_UNUSED;
3665 int validated = 0;
3666 #ifdef VALID_MACHINE_DECL_ATTRIBUTE
3667 tree decl_attr_list = decl != 0 ? DECL_MACHINE_ATTRIBUTES (decl) : 0;
3668 #endif
3669 #ifdef VALID_MACHINE_TYPE_ATTRIBUTE
3670 tree type_attr_list = TYPE_ATTRIBUTES (type);
3671 #endif
3673 if (TREE_CODE (attr_name) != IDENTIFIER_NODE)
3674 abort ();
3676 #ifdef VALID_MACHINE_DECL_ATTRIBUTE
3677 if (decl != 0
3678 && VALID_MACHINE_DECL_ATTRIBUTE (decl, decl_attr_list, attr_name,
3679 attr_args))
3681 tree attr = lookup_attribute (IDENTIFIER_POINTER (attr_name),
3682 decl_attr_list);
3684 if (attr != NULL_TREE)
3686 /* Override existing arguments. Declarations are unique so we can
3687 modify this in place. */
3688 TREE_VALUE (attr) = attr_args;
3690 else
3692 decl_attr_list = tree_cons (attr_name, attr_args, decl_attr_list);
3693 decl = build_decl_attribute_variant (decl, decl_attr_list);
3696 validated = 1;
3698 #endif
3700 #ifdef VALID_MACHINE_TYPE_ATTRIBUTE
3701 if (validated)
3702 /* Don't apply the attribute to both the decl and the type. */;
3703 else if (VALID_MACHINE_TYPE_ATTRIBUTE (type, type_attr_list, attr_name,
3704 attr_args))
3706 tree attr = lookup_attribute (IDENTIFIER_POINTER (attr_name),
3707 type_attr_list);
3709 if (attr != NULL_TREE)
3711 /* Override existing arguments.
3712 ??? This currently works since attribute arguments are not
3713 included in `attribute_hash_list'. Something more complicated
3714 may be needed in the future. */
3715 TREE_VALUE (attr) = attr_args;
3717 else
3719 /* If this is part of a declaration, create a type variant,
3720 otherwise, this is part of a type definition, so add it
3721 to the base type. */
3722 type_attr_list = tree_cons (attr_name, attr_args, type_attr_list);
3723 if (decl != 0)
3724 type = build_type_attribute_variant (type, type_attr_list);
3725 else
3726 TYPE_ATTRIBUTES (type) = type_attr_list;
3729 if (decl != 0)
3730 TREE_TYPE (decl) = type;
3732 validated = 1;
3735 /* Handle putting a type attribute on pointer-to-function-type by putting
3736 the attribute on the function type. */
3737 else if (POINTER_TYPE_P (type)
3738 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
3739 && VALID_MACHINE_TYPE_ATTRIBUTE (TREE_TYPE (type), type_attr_list,
3740 attr_name, attr_args))
3742 tree inner_type = TREE_TYPE (type);
3743 tree inner_attr_list = TYPE_ATTRIBUTES (inner_type);
3744 tree attr = lookup_attribute (IDENTIFIER_POINTER (attr_name),
3745 type_attr_list);
3747 if (attr != NULL_TREE)
3748 TREE_VALUE (attr) = attr_args;
3749 else
3751 inner_attr_list = tree_cons (attr_name, attr_args, inner_attr_list);
3752 inner_type = build_type_attribute_variant (inner_type,
3753 inner_attr_list);
3756 if (decl != 0)
3757 TREE_TYPE (decl) = build_pointer_type (inner_type);
3758 else
3760 /* Clear TYPE_POINTER_TO for the old inner type, since
3761 `type' won't be pointing to it anymore. */
3762 TYPE_POINTER_TO (TREE_TYPE (type)) = NULL_TREE;
3763 TREE_TYPE (type) = inner_type;
3766 validated = 1;
3768 #endif
3770 return validated;
3773 /* Return non-zero if IDENT is a valid name for attribute ATTR,
3774 or zero if not.
3776 We try both `text' and `__text__', ATTR may be either one. */
3777 /* ??? It might be a reasonable simplification to require ATTR to be only
3778 `text'. One might then also require attribute lists to be stored in
3779 their canonicalized form. */
3782 is_attribute_p (attr, ident)
3783 const char *attr;
3784 tree ident;
3786 int ident_len, attr_len;
3787 char *p;
3789 if (TREE_CODE (ident) != IDENTIFIER_NODE)
3790 return 0;
3792 if (strcmp (attr, IDENTIFIER_POINTER (ident)) == 0)
3793 return 1;
3795 p = IDENTIFIER_POINTER (ident);
3796 ident_len = strlen (p);
3797 attr_len = strlen (attr);
3799 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
3800 if (attr[0] == '_')
3802 if (attr[1] != '_'
3803 || attr[attr_len - 2] != '_'
3804 || attr[attr_len - 1] != '_')
3805 abort ();
3806 if (ident_len == attr_len - 4
3807 && strncmp (attr + 2, p, attr_len - 4) == 0)
3808 return 1;
3810 else
3812 if (ident_len == attr_len + 4
3813 && p[0] == '_' && p[1] == '_'
3814 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
3815 && strncmp (attr, p + 2, attr_len) == 0)
3816 return 1;
3819 return 0;
3822 /* Given an attribute name and a list of attributes, return a pointer to the
3823 attribute's list element if the attribute is part of the list, or NULL_TREE
3824 if not found. */
3826 tree
3827 lookup_attribute (attr_name, list)
3828 const char *attr_name;
3829 tree list;
3831 tree l;
3833 for (l = list; l; l = TREE_CHAIN (l))
3835 if (TREE_CODE (TREE_PURPOSE (l)) != IDENTIFIER_NODE)
3836 abort ();
3837 if (is_attribute_p (attr_name, TREE_PURPOSE (l)))
3838 return l;
3841 return NULL_TREE;
3844 /* Return an attribute list that is the union of a1 and a2. */
3846 tree
3847 merge_attributes (a1, a2)
3848 register tree a1, a2;
3850 tree attributes;
3852 /* Either one unset? Take the set one. */
3854 if ((attributes = a1) == 0)
3855 attributes = a2;
3857 /* One that completely contains the other? Take it. */
3859 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
3861 if (attribute_list_contained (a2, a1))
3862 attributes = a2;
3863 else
3865 /* Pick the longest list, and hang on the other list. */
3866 /* ??? For the moment we punt on the issue of attrs with args. */
3868 if (list_length (a1) < list_length (a2))
3869 attributes = a2, a2 = a1;
3871 for (; a2 != 0; a2 = TREE_CHAIN (a2))
3872 if (lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
3873 attributes) == NULL_TREE)
3875 a1 = copy_node (a2);
3876 TREE_CHAIN (a1) = attributes;
3877 attributes = a1;
3881 return attributes;
3884 /* Given types T1 and T2, merge their attributes and return
3885 the result. */
3887 tree
3888 merge_machine_type_attributes (t1, t2)
3889 tree t1, t2;
3891 #ifdef MERGE_MACHINE_TYPE_ATTRIBUTES
3892 return MERGE_MACHINE_TYPE_ATTRIBUTES (t1, t2);
3893 #else
3894 return merge_attributes (TYPE_ATTRIBUTES (t1),
3895 TYPE_ATTRIBUTES (t2));
3896 #endif
3899 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
3900 the result. */
3902 tree
3903 merge_machine_decl_attributes (olddecl, newdecl)
3904 tree olddecl, newdecl;
3906 #ifdef MERGE_MACHINE_DECL_ATTRIBUTES
3907 return MERGE_MACHINE_DECL_ATTRIBUTES (olddecl, newdecl);
3908 #else
3909 return merge_attributes (DECL_MACHINE_ATTRIBUTES (olddecl),
3910 DECL_MACHINE_ATTRIBUTES (newdecl));
3911 #endif
3914 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
3915 of the various TYPE_QUAL values. */
3917 static void
3918 set_type_quals (type, type_quals)
3919 tree type;
3920 int type_quals;
3922 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
3923 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
3924 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
3927 /* Given a type node TYPE and a TYPE_QUALIFIER_SET, return a type for
3928 the same kind of data as TYPE describes. Variants point to the
3929 "main variant" (which has no qualifiers set) via TYPE_MAIN_VARIANT,
3930 and it points to a chain of other variants so that duplicate
3931 variants are never made. Only main variants should ever appear as
3932 types of expressions. */
3934 tree
3935 build_qualified_type (type, type_quals)
3936 tree type;
3937 int type_quals;
3939 register tree t;
3941 /* Search the chain of variants to see if there is already one there just
3942 like the one we need to have. If so, use that existing one. We must
3943 preserve the TYPE_NAME, since there is code that depends on this. */
3945 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
3946 if (TYPE_QUALS (t) == type_quals && TYPE_NAME (t) == TYPE_NAME (type))
3947 return t;
3949 /* We need a new one. */
3950 t = build_type_copy (type);
3951 set_type_quals (t, type_quals);
3952 return t;
3955 /* Create a new variant of TYPE, equivalent but distinct.
3956 This is so the caller can modify it. */
3958 tree
3959 build_type_copy (type)
3960 tree type;
3962 register tree t, m = TYPE_MAIN_VARIANT (type);
3963 register struct obstack *ambient_obstack = current_obstack;
3965 current_obstack = TYPE_OBSTACK (type);
3966 t = copy_node (type);
3967 current_obstack = ambient_obstack;
3969 TYPE_POINTER_TO (t) = 0;
3970 TYPE_REFERENCE_TO (t) = 0;
3972 /* Add this type to the chain of variants of TYPE. */
3973 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
3974 TYPE_NEXT_VARIANT (m) = t;
3976 return t;
3979 /* Hashing of types so that we don't make duplicates.
3980 The entry point is `type_hash_canon'. */
3982 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
3983 with types in the TREE_VALUE slots), by adding the hash codes
3984 of the individual types. */
3986 unsigned int
3987 type_hash_list (list)
3988 tree list;
3990 unsigned int hashcode;
3991 register tree tail;
3993 for (hashcode = 0, tail = list; tail; tail = TREE_CHAIN (tail))
3994 hashcode += TYPE_HASH (TREE_VALUE (tail));
3996 return hashcode;
3999 /* These are the Hashtable callback functions. */
4001 /* Returns true if the types are equal. */
4003 static int
4004 type_hash_eq (va, vb)
4005 const void *va;
4006 const void *vb;
4008 const struct type_hash *a = va, *b = vb;
4009 if (a->hash == b->hash
4010 && TREE_CODE (a->type) == TREE_CODE (b->type)
4011 && TREE_TYPE (a->type) == TREE_TYPE (b->type)
4012 && attribute_list_equal (TYPE_ATTRIBUTES (a->type),
4013 TYPE_ATTRIBUTES (b->type))
4014 && TYPE_ALIGN (a->type) == TYPE_ALIGN (b->type)
4015 && (TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
4016 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
4017 TYPE_MAX_VALUE (b->type)))
4018 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
4019 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
4020 TYPE_MIN_VALUE (b->type)))
4021 /* Note that TYPE_DOMAIN is TYPE_ARG_TYPES for FUNCTION_TYPE. */
4022 && (TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type)
4023 || (TYPE_DOMAIN (a->type)
4024 && TREE_CODE (TYPE_DOMAIN (a->type)) == TREE_LIST
4025 && TYPE_DOMAIN (b->type)
4026 && TREE_CODE (TYPE_DOMAIN (b->type)) == TREE_LIST
4027 && type_list_equal (TYPE_DOMAIN (a->type),
4028 TYPE_DOMAIN (b->type)))))
4029 return 1;
4030 return 0;
4033 /* Return the cached hash value. */
4035 static unsigned int
4036 type_hash_hash (item)
4037 const void *item;
4039 return ((const struct type_hash*)item)->hash;
4042 /* Look in the type hash table for a type isomorphic to TYPE.
4043 If one is found, return it. Otherwise return 0. */
4045 tree
4046 type_hash_lookup (hashcode, type)
4047 unsigned int hashcode;
4048 tree type;
4050 struct type_hash *h, in;
4052 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
4053 must call that routine before comparing TYPE_ALIGNs. */
4054 layout_type (type);
4056 in.hash = hashcode;
4057 in.type = type;
4059 h = htab_find_with_hash (type_hash_table, &in, hashcode);
4060 if (h)
4061 return h->type;
4062 return NULL_TREE;
4065 /* Add an entry to the type-hash-table
4066 for a type TYPE whose hash code is HASHCODE. */
4068 void
4069 type_hash_add (hashcode, type)
4070 unsigned int hashcode;
4071 tree type;
4073 struct type_hash *h;
4074 void **loc;
4076 h = (struct type_hash *) permalloc (sizeof (struct type_hash));
4077 h->hash = hashcode;
4078 h->type = type;
4079 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
4080 *(struct type_hash**) loc = h;
4083 /* Given TYPE, and HASHCODE its hash code, return the canonical
4084 object for an identical type if one already exists.
4085 Otherwise, return TYPE, and record it as the canonical object
4086 if it is a permanent object.
4088 To use this function, first create a type of the sort you want.
4089 Then compute its hash code from the fields of the type that
4090 make it different from other similar types.
4091 Then call this function and use the value.
4092 This function frees the type you pass in if it is a duplicate. */
4094 /* Set to 1 to debug without canonicalization. Never set by program. */
4095 int debug_no_type_hash = 0;
4097 tree
4098 type_hash_canon (hashcode, type)
4099 unsigned int hashcode;
4100 tree type;
4102 tree t1;
4104 if (debug_no_type_hash)
4105 return type;
4107 t1 = type_hash_lookup (hashcode, type);
4108 if (t1 != 0)
4110 if (!ggc_p)
4111 obstack_free (TYPE_OBSTACK (type), type);
4113 #ifdef GATHER_STATISTICS
4114 tree_node_counts[(int) t_kind]--;
4115 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type);
4116 #endif
4117 return t1;
4120 /* If this is a permanent type, record it for later reuse. */
4121 if (ggc_p || TREE_PERMANENT (type))
4122 type_hash_add (hashcode, type);
4124 return type;
4127 /* Callback function for htab_traverse. */
4129 static int
4130 mark_hash_entry (entry, param)
4131 void **entry;
4132 void *param ATTRIBUTE_UNUSED;
4134 struct type_hash *p = *(struct type_hash **)entry;
4136 ggc_mark_tree (p->type);
4138 /* Continue scan. */
4139 return 1;
4142 /* Mark ARG (which is really a htab_t *) for GC. */
4144 static void
4145 mark_type_hash (arg)
4146 void *arg;
4148 htab_t t = *(htab_t *) arg;
4150 htab_traverse (t, mark_hash_entry, 0);
4153 static void
4154 print_type_hash_statistics ()
4156 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
4157 (long) htab_size (type_hash_table),
4158 (long) htab_elements (type_hash_table),
4159 htab_collisions (type_hash_table));
4162 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
4163 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
4164 by adding the hash codes of the individual attributes. */
4166 unsigned int
4167 attribute_hash_list (list)
4168 tree list;
4170 unsigned int hashcode;
4171 register tree tail;
4173 for (hashcode = 0, tail = list; tail; tail = TREE_CHAIN (tail))
4174 /* ??? Do we want to add in TREE_VALUE too? */
4175 hashcode += TYPE_HASH (TREE_PURPOSE (tail));
4176 return hashcode;
4179 /* Given two lists of attributes, return true if list l2 is
4180 equivalent to l1. */
4183 attribute_list_equal (l1, l2)
4184 tree l1, l2;
4186 return attribute_list_contained (l1, l2)
4187 && attribute_list_contained (l2, l1);
4190 /* Given two lists of attributes, return true if list L2 is
4191 completely contained within L1. */
4192 /* ??? This would be faster if attribute names were stored in a canonicalized
4193 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
4194 must be used to show these elements are equivalent (which they are). */
4195 /* ??? It's not clear that attributes with arguments will always be handled
4196 correctly. */
4199 attribute_list_contained (l1, l2)
4200 tree l1, l2;
4202 register tree t1, t2;
4204 /* First check the obvious, maybe the lists are identical. */
4205 if (l1 == l2)
4206 return 1;
4208 /* Maybe the lists are similar. */
4209 for (t1 = l1, t2 = l2;
4210 t1 != 0 && t2 != 0
4211 && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
4212 && TREE_VALUE (t1) == TREE_VALUE (t2);
4213 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2));
4215 /* Maybe the lists are equal. */
4216 if (t1 == 0 && t2 == 0)
4217 return 1;
4219 for (; t2 != 0; t2 = TREE_CHAIN (t2))
4221 tree attr
4222 = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)), l1);
4224 if (attr == 0)
4225 return 0;
4227 if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) != 1)
4228 return 0;
4231 return 1;
4234 /* Given two lists of types
4235 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
4236 return 1 if the lists contain the same types in the same order.
4237 Also, the TREE_PURPOSEs must match. */
4240 type_list_equal (l1, l2)
4241 tree l1, l2;
4243 register tree t1, t2;
4245 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
4246 if (TREE_VALUE (t1) != TREE_VALUE (t2)
4247 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
4248 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
4249 && (TREE_TYPE (TREE_PURPOSE (t1))
4250 == TREE_TYPE (TREE_PURPOSE (t2))))))
4251 return 0;
4253 return t1 == t2;
4256 /* Nonzero if integer constants T1 and T2
4257 represent the same constant value. */
4260 tree_int_cst_equal (t1, t2)
4261 tree t1, t2;
4263 if (t1 == t2)
4264 return 1;
4266 if (t1 == 0 || t2 == 0)
4267 return 0;
4269 if (TREE_CODE (t1) == INTEGER_CST
4270 && TREE_CODE (t2) == INTEGER_CST
4271 && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
4272 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
4273 return 1;
4275 return 0;
4278 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
4279 The precise way of comparison depends on their data type. */
4282 tree_int_cst_lt (t1, t2)
4283 tree t1, t2;
4285 if (t1 == t2)
4286 return 0;
4288 if (! TREE_UNSIGNED (TREE_TYPE (t1)))
4289 return INT_CST_LT (t1, t2);
4291 return INT_CST_LT_UNSIGNED (t1, t2);
4294 /* Return 1 if T is an INTEGER_CST that can be represented in a single
4295 HOST_WIDE_INT value. If POS is nonzero, the result must be positive. */
4298 host_integerp (t, pos)
4299 tree t;
4300 int pos;
4302 return (TREE_CODE (t) == INTEGER_CST
4303 && ! TREE_OVERFLOW (t)
4304 && ((TREE_INT_CST_HIGH (t) == 0
4305 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
4306 || (! pos && TREE_INT_CST_HIGH (t) == -1
4307 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
4308 || (! pos && TREE_INT_CST_HIGH (t) == 0
4309 && TREE_UNSIGNED (TREE_TYPE (t)))));
4312 /* Return the HOST_WIDE_INT least significant bits of T if it is an
4313 INTEGER_CST and there is no overflow. POS is nonzero if the result must
4314 be positive. Abort if we cannot satisfy the above conditions. */
4316 HOST_WIDE_INT
4317 tree_low_cst (t, pos)
4318 tree t;
4319 int pos;
4321 if (host_integerp (t, pos))
4322 return TREE_INT_CST_LOW (t);
4323 else
4324 abort ();
4327 /* Return the most significant bit of the integer constant T. */
4330 tree_int_cst_msb (t)
4331 tree t;
4333 register int prec;
4334 HOST_WIDE_INT h;
4335 unsigned HOST_WIDE_INT l;
4337 /* Note that using TYPE_PRECISION here is wrong. We care about the
4338 actual bits, not the (arbitrary) range of the type. */
4339 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t))) - 1;
4340 rshift_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t), prec,
4341 2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0);
4342 return (l & 1) == 1;
4345 /* Return an indication of the sign of the integer constant T.
4346 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
4347 Note that -1 will never be returned it T's type is unsigned. */
4350 tree_int_cst_sgn (t)
4351 tree t;
4353 if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
4354 return 0;
4355 else if (TREE_UNSIGNED (TREE_TYPE (t)))
4356 return 1;
4357 else if (TREE_INT_CST_HIGH (t) < 0)
4358 return -1;
4359 else
4360 return 1;
4363 /* Return true if `t' is known to be non-negative. */
4366 tree_expr_nonnegative_p (t)
4367 tree t;
4369 switch (TREE_CODE (t))
4371 case INTEGER_CST:
4372 return tree_int_cst_sgn (t) >= 0;
4373 case COND_EXPR:
4374 return tree_expr_nonnegative_p (TREE_OPERAND (t, 1))
4375 && tree_expr_nonnegative_p (TREE_OPERAND (t, 2));
4376 default:
4377 /* We don't know sign of `t', so be safe and return false. */
4378 return 0;
4382 /* Compare two constructor-element-type constants. Return 1 if the lists
4383 are known to be equal; otherwise return 0. */
4386 simple_cst_list_equal (l1, l2)
4387 tree l1, l2;
4389 while (l1 != NULL_TREE && l2 != NULL_TREE)
4391 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
4392 return 0;
4394 l1 = TREE_CHAIN (l1);
4395 l2 = TREE_CHAIN (l2);
4398 return l1 == l2;
4401 /* Return truthvalue of whether T1 is the same tree structure as T2.
4402 Return 1 if they are the same.
4403 Return 0 if they are understandably different.
4404 Return -1 if either contains tree structure not understood by
4405 this function. */
4408 simple_cst_equal (t1, t2)
4409 tree t1, t2;
4411 register enum tree_code code1, code2;
4412 int cmp;
4413 int i;
4415 if (t1 == t2)
4416 return 1;
4417 if (t1 == 0 || t2 == 0)
4418 return 0;
4420 code1 = TREE_CODE (t1);
4421 code2 = TREE_CODE (t2);
4423 if (code1 == NOP_EXPR || code1 == CONVERT_EXPR || code1 == NON_LVALUE_EXPR)
4425 if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
4426 || code2 == NON_LVALUE_EXPR)
4427 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4428 else
4429 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
4432 else if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
4433 || code2 == NON_LVALUE_EXPR)
4434 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
4436 if (code1 != code2)
4437 return 0;
4439 switch (code1)
4441 case INTEGER_CST:
4442 return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
4443 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
4445 case REAL_CST:
4446 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
4448 case STRING_CST:
4449 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
4450 && ! bcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
4451 TREE_STRING_LENGTH (t1)));
4453 case CONSTRUCTOR:
4454 if (CONSTRUCTOR_ELTS (t1) == CONSTRUCTOR_ELTS (t2))
4455 return 1;
4456 else
4457 abort ();
4459 case SAVE_EXPR:
4460 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4462 case CALL_EXPR:
4463 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4464 if (cmp <= 0)
4465 return cmp;
4466 return
4467 simple_cst_list_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
4469 case TARGET_EXPR:
4470 /* Special case: if either target is an unallocated VAR_DECL,
4471 it means that it's going to be unified with whatever the
4472 TARGET_EXPR is really supposed to initialize, so treat it
4473 as being equivalent to anything. */
4474 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
4475 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
4476 && DECL_RTL (TREE_OPERAND (t1, 0)) == 0)
4477 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
4478 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
4479 && DECL_RTL (TREE_OPERAND (t2, 0)) == 0))
4480 cmp = 1;
4481 else
4482 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4484 if (cmp <= 0)
4485 return cmp;
4487 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
4489 case WITH_CLEANUP_EXPR:
4490 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4491 if (cmp <= 0)
4492 return cmp;
4494 return simple_cst_equal (TREE_OPERAND (t1, 2), TREE_OPERAND (t1, 2));
4496 case COMPONENT_REF:
4497 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
4498 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4500 return 0;
4502 case VAR_DECL:
4503 case PARM_DECL:
4504 case CONST_DECL:
4505 case FUNCTION_DECL:
4506 return 0;
4508 default:
4509 break;
4512 /* This general rule works for most tree codes. All exceptions should be
4513 handled above. If this is a language-specific tree code, we can't
4514 trust what might be in the operand, so say we don't know
4515 the situation. */
4516 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
4517 return -1;
4519 switch (TREE_CODE_CLASS (code1))
4521 case '1':
4522 case '2':
4523 case '<':
4524 case 'e':
4525 case 'r':
4526 case 's':
4527 cmp = 1;
4528 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
4530 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
4531 if (cmp <= 0)
4532 return cmp;
4535 return cmp;
4537 default:
4538 return -1;
4542 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
4543 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
4544 than U, respectively. */
4547 compare_tree_int (t, u)
4548 tree t;
4549 unsigned int u;
4551 if (tree_int_cst_sgn (t) < 0)
4552 return -1;
4553 else if (TREE_INT_CST_HIGH (t) != 0)
4554 return 1;
4555 else if (TREE_INT_CST_LOW (t) == u)
4556 return 0;
4557 else if (TREE_INT_CST_LOW (t) < u)
4558 return -1;
4559 else
4560 return 1;
4563 /* Constructors for pointer, array and function types.
4564 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
4565 constructed by language-dependent code, not here.) */
4567 /* Construct, lay out and return the type of pointers to TO_TYPE.
4568 If such a type has already been constructed, reuse it. */
4570 tree
4571 build_pointer_type (to_type)
4572 tree to_type;
4574 register tree t = TYPE_POINTER_TO (to_type);
4576 /* First, if we already have a type for pointers to TO_TYPE, use it. */
4578 if (t != 0)
4579 return t;
4581 /* We need a new one. Put this in the same obstack as TO_TYPE. */
4582 push_obstacks (TYPE_OBSTACK (to_type), TYPE_OBSTACK (to_type));
4583 t = make_node (POINTER_TYPE);
4584 pop_obstacks ();
4586 TREE_TYPE (t) = to_type;
4588 /* Record this type as the pointer to TO_TYPE. */
4589 TYPE_POINTER_TO (to_type) = t;
4591 /* Lay out the type. This function has many callers that are concerned
4592 with expression-construction, and this simplifies them all.
4593 Also, it guarantees the TYPE_SIZE is in the same obstack as the type. */
4594 layout_type (t);
4596 return t;
4599 /* Build the node for the type of references-to-TO_TYPE. */
4601 tree
4602 build_reference_type (to_type)
4603 tree to_type;
4605 register tree t = TYPE_REFERENCE_TO (to_type);
4607 /* First, if we already have a type for pointers to TO_TYPE, use it. */
4609 if (t)
4610 return t;
4612 /* We need a new one. Put this in the same obstack as TO_TYPE. */
4613 push_obstacks (TYPE_OBSTACK (to_type), TYPE_OBSTACK (to_type));
4614 t = make_node (REFERENCE_TYPE);
4615 pop_obstacks ();
4617 TREE_TYPE (t) = to_type;
4619 /* Record this type as the pointer to TO_TYPE. */
4620 TYPE_REFERENCE_TO (to_type) = t;
4622 layout_type (t);
4624 return t;
4627 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
4628 MAXVAL should be the maximum value in the domain
4629 (one less than the length of the array).
4631 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
4632 We don't enforce this limit, that is up to caller (e.g. language front end).
4633 The limit exists because the result is a signed type and we don't handle
4634 sizes that use more than one HOST_WIDE_INT. */
4636 tree
4637 build_index_type (maxval)
4638 tree maxval;
4640 register tree itype = make_node (INTEGER_TYPE);
4642 TREE_TYPE (itype) = sizetype;
4643 TYPE_PRECISION (itype) = TYPE_PRECISION (sizetype);
4644 TYPE_MIN_VALUE (itype) = size_zero_node;
4646 push_obstacks (TYPE_OBSTACK (itype), TYPE_OBSTACK (itype));
4647 TYPE_MAX_VALUE (itype) = convert (sizetype, maxval);
4648 pop_obstacks ();
4650 TYPE_MODE (itype) = TYPE_MODE (sizetype);
4651 TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
4652 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (sizetype);
4653 TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
4654 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (sizetype);
4656 if (host_integerp (maxval, 1))
4657 return type_hash_canon (tree_low_cst (maxval, 1), itype);
4658 else
4659 return itype;
4662 /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
4663 ENUMERAL_TYPE, BOOLEAN_TYPE, or CHAR_TYPE), with
4664 low bound LOWVAL and high bound HIGHVAL.
4665 if TYPE==NULL_TREE, sizetype is used. */
4667 tree
4668 build_range_type (type, lowval, highval)
4669 tree type, lowval, highval;
4671 register tree itype = make_node (INTEGER_TYPE);
4673 TREE_TYPE (itype) = type;
4674 if (type == NULL_TREE)
4675 type = sizetype;
4677 push_obstacks (TYPE_OBSTACK (itype), TYPE_OBSTACK (itype));
4678 TYPE_MIN_VALUE (itype) = convert (type, lowval);
4679 TYPE_MAX_VALUE (itype) = highval ? convert (type, highval) : NULL;
4680 pop_obstacks ();
4682 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
4683 TYPE_MODE (itype) = TYPE_MODE (type);
4684 TYPE_SIZE (itype) = TYPE_SIZE (type);
4685 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
4686 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
4687 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
4689 if (host_integerp (lowval, 0) && highval != 0 && host_integerp (highval, 0))
4690 return type_hash_canon (tree_low_cst (highval, 0)
4691 - tree_low_cst (lowval, 0),
4692 itype);
4693 else
4694 return itype;
4697 /* Just like build_index_type, but takes lowval and highval instead
4698 of just highval (maxval). */
4700 tree
4701 build_index_2_type (lowval,highval)
4702 tree lowval, highval;
4704 return build_range_type (sizetype, lowval, highval);
4707 /* Return nonzero iff ITYPE1 and ITYPE2 are equal (in the LISP sense).
4708 Needed because when index types are not hashed, equal index types
4709 built at different times appear distinct, even though structurally,
4710 they are not. */
4713 index_type_equal (itype1, itype2)
4714 tree itype1, itype2;
4716 if (TREE_CODE (itype1) != TREE_CODE (itype2))
4717 return 0;
4719 if (TREE_CODE (itype1) == INTEGER_TYPE)
4721 if (TYPE_PRECISION (itype1) != TYPE_PRECISION (itype2)
4722 || TYPE_MODE (itype1) != TYPE_MODE (itype2)
4723 || simple_cst_equal (TYPE_SIZE (itype1), TYPE_SIZE (itype2)) != 1
4724 || TYPE_ALIGN (itype1) != TYPE_ALIGN (itype2))
4725 return 0;
4727 if (1 == simple_cst_equal (TYPE_MIN_VALUE (itype1),
4728 TYPE_MIN_VALUE (itype2))
4729 && 1 == simple_cst_equal (TYPE_MAX_VALUE (itype1),
4730 TYPE_MAX_VALUE (itype2)))
4731 return 1;
4734 return 0;
4737 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
4738 and number of elements specified by the range of values of INDEX_TYPE.
4739 If such a type has already been constructed, reuse it. */
4741 tree
4742 build_array_type (elt_type, index_type)
4743 tree elt_type, index_type;
4745 register tree t;
4746 unsigned int hashcode;
4748 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
4750 error ("arrays of functions are not meaningful");
4751 elt_type = integer_type_node;
4754 /* Make sure TYPE_POINTER_TO (elt_type) is filled in. */
4755 build_pointer_type (elt_type);
4757 /* Allocate the array after the pointer type,
4758 in case we free it in type_hash_canon. */
4759 t = make_node (ARRAY_TYPE);
4760 TREE_TYPE (t) = elt_type;
4761 TYPE_DOMAIN (t) = index_type;
4763 if (index_type == 0)
4765 return t;
4768 hashcode = TYPE_HASH (elt_type) + TYPE_HASH (index_type);
4769 t = type_hash_canon (hashcode, t);
4771 if (!COMPLETE_TYPE_P (t))
4772 layout_type (t);
4773 return t;
4776 /* Return the TYPE of the elements comprising
4777 the innermost dimension of ARRAY. */
4779 tree
4780 get_inner_array_type (array)
4781 tree array;
4783 tree type = TREE_TYPE (array);
4785 while (TREE_CODE (type) == ARRAY_TYPE)
4786 type = TREE_TYPE (type);
4788 return type;
4791 /* Construct, lay out and return
4792 the type of functions returning type VALUE_TYPE
4793 given arguments of types ARG_TYPES.
4794 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
4795 are data type nodes for the arguments of the function.
4796 If such a type has already been constructed, reuse it. */
4798 tree
4799 build_function_type (value_type, arg_types)
4800 tree value_type, arg_types;
4802 register tree t;
4803 unsigned int hashcode;
4805 if (TREE_CODE (value_type) == FUNCTION_TYPE)
4807 error ("function return type cannot be function");
4808 value_type = integer_type_node;
4811 /* Make a node of the sort we want. */
4812 t = make_node (FUNCTION_TYPE);
4813 TREE_TYPE (t) = value_type;
4814 TYPE_ARG_TYPES (t) = arg_types;
4816 /* If we already have such a type, use the old one and free this one. */
4817 hashcode = TYPE_HASH (value_type) + type_hash_list (arg_types);
4818 t = type_hash_canon (hashcode, t);
4820 if (!COMPLETE_TYPE_P (t))
4821 layout_type (t);
4822 return t;
4825 /* Construct, lay out and return the type of methods belonging to class
4826 BASETYPE and whose arguments and values are described by TYPE.
4827 If that type exists already, reuse it.
4828 TYPE must be a FUNCTION_TYPE node. */
4830 tree
4831 build_method_type (basetype, type)
4832 tree basetype, type;
4834 register tree t;
4835 unsigned int hashcode;
4837 /* Make a node of the sort we want. */
4838 t = make_node (METHOD_TYPE);
4840 if (TREE_CODE (type) != FUNCTION_TYPE)
4841 abort ();
4843 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
4844 TREE_TYPE (t) = TREE_TYPE (type);
4846 /* The actual arglist for this function includes a "hidden" argument
4847 which is "this". Put it into the list of argument types. */
4849 TYPE_ARG_TYPES (t)
4850 = tree_cons (NULL_TREE,
4851 build_pointer_type (basetype), TYPE_ARG_TYPES (type));
4853 /* If we already have such a type, use the old one and free this one. */
4854 hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
4855 t = type_hash_canon (hashcode, t);
4857 if (!COMPLETE_TYPE_P (t))
4858 layout_type (t);
4860 return t;
4863 /* Construct, lay out and return the type of offsets to a value
4864 of type TYPE, within an object of type BASETYPE.
4865 If a suitable offset type exists already, reuse it. */
4867 tree
4868 build_offset_type (basetype, type)
4869 tree basetype, type;
4871 register tree t;
4872 unsigned int hashcode;
4874 /* Make a node of the sort we want. */
4875 t = make_node (OFFSET_TYPE);
4877 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
4878 TREE_TYPE (t) = type;
4880 /* If we already have such a type, use the old one and free this one. */
4881 hashcode = TYPE_HASH (basetype) + TYPE_HASH (type);
4882 t = type_hash_canon (hashcode, t);
4884 if (!COMPLETE_TYPE_P (t))
4885 layout_type (t);
4887 return t;
4890 /* Create a complex type whose components are COMPONENT_TYPE. */
4892 tree
4893 build_complex_type (component_type)
4894 tree component_type;
4896 register tree t;
4897 unsigned int hashcode;
4899 /* Make a node of the sort we want. */
4900 t = make_node (COMPLEX_TYPE);
4902 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
4903 set_type_quals (t, TYPE_QUALS (component_type));
4905 /* If we already have such a type, use the old one and free this one. */
4906 hashcode = TYPE_HASH (component_type);
4907 t = type_hash_canon (hashcode, t);
4909 if (!COMPLETE_TYPE_P (t))
4910 layout_type (t);
4912 /* If we are writing Dwarf2 output we need to create a name,
4913 since complex is a fundamental type. */
4914 if (write_symbols == DWARF2_DEBUG && ! TYPE_NAME (t))
4916 const char *name;
4917 if (component_type == char_type_node)
4918 name = "complex char";
4919 else if (component_type == signed_char_type_node)
4920 name = "complex signed char";
4921 else if (component_type == unsigned_char_type_node)
4922 name = "complex unsigned char";
4923 else if (component_type == short_integer_type_node)
4924 name = "complex short int";
4925 else if (component_type == short_unsigned_type_node)
4926 name = "complex short unsigned int";
4927 else if (component_type == integer_type_node)
4928 name = "complex int";
4929 else if (component_type == unsigned_type_node)
4930 name = "complex unsigned int";
4931 else if (component_type == long_integer_type_node)
4932 name = "complex long int";
4933 else if (component_type == long_unsigned_type_node)
4934 name = "complex long unsigned int";
4935 else if (component_type == long_long_integer_type_node)
4936 name = "complex long long int";
4937 else if (component_type == long_long_unsigned_type_node)
4938 name = "complex long long unsigned int";
4939 else
4940 name = 0;
4942 if (name != 0)
4943 TYPE_NAME (t) = get_identifier (name);
4946 return t;
4949 /* Return OP, stripped of any conversions to wider types as much as is safe.
4950 Converting the value back to OP's type makes a value equivalent to OP.
4952 If FOR_TYPE is nonzero, we return a value which, if converted to
4953 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
4955 If FOR_TYPE is nonzero, unaligned bit-field references may be changed to the
4956 narrowest type that can hold the value, even if they don't exactly fit.
4957 Otherwise, bit-field references are changed to a narrower type
4958 only if they can be fetched directly from memory in that type.
4960 OP must have integer, real or enumeral type. Pointers are not allowed!
4962 There are some cases where the obvious value we could return
4963 would regenerate to OP if converted to OP's type,
4964 but would not extend like OP to wider types.
4965 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
4966 For example, if OP is (unsigned short)(signed char)-1,
4967 we avoid returning (signed char)-1 if FOR_TYPE is int,
4968 even though extending that to an unsigned short would regenerate OP,
4969 since the result of extending (signed char)-1 to (int)
4970 is different from (int) OP. */
4972 tree
4973 get_unwidened (op, for_type)
4974 register tree op;
4975 tree for_type;
4977 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
4978 register tree type = TREE_TYPE (op);
4979 register unsigned final_prec
4980 = TYPE_PRECISION (for_type != 0 ? for_type : type);
4981 register int uns
4982 = (for_type != 0 && for_type != type
4983 && final_prec > TYPE_PRECISION (type)
4984 && TREE_UNSIGNED (type));
4985 register tree win = op;
4987 while (TREE_CODE (op) == NOP_EXPR)
4989 register int bitschange
4990 = TYPE_PRECISION (TREE_TYPE (op))
4991 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
4993 /* Truncations are many-one so cannot be removed.
4994 Unless we are later going to truncate down even farther. */
4995 if (bitschange < 0
4996 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
4997 break;
4999 /* See what's inside this conversion. If we decide to strip it,
5000 we will set WIN. */
5001 op = TREE_OPERAND (op, 0);
5003 /* If we have not stripped any zero-extensions (uns is 0),
5004 we can strip any kind of extension.
5005 If we have previously stripped a zero-extension,
5006 only zero-extensions can safely be stripped.
5007 Any extension can be stripped if the bits it would produce
5008 are all going to be discarded later by truncating to FOR_TYPE. */
5010 if (bitschange > 0)
5012 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
5013 win = op;
5014 /* TREE_UNSIGNED says whether this is a zero-extension.
5015 Let's avoid computing it if it does not affect WIN
5016 and if UNS will not be needed again. */
5017 if ((uns || TREE_CODE (op) == NOP_EXPR)
5018 && TREE_UNSIGNED (TREE_TYPE (op)))
5020 uns = 1;
5021 win = op;
5026 if (TREE_CODE (op) == COMPONENT_REF
5027 /* Since type_for_size always gives an integer type. */
5028 && TREE_CODE (type) != REAL_TYPE
5029 /* Don't crash if field not laid out yet. */
5030 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0)
5032 unsigned int innerprec
5033 = TREE_INT_CST_LOW (DECL_SIZE (TREE_OPERAND (op, 1)));
5035 type = type_for_size (innerprec, TREE_UNSIGNED (TREE_OPERAND (op, 1)));
5037 /* We can get this structure field in the narrowest type it fits in.
5038 If FOR_TYPE is 0, do this only for a field that matches the
5039 narrower type exactly and is aligned for it
5040 The resulting extension to its nominal type (a fullword type)
5041 must fit the same conditions as for other extensions. */
5043 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
5044 && (for_type || ! DECL_BIT_FIELD (TREE_OPERAND (op, 1)))
5045 && (! uns || final_prec <= innerprec
5046 || TREE_UNSIGNED (TREE_OPERAND (op, 1)))
5047 && type != 0)
5049 win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
5050 TREE_OPERAND (op, 1));
5051 TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
5052 TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
5055 return win;
5058 /* Return OP or a simpler expression for a narrower value
5059 which can be sign-extended or zero-extended to give back OP.
5060 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
5061 or 0 if the value should be sign-extended. */
5063 tree
5064 get_narrower (op, unsignedp_ptr)
5065 register tree op;
5066 int *unsignedp_ptr;
5068 register int uns = 0;
5069 int first = 1;
5070 register tree win = op;
5072 while (TREE_CODE (op) == NOP_EXPR)
5074 register int bitschange
5075 = (TYPE_PRECISION (TREE_TYPE (op))
5076 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
5078 /* Truncations are many-one so cannot be removed. */
5079 if (bitschange < 0)
5080 break;
5082 /* See what's inside this conversion. If we decide to strip it,
5083 we will set WIN. */
5084 op = TREE_OPERAND (op, 0);
5086 if (bitschange > 0)
5088 /* An extension: the outermost one can be stripped,
5089 but remember whether it is zero or sign extension. */
5090 if (first)
5091 uns = TREE_UNSIGNED (TREE_TYPE (op));
5092 /* Otherwise, if a sign extension has been stripped,
5093 only sign extensions can now be stripped;
5094 if a zero extension has been stripped, only zero-extensions. */
5095 else if (uns != TREE_UNSIGNED (TREE_TYPE (op)))
5096 break;
5097 first = 0;
5099 else /* bitschange == 0 */
5101 /* A change in nominal type can always be stripped, but we must
5102 preserve the unsignedness. */
5103 if (first)
5104 uns = TREE_UNSIGNED (TREE_TYPE (op));
5105 first = 0;
5108 win = op;
5111 if (TREE_CODE (op) == COMPONENT_REF
5112 /* Since type_for_size always gives an integer type. */
5113 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE)
5115 unsigned int innerprec
5116 = TREE_INT_CST_LOW (DECL_SIZE (TREE_OPERAND (op, 1)));
5118 tree type = type_for_size (innerprec, TREE_UNSIGNED (op));
5120 /* We can get this structure field in a narrower type that fits it,
5121 but the resulting extension to its nominal type (a fullword type)
5122 must satisfy the same conditions as for other extensions.
5124 Do this only for fields that are aligned (not bit-fields),
5125 because when bit-field insns will be used there is no
5126 advantage in doing this. */
5128 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
5129 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
5130 && (first || uns == TREE_UNSIGNED (TREE_OPERAND (op, 1)))
5131 && type != 0)
5133 if (first)
5134 uns = TREE_UNSIGNED (TREE_OPERAND (op, 1));
5135 win = build (COMPONENT_REF, type, TREE_OPERAND (op, 0),
5136 TREE_OPERAND (op, 1));
5137 TREE_SIDE_EFFECTS (win) = TREE_SIDE_EFFECTS (op);
5138 TREE_THIS_VOLATILE (win) = TREE_THIS_VOLATILE (op);
5141 *unsignedp_ptr = uns;
5142 return win;
5145 /* Nonzero if integer constant C has a value that is permissible
5146 for type TYPE (an INTEGER_TYPE). */
5149 int_fits_type_p (c, type)
5150 tree c, type;
5152 if (TREE_UNSIGNED (type))
5153 return (! (TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST
5154 && INT_CST_LT_UNSIGNED (TYPE_MAX_VALUE (type), c))
5155 && ! (TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST
5156 && INT_CST_LT_UNSIGNED (c, TYPE_MIN_VALUE (type)))
5157 /* Negative ints never fit unsigned types. */
5158 && ! (TREE_INT_CST_HIGH (c) < 0
5159 && ! TREE_UNSIGNED (TREE_TYPE (c))));
5160 else
5161 return (! (TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST
5162 && INT_CST_LT (TYPE_MAX_VALUE (type), c))
5163 && ! (TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST
5164 && INT_CST_LT (c, TYPE_MIN_VALUE (type)))
5165 /* Unsigned ints with top bit set never fit signed types. */
5166 && ! (TREE_INT_CST_HIGH (c) < 0
5167 && TREE_UNSIGNED (TREE_TYPE (c))));
5170 /* Given a DECL or TYPE, return the scope in which it was declared, or
5171 NULL_TREE if there is no containing scope. */
5173 tree
5174 get_containing_scope (t)
5175 tree t;
5177 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
5180 /* Return the innermost context enclosing DECL that is
5181 a FUNCTION_DECL, or zero if none. */
5183 tree
5184 decl_function_context (decl)
5185 tree decl;
5187 tree context;
5189 if (TREE_CODE (decl) == ERROR_MARK)
5190 return 0;
5192 if (TREE_CODE (decl) == SAVE_EXPR)
5193 context = SAVE_EXPR_CONTEXT (decl);
5195 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
5196 where we look up the function at runtime. Such functions always take
5197 a first argument of type 'pointer to real context'.
5199 C++ should really be fixed to use DECL_CONTEXT for the real context,
5200 and use something else for the "virtual context". */
5201 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
5202 context
5203 = TYPE_MAIN_VARIANT
5204 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
5205 else
5206 context = DECL_CONTEXT (decl);
5208 while (context && TREE_CODE (context) != FUNCTION_DECL)
5210 if (TREE_CODE (context) == BLOCK)
5211 context = BLOCK_SUPERCONTEXT (context);
5212 else
5213 context = get_containing_scope (context);
5216 return context;
5219 /* Return the innermost context enclosing DECL that is
5220 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
5221 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
5223 tree
5224 decl_type_context (decl)
5225 tree decl;
5227 tree context = DECL_CONTEXT (decl);
5229 while (context)
5231 if (TREE_CODE (context) == RECORD_TYPE
5232 || TREE_CODE (context) == UNION_TYPE
5233 || TREE_CODE (context) == QUAL_UNION_TYPE)
5234 return context;
5236 if (TREE_CODE (context) == TYPE_DECL
5237 || TREE_CODE (context) == FUNCTION_DECL)
5238 context = DECL_CONTEXT (context);
5240 else if (TREE_CODE (context) == BLOCK)
5241 context = BLOCK_SUPERCONTEXT (context);
5243 else
5244 /* Unhandled CONTEXT!? */
5245 abort ();
5247 return NULL_TREE;
5250 /* CALL is a CALL_EXPR. Return the declaration for the function
5251 called, or NULL_TREE if the called function cannot be
5252 determined. */
5254 tree
5255 get_callee_fndecl (call)
5256 tree call;
5258 tree addr;
5260 /* It's invalid to call this function with anything but a
5261 CALL_EXPR. */
5262 if (TREE_CODE (call) != CALL_EXPR)
5263 abort ();
5265 /* The first operand to the CALL is the address of the function
5266 called. */
5267 addr = TREE_OPERAND (call, 0);
5269 STRIP_NOPS (addr);
5271 /* If this is a readonly function pointer, extract its initial value. */
5272 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
5273 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
5274 && DECL_INITIAL (addr))
5275 addr = DECL_INITIAL (addr);
5277 /* If the address is just `&f' for some function `f', then we know
5278 that `f' is being called. */
5279 if (TREE_CODE (addr) == ADDR_EXPR
5280 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
5281 return TREE_OPERAND (addr, 0);
5283 /* We couldn't figure out what was being called. */
5284 return NULL_TREE;
5287 /* Print debugging information about the obstack O, named STR. */
5289 void
5290 print_obstack_statistics (str, o)
5291 const char *str;
5292 struct obstack *o;
5294 struct _obstack_chunk *chunk = o->chunk;
5295 int n_chunks = 1;
5296 int n_alloc = 0;
5298 n_alloc += o->next_free - chunk->contents;
5299 chunk = chunk->prev;
5300 while (chunk)
5302 n_chunks += 1;
5303 n_alloc += chunk->limit - &chunk->contents[0];
5304 chunk = chunk->prev;
5306 fprintf (stderr, "obstack %s: %u bytes, %d chunks\n",
5307 str, n_alloc, n_chunks);
5310 /* Print debugging information about tree nodes generated during the compile,
5311 and any language-specific information. */
5313 void
5314 dump_tree_statistics ()
5316 #ifdef GATHER_STATISTICS
5317 int i;
5318 int total_nodes, total_bytes;
5319 #endif
5321 fprintf (stderr, "\n??? tree nodes created\n\n");
5322 #ifdef GATHER_STATISTICS
5323 fprintf (stderr, "Kind Nodes Bytes\n");
5324 fprintf (stderr, "-------------------------------------\n");
5325 total_nodes = total_bytes = 0;
5326 for (i = 0; i < (int) all_kinds; i++)
5328 fprintf (stderr, "%-20s %6d %9d\n", tree_node_kind_names[i],
5329 tree_node_counts[i], tree_node_sizes[i]);
5330 total_nodes += tree_node_counts[i];
5331 total_bytes += tree_node_sizes[i];
5333 fprintf (stderr, "%-20s %9d\n", "identifier names", id_string_size);
5334 fprintf (stderr, "-------------------------------------\n");
5335 fprintf (stderr, "%-20s %6d %9d\n", "Total", total_nodes, total_bytes);
5336 fprintf (stderr, "-------------------------------------\n");
5337 #else
5338 fprintf (stderr, "(No per-node statistics)\n");
5339 #endif
5340 print_obstack_statistics ("permanent_obstack", &permanent_obstack);
5341 print_obstack_statistics ("maybepermanent_obstack", &maybepermanent_obstack);
5342 print_obstack_statistics ("temporary_obstack", &temporary_obstack);
5343 print_obstack_statistics ("momentary_obstack", &momentary_obstack);
5344 print_obstack_statistics ("temp_decl_obstack", &temp_decl_obstack);
5345 print_type_hash_statistics ();
5346 print_lang_statistics ();
5349 #define FILE_FUNCTION_PREFIX_LEN 9
5351 #ifndef NO_DOLLAR_IN_LABEL
5352 #define FILE_FUNCTION_FORMAT "_GLOBAL_$%s$%s"
5353 #else /* NO_DOLLAR_IN_LABEL */
5354 #ifndef NO_DOT_IN_LABEL
5355 #define FILE_FUNCTION_FORMAT "_GLOBAL_.%s.%s"
5356 #else /* NO_DOT_IN_LABEL */
5357 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
5358 #endif /* NO_DOT_IN_LABEL */
5359 #endif /* NO_DOLLAR_IN_LABEL */
5361 /* Appends 6 random characters to TEMPLATE to (hopefully) avoid name
5362 clashes in cases where we can't reliably choose a unique name.
5364 Derived from mkstemp.c in libiberty. */
5366 static void
5367 append_random_chars (template)
5368 char *template;
5370 static const char letters[]
5371 = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
5372 static unsigned HOST_WIDE_INT value;
5373 unsigned HOST_WIDE_INT v;
5375 #ifdef HAVE_GETTIMEOFDAY
5376 struct timeval tv;
5377 #endif
5379 template += strlen (template);
5381 #ifdef HAVE_GETTIMEOFDAY
5382 /* Get some more or less random data. */
5383 gettimeofday (&tv, NULL);
5384 value += ((unsigned HOST_WIDE_INT) tv.tv_usec << 16) ^ tv.tv_sec ^ getpid ();
5385 #else
5386 value += getpid ();
5387 #endif
5389 v = value;
5391 /* Fill in the random bits. */
5392 template[0] = letters[v % 62];
5393 v /= 62;
5394 template[1] = letters[v % 62];
5395 v /= 62;
5396 template[2] = letters[v % 62];
5397 v /= 62;
5398 template[3] = letters[v % 62];
5399 v /= 62;
5400 template[4] = letters[v % 62];
5401 v /= 62;
5402 template[5] = letters[v % 62];
5404 template[6] = '\0';
5407 /* Generate a name for a function unique to this translation unit.
5408 TYPE is some string to identify the purpose of this function to the
5409 linker or collect2. */
5411 tree
5412 get_file_function_name_long (type)
5413 const char *type;
5415 char *buf;
5416 const char *p;
5417 char *q;
5419 if (first_global_object_name)
5420 p = first_global_object_name;
5421 else
5423 /* We don't have anything that we know to be unique to this translation
5424 unit, so use what we do have and throw in some randomness. */
5426 const char *name = weak_global_object_name;
5427 const char *file = main_input_filename;
5429 if (! name)
5430 name = "";
5431 if (! file)
5432 file = input_filename;
5434 q = (char *) alloca (7 + strlen (name) + strlen (file));
5436 sprintf (q, "%s%s", name, file);
5437 append_random_chars (q);
5438 p = q;
5441 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
5442 + strlen (type));
5444 /* Set up the name of the file-level functions we may need.
5445 Use a global object (which is already required to be unique over
5446 the program) rather than the file name (which imposes extra
5447 constraints). */
5448 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
5450 /* Don't need to pull weird characters out of global names. */
5451 if (p != first_global_object_name)
5453 for (q = buf+11; *q; q++)
5454 if (! ( ISDIGIT(*q)
5455 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
5456 || *q == '$'
5457 #endif
5458 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
5459 || *q == '.'
5460 #endif
5461 || ISUPPER(*q)
5462 || ISLOWER(*q)))
5463 *q = '_';
5466 return get_identifier (buf);
5469 /* If KIND=='I', return a suitable global initializer (constructor) name.
5470 If KIND=='D', return a suitable global clean-up (destructor) name. */
5472 tree
5473 get_file_function_name (kind)
5474 int kind;
5476 char p[2];
5478 p[0] = kind;
5479 p[1] = 0;
5481 return get_file_function_name_long (p);
5484 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
5485 The result is placed in BUFFER (which has length BIT_SIZE),
5486 with one bit in each char ('\000' or '\001').
5488 If the constructor is constant, NULL_TREE is returned.
5489 Otherwise, a TREE_LIST of the non-constant elements is emitted. */
5491 tree
5492 get_set_constructor_bits (init, buffer, bit_size)
5493 tree init;
5494 char *buffer;
5495 int bit_size;
5497 int i;
5498 tree vals;
5499 HOST_WIDE_INT domain_min
5500 = TREE_INT_CST_LOW (TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (init))));
5501 tree non_const_bits = NULL_TREE;
5502 for (i = 0; i < bit_size; i++)
5503 buffer[i] = 0;
5505 for (vals = TREE_OPERAND (init, 1);
5506 vals != NULL_TREE; vals = TREE_CHAIN (vals))
5508 if (TREE_CODE (TREE_VALUE (vals)) != INTEGER_CST
5509 || (TREE_PURPOSE (vals) != NULL_TREE
5510 && TREE_CODE (TREE_PURPOSE (vals)) != INTEGER_CST))
5511 non_const_bits
5512 = tree_cons (TREE_PURPOSE (vals), TREE_VALUE (vals), non_const_bits);
5513 else if (TREE_PURPOSE (vals) != NULL_TREE)
5515 /* Set a range of bits to ones. */
5516 HOST_WIDE_INT lo_index
5517 = TREE_INT_CST_LOW (TREE_PURPOSE (vals)) - domain_min;
5518 HOST_WIDE_INT hi_index
5519 = TREE_INT_CST_LOW (TREE_VALUE (vals)) - domain_min;
5521 if (lo_index < 0 || lo_index >= bit_size
5522 || hi_index < 0 || hi_index >= bit_size)
5523 abort ();
5524 for ( ; lo_index <= hi_index; lo_index++)
5525 buffer[lo_index] = 1;
5527 else
5529 /* Set a single bit to one. */
5530 HOST_WIDE_INT index
5531 = TREE_INT_CST_LOW (TREE_VALUE (vals)) - domain_min;
5532 if (index < 0 || index >= bit_size)
5534 error ("invalid initializer for bit string");
5535 return NULL_TREE;
5537 buffer[index] = 1;
5540 return non_const_bits;
5543 /* Expand (the constant part of) a SET_TYPE CONSTRUCTOR node.
5544 The result is placed in BUFFER (which is an array of bytes).
5545 If the constructor is constant, NULL_TREE is returned.
5546 Otherwise, a TREE_LIST of the non-constant elements is emitted. */
5548 tree
5549 get_set_constructor_bytes (init, buffer, wd_size)
5550 tree init;
5551 unsigned char *buffer;
5552 int wd_size;
5554 int i;
5555 int set_word_size = BITS_PER_UNIT;
5556 int bit_size = wd_size * set_word_size;
5557 int bit_pos = 0;
5558 unsigned char *bytep = buffer;
5559 char *bit_buffer = (char *) alloca(bit_size);
5560 tree non_const_bits = get_set_constructor_bits (init, bit_buffer, bit_size);
5562 for (i = 0; i < wd_size; i++)
5563 buffer[i] = 0;
5565 for (i = 0; i < bit_size; i++)
5567 if (bit_buffer[i])
5569 if (BYTES_BIG_ENDIAN)
5570 *bytep |= (1 << (set_word_size - 1 - bit_pos));
5571 else
5572 *bytep |= 1 << bit_pos;
5574 bit_pos++;
5575 if (bit_pos >= set_word_size)
5576 bit_pos = 0, bytep++;
5578 return non_const_bits;
5581 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
5582 /* Complain that the tree code of NODE does not match the expected CODE.
5583 FILE, LINE, and FUNCTION are of the caller. */
5584 void
5585 tree_check_failed (node, code, file, line, function)
5586 const tree node;
5587 enum tree_code code;
5588 const char *file;
5589 int line;
5590 const char *function;
5592 error ("Tree check: expected %s, have %s",
5593 tree_code_name[code], tree_code_name[TREE_CODE (node)]);
5594 fancy_abort (file, line, function);
5597 /* Similar to above, except that we check for a class of tree
5598 code, given in CL. */
5599 void
5600 tree_class_check_failed (node, cl, file, line, function)
5601 const tree node;
5602 int cl;
5603 const char *file;
5604 int line;
5605 const char *function;
5607 error ("Tree check: expected class '%c', have '%c' (%s)",
5608 cl, TREE_CODE_CLASS (TREE_CODE (node)),
5609 tree_code_name[TREE_CODE (node)]);
5610 fancy_abort (file, line, function);
5613 #endif /* ENABLE_TREE_CHECKING */
5616 /* For a new vector type node T, build the information necessary for
5617 debuggint output. */
5618 static void
5619 finish_vector_type (t)
5620 tree t;
5622 layout_type (t);
5625 tree index = build_int_2 (TYPE_VECTOR_SUBPARTS (t) - 1, 0);
5626 tree array = build_array_type (TREE_TYPE (t),
5627 build_index_type (index));
5628 tree rt = make_node (RECORD_TYPE);
5630 TYPE_FIELDS (rt) = build_decl (FIELD_DECL, get_identifier ("f"), array);
5631 DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
5632 layout_type (rt);
5633 TYPE_DEBUG_REPRESENTATION_TYPE (t) = rt;
5634 /* In dwarfout.c, type lookup uses TYPE_UID numbers. We want to output
5635 the representation type, and we want to find that die when looking up
5636 the vector type. This is most easily achieved by making the TYPE_UID
5637 numbers equal. */
5638 TYPE_UID (rt) = TYPE_UID (t);
5642 #ifndef CHAR_TYPE_SIZE
5643 #define CHAR_TYPE_SIZE BITS_PER_UNIT
5644 #endif
5646 #ifndef SHORT_TYPE_SIZE
5647 #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
5648 #endif
5650 #ifndef INT_TYPE_SIZE
5651 #define INT_TYPE_SIZE BITS_PER_WORD
5652 #endif
5654 #ifndef LONG_TYPE_SIZE
5655 #define LONG_TYPE_SIZE BITS_PER_WORD
5656 #endif
5658 #ifndef LONG_LONG_TYPE_SIZE
5659 #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
5660 #endif
5662 #ifndef FLOAT_TYPE_SIZE
5663 #define FLOAT_TYPE_SIZE BITS_PER_WORD
5664 #endif
5666 #ifndef DOUBLE_TYPE_SIZE
5667 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
5668 #endif
5670 #ifndef LONG_DOUBLE_TYPE_SIZE
5671 #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
5672 #endif
5674 /* Create nodes for all integer types (and error_mark_node) using the sizes
5675 of C datatypes. The caller should call set_sizetype soon after calling
5676 this function to select one of the types as sizetype. */
5678 void
5679 build_common_tree_nodes (signed_char)
5680 int signed_char;
5682 error_mark_node = make_node (ERROR_MARK);
5683 TREE_TYPE (error_mark_node) = error_mark_node;
5685 initialize_sizetypes ();
5687 /* Define both `signed char' and `unsigned char'. */
5688 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
5689 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
5691 /* Define `char', which is like either `signed char' or `unsigned char'
5692 but not the same as either. */
5693 char_type_node
5694 = (signed_char
5695 ? make_signed_type (CHAR_TYPE_SIZE)
5696 : make_unsigned_type (CHAR_TYPE_SIZE));
5698 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
5699 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
5700 integer_type_node = make_signed_type (INT_TYPE_SIZE);
5701 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
5702 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
5703 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
5704 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
5705 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
5707 intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
5708 intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
5709 intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
5710 intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
5711 #if HOST_BITS_PER_WIDE_INT >= 64
5712 intTI_type_node = make_signed_type (GET_MODE_BITSIZE (TImode));
5713 #endif
5715 unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
5716 unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
5717 unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
5718 unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
5719 #if HOST_BITS_PER_WIDE_INT >= 64
5720 unsigned_intTI_type_node = make_unsigned_type (GET_MODE_BITSIZE (TImode));
5721 #endif
5724 /* Call this function after calling build_common_tree_nodes and set_sizetype.
5725 It will create several other common tree nodes. */
5727 void
5728 build_common_tree_nodes_2 (short_double)
5729 int short_double;
5731 /* Define these next since types below may used them. */
5732 integer_zero_node = build_int_2 (0, 0);
5733 integer_one_node = build_int_2 (1, 0);
5735 size_zero_node = size_int (0);
5736 size_one_node = size_int (1);
5737 bitsize_zero_node = bitsize_int (0);
5738 bitsize_one_node = bitsize_int (1);
5739 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
5741 void_type_node = make_node (VOID_TYPE);
5742 layout_type (void_type_node);
5744 /* We are not going to have real types in C with less than byte alignment,
5745 so we might as well not have any types that claim to have it. */
5746 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
5747 TYPE_USER_ALIGN (void_type_node) = 0;
5749 null_pointer_node = build_int_2 (0, 0);
5750 TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
5751 layout_type (TREE_TYPE (null_pointer_node));
5753 ptr_type_node = build_pointer_type (void_type_node);
5754 const_ptr_type_node
5755 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
5757 float_type_node = make_node (REAL_TYPE);
5758 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
5759 layout_type (float_type_node);
5761 double_type_node = make_node (REAL_TYPE);
5762 if (short_double)
5763 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
5764 else
5765 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
5766 layout_type (double_type_node);
5768 long_double_type_node = make_node (REAL_TYPE);
5769 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
5770 layout_type (long_double_type_node);
5772 complex_integer_type_node = make_node (COMPLEX_TYPE);
5773 TREE_TYPE (complex_integer_type_node) = integer_type_node;
5774 layout_type (complex_integer_type_node);
5776 complex_float_type_node = make_node (COMPLEX_TYPE);
5777 TREE_TYPE (complex_float_type_node) = float_type_node;
5778 layout_type (complex_float_type_node);
5780 complex_double_type_node = make_node (COMPLEX_TYPE);
5781 TREE_TYPE (complex_double_type_node) = double_type_node;
5782 layout_type (complex_double_type_node);
5784 complex_long_double_type_node = make_node (COMPLEX_TYPE);
5785 TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
5786 layout_type (complex_long_double_type_node);
5788 #ifdef BUILD_VA_LIST_TYPE
5789 BUILD_VA_LIST_TYPE(va_list_type_node);
5790 #else
5791 va_list_type_node = ptr_type_node;
5792 #endif
5794 V4SF_type_node = make_node (VECTOR_TYPE);
5795 TREE_TYPE (V4SF_type_node) = float_type_node;
5796 TYPE_MODE (V4SF_type_node) = V4SFmode;
5797 finish_vector_type (V4SF_type_node);
5799 V4SI_type_node = make_node (VECTOR_TYPE);
5800 TREE_TYPE (V4SI_type_node) = intSI_type_node;
5801 TYPE_MODE (V4SI_type_node) = V4SImode;
5802 finish_vector_type (V4SI_type_node);
5804 V2SI_type_node = make_node (VECTOR_TYPE);
5805 TREE_TYPE (V2SI_type_node) = intSI_type_node;
5806 TYPE_MODE (V2SI_type_node) = V2SImode;
5807 finish_vector_type (V2SI_type_node);
5809 V4HI_type_node = make_node (VECTOR_TYPE);
5810 TREE_TYPE (V4HI_type_node) = intHI_type_node;
5811 TYPE_MODE (V4HI_type_node) = V4HImode;
5812 finish_vector_type (V4HI_type_node);
5814 V8QI_type_node = make_node (VECTOR_TYPE);
5815 TREE_TYPE (V8QI_type_node) = intQI_type_node;
5816 TYPE_MODE (V8QI_type_node) = V8QImode;
5817 finish_vector_type (V8QI_type_node);