* config/alpha/alpha.md, arm/arm.c, darwin.c, frv/frv.md,
[official-gcc.git] / gcc / tree-ssa-operands.c
blob9d4b84cc709a20ef94d4c6ac291c1ddc57fb2d8e
1 /* SSA operands management for trees.
2 Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to
18 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "flags.h"
27 #include "function.h"
28 #include "diagnostic.h"
29 #include "tree-flow.h"
30 #include "tree-inline.h"
31 #include "tree-pass.h"
32 #include "ggc.h"
33 #include "timevar.h"
34 #include "toplev.h"
35 #include "langhooks.h"
36 #include "ipa-reference.h"
38 /* This file contains the code required to manage the operands cache of the
39 SSA optimizer. For every stmt, we maintain an operand cache in the stmt
40 annotation. This cache contains operands that will be of interest to
41 optimizers and other passes wishing to manipulate the IL.
43 The operand type are broken up into REAL and VIRTUAL operands. The real
44 operands are represented as pointers into the stmt's operand tree. Thus
45 any manipulation of the real operands will be reflected in the actual tree.
46 Virtual operands are represented solely in the cache, although the base
47 variable for the SSA_NAME may, or may not occur in the stmt's tree.
48 Manipulation of the virtual operands will not be reflected in the stmt tree.
50 The routines in this file are concerned with creating this operand cache
51 from a stmt tree.
53 The operand tree is the parsed by the various get_* routines which look
54 through the stmt tree for the occurrence of operands which may be of
55 interest, and calls are made to the append_* routines whenever one is
56 found. There are 4 of these routines, each representing one of the
57 4 types of operands. Defs, Uses, Virtual Uses, and Virtual May Defs.
59 The append_* routines check for duplication, and simply keep a list of
60 unique objects for each operand type in the build_* extendable vectors.
62 Once the stmt tree is completely parsed, the finalize_ssa_operands()
63 routine is called, which proceeds to perform the finalization routine
64 on each of the 4 operand vectors which have been built up.
66 If the stmt had a previous operand cache, the finalization routines
67 attempt to match up the new operands with the old ones. If it's a perfect
68 match, the old vector is simply reused. If it isn't a perfect match, then
69 a new vector is created and the new operands are placed there. For
70 virtual operands, if the previous cache had SSA_NAME version of a
71 variable, and that same variable occurs in the same operands cache, then
72 the new cache vector will also get the same SSA_NAME.
74 i.e., if a stmt had a VUSE of 'a_5', and 'a' occurs in the new operand
75 vector for VUSE, then the new vector will also be modified such that
76 it contains 'a_5' rather than 'a'. */
79 /* Structure storing statistics on how many call clobbers we have, and
80 how many where avoided. */
82 static struct
84 /* Number of call-clobbered ops we attempt to add to calls in
85 add_call_clobbered_mem_symbols. */
86 unsigned int clobbered_vars;
88 /* Number of write-clobbers (VDEFs) avoided by using
89 not_written information. */
90 unsigned int static_write_clobbers_avoided;
92 /* Number of reads (VUSEs) avoided by using not_read information. */
93 unsigned int static_read_clobbers_avoided;
95 /* Number of write-clobbers avoided because the variable can't escape to
96 this call. */
97 unsigned int unescapable_clobbers_avoided;
99 /* Number of read-only uses we attempt to add to calls in
100 add_call_read_mem_symbols. */
101 unsigned int readonly_clobbers;
103 /* Number of read-only uses we avoid using not_read information. */
104 unsigned int static_readonly_clobbers_avoided;
105 } clobber_stats;
108 /* Flags to describe operand properties in helpers. */
110 /* By default, operands are loaded. */
111 #define opf_use 0
113 /* Operand is the target of an assignment expression or a
114 call-clobbered variable. */
115 #define opf_def (1 << 0)
117 /* No virtual operands should be created in the expression. This is used
118 when traversing ADDR_EXPR nodes which have different semantics than
119 other expressions. Inside an ADDR_EXPR node, the only operands that we
120 need to consider are indices into arrays. For instance, &a.b[i] should
121 generate a USE of 'i' but it should not generate a VUSE for 'a' nor a
122 VUSE for 'b'. */
123 #define opf_no_vops (1 << 1)
125 /* Operand is an implicit reference. This is used to distinguish
126 explicit assignments in the form of GIMPLE_MODIFY_STMT from
127 clobbering sites like function calls or ASM_EXPRs. */
128 #define opf_implicit (1 << 2)
130 /* Array for building all the def operands. */
131 static VEC(tree,heap) *build_defs;
133 /* Array for building all the use operands. */
134 static VEC(tree,heap) *build_uses;
136 /* Set for building all the VDEF operands. */
137 static VEC(tree,heap) *build_vdefs;
139 /* Set for building all the VUSE operands. */
140 static VEC(tree,heap) *build_vuses;
142 /* Bitmap obstack for our datastructures that needs to survive across
143 compilations of multiple functions. */
144 static bitmap_obstack operands_bitmap_obstack;
145 /* Set for building all the loaded symbols. */
146 static bitmap build_loads;
148 /* Set for building all the stored symbols. */
149 static bitmap build_stores;
151 static void get_expr_operands (tree, tree *, int);
153 /* Number of functions with initialized ssa_operands. */
154 static int n_initialized = 0;
156 /* Statement change buffer. Data structure used to record state
157 information for statements. This is used to determine what needs
158 to be done in order to update the SSA web after a statement is
159 modified by a pass. If STMT is a statement that has just been
160 created, or needs to be folded via fold_stmt, or anything that
161 changes its physical structure then the pass should:
163 1- Call push_stmt_changes (&stmt) to record the current state of
164 STMT before any modifications are made.
166 2- Make all appropriate modifications to the statement.
168 3- Call pop_stmt_changes (&stmt) to find new symbols that
169 need to be put in SSA form, SSA name mappings for names that
170 have disappeared, recompute invariantness for address
171 expressions, cleanup EH information, etc.
173 If it is possible to determine that the statement was not modified,
174 instead of calling pop_stmt_changes it is quicker to call
175 discard_stmt_changes to avoid the expensive and unnecessary operand
176 re-scan and change comparison. */
178 struct scb_d
180 /* Pointer to the statement being modified. */
181 tree *stmt_p;
183 /* If the statement references memory these are the sets of symbols
184 loaded and stored by the statement. */
185 bitmap loads;
186 bitmap stores;
189 typedef struct scb_d *scb_t;
190 DEF_VEC_P(scb_t);
191 DEF_VEC_ALLOC_P(scb_t,heap);
193 /* Stack of statement change buffers (SCB). Every call to
194 push_stmt_changes pushes a new buffer onto the stack. Calls to
195 pop_stmt_changes pop a buffer off of the stack and compute the set
196 of changes for the popped statement. */
197 static VEC(scb_t,heap) *scb_stack;
199 /* Return the DECL_UID of the base variable of T. */
201 static inline unsigned
202 get_name_decl (tree t)
204 if (TREE_CODE (t) != SSA_NAME)
205 return DECL_UID (t);
206 else
207 return DECL_UID (SSA_NAME_VAR (t));
211 /* Comparison function for qsort used in operand_build_sort_virtual. */
213 static int
214 operand_build_cmp (const void *p, const void *q)
216 tree e1 = *((const tree *)p);
217 tree e2 = *((const tree *)q);
218 unsigned int u1,u2;
220 u1 = get_name_decl (e1);
221 u2 = get_name_decl (e2);
223 /* We want to sort in ascending order. They can never be equal. */
224 #ifdef ENABLE_CHECKING
225 gcc_assert (u1 != u2);
226 #endif
227 return (u1 > u2 ? 1 : -1);
231 /* Sort the virtual operands in LIST from lowest DECL_UID to highest. */
233 static inline void
234 operand_build_sort_virtual (VEC(tree,heap) *list)
236 int num = VEC_length (tree, list);
238 if (num < 2)
239 return;
241 if (num == 2)
243 if (get_name_decl (VEC_index (tree, list, 0))
244 > get_name_decl (VEC_index (tree, list, 1)))
246 /* Swap elements if in the wrong order. */
247 tree tmp = VEC_index (tree, list, 0);
248 VEC_replace (tree, list, 0, VEC_index (tree, list, 1));
249 VEC_replace (tree, list, 1, tmp);
251 return;
254 /* There are 3 or more elements, call qsort. */
255 qsort (VEC_address (tree, list),
256 VEC_length (tree, list),
257 sizeof (tree),
258 operand_build_cmp);
262 /* Return true if the SSA operands cache is active. */
264 bool
265 ssa_operands_active (void)
267 return cfun->gimple_df && gimple_ssa_operands (cfun)->ops_active;
271 /* VOPs are of variable sized, so the free list maps "free buckets" to the
272 following table:
273 bucket # operands
274 ------ ----------
278 15 16
279 16 17-24
280 17 25-32
281 18 31-40
283 29 121-128
284 Any VOPs larger than this are simply added to the largest bucket when they
285 are freed. */
288 /* Return the number of operands used in bucket BUCKET. */
290 static inline int
291 vop_free_bucket_size (int bucket)
293 #ifdef ENABLE_CHECKING
294 gcc_assert (bucket >= 0 && bucket < NUM_VOP_FREE_BUCKETS);
295 #endif
296 if (bucket < 16)
297 return bucket + 1;
298 return (bucket - 13) * 8;
302 /* For a vop of NUM operands, return the bucket NUM belongs to. If NUM is
303 beyond the end of the bucket table, return -1. */
305 static inline int
306 vop_free_bucket_index (int num)
308 gcc_assert (num > 0);
310 /* Sizes 1 through 16 use buckets 0-15. */
311 if (num <= 16)
312 return num - 1;
313 /* Buckets 16 - 45 represent 17 through 256 in 8 unit chunks. */
314 if (num < 256)
315 return 14 + (num - 1) / 8;
316 return -1;
320 /* Initialize the VOP free buckets. */
322 static inline void
323 init_vop_buckets (void)
325 int x;
327 for (x = 0; x < NUM_VOP_FREE_BUCKETS; x++)
328 gimple_ssa_operands (cfun)->vop_free_buckets[x] = NULL;
332 /* Add PTR to the appropriate VOP bucket. */
334 static inline void
335 add_vop_to_freelist (voptype_p ptr)
337 int bucket = vop_free_bucket_index (VUSE_VECT_NUM_ELEM (ptr->usev));
339 /* Too large, use the largest bucket so its not a complete throw away. */
340 if (bucket == -1)
341 bucket = NUM_VOP_FREE_BUCKETS - 1;
343 ptr->next = gimple_ssa_operands (cfun)->vop_free_buckets[bucket];
344 gimple_ssa_operands (cfun)->vop_free_buckets[bucket] = ptr;
348 /* These are the sizes of the operand memory buffer which gets allocated each
349 time more operands space is required. The final value is the amount that is
350 allocated every time after that. */
352 #define OP_SIZE_INIT 0
353 #define OP_SIZE_1 30
354 #define OP_SIZE_2 110
355 #define OP_SIZE_3 511
357 /* Initialize the operand cache routines. */
359 void
360 init_ssa_operands (void)
362 if (!n_initialized++)
364 build_defs = VEC_alloc (tree, heap, 5);
365 build_uses = VEC_alloc (tree, heap, 10);
366 build_vuses = VEC_alloc (tree, heap, 25);
367 build_vdefs = VEC_alloc (tree, heap, 25);
368 bitmap_obstack_initialize (&operands_bitmap_obstack);
369 build_loads = BITMAP_ALLOC (&operands_bitmap_obstack);
370 build_stores = BITMAP_ALLOC (&operands_bitmap_obstack);
371 scb_stack = VEC_alloc (scb_t, heap, 20);
374 gcc_assert (gimple_ssa_operands (cfun)->operand_memory == NULL);
375 gcc_assert (gimple_ssa_operands (cfun)->mpt_table == NULL);
376 gimple_ssa_operands (cfun)->operand_memory_index
377 = gimple_ssa_operands (cfun)->ssa_operand_mem_size;
378 gimple_ssa_operands (cfun)->ops_active = true;
379 memset (&clobber_stats, 0, sizeof (clobber_stats));
380 init_vop_buckets ();
381 gimple_ssa_operands (cfun)->ssa_operand_mem_size = OP_SIZE_INIT;
385 /* Dispose of anything required by the operand routines. */
387 void
388 fini_ssa_operands (void)
390 struct ssa_operand_memory_d *ptr;
391 unsigned ix;
392 tree mpt;
394 if (!--n_initialized)
396 VEC_free (tree, heap, build_defs);
397 VEC_free (tree, heap, build_uses);
398 VEC_free (tree, heap, build_vdefs);
399 VEC_free (tree, heap, build_vuses);
400 BITMAP_FREE (build_loads);
401 BITMAP_FREE (build_stores);
403 /* The change buffer stack had better be empty. */
404 gcc_assert (VEC_length (scb_t, scb_stack) == 0);
405 VEC_free (scb_t, heap, scb_stack);
406 scb_stack = NULL;
409 gimple_ssa_operands (cfun)->free_defs = NULL;
410 gimple_ssa_operands (cfun)->free_uses = NULL;
412 while ((ptr = gimple_ssa_operands (cfun)->operand_memory) != NULL)
414 gimple_ssa_operands (cfun)->operand_memory
415 = gimple_ssa_operands (cfun)->operand_memory->next;
416 ggc_free (ptr);
419 for (ix = 0;
420 VEC_iterate (tree, gimple_ssa_operands (cfun)->mpt_table, ix, mpt);
421 ix++)
423 if (mpt)
424 BITMAP_FREE (MPT_SYMBOLS (mpt));
427 VEC_free (tree, heap, gimple_ssa_operands (cfun)->mpt_table);
429 gimple_ssa_operands (cfun)->ops_active = false;
431 if (!n_initialized)
432 bitmap_obstack_release (&operands_bitmap_obstack);
433 if (dump_file && (dump_flags & TDF_STATS))
435 fprintf (dump_file, "Original clobbered vars: %d\n",
436 clobber_stats.clobbered_vars);
437 fprintf (dump_file, "Static write clobbers avoided: %d\n",
438 clobber_stats.static_write_clobbers_avoided);
439 fprintf (dump_file, "Static read clobbers avoided: %d\n",
440 clobber_stats.static_read_clobbers_avoided);
441 fprintf (dump_file, "Unescapable clobbers avoided: %d\n",
442 clobber_stats.unescapable_clobbers_avoided);
443 fprintf (dump_file, "Original read-only clobbers: %d\n",
444 clobber_stats.readonly_clobbers);
445 fprintf (dump_file, "Static read-only clobbers avoided: %d\n",
446 clobber_stats.static_readonly_clobbers_avoided);
451 /* Return memory for operands of SIZE chunks. */
453 static inline void *
454 ssa_operand_alloc (unsigned size)
456 char *ptr;
458 if (gimple_ssa_operands (cfun)->operand_memory_index + size
459 >= gimple_ssa_operands (cfun)->ssa_operand_mem_size)
461 struct ssa_operand_memory_d *ptr;
463 if (gimple_ssa_operands (cfun)->ssa_operand_mem_size == OP_SIZE_INIT)
464 gimple_ssa_operands (cfun)->ssa_operand_mem_size
465 = OP_SIZE_1 * sizeof (struct voptype_d);
466 else
467 if (gimple_ssa_operands (cfun)->ssa_operand_mem_size
468 == OP_SIZE_1 * sizeof (struct voptype_d))
469 gimple_ssa_operands (cfun)->ssa_operand_mem_size
470 = OP_SIZE_2 * sizeof (struct voptype_d);
471 else
472 gimple_ssa_operands (cfun)->ssa_operand_mem_size
473 = OP_SIZE_3 * sizeof (struct voptype_d);
475 /* Go right to the maximum size if the request is too large. */
476 if (size > gimple_ssa_operands (cfun)->ssa_operand_mem_size)
477 gimple_ssa_operands (cfun)->ssa_operand_mem_size
478 = OP_SIZE_3 * sizeof (struct voptype_d);
480 /* Fail if there is not enough space. If there are this many operands
481 required, first make sure there isn't a different problem causing this
482 many operands. If the decision is that this is OK, then we can
483 specially allocate a buffer just for this request. */
484 gcc_assert (size <= gimple_ssa_operands (cfun)->ssa_operand_mem_size);
486 ptr = (struct ssa_operand_memory_d *)
487 ggc_alloc (sizeof (struct ssa_operand_memory_d)
488 + gimple_ssa_operands (cfun)->ssa_operand_mem_size - 1);
489 ptr->next = gimple_ssa_operands (cfun)->operand_memory;
490 gimple_ssa_operands (cfun)->operand_memory = ptr;
491 gimple_ssa_operands (cfun)->operand_memory_index = 0;
493 ptr = &(gimple_ssa_operands (cfun)->operand_memory
494 ->mem[gimple_ssa_operands (cfun)->operand_memory_index]);
495 gimple_ssa_operands (cfun)->operand_memory_index += size;
496 return ptr;
500 /* Allocate a DEF operand. */
502 static inline struct def_optype_d *
503 alloc_def (void)
505 struct def_optype_d *ret;
506 if (gimple_ssa_operands (cfun)->free_defs)
508 ret = gimple_ssa_operands (cfun)->free_defs;
509 gimple_ssa_operands (cfun)->free_defs
510 = gimple_ssa_operands (cfun)->free_defs->next;
512 else
513 ret = (struct def_optype_d *)
514 ssa_operand_alloc (sizeof (struct def_optype_d));
515 return ret;
519 /* Allocate a USE operand. */
521 static inline struct use_optype_d *
522 alloc_use (void)
524 struct use_optype_d *ret;
525 if (gimple_ssa_operands (cfun)->free_uses)
527 ret = gimple_ssa_operands (cfun)->free_uses;
528 gimple_ssa_operands (cfun)->free_uses
529 = gimple_ssa_operands (cfun)->free_uses->next;
531 else
532 ret = (struct use_optype_d *)
533 ssa_operand_alloc (sizeof (struct use_optype_d));
534 return ret;
538 /* Allocate a vop with NUM elements. */
540 static inline struct voptype_d *
541 alloc_vop (int num)
543 struct voptype_d *ret = NULL;
544 int alloc_size = 0;
546 int bucket = vop_free_bucket_index (num);
547 if (bucket != -1)
549 /* If there is a free operand, use it. */
550 if (gimple_ssa_operands (cfun)->vop_free_buckets[bucket] != NULL)
552 ret = gimple_ssa_operands (cfun)->vop_free_buckets[bucket];
553 gimple_ssa_operands (cfun)->vop_free_buckets[bucket] =
554 gimple_ssa_operands (cfun)->vop_free_buckets[bucket]->next;
556 else
557 alloc_size = vop_free_bucket_size(bucket);
559 else
560 alloc_size = num;
562 if (alloc_size > 0)
563 ret = (struct voptype_d *)ssa_operand_alloc (
564 sizeof (struct voptype_d) + (alloc_size - 1) * sizeof (vuse_element_t));
566 VUSE_VECT_NUM_ELEM (ret->usev) = num;
567 return ret;
571 /* This routine makes sure that PTR is in an immediate use list, and makes
572 sure the stmt pointer is set to the current stmt. */
574 static inline void
575 set_virtual_use_link (use_operand_p ptr, tree stmt)
577 /* fold_stmt may have changed the stmt pointers. */
578 if (ptr->stmt != stmt)
579 ptr->stmt = stmt;
581 /* If this use isn't in a list, add it to the correct list. */
582 if (!ptr->prev)
583 link_imm_use (ptr, *(ptr->use));
587 /* Adds OP to the list of defs after LAST. */
589 static inline def_optype_p
590 add_def_op (tree *op, def_optype_p last)
592 def_optype_p new;
594 new = alloc_def ();
595 DEF_OP_PTR (new) = op;
596 last->next = new;
597 new->next = NULL;
598 return new;
602 /* Adds OP to the list of uses of statement STMT after LAST. */
604 static inline use_optype_p
605 add_use_op (tree stmt, tree *op, use_optype_p last)
607 use_optype_p new;
609 new = alloc_use ();
610 USE_OP_PTR (new)->use = op;
611 link_imm_use_stmt (USE_OP_PTR (new), *op, stmt);
612 last->next = new;
613 new->next = NULL;
614 return new;
618 /* Return a virtual op pointer with NUM elements which are all initialized to OP
619 and are linked into the immediate uses for STMT. The new vop is appended
620 after PREV. */
622 static inline voptype_p
623 add_vop (tree stmt, tree op, int num, voptype_p prev)
625 voptype_p new;
626 int x;
628 new = alloc_vop (num);
629 for (x = 0; x < num; x++)
631 VUSE_OP_PTR (new, x)->prev = NULL;
632 SET_VUSE_OP (new, x, op);
633 VUSE_OP_PTR (new, x)->use = &new->usev.uses[x].use_var;
634 link_imm_use_stmt (VUSE_OP_PTR (new, x), new->usev.uses[x].use_var, stmt);
637 if (prev)
638 prev->next = new;
639 new->next = NULL;
640 return new;
644 /* Adds OP to the list of vuses of statement STMT after LAST, and moves
645 LAST to the new element. */
647 static inline voptype_p
648 add_vuse_op (tree stmt, tree op, int num, voptype_p last)
650 voptype_p new = add_vop (stmt, op, num, last);
651 VDEF_RESULT (new) = NULL_TREE;
652 return new;
656 /* Adds OP to the list of vdefs of statement STMT after LAST, and moves
657 LAST to the new element. */
659 static inline voptype_p
660 add_vdef_op (tree stmt, tree op, int num, voptype_p last)
662 voptype_p new = add_vop (stmt, op, num, last);
663 VDEF_RESULT (new) = op;
664 return new;
668 /* Reallocate the virtual operand PTR so that it has NUM_ELEM use slots. ROOT
669 is the head of the operand list it belongs to. */
671 static inline struct voptype_d *
672 realloc_vop (struct voptype_d *ptr, int num_elem, struct voptype_d **root)
674 int x, lim;
675 tree stmt, val;
676 struct voptype_d *ret, *tmp;
678 if (VUSE_VECT_NUM_ELEM (ptr->usev) == num_elem)
679 return ptr;
681 val = VUSE_OP (ptr, 0);
682 if (TREE_CODE (val) == SSA_NAME)
683 val = SSA_NAME_VAR (val);
685 stmt = USE_STMT (VUSE_OP_PTR (ptr, 0));
687 /* Delink all the existing uses. */
688 for (x = 0; x < VUSE_VECT_NUM_ELEM (ptr->usev); x++)
690 use_operand_p use_p = VUSE_OP_PTR (ptr, x);
691 delink_imm_use (use_p);
694 /* If we want less space, simply use this one, and shrink the size. */
695 if (VUSE_VECT_NUM_ELEM (ptr->usev) > num_elem)
697 VUSE_VECT_NUM_ELEM (ptr->usev) = num_elem;
698 return ptr;
701 /* It is growing. Allocate a new one and replace the old one. */
702 ret = add_vuse_op (stmt, val, num_elem, ptr);
704 /* Clear PTR and add its memory to the free list. */
705 lim = VUSE_VECT_NUM_ELEM (ptr->usev);
706 memset (ptr, 0,
707 sizeof (struct voptype_d) + sizeof (vuse_element_t) * (lim- 1));
708 add_vop_to_freelist (ptr);
710 /* Now simply remove the old one. */
711 if (*root == ptr)
713 *root = ret;
714 return ret;
716 else
717 for (tmp = *root;
718 tmp != NULL && tmp->next != ptr;
719 tmp = tmp->next)
721 tmp->next = ret;
722 return ret;
725 /* The pointer passed in isn't in STMT's VDEF lists. */
726 gcc_unreachable ();
730 /* Reallocate the PTR vdef so that it has NUM_ELEM use slots. */
732 struct voptype_d *
733 realloc_vdef (struct voptype_d *ptr, int num_elem)
735 tree val, stmt;
736 struct voptype_d *ret;
738 val = VDEF_RESULT (ptr);
739 stmt = USE_STMT (VDEF_OP_PTR (ptr, 0));
740 ret = realloc_vop (ptr, num_elem, &(VDEF_OPS (stmt)));
741 VDEF_RESULT (ret) = val;
742 return ret;
746 /* Reallocate the PTR vuse so that it has NUM_ELEM use slots. */
748 struct voptype_d *
749 realloc_vuse (struct voptype_d *ptr, int num_elem)
751 tree stmt;
752 struct voptype_d *ret;
754 stmt = USE_STMT (VUSE_OP_PTR (ptr, 0));
755 ret = realloc_vop (ptr, num_elem, &(VUSE_OPS (stmt)));
756 return ret;
760 /* Takes elements from build_defs and turns them into def operands of STMT.
761 TODO -- Make build_defs VEC of tree *. */
763 static inline void
764 finalize_ssa_defs (tree stmt)
766 unsigned new_i;
767 struct def_optype_d new_list;
768 def_optype_p old_ops, last;
769 unsigned int num = VEC_length (tree, build_defs);
771 /* There should only be a single real definition per assignment. */
772 gcc_assert ((stmt && TREE_CODE (stmt) != GIMPLE_MODIFY_STMT) || num <= 1);
774 new_list.next = NULL;
775 last = &new_list;
777 old_ops = DEF_OPS (stmt);
779 new_i = 0;
781 /* Check for the common case of 1 def that hasn't changed. */
782 if (old_ops && old_ops->next == NULL && num == 1
783 && (tree *) VEC_index (tree, build_defs, 0) == DEF_OP_PTR (old_ops))
784 return;
786 /* If there is anything in the old list, free it. */
787 if (old_ops)
789 old_ops->next = gimple_ssa_operands (cfun)->free_defs;
790 gimple_ssa_operands (cfun)->free_defs = old_ops;
793 /* If there is anything remaining in the build_defs list, simply emit it. */
794 for ( ; new_i < num; new_i++)
795 last = add_def_op ((tree *) VEC_index (tree, build_defs, new_i), last);
797 /* Now set the stmt's operands. */
798 DEF_OPS (stmt) = new_list.next;
800 #ifdef ENABLE_CHECKING
802 def_optype_p ptr;
803 unsigned x = 0;
804 for (ptr = DEF_OPS (stmt); ptr; ptr = ptr->next)
805 x++;
807 gcc_assert (x == num);
809 #endif
813 /* Takes elements from build_uses and turns them into use operands of STMT.
814 TODO -- Make build_uses VEC of tree *. */
816 static inline void
817 finalize_ssa_uses (tree stmt)
819 unsigned new_i;
820 struct use_optype_d new_list;
821 use_optype_p old_ops, ptr, last;
823 #ifdef ENABLE_CHECKING
825 unsigned x;
826 unsigned num = VEC_length (tree, build_uses);
828 /* If the pointer to the operand is the statement itself, something is
829 wrong. It means that we are pointing to a local variable (the
830 initial call to update_stmt_operands does not pass a pointer to a
831 statement). */
832 for (x = 0; x < num; x++)
833 gcc_assert (*((tree *)VEC_index (tree, build_uses, x)) != stmt);
835 #endif
837 new_list.next = NULL;
838 last = &new_list;
840 old_ops = USE_OPS (stmt);
842 /* If there is anything in the old list, free it. */
843 if (old_ops)
845 for (ptr = old_ops; ptr; ptr = ptr->next)
846 delink_imm_use (USE_OP_PTR (ptr));
847 old_ops->next = gimple_ssa_operands (cfun)->free_uses;
848 gimple_ssa_operands (cfun)->free_uses = old_ops;
851 /* Now create nodes for all the new nodes. */
852 for (new_i = 0; new_i < VEC_length (tree, build_uses); new_i++)
853 last = add_use_op (stmt,
854 (tree *) VEC_index (tree, build_uses, new_i),
855 last);
857 /* Now set the stmt's operands. */
858 USE_OPS (stmt) = new_list.next;
860 #ifdef ENABLE_CHECKING
862 unsigned x = 0;
863 for (ptr = USE_OPS (stmt); ptr; ptr = ptr->next)
864 x++;
866 gcc_assert (x == VEC_length (tree, build_uses));
868 #endif
872 /* Takes elements from BUILD_VDEFS and turns them into vdef operands of
873 STMT. FIXME, for now VDEF operators should have a single operand
874 in their RHS. */
876 static inline void
877 finalize_ssa_vdefs (tree stmt)
879 unsigned new_i;
880 struct voptype_d new_list;
881 voptype_p old_ops, ptr, last;
882 stmt_ann_t ann = stmt_ann (stmt);
884 /* Set the symbols referenced by STMT. */
885 if (!bitmap_empty_p (build_stores))
887 if (ann->operands.stores == NULL)
888 ann->operands.stores = BITMAP_ALLOC (&operands_bitmap_obstack);
890 bitmap_copy (ann->operands.stores, build_stores);
892 else
893 BITMAP_FREE (ann->operands.stores);
895 /* If aliases have not been computed, do not instantiate a virtual
896 operator on STMT. Initially, we only compute the SSA form on
897 GIMPLE registers. The virtual SSA form is only computed after
898 alias analysis, so virtual operators will remain unrenamed and
899 the verifier will complain. However, alias analysis needs to
900 access symbol load/store information, so we need to compute
901 those. */
902 if (!gimple_aliases_computed_p (cfun))
903 return;
905 new_list.next = NULL;
906 last = &new_list;
908 old_ops = VDEF_OPS (stmt);
909 new_i = 0;
910 while (old_ops && new_i < VEC_length (tree, build_vdefs))
912 tree op = VEC_index (tree, build_vdefs, new_i);
913 unsigned new_uid = get_name_decl (op);
914 unsigned old_uid = get_name_decl (VDEF_RESULT (old_ops));
916 /* FIXME, for now each VDEF operator should have at most one
917 operand in their RHS. */
918 gcc_assert (VDEF_NUM (old_ops) == 1);
920 if (old_uid == new_uid)
922 /* If the symbols are the same, reuse the existing operand. */
923 last->next = old_ops;
924 last = old_ops;
925 old_ops = old_ops->next;
926 last->next = NULL;
927 set_virtual_use_link (VDEF_OP_PTR (last, 0), stmt);
928 new_i++;
930 else if (old_uid < new_uid)
932 /* If old is less than new, old goes to the free list. */
933 voptype_p next;
934 delink_imm_use (VDEF_OP_PTR (old_ops, 0));
935 next = old_ops->next;
936 add_vop_to_freelist (old_ops);
937 old_ops = next;
939 else
941 /* This is a new operand. */
942 last = add_vdef_op (stmt, op, 1, last);
943 new_i++;
947 /* If there is anything remaining in BUILD_VDEFS, simply emit it. */
948 for ( ; new_i < VEC_length (tree, build_vdefs); new_i++)
949 last = add_vdef_op (stmt, VEC_index (tree, build_vdefs, new_i), 1, last);
951 /* If there is anything in the old list, free it. */
952 if (old_ops)
954 for (ptr = old_ops; ptr; ptr = last)
956 last = ptr->next;
957 delink_imm_use (VDEF_OP_PTR (ptr, 0));
958 add_vop_to_freelist (ptr);
962 /* Now set STMT's operands. */
963 VDEF_OPS (stmt) = new_list.next;
965 #ifdef ENABLE_CHECKING
967 unsigned x = 0;
968 for (ptr = VDEF_OPS (stmt); ptr; ptr = ptr->next)
969 x++;
971 gcc_assert (x == VEC_length (tree, build_vdefs));
973 #endif
977 /* Takes elements from BUILD_VUSES and turns them into VUSE operands of
978 STMT. */
980 static inline void
981 finalize_ssa_vuse_ops (tree stmt)
983 unsigned new_i;
984 int old_i;
985 voptype_p old_ops, last;
986 VEC(tree,heap) *new_ops;
987 stmt_ann_t ann;
989 /* Set the symbols referenced by STMT. */
990 ann = stmt_ann (stmt);
991 if (!bitmap_empty_p (build_loads))
993 if (ann->operands.loads == NULL)
994 ann->operands.loads = BITMAP_ALLOC (&operands_bitmap_obstack);
996 bitmap_copy (ann->operands.loads, build_loads);
998 else
999 BITMAP_FREE (ann->operands.loads);
1001 /* If aliases have not been computed, do not instantiate a virtual
1002 operator on STMT. Initially, we only compute the SSA form on
1003 GIMPLE registers. The virtual SSA form is only computed after
1004 alias analysis, so virtual operators will remain unrenamed and
1005 the verifier will complain. However, alias analysis needs to
1006 access symbol load/store information, so we need to compute
1007 those. */
1008 if (!gimple_aliases_computed_p (cfun))
1009 return;
1011 /* STMT should have at most one VUSE operator. */
1012 old_ops = VUSE_OPS (stmt);
1013 gcc_assert (old_ops == NULL || old_ops->next == NULL);
1015 new_ops = NULL;
1016 new_i = old_i = 0;
1017 while (old_ops
1018 && old_i < VUSE_NUM (old_ops)
1019 && new_i < VEC_length (tree, build_vuses))
1021 tree new_op = VEC_index (tree, build_vuses, new_i);
1022 tree old_op = VUSE_OP (old_ops, old_i);
1023 unsigned new_uid = get_name_decl (new_op);
1024 unsigned old_uid = get_name_decl (old_op);
1026 if (old_uid == new_uid)
1028 /* If the symbols are the same, reuse the existing operand. */
1029 VEC_safe_push (tree, heap, new_ops, old_op);
1030 new_i++;
1031 old_i++;
1033 else if (old_uid < new_uid)
1035 /* If OLD_UID is less than NEW_UID, the old operand has
1036 disappeared, skip to the next old operand. */
1037 old_i++;
1039 else
1041 /* This is a new operand. */
1042 VEC_safe_push (tree, heap, new_ops, new_op);
1043 new_i++;
1047 /* If there is anything remaining in the build_vuses list, simply emit it. */
1048 for ( ; new_i < VEC_length (tree, build_vuses); new_i++)
1049 VEC_safe_push (tree, heap, new_ops, VEC_index (tree, build_vuses, new_i));
1051 /* If there is anything in the old list, free it. */
1052 if (old_ops)
1054 for (old_i = 0; old_i < VUSE_NUM (old_ops); old_i++)
1055 delink_imm_use (VUSE_OP_PTR (old_ops, old_i));
1056 add_vop_to_freelist (old_ops);
1057 VUSE_OPS (stmt) = NULL;
1060 /* If there are any operands, instantiate a VUSE operator for STMT. */
1061 if (new_ops)
1063 tree op;
1064 unsigned i;
1066 last = add_vuse_op (stmt, NULL, VEC_length (tree, new_ops), NULL);
1068 for (i = 0; VEC_iterate (tree, new_ops, i, op); i++)
1069 SET_USE (VUSE_OP_PTR (last, (int) i), op);
1071 VUSE_OPS (stmt) = last;
1074 #ifdef ENABLE_CHECKING
1076 unsigned x;
1078 if (VUSE_OPS (stmt))
1080 gcc_assert (VUSE_OPS (stmt)->next == NULL);
1081 x = VUSE_NUM (VUSE_OPS (stmt));
1083 else
1084 x = 0;
1086 gcc_assert (x == VEC_length (tree, build_vuses));
1088 #endif
1091 /* Return a new VUSE operand vector for STMT. */
1093 static void
1094 finalize_ssa_vuses (tree stmt)
1096 unsigned num, num_vdefs;
1097 unsigned vuse_index;
1099 /* Remove superfluous VUSE operands. If the statement already has a
1100 VDEF operator for a variable 'a', then a VUSE for 'a' is not
1101 needed because VDEFs imply a VUSE of the variable. For instance,
1102 suppose that variable 'a' is pointed-to by p and q:
1104 # VUSE <a_2>
1105 # a_3 = VDEF <a_2>
1106 *p = *q;
1108 The VUSE <a_2> is superfluous because it is implied by the
1109 VDEF operator. */
1110 num = VEC_length (tree, build_vuses);
1111 num_vdefs = VEC_length (tree, build_vdefs);
1113 if (num > 0 && num_vdefs > 0)
1114 for (vuse_index = 0; vuse_index < VEC_length (tree, build_vuses); )
1116 tree vuse;
1117 vuse = VEC_index (tree, build_vuses, vuse_index);
1118 if (TREE_CODE (vuse) != SSA_NAME)
1120 var_ann_t ann = var_ann (vuse);
1121 ann->in_vuse_list = 0;
1122 if (ann->in_vdef_list)
1124 VEC_ordered_remove (tree, build_vuses, vuse_index);
1125 continue;
1128 vuse_index++;
1131 finalize_ssa_vuse_ops (stmt);
1135 /* Clear the in_list bits and empty the build array for VDEFs and
1136 VUSEs. */
1138 static inline void
1139 cleanup_build_arrays (void)
1141 unsigned i;
1142 tree t;
1144 for (i = 0; VEC_iterate (tree, build_vdefs, i, t); i++)
1145 if (TREE_CODE (t) != SSA_NAME)
1146 var_ann (t)->in_vdef_list = false;
1148 for (i = 0; VEC_iterate (tree, build_vuses, i, t); i++)
1149 if (TREE_CODE (t) != SSA_NAME)
1150 var_ann (t)->in_vuse_list = false;
1152 VEC_truncate (tree, build_vdefs, 0);
1153 VEC_truncate (tree, build_vuses, 0);
1154 VEC_truncate (tree, build_defs, 0);
1155 VEC_truncate (tree, build_uses, 0);
1156 bitmap_clear (build_loads);
1157 bitmap_clear (build_stores);
1161 /* Finalize all the build vectors, fill the new ones into INFO. */
1163 static inline void
1164 finalize_ssa_stmt_operands (tree stmt)
1166 finalize_ssa_defs (stmt);
1167 finalize_ssa_uses (stmt);
1168 finalize_ssa_vdefs (stmt);
1169 finalize_ssa_vuses (stmt);
1170 cleanup_build_arrays ();
1174 /* Start the process of building up operands vectors in INFO. */
1176 static inline void
1177 start_ssa_stmt_operands (void)
1179 gcc_assert (VEC_length (tree, build_defs) == 0);
1180 gcc_assert (VEC_length (tree, build_uses) == 0);
1181 gcc_assert (VEC_length (tree, build_vuses) == 0);
1182 gcc_assert (VEC_length (tree, build_vdefs) == 0);
1183 gcc_assert (bitmap_empty_p (build_loads));
1184 gcc_assert (bitmap_empty_p (build_stores));
1188 /* Add DEF_P to the list of pointers to operands. */
1190 static inline void
1191 append_def (tree *def_p)
1193 VEC_safe_push (tree, heap, build_defs, (tree) def_p);
1197 /* Add USE_P to the list of pointers to operands. */
1199 static inline void
1200 append_use (tree *use_p)
1202 VEC_safe_push (tree, heap, build_uses, (tree) use_p);
1206 /* Add VAR to the set of variables that require a VDEF operator. */
1208 static inline void
1209 append_vdef (tree var)
1211 tree sym;
1213 if (TREE_CODE (var) != SSA_NAME)
1215 tree mpt;
1216 var_ann_t ann;
1218 /* If VAR belongs to a memory partition, use it instead of VAR. */
1219 mpt = memory_partition (var);
1220 if (mpt)
1221 var = mpt;
1223 /* Don't allow duplicate entries. */
1224 ann = get_var_ann (var);
1225 if (ann->in_vdef_list)
1226 return;
1228 ann->in_vdef_list = true;
1229 sym = var;
1231 else
1232 sym = SSA_NAME_VAR (var);
1234 VEC_safe_push (tree, heap, build_vdefs, var);
1235 bitmap_set_bit (build_stores, DECL_UID (sym));
1239 /* Add VAR to the set of variables that require a VUSE operator. */
1241 static inline void
1242 append_vuse (tree var)
1244 tree sym;
1246 if (TREE_CODE (var) != SSA_NAME)
1248 tree mpt;
1249 var_ann_t ann;
1251 /* If VAR belongs to a memory partition, use it instead of VAR. */
1252 mpt = memory_partition (var);
1253 if (mpt)
1254 var = mpt;
1256 /* Don't allow duplicate entries. */
1257 ann = get_var_ann (var);
1258 if (ann->in_vuse_list || ann->in_vdef_list)
1259 return;
1261 ann->in_vuse_list = true;
1262 sym = var;
1264 else
1265 sym = SSA_NAME_VAR (var);
1267 VEC_safe_push (tree, heap, build_vuses, var);
1268 bitmap_set_bit (build_loads, DECL_UID (sym));
1272 /* REF is a tree that contains the entire pointer dereference
1273 expression, if available, or NULL otherwise. ALIAS is the variable
1274 we are asking if REF can access. OFFSET and SIZE come from the
1275 memory access expression that generated this virtual operand. */
1277 static bool
1278 access_can_touch_variable (tree ref, tree alias, HOST_WIDE_INT offset,
1279 HOST_WIDE_INT size)
1281 bool offsetgtz = offset > 0;
1282 unsigned HOST_WIDE_INT uoffset = (unsigned HOST_WIDE_INT) offset;
1283 tree base = ref ? get_base_address (ref) : NULL;
1285 /* If ALIAS is .GLOBAL_VAR then the memory reference REF must be
1286 using a call-clobbered memory tag. By definition, call-clobbered
1287 memory tags can always touch .GLOBAL_VAR. */
1288 if (alias == gimple_global_var (cfun))
1289 return true;
1291 /* If ALIAS is an SFT, it can't be touched if the offset
1292 and size of the access is not overlapping with the SFT offset and
1293 size. This is only true if we are accessing through a pointer
1294 to a type that is the same as SFT_PARENT_VAR. Otherwise, we may
1295 be accessing through a pointer to some substruct of the
1296 structure, and if we try to prune there, we will have the wrong
1297 offset, and get the wrong answer.
1298 i.e., we can't prune without more work if we have something like
1300 struct gcc_target
1302 struct asm_out
1304 const char *byte_op;
1305 struct asm_int_op
1307 const char *hi;
1308 } aligned_op;
1309 } asm_out;
1310 } targetm;
1312 foo = &targetm.asm_out.aligned_op;
1313 return foo->hi;
1315 SFT.1, which represents hi, will have SFT_OFFSET=32 because in
1316 terms of SFT_PARENT_VAR, that is where it is.
1317 However, the access through the foo pointer will be at offset 0. */
1318 if (size != -1
1319 && TREE_CODE (alias) == STRUCT_FIELD_TAG
1320 && base
1321 && TREE_TYPE (base) == TREE_TYPE (SFT_PARENT_VAR (alias))
1322 && !overlap_subvar (offset, size, alias, NULL))
1324 #ifdef ACCESS_DEBUGGING
1325 fprintf (stderr, "Access to ");
1326 print_generic_expr (stderr, ref, 0);
1327 fprintf (stderr, " may not touch ");
1328 print_generic_expr (stderr, alias, 0);
1329 fprintf (stderr, " in function %s\n", get_name (current_function_decl));
1330 #endif
1331 return false;
1334 /* Without strict aliasing, it is impossible for a component access
1335 through a pointer to touch a random variable, unless that
1336 variable *is* a structure or a pointer.
1338 That is, given p->c, and some random global variable b,
1339 there is no legal way that p->c could be an access to b.
1341 Without strict aliasing on, we consider it legal to do something
1342 like:
1344 struct foos { int l; };
1345 int foo;
1346 static struct foos *getfoo(void);
1347 int main (void)
1349 struct foos *f = getfoo();
1350 f->l = 1;
1351 foo = 2;
1352 if (f->l == 1)
1353 abort();
1354 exit(0);
1356 static struct foos *getfoo(void)
1357 { return (struct foos *)&foo; }
1359 (taken from 20000623-1.c)
1361 The docs also say/imply that access through union pointers
1362 is legal (but *not* if you take the address of the union member,
1363 i.e. the inverse), such that you can do
1365 typedef union {
1366 int d;
1367 } U;
1369 int rv;
1370 void breakme()
1372 U *rv0;
1373 U *pretmp = (U*)&rv;
1374 rv0 = pretmp;
1375 rv0->d = 42;
1377 To implement this, we just punt on accesses through union
1378 pointers entirely.
1380 else if (ref
1381 && flag_strict_aliasing
1382 && TREE_CODE (ref) != INDIRECT_REF
1383 && !MTAG_P (alias)
1384 && (TREE_CODE (base) != INDIRECT_REF
1385 || TREE_CODE (TREE_TYPE (base)) != UNION_TYPE)
1386 && !AGGREGATE_TYPE_P (TREE_TYPE (alias))
1387 && TREE_CODE (TREE_TYPE (alias)) != COMPLEX_TYPE
1388 && !var_ann (alias)->is_heapvar
1389 /* When the struct has may_alias attached to it, we need not to
1390 return true. */
1391 && get_alias_set (base))
1393 #ifdef ACCESS_DEBUGGING
1394 fprintf (stderr, "Access to ");
1395 print_generic_expr (stderr, ref, 0);
1396 fprintf (stderr, " may not touch ");
1397 print_generic_expr (stderr, alias, 0);
1398 fprintf (stderr, " in function %s\n", get_name (current_function_decl));
1399 #endif
1400 return false;
1403 /* If the offset of the access is greater than the size of one of
1404 the possible aliases, it can't be touching that alias, because it
1405 would be past the end of the structure. */
1406 else if (ref
1407 && flag_strict_aliasing
1408 && TREE_CODE (ref) != INDIRECT_REF
1409 && !MTAG_P (alias)
1410 && !POINTER_TYPE_P (TREE_TYPE (alias))
1411 && offsetgtz
1412 && DECL_SIZE (alias)
1413 && TREE_CODE (DECL_SIZE (alias)) == INTEGER_CST
1414 && uoffset > TREE_INT_CST_LOW (DECL_SIZE (alias)))
1416 #ifdef ACCESS_DEBUGGING
1417 fprintf (stderr, "Access to ");
1418 print_generic_expr (stderr, ref, 0);
1419 fprintf (stderr, " may not touch ");
1420 print_generic_expr (stderr, alias, 0);
1421 fprintf (stderr, " in function %s\n", get_name (current_function_decl));
1422 #endif
1423 return false;
1426 return true;
1430 /* Add VAR to the virtual operands array. FLAGS is as in
1431 get_expr_operands. FULL_REF is a tree that contains the entire
1432 pointer dereference expression, if available, or NULL otherwise.
1433 OFFSET and SIZE come from the memory access expression that
1434 generated this virtual operand. FOR_CLOBBER is true is this is
1435 adding a virtual operand for a call clobber. */
1437 static void
1438 add_virtual_operand (tree var, stmt_ann_t s_ann, int flags,
1439 tree full_ref, HOST_WIDE_INT offset,
1440 HOST_WIDE_INT size, bool for_clobber)
1442 VEC(tree,gc) *aliases;
1443 tree sym;
1444 var_ann_t v_ann;
1446 sym = (TREE_CODE (var) == SSA_NAME ? SSA_NAME_VAR (var) : var);
1447 v_ann = var_ann (sym);
1449 /* Mark the statement as having memory operands. */
1450 s_ann->references_memory = true;
1452 /* Mark statements with volatile operands. Optimizers should back
1453 off from statements having volatile operands. */
1454 if (TREE_THIS_VOLATILE (sym) && s_ann)
1455 s_ann->has_volatile_ops = true;
1457 /* If the variable cannot be modified and this is a VDEF change
1458 it into a VUSE. This happens when read-only variables are marked
1459 call-clobbered and/or aliased to writable variables. So we only
1460 check that this only happens on non-specific stores.
1462 Note that if this is a specific store, i.e. associated with a
1463 GIMPLE_MODIFY_STMT, then we can't suppress the VDEF, lest we run
1464 into validation problems.
1466 This can happen when programs cast away const, leaving us with a
1467 store to read-only memory. If the statement is actually executed
1468 at runtime, then the program is ill formed. If the statement is
1469 not executed then all is well. At the very least, we cannot ICE. */
1470 if ((flags & opf_implicit) && unmodifiable_var_p (var))
1471 flags &= ~opf_def;
1473 /* The variable is not a GIMPLE register. Add it (or its aliases) to
1474 virtual operands, unless the caller has specifically requested
1475 not to add virtual operands (used when adding operands inside an
1476 ADDR_EXPR expression). */
1477 if (flags & opf_no_vops)
1478 return;
1480 aliases = v_ann->may_aliases;
1481 if (aliases == NULL)
1483 /* The variable is not aliased or it is an alias tag. */
1484 if (flags & opf_def)
1485 append_vdef (var);
1486 else
1487 append_vuse (var);
1489 else
1491 unsigned i;
1492 tree al;
1494 /* The variable is aliased. Add its aliases to the virtual
1495 operands. */
1496 gcc_assert (VEC_length (tree, aliases) != 0);
1498 if (flags & opf_def)
1500 bool none_added = true;
1502 for (i = 0; VEC_iterate (tree, aliases, i, al); i++)
1504 if (!access_can_touch_variable (full_ref, al, offset, size))
1505 continue;
1507 none_added = false;
1508 append_vdef (al);
1511 /* If the variable is also an alias tag, add a virtual
1512 operand for it, otherwise we will miss representing
1513 references to the members of the variable's alias set.
1514 This fixes the bug in gcc.c-torture/execute/20020503-1.c.
1516 It is also necessary to add bare defs on clobbers for
1517 SMT's, so that bare SMT uses caused by pruning all the
1518 aliases will link up properly with calls. In order to
1519 keep the number of these bare defs we add down to the
1520 minimum necessary, we keep track of which SMT's were used
1521 alone in statement vdefs or VUSEs. */
1522 if (v_ann->is_aliased
1523 || none_added
1524 || (TREE_CODE (var) == SYMBOL_MEMORY_TAG
1525 && for_clobber))
1527 append_vdef (var);
1530 else
1532 bool none_added = true;
1533 for (i = 0; VEC_iterate (tree, aliases, i, al); i++)
1535 if (!access_can_touch_variable (full_ref, al, offset, size))
1536 continue;
1537 none_added = false;
1538 append_vuse (al);
1541 /* Similarly, append a virtual uses for VAR itself, when
1542 it is an alias tag. */
1543 if (v_ann->is_aliased || none_added)
1544 append_vuse (var);
1550 /* Add *VAR_P to the appropriate operand array for S_ANN. FLAGS is as in
1551 get_expr_operands. If *VAR_P is a GIMPLE register, it will be added to
1552 the statement's real operands, otherwise it is added to virtual
1553 operands. */
1555 static void
1556 add_stmt_operand (tree *var_p, stmt_ann_t s_ann, int flags)
1558 tree var, sym;
1559 var_ann_t v_ann;
1561 gcc_assert (SSA_VAR_P (*var_p) && s_ann);
1563 var = *var_p;
1564 sym = (TREE_CODE (var) == SSA_NAME ? SSA_NAME_VAR (var) : var);
1565 v_ann = var_ann (sym);
1567 /* Mark statements with volatile operands. */
1568 if (TREE_THIS_VOLATILE (sym))
1569 s_ann->has_volatile_ops = true;
1571 if (is_gimple_reg (sym))
1573 /* The variable is a GIMPLE register. Add it to real operands. */
1574 if (flags & opf_def)
1575 append_def (var_p);
1576 else
1577 append_use (var_p);
1579 else
1580 add_virtual_operand (var, s_ann, flags, NULL_TREE, 0, -1, false);
1584 /* A subroutine of get_expr_operands to handle INDIRECT_REF,
1585 ALIGN_INDIRECT_REF and MISALIGNED_INDIRECT_REF.
1587 STMT is the statement being processed, EXPR is the INDIRECT_REF
1588 that got us here.
1590 FLAGS is as in get_expr_operands.
1592 FULL_REF contains the full pointer dereference expression, if we
1593 have it, or NULL otherwise.
1595 OFFSET and SIZE are the location of the access inside the
1596 dereferenced pointer, if known.
1598 RECURSE_ON_BASE should be set to true if we want to continue
1599 calling get_expr_operands on the base pointer, and false if
1600 something else will do it for us. */
1602 static void
1603 get_indirect_ref_operands (tree stmt, tree expr, int flags,
1604 tree full_ref,
1605 HOST_WIDE_INT offset, HOST_WIDE_INT size,
1606 bool recurse_on_base)
1608 tree *pptr = &TREE_OPERAND (expr, 0);
1609 tree ptr = *pptr;
1610 stmt_ann_t s_ann = stmt_ann (stmt);
1612 s_ann->references_memory = true;
1614 if (SSA_VAR_P (ptr))
1616 struct ptr_info_def *pi = NULL;
1618 /* If PTR has flow-sensitive points-to information, use it. */
1619 if (TREE_CODE (ptr) == SSA_NAME
1620 && (pi = SSA_NAME_PTR_INFO (ptr)) != NULL
1621 && pi->name_mem_tag)
1623 /* PTR has its own memory tag. Use it. */
1624 add_virtual_operand (pi->name_mem_tag, s_ann, flags,
1625 full_ref, offset, size, false);
1627 else
1629 /* If PTR is not an SSA_NAME or it doesn't have a name
1630 tag, use its symbol memory tag. */
1631 var_ann_t v_ann;
1633 /* If we are emitting debugging dumps, display a warning if
1634 PTR is an SSA_NAME with no flow-sensitive alias
1635 information. That means that we may need to compute
1636 aliasing again. */
1637 if (dump_file
1638 && TREE_CODE (ptr) == SSA_NAME
1639 && pi == NULL)
1641 fprintf (dump_file,
1642 "NOTE: no flow-sensitive alias info for ");
1643 print_generic_expr (dump_file, ptr, dump_flags);
1644 fprintf (dump_file, " in ");
1645 print_generic_stmt (dump_file, stmt, dump_flags);
1648 if (TREE_CODE (ptr) == SSA_NAME)
1649 ptr = SSA_NAME_VAR (ptr);
1650 v_ann = var_ann (ptr);
1652 if (v_ann->symbol_mem_tag)
1653 add_virtual_operand (v_ann->symbol_mem_tag, s_ann, flags,
1654 full_ref, offset, size, false);
1657 else if (TREE_CODE (ptr) == INTEGER_CST)
1659 /* If a constant is used as a pointer, we can't generate a real
1660 operand for it but we mark the statement volatile to prevent
1661 optimizations from messing things up. */
1662 if (s_ann)
1663 s_ann->has_volatile_ops = true;
1664 return;
1666 else
1668 /* Ok, this isn't even is_gimple_min_invariant. Something's broke. */
1669 gcc_unreachable ();
1672 /* If requested, add a USE operand for the base pointer. */
1673 if (recurse_on_base)
1674 get_expr_operands (stmt, pptr, opf_use);
1678 /* A subroutine of get_expr_operands to handle TARGET_MEM_REF. */
1680 static void
1681 get_tmr_operands (tree stmt, tree expr, int flags)
1683 tree tag, ref;
1684 HOST_WIDE_INT offset, size, maxsize;
1685 subvar_t svars, sv;
1686 stmt_ann_t s_ann = stmt_ann (stmt);
1688 /* This statement references memory. */
1689 s_ann->references_memory = 1;
1691 /* First record the real operands. */
1692 get_expr_operands (stmt, &TMR_BASE (expr), opf_use);
1693 get_expr_operands (stmt, &TMR_INDEX (expr), opf_use);
1695 if (TMR_SYMBOL (expr))
1696 add_to_addressable_set (TMR_SYMBOL (expr), &s_ann->addresses_taken);
1698 tag = TMR_TAG (expr);
1699 if (!tag)
1701 /* Something weird, so ensure that we will be careful. */
1702 s_ann->has_volatile_ops = true;
1703 return;
1706 if (DECL_P (tag))
1708 get_expr_operands (stmt, &tag, flags);
1709 return;
1712 ref = get_ref_base_and_extent (tag, &offset, &size, &maxsize);
1713 gcc_assert (ref != NULL_TREE);
1714 svars = get_subvars_for_var (ref);
1715 for (sv = svars; sv; sv = sv->next)
1717 bool exact;
1719 if (overlap_subvar (offset, maxsize, sv->var, &exact))
1720 add_stmt_operand (&sv->var, s_ann, flags);
1725 /* Add clobbering definitions for .GLOBAL_VAR or for each of the call
1726 clobbered variables in the function. */
1728 static void
1729 add_call_clobber_ops (tree stmt, tree callee)
1731 unsigned u;
1732 bitmap_iterator bi;
1733 stmt_ann_t s_ann = stmt_ann (stmt);
1734 bitmap not_read_b, not_written_b;
1736 /* Functions that are not const, pure or never return may clobber
1737 call-clobbered variables. */
1738 if (s_ann)
1739 s_ann->makes_clobbering_call = true;
1741 /* If we created .GLOBAL_VAR earlier, just use it. See compute_may_aliases
1742 for the heuristic used to decide whether to create .GLOBAL_VAR or not. */
1743 if (gimple_global_var (cfun))
1745 tree var = gimple_global_var (cfun);
1746 add_stmt_operand (&var, s_ann, opf_def);
1747 return;
1750 /* Get info for local and module level statics. There is a bit
1751 set for each static if the call being processed does not read
1752 or write that variable. */
1753 not_read_b = callee ? ipa_reference_get_not_read_global (callee) : NULL;
1754 not_written_b = callee ? ipa_reference_get_not_written_global (callee) : NULL;
1756 /* Add a VDEF operand for every call clobbered variable. */
1757 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun), 0, u, bi)
1759 tree var = referenced_var_lookup (u);
1760 unsigned int escape_mask = var_ann (var)->escape_mask;
1761 tree real_var = var;
1762 bool not_read;
1763 bool not_written;
1765 /* Not read and not written are computed on regular vars, not
1766 subvars, so look at the parent var if this is an SFT. */
1767 if (TREE_CODE (var) == STRUCT_FIELD_TAG)
1768 real_var = SFT_PARENT_VAR (var);
1770 not_read = not_read_b ? bitmap_bit_p (not_read_b,
1771 DECL_UID (real_var)) : false;
1772 not_written = not_written_b ? bitmap_bit_p (not_written_b,
1773 DECL_UID (real_var)) : false;
1774 gcc_assert (!unmodifiable_var_p (var));
1776 clobber_stats.clobbered_vars++;
1778 /* See if this variable is really clobbered by this function. */
1780 /* Trivial case: Things escaping only to pure/const are not
1781 clobbered by non-pure-const, and only read by pure/const. */
1782 if ((escape_mask & ~(ESCAPE_TO_PURE_CONST)) == 0)
1784 tree call = get_call_expr_in (stmt);
1785 if (call_expr_flags (call) & (ECF_CONST | ECF_PURE))
1787 add_stmt_operand (&var, s_ann, opf_use);
1788 clobber_stats.unescapable_clobbers_avoided++;
1789 continue;
1791 else
1793 clobber_stats.unescapable_clobbers_avoided++;
1794 continue;
1798 if (not_written)
1800 clobber_stats.static_write_clobbers_avoided++;
1801 if (!not_read)
1802 add_stmt_operand (&var, s_ann, opf_use);
1803 else
1804 clobber_stats.static_read_clobbers_avoided++;
1806 else
1807 add_virtual_operand (var, s_ann, opf_def, NULL, 0, -1, true);
1812 /* Add VUSE operands for .GLOBAL_VAR or all call clobbered variables in the
1813 function. */
1815 static void
1816 add_call_read_ops (tree stmt, tree callee)
1818 unsigned u;
1819 bitmap_iterator bi;
1820 stmt_ann_t s_ann = stmt_ann (stmt);
1821 bitmap not_read_b;
1823 /* if the function is not pure, it may reference memory. Add
1824 a VUSE for .GLOBAL_VAR if it has been created. See add_referenced_var
1825 for the heuristic used to decide whether to create .GLOBAL_VAR. */
1826 if (gimple_global_var (cfun))
1828 tree var = gimple_global_var (cfun);
1829 add_stmt_operand (&var, s_ann, opf_use);
1830 return;
1833 not_read_b = callee ? ipa_reference_get_not_read_global (callee) : NULL;
1835 /* Add a VUSE for each call-clobbered variable. */
1836 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun), 0, u, bi)
1838 tree var = referenced_var (u);
1839 tree real_var = var;
1840 bool not_read;
1842 clobber_stats.readonly_clobbers++;
1844 /* Not read and not written are computed on regular vars, not
1845 subvars, so look at the parent var if this is an SFT. */
1847 if (TREE_CODE (var) == STRUCT_FIELD_TAG)
1848 real_var = SFT_PARENT_VAR (var);
1850 not_read = not_read_b ? bitmap_bit_p (not_read_b, DECL_UID (real_var))
1851 : false;
1853 if (not_read)
1855 clobber_stats.static_readonly_clobbers_avoided++;
1856 continue;
1859 add_stmt_operand (&var, s_ann, opf_use | opf_implicit);
1864 /* A subroutine of get_expr_operands to handle CALL_EXPR. */
1866 static void
1867 get_call_expr_operands (tree stmt, tree expr)
1869 tree op;
1870 int call_flags = call_expr_flags (expr);
1871 stmt_ann_t ann = stmt_ann (stmt);
1873 ann->references_memory = true;
1875 /* If aliases have been computed already, add VDEF or VUSE
1876 operands for all the symbols that have been found to be
1877 call-clobbered. */
1878 if (gimple_aliases_computed_p (cfun)
1879 && !(call_flags & ECF_NOVOPS))
1881 /* A 'pure' or a 'const' function never call-clobbers anything.
1882 A 'noreturn' function might, but since we don't return anyway
1883 there is no point in recording that. */
1884 if (TREE_SIDE_EFFECTS (expr)
1885 && !(call_flags & (ECF_PURE | ECF_CONST | ECF_NORETURN)))
1886 add_call_clobber_ops (stmt, get_callee_fndecl (expr));
1887 else if (!(call_flags & ECF_CONST))
1888 add_call_read_ops (stmt, get_callee_fndecl (expr));
1891 /* Find uses in the called function. */
1892 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), opf_use);
1894 for (op = TREE_OPERAND (expr, 1); op; op = TREE_CHAIN (op))
1895 get_expr_operands (stmt, &TREE_VALUE (op), opf_use);
1897 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
1901 /* Scan operands in the ASM_EXPR stmt referred to in INFO. */
1903 static void
1904 get_asm_expr_operands (tree stmt)
1906 stmt_ann_t s_ann;
1907 int i, noutputs;
1908 const char **oconstraints;
1909 const char *constraint;
1910 bool allows_mem, allows_reg, is_inout;
1911 tree link;
1913 s_ann = stmt_ann (stmt);
1914 noutputs = list_length (ASM_OUTPUTS (stmt));
1915 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
1917 /* Gather all output operands. */
1918 for (i = 0, link = ASM_OUTPUTS (stmt); link; i++, link = TREE_CHAIN (link))
1920 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
1921 oconstraints[i] = constraint;
1922 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
1923 &allows_reg, &is_inout);
1925 /* This should have been split in gimplify_asm_expr. */
1926 gcc_assert (!allows_reg || !is_inout);
1928 /* Memory operands are addressable. Note that STMT needs the
1929 address of this operand. */
1930 if (!allows_reg && allows_mem)
1932 tree t = get_base_address (TREE_VALUE (link));
1933 if (t && DECL_P (t) && s_ann)
1934 add_to_addressable_set (t, &s_ann->addresses_taken);
1937 get_expr_operands (stmt, &TREE_VALUE (link), opf_def);
1940 /* Gather all input operands. */
1941 for (link = ASM_INPUTS (stmt); link; link = TREE_CHAIN (link))
1943 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
1944 parse_input_constraint (&constraint, 0, 0, noutputs, 0, oconstraints,
1945 &allows_mem, &allows_reg);
1947 /* Memory operands are addressable. Note that STMT needs the
1948 address of this operand. */
1949 if (!allows_reg && allows_mem)
1951 tree t = get_base_address (TREE_VALUE (link));
1952 if (t && DECL_P (t) && s_ann)
1953 add_to_addressable_set (t, &s_ann->addresses_taken);
1956 get_expr_operands (stmt, &TREE_VALUE (link), 0);
1959 /* Clobber all memory and addressable symbols for asm ("" : : : "memory"); */
1960 for (link = ASM_CLOBBERS (stmt); link; link = TREE_CHAIN (link))
1961 if (strcmp (TREE_STRING_POINTER (TREE_VALUE (link)), "memory") == 0)
1963 unsigned i;
1964 bitmap_iterator bi;
1966 s_ann->references_memory = true;
1968 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun), 0, i, bi)
1970 tree var = referenced_var (i);
1971 add_stmt_operand (&var, s_ann, opf_def | opf_implicit);
1974 EXECUTE_IF_SET_IN_BITMAP (gimple_addressable_vars (cfun), 0, i, bi)
1976 tree var = referenced_var (i);
1978 /* Subvars are explicitly represented in this list, so we
1979 don't need the original to be added to the clobber ops,
1980 but the original *will* be in this list because we keep
1981 the addressability of the original variable up-to-date
1982 to avoid confusing the back-end. */
1983 if (var_can_have_subvars (var)
1984 && get_subvars_for_var (var) != NULL)
1985 continue;
1987 add_stmt_operand (&var, s_ann, opf_def | opf_implicit);
1989 break;
1994 /* Scan operands for the assignment expression EXPR in statement STMT. */
1996 static void
1997 get_modify_stmt_operands (tree stmt, tree expr)
1999 /* First get operands from the RHS. */
2000 get_expr_operands (stmt, &GIMPLE_STMT_OPERAND (expr, 1), opf_use);
2002 /* For the LHS, use a regular definition (opf_def) for GIMPLE
2003 registers. If the LHS is a store to memory, we will need
2004 a preserving definition (VDEF).
2006 Preserving definitions are those that modify a part of an
2007 aggregate object for which no subvars have been computed (or the
2008 reference does not correspond exactly to one of them). Stores
2009 through a pointer are also represented with VDEF operators.
2011 We used to distinguish between preserving and killing definitions.
2012 We always emit preserving definitions now. */
2013 get_expr_operands (stmt, &GIMPLE_STMT_OPERAND (expr, 0), opf_def);
2017 /* Recursively scan the expression pointed to by EXPR_P in statement
2018 STMT. FLAGS is one of the OPF_* constants modifying how to
2019 interpret the operands found. */
2021 static void
2022 get_expr_operands (tree stmt, tree *expr_p, int flags)
2024 enum tree_code code;
2025 enum tree_code_class class;
2026 tree expr = *expr_p;
2027 stmt_ann_t s_ann = stmt_ann (stmt);
2029 if (expr == NULL)
2030 return;
2032 code = TREE_CODE (expr);
2033 class = TREE_CODE_CLASS (code);
2035 switch (code)
2037 case ADDR_EXPR:
2038 /* Taking the address of a variable does not represent a
2039 reference to it, but the fact that the statement takes its
2040 address will be of interest to some passes (e.g. alias
2041 resolution). */
2042 add_to_addressable_set (TREE_OPERAND (expr, 0), &s_ann->addresses_taken);
2044 /* If the address is invariant, there may be no interesting
2045 variable references inside. */
2046 if (is_gimple_min_invariant (expr))
2047 return;
2049 /* Otherwise, there may be variables referenced inside but there
2050 should be no VUSEs created, since the referenced objects are
2051 not really accessed. The only operands that we should find
2052 here are ARRAY_REF indices which will always be real operands
2053 (GIMPLE does not allow non-registers as array indices). */
2054 flags |= opf_no_vops;
2055 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2056 return;
2058 case SSA_NAME:
2059 case STRUCT_FIELD_TAG:
2060 case SYMBOL_MEMORY_TAG:
2061 case NAME_MEMORY_TAG:
2062 add_stmt_operand (expr_p, s_ann, flags);
2063 return;
2065 case VAR_DECL:
2066 case PARM_DECL:
2067 case RESULT_DECL:
2069 subvar_t svars;
2071 /* Add the subvars for a variable, if it has subvars, to DEFS
2072 or USES. Otherwise, add the variable itself. Whether it
2073 goes to USES or DEFS depends on the operand flags. */
2074 if (var_can_have_subvars (expr)
2075 && (svars = get_subvars_for_var (expr)))
2077 subvar_t sv;
2078 for (sv = svars; sv; sv = sv->next)
2079 add_stmt_operand (&sv->var, s_ann, flags);
2081 else
2082 add_stmt_operand (expr_p, s_ann, flags);
2084 return;
2087 case MISALIGNED_INDIRECT_REF:
2088 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
2089 /* fall through */
2091 case ALIGN_INDIRECT_REF:
2092 case INDIRECT_REF:
2093 get_indirect_ref_operands (stmt, expr, flags, NULL_TREE, 0, -1, true);
2094 return;
2096 case TARGET_MEM_REF:
2097 get_tmr_operands (stmt, expr, flags);
2098 return;
2100 case ARRAY_REF:
2101 case ARRAY_RANGE_REF:
2102 case COMPONENT_REF:
2103 case REALPART_EXPR:
2104 case IMAGPART_EXPR:
2106 tree ref;
2107 HOST_WIDE_INT offset, size, maxsize;
2108 bool none = true;
2110 /* This component reference becomes an access to all of the
2111 subvariables it can touch, if we can determine that, but
2112 *NOT* the real one. If we can't determine which fields we
2113 could touch, the recursion will eventually get to a
2114 variable and add *all* of its subvars, or whatever is the
2115 minimum correct subset. */
2116 ref = get_ref_base_and_extent (expr, &offset, &size, &maxsize);
2117 if (SSA_VAR_P (ref) && get_subvars_for_var (ref))
2119 subvar_t sv;
2120 subvar_t svars = get_subvars_for_var (ref);
2122 for (sv = svars; sv; sv = sv->next)
2124 bool exact;
2126 if (overlap_subvar (offset, maxsize, sv->var, &exact))
2128 int subvar_flags = flags;
2129 none = false;
2130 add_stmt_operand (&sv->var, s_ann, subvar_flags);
2134 if (!none)
2135 flags |= opf_no_vops;
2137 else if (TREE_CODE (ref) == INDIRECT_REF)
2139 get_indirect_ref_operands (stmt, ref, flags, expr, offset,
2140 maxsize, false);
2141 flags |= opf_no_vops;
2144 /* Even if we found subvars above we need to ensure to see
2145 immediate uses for d in s.a[d]. In case of s.a having
2146 a subvar or we would miss it otherwise. */
2147 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2149 if (code == COMPONENT_REF)
2151 if (s_ann && TREE_THIS_VOLATILE (TREE_OPERAND (expr, 1)))
2152 s_ann->has_volatile_ops = true;
2153 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
2155 else if (code == ARRAY_REF || code == ARRAY_RANGE_REF)
2157 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
2158 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
2159 get_expr_operands (stmt, &TREE_OPERAND (expr, 3), opf_use);
2162 return;
2165 case WITH_SIZE_EXPR:
2166 /* WITH_SIZE_EXPR is a pass-through reference to its first argument,
2167 and an rvalue reference to its second argument. */
2168 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
2169 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2170 return;
2172 case CALL_EXPR:
2173 get_call_expr_operands (stmt, expr);
2174 return;
2176 case COND_EXPR:
2177 case VEC_COND_EXPR:
2178 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), opf_use);
2179 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
2180 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
2181 return;
2183 case GIMPLE_MODIFY_STMT:
2184 get_modify_stmt_operands (stmt, expr);
2185 return;
2187 case CONSTRUCTOR:
2189 /* General aggregate CONSTRUCTORs have been decomposed, but they
2190 are still in use as the COMPLEX_EXPR equivalent for vectors. */
2191 constructor_elt *ce;
2192 unsigned HOST_WIDE_INT idx;
2194 for (idx = 0;
2195 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (expr), idx, ce);
2196 idx++)
2197 get_expr_operands (stmt, &ce->value, opf_use);
2199 return;
2202 case BIT_FIELD_REF:
2203 case TRUTH_NOT_EXPR:
2204 case VIEW_CONVERT_EXPR:
2205 do_unary:
2206 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2207 return;
2209 case TRUTH_AND_EXPR:
2210 case TRUTH_OR_EXPR:
2211 case TRUTH_XOR_EXPR:
2212 case COMPOUND_EXPR:
2213 case OBJ_TYPE_REF:
2214 case ASSERT_EXPR:
2215 do_binary:
2217 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2218 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
2219 return;
2222 case DOT_PROD_EXPR:
2223 case REALIGN_LOAD_EXPR:
2225 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2226 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
2227 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), flags);
2228 return;
2231 case BLOCK:
2232 case FUNCTION_DECL:
2233 case EXC_PTR_EXPR:
2234 case FILTER_EXPR:
2235 case LABEL_DECL:
2236 case CONST_DECL:
2237 case OMP_PARALLEL:
2238 case OMP_SECTIONS:
2239 case OMP_FOR:
2240 case OMP_SINGLE:
2241 case OMP_MASTER:
2242 case OMP_ORDERED:
2243 case OMP_CRITICAL:
2244 case OMP_RETURN:
2245 case OMP_CONTINUE:
2246 /* Expressions that make no memory references. */
2247 return;
2249 default:
2250 if (class == tcc_unary)
2251 goto do_unary;
2252 if (class == tcc_binary || class == tcc_comparison)
2253 goto do_binary;
2254 if (class == tcc_constant || class == tcc_type)
2255 return;
2258 /* If we get here, something has gone wrong. */
2259 #ifdef ENABLE_CHECKING
2260 fprintf (stderr, "unhandled expression in get_expr_operands():\n");
2261 debug_tree (expr);
2262 fputs ("\n", stderr);
2263 #endif
2264 gcc_unreachable ();
2268 /* Parse STMT looking for operands. When finished, the various
2269 build_* operand vectors will have potential operands in them. */
2271 static void
2272 parse_ssa_operands (tree stmt)
2274 enum tree_code code;
2276 code = TREE_CODE (stmt);
2277 switch (code)
2279 case GIMPLE_MODIFY_STMT:
2280 get_modify_stmt_operands (stmt, stmt);
2281 break;
2283 case COND_EXPR:
2284 get_expr_operands (stmt, &COND_EXPR_COND (stmt), opf_use);
2285 break;
2287 case SWITCH_EXPR:
2288 get_expr_operands (stmt, &SWITCH_COND (stmt), opf_use);
2289 break;
2291 case ASM_EXPR:
2292 get_asm_expr_operands (stmt);
2293 break;
2295 case RETURN_EXPR:
2296 get_expr_operands (stmt, &TREE_OPERAND (stmt, 0), opf_use);
2297 break;
2299 case GOTO_EXPR:
2300 get_expr_operands (stmt, &GOTO_DESTINATION (stmt), opf_use);
2301 break;
2303 case LABEL_EXPR:
2304 get_expr_operands (stmt, &LABEL_EXPR_LABEL (stmt), opf_use);
2305 break;
2307 case BIND_EXPR:
2308 case CASE_LABEL_EXPR:
2309 case TRY_CATCH_EXPR:
2310 case TRY_FINALLY_EXPR:
2311 case EH_FILTER_EXPR:
2312 case CATCH_EXPR:
2313 case RESX_EXPR:
2314 /* These nodes contain no variable references. */
2315 break;
2317 default:
2318 /* Notice that if get_expr_operands tries to use &STMT as the
2319 operand pointer (which may only happen for USE operands), we
2320 will fail in add_stmt_operand. This default will handle
2321 statements like empty statements, or CALL_EXPRs that may
2322 appear on the RHS of a statement or as statements themselves. */
2323 get_expr_operands (stmt, &stmt, opf_use);
2324 break;
2329 /* Create an operands cache for STMT. */
2331 static void
2332 build_ssa_operands (tree stmt)
2334 stmt_ann_t ann = get_stmt_ann (stmt);
2336 /* Initially assume that the statement has no volatile operands and
2337 makes no memory references. */
2338 ann->has_volatile_ops = false;
2339 ann->references_memory = false;
2340 /* Just clear the bitmap so we don't end up reallocating it over and over. */
2341 if (ann->addresses_taken)
2342 bitmap_clear (ann->addresses_taken);
2344 start_ssa_stmt_operands ();
2345 parse_ssa_operands (stmt);
2346 operand_build_sort_virtual (build_vuses);
2347 operand_build_sort_virtual (build_vdefs);
2348 finalize_ssa_stmt_operands (stmt);
2350 if (ann->addresses_taken && bitmap_empty_p (ann->addresses_taken))
2351 ann->addresses_taken = NULL;
2352 /* For added safety, assume that statements with volatile operands
2353 also reference memory. */
2354 if (ann->has_volatile_ops)
2355 ann->references_memory = true;
2359 /* Free any operands vectors in OPS. */
2361 void
2362 free_ssa_operands (stmt_operands_p ops)
2364 ops->def_ops = NULL;
2365 ops->use_ops = NULL;
2366 ops->vdef_ops = NULL;
2367 ops->vuse_ops = NULL;
2368 BITMAP_FREE (ops->loads);
2369 BITMAP_FREE (ops->stores);
2373 /* Get the operands of statement STMT. */
2375 void
2376 update_stmt_operands (tree stmt)
2378 stmt_ann_t ann = get_stmt_ann (stmt);
2380 /* If update_stmt_operands is called before SSA is initialized, do
2381 nothing. */
2382 if (!ssa_operands_active ())
2383 return;
2385 /* The optimizers cannot handle statements that are nothing but a
2386 _DECL. This indicates a bug in the gimplifier. */
2387 gcc_assert (!SSA_VAR_P (stmt));
2389 timevar_push (TV_TREE_OPS);
2391 gcc_assert (ann->modified);
2392 build_ssa_operands (stmt);
2393 ann->modified = 0;
2395 timevar_pop (TV_TREE_OPS);
2399 /* Copies virtual operands from SRC to DST. */
2401 void
2402 copy_virtual_operands (tree dest, tree src)
2404 int i, n;
2405 voptype_p src_vuses, dest_vuses;
2406 voptype_p src_vdefs, dest_vdefs;
2407 struct voptype_d vuse;
2408 struct voptype_d vdef;
2409 stmt_ann_t dest_ann;
2411 VDEF_OPS (dest) = NULL;
2412 VUSE_OPS (dest) = NULL;
2414 dest_ann = get_stmt_ann (dest);
2415 BITMAP_FREE (dest_ann->operands.loads);
2416 BITMAP_FREE (dest_ann->operands.stores);
2418 if (LOADED_SYMS (src))
2420 dest_ann->operands.loads = BITMAP_ALLOC (&operands_bitmap_obstack);
2421 bitmap_copy (dest_ann->operands.loads, LOADED_SYMS (src));
2424 if (STORED_SYMS (src))
2426 dest_ann->operands.stores = BITMAP_ALLOC (&operands_bitmap_obstack);
2427 bitmap_copy (dest_ann->operands.stores, STORED_SYMS (src));
2430 /* Copy all the VUSE operators and corresponding operands. */
2431 dest_vuses = &vuse;
2432 for (src_vuses = VUSE_OPS (src); src_vuses; src_vuses = src_vuses->next)
2434 n = VUSE_NUM (src_vuses);
2435 dest_vuses = add_vuse_op (dest, NULL_TREE, n, dest_vuses);
2436 for (i = 0; i < n; i++)
2437 SET_USE (VUSE_OP_PTR (dest_vuses, i), VUSE_OP (src_vuses, i));
2439 if (VUSE_OPS (dest) == NULL)
2440 VUSE_OPS (dest) = vuse.next;
2443 /* Copy all the VDEF operators and corresponding operands. */
2444 dest_vdefs = &vdef;
2445 for (src_vdefs = VDEF_OPS (src); src_vdefs; src_vdefs = src_vdefs->next)
2447 n = VUSE_NUM (src_vdefs);
2448 dest_vdefs = add_vdef_op (dest, NULL_TREE, n, dest_vdefs);
2449 VDEF_RESULT (dest_vdefs) = VDEF_RESULT (src_vdefs);
2450 for (i = 0; i < n; i++)
2451 SET_USE (VUSE_OP_PTR (dest_vdefs, i), VUSE_OP (src_vdefs, i));
2453 if (VDEF_OPS (dest) == NULL)
2454 VDEF_OPS (dest) = vdef.next;
2459 /* Specifically for use in DOM's expression analysis. Given a store, we
2460 create an artificial stmt which looks like a load from the store, this can
2461 be used to eliminate redundant loads. OLD_OPS are the operands from the
2462 store stmt, and NEW_STMT is the new load which represents a load of the
2463 values stored. */
2465 void
2466 create_ssa_artificial_load_stmt (tree new_stmt, tree old_stmt)
2468 tree op;
2469 ssa_op_iter iter;
2470 use_operand_p use_p;
2471 unsigned i;
2473 get_stmt_ann (new_stmt);
2475 /* Process NEW_STMT looking for operands. */
2476 start_ssa_stmt_operands ();
2477 parse_ssa_operands (new_stmt);
2479 for (i = 0; VEC_iterate (tree, build_vuses, i, op); i++)
2480 if (TREE_CODE (op) != SSA_NAME)
2481 var_ann (op)->in_vuse_list = false;
2483 for (i = 0; VEC_iterate (tree, build_vuses, i, op); i++)
2484 if (TREE_CODE (op) != SSA_NAME)
2485 var_ann (op)->in_vdef_list = false;
2487 /* Remove any virtual operands that were found. */
2488 VEC_truncate (tree, build_vdefs, 0);
2489 VEC_truncate (tree, build_vuses, 0);
2491 /* For each VDEF on the original statement, we want to create a
2492 VUSE of the VDEF result operand on the new statement. */
2493 FOR_EACH_SSA_TREE_OPERAND (op, old_stmt, iter, SSA_OP_VDEF)
2494 append_vuse (op);
2496 finalize_ssa_stmt_operands (new_stmt);
2498 /* All uses in this fake stmt must not be in the immediate use lists. */
2499 FOR_EACH_SSA_USE_OPERAND (use_p, new_stmt, iter, SSA_OP_ALL_USES)
2500 delink_imm_use (use_p);
2504 /* Swap operands EXP0 and EXP1 in statement STMT. No attempt is done
2505 to test the validity of the swap operation. */
2507 void
2508 swap_tree_operands (tree stmt, tree *exp0, tree *exp1)
2510 tree op0, op1;
2511 op0 = *exp0;
2512 op1 = *exp1;
2514 /* If the operand cache is active, attempt to preserve the relative
2515 positions of these two operands in their respective immediate use
2516 lists. */
2517 if (ssa_operands_active () && op0 != op1)
2519 use_optype_p use0, use1, ptr;
2520 use0 = use1 = NULL;
2522 /* Find the 2 operands in the cache, if they are there. */
2523 for (ptr = USE_OPS (stmt); ptr; ptr = ptr->next)
2524 if (USE_OP_PTR (ptr)->use == exp0)
2526 use0 = ptr;
2527 break;
2530 for (ptr = USE_OPS (stmt); ptr; ptr = ptr->next)
2531 if (USE_OP_PTR (ptr)->use == exp1)
2533 use1 = ptr;
2534 break;
2537 /* If both uses don't have operand entries, there isn't much we can do
2538 at this point. Presumably we don't need to worry about it. */
2539 if (use0 && use1)
2541 tree *tmp = USE_OP_PTR (use1)->use;
2542 USE_OP_PTR (use1)->use = USE_OP_PTR (use0)->use;
2543 USE_OP_PTR (use0)->use = tmp;
2547 /* Now swap the data. */
2548 *exp0 = op1;
2549 *exp1 = op0;
2553 /* Add the base address of REF to the set *ADDRESSES_TAKEN. If
2554 *ADDRESSES_TAKEN is NULL, a new set is created. REF may be
2555 a single variable whose address has been taken or any other valid
2556 GIMPLE memory reference (structure reference, array, etc). If the
2557 base address of REF is a decl that has sub-variables, also add all
2558 of its sub-variables. */
2560 void
2561 add_to_addressable_set (tree ref, bitmap *addresses_taken)
2563 tree var;
2564 subvar_t svars;
2566 gcc_assert (addresses_taken);
2568 /* Note that it is *NOT OKAY* to use the target of a COMPONENT_REF
2569 as the only thing we take the address of. If VAR is a structure,
2570 taking the address of a field means that the whole structure may
2571 be referenced using pointer arithmetic. See PR 21407 and the
2572 ensuing mailing list discussion. */
2573 var = get_base_address (ref);
2574 if (var && SSA_VAR_P (var))
2576 if (*addresses_taken == NULL)
2577 *addresses_taken = BITMAP_GGC_ALLOC ();
2579 if (var_can_have_subvars (var)
2580 && (svars = get_subvars_for_var (var)))
2582 subvar_t sv;
2583 for (sv = svars; sv; sv = sv->next)
2585 bitmap_set_bit (*addresses_taken, DECL_UID (sv->var));
2586 TREE_ADDRESSABLE (sv->var) = 1;
2589 else
2591 bitmap_set_bit (*addresses_taken, DECL_UID (var));
2592 TREE_ADDRESSABLE (var) = 1;
2598 /* Scan the immediate_use list for VAR making sure its linked properly.
2599 Return TRUE if there is a problem and emit an error message to F. */
2601 bool
2602 verify_imm_links (FILE *f, tree var)
2604 use_operand_p ptr, prev, list;
2605 int count;
2607 gcc_assert (TREE_CODE (var) == SSA_NAME);
2609 list = &(SSA_NAME_IMM_USE_NODE (var));
2610 gcc_assert (list->use == NULL);
2612 if (list->prev == NULL)
2614 gcc_assert (list->next == NULL);
2615 return false;
2618 prev = list;
2619 count = 0;
2620 for (ptr = list->next; ptr != list; )
2622 if (prev != ptr->prev)
2623 goto error;
2625 if (ptr->use == NULL)
2626 goto error; /* 2 roots, or SAFE guard node. */
2627 else if (*(ptr->use) != var)
2628 goto error;
2630 prev = ptr;
2631 ptr = ptr->next;
2633 /* Avoid infinite loops. 50,000,000 uses probably indicates a
2634 problem. */
2635 if (count++ > 50000000)
2636 goto error;
2639 /* Verify list in the other direction. */
2640 prev = list;
2641 for (ptr = list->prev; ptr != list; )
2643 if (prev != ptr->next)
2644 goto error;
2645 prev = ptr;
2646 ptr = ptr->prev;
2647 if (count-- < 0)
2648 goto error;
2651 if (count != 0)
2652 goto error;
2654 return false;
2656 error:
2657 if (ptr->stmt && stmt_modified_p (ptr->stmt))
2659 fprintf (f, " STMT MODIFIED. - <%p> ", (void *)ptr->stmt);
2660 print_generic_stmt (f, ptr->stmt, TDF_SLIM);
2662 fprintf (f, " IMM ERROR : (use_p : tree - %p:%p)", (void *)ptr,
2663 (void *)ptr->use);
2664 print_generic_expr (f, USE_FROM_PTR (ptr), TDF_SLIM);
2665 fprintf(f, "\n");
2666 return true;
2670 /* Dump all the immediate uses to FILE. */
2672 void
2673 dump_immediate_uses_for (FILE *file, tree var)
2675 imm_use_iterator iter;
2676 use_operand_p use_p;
2678 gcc_assert (var && TREE_CODE (var) == SSA_NAME);
2680 print_generic_expr (file, var, TDF_SLIM);
2681 fprintf (file, " : -->");
2682 if (has_zero_uses (var))
2683 fprintf (file, " no uses.\n");
2684 else
2685 if (has_single_use (var))
2686 fprintf (file, " single use.\n");
2687 else
2688 fprintf (file, "%d uses.\n", num_imm_uses (var));
2690 FOR_EACH_IMM_USE_FAST (use_p, iter, var)
2692 if (use_p->stmt == NULL && use_p->use == NULL)
2693 fprintf (file, "***end of stmt iterator marker***\n");
2694 else
2695 if (!is_gimple_reg (USE_FROM_PTR (use_p)))
2696 print_generic_stmt (file, USE_STMT (use_p), TDF_VOPS|TDF_MEMSYMS);
2697 else
2698 print_generic_stmt (file, USE_STMT (use_p), TDF_SLIM);
2700 fprintf(file, "\n");
2704 /* Dump all the immediate uses to FILE. */
2706 void
2707 dump_immediate_uses (FILE *file)
2709 tree var;
2710 unsigned int x;
2712 fprintf (file, "Immediate_uses: \n\n");
2713 for (x = 1; x < num_ssa_names; x++)
2715 var = ssa_name(x);
2716 if (!var)
2717 continue;
2718 dump_immediate_uses_for (file, var);
2723 /* Dump def-use edges on stderr. */
2725 void
2726 debug_immediate_uses (void)
2728 dump_immediate_uses (stderr);
2732 /* Dump def-use edges on stderr. */
2734 void
2735 debug_immediate_uses_for (tree var)
2737 dump_immediate_uses_for (stderr, var);
2741 /* Create a new change buffer for the statement pointed by STMT_P and
2742 push the buffer into SCB_STACK. Each change buffer
2743 records state information needed to determine what changed in the
2744 statement. Mainly, this keeps track of symbols that may need to be
2745 put into SSA form, SSA name replacements and other information
2746 needed to keep the SSA form up to date. */
2748 void
2749 push_stmt_changes (tree *stmt_p)
2751 tree stmt;
2752 scb_t buf;
2754 stmt = *stmt_p;
2756 /* It makes no sense to keep track of PHI nodes. */
2757 if (TREE_CODE (stmt) == PHI_NODE)
2758 return;
2760 buf = xmalloc (sizeof *buf);
2761 memset (buf, 0, sizeof *buf);
2763 buf->stmt_p = stmt_p;
2765 if (stmt_references_memory_p (stmt))
2767 tree op;
2768 ssa_op_iter i;
2770 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VUSE)
2772 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2773 if (buf->loads == NULL)
2774 buf->loads = BITMAP_ALLOC (NULL);
2775 bitmap_set_bit (buf->loads, DECL_UID (sym));
2778 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VDEF)
2780 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2781 if (buf->stores == NULL)
2782 buf->stores = BITMAP_ALLOC (NULL);
2783 bitmap_set_bit (buf->stores, DECL_UID (sym));
2787 VEC_safe_push (scb_t, heap, scb_stack, buf);
2791 /* Given two sets S1 and S2, mark the symbols that differ in S1 and S2
2792 for renaming. The set to mark for renaming is (S1 & ~S2) | (S2 & ~S1). */
2794 static void
2795 mark_difference_for_renaming (bitmap s1, bitmap s2)
2797 if (s1 == NULL && s2 == NULL)
2798 return;
2800 if (s1 && s2 == NULL)
2801 mark_set_for_renaming (s1);
2802 else if (s1 == NULL && s2)
2803 mark_set_for_renaming (s2);
2804 else if (!bitmap_equal_p (s1, s2))
2806 bitmap t1 = BITMAP_ALLOC (NULL);
2807 bitmap t2 = BITMAP_ALLOC (NULL);
2809 bitmap_and_compl (t1, s1, s2);
2810 bitmap_and_compl (t2, s2, s1);
2811 bitmap_ior_into (t1, t2);
2812 mark_set_for_renaming (t1);
2814 BITMAP_FREE (t1);
2815 BITMAP_FREE (t2);
2820 /* Pop the top SCB from SCB_STACK and act on the differences between
2821 what was recorded by push_stmt_changes and the current state of
2822 the statement. */
2824 void
2825 pop_stmt_changes (tree *stmt_p)
2827 tree op, stmt;
2828 ssa_op_iter iter;
2829 bitmap loads, stores;
2830 scb_t buf;
2832 stmt = *stmt_p;
2834 /* It makes no sense to keep track of PHI nodes. */
2835 if (TREE_CODE (stmt) == PHI_NODE)
2836 return;
2838 buf = VEC_pop (scb_t, scb_stack);
2839 gcc_assert (stmt_p == buf->stmt_p);
2841 /* Force an operand re-scan on the statement and mark any newly
2842 exposed variables. */
2843 update_stmt (stmt);
2845 /* Determine whether any memory symbols need to be renamed. If the
2846 sets of loads and stores are different after the statement is
2847 modified, then the affected symbols need to be renamed.
2849 Note that it may be possible for the statement to not reference
2850 memory anymore, but we still need to act on the differences in
2851 the sets of symbols. */
2852 loads = stores = NULL;
2853 if (stmt_references_memory_p (stmt))
2855 tree op;
2856 ssa_op_iter i;
2858 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VUSE)
2860 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2861 if (loads == NULL)
2862 loads = BITMAP_ALLOC (NULL);
2863 bitmap_set_bit (loads, DECL_UID (sym));
2866 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VDEF)
2868 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2869 if (stores == NULL)
2870 stores = BITMAP_ALLOC (NULL);
2871 bitmap_set_bit (stores, DECL_UID (sym));
2875 /* If LOADS is different from BUF->LOADS, the affected
2876 symbols need to be marked for renaming. */
2877 mark_difference_for_renaming (loads, buf->loads);
2879 /* Similarly for STORES and BUF->STORES. */
2880 mark_difference_for_renaming (stores, buf->stores);
2882 /* Mark all the naked GIMPLE register operands for renaming. */
2883 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_DEF|SSA_OP_USE)
2884 if (DECL_P (op))
2885 mark_sym_for_renaming (op);
2887 /* FIXME, need to add more finalizers here. Cleanup EH info,
2888 recompute invariants for address expressions, add
2889 SSA replacement mappings, etc. For instance, given
2890 testsuite/gcc.c-torture/compile/pr16808.c, we fold a statement of
2891 the form:
2893 # SMT.4_20 = VDEF <SMT.4_16>
2894 D.1576_11 = 1.0e+0;
2896 So, the VDEF will disappear, but instead of marking SMT.4 for
2897 renaming it would be far more efficient to establish a
2898 replacement mapping that would replace every reference of
2899 SMT.4_20 with SMT.4_16. */
2901 /* Free memory used by the buffer. */
2902 BITMAP_FREE (buf->loads);
2903 BITMAP_FREE (buf->stores);
2904 BITMAP_FREE (loads);
2905 BITMAP_FREE (stores);
2906 buf->stmt_p = NULL;
2907 free (buf);
2911 /* Discard the topmost change buffer from SCB_STACK. This is useful
2912 when the caller realized that it did not actually modified the
2913 statement. It avoids the expensive operand re-scan. */
2915 void
2916 discard_stmt_changes (tree *stmt_p)
2918 scb_t buf;
2919 tree stmt;
2921 /* It makes no sense to keep track of PHI nodes. */
2922 stmt = *stmt_p;
2923 if (TREE_CODE (stmt) == PHI_NODE)
2924 return;
2926 buf = VEC_pop (scb_t, scb_stack);
2927 gcc_assert (stmt_p == buf->stmt_p);
2929 /* Free memory used by the buffer. */
2930 BITMAP_FREE (buf->loads);
2931 BITMAP_FREE (buf->stores);
2932 buf->stmt_p = NULL;
2933 free (buf);
2937 /* Returns true if statement STMT may access memory. */
2939 bool
2940 stmt_references_memory_p (tree stmt)
2942 if (!gimple_ssa_operands (cfun)->ops_active || TREE_CODE (stmt) == PHI_NODE)
2943 return false;
2945 return stmt_ann (stmt)->references_memory;
2949 /* Return the memory partition tag (MPT) associated with memory
2950 symbol SYM. From a correctness standpoint, memory partitions can
2951 be assigned in any arbitrary fashion as long as this rule is
2952 observed: Given two memory partitions MPT.i and MPT.j, they must
2953 not contain symbols in common.
2955 Memory partitions are used when putting the program into Memory-SSA
2956 form. In particular, in Memory-SSA PHI nodes are not computed for
2957 individual memory symbols. They are computed for memory
2958 partitions. This reduces the amount of PHI nodes in the SSA graph
2959 at the expense of precision (i.e., it makes unrelated stores affect
2960 each other).
2962 However, it is possible to increase precision by changing this
2963 partitioning scheme. For instance, if the partitioning scheme is
2964 such that get_mpt_for is the identity function (that is,
2965 get_mpt_for (s) = s), this will result in ultimate precision at the
2966 expense of huge SSA webs.
2968 At the other extreme, a partitioning scheme that groups all the
2969 symbols in the same set results in minimal SSA webs and almost
2970 total loss of precision. */
2972 tree
2973 get_mpt_for (tree sym)
2975 tree mpt;
2977 /* Don't create a new tag unnecessarily. */
2978 mpt = memory_partition (sym);
2979 if (mpt == NULL_TREE)
2981 mpt = create_tag_raw (MEMORY_PARTITION_TAG, TREE_TYPE (sym), "MPT");
2982 TREE_ADDRESSABLE (mpt) = 0;
2983 MTAG_GLOBAL (mpt) = 1;
2984 add_referenced_var (mpt);
2985 VEC_safe_push (tree, heap, gimple_ssa_operands (cfun)->mpt_table, mpt);
2986 MPT_SYMBOLS (mpt) = BITMAP_ALLOC (&operands_bitmap_obstack);
2987 set_memory_partition (sym, mpt);
2990 return mpt;
2994 /* Dump memory partition information to FILE. */
2996 void
2997 dump_memory_partitions (FILE *file)
2999 unsigned i, npart;
3000 unsigned long nsyms;
3001 tree mpt;
3003 fprintf (file, "\nMemory partitions\n\n");
3004 for (i = 0, npart = 0, nsyms = 0;
3005 VEC_iterate (tree, gimple_ssa_operands (cfun)->mpt_table, i, mpt);
3006 i++)
3008 if (mpt)
3010 bitmap syms = MPT_SYMBOLS (mpt);
3011 unsigned long n = bitmap_count_bits (syms);
3013 fprintf (file, "#%u: ", i);
3014 print_generic_expr (file, mpt, 0);
3015 fprintf (file, ": %lu elements: ", n);
3016 dump_decl_set (file, syms);
3017 npart++;
3018 nsyms += n;
3022 fprintf (file, "\n%u memory partitions holding %lu symbols\n", npart, nsyms);
3026 /* Dump memory partition information to stderr. */
3028 void
3029 debug_memory_partitions (void)
3031 dump_memory_partitions (stderr);