PR c++/15745
[official-gcc.git] / gcc / tree-ssa-operands.c
blob4996e09e8549602921b01a9f375b0b20358638e9
1 /* SSA operands management for trees.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007 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 3, 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 COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "tree.h"
25 #include "flags.h"
26 #include "function.h"
27 #include "diagnostic.h"
28 #include "tree-flow.h"
29 #include "tree-inline.h"
30 #include "tree-pass.h"
31 #include "ggc.h"
32 #include "timevar.h"
33 #include "toplev.h"
34 #include "langhooks.h"
35 #include "ipa-reference.h"
37 /* This file contains the code required to manage the operands cache of the
38 SSA optimizer. For every stmt, we maintain an operand cache in the stmt
39 annotation. This cache contains operands that will be of interest to
40 optimizers and other passes wishing to manipulate the IL.
42 The operand type are broken up into REAL and VIRTUAL operands. The real
43 operands are represented as pointers into the stmt's operand tree. Thus
44 any manipulation of the real operands will be reflected in the actual tree.
45 Virtual operands are represented solely in the cache, although the base
46 variable for the SSA_NAME may, or may not occur in the stmt's tree.
47 Manipulation of the virtual operands will not be reflected in the stmt tree.
49 The routines in this file are concerned with creating this operand cache
50 from a stmt tree.
52 The operand tree is the parsed by the various get_* routines which look
53 through the stmt tree for the occurrence of operands which may be of
54 interest, and calls are made to the append_* routines whenever one is
55 found. There are 4 of these routines, each representing one of the
56 4 types of operands. Defs, Uses, Virtual Uses, and Virtual May Defs.
58 The append_* routines check for duplication, and simply keep a list of
59 unique objects for each operand type in the build_* extendable vectors.
61 Once the stmt tree is completely parsed, the finalize_ssa_operands()
62 routine is called, which proceeds to perform the finalization routine
63 on each of the 4 operand vectors which have been built up.
65 If the stmt had a previous operand cache, the finalization routines
66 attempt to match up the new operands with the old ones. If it's a perfect
67 match, the old vector is simply reused. If it isn't a perfect match, then
68 a new vector is created and the new operands are placed there. For
69 virtual operands, if the previous cache had SSA_NAME version of a
70 variable, and that same variable occurs in the same operands cache, then
71 the new cache vector will also get the same SSA_NAME.
73 i.e., if a stmt had a VUSE of 'a_5', and 'a' occurs in the new operand
74 vector for VUSE, then the new vector will also be modified such that
75 it contains 'a_5' rather than 'a'. */
78 /* Structure storing statistics on how many call clobbers we have, and
79 how many where avoided. */
81 static struct
83 /* Number of call-clobbered ops we attempt to add to calls in
84 add_call_clobbered_mem_symbols. */
85 unsigned int clobbered_vars;
87 /* Number of write-clobbers (VDEFs) avoided by using
88 not_written information. */
89 unsigned int static_write_clobbers_avoided;
91 /* Number of reads (VUSEs) avoided by using not_read information. */
92 unsigned int static_read_clobbers_avoided;
94 /* Number of write-clobbers avoided because the variable can't escape to
95 this call. */
96 unsigned int unescapable_clobbers_avoided;
98 /* Number of read-only uses we attempt to add to calls in
99 add_call_read_mem_symbols. */
100 unsigned int readonly_clobbers;
102 /* Number of read-only uses we avoid using not_read information. */
103 unsigned int static_readonly_clobbers_avoided;
104 } clobber_stats;
107 /* Flags to describe operand properties in helpers. */
109 /* By default, operands are loaded. */
110 #define opf_use 0
112 /* Operand is the target of an assignment expression or a
113 call-clobbered variable. */
114 #define opf_def (1 << 0)
116 /* No virtual operands should be created in the expression. This is used
117 when traversing ADDR_EXPR nodes which have different semantics than
118 other expressions. Inside an ADDR_EXPR node, the only operands that we
119 need to consider are indices into arrays. For instance, &a.b[i] should
120 generate a USE of 'i' but it should not generate a VUSE for 'a' nor a
121 VUSE for 'b'. */
122 #define opf_no_vops (1 << 1)
124 /* Operand is an implicit reference. This is used to distinguish
125 explicit assignments in the form of GIMPLE_MODIFY_STMT from
126 clobbering sites like function calls or ASM_EXPRs. */
127 #define opf_implicit (1 << 2)
129 /* Array for building all the def operands. */
130 static VEC(tree,heap) *build_defs;
132 /* Array for building all the use operands. */
133 static VEC(tree,heap) *build_uses;
135 /* Set for building all the VDEF operands. */
136 static VEC(tree,heap) *build_vdefs;
138 /* Set for building all the VUSE operands. */
139 static VEC(tree,heap) *build_vuses;
141 /* Bitmap obstack for our datastructures that needs to survive across
142 compilations of multiple functions. */
143 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 (const_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 const_tree const e1 = *((const_tree const *)p);
217 const_tree const e2 = *((const_tree const *)q);
218 const unsigned int u1 = get_name_decl (e1);
219 const unsigned int u2 = get_name_decl (e2);
221 /* We want to sort in ascending order. They can never be equal. */
222 #ifdef ENABLE_CHECKING
223 gcc_assert (u1 != u2);
224 #endif
225 return (u1 > u2 ? 1 : -1);
229 /* Sort the virtual operands in LIST from lowest DECL_UID to highest. */
231 static inline void
232 operand_build_sort_virtual (VEC(tree,heap) *list)
234 int num = VEC_length (tree, list);
236 if (num < 2)
237 return;
239 if (num == 2)
241 if (get_name_decl (VEC_index (tree, list, 0))
242 > get_name_decl (VEC_index (tree, list, 1)))
244 /* Swap elements if in the wrong order. */
245 tree tmp = VEC_index (tree, list, 0);
246 VEC_replace (tree, list, 0, VEC_index (tree, list, 1));
247 VEC_replace (tree, list, 1, tmp);
249 return;
252 /* There are 3 or more elements, call qsort. */
253 qsort (VEC_address (tree, list),
254 VEC_length (tree, list),
255 sizeof (tree),
256 operand_build_cmp);
260 /* Return true if the SSA operands cache is active. */
262 bool
263 ssa_operands_active (void)
265 return cfun->gimple_df && gimple_ssa_operands (cfun)->ops_active;
269 /* VOPs are of variable sized, so the free list maps "free buckets" to the
270 following table:
271 bucket # operands
272 ------ ----------
276 15 16
277 16 17-24
278 17 25-32
279 18 31-40
281 29 121-128
282 Any VOPs larger than this are simply added to the largest bucket when they
283 are freed. */
286 /* Return the number of operands used in bucket BUCKET. */
288 static inline int
289 vop_free_bucket_size (int bucket)
291 #ifdef ENABLE_CHECKING
292 gcc_assert (bucket >= 0 && bucket < NUM_VOP_FREE_BUCKETS);
293 #endif
294 if (bucket < 16)
295 return bucket + 1;
296 return (bucket - 13) * 8;
300 /* For a vop of NUM operands, return the bucket NUM belongs to. If NUM is
301 beyond the end of the bucket table, return -1. */
303 static inline int
304 vop_free_bucket_index (int num)
306 gcc_assert (num > 0 && NUM_VOP_FREE_BUCKETS > 16);
308 /* Sizes 1 through 16 use buckets 0-15. */
309 if (num <= 16)
310 return num - 1;
311 /* Buckets 16 - NUM_VOP_FREE_BUCKETS represent 8 unit chunks. */
312 num = 14 + (num - 1) / 8;
313 if (num >= NUM_VOP_FREE_BUCKETS)
314 return -1;
315 else
316 return num;
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_def;
594 new_def = alloc_def ();
595 DEF_OP_PTR (new_def) = op;
596 last->next = new_def;
597 new_def->next = NULL;
598 return new_def;
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_use;
609 new_use = alloc_use ();
610 USE_OP_PTR (new_use)->use = op;
611 link_imm_use_stmt (USE_OP_PTR (new_use), *op, stmt);
612 last->next = new_use;
613 new_use->next = NULL;
614 return new_use;
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_vop;
626 int x;
628 new_vop = alloc_vop (num);
629 for (x = 0; x < num; x++)
631 VUSE_OP_PTR (new_vop, x)->prev = NULL;
632 SET_VUSE_OP (new_vop, x, op);
633 VUSE_OP_PTR (new_vop, x)->use = &new_vop->usev.uses[x].use_var;
634 link_imm_use_stmt (VUSE_OP_PTR (new_vop, x),
635 new_vop->usev.uses[x].use_var, stmt);
638 if (prev)
639 prev->next = new_vop;
640 new_vop->next = NULL;
641 return new_vop;
645 /* Adds OP to the list of vuses of statement STMT after LAST, and moves
646 LAST to the new element. */
648 static inline voptype_p
649 add_vuse_op (tree stmt, tree op, int num, voptype_p last)
651 voptype_p new_vop = add_vop (stmt, op, num, last);
652 VDEF_RESULT (new_vop) = NULL_TREE;
653 return new_vop;
657 /* Adds OP to the list of vdefs of statement STMT after LAST, and moves
658 LAST to the new element. */
660 static inline voptype_p
661 add_vdef_op (tree stmt, tree op, int num, voptype_p last)
663 voptype_p new_vop = add_vop (stmt, op, num, last);
664 VDEF_RESULT (new_vop) = op;
665 return new_vop;
669 /* Takes elements from build_defs and turns them into def operands of STMT.
670 TODO -- Make build_defs VEC of tree *. */
672 static inline void
673 finalize_ssa_defs (tree stmt)
675 unsigned new_i;
676 struct def_optype_d new_list;
677 def_optype_p old_ops, last;
678 unsigned int num = VEC_length (tree, build_defs);
680 /* There should only be a single real definition per assignment. */
681 gcc_assert ((stmt && TREE_CODE (stmt) != GIMPLE_MODIFY_STMT) || num <= 1);
683 new_list.next = NULL;
684 last = &new_list;
686 old_ops = DEF_OPS (stmt);
688 new_i = 0;
690 /* Check for the common case of 1 def that hasn't changed. */
691 if (old_ops && old_ops->next == NULL && num == 1
692 && (tree *) VEC_index (tree, build_defs, 0) == DEF_OP_PTR (old_ops))
693 return;
695 /* If there is anything in the old list, free it. */
696 if (old_ops)
698 old_ops->next = gimple_ssa_operands (cfun)->free_defs;
699 gimple_ssa_operands (cfun)->free_defs = old_ops;
702 /* If there is anything remaining in the build_defs list, simply emit it. */
703 for ( ; new_i < num; new_i++)
704 last = add_def_op ((tree *) VEC_index (tree, build_defs, new_i), last);
706 /* Now set the stmt's operands. */
707 DEF_OPS (stmt) = new_list.next;
709 #ifdef ENABLE_CHECKING
711 def_optype_p ptr;
712 unsigned x = 0;
713 for (ptr = DEF_OPS (stmt); ptr; ptr = ptr->next)
714 x++;
716 gcc_assert (x == num);
718 #endif
722 /* Takes elements from build_uses and turns them into use operands of STMT.
723 TODO -- Make build_uses VEC of tree *. */
725 static inline void
726 finalize_ssa_uses (tree stmt)
728 unsigned new_i;
729 struct use_optype_d new_list;
730 use_optype_p old_ops, ptr, last;
732 #ifdef ENABLE_CHECKING
734 unsigned x;
735 unsigned num = VEC_length (tree, build_uses);
737 /* If the pointer to the operand is the statement itself, something is
738 wrong. It means that we are pointing to a local variable (the
739 initial call to update_stmt_operands does not pass a pointer to a
740 statement). */
741 for (x = 0; x < num; x++)
742 gcc_assert (*((tree *)VEC_index (tree, build_uses, x)) != stmt);
744 #endif
746 new_list.next = NULL;
747 last = &new_list;
749 old_ops = USE_OPS (stmt);
751 /* If there is anything in the old list, free it. */
752 if (old_ops)
754 for (ptr = old_ops; ptr; ptr = ptr->next)
755 delink_imm_use (USE_OP_PTR (ptr));
756 old_ops->next = gimple_ssa_operands (cfun)->free_uses;
757 gimple_ssa_operands (cfun)->free_uses = old_ops;
760 /* Now create nodes for all the new nodes. */
761 for (new_i = 0; new_i < VEC_length (tree, build_uses); new_i++)
762 last = add_use_op (stmt,
763 (tree *) VEC_index (tree, build_uses, new_i),
764 last);
766 /* Now set the stmt's operands. */
767 USE_OPS (stmt) = new_list.next;
769 #ifdef ENABLE_CHECKING
771 unsigned x = 0;
772 for (ptr = USE_OPS (stmt); ptr; ptr = ptr->next)
773 x++;
775 gcc_assert (x == VEC_length (tree, build_uses));
777 #endif
781 /* Takes elements from BUILD_VDEFS and turns them into vdef operands of
782 STMT. FIXME, for now VDEF operators should have a single operand
783 in their RHS. */
785 static inline void
786 finalize_ssa_vdefs (tree stmt)
788 unsigned new_i;
789 struct voptype_d new_list;
790 voptype_p old_ops, ptr, last;
791 stmt_ann_t ann = stmt_ann (stmt);
793 /* Set the symbols referenced by STMT. */
794 if (!bitmap_empty_p (build_stores))
796 if (ann->operands.stores == NULL)
797 ann->operands.stores = BITMAP_ALLOC (&operands_bitmap_obstack);
799 bitmap_copy (ann->operands.stores, build_stores);
801 else
802 BITMAP_FREE (ann->operands.stores);
804 /* If aliases have not been computed, do not instantiate a virtual
805 operator on STMT. Initially, we only compute the SSA form on
806 GIMPLE registers. The virtual SSA form is only computed after
807 alias analysis, so virtual operators will remain unrenamed and
808 the verifier will complain. However, alias analysis needs to
809 access symbol load/store information, so we need to compute
810 those. */
811 if (!gimple_aliases_computed_p (cfun))
812 return;
814 new_list.next = NULL;
815 last = &new_list;
817 old_ops = VDEF_OPS (stmt);
818 new_i = 0;
819 while (old_ops && new_i < VEC_length (tree, build_vdefs))
821 tree op = VEC_index (tree, build_vdefs, new_i);
822 unsigned new_uid = get_name_decl (op);
823 unsigned old_uid = get_name_decl (VDEF_RESULT (old_ops));
825 /* FIXME, for now each VDEF operator should have at most one
826 operand in their RHS. */
827 gcc_assert (VDEF_NUM (old_ops) == 1);
829 if (old_uid == new_uid)
831 /* If the symbols are the same, reuse the existing operand. */
832 last->next = old_ops;
833 last = old_ops;
834 old_ops = old_ops->next;
835 last->next = NULL;
836 set_virtual_use_link (VDEF_OP_PTR (last, 0), stmt);
837 new_i++;
839 else if (old_uid < new_uid)
841 /* If old is less than new, old goes to the free list. */
842 voptype_p next;
843 delink_imm_use (VDEF_OP_PTR (old_ops, 0));
844 next = old_ops->next;
845 add_vop_to_freelist (old_ops);
846 old_ops = next;
848 else
850 /* This is a new operand. */
851 last = add_vdef_op (stmt, op, 1, last);
852 new_i++;
856 /* If there is anything remaining in BUILD_VDEFS, simply emit it. */
857 for ( ; new_i < VEC_length (tree, build_vdefs); new_i++)
858 last = add_vdef_op (stmt, VEC_index (tree, build_vdefs, new_i), 1, last);
860 /* If there is anything in the old list, free it. */
861 if (old_ops)
863 for (ptr = old_ops; ptr; ptr = last)
865 last = ptr->next;
866 delink_imm_use (VDEF_OP_PTR (ptr, 0));
867 add_vop_to_freelist (ptr);
871 /* Now set STMT's operands. */
872 VDEF_OPS (stmt) = new_list.next;
874 #ifdef ENABLE_CHECKING
876 unsigned x = 0;
877 for (ptr = VDEF_OPS (stmt); ptr; ptr = ptr->next)
878 x++;
880 gcc_assert (x == VEC_length (tree, build_vdefs));
882 #endif
886 /* Takes elements from BUILD_VUSES and turns them into VUSE operands of
887 STMT. */
889 static inline void
890 finalize_ssa_vuse_ops (tree stmt)
892 unsigned new_i, old_i;
893 voptype_p old_ops, last;
894 VEC(tree,heap) *new_ops;
895 stmt_ann_t ann;
897 /* Set the symbols referenced by STMT. */
898 ann = stmt_ann (stmt);
899 if (!bitmap_empty_p (build_loads))
901 if (ann->operands.loads == NULL)
902 ann->operands.loads = BITMAP_ALLOC (&operands_bitmap_obstack);
904 bitmap_copy (ann->operands.loads, build_loads);
906 else
907 BITMAP_FREE (ann->operands.loads);
909 /* If aliases have not been computed, do not instantiate a virtual
910 operator on STMT. Initially, we only compute the SSA form on
911 GIMPLE registers. The virtual SSA form is only computed after
912 alias analysis, so virtual operators will remain unrenamed and
913 the verifier will complain. However, alias analysis needs to
914 access symbol load/store information, so we need to compute
915 those. */
916 if (!gimple_aliases_computed_p (cfun))
917 return;
919 /* STMT should have at most one VUSE operator. */
920 old_ops = VUSE_OPS (stmt);
921 gcc_assert (old_ops == NULL || old_ops->next == NULL);
923 new_ops = NULL;
924 new_i = old_i = 0;
925 while (old_ops
926 && old_i < VUSE_NUM (old_ops)
927 && new_i < VEC_length (tree, build_vuses))
929 tree new_op = VEC_index (tree, build_vuses, new_i);
930 tree old_op = VUSE_OP (old_ops, old_i);
931 unsigned new_uid = get_name_decl (new_op);
932 unsigned old_uid = get_name_decl (old_op);
934 if (old_uid == new_uid)
936 /* If the symbols are the same, reuse the existing operand. */
937 VEC_safe_push (tree, heap, new_ops, old_op);
938 new_i++;
939 old_i++;
941 else if (old_uid < new_uid)
943 /* If OLD_UID is less than NEW_UID, the old operand has
944 disappeared, skip to the next old operand. */
945 old_i++;
947 else
949 /* This is a new operand. */
950 VEC_safe_push (tree, heap, new_ops, new_op);
951 new_i++;
955 /* If there is anything remaining in the build_vuses list, simply emit it. */
956 for ( ; new_i < VEC_length (tree, build_vuses); new_i++)
957 VEC_safe_push (tree, heap, new_ops, VEC_index (tree, build_vuses, new_i));
959 /* If there is anything in the old list, free it. */
960 if (old_ops)
962 for (old_i = 0; old_i < VUSE_NUM (old_ops); old_i++)
963 delink_imm_use (VUSE_OP_PTR (old_ops, old_i));
964 add_vop_to_freelist (old_ops);
965 VUSE_OPS (stmt) = NULL;
968 /* If there are any operands, instantiate a VUSE operator for STMT. */
969 if (new_ops)
971 tree op;
972 unsigned i;
974 last = add_vuse_op (stmt, NULL, VEC_length (tree, new_ops), NULL);
976 for (i = 0; VEC_iterate (tree, new_ops, i, op); i++)
977 SET_USE (VUSE_OP_PTR (last, (int) i), op);
979 VUSE_OPS (stmt) = last;
980 VEC_free (tree, heap, new_ops);
983 #ifdef ENABLE_CHECKING
985 unsigned x;
987 if (VUSE_OPS (stmt))
989 gcc_assert (VUSE_OPS (stmt)->next == NULL);
990 x = VUSE_NUM (VUSE_OPS (stmt));
992 else
993 x = 0;
995 gcc_assert (x == VEC_length (tree, build_vuses));
997 #endif
1000 /* Return a new VUSE operand vector for STMT. */
1002 static void
1003 finalize_ssa_vuses (tree stmt)
1005 unsigned num, num_vdefs;
1006 unsigned vuse_index;
1008 /* Remove superfluous VUSE operands. If the statement already has a
1009 VDEF operator for a variable 'a', then a VUSE for 'a' is not
1010 needed because VDEFs imply a VUSE of the variable. For instance,
1011 suppose that variable 'a' is pointed-to by p and q:
1013 # VUSE <a_2>
1014 # a_3 = VDEF <a_2>
1015 *p = *q;
1017 The VUSE <a_2> is superfluous because it is implied by the
1018 VDEF operator. */
1019 num = VEC_length (tree, build_vuses);
1020 num_vdefs = VEC_length (tree, build_vdefs);
1022 if (num > 0 && num_vdefs > 0)
1023 for (vuse_index = 0; vuse_index < VEC_length (tree, build_vuses); )
1025 tree vuse;
1026 vuse = VEC_index (tree, build_vuses, vuse_index);
1027 if (TREE_CODE (vuse) != SSA_NAME)
1029 var_ann_t ann = var_ann (vuse);
1030 ann->in_vuse_list = 0;
1031 if (ann->in_vdef_list)
1033 VEC_ordered_remove (tree, build_vuses, vuse_index);
1034 continue;
1037 vuse_index++;
1040 finalize_ssa_vuse_ops (stmt);
1044 /* Clear the in_list bits and empty the build array for VDEFs and
1045 VUSEs. */
1047 static inline void
1048 cleanup_build_arrays (void)
1050 unsigned i;
1051 tree t;
1053 for (i = 0; VEC_iterate (tree, build_vdefs, i, t); i++)
1054 if (TREE_CODE (t) != SSA_NAME)
1055 var_ann (t)->in_vdef_list = false;
1057 for (i = 0; VEC_iterate (tree, build_vuses, i, t); i++)
1058 if (TREE_CODE (t) != SSA_NAME)
1059 var_ann (t)->in_vuse_list = false;
1061 VEC_truncate (tree, build_vdefs, 0);
1062 VEC_truncate (tree, build_vuses, 0);
1063 VEC_truncate (tree, build_defs, 0);
1064 VEC_truncate (tree, build_uses, 0);
1065 bitmap_clear (build_loads);
1066 bitmap_clear (build_stores);
1070 /* Finalize all the build vectors, fill the new ones into INFO. */
1072 static inline void
1073 finalize_ssa_stmt_operands (tree stmt)
1075 finalize_ssa_defs (stmt);
1076 finalize_ssa_uses (stmt);
1077 finalize_ssa_vdefs (stmt);
1078 finalize_ssa_vuses (stmt);
1079 cleanup_build_arrays ();
1083 /* Start the process of building up operands vectors in INFO. */
1085 static inline void
1086 start_ssa_stmt_operands (void)
1088 gcc_assert (VEC_length (tree, build_defs) == 0);
1089 gcc_assert (VEC_length (tree, build_uses) == 0);
1090 gcc_assert (VEC_length (tree, build_vuses) == 0);
1091 gcc_assert (VEC_length (tree, build_vdefs) == 0);
1092 gcc_assert (bitmap_empty_p (build_loads));
1093 gcc_assert (bitmap_empty_p (build_stores));
1097 /* Add DEF_P to the list of pointers to operands. */
1099 static inline void
1100 append_def (tree *def_p)
1102 VEC_safe_push (tree, heap, build_defs, (tree) def_p);
1106 /* Add USE_P to the list of pointers to operands. */
1108 static inline void
1109 append_use (tree *use_p)
1111 VEC_safe_push (tree, heap, build_uses, (tree) use_p);
1115 /* Add VAR to the set of variables that require a VDEF operator. */
1117 static inline void
1118 append_vdef (tree var)
1120 tree sym;
1122 if (TREE_CODE (var) != SSA_NAME)
1124 tree mpt;
1125 var_ann_t ann;
1127 /* If VAR belongs to a memory partition, use it instead of VAR. */
1128 mpt = memory_partition (var);
1129 if (mpt)
1130 var = mpt;
1132 /* Don't allow duplicate entries. */
1133 ann = get_var_ann (var);
1134 if (ann->in_vdef_list)
1135 return;
1137 ann->in_vdef_list = true;
1138 sym = var;
1140 else
1141 sym = SSA_NAME_VAR (var);
1143 VEC_safe_push (tree, heap, build_vdefs, var);
1144 bitmap_set_bit (build_stores, DECL_UID (sym));
1148 /* Add VAR to the set of variables that require a VUSE operator. */
1150 static inline void
1151 append_vuse (tree var)
1153 tree sym;
1155 if (TREE_CODE (var) != SSA_NAME)
1157 tree mpt;
1158 var_ann_t ann;
1160 /* If VAR belongs to a memory partition, use it instead of VAR. */
1161 mpt = memory_partition (var);
1162 if (mpt)
1163 var = mpt;
1165 /* Don't allow duplicate entries. */
1166 ann = get_var_ann (var);
1167 if (ann->in_vuse_list || ann->in_vdef_list)
1168 return;
1170 ann->in_vuse_list = true;
1171 sym = var;
1173 else
1174 sym = SSA_NAME_VAR (var);
1176 VEC_safe_push (tree, heap, build_vuses, var);
1177 bitmap_set_bit (build_loads, DECL_UID (sym));
1181 /* REF is a tree that contains the entire pointer dereference
1182 expression, if available, or NULL otherwise. ALIAS is the variable
1183 we are asking if REF can access. OFFSET and SIZE come from the
1184 memory access expression that generated this virtual operand.
1186 XXX: We should handle the NO_ALIAS attributes here. */
1188 static bool
1189 access_can_touch_variable (tree ref, tree alias, HOST_WIDE_INT offset,
1190 HOST_WIDE_INT size)
1192 bool offsetgtz = offset > 0;
1193 unsigned HOST_WIDE_INT uoffset = (unsigned HOST_WIDE_INT) offset;
1194 tree base = ref ? get_base_address (ref) : NULL;
1196 /* If ALIAS is .GLOBAL_VAR then the memory reference REF must be
1197 using a call-clobbered memory tag. By definition, call-clobbered
1198 memory tags can always touch .GLOBAL_VAR. */
1199 if (alias == gimple_global_var (cfun))
1200 return true;
1202 /* If ref is a TARGET_MEM_REF, just return true, as we can't really
1203 disambiguate them right now. */
1204 if (ref && TREE_CODE (ref) == TARGET_MEM_REF)
1205 return true;
1207 /* If ALIAS is an SFT, it can't be touched if the offset
1208 and size of the access is not overlapping with the SFT offset and
1209 size. This is only true if we are accessing through a pointer
1210 to a type that is the same as SFT_PARENT_VAR. Otherwise, we may
1211 be accessing through a pointer to some substruct of the
1212 structure, and if we try to prune there, we will have the wrong
1213 offset, and get the wrong answer.
1214 i.e., we can't prune without more work if we have something like
1216 struct gcc_target
1218 struct asm_out
1220 const char *byte_op;
1221 struct asm_int_op
1223 const char *hi;
1224 } aligned_op;
1225 } asm_out;
1226 } targetm;
1228 foo = &targetm.asm_out.aligned_op;
1229 return foo->hi;
1231 SFT.1, which represents hi, will have SFT_OFFSET=32 because in
1232 terms of SFT_PARENT_VAR, that is where it is.
1233 However, the access through the foo pointer will be at offset 0. */
1234 if (size != -1
1235 && TREE_CODE (alias) == STRUCT_FIELD_TAG
1236 && base
1237 && TREE_TYPE (base) == TREE_TYPE (SFT_PARENT_VAR (alias))
1238 && !overlap_subvar (offset, size, alias, NULL))
1240 #ifdef ACCESS_DEBUGGING
1241 fprintf (stderr, "Access to ");
1242 print_generic_expr (stderr, ref, 0);
1243 fprintf (stderr, " may not touch ");
1244 print_generic_expr (stderr, alias, 0);
1245 fprintf (stderr, " in function %s\n", get_name (current_function_decl));
1246 #endif
1247 return false;
1250 /* Without strict aliasing, it is impossible for a component access
1251 through a pointer to touch a random variable, unless that
1252 variable *is* a structure or a pointer.
1254 That is, given p->c, and some random global variable b,
1255 there is no legal way that p->c could be an access to b.
1257 Without strict aliasing on, we consider it legal to do something
1258 like:
1260 struct foos { int l; };
1261 int foo;
1262 static struct foos *getfoo(void);
1263 int main (void)
1265 struct foos *f = getfoo();
1266 f->l = 1;
1267 foo = 2;
1268 if (f->l == 1)
1269 abort();
1270 exit(0);
1272 static struct foos *getfoo(void)
1273 { return (struct foos *)&foo; }
1275 (taken from 20000623-1.c)
1277 The docs also say/imply that access through union pointers
1278 is legal (but *not* if you take the address of the union member,
1279 i.e. the inverse), such that you can do
1281 typedef union {
1282 int d;
1283 } U;
1285 int rv;
1286 void breakme()
1288 U *rv0;
1289 U *pretmp = (U*)&rv;
1290 rv0 = pretmp;
1291 rv0->d = 42;
1293 To implement this, we just punt on accesses through union
1294 pointers entirely.
1296 else if (ref
1297 && flag_strict_aliasing
1298 && TREE_CODE (ref) != INDIRECT_REF
1299 && !MTAG_P (alias)
1300 && base
1301 && (TREE_CODE (base) != INDIRECT_REF
1302 || TREE_CODE (TREE_TYPE (base)) != UNION_TYPE)
1303 && !AGGREGATE_TYPE_P (TREE_TYPE (alias))
1304 && TREE_CODE (TREE_TYPE (alias)) != COMPLEX_TYPE
1305 && !var_ann (alias)->is_heapvar
1306 /* When the struct has may_alias attached to it, we need not to
1307 return true. */
1308 && get_alias_set (base))
1310 #ifdef ACCESS_DEBUGGING
1311 fprintf (stderr, "Access to ");
1312 print_generic_expr (stderr, ref, 0);
1313 fprintf (stderr, " may not touch ");
1314 print_generic_expr (stderr, alias, 0);
1315 fprintf (stderr, " in function %s\n", get_name (current_function_decl));
1316 #endif
1317 return false;
1320 /* If the offset of the access is greater than the size of one of
1321 the possible aliases, it can't be touching that alias, because it
1322 would be past the end of the structure. */
1323 else if (ref
1324 && flag_strict_aliasing
1325 && TREE_CODE (ref) != INDIRECT_REF
1326 && !MTAG_P (alias)
1327 && !POINTER_TYPE_P (TREE_TYPE (alias))
1328 && offsetgtz
1329 && DECL_SIZE (alias)
1330 && TREE_CODE (DECL_SIZE (alias)) == INTEGER_CST
1331 && uoffset > TREE_INT_CST_LOW (DECL_SIZE (alias)))
1333 #ifdef ACCESS_DEBUGGING
1334 fprintf (stderr, "Access to ");
1335 print_generic_expr (stderr, ref, 0);
1336 fprintf (stderr, " may not touch ");
1337 print_generic_expr (stderr, alias, 0);
1338 fprintf (stderr, " in function %s\n", get_name (current_function_decl));
1339 #endif
1340 return false;
1343 return true;
1346 /* Add the actual variables FULL_REF can access, given a member of
1347 full_ref's points-to set VAR, where FULL_REF is an access of SIZE at
1348 OFFSET from var. IS_CALL_SITE is true if this is a call, and IS_DEF
1349 is true if this is supposed to be a vdef, and false if this should
1350 be a VUSE.
1352 The real purpose of this function is to take a points-to set for a
1353 pointer to a structure, say
1355 struct s {
1356 int a;
1357 int b;
1358 } foo, *foop = &foo;
1360 and discover which variables an access, such as foop->b, can alias.
1362 This is necessary because foop only actually points to foo's first
1363 member, so that is all the points-to set contains. However, an access
1364 to foop->a may be touching some single SFT if we have created some
1365 SFT's for a structure. */
1367 static bool
1368 add_vars_for_offset (tree full_ref, tree var, HOST_WIDE_INT offset,
1369 HOST_WIDE_INT size, bool is_call_site, bool is_def)
1371 /* Call-clobbered tags may have non-call-clobbered
1372 symbols in their alias sets. Ignore them if we are
1373 adding VOPs for a call site. */
1374 if (is_call_site && !is_call_clobbered (var))
1375 return false;
1377 /* For offset 0, we already have the right variable. If there is no
1378 full_ref, this is not a place we care about (All component
1379 related accesses that go through pointers will have full_ref not
1380 NULL).
1381 Any var for which we didn't create SFT's can't be
1382 distinguished. */
1383 if (!full_ref || (offset == 0 && size != -1)
1384 || (TREE_CODE (var) != STRUCT_FIELD_TAG
1385 && (!var_can_have_subvars (var) || !get_subvars_for_var (var))))
1387 if (!access_can_touch_variable (full_ref, var, offset, size))
1388 return false;
1390 if (is_def)
1391 append_vdef (var);
1392 else
1393 append_vuse (var);
1394 return true;
1396 else if (TREE_CODE (var) == STRUCT_FIELD_TAG)
1398 if (size == -1)
1400 bool added = false;
1401 subvar_t sv = get_subvars_for_var (SFT_PARENT_VAR (var));
1402 for (; sv; sv = sv->next)
1404 if (overlap_subvar (SFT_OFFSET (var) + offset, size,
1405 sv->var, NULL)
1406 && access_can_touch_variable (full_ref, sv->var,
1407 offset, size))
1409 added = true;
1410 if (is_def)
1411 append_vdef (sv->var);
1412 else
1413 append_vuse (sv->var);
1416 return added;
1418 else
1420 bool added = false;
1421 subvar_t sv = get_subvars_for_var (SFT_PARENT_VAR (var));
1422 for (; sv; sv = sv->next)
1424 /* Once we hit the end of the parts that could touch,
1425 stop looking. */
1426 if (SFT_OFFSET (var) + offset + size <= SFT_OFFSET (sv->var))
1427 break;
1428 if (overlap_subvar (SFT_OFFSET (var) + offset, size,
1429 sv->var, NULL)
1430 && access_can_touch_variable (full_ref, sv->var, offset,
1431 size))
1433 added = true;
1434 if (is_def)
1435 append_vdef (sv->var);
1436 else
1437 append_vuse (sv->var);
1440 return added;
1444 return false;
1447 /* Add VAR to the virtual operands array. FLAGS is as in
1448 get_expr_operands. FULL_REF is a tree that contains the entire
1449 pointer dereference expression, if available, or NULL otherwise.
1450 OFFSET and SIZE come from the memory access expression that
1451 generated this virtual operand. IS_CALL_SITE is true if the
1452 affected statement is a call site. */
1454 static void
1455 add_virtual_operand (tree var, stmt_ann_t s_ann, int flags,
1456 tree full_ref, HOST_WIDE_INT offset,
1457 HOST_WIDE_INT size, bool is_call_site)
1459 bitmap aliases = NULL;
1460 tree sym;
1461 var_ann_t v_ann;
1463 sym = (TREE_CODE (var) == SSA_NAME ? SSA_NAME_VAR (var) : var);
1464 v_ann = var_ann (sym);
1466 /* Mark the statement as having memory operands. */
1467 s_ann->references_memory = true;
1469 /* If the variable cannot be modified and this is a VDEF change
1470 it into a VUSE. This happens when read-only variables are marked
1471 call-clobbered and/or aliased to writable variables. So we only
1472 check that this only happens on non-specific stores.
1474 Note that if this is a specific store, i.e. associated with a
1475 GIMPLE_MODIFY_STMT, then we can't suppress the VDEF, lest we run
1476 into validation problems.
1478 This can happen when programs cast away const, leaving us with a
1479 store to read-only memory. If the statement is actually executed
1480 at runtime, then the program is ill formed. If the statement is
1481 not executed then all is well. At the very least, we cannot ICE. */
1482 if ((flags & opf_implicit) && unmodifiable_var_p (var))
1483 flags &= ~opf_def;
1485 /* The variable is not a GIMPLE register. Add it (or its aliases) to
1486 virtual operands, unless the caller has specifically requested
1487 not to add virtual operands (used when adding operands inside an
1488 ADDR_EXPR expression). */
1489 if (flags & opf_no_vops)
1490 return;
1492 if (MTAG_P (var))
1493 aliases = MTAG_ALIASES (var);
1495 if (aliases == NULL)
1497 if (!gimple_aliases_computed_p (cfun))
1498 s_ann->has_volatile_ops = true;
1500 /* The variable is not aliased or it is an alias tag. */
1501 if (flags & opf_def)
1502 append_vdef (var);
1503 else
1504 append_vuse (var);
1506 else
1508 bitmap_iterator bi;
1509 unsigned int i;
1510 tree al;
1512 /* The variable is aliased. Add its aliases to the virtual
1513 operands. */
1514 gcc_assert (!bitmap_empty_p (aliases));
1516 if (flags & opf_def)
1518 bool none_added = true;
1519 EXECUTE_IF_SET_IN_BITMAP (aliases, 0, i, bi)
1521 al = referenced_var (i);
1522 none_added &= !add_vars_for_offset (full_ref, al, offset, size,
1523 is_call_site, true);
1526 /* If the variable is also an alias tag, add a virtual
1527 operand for it, otherwise we will miss representing
1528 references to the members of the variable's alias set.
1529 This fixes the bug in gcc.c-torture/execute/20020503-1.c.
1531 It is also necessary to add bare defs on clobbers for
1532 SMT's, so that bare SMT uses caused by pruning all the
1533 aliases will link up properly with calls. In order to
1534 keep the number of these bare defs we add down to the
1535 minimum necessary, we keep track of which SMT's were used
1536 alone in statement vdefs or VUSEs. */
1537 if (none_added
1538 || (TREE_CODE (var) == SYMBOL_MEMORY_TAG
1539 && is_call_site))
1540 append_vdef (var);
1542 else
1544 bool none_added = true;
1545 EXECUTE_IF_SET_IN_BITMAP (aliases, 0, i, bi)
1547 al = referenced_var (i);
1548 none_added &= !add_vars_for_offset (full_ref, al, offset, size,
1549 is_call_site, false);
1553 /* Even if no aliases have been added, we still need to
1554 establish def-use and use-def chains, lest
1555 transformations think that this is not a memory
1556 reference. For an example of this scenario, see
1557 testsuite/g++.dg/opt/cleanup1.C. */
1558 if (none_added)
1559 append_vuse (var);
1565 /* Add *VAR_P to the appropriate operand array for S_ANN. FLAGS is as in
1566 get_expr_operands. If *VAR_P is a GIMPLE register, it will be added to
1567 the statement's real operands, otherwise it is added to virtual
1568 operands. */
1570 static void
1571 add_stmt_operand (tree *var_p, stmt_ann_t s_ann, int flags)
1573 tree var, sym;
1574 var_ann_t v_ann;
1576 gcc_assert (SSA_VAR_P (*var_p) && s_ann);
1578 var = *var_p;
1579 sym = (TREE_CODE (var) == SSA_NAME ? SSA_NAME_VAR (var) : var);
1580 v_ann = var_ann (sym);
1582 /* Mark statements with volatile operands. */
1583 if (TREE_THIS_VOLATILE (sym))
1584 s_ann->has_volatile_ops = true;
1586 if (is_gimple_reg (sym))
1588 /* The variable is a GIMPLE register. Add it to real operands. */
1589 if (flags & opf_def)
1590 append_def (var_p);
1591 else
1592 append_use (var_p);
1594 else
1595 add_virtual_operand (var, s_ann, flags, NULL_TREE, 0, -1, false);
1599 /* A subroutine of get_expr_operands to handle INDIRECT_REF,
1600 ALIGN_INDIRECT_REF and MISALIGNED_INDIRECT_REF.
1602 STMT is the statement being processed, EXPR is the INDIRECT_REF
1603 that got us here.
1605 FLAGS is as in get_expr_operands.
1607 FULL_REF contains the full pointer dereference expression, if we
1608 have it, or NULL otherwise.
1610 OFFSET and SIZE are the location of the access inside the
1611 dereferenced pointer, if known.
1613 RECURSE_ON_BASE should be set to true if we want to continue
1614 calling get_expr_operands on the base pointer, and false if
1615 something else will do it for us. */
1617 static void
1618 get_indirect_ref_operands (tree stmt, tree expr, int flags,
1619 tree full_ref,
1620 HOST_WIDE_INT offset, HOST_WIDE_INT size,
1621 bool recurse_on_base)
1623 tree *pptr = &TREE_OPERAND (expr, 0);
1624 tree ptr = *pptr;
1625 stmt_ann_t s_ann = stmt_ann (stmt);
1627 s_ann->references_memory = true;
1628 if (TREE_THIS_VOLATILE (expr))
1629 s_ann->has_volatile_ops = true;
1631 if (SSA_VAR_P (ptr))
1633 struct ptr_info_def *pi = NULL;
1635 /* If PTR has flow-sensitive points-to information, use it. */
1636 if (TREE_CODE (ptr) == SSA_NAME
1637 && (pi = SSA_NAME_PTR_INFO (ptr)) != NULL
1638 && pi->name_mem_tag)
1640 /* PTR has its own memory tag. Use it. */
1641 add_virtual_operand (pi->name_mem_tag, s_ann, flags,
1642 full_ref, offset, size, false);
1644 else
1646 /* If PTR is not an SSA_NAME or it doesn't have a name
1647 tag, use its symbol memory tag. */
1648 var_ann_t v_ann;
1650 /* If we are emitting debugging dumps, display a warning if
1651 PTR is an SSA_NAME with no flow-sensitive alias
1652 information. That means that we may need to compute
1653 aliasing again. */
1654 if (dump_file
1655 && TREE_CODE (ptr) == SSA_NAME
1656 && pi == NULL)
1658 fprintf (dump_file,
1659 "NOTE: no flow-sensitive alias info for ");
1660 print_generic_expr (dump_file, ptr, dump_flags);
1661 fprintf (dump_file, " in ");
1662 print_generic_stmt (dump_file, stmt, dump_flags);
1665 if (TREE_CODE (ptr) == SSA_NAME)
1666 ptr = SSA_NAME_VAR (ptr);
1667 v_ann = var_ann (ptr);
1669 if (v_ann->symbol_mem_tag)
1670 add_virtual_operand (v_ann->symbol_mem_tag, s_ann, flags,
1671 full_ref, offset, size, false);
1673 /* Aliasing information is missing; mark statement as
1674 volatile so we won't optimize it out too actively. */
1675 else if (!gimple_aliases_computed_p (cfun)
1676 && (flags & opf_def))
1677 s_ann->has_volatile_ops = true;
1680 else if (TREE_CODE (ptr) == INTEGER_CST)
1682 /* If a constant is used as a pointer, we can't generate a real
1683 operand for it but we mark the statement volatile to prevent
1684 optimizations from messing things up. */
1685 s_ann->has_volatile_ops = true;
1686 return;
1688 else
1690 /* Ok, this isn't even is_gimple_min_invariant. Something's broke. */
1691 gcc_unreachable ();
1694 /* If requested, add a USE operand for the base pointer. */
1695 if (recurse_on_base)
1696 get_expr_operands (stmt, pptr, opf_use);
1700 /* A subroutine of get_expr_operands to handle TARGET_MEM_REF. */
1702 static void
1703 get_tmr_operands (tree stmt, tree expr, int flags)
1705 tree tag;
1706 stmt_ann_t s_ann = stmt_ann (stmt);
1708 /* This statement references memory. */
1709 s_ann->references_memory = 1;
1711 /* First record the real operands. */
1712 get_expr_operands (stmt, &TMR_BASE (expr), opf_use);
1713 get_expr_operands (stmt, &TMR_INDEX (expr), opf_use);
1715 if (TMR_SYMBOL (expr))
1716 add_to_addressable_set (TMR_SYMBOL (expr), &s_ann->addresses_taken);
1718 tag = TMR_TAG (expr);
1719 if (!tag)
1721 /* Something weird, so ensure that we will be careful. */
1722 s_ann->has_volatile_ops = true;
1723 return;
1725 if (!MTAG_P (tag))
1727 get_expr_operands (stmt, &tag, flags);
1728 return;
1731 add_virtual_operand (tag, s_ann, flags, expr, 0, -1, false);
1735 /* Add clobbering definitions for .GLOBAL_VAR or for each of the call
1736 clobbered variables in the function. */
1738 static void
1739 add_call_clobber_ops (tree stmt, tree callee)
1741 unsigned u;
1742 bitmap_iterator bi;
1743 stmt_ann_t s_ann = stmt_ann (stmt);
1744 bitmap not_read_b, not_written_b;
1746 /* If we created .GLOBAL_VAR earlier, just use it. */
1747 if (gimple_global_var (cfun))
1749 tree var = gimple_global_var (cfun);
1750 add_virtual_operand (var, s_ann, opf_def, NULL, 0, -1, true);
1751 return;
1754 /* Get info for local and module level statics. There is a bit
1755 set for each static if the call being processed does not read
1756 or write that variable. */
1757 not_read_b = callee ? ipa_reference_get_not_read_global (callee) : NULL;
1758 not_written_b = callee ? ipa_reference_get_not_written_global (callee) : NULL;
1760 /* Add a VDEF operand for every call clobbered variable. */
1761 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun), 0, u, bi)
1763 tree var = referenced_var_lookup (u);
1764 unsigned int escape_mask = var_ann (var)->escape_mask;
1765 tree real_var = var;
1766 bool not_read;
1767 bool not_written;
1769 /* Not read and not written are computed on regular vars, not
1770 subvars, so look at the parent var if this is an SFT. */
1771 if (TREE_CODE (var) == STRUCT_FIELD_TAG)
1772 real_var = SFT_PARENT_VAR (var);
1774 not_read = not_read_b
1775 ? bitmap_bit_p (not_read_b, DECL_UID (real_var))
1776 : false;
1778 not_written = not_written_b
1779 ? bitmap_bit_p (not_written_b, DECL_UID (real_var))
1780 : false;
1781 gcc_assert (!unmodifiable_var_p (var));
1783 clobber_stats.clobbered_vars++;
1785 /* See if this variable is really clobbered by this function. */
1787 /* Trivial case: Things escaping only to pure/const are not
1788 clobbered by non-pure-const, and only read by pure/const. */
1789 if ((escape_mask & ~(ESCAPE_TO_PURE_CONST)) == 0)
1791 tree call = get_call_expr_in (stmt);
1792 if (call_expr_flags (call) & (ECF_CONST | ECF_PURE))
1794 add_virtual_operand (var, s_ann, opf_use, NULL, 0, -1, true);
1795 clobber_stats.unescapable_clobbers_avoided++;
1796 continue;
1798 else
1800 clobber_stats.unescapable_clobbers_avoided++;
1801 continue;
1805 if (not_written)
1807 clobber_stats.static_write_clobbers_avoided++;
1808 if (!not_read)
1809 add_virtual_operand (var, s_ann, opf_use, NULL, 0, -1, true);
1810 else
1811 clobber_stats.static_read_clobbers_avoided++;
1813 else
1814 add_virtual_operand (var, s_ann, opf_def, NULL, 0, -1, true);
1819 /* Add VUSE operands for .GLOBAL_VAR or all call clobbered variables in the
1820 function. */
1822 static void
1823 add_call_read_ops (tree stmt, tree callee)
1825 unsigned u;
1826 bitmap_iterator bi;
1827 stmt_ann_t s_ann = stmt_ann (stmt);
1828 bitmap not_read_b;
1830 /* if the function is not pure, it may reference memory. Add
1831 a VUSE for .GLOBAL_VAR if it has been created. See add_referenced_var
1832 for the heuristic used to decide whether to create .GLOBAL_VAR. */
1833 if (gimple_global_var (cfun))
1835 tree var = gimple_global_var (cfun);
1836 add_virtual_operand (var, s_ann, opf_use, NULL, 0, -1, true);
1837 return;
1840 not_read_b = callee ? ipa_reference_get_not_read_global (callee) : NULL;
1842 /* Add a VUSE for each call-clobbered variable. */
1843 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun), 0, u, bi)
1845 tree var = referenced_var (u);
1846 tree real_var = var;
1847 bool not_read;
1849 clobber_stats.readonly_clobbers++;
1851 /* Not read and not written are computed on regular vars, not
1852 subvars, so look at the parent var if this is an SFT. */
1854 if (TREE_CODE (var) == STRUCT_FIELD_TAG)
1855 real_var = SFT_PARENT_VAR (var);
1857 not_read = not_read_b ? bitmap_bit_p (not_read_b, DECL_UID (real_var))
1858 : false;
1860 if (not_read)
1862 clobber_stats.static_readonly_clobbers_avoided++;
1863 continue;
1866 add_virtual_operand (var, s_ann, opf_use, NULL, 0, -1, true);
1871 /* A subroutine of get_expr_operands to handle CALL_EXPR. */
1873 static void
1874 get_call_expr_operands (tree stmt, tree expr)
1876 int call_flags = call_expr_flags (expr);
1877 int i, nargs;
1878 stmt_ann_t ann = stmt_ann (stmt);
1880 ann->references_memory = true;
1882 /* If aliases have been computed already, add VDEF or VUSE
1883 operands for all the symbols that have been found to be
1884 call-clobbered. */
1885 if (gimple_aliases_computed_p (cfun)
1886 && !(call_flags & ECF_NOVOPS))
1888 /* A 'pure' or a 'const' function never call-clobbers anything.
1889 A 'noreturn' function might, but since we don't return anyway
1890 there is no point in recording that. */
1891 if (TREE_SIDE_EFFECTS (expr)
1892 && !(call_flags & (ECF_PURE | ECF_CONST | ECF_NORETURN)))
1893 add_call_clobber_ops (stmt, get_callee_fndecl (expr));
1894 else if (!(call_flags & ECF_CONST))
1895 add_call_read_ops (stmt, get_callee_fndecl (expr));
1898 /* Find uses in the called function. */
1899 get_expr_operands (stmt, &CALL_EXPR_FN (expr), opf_use);
1900 nargs = call_expr_nargs (expr);
1901 for (i = 0; i < nargs; i++)
1902 get_expr_operands (stmt, &CALL_EXPR_ARG (expr, i), opf_use);
1904 get_expr_operands (stmt, &CALL_EXPR_STATIC_CHAIN (expr), opf_use);
1908 /* Scan operands in the ASM_EXPR stmt referred to in INFO. */
1910 static void
1911 get_asm_expr_operands (tree stmt)
1913 stmt_ann_t s_ann;
1914 int i, noutputs;
1915 const char **oconstraints;
1916 const char *constraint;
1917 bool allows_mem, allows_reg, is_inout;
1918 tree link;
1920 s_ann = stmt_ann (stmt);
1921 noutputs = list_length (ASM_OUTPUTS (stmt));
1922 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
1924 /* Gather all output operands. */
1925 for (i = 0, link = ASM_OUTPUTS (stmt); link; i++, link = TREE_CHAIN (link))
1927 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
1928 oconstraints[i] = constraint;
1929 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
1930 &allows_reg, &is_inout);
1932 /* This should have been split in gimplify_asm_expr. */
1933 gcc_assert (!allows_reg || !is_inout);
1935 /* Memory operands are addressable. Note that STMT needs the
1936 address of this operand. */
1937 if (!allows_reg && allows_mem)
1939 tree t = get_base_address (TREE_VALUE (link));
1940 if (t && DECL_P (t) && s_ann)
1941 add_to_addressable_set (t, &s_ann->addresses_taken);
1944 get_expr_operands (stmt, &TREE_VALUE (link), opf_def);
1947 /* Gather all input operands. */
1948 for (link = ASM_INPUTS (stmt); link; link = TREE_CHAIN (link))
1950 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
1951 parse_input_constraint (&constraint, 0, 0, noutputs, 0, oconstraints,
1952 &allows_mem, &allows_reg);
1954 /* Memory operands are addressable. Note that STMT needs the
1955 address of this operand. */
1956 if (!allows_reg && allows_mem)
1958 tree t = get_base_address (TREE_VALUE (link));
1959 if (t && DECL_P (t) && s_ann)
1960 add_to_addressable_set (t, &s_ann->addresses_taken);
1963 get_expr_operands (stmt, &TREE_VALUE (link), 0);
1966 /* Clobber all memory and addressable symbols for asm ("" : : : "memory"); */
1967 for (link = ASM_CLOBBERS (stmt); link; link = TREE_CHAIN (link))
1968 if (strcmp (TREE_STRING_POINTER (TREE_VALUE (link)), "memory") == 0)
1970 unsigned i;
1971 bitmap_iterator bi;
1973 s_ann->references_memory = true;
1975 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun), 0, i, bi)
1977 tree var = referenced_var (i);
1978 add_stmt_operand (&var, s_ann, opf_def | opf_implicit);
1981 EXECUTE_IF_SET_IN_BITMAP (gimple_addressable_vars (cfun), 0, i, bi)
1983 tree var = referenced_var (i);
1985 /* Subvars are explicitly represented in this list, so we
1986 don't need the original to be added to the clobber ops,
1987 but the original *will* be in this list because we keep
1988 the addressability of the original variable up-to-date
1989 to avoid confusing the back-end. */
1990 if (var_can_have_subvars (var)
1991 && get_subvars_for_var (var) != NULL)
1992 continue;
1994 add_stmt_operand (&var, s_ann, opf_def | opf_implicit);
1996 break;
2001 /* Scan operands for the assignment expression EXPR in statement STMT. */
2003 static void
2004 get_modify_stmt_operands (tree stmt, tree expr)
2006 /* First get operands from the RHS. */
2007 get_expr_operands (stmt, &GIMPLE_STMT_OPERAND (expr, 1), opf_use);
2009 /* For the LHS, use a regular definition (opf_def) for GIMPLE
2010 registers. If the LHS is a store to memory, we will need
2011 a preserving definition (VDEF).
2013 Preserving definitions are those that modify a part of an
2014 aggregate object for which no subvars have been computed (or the
2015 reference does not correspond exactly to one of them). Stores
2016 through a pointer are also represented with VDEF operators.
2018 We used to distinguish between preserving and killing definitions.
2019 We always emit preserving definitions now. */
2020 get_expr_operands (stmt, &GIMPLE_STMT_OPERAND (expr, 0), opf_def);
2024 /* Recursively scan the expression pointed to by EXPR_P in statement
2025 STMT. FLAGS is one of the OPF_* constants modifying how to
2026 interpret the operands found. */
2028 static void
2029 get_expr_operands (tree stmt, tree *expr_p, int flags)
2031 enum tree_code code;
2032 enum tree_code_class codeclass;
2033 tree expr = *expr_p;
2034 stmt_ann_t s_ann = stmt_ann (stmt);
2036 if (expr == NULL)
2037 return;
2039 code = TREE_CODE (expr);
2040 codeclass = TREE_CODE_CLASS (code);
2042 switch (code)
2044 case ADDR_EXPR:
2045 /* Taking the address of a variable does not represent a
2046 reference to it, but the fact that the statement takes its
2047 address will be of interest to some passes (e.g. alias
2048 resolution). */
2049 add_to_addressable_set (TREE_OPERAND (expr, 0), &s_ann->addresses_taken);
2051 /* If the address is invariant, there may be no interesting
2052 variable references inside. */
2053 if (is_gimple_min_invariant (expr))
2054 return;
2056 /* Otherwise, there may be variables referenced inside but there
2057 should be no VUSEs created, since the referenced objects are
2058 not really accessed. The only operands that we should find
2059 here are ARRAY_REF indices which will always be real operands
2060 (GIMPLE does not allow non-registers as array indices). */
2061 flags |= opf_no_vops;
2062 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2063 return;
2065 case SSA_NAME:
2066 case STRUCT_FIELD_TAG:
2067 case SYMBOL_MEMORY_TAG:
2068 case NAME_MEMORY_TAG:
2069 add_stmt_operand (expr_p, s_ann, flags);
2070 return;
2072 case VAR_DECL:
2073 case PARM_DECL:
2074 case RESULT_DECL:
2076 subvar_t svars;
2078 /* Add the subvars for a variable, if it has subvars, to DEFS
2079 or USES. Otherwise, add the variable itself. Whether it
2080 goes to USES or DEFS depends on the operand flags. */
2081 if (var_can_have_subvars (expr)
2082 && (svars = get_subvars_for_var (expr)))
2084 subvar_t sv;
2085 for (sv = svars; sv; sv = sv->next)
2086 add_stmt_operand (&sv->var, s_ann, flags);
2088 else
2089 add_stmt_operand (expr_p, s_ann, flags);
2091 return;
2094 case MISALIGNED_INDIRECT_REF:
2095 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
2096 /* fall through */
2098 case ALIGN_INDIRECT_REF:
2099 case INDIRECT_REF:
2100 get_indirect_ref_operands (stmt, expr, flags, expr, 0, -1, true);
2101 return;
2103 case TARGET_MEM_REF:
2104 get_tmr_operands (stmt, expr, flags);
2105 return;
2107 case ARRAY_REF:
2108 case ARRAY_RANGE_REF:
2109 case COMPONENT_REF:
2110 case REALPART_EXPR:
2111 case IMAGPART_EXPR:
2113 tree ref;
2114 HOST_WIDE_INT offset, size, maxsize;
2115 bool none = true;
2117 if (TREE_THIS_VOLATILE (expr))
2118 s_ann->has_volatile_ops = true;
2120 /* This component reference becomes an access to all of the
2121 subvariables it can touch, if we can determine that, but
2122 *NOT* the real one. If we can't determine which fields we
2123 could touch, the recursion will eventually get to a
2124 variable and add *all* of its subvars, or whatever is the
2125 minimum correct subset. */
2126 ref = get_ref_base_and_extent (expr, &offset, &size, &maxsize);
2127 if (SSA_VAR_P (ref) && get_subvars_for_var (ref))
2129 subvar_t sv;
2130 subvar_t svars = get_subvars_for_var (ref);
2132 for (sv = svars; sv; sv = sv->next)
2134 bool exact;
2136 if (overlap_subvar (offset, maxsize, sv->var, &exact))
2138 int subvar_flags = flags;
2139 none = false;
2140 add_stmt_operand (&sv->var, s_ann, subvar_flags);
2144 if (!none)
2145 flags |= opf_no_vops;
2147 if ((DECL_P (ref) && TREE_THIS_VOLATILE (ref))
2148 || (TREE_CODE (ref) == SSA_NAME
2149 && TREE_THIS_VOLATILE (SSA_NAME_VAR (ref))))
2150 s_ann->has_volatile_ops = true;
2152 else if (TREE_CODE (ref) == INDIRECT_REF)
2154 get_indirect_ref_operands (stmt, ref, flags, expr, offset,
2155 maxsize, false);
2156 flags |= opf_no_vops;
2159 /* Even if we found subvars above we need to ensure to see
2160 immediate uses for d in s.a[d]. In case of s.a having
2161 a subvar or we would miss it otherwise. */
2162 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2164 if (code == COMPONENT_REF)
2166 if (TREE_THIS_VOLATILE (TREE_OPERAND (expr, 1)))
2167 s_ann->has_volatile_ops = true;
2168 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
2170 else if (code == ARRAY_REF || code == ARRAY_RANGE_REF)
2172 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
2173 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
2174 get_expr_operands (stmt, &TREE_OPERAND (expr, 3), opf_use);
2177 return;
2180 case WITH_SIZE_EXPR:
2181 /* WITH_SIZE_EXPR is a pass-through reference to its first argument,
2182 and an rvalue reference to its second argument. */
2183 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
2184 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2185 return;
2187 case CALL_EXPR:
2188 get_call_expr_operands (stmt, expr);
2189 return;
2191 case COND_EXPR:
2192 case VEC_COND_EXPR:
2193 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), opf_use);
2194 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
2195 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
2196 return;
2198 case GIMPLE_MODIFY_STMT:
2199 get_modify_stmt_operands (stmt, expr);
2200 return;
2202 case CONSTRUCTOR:
2204 /* General aggregate CONSTRUCTORs have been decomposed, but they
2205 are still in use as the COMPLEX_EXPR equivalent for vectors. */
2206 constructor_elt *ce;
2207 unsigned HOST_WIDE_INT idx;
2209 for (idx = 0;
2210 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (expr), idx, ce);
2211 idx++)
2212 get_expr_operands (stmt, &ce->value, opf_use);
2214 return;
2217 case BIT_FIELD_REF:
2218 case TRUTH_NOT_EXPR:
2219 case VIEW_CONVERT_EXPR:
2220 do_unary:
2221 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2222 return;
2224 case TRUTH_AND_EXPR:
2225 case TRUTH_OR_EXPR:
2226 case TRUTH_XOR_EXPR:
2227 case COMPOUND_EXPR:
2228 case OBJ_TYPE_REF:
2229 case ASSERT_EXPR:
2230 do_binary:
2232 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2233 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
2234 return;
2237 case DOT_PROD_EXPR:
2238 case REALIGN_LOAD_EXPR:
2240 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2241 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
2242 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), flags);
2243 return;
2246 case CHANGE_DYNAMIC_TYPE_EXPR:
2247 get_expr_operands (stmt, &CHANGE_DYNAMIC_TYPE_LOCATION (expr), opf_use);
2248 return;
2250 case BLOCK:
2251 case FUNCTION_DECL:
2252 case EXC_PTR_EXPR:
2253 case FILTER_EXPR:
2254 case LABEL_DECL:
2255 case CONST_DECL:
2256 case OMP_PARALLEL:
2257 case OMP_SECTIONS:
2258 case OMP_FOR:
2259 case OMP_SINGLE:
2260 case OMP_MASTER:
2261 case OMP_ORDERED:
2262 case OMP_CRITICAL:
2263 case OMP_RETURN:
2264 case OMP_CONTINUE:
2265 /* Expressions that make no memory references. */
2266 return;
2268 default:
2269 if (codeclass == tcc_unary)
2270 goto do_unary;
2271 if (codeclass == tcc_binary || codeclass == tcc_comparison)
2272 goto do_binary;
2273 if (codeclass == tcc_constant || codeclass == tcc_type)
2274 return;
2277 /* If we get here, something has gone wrong. */
2278 #ifdef ENABLE_CHECKING
2279 fprintf (stderr, "unhandled expression in get_expr_operands():\n");
2280 debug_tree (expr);
2281 fputs ("\n", stderr);
2282 #endif
2283 gcc_unreachable ();
2287 /* Parse STMT looking for operands. When finished, the various
2288 build_* operand vectors will have potential operands in them. */
2290 static void
2291 parse_ssa_operands (tree stmt)
2293 enum tree_code code;
2295 code = TREE_CODE (stmt);
2296 switch (code)
2298 case GIMPLE_MODIFY_STMT:
2299 get_modify_stmt_operands (stmt, stmt);
2300 break;
2302 case COND_EXPR:
2303 get_expr_operands (stmt, &COND_EXPR_COND (stmt), opf_use);
2304 break;
2306 case SWITCH_EXPR:
2307 get_expr_operands (stmt, &SWITCH_COND (stmt), opf_use);
2308 break;
2310 case ASM_EXPR:
2311 get_asm_expr_operands (stmt);
2312 break;
2314 case RETURN_EXPR:
2315 get_expr_operands (stmt, &TREE_OPERAND (stmt, 0), opf_use);
2316 break;
2318 case GOTO_EXPR:
2319 get_expr_operands (stmt, &GOTO_DESTINATION (stmt), opf_use);
2320 break;
2322 case LABEL_EXPR:
2323 get_expr_operands (stmt, &LABEL_EXPR_LABEL (stmt), opf_use);
2324 break;
2326 case BIND_EXPR:
2327 case CASE_LABEL_EXPR:
2328 case TRY_CATCH_EXPR:
2329 case TRY_FINALLY_EXPR:
2330 case EH_FILTER_EXPR:
2331 case CATCH_EXPR:
2332 case RESX_EXPR:
2333 /* These nodes contain no variable references. */
2334 break;
2336 default:
2337 /* Notice that if get_expr_operands tries to use &STMT as the
2338 operand pointer (which may only happen for USE operands), we
2339 will fail in add_stmt_operand. This default will handle
2340 statements like empty statements, or CALL_EXPRs that may
2341 appear on the RHS of a statement or as statements themselves. */
2342 get_expr_operands (stmt, &stmt, opf_use);
2343 break;
2348 /* Create an operands cache for STMT. */
2350 static void
2351 build_ssa_operands (tree stmt)
2353 stmt_ann_t ann = get_stmt_ann (stmt);
2355 /* Initially assume that the statement has no volatile operands and
2356 makes no memory references. */
2357 ann->has_volatile_ops = false;
2358 ann->references_memory = false;
2359 /* Just clear the bitmap so we don't end up reallocating it over and over. */
2360 if (ann->addresses_taken)
2361 bitmap_clear (ann->addresses_taken);
2363 start_ssa_stmt_operands ();
2364 parse_ssa_operands (stmt);
2365 operand_build_sort_virtual (build_vuses);
2366 operand_build_sort_virtual (build_vdefs);
2367 finalize_ssa_stmt_operands (stmt);
2369 if (ann->addresses_taken && bitmap_empty_p (ann->addresses_taken))
2370 ann->addresses_taken = NULL;
2371 /* For added safety, assume that statements with volatile operands
2372 also reference memory. */
2373 if (ann->has_volatile_ops)
2374 ann->references_memory = true;
2378 /* Free any operands vectors in OPS. */
2380 void
2381 free_ssa_operands (stmt_operands_p ops)
2383 ops->def_ops = NULL;
2384 ops->use_ops = NULL;
2385 ops->vdef_ops = NULL;
2386 ops->vuse_ops = NULL;
2387 BITMAP_FREE (ops->loads);
2388 BITMAP_FREE (ops->stores);
2392 /* Get the operands of statement STMT. */
2394 void
2395 update_stmt_operands (tree stmt)
2397 stmt_ann_t ann = get_stmt_ann (stmt);
2399 /* If update_stmt_operands is called before SSA is initialized, do
2400 nothing. */
2401 if (!ssa_operands_active ())
2402 return;
2404 /* The optimizers cannot handle statements that are nothing but a
2405 _DECL. This indicates a bug in the gimplifier. */
2406 gcc_assert (!SSA_VAR_P (stmt));
2408 timevar_push (TV_TREE_OPS);
2410 gcc_assert (ann->modified);
2411 build_ssa_operands (stmt);
2412 ann->modified = 0;
2414 timevar_pop (TV_TREE_OPS);
2418 /* Copies virtual operands from SRC to DST. */
2420 void
2421 copy_virtual_operands (tree dest, tree src)
2423 unsigned int i, n;
2424 voptype_p src_vuses, dest_vuses;
2425 voptype_p src_vdefs, dest_vdefs;
2426 struct voptype_d vuse;
2427 struct voptype_d vdef;
2428 stmt_ann_t dest_ann;
2430 VDEF_OPS (dest) = NULL;
2431 VUSE_OPS (dest) = NULL;
2433 dest_ann = get_stmt_ann (dest);
2434 BITMAP_FREE (dest_ann->operands.loads);
2435 BITMAP_FREE (dest_ann->operands.stores);
2437 if (LOADED_SYMS (src))
2439 dest_ann->operands.loads = BITMAP_ALLOC (&operands_bitmap_obstack);
2440 bitmap_copy (dest_ann->operands.loads, LOADED_SYMS (src));
2443 if (STORED_SYMS (src))
2445 dest_ann->operands.stores = BITMAP_ALLOC (&operands_bitmap_obstack);
2446 bitmap_copy (dest_ann->operands.stores, STORED_SYMS (src));
2449 /* Copy all the VUSE operators and corresponding operands. */
2450 dest_vuses = &vuse;
2451 for (src_vuses = VUSE_OPS (src); src_vuses; src_vuses = src_vuses->next)
2453 n = VUSE_NUM (src_vuses);
2454 dest_vuses = add_vuse_op (dest, NULL_TREE, n, dest_vuses);
2455 for (i = 0; i < n; i++)
2456 SET_USE (VUSE_OP_PTR (dest_vuses, i), VUSE_OP (src_vuses, i));
2458 if (VUSE_OPS (dest) == NULL)
2459 VUSE_OPS (dest) = vuse.next;
2462 /* Copy all the VDEF operators and corresponding operands. */
2463 dest_vdefs = &vdef;
2464 for (src_vdefs = VDEF_OPS (src); src_vdefs; src_vdefs = src_vdefs->next)
2466 n = VUSE_NUM (src_vdefs);
2467 dest_vdefs = add_vdef_op (dest, NULL_TREE, n, dest_vdefs);
2468 VDEF_RESULT (dest_vdefs) = VDEF_RESULT (src_vdefs);
2469 for (i = 0; i < n; i++)
2470 SET_USE (VUSE_OP_PTR (dest_vdefs, i), VUSE_OP (src_vdefs, i));
2472 if (VDEF_OPS (dest) == NULL)
2473 VDEF_OPS (dest) = vdef.next;
2478 /* Specifically for use in DOM's expression analysis. Given a store, we
2479 create an artificial stmt which looks like a load from the store, this can
2480 be used to eliminate redundant loads. OLD_OPS are the operands from the
2481 store stmt, and NEW_STMT is the new load which represents a load of the
2482 values stored. */
2484 void
2485 create_ssa_artificial_load_stmt (tree new_stmt, tree old_stmt)
2487 tree op;
2488 ssa_op_iter iter;
2489 use_operand_p use_p;
2490 unsigned i;
2492 get_stmt_ann (new_stmt);
2494 /* Process NEW_STMT looking for operands. */
2495 start_ssa_stmt_operands ();
2496 parse_ssa_operands (new_stmt);
2498 for (i = 0; VEC_iterate (tree, build_vuses, i, op); i++)
2499 if (TREE_CODE (op) != SSA_NAME)
2500 var_ann (op)->in_vuse_list = false;
2502 for (i = 0; VEC_iterate (tree, build_vuses, i, op); i++)
2503 if (TREE_CODE (op) != SSA_NAME)
2504 var_ann (op)->in_vdef_list = false;
2506 /* Remove any virtual operands that were found. */
2507 VEC_truncate (tree, build_vdefs, 0);
2508 VEC_truncate (tree, build_vuses, 0);
2510 /* For each VDEF on the original statement, we want to create a
2511 VUSE of the VDEF result operand on the new statement. */
2512 FOR_EACH_SSA_TREE_OPERAND (op, old_stmt, iter, SSA_OP_VDEF)
2513 append_vuse (op);
2515 finalize_ssa_stmt_operands (new_stmt);
2517 /* All uses in this fake stmt must not be in the immediate use lists. */
2518 FOR_EACH_SSA_USE_OPERAND (use_p, new_stmt, iter, SSA_OP_ALL_USES)
2519 delink_imm_use (use_p);
2523 /* Swap operands EXP0 and EXP1 in statement STMT. No attempt is done
2524 to test the validity of the swap operation. */
2526 void
2527 swap_tree_operands (tree stmt, tree *exp0, tree *exp1)
2529 tree op0, op1;
2530 op0 = *exp0;
2531 op1 = *exp1;
2533 /* If the operand cache is active, attempt to preserve the relative
2534 positions of these two operands in their respective immediate use
2535 lists. */
2536 if (ssa_operands_active () && op0 != op1)
2538 use_optype_p use0, use1, ptr;
2539 use0 = use1 = NULL;
2541 /* Find the 2 operands in the cache, if they are there. */
2542 for (ptr = USE_OPS (stmt); ptr; ptr = ptr->next)
2543 if (USE_OP_PTR (ptr)->use == exp0)
2545 use0 = ptr;
2546 break;
2549 for (ptr = USE_OPS (stmt); ptr; ptr = ptr->next)
2550 if (USE_OP_PTR (ptr)->use == exp1)
2552 use1 = ptr;
2553 break;
2556 /* If both uses don't have operand entries, there isn't much we can do
2557 at this point. Presumably we don't need to worry about it. */
2558 if (use0 && use1)
2560 tree *tmp = USE_OP_PTR (use1)->use;
2561 USE_OP_PTR (use1)->use = USE_OP_PTR (use0)->use;
2562 USE_OP_PTR (use0)->use = tmp;
2566 /* Now swap the data. */
2567 *exp0 = op1;
2568 *exp1 = op0;
2572 /* Add the base address of REF to the set *ADDRESSES_TAKEN. If
2573 *ADDRESSES_TAKEN is NULL, a new set is created. REF may be
2574 a single variable whose address has been taken or any other valid
2575 GIMPLE memory reference (structure reference, array, etc). If the
2576 base address of REF is a decl that has sub-variables, also add all
2577 of its sub-variables. */
2579 void
2580 add_to_addressable_set (tree ref, bitmap *addresses_taken)
2582 tree var;
2583 subvar_t svars;
2585 gcc_assert (addresses_taken);
2587 /* Note that it is *NOT OKAY* to use the target of a COMPONENT_REF
2588 as the only thing we take the address of. If VAR is a structure,
2589 taking the address of a field means that the whole structure may
2590 be referenced using pointer arithmetic. See PR 21407 and the
2591 ensuing mailing list discussion. */
2592 var = get_base_address (ref);
2593 if (var && SSA_VAR_P (var))
2595 if (*addresses_taken == NULL)
2596 *addresses_taken = BITMAP_GGC_ALLOC ();
2598 if (var_can_have_subvars (var)
2599 && (svars = get_subvars_for_var (var)))
2601 subvar_t sv;
2602 for (sv = svars; sv; sv = sv->next)
2604 bitmap_set_bit (*addresses_taken, DECL_UID (sv->var));
2605 TREE_ADDRESSABLE (sv->var) = 1;
2608 else
2610 bitmap_set_bit (*addresses_taken, DECL_UID (var));
2611 TREE_ADDRESSABLE (var) = 1;
2617 /* Scan the immediate_use list for VAR making sure its linked properly.
2618 Return TRUE if there is a problem and emit an error message to F. */
2620 bool
2621 verify_imm_links (FILE *f, tree var)
2623 use_operand_p ptr, prev, list;
2624 int count;
2626 gcc_assert (TREE_CODE (var) == SSA_NAME);
2628 list = &(SSA_NAME_IMM_USE_NODE (var));
2629 gcc_assert (list->use == NULL);
2631 if (list->prev == NULL)
2633 gcc_assert (list->next == NULL);
2634 return false;
2637 prev = list;
2638 count = 0;
2639 for (ptr = list->next; ptr != list; )
2641 if (prev != ptr->prev)
2642 goto error;
2644 if (ptr->use == NULL)
2645 goto error; /* 2 roots, or SAFE guard node. */
2646 else if (*(ptr->use) != var)
2647 goto error;
2649 prev = ptr;
2650 ptr = ptr->next;
2652 /* Avoid infinite loops. 50,000,000 uses probably indicates a
2653 problem. */
2654 if (count++ > 50000000)
2655 goto error;
2658 /* Verify list in the other direction. */
2659 prev = list;
2660 for (ptr = list->prev; ptr != list; )
2662 if (prev != ptr->next)
2663 goto error;
2664 prev = ptr;
2665 ptr = ptr->prev;
2666 if (count-- < 0)
2667 goto error;
2670 if (count != 0)
2671 goto error;
2673 return false;
2675 error:
2676 if (ptr->stmt && stmt_modified_p (ptr->stmt))
2678 fprintf (f, " STMT MODIFIED. - <%p> ", (void *)ptr->stmt);
2679 print_generic_stmt (f, ptr->stmt, TDF_SLIM);
2681 fprintf (f, " IMM ERROR : (use_p : tree - %p:%p)", (void *)ptr,
2682 (void *)ptr->use);
2683 print_generic_expr (f, USE_FROM_PTR (ptr), TDF_SLIM);
2684 fprintf(f, "\n");
2685 return true;
2689 /* Dump all the immediate uses to FILE. */
2691 void
2692 dump_immediate_uses_for (FILE *file, tree var)
2694 imm_use_iterator iter;
2695 use_operand_p use_p;
2697 gcc_assert (var && TREE_CODE (var) == SSA_NAME);
2699 print_generic_expr (file, var, TDF_SLIM);
2700 fprintf (file, " : -->");
2701 if (has_zero_uses (var))
2702 fprintf (file, " no uses.\n");
2703 else
2704 if (has_single_use (var))
2705 fprintf (file, " single use.\n");
2706 else
2707 fprintf (file, "%d uses.\n", num_imm_uses (var));
2709 FOR_EACH_IMM_USE_FAST (use_p, iter, var)
2711 if (use_p->stmt == NULL && use_p->use == NULL)
2712 fprintf (file, "***end of stmt iterator marker***\n");
2713 else
2714 if (!is_gimple_reg (USE_FROM_PTR (use_p)))
2715 print_generic_stmt (file, USE_STMT (use_p), TDF_VOPS|TDF_MEMSYMS);
2716 else
2717 print_generic_stmt (file, USE_STMT (use_p), TDF_SLIM);
2719 fprintf(file, "\n");
2723 /* Dump all the immediate uses to FILE. */
2725 void
2726 dump_immediate_uses (FILE *file)
2728 tree var;
2729 unsigned int x;
2731 fprintf (file, "Immediate_uses: \n\n");
2732 for (x = 1; x < num_ssa_names; x++)
2734 var = ssa_name(x);
2735 if (!var)
2736 continue;
2737 dump_immediate_uses_for (file, var);
2742 /* Dump def-use edges on stderr. */
2744 void
2745 debug_immediate_uses (void)
2747 dump_immediate_uses (stderr);
2751 /* Dump def-use edges on stderr. */
2753 void
2754 debug_immediate_uses_for (tree var)
2756 dump_immediate_uses_for (stderr, var);
2760 /* Create a new change buffer for the statement pointed by STMT_P and
2761 push the buffer into SCB_STACK. Each change buffer
2762 records state information needed to determine what changed in the
2763 statement. Mainly, this keeps track of symbols that may need to be
2764 put into SSA form, SSA name replacements and other information
2765 needed to keep the SSA form up to date. */
2767 void
2768 push_stmt_changes (tree *stmt_p)
2770 tree stmt;
2771 scb_t buf;
2773 stmt = *stmt_p;
2775 /* It makes no sense to keep track of PHI nodes. */
2776 if (TREE_CODE (stmt) == PHI_NODE)
2777 return;
2779 buf = XNEW (struct scb_d);
2780 memset (buf, 0, sizeof *buf);
2782 buf->stmt_p = stmt_p;
2784 if (stmt_references_memory_p (stmt))
2786 tree op;
2787 ssa_op_iter i;
2789 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VUSE)
2791 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2792 if (buf->loads == NULL)
2793 buf->loads = BITMAP_ALLOC (NULL);
2794 bitmap_set_bit (buf->loads, DECL_UID (sym));
2797 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VDEF)
2799 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2800 if (buf->stores == NULL)
2801 buf->stores = BITMAP_ALLOC (NULL);
2802 bitmap_set_bit (buf->stores, DECL_UID (sym));
2806 VEC_safe_push (scb_t, heap, scb_stack, buf);
2810 /* Given two sets S1 and S2, mark the symbols that differ in S1 and S2
2811 for renaming. The set to mark for renaming is (S1 & ~S2) | (S2 & ~S1). */
2813 static void
2814 mark_difference_for_renaming (bitmap s1, bitmap s2)
2816 if (s1 == NULL && s2 == NULL)
2817 return;
2819 if (s1 && s2 == NULL)
2820 mark_set_for_renaming (s1);
2821 else if (s1 == NULL && s2)
2822 mark_set_for_renaming (s2);
2823 else if (!bitmap_equal_p (s1, s2))
2825 bitmap t1 = BITMAP_ALLOC (NULL);
2826 bitmap t2 = BITMAP_ALLOC (NULL);
2828 bitmap_and_compl (t1, s1, s2);
2829 bitmap_and_compl (t2, s2, s1);
2830 bitmap_ior_into (t1, t2);
2831 mark_set_for_renaming (t1);
2833 BITMAP_FREE (t1);
2834 BITMAP_FREE (t2);
2839 /* Pop the top SCB from SCB_STACK and act on the differences between
2840 what was recorded by push_stmt_changes and the current state of
2841 the statement. */
2843 void
2844 pop_stmt_changes (tree *stmt_p)
2846 tree op, stmt;
2847 ssa_op_iter iter;
2848 bitmap loads, stores;
2849 scb_t buf;
2851 stmt = *stmt_p;
2853 /* It makes no sense to keep track of PHI nodes. */
2854 if (TREE_CODE (stmt) == PHI_NODE)
2855 return;
2857 buf = VEC_pop (scb_t, scb_stack);
2858 gcc_assert (stmt_p == buf->stmt_p);
2860 /* Force an operand re-scan on the statement and mark any newly
2861 exposed variables. */
2862 update_stmt (stmt);
2864 /* Determine whether any memory symbols need to be renamed. If the
2865 sets of loads and stores are different after the statement is
2866 modified, then the affected symbols need to be renamed.
2868 Note that it may be possible for the statement to not reference
2869 memory anymore, but we still need to act on the differences in
2870 the sets of symbols. */
2871 loads = stores = NULL;
2872 if (stmt_references_memory_p (stmt))
2874 tree op;
2875 ssa_op_iter i;
2877 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VUSE)
2879 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2880 if (loads == NULL)
2881 loads = BITMAP_ALLOC (NULL);
2882 bitmap_set_bit (loads, DECL_UID (sym));
2885 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VDEF)
2887 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2888 if (stores == NULL)
2889 stores = BITMAP_ALLOC (NULL);
2890 bitmap_set_bit (stores, DECL_UID (sym));
2894 /* If LOADS is different from BUF->LOADS, the affected
2895 symbols need to be marked for renaming. */
2896 mark_difference_for_renaming (loads, buf->loads);
2898 /* Similarly for STORES and BUF->STORES. */
2899 mark_difference_for_renaming (stores, buf->stores);
2901 /* Mark all the naked GIMPLE register operands for renaming. */
2902 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_DEF|SSA_OP_USE)
2903 if (DECL_P (op))
2904 mark_sym_for_renaming (op);
2906 /* FIXME, need to add more finalizers here. Cleanup EH info,
2907 recompute invariants for address expressions, add
2908 SSA replacement mappings, etc. For instance, given
2909 testsuite/gcc.c-torture/compile/pr16808.c, we fold a statement of
2910 the form:
2912 # SMT.4_20 = VDEF <SMT.4_16>
2913 D.1576_11 = 1.0e+0;
2915 So, the VDEF will disappear, but instead of marking SMT.4 for
2916 renaming it would be far more efficient to establish a
2917 replacement mapping that would replace every reference of
2918 SMT.4_20 with SMT.4_16. */
2920 /* Free memory used by the buffer. */
2921 BITMAP_FREE (buf->loads);
2922 BITMAP_FREE (buf->stores);
2923 BITMAP_FREE (loads);
2924 BITMAP_FREE (stores);
2925 buf->stmt_p = NULL;
2926 free (buf);
2930 /* Discard the topmost change buffer from SCB_STACK. This is useful
2931 when the caller realized that it did not actually modified the
2932 statement. It avoids the expensive operand re-scan. */
2934 void
2935 discard_stmt_changes (tree *stmt_p)
2937 scb_t buf;
2938 tree stmt;
2940 /* It makes no sense to keep track of PHI nodes. */
2941 stmt = *stmt_p;
2942 if (TREE_CODE (stmt) == PHI_NODE)
2943 return;
2945 buf = VEC_pop (scb_t, scb_stack);
2946 gcc_assert (stmt_p == buf->stmt_p);
2948 /* Free memory used by the buffer. */
2949 BITMAP_FREE (buf->loads);
2950 BITMAP_FREE (buf->stores);
2951 buf->stmt_p = NULL;
2952 free (buf);
2956 /* Returns true if statement STMT may access memory. */
2958 bool
2959 stmt_references_memory_p (tree stmt)
2961 if (!gimple_ssa_operands (cfun)->ops_active || TREE_CODE (stmt) == PHI_NODE)
2962 return false;
2964 return stmt_ann (stmt)->references_memory;