]> gcc.gnu.org Git - gcc.git/blob - gcc/tree-ssa-operands.c
re PR middle-end/33330 (Wrong alias for accessing scalar through array)
[gcc.git] / gcc / tree-ssa-operands.c
1 /* SSA operands management for trees.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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/>. */
19
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"
36
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.
41
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.
48
49 The routines in this file are concerned with creating this operand cache
50 from a stmt tree.
51
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.
57
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.
60
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.
64
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.
72
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'. */
76
77
78 /* Structure storing statistics on how many call clobbers we have, and
79 how many where avoided. */
80
81 static struct
82 {
83 /* Number of call-clobbered ops we attempt to add to calls in
84 add_call_clobbered_mem_symbols. */
85 unsigned int clobbered_vars;
86
87 /* Number of write-clobbers (VDEFs) avoided by using
88 not_written information. */
89 unsigned int static_write_clobbers_avoided;
90
91 /* Number of reads (VUSEs) avoided by using not_read information. */
92 unsigned int static_read_clobbers_avoided;
93
94 /* Number of write-clobbers avoided because the variable can't escape to
95 this call. */
96 unsigned int unescapable_clobbers_avoided;
97
98 /* Number of read-only uses we attempt to add to calls in
99 add_call_read_mem_symbols. */
100 unsigned int readonly_clobbers;
101
102 /* Number of read-only uses we avoid using not_read information. */
103 unsigned int static_readonly_clobbers_avoided;
104 } clobber_stats;
105
106
107 /* Flags to describe operand properties in helpers. */
108
109 /* By default, operands are loaded. */
110 #define opf_use 0
111
112 /* Operand is the target of an assignment expression or a
113 call-clobbered variable. */
114 #define opf_def (1 << 0)
115
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)
123
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)
128
129 /* Array for building all the def operands. */
130 static VEC(tree,heap) *build_defs;
131
132 /* Array for building all the use operands. */
133 static VEC(tree,heap) *build_uses;
134
135 /* Set for building all the VDEF operands. */
136 static VEC(tree,heap) *build_vdefs;
137
138 /* Set for building all the VUSE operands. */
139 static VEC(tree,heap) *build_vuses;
140
141 /* Bitmap obstack for our datastructures that needs to survive across
142 compilations of multiple functions. */
143 static bitmap_obstack operands_bitmap_obstack;
144
145 /* Set for building all the loaded symbols. */
146 static bitmap build_loads;
147
148 /* Set for building all the stored symbols. */
149 static bitmap build_stores;
150
151 static void get_expr_operands (tree, tree *, int);
152
153 /* Number of functions with initialized ssa_operands. */
154 static int n_initialized = 0;
155
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:
162
163 1- Call push_stmt_changes (&stmt) to record the current state of
164 STMT before any modifications are made.
165
166 2- Make all appropriate modifications to the statement.
167
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.
172
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. */
177
178 struct scb_d
179 {
180 /* Pointer to the statement being modified. */
181 tree *stmt_p;
182
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;
187 };
188
189 typedef struct scb_d *scb_t;
190 DEF_VEC_P(scb_t);
191 DEF_VEC_ALLOC_P(scb_t,heap);
192
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;
198
199 /* Return the DECL_UID of the base variable of T. */
200
201 static inline unsigned
202 get_name_decl (const_tree t)
203 {
204 if (TREE_CODE (t) != SSA_NAME)
205 return DECL_UID (t);
206 else
207 return DECL_UID (SSA_NAME_VAR (t));
208 }
209
210
211 /* Comparison function for qsort used in operand_build_sort_virtual. */
212
213 static int
214 operand_build_cmp (const void *p, const void *q)
215 {
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);
220
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);
226 }
227
228
229 /* Sort the virtual operands in LIST from lowest DECL_UID to highest. */
230
231 static inline void
232 operand_build_sort_virtual (VEC(tree,heap) *list)
233 {
234 int num = VEC_length (tree, list);
235
236 if (num < 2)
237 return;
238
239 if (num == 2)
240 {
241 if (get_name_decl (VEC_index (tree, list, 0))
242 > get_name_decl (VEC_index (tree, list, 1)))
243 {
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);
248 }
249 return;
250 }
251
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);
257 }
258
259
260 /* Return true if the SSA operands cache is active. */
261
262 bool
263 ssa_operands_active (void)
264 {
265 return cfun->gimple_df && gimple_ssa_operands (cfun)->ops_active;
266 }
267
268
269 /* VOPs are of variable sized, so the free list maps "free buckets" to the
270 following table:
271 bucket # operands
272 ------ ----------
273 0 1
274 1 2
275 ...
276 15 16
277 16 17-24
278 17 25-32
279 18 31-40
280 ...
281 29 121-128
282 Any VOPs larger than this are simply added to the largest bucket when they
283 are freed. */
284
285
286 /* Return the number of operands used in bucket BUCKET. */
287
288 static inline int
289 vop_free_bucket_size (int bucket)
290 {
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;
297 }
298
299
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. */
302
303 static inline int
304 vop_free_bucket_index (int num)
305 {
306 gcc_assert (num > 0 && NUM_VOP_FREE_BUCKETS > 16);
307
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;
317 }
318
319
320 /* Initialize the VOP free buckets. */
321
322 static inline void
323 init_vop_buckets (void)
324 {
325 int x;
326
327 for (x = 0; x < NUM_VOP_FREE_BUCKETS; x++)
328 gimple_ssa_operands (cfun)->vop_free_buckets[x] = NULL;
329 }
330
331
332 /* Add PTR to the appropriate VOP bucket. */
333
334 static inline void
335 add_vop_to_freelist (voptype_p ptr)
336 {
337 int bucket = vop_free_bucket_index (VUSE_VECT_NUM_ELEM (ptr->usev));
338
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;
342
343 ptr->next = gimple_ssa_operands (cfun)->vop_free_buckets[bucket];
344 gimple_ssa_operands (cfun)->vop_free_buckets[bucket] = ptr;
345 }
346
347
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. */
351
352 #define OP_SIZE_INIT 0
353 #define OP_SIZE_1 30
354 #define OP_SIZE_2 110
355 #define OP_SIZE_3 511
356
357 /* Initialize the operand cache routines. */
358
359 void
360 init_ssa_operands (void)
361 {
362 if (!n_initialized++)
363 {
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);
372 }
373
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;
382 }
383
384
385 /* Dispose of anything required by the operand routines. */
386
387 void
388 fini_ssa_operands (void)
389 {
390 struct ssa_operand_memory_d *ptr;
391 unsigned ix;
392 tree mpt;
393
394 if (!--n_initialized)
395 {
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);
402
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;
407 }
408
409 gimple_ssa_operands (cfun)->free_defs = NULL;
410 gimple_ssa_operands (cfun)->free_uses = NULL;
411
412 while ((ptr = gimple_ssa_operands (cfun)->operand_memory) != NULL)
413 {
414 gimple_ssa_operands (cfun)->operand_memory
415 = gimple_ssa_operands (cfun)->operand_memory->next;
416 ggc_free (ptr);
417 }
418
419 for (ix = 0;
420 VEC_iterate (tree, gimple_ssa_operands (cfun)->mpt_table, ix, mpt);
421 ix++)
422 {
423 if (mpt)
424 BITMAP_FREE (MPT_SYMBOLS (mpt));
425 }
426
427 VEC_free (tree, heap, gimple_ssa_operands (cfun)->mpt_table);
428
429 gimple_ssa_operands (cfun)->ops_active = false;
430
431 if (!n_initialized)
432 bitmap_obstack_release (&operands_bitmap_obstack);
433 if (dump_file && (dump_flags & TDF_STATS))
434 {
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);
447 }
448 }
449
450
451 /* Return memory for operands of SIZE chunks. */
452
453 static inline void *
454 ssa_operand_alloc (unsigned size)
455 {
456 char *ptr;
457
458 if (gimple_ssa_operands (cfun)->operand_memory_index + size
459 >= gimple_ssa_operands (cfun)->ssa_operand_mem_size)
460 {
461 struct ssa_operand_memory_d *ptr;
462
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);
474
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);
479
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);
485
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;
492 }
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;
497 }
498
499
500 /* Allocate a DEF operand. */
501
502 static inline struct def_optype_d *
503 alloc_def (void)
504 {
505 struct def_optype_d *ret;
506 if (gimple_ssa_operands (cfun)->free_defs)
507 {
508 ret = gimple_ssa_operands (cfun)->free_defs;
509 gimple_ssa_operands (cfun)->free_defs
510 = gimple_ssa_operands (cfun)->free_defs->next;
511 }
512 else
513 ret = (struct def_optype_d *)
514 ssa_operand_alloc (sizeof (struct def_optype_d));
515 return ret;
516 }
517
518
519 /* Allocate a USE operand. */
520
521 static inline struct use_optype_d *
522 alloc_use (void)
523 {
524 struct use_optype_d *ret;
525 if (gimple_ssa_operands (cfun)->free_uses)
526 {
527 ret = gimple_ssa_operands (cfun)->free_uses;
528 gimple_ssa_operands (cfun)->free_uses
529 = gimple_ssa_operands (cfun)->free_uses->next;
530 }
531 else
532 ret = (struct use_optype_d *)
533 ssa_operand_alloc (sizeof (struct use_optype_d));
534 return ret;
535 }
536
537
538 /* Allocate a vop with NUM elements. */
539
540 static inline struct voptype_d *
541 alloc_vop (int num)
542 {
543 struct voptype_d *ret = NULL;
544 int alloc_size = 0;
545
546 int bucket = vop_free_bucket_index (num);
547 if (bucket != -1)
548 {
549 /* If there is a free operand, use it. */
550 if (gimple_ssa_operands (cfun)->vop_free_buckets[bucket] != NULL)
551 {
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;
555 }
556 else
557 alloc_size = vop_free_bucket_size(bucket);
558 }
559 else
560 alloc_size = num;
561
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));
565
566 VUSE_VECT_NUM_ELEM (ret->usev) = num;
567 return ret;
568 }
569
570
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. */
573
574 static inline void
575 set_virtual_use_link (use_operand_p ptr, tree stmt)
576 {
577 /* fold_stmt may have changed the stmt pointers. */
578 if (ptr->stmt != stmt)
579 ptr->stmt = stmt;
580
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));
584 }
585
586
587 /* Adds OP to the list of defs after LAST. */
588
589 static inline def_optype_p
590 add_def_op (tree *op, def_optype_p last)
591 {
592 def_optype_p new_def;
593
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;
599 }
600
601
602 /* Adds OP to the list of uses of statement STMT after LAST. */
603
604 static inline use_optype_p
605 add_use_op (tree stmt, tree *op, use_optype_p last)
606 {
607 use_optype_p new_use;
608
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;
615 }
616
617
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. */
621
622 static inline voptype_p
623 add_vop (tree stmt, tree op, int num, voptype_p prev)
624 {
625 voptype_p new_vop;
626 int x;
627
628 new_vop = alloc_vop (num);
629 for (x = 0; x < num; x++)
630 {
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);
636 }
637
638 if (prev)
639 prev->next = new_vop;
640 new_vop->next = NULL;
641 return new_vop;
642 }
643
644
645 /* Adds OP to the list of vuses of statement STMT after LAST, and moves
646 LAST to the new element. */
647
648 static inline voptype_p
649 add_vuse_op (tree stmt, tree op, int num, voptype_p last)
650 {
651 voptype_p new_vop = add_vop (stmt, op, num, last);
652 VDEF_RESULT (new_vop) = NULL_TREE;
653 return new_vop;
654 }
655
656
657 /* Adds OP to the list of vdefs of statement STMT after LAST, and moves
658 LAST to the new element. */
659
660 static inline voptype_p
661 add_vdef_op (tree stmt, tree op, int num, voptype_p last)
662 {
663 voptype_p new_vop = add_vop (stmt, op, num, last);
664 VDEF_RESULT (new_vop) = op;
665 return new_vop;
666 }
667
668
669 /* Takes elements from build_defs and turns them into def operands of STMT.
670 TODO -- Make build_defs VEC of tree *. */
671
672 static inline void
673 finalize_ssa_defs (tree stmt)
674 {
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);
679
680 /* There should only be a single real definition per assignment. */
681 gcc_assert ((stmt && TREE_CODE (stmt) != GIMPLE_MODIFY_STMT) || num <= 1);
682
683 new_list.next = NULL;
684 last = &new_list;
685
686 old_ops = DEF_OPS (stmt);
687
688 new_i = 0;
689
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;
694
695 /* If there is anything in the old list, free it. */
696 if (old_ops)
697 {
698 old_ops->next = gimple_ssa_operands (cfun)->free_defs;
699 gimple_ssa_operands (cfun)->free_defs = old_ops;
700 }
701
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);
705
706 /* Now set the stmt's operands. */
707 DEF_OPS (stmt) = new_list.next;
708
709 #ifdef ENABLE_CHECKING
710 {
711 def_optype_p ptr;
712 unsigned x = 0;
713 for (ptr = DEF_OPS (stmt); ptr; ptr = ptr->next)
714 x++;
715
716 gcc_assert (x == num);
717 }
718 #endif
719 }
720
721
722 /* Takes elements from build_uses and turns them into use operands of STMT.
723 TODO -- Make build_uses VEC of tree *. */
724
725 static inline void
726 finalize_ssa_uses (tree stmt)
727 {
728 unsigned new_i;
729 struct use_optype_d new_list;
730 use_optype_p old_ops, ptr, last;
731
732 #ifdef ENABLE_CHECKING
733 {
734 unsigned x;
735 unsigned num = VEC_length (tree, build_uses);
736
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);
743 }
744 #endif
745
746 new_list.next = NULL;
747 last = &new_list;
748
749 old_ops = USE_OPS (stmt);
750
751 /* If there is anything in the old list, free it. */
752 if (old_ops)
753 {
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;
758 }
759
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);
765
766 /* Now set the stmt's operands. */
767 USE_OPS (stmt) = new_list.next;
768
769 #ifdef ENABLE_CHECKING
770 {
771 unsigned x = 0;
772 for (ptr = USE_OPS (stmt); ptr; ptr = ptr->next)
773 x++;
774
775 gcc_assert (x == VEC_length (tree, build_uses));
776 }
777 #endif
778 }
779
780
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. */
784
785 static inline void
786 finalize_ssa_vdefs (tree stmt)
787 {
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);
792
793 /* Set the symbols referenced by STMT. */
794 if (!bitmap_empty_p (build_stores))
795 {
796 if (ann->operands.stores == NULL)
797 ann->operands.stores = BITMAP_ALLOC (&operands_bitmap_obstack);
798
799 bitmap_copy (ann->operands.stores, build_stores);
800 }
801 else
802 BITMAP_FREE (ann->operands.stores);
803
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;
813
814 new_list.next = NULL;
815 last = &new_list;
816
817 old_ops = VDEF_OPS (stmt);
818 new_i = 0;
819 while (old_ops && new_i < VEC_length (tree, build_vdefs))
820 {
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));
824
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);
828
829 if (old_uid == new_uid)
830 {
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++;
838 }
839 else if (old_uid < new_uid)
840 {
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;
847 }
848 else
849 {
850 /* This is a new operand. */
851 last = add_vdef_op (stmt, op, 1, last);
852 new_i++;
853 }
854 }
855
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);
859
860 /* If there is anything in the old list, free it. */
861 if (old_ops)
862 {
863 for (ptr = old_ops; ptr; ptr = last)
864 {
865 last = ptr->next;
866 delink_imm_use (VDEF_OP_PTR (ptr, 0));
867 add_vop_to_freelist (ptr);
868 }
869 }
870
871 /* Now set STMT's operands. */
872 VDEF_OPS (stmt) = new_list.next;
873
874 #ifdef ENABLE_CHECKING
875 {
876 unsigned x = 0;
877 for (ptr = VDEF_OPS (stmt); ptr; ptr = ptr->next)
878 x++;
879
880 gcc_assert (x == VEC_length (tree, build_vdefs));
881 }
882 #endif
883 }
884
885
886 /* Takes elements from BUILD_VUSES and turns them into VUSE operands of
887 STMT. */
888
889 static inline void
890 finalize_ssa_vuse_ops (tree stmt)
891 {
892 unsigned new_i, old_i;
893 voptype_p old_ops, last;
894 VEC(tree,heap) *new_ops;
895 stmt_ann_t ann;
896
897 /* Set the symbols referenced by STMT. */
898 ann = stmt_ann (stmt);
899 if (!bitmap_empty_p (build_loads))
900 {
901 if (ann->operands.loads == NULL)
902 ann->operands.loads = BITMAP_ALLOC (&operands_bitmap_obstack);
903
904 bitmap_copy (ann->operands.loads, build_loads);
905 }
906 else
907 BITMAP_FREE (ann->operands.loads);
908
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;
918
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);
922
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))
928 {
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);
933
934 if (old_uid == new_uid)
935 {
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++;
940 }
941 else if (old_uid < new_uid)
942 {
943 /* If OLD_UID is less than NEW_UID, the old operand has
944 disappeared, skip to the next old operand. */
945 old_i++;
946 }
947 else
948 {
949 /* This is a new operand. */
950 VEC_safe_push (tree, heap, new_ops, new_op);
951 new_i++;
952 }
953 }
954
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));
958
959 /* If there is anything in the old list, free it. */
960 if (old_ops)
961 {
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;
966 }
967
968 /* If there are any operands, instantiate a VUSE operator for STMT. */
969 if (new_ops)
970 {
971 tree op;
972 unsigned i;
973
974 last = add_vuse_op (stmt, NULL, VEC_length (tree, new_ops), NULL);
975
976 for (i = 0; VEC_iterate (tree, new_ops, i, op); i++)
977 SET_USE (VUSE_OP_PTR (last, (int) i), op);
978
979 VUSE_OPS (stmt) = last;
980 VEC_free (tree, heap, new_ops);
981 }
982
983 #ifdef ENABLE_CHECKING
984 {
985 unsigned x;
986
987 if (VUSE_OPS (stmt))
988 {
989 gcc_assert (VUSE_OPS (stmt)->next == NULL);
990 x = VUSE_NUM (VUSE_OPS (stmt));
991 }
992 else
993 x = 0;
994
995 gcc_assert (x == VEC_length (tree, build_vuses));
996 }
997 #endif
998 }
999
1000 /* Return a new VUSE operand vector for STMT. */
1001
1002 static void
1003 finalize_ssa_vuses (tree stmt)
1004 {
1005 unsigned num, num_vdefs;
1006 unsigned vuse_index;
1007
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:
1012
1013 # VUSE <a_2>
1014 # a_3 = VDEF <a_2>
1015 *p = *q;
1016
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);
1021
1022 if (num > 0 && num_vdefs > 0)
1023 for (vuse_index = 0; vuse_index < VEC_length (tree, build_vuses); )
1024 {
1025 tree vuse;
1026 vuse = VEC_index (tree, build_vuses, vuse_index);
1027 if (TREE_CODE (vuse) != SSA_NAME)
1028 {
1029 var_ann_t ann = var_ann (vuse);
1030 ann->in_vuse_list = 0;
1031 if (ann->in_vdef_list)
1032 {
1033 VEC_ordered_remove (tree, build_vuses, vuse_index);
1034 continue;
1035 }
1036 }
1037 vuse_index++;
1038 }
1039
1040 finalize_ssa_vuse_ops (stmt);
1041 }
1042
1043
1044 /* Clear the in_list bits and empty the build array for VDEFs and
1045 VUSEs. */
1046
1047 static inline void
1048 cleanup_build_arrays (void)
1049 {
1050 unsigned i;
1051 tree t;
1052
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;
1056
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;
1060
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);
1067 }
1068
1069
1070 /* Finalize all the build vectors, fill the new ones into INFO. */
1071
1072 static inline void
1073 finalize_ssa_stmt_operands (tree stmt)
1074 {
1075 finalize_ssa_defs (stmt);
1076 finalize_ssa_uses (stmt);
1077 finalize_ssa_vdefs (stmt);
1078 finalize_ssa_vuses (stmt);
1079 cleanup_build_arrays ();
1080 }
1081
1082
1083 /* Start the process of building up operands vectors in INFO. */
1084
1085 static inline void
1086 start_ssa_stmt_operands (void)
1087 {
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));
1094 }
1095
1096
1097 /* Add DEF_P to the list of pointers to operands. */
1098
1099 static inline void
1100 append_def (tree *def_p)
1101 {
1102 VEC_safe_push (tree, heap, build_defs, (tree) def_p);
1103 }
1104
1105
1106 /* Add USE_P to the list of pointers to operands. */
1107
1108 static inline void
1109 append_use (tree *use_p)
1110 {
1111 VEC_safe_push (tree, heap, build_uses, (tree) use_p);
1112 }
1113
1114
1115 /* Add VAR to the set of variables that require a VDEF operator. */
1116
1117 static inline void
1118 append_vdef (tree var)
1119 {
1120 tree sym;
1121
1122 if (TREE_CODE (var) != SSA_NAME)
1123 {
1124 tree mpt;
1125 var_ann_t ann;
1126
1127 /* If VAR belongs to a memory partition, use it instead of VAR. */
1128 mpt = memory_partition (var);
1129 if (mpt)
1130 var = mpt;
1131
1132 /* Don't allow duplicate entries. */
1133 ann = get_var_ann (var);
1134 if (ann->in_vdef_list)
1135 return;
1136
1137 ann->in_vdef_list = true;
1138 sym = var;
1139 }
1140 else
1141 sym = SSA_NAME_VAR (var);
1142
1143 VEC_safe_push (tree, heap, build_vdefs, var);
1144 bitmap_set_bit (build_stores, DECL_UID (sym));
1145 }
1146
1147
1148 /* Add VAR to the set of variables that require a VUSE operator. */
1149
1150 static inline void
1151 append_vuse (tree var)
1152 {
1153 tree sym;
1154
1155 if (TREE_CODE (var) != SSA_NAME)
1156 {
1157 tree mpt;
1158 var_ann_t ann;
1159
1160 /* If VAR belongs to a memory partition, use it instead of VAR. */
1161 mpt = memory_partition (var);
1162 if (mpt)
1163 var = mpt;
1164
1165 /* Don't allow duplicate entries. */
1166 ann = get_var_ann (var);
1167 if (ann->in_vuse_list || ann->in_vdef_list)
1168 return;
1169
1170 ann->in_vuse_list = true;
1171 sym = var;
1172 }
1173 else
1174 sym = SSA_NAME_VAR (var);
1175
1176 VEC_safe_push (tree, heap, build_vuses, var);
1177 bitmap_set_bit (build_loads, DECL_UID (sym));
1178 }
1179
1180
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.
1185
1186 XXX: We should handle the NO_ALIAS attributes here. */
1187
1188 static bool
1189 access_can_touch_variable (tree ref, tree alias, HOST_WIDE_INT offset,
1190 HOST_WIDE_INT size)
1191 {
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;
1195
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;
1201
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;
1206
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
1215
1216 struct gcc_target
1217 {
1218 struct asm_out
1219 {
1220 const char *byte_op;
1221 struct asm_int_op
1222 {
1223 const char *hi;
1224 } aligned_op;
1225 } asm_out;
1226 } targetm;
1227
1228 foo = &targetm.asm_out.aligned_op;
1229 return foo->hi;
1230
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))
1239 {
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;
1248 }
1249
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.
1253
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.
1256
1257 Without strict aliasing on, we consider it legal to do something
1258 like:
1259
1260 struct foos { int l; };
1261 int foo;
1262 static struct foos *getfoo(void);
1263 int main (void)
1264 {
1265 struct foos *f = getfoo();
1266 f->l = 1;
1267 foo = 2;
1268 if (f->l == 1)
1269 abort();
1270 exit(0);
1271 }
1272 static struct foos *getfoo(void)
1273 { return (struct foos *)&foo; }
1274
1275 (taken from 20000623-1.c)
1276
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
1280
1281 typedef union {
1282 int d;
1283 } U;
1284
1285 int rv;
1286 void breakme()
1287 {
1288 U *rv0;
1289 U *pretmp = (U*)&rv;
1290 rv0 = pretmp;
1291 rv0->d = 42;
1292 }
1293 To implement this, we just punt on accesses through union
1294 pointers entirely.
1295
1296 Another case we have to allow is accessing a variable
1297 through an array access at offset zero. This happens from
1298 code generated by the fortran frontend like
1299
1300 char[1:1] & my_char_ref;
1301 char my_char;
1302 my_char_ref_1 = (char[1:1] &) &my_char;
1303 D.874_2 = (*my_char_ref_1)[1]{lb: 1 sz: 1};
1304 */
1305 else if (ref
1306 && flag_strict_aliasing
1307 && TREE_CODE (ref) != INDIRECT_REF
1308 && !MTAG_P (alias)
1309 && base
1310 && (TREE_CODE (base) != INDIRECT_REF
1311 || TREE_CODE (TREE_TYPE (base)) != UNION_TYPE)
1312 && (TREE_CODE (base) != INDIRECT_REF
1313 || TREE_CODE (ref) != ARRAY_REF
1314 || offset != 0
1315 || (DECL_SIZE (alias)
1316 && TREE_CODE (DECL_SIZE (alias)) == INTEGER_CST
1317 && size != -1
1318 && (unsigned HOST_WIDE_INT)size
1319 != TREE_INT_CST_LOW (DECL_SIZE (alias))))
1320 && !AGGREGATE_TYPE_P (TREE_TYPE (alias))
1321 && TREE_CODE (TREE_TYPE (alias)) != COMPLEX_TYPE
1322 && !var_ann (alias)->is_heapvar
1323 /* When the struct has may_alias attached to it, we need not to
1324 return true. */
1325 && get_alias_set (base))
1326 {
1327 #ifdef ACCESS_DEBUGGING
1328 fprintf (stderr, "Access to ");
1329 print_generic_expr (stderr, ref, 0);
1330 fprintf (stderr, " may not touch ");
1331 print_generic_expr (stderr, alias, 0);
1332 fprintf (stderr, " in function %s\n", get_name (current_function_decl));
1333 #endif
1334 return false;
1335 }
1336
1337 /* If the offset of the access is greater than the size of one of
1338 the possible aliases, it can't be touching that alias, because it
1339 would be past the end of the structure. */
1340 else if (ref
1341 && flag_strict_aliasing
1342 && TREE_CODE (ref) != INDIRECT_REF
1343 && !MTAG_P (alias)
1344 && !POINTER_TYPE_P (TREE_TYPE (alias))
1345 && offsetgtz
1346 && DECL_SIZE (alias)
1347 && TREE_CODE (DECL_SIZE (alias)) == INTEGER_CST
1348 && uoffset > TREE_INT_CST_LOW (DECL_SIZE (alias)))
1349 {
1350 #ifdef ACCESS_DEBUGGING
1351 fprintf (stderr, "Access to ");
1352 print_generic_expr (stderr, ref, 0);
1353 fprintf (stderr, " may not touch ");
1354 print_generic_expr (stderr, alias, 0);
1355 fprintf (stderr, " in function %s\n", get_name (current_function_decl));
1356 #endif
1357 return false;
1358 }
1359
1360 return true;
1361 }
1362
1363 /* Add the actual variables FULL_REF can access, given a member of
1364 full_ref's points-to set VAR, where FULL_REF is an access of SIZE at
1365 OFFSET from var. IS_CALL_SITE is true if this is a call, and IS_DEF
1366 is true if this is supposed to be a vdef, and false if this should
1367 be a VUSE.
1368
1369 The real purpose of this function is to take a points-to set for a
1370 pointer to a structure, say
1371
1372 struct s {
1373 int a;
1374 int b;
1375 } foo, *foop = &foo;
1376
1377 and discover which variables an access, such as foop->b, can alias.
1378
1379 This is necessary because foop only actually points to foo's first
1380 member, so that is all the points-to set contains. However, an access
1381 to foop->a may be touching some single SFT if we have created some
1382 SFT's for a structure. */
1383
1384 static bool
1385 add_vars_for_offset (tree full_ref, tree var, HOST_WIDE_INT offset,
1386 HOST_WIDE_INT size, bool is_call_site, bool is_def)
1387 {
1388 /* Call-clobbered tags may have non-call-clobbered
1389 symbols in their alias sets. Ignore them if we are
1390 adding VOPs for a call site. */
1391 if (is_call_site && !is_call_clobbered (var))
1392 return false;
1393
1394 /* For offset 0, we already have the right variable. If there is no
1395 full_ref, this is not a place we care about (All component
1396 related accesses that go through pointers will have full_ref not
1397 NULL).
1398 Any var for which we didn't create SFT's can't be
1399 distinguished. */
1400 if (!full_ref || (offset == 0 && size != -1)
1401 || (TREE_CODE (var) != STRUCT_FIELD_TAG
1402 && (!var_can_have_subvars (var) || !get_subvars_for_var (var))))
1403 {
1404 if (!access_can_touch_variable (full_ref, var, offset, size))
1405 return false;
1406
1407 if (is_def)
1408 append_vdef (var);
1409 else
1410 append_vuse (var);
1411 return true;
1412 }
1413 else if (TREE_CODE (var) == STRUCT_FIELD_TAG)
1414 {
1415 if (size == -1)
1416 {
1417 bool added = false;
1418 subvar_t sv = get_subvars_for_var (SFT_PARENT_VAR (var));
1419 for (; sv; sv = sv->next)
1420 {
1421 if (overlap_subvar (SFT_OFFSET (var) + offset, size,
1422 sv->var, NULL)
1423 && access_can_touch_variable (full_ref, sv->var,
1424 offset, size))
1425 {
1426 added = true;
1427 if (is_def)
1428 append_vdef (sv->var);
1429 else
1430 append_vuse (sv->var);
1431 }
1432 }
1433 return added;
1434 }
1435 else
1436 {
1437 bool added = false;
1438 subvar_t sv = get_subvars_for_var (SFT_PARENT_VAR (var));
1439 for (; sv; sv = sv->next)
1440 {
1441 /* Once we hit the end of the parts that could touch,
1442 stop looking. */
1443 if (SFT_OFFSET (var) + offset + size <= SFT_OFFSET (sv->var))
1444 break;
1445 if (overlap_subvar (SFT_OFFSET (var) + offset, size,
1446 sv->var, NULL)
1447 && access_can_touch_variable (full_ref, sv->var, offset,
1448 size))
1449 {
1450 added = true;
1451 if (is_def)
1452 append_vdef (sv->var);
1453 else
1454 append_vuse (sv->var);
1455 }
1456 }
1457 return added;
1458 }
1459 }
1460
1461 return false;
1462 }
1463
1464 /* Add VAR to the virtual operands array. FLAGS is as in
1465 get_expr_operands. FULL_REF is a tree that contains the entire
1466 pointer dereference expression, if available, or NULL otherwise.
1467 OFFSET and SIZE come from the memory access expression that
1468 generated this virtual operand. IS_CALL_SITE is true if the
1469 affected statement is a call site. */
1470
1471 static void
1472 add_virtual_operand (tree var, stmt_ann_t s_ann, int flags,
1473 tree full_ref, HOST_WIDE_INT offset,
1474 HOST_WIDE_INT size, bool is_call_site)
1475 {
1476 bitmap aliases = NULL;
1477 tree sym;
1478 var_ann_t v_ann;
1479
1480 sym = (TREE_CODE (var) == SSA_NAME ? SSA_NAME_VAR (var) : var);
1481 v_ann = var_ann (sym);
1482
1483 /* Mark the statement as having memory operands. */
1484 s_ann->references_memory = true;
1485
1486 /* If the variable cannot be modified and this is a VDEF change
1487 it into a VUSE. This happens when read-only variables are marked
1488 call-clobbered and/or aliased to writable variables. So we only
1489 check that this only happens on non-specific stores.
1490
1491 Note that if this is a specific store, i.e. associated with a
1492 GIMPLE_MODIFY_STMT, then we can't suppress the VDEF, lest we run
1493 into validation problems.
1494
1495 This can happen when programs cast away const, leaving us with a
1496 store to read-only memory. If the statement is actually executed
1497 at runtime, then the program is ill formed. If the statement is
1498 not executed then all is well. At the very least, we cannot ICE. */
1499 if ((flags & opf_implicit) && unmodifiable_var_p (var))
1500 flags &= ~opf_def;
1501
1502 /* The variable is not a GIMPLE register. Add it (or its aliases) to
1503 virtual operands, unless the caller has specifically requested
1504 not to add virtual operands (used when adding operands inside an
1505 ADDR_EXPR expression). */
1506 if (flags & opf_no_vops)
1507 return;
1508
1509 if (MTAG_P (var))
1510 aliases = MTAG_ALIASES (var);
1511
1512 if (aliases == NULL)
1513 {
1514 if (!gimple_aliases_computed_p (cfun))
1515 s_ann->has_volatile_ops = true;
1516
1517 /* The variable is not aliased or it is an alias tag. */
1518 if (flags & opf_def)
1519 append_vdef (var);
1520 else
1521 append_vuse (var);
1522 }
1523 else
1524 {
1525 bitmap_iterator bi;
1526 unsigned int i;
1527 tree al;
1528
1529 /* The variable is aliased. Add its aliases to the virtual
1530 operands. */
1531 gcc_assert (!bitmap_empty_p (aliases));
1532
1533 if (flags & opf_def)
1534 {
1535 bool none_added = true;
1536 EXECUTE_IF_SET_IN_BITMAP (aliases, 0, i, bi)
1537 {
1538 al = referenced_var (i);
1539 none_added &= !add_vars_for_offset (full_ref, al, offset, size,
1540 is_call_site, true);
1541 }
1542
1543 /* If the variable is also an alias tag, add a virtual
1544 operand for it, otherwise we will miss representing
1545 references to the members of the variable's alias set.
1546 This fixes the bug in gcc.c-torture/execute/20020503-1.c.
1547
1548 It is also necessary to add bare defs on clobbers for
1549 SMT's, so that bare SMT uses caused by pruning all the
1550 aliases will link up properly with calls. In order to
1551 keep the number of these bare defs we add down to the
1552 minimum necessary, we keep track of which SMT's were used
1553 alone in statement vdefs or VUSEs. */
1554 if (none_added
1555 || (TREE_CODE (var) == SYMBOL_MEMORY_TAG
1556 && is_call_site))
1557 append_vdef (var);
1558 }
1559 else
1560 {
1561 bool none_added = true;
1562 EXECUTE_IF_SET_IN_BITMAP (aliases, 0, i, bi)
1563 {
1564 al = referenced_var (i);
1565 none_added &= !add_vars_for_offset (full_ref, al, offset, size,
1566 is_call_site, false);
1567
1568 }
1569
1570 /* Even if no aliases have been added, we still need to
1571 establish def-use and use-def chains, lest
1572 transformations think that this is not a memory
1573 reference. For an example of this scenario, see
1574 testsuite/g++.dg/opt/cleanup1.C. */
1575 if (none_added)
1576 append_vuse (var);
1577 }
1578 }
1579 }
1580
1581
1582 /* Add *VAR_P to the appropriate operand array for S_ANN. FLAGS is as in
1583 get_expr_operands. If *VAR_P is a GIMPLE register, it will be added to
1584 the statement's real operands, otherwise it is added to virtual
1585 operands. */
1586
1587 static void
1588 add_stmt_operand (tree *var_p, stmt_ann_t s_ann, int flags)
1589 {
1590 tree var, sym;
1591 var_ann_t v_ann;
1592
1593 gcc_assert (SSA_VAR_P (*var_p) && s_ann);
1594
1595 var = *var_p;
1596 sym = (TREE_CODE (var) == SSA_NAME ? SSA_NAME_VAR (var) : var);
1597 v_ann = var_ann (sym);
1598
1599 /* Mark statements with volatile operands. */
1600 if (TREE_THIS_VOLATILE (sym))
1601 s_ann->has_volatile_ops = true;
1602
1603 if (is_gimple_reg (sym))
1604 {
1605 /* The variable is a GIMPLE register. Add it to real operands. */
1606 if (flags & opf_def)
1607 append_def (var_p);
1608 else
1609 append_use (var_p);
1610 }
1611 else
1612 add_virtual_operand (var, s_ann, flags, NULL_TREE, 0, -1, false);
1613 }
1614
1615
1616 /* A subroutine of get_expr_operands to handle INDIRECT_REF,
1617 ALIGN_INDIRECT_REF and MISALIGNED_INDIRECT_REF.
1618
1619 STMT is the statement being processed, EXPR is the INDIRECT_REF
1620 that got us here.
1621
1622 FLAGS is as in get_expr_operands.
1623
1624 FULL_REF contains the full pointer dereference expression, if we
1625 have it, or NULL otherwise.
1626
1627 OFFSET and SIZE are the location of the access inside the
1628 dereferenced pointer, if known.
1629
1630 RECURSE_ON_BASE should be set to true if we want to continue
1631 calling get_expr_operands on the base pointer, and false if
1632 something else will do it for us. */
1633
1634 static void
1635 get_indirect_ref_operands (tree stmt, tree expr, int flags,
1636 tree full_ref,
1637 HOST_WIDE_INT offset, HOST_WIDE_INT size,
1638 bool recurse_on_base)
1639 {
1640 tree *pptr = &TREE_OPERAND (expr, 0);
1641 tree ptr = *pptr;
1642 stmt_ann_t s_ann = stmt_ann (stmt);
1643
1644 s_ann->references_memory = true;
1645 if (TREE_THIS_VOLATILE (expr))
1646 s_ann->has_volatile_ops = true;
1647
1648 if (SSA_VAR_P (ptr))
1649 {
1650 struct ptr_info_def *pi = NULL;
1651
1652 /* If PTR has flow-sensitive points-to information, use it. */
1653 if (TREE_CODE (ptr) == SSA_NAME
1654 && (pi = SSA_NAME_PTR_INFO (ptr)) != NULL
1655 && pi->name_mem_tag)
1656 {
1657 /* PTR has its own memory tag. Use it. */
1658 add_virtual_operand (pi->name_mem_tag, s_ann, flags,
1659 full_ref, offset, size, false);
1660 }
1661 else
1662 {
1663 /* If PTR is not an SSA_NAME or it doesn't have a name
1664 tag, use its symbol memory tag. */
1665 var_ann_t v_ann;
1666
1667 /* If we are emitting debugging dumps, display a warning if
1668 PTR is an SSA_NAME with no flow-sensitive alias
1669 information. That means that we may need to compute
1670 aliasing again. */
1671 if (dump_file
1672 && TREE_CODE (ptr) == SSA_NAME
1673 && pi == NULL)
1674 {
1675 fprintf (dump_file,
1676 "NOTE: no flow-sensitive alias info for ");
1677 print_generic_expr (dump_file, ptr, dump_flags);
1678 fprintf (dump_file, " in ");
1679 print_generic_stmt (dump_file, stmt, dump_flags);
1680 }
1681
1682 if (TREE_CODE (ptr) == SSA_NAME)
1683 ptr = SSA_NAME_VAR (ptr);
1684 v_ann = var_ann (ptr);
1685
1686 if (v_ann->symbol_mem_tag)
1687 add_virtual_operand (v_ann->symbol_mem_tag, s_ann, flags,
1688 full_ref, offset, size, false);
1689
1690 /* Aliasing information is missing; mark statement as
1691 volatile so we won't optimize it out too actively. */
1692 else if (!gimple_aliases_computed_p (cfun)
1693 && (flags & opf_def))
1694 s_ann->has_volatile_ops = true;
1695 }
1696 }
1697 else if (TREE_CODE (ptr) == INTEGER_CST)
1698 {
1699 /* If a constant is used as a pointer, we can't generate a real
1700 operand for it but we mark the statement volatile to prevent
1701 optimizations from messing things up. */
1702 s_ann->has_volatile_ops = true;
1703 return;
1704 }
1705 else
1706 {
1707 /* Ok, this isn't even is_gimple_min_invariant. Something's broke. */
1708 gcc_unreachable ();
1709 }
1710
1711 /* If requested, add a USE operand for the base pointer. */
1712 if (recurse_on_base)
1713 get_expr_operands (stmt, pptr, opf_use);
1714 }
1715
1716
1717 /* A subroutine of get_expr_operands to handle TARGET_MEM_REF. */
1718
1719 static void
1720 get_tmr_operands (tree stmt, tree expr, int flags)
1721 {
1722 tree tag;
1723 stmt_ann_t s_ann = stmt_ann (stmt);
1724
1725 /* This statement references memory. */
1726 s_ann->references_memory = 1;
1727
1728 /* First record the real operands. */
1729 get_expr_operands (stmt, &TMR_BASE (expr), opf_use);
1730 get_expr_operands (stmt, &TMR_INDEX (expr), opf_use);
1731
1732 if (TMR_SYMBOL (expr))
1733 add_to_addressable_set (TMR_SYMBOL (expr), &s_ann->addresses_taken);
1734
1735 tag = TMR_TAG (expr);
1736 if (!tag)
1737 {
1738 /* Something weird, so ensure that we will be careful. */
1739 s_ann->has_volatile_ops = true;
1740 return;
1741 }
1742 if (!MTAG_P (tag))
1743 {
1744 get_expr_operands (stmt, &tag, flags);
1745 return;
1746 }
1747
1748 add_virtual_operand (tag, s_ann, flags, expr, 0, -1, false);
1749 }
1750
1751
1752 /* Add clobbering definitions for .GLOBAL_VAR or for each of the call
1753 clobbered variables in the function. */
1754
1755 static void
1756 add_call_clobber_ops (tree stmt, tree callee)
1757 {
1758 unsigned u;
1759 bitmap_iterator bi;
1760 stmt_ann_t s_ann = stmt_ann (stmt);
1761 bitmap not_read_b, not_written_b;
1762
1763 /* If we created .GLOBAL_VAR earlier, just use it. */
1764 if (gimple_global_var (cfun))
1765 {
1766 tree var = gimple_global_var (cfun);
1767 add_virtual_operand (var, s_ann, opf_def, NULL, 0, -1, true);
1768 return;
1769 }
1770
1771 /* Get info for local and module level statics. There is a bit
1772 set for each static if the call being processed does not read
1773 or write that variable. */
1774 not_read_b = callee ? ipa_reference_get_not_read_global (callee) : NULL;
1775 not_written_b = callee ? ipa_reference_get_not_written_global (callee) : NULL;
1776
1777 /* Add a VDEF operand for every call clobbered variable. */
1778 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun), 0, u, bi)
1779 {
1780 tree var = referenced_var_lookup (u);
1781 unsigned int escape_mask = var_ann (var)->escape_mask;
1782 tree real_var = var;
1783 bool not_read;
1784 bool not_written;
1785
1786 /* Not read and not written are computed on regular vars, not
1787 subvars, so look at the parent var if this is an SFT. */
1788 if (TREE_CODE (var) == STRUCT_FIELD_TAG)
1789 real_var = SFT_PARENT_VAR (var);
1790
1791 not_read = not_read_b
1792 ? bitmap_bit_p (not_read_b, DECL_UID (real_var))
1793 : false;
1794
1795 not_written = not_written_b
1796 ? bitmap_bit_p (not_written_b, DECL_UID (real_var))
1797 : false;
1798 gcc_assert (!unmodifiable_var_p (var));
1799
1800 clobber_stats.clobbered_vars++;
1801
1802 /* See if this variable is really clobbered by this function. */
1803
1804 /* Trivial case: Things escaping only to pure/const are not
1805 clobbered by non-pure-const, and only read by pure/const. */
1806 if ((escape_mask & ~(ESCAPE_TO_PURE_CONST)) == 0)
1807 {
1808 tree call = get_call_expr_in (stmt);
1809 if (call_expr_flags (call) & (ECF_CONST | ECF_PURE))
1810 {
1811 add_virtual_operand (var, s_ann, opf_use, NULL, 0, -1, true);
1812 clobber_stats.unescapable_clobbers_avoided++;
1813 continue;
1814 }
1815 else
1816 {
1817 clobber_stats.unescapable_clobbers_avoided++;
1818 continue;
1819 }
1820 }
1821
1822 if (not_written)
1823 {
1824 clobber_stats.static_write_clobbers_avoided++;
1825 if (!not_read)
1826 add_virtual_operand (var, s_ann, opf_use, NULL, 0, -1, true);
1827 else
1828 clobber_stats.static_read_clobbers_avoided++;
1829 }
1830 else
1831 add_virtual_operand (var, s_ann, opf_def, NULL, 0, -1, true);
1832 }
1833 }
1834
1835
1836 /* Add VUSE operands for .GLOBAL_VAR or all call clobbered variables in the
1837 function. */
1838
1839 static void
1840 add_call_read_ops (tree stmt, tree callee)
1841 {
1842 unsigned u;
1843 bitmap_iterator bi;
1844 stmt_ann_t s_ann = stmt_ann (stmt);
1845 bitmap not_read_b;
1846
1847 /* if the function is not pure, it may reference memory. Add
1848 a VUSE for .GLOBAL_VAR if it has been created. See add_referenced_var
1849 for the heuristic used to decide whether to create .GLOBAL_VAR. */
1850 if (gimple_global_var (cfun))
1851 {
1852 tree var = gimple_global_var (cfun);
1853 add_virtual_operand (var, s_ann, opf_use, NULL, 0, -1, true);
1854 return;
1855 }
1856
1857 not_read_b = callee ? ipa_reference_get_not_read_global (callee) : NULL;
1858
1859 /* Add a VUSE for each call-clobbered variable. */
1860 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun), 0, u, bi)
1861 {
1862 tree var = referenced_var (u);
1863 tree real_var = var;
1864 bool not_read;
1865
1866 clobber_stats.readonly_clobbers++;
1867
1868 /* Not read and not written are computed on regular vars, not
1869 subvars, so look at the parent var if this is an SFT. */
1870
1871 if (TREE_CODE (var) == STRUCT_FIELD_TAG)
1872 real_var = SFT_PARENT_VAR (var);
1873
1874 not_read = not_read_b ? bitmap_bit_p (not_read_b, DECL_UID (real_var))
1875 : false;
1876
1877 if (not_read)
1878 {
1879 clobber_stats.static_readonly_clobbers_avoided++;
1880 continue;
1881 }
1882
1883 add_virtual_operand (var, s_ann, opf_use, NULL, 0, -1, true);
1884 }
1885 }
1886
1887
1888 /* A subroutine of get_expr_operands to handle CALL_EXPR. */
1889
1890 static void
1891 get_call_expr_operands (tree stmt, tree expr)
1892 {
1893 int call_flags = call_expr_flags (expr);
1894 int i, nargs;
1895 stmt_ann_t ann = stmt_ann (stmt);
1896
1897 ann->references_memory = true;
1898
1899 /* If aliases have been computed already, add VDEF or VUSE
1900 operands for all the symbols that have been found to be
1901 call-clobbered. */
1902 if (gimple_aliases_computed_p (cfun)
1903 && !(call_flags & ECF_NOVOPS))
1904 {
1905 /* A 'pure' or a 'const' function never call-clobbers anything.
1906 A 'noreturn' function might, but since we don't return anyway
1907 there is no point in recording that. */
1908 if (TREE_SIDE_EFFECTS (expr)
1909 && !(call_flags & (ECF_PURE | ECF_CONST | ECF_NORETURN)))
1910 add_call_clobber_ops (stmt, get_callee_fndecl (expr));
1911 else if (!(call_flags & ECF_CONST))
1912 add_call_read_ops (stmt, get_callee_fndecl (expr));
1913 }
1914
1915 /* Find uses in the called function. */
1916 get_expr_operands (stmt, &CALL_EXPR_FN (expr), opf_use);
1917 nargs = call_expr_nargs (expr);
1918 for (i = 0; i < nargs; i++)
1919 get_expr_operands (stmt, &CALL_EXPR_ARG (expr, i), opf_use);
1920
1921 get_expr_operands (stmt, &CALL_EXPR_STATIC_CHAIN (expr), opf_use);
1922 }
1923
1924
1925 /* Scan operands in the ASM_EXPR stmt referred to in INFO. */
1926
1927 static void
1928 get_asm_expr_operands (tree stmt)
1929 {
1930 stmt_ann_t s_ann;
1931 int i, noutputs;
1932 const char **oconstraints;
1933 const char *constraint;
1934 bool allows_mem, allows_reg, is_inout;
1935 tree link;
1936
1937 s_ann = stmt_ann (stmt);
1938 noutputs = list_length (ASM_OUTPUTS (stmt));
1939 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
1940
1941 /* Gather all output operands. */
1942 for (i = 0, link = ASM_OUTPUTS (stmt); link; i++, link = TREE_CHAIN (link))
1943 {
1944 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
1945 oconstraints[i] = constraint;
1946 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
1947 &allows_reg, &is_inout);
1948
1949 /* This should have been split in gimplify_asm_expr. */
1950 gcc_assert (!allows_reg || !is_inout);
1951
1952 /* Memory operands are addressable. Note that STMT needs the
1953 address of this operand. */
1954 if (!allows_reg && allows_mem)
1955 {
1956 tree t = get_base_address (TREE_VALUE (link));
1957 if (t && DECL_P (t) && s_ann)
1958 add_to_addressable_set (t, &s_ann->addresses_taken);
1959 }
1960
1961 get_expr_operands (stmt, &TREE_VALUE (link), opf_def);
1962 }
1963
1964 /* Gather all input operands. */
1965 for (link = ASM_INPUTS (stmt); link; link = TREE_CHAIN (link))
1966 {
1967 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
1968 parse_input_constraint (&constraint, 0, 0, noutputs, 0, oconstraints,
1969 &allows_mem, &allows_reg);
1970
1971 /* Memory operands are addressable. Note that STMT needs the
1972 address of this operand. */
1973 if (!allows_reg && allows_mem)
1974 {
1975 tree t = get_base_address (TREE_VALUE (link));
1976 if (t && DECL_P (t) && s_ann)
1977 add_to_addressable_set (t, &s_ann->addresses_taken);
1978 }
1979
1980 get_expr_operands (stmt, &TREE_VALUE (link), 0);
1981 }
1982
1983 /* Clobber all memory and addressable symbols for asm ("" : : : "memory"); */
1984 for (link = ASM_CLOBBERS (stmt); link; link = TREE_CHAIN (link))
1985 if (strcmp (TREE_STRING_POINTER (TREE_VALUE (link)), "memory") == 0)
1986 {
1987 unsigned i;
1988 bitmap_iterator bi;
1989
1990 s_ann->references_memory = true;
1991
1992 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun), 0, i, bi)
1993 {
1994 tree var = referenced_var (i);
1995 add_stmt_operand (&var, s_ann, opf_def | opf_implicit);
1996 }
1997
1998 EXECUTE_IF_SET_IN_BITMAP (gimple_addressable_vars (cfun), 0, i, bi)
1999 {
2000 tree var = referenced_var (i);
2001
2002 /* Subvars are explicitly represented in this list, so we
2003 don't need the original to be added to the clobber ops,
2004 but the original *will* be in this list because we keep
2005 the addressability of the original variable up-to-date
2006 to avoid confusing the back-end. */
2007 if (var_can_have_subvars (var)
2008 && get_subvars_for_var (var) != NULL)
2009 continue;
2010
2011 add_stmt_operand (&var, s_ann, opf_def | opf_implicit);
2012 }
2013 break;
2014 }
2015 }
2016
2017
2018 /* Scan operands for the assignment expression EXPR in statement STMT. */
2019
2020 static void
2021 get_modify_stmt_operands (tree stmt, tree expr)
2022 {
2023 /* First get operands from the RHS. */
2024 get_expr_operands (stmt, &GIMPLE_STMT_OPERAND (expr, 1), opf_use);
2025
2026 /* For the LHS, use a regular definition (opf_def) for GIMPLE
2027 registers. If the LHS is a store to memory, we will need
2028 a preserving definition (VDEF).
2029
2030 Preserving definitions are those that modify a part of an
2031 aggregate object for which no subvars have been computed (or the
2032 reference does not correspond exactly to one of them). Stores
2033 through a pointer are also represented with VDEF operators.
2034
2035 We used to distinguish between preserving and killing definitions.
2036 We always emit preserving definitions now. */
2037 get_expr_operands (stmt, &GIMPLE_STMT_OPERAND (expr, 0), opf_def);
2038 }
2039
2040
2041 /* Recursively scan the expression pointed to by EXPR_P in statement
2042 STMT. FLAGS is one of the OPF_* constants modifying how to
2043 interpret the operands found. */
2044
2045 static void
2046 get_expr_operands (tree stmt, tree *expr_p, int flags)
2047 {
2048 enum tree_code code;
2049 enum tree_code_class codeclass;
2050 tree expr = *expr_p;
2051 stmt_ann_t s_ann = stmt_ann (stmt);
2052
2053 if (expr == NULL)
2054 return;
2055
2056 code = TREE_CODE (expr);
2057 codeclass = TREE_CODE_CLASS (code);
2058
2059 switch (code)
2060 {
2061 case ADDR_EXPR:
2062 /* Taking the address of a variable does not represent a
2063 reference to it, but the fact that the statement takes its
2064 address will be of interest to some passes (e.g. alias
2065 resolution). */
2066 add_to_addressable_set (TREE_OPERAND (expr, 0), &s_ann->addresses_taken);
2067
2068 /* If the address is invariant, there may be no interesting
2069 variable references inside. */
2070 if (is_gimple_min_invariant (expr))
2071 return;
2072
2073 /* Otherwise, there may be variables referenced inside but there
2074 should be no VUSEs created, since the referenced objects are
2075 not really accessed. The only operands that we should find
2076 here are ARRAY_REF indices which will always be real operands
2077 (GIMPLE does not allow non-registers as array indices). */
2078 flags |= opf_no_vops;
2079 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2080 return;
2081
2082 case SSA_NAME:
2083 case STRUCT_FIELD_TAG:
2084 case SYMBOL_MEMORY_TAG:
2085 case NAME_MEMORY_TAG:
2086 add_stmt_operand (expr_p, s_ann, flags);
2087 return;
2088
2089 case VAR_DECL:
2090 case PARM_DECL:
2091 case RESULT_DECL:
2092 {
2093 subvar_t svars;
2094
2095 /* Add the subvars for a variable, if it has subvars, to DEFS
2096 or USES. Otherwise, add the variable itself. Whether it
2097 goes to USES or DEFS depends on the operand flags. */
2098 if (var_can_have_subvars (expr)
2099 && (svars = get_subvars_for_var (expr)))
2100 {
2101 subvar_t sv;
2102 for (sv = svars; sv; sv = sv->next)
2103 add_stmt_operand (&sv->var, s_ann, flags);
2104 }
2105 else
2106 add_stmt_operand (expr_p, s_ann, flags);
2107
2108 return;
2109 }
2110
2111 case MISALIGNED_INDIRECT_REF:
2112 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
2113 /* fall through */
2114
2115 case ALIGN_INDIRECT_REF:
2116 case INDIRECT_REF:
2117 get_indirect_ref_operands (stmt, expr, flags, expr, 0, -1, true);
2118 return;
2119
2120 case TARGET_MEM_REF:
2121 get_tmr_operands (stmt, expr, flags);
2122 return;
2123
2124 case ARRAY_REF:
2125 case ARRAY_RANGE_REF:
2126 case COMPONENT_REF:
2127 case REALPART_EXPR:
2128 case IMAGPART_EXPR:
2129 {
2130 tree ref;
2131 HOST_WIDE_INT offset, size, maxsize;
2132 bool none = true;
2133
2134 if (TREE_THIS_VOLATILE (expr))
2135 s_ann->has_volatile_ops = true;
2136
2137 /* This component reference becomes an access to all of the
2138 subvariables it can touch, if we can determine that, but
2139 *NOT* the real one. If we can't determine which fields we
2140 could touch, the recursion will eventually get to a
2141 variable and add *all* of its subvars, or whatever is the
2142 minimum correct subset. */
2143 ref = get_ref_base_and_extent (expr, &offset, &size, &maxsize);
2144 if (SSA_VAR_P (ref) && get_subvars_for_var (ref))
2145 {
2146 subvar_t sv;
2147 subvar_t svars = get_subvars_for_var (ref);
2148
2149 for (sv = svars; sv; sv = sv->next)
2150 {
2151 bool exact;
2152
2153 if (overlap_subvar (offset, maxsize, sv->var, &exact))
2154 {
2155 int subvar_flags = flags;
2156 none = false;
2157 add_stmt_operand (&sv->var, s_ann, subvar_flags);
2158 }
2159 }
2160
2161 if (!none)
2162 flags |= opf_no_vops;
2163
2164 if ((DECL_P (ref) && TREE_THIS_VOLATILE (ref))
2165 || (TREE_CODE (ref) == SSA_NAME
2166 && TREE_THIS_VOLATILE (SSA_NAME_VAR (ref))))
2167 s_ann->has_volatile_ops = true;
2168 }
2169 else if (TREE_CODE (ref) == INDIRECT_REF)
2170 {
2171 get_indirect_ref_operands (stmt, ref, flags, expr, offset,
2172 maxsize, false);
2173 flags |= opf_no_vops;
2174 }
2175
2176 /* Even if we found subvars above we need to ensure to see
2177 immediate uses for d in s.a[d]. In case of s.a having
2178 a subvar or we would miss it otherwise. */
2179 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2180
2181 if (code == COMPONENT_REF)
2182 {
2183 if (TREE_THIS_VOLATILE (TREE_OPERAND (expr, 1)))
2184 s_ann->has_volatile_ops = true;
2185 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
2186 }
2187 else if (code == ARRAY_REF || code == ARRAY_RANGE_REF)
2188 {
2189 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
2190 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
2191 get_expr_operands (stmt, &TREE_OPERAND (expr, 3), opf_use);
2192 }
2193
2194 return;
2195 }
2196
2197 case WITH_SIZE_EXPR:
2198 /* WITH_SIZE_EXPR is a pass-through reference to its first argument,
2199 and an rvalue reference to its second argument. */
2200 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
2201 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2202 return;
2203
2204 case CALL_EXPR:
2205 get_call_expr_operands (stmt, expr);
2206 return;
2207
2208 case COND_EXPR:
2209 case VEC_COND_EXPR:
2210 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), opf_use);
2211 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
2212 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_use);
2213 return;
2214
2215 case GIMPLE_MODIFY_STMT:
2216 get_modify_stmt_operands (stmt, expr);
2217 return;
2218
2219 case CONSTRUCTOR:
2220 {
2221 /* General aggregate CONSTRUCTORs have been decomposed, but they
2222 are still in use as the COMPLEX_EXPR equivalent for vectors. */
2223 constructor_elt *ce;
2224 unsigned HOST_WIDE_INT idx;
2225
2226 for (idx = 0;
2227 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (expr), idx, ce);
2228 idx++)
2229 get_expr_operands (stmt, &ce->value, opf_use);
2230
2231 return;
2232 }
2233
2234 case BIT_FIELD_REF:
2235 case TRUTH_NOT_EXPR:
2236 case VIEW_CONVERT_EXPR:
2237 do_unary:
2238 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2239 return;
2240
2241 case TRUTH_AND_EXPR:
2242 case TRUTH_OR_EXPR:
2243 case TRUTH_XOR_EXPR:
2244 case COMPOUND_EXPR:
2245 case OBJ_TYPE_REF:
2246 case ASSERT_EXPR:
2247 do_binary:
2248 {
2249 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2250 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
2251 return;
2252 }
2253
2254 case DOT_PROD_EXPR:
2255 case REALIGN_LOAD_EXPR:
2256 {
2257 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), flags);
2258 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), flags);
2259 get_expr_operands (stmt, &TREE_OPERAND (expr, 2), flags);
2260 return;
2261 }
2262
2263 case CHANGE_DYNAMIC_TYPE_EXPR:
2264 get_expr_operands (stmt, &CHANGE_DYNAMIC_TYPE_LOCATION (expr), opf_use);
2265 return;
2266
2267 case OMP_FOR:
2268 {
2269 tree init = OMP_FOR_INIT (expr);
2270 tree cond = OMP_FOR_COND (expr);
2271 tree incr = OMP_FOR_INCR (expr);
2272 tree c, clauses = OMP_FOR_CLAUSES (stmt);
2273
2274 get_expr_operands (stmt, &GIMPLE_STMT_OPERAND (init, 0), opf_def);
2275 get_expr_operands (stmt, &GIMPLE_STMT_OPERAND (init, 1), opf_use);
2276 get_expr_operands (stmt, &TREE_OPERAND (cond, 1), opf_use);
2277 get_expr_operands (stmt, &TREE_OPERAND (GIMPLE_STMT_OPERAND (incr, 1), 1),
2278 opf_use);
2279
2280 c = find_omp_clause (clauses, OMP_CLAUSE_SCHEDULE);
2281 if (c)
2282 get_expr_operands (stmt, &OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c),
2283 opf_use);
2284 return;
2285 }
2286
2287 case OMP_CONTINUE:
2288 {
2289 get_expr_operands (stmt, &TREE_OPERAND (expr, 0), opf_def);
2290 get_expr_operands (stmt, &TREE_OPERAND (expr, 1), opf_use);
2291 return;
2292 }
2293
2294 case OMP_PARALLEL:
2295 {
2296 tree c, clauses = OMP_PARALLEL_CLAUSES (stmt);
2297
2298 if (OMP_PARALLEL_DATA_ARG (stmt))
2299 {
2300 get_expr_operands (stmt, &OMP_PARALLEL_DATA_ARG (stmt), opf_use);
2301 add_to_addressable_set (OMP_PARALLEL_DATA_ARG (stmt),
2302 &s_ann->addresses_taken);
2303 }
2304
2305 c = find_omp_clause (clauses, OMP_CLAUSE_IF);
2306 if (c)
2307 get_expr_operands (stmt, &OMP_CLAUSE_IF_EXPR (c), opf_use);
2308 c = find_omp_clause (clauses, OMP_CLAUSE_NUM_THREADS);
2309 if (c)
2310 get_expr_operands (stmt, &OMP_CLAUSE_NUM_THREADS_EXPR (c), opf_use);
2311 return;
2312 }
2313
2314 case OMP_SECTIONS:
2315 {
2316 get_expr_operands (stmt, &OMP_SECTIONS_CONTROL (expr), opf_def);
2317 return;
2318 }
2319
2320 case BLOCK:
2321 case FUNCTION_DECL:
2322 case EXC_PTR_EXPR:
2323 case FILTER_EXPR:
2324 case LABEL_DECL:
2325 case CONST_DECL:
2326 case OMP_SINGLE:
2327 case OMP_MASTER:
2328 case OMP_ORDERED:
2329 case OMP_CRITICAL:
2330 case OMP_RETURN:
2331 case OMP_SECTION:
2332 case OMP_SECTIONS_SWITCH:
2333 /* Expressions that make no memory references. */
2334 return;
2335
2336 default:
2337 if (codeclass == tcc_unary)
2338 goto do_unary;
2339 if (codeclass == tcc_binary || codeclass == tcc_comparison)
2340 goto do_binary;
2341 if (codeclass == tcc_constant || codeclass == tcc_type)
2342 return;
2343 }
2344
2345 /* If we get here, something has gone wrong. */
2346 #ifdef ENABLE_CHECKING
2347 fprintf (stderr, "unhandled expression in get_expr_operands():\n");
2348 debug_tree (expr);
2349 fputs ("\n", stderr);
2350 #endif
2351 gcc_unreachable ();
2352 }
2353
2354
2355 /* Parse STMT looking for operands. When finished, the various
2356 build_* operand vectors will have potential operands in them. */
2357
2358 static void
2359 parse_ssa_operands (tree stmt)
2360 {
2361 enum tree_code code;
2362
2363 code = TREE_CODE (stmt);
2364 switch (code)
2365 {
2366 case GIMPLE_MODIFY_STMT:
2367 get_modify_stmt_operands (stmt, stmt);
2368 break;
2369
2370 case COND_EXPR:
2371 get_expr_operands (stmt, &COND_EXPR_COND (stmt), opf_use);
2372 break;
2373
2374 case SWITCH_EXPR:
2375 get_expr_operands (stmt, &SWITCH_COND (stmt), opf_use);
2376 break;
2377
2378 case ASM_EXPR:
2379 get_asm_expr_operands (stmt);
2380 break;
2381
2382 case RETURN_EXPR:
2383 get_expr_operands (stmt, &TREE_OPERAND (stmt, 0), opf_use);
2384 break;
2385
2386 case GOTO_EXPR:
2387 get_expr_operands (stmt, &GOTO_DESTINATION (stmt), opf_use);
2388 break;
2389
2390 case LABEL_EXPR:
2391 get_expr_operands (stmt, &LABEL_EXPR_LABEL (stmt), opf_use);
2392 break;
2393
2394 case BIND_EXPR:
2395 case CASE_LABEL_EXPR:
2396 case TRY_CATCH_EXPR:
2397 case TRY_FINALLY_EXPR:
2398 case EH_FILTER_EXPR:
2399 case CATCH_EXPR:
2400 case RESX_EXPR:
2401 /* These nodes contain no variable references. */
2402 break;
2403
2404 default:
2405 /* Notice that if get_expr_operands tries to use &STMT as the
2406 operand pointer (which may only happen for USE operands), we
2407 will fail in add_stmt_operand. This default will handle
2408 statements like empty statements, or CALL_EXPRs that may
2409 appear on the RHS of a statement or as statements themselves. */
2410 get_expr_operands (stmt, &stmt, opf_use);
2411 break;
2412 }
2413 }
2414
2415
2416 /* Create an operands cache for STMT. */
2417
2418 static void
2419 build_ssa_operands (tree stmt)
2420 {
2421 stmt_ann_t ann = get_stmt_ann (stmt);
2422
2423 /* Initially assume that the statement has no volatile operands and
2424 makes no memory references. */
2425 ann->has_volatile_ops = false;
2426 ann->references_memory = false;
2427 /* Just clear the bitmap so we don't end up reallocating it over and over. */
2428 if (ann->addresses_taken)
2429 bitmap_clear (ann->addresses_taken);
2430
2431 start_ssa_stmt_operands ();
2432 parse_ssa_operands (stmt);
2433 operand_build_sort_virtual (build_vuses);
2434 operand_build_sort_virtual (build_vdefs);
2435 finalize_ssa_stmt_operands (stmt);
2436
2437 if (ann->addresses_taken && bitmap_empty_p (ann->addresses_taken))
2438 ann->addresses_taken = NULL;
2439 /* For added safety, assume that statements with volatile operands
2440 also reference memory. */
2441 if (ann->has_volatile_ops)
2442 ann->references_memory = true;
2443 }
2444
2445
2446 /* Free any operands vectors in OPS. */
2447
2448 void
2449 free_ssa_operands (stmt_operands_p ops)
2450 {
2451 ops->def_ops = NULL;
2452 ops->use_ops = NULL;
2453 ops->vdef_ops = NULL;
2454 ops->vuse_ops = NULL;
2455 BITMAP_FREE (ops->loads);
2456 BITMAP_FREE (ops->stores);
2457 }
2458
2459
2460 /* Get the operands of statement STMT. */
2461
2462 void
2463 update_stmt_operands (tree stmt)
2464 {
2465 stmt_ann_t ann = get_stmt_ann (stmt);
2466
2467 /* If update_stmt_operands is called before SSA is initialized, do
2468 nothing. */
2469 if (!ssa_operands_active ())
2470 return;
2471
2472 /* The optimizers cannot handle statements that are nothing but a
2473 _DECL. This indicates a bug in the gimplifier. */
2474 gcc_assert (!SSA_VAR_P (stmt));
2475
2476 timevar_push (TV_TREE_OPS);
2477
2478 gcc_assert (ann->modified);
2479 build_ssa_operands (stmt);
2480 ann->modified = 0;
2481
2482 timevar_pop (TV_TREE_OPS);
2483 }
2484
2485
2486 /* Copies virtual operands from SRC to DST. */
2487
2488 void
2489 copy_virtual_operands (tree dest, tree src)
2490 {
2491 unsigned int i, n;
2492 voptype_p src_vuses, dest_vuses;
2493 voptype_p src_vdefs, dest_vdefs;
2494 struct voptype_d vuse;
2495 struct voptype_d vdef;
2496 stmt_ann_t dest_ann;
2497
2498 VDEF_OPS (dest) = NULL;
2499 VUSE_OPS (dest) = NULL;
2500
2501 dest_ann = get_stmt_ann (dest);
2502 BITMAP_FREE (dest_ann->operands.loads);
2503 BITMAP_FREE (dest_ann->operands.stores);
2504
2505 if (LOADED_SYMS (src))
2506 {
2507 dest_ann->operands.loads = BITMAP_ALLOC (&operands_bitmap_obstack);
2508 bitmap_copy (dest_ann->operands.loads, LOADED_SYMS (src));
2509 }
2510
2511 if (STORED_SYMS (src))
2512 {
2513 dest_ann->operands.stores = BITMAP_ALLOC (&operands_bitmap_obstack);
2514 bitmap_copy (dest_ann->operands.stores, STORED_SYMS (src));
2515 }
2516
2517 /* Copy all the VUSE operators and corresponding operands. */
2518 dest_vuses = &vuse;
2519 for (src_vuses = VUSE_OPS (src); src_vuses; src_vuses = src_vuses->next)
2520 {
2521 n = VUSE_NUM (src_vuses);
2522 dest_vuses = add_vuse_op (dest, NULL_TREE, n, dest_vuses);
2523 for (i = 0; i < n; i++)
2524 SET_USE (VUSE_OP_PTR (dest_vuses, i), VUSE_OP (src_vuses, i));
2525
2526 if (VUSE_OPS (dest) == NULL)
2527 VUSE_OPS (dest) = vuse.next;
2528 }
2529
2530 /* Copy all the VDEF operators and corresponding operands. */
2531 dest_vdefs = &vdef;
2532 for (src_vdefs = VDEF_OPS (src); src_vdefs; src_vdefs = src_vdefs->next)
2533 {
2534 n = VUSE_NUM (src_vdefs);
2535 dest_vdefs = add_vdef_op (dest, NULL_TREE, n, dest_vdefs);
2536 VDEF_RESULT (dest_vdefs) = VDEF_RESULT (src_vdefs);
2537 for (i = 0; i < n; i++)
2538 SET_USE (VUSE_OP_PTR (dest_vdefs, i), VUSE_OP (src_vdefs, i));
2539
2540 if (VDEF_OPS (dest) == NULL)
2541 VDEF_OPS (dest) = vdef.next;
2542 }
2543 }
2544
2545
2546 /* Specifically for use in DOM's expression analysis. Given a store, we
2547 create an artificial stmt which looks like a load from the store, this can
2548 be used to eliminate redundant loads. OLD_OPS are the operands from the
2549 store stmt, and NEW_STMT is the new load which represents a load of the
2550 values stored. */
2551
2552 void
2553 create_ssa_artificial_load_stmt (tree new_stmt, tree old_stmt)
2554 {
2555 tree op;
2556 ssa_op_iter iter;
2557 use_operand_p use_p;
2558 unsigned i;
2559
2560 get_stmt_ann (new_stmt);
2561
2562 /* Process NEW_STMT looking for operands. */
2563 start_ssa_stmt_operands ();
2564 parse_ssa_operands (new_stmt);
2565
2566 for (i = 0; VEC_iterate (tree, build_vuses, i, op); i++)
2567 if (TREE_CODE (op) != SSA_NAME)
2568 var_ann (op)->in_vuse_list = false;
2569
2570 for (i = 0; VEC_iterate (tree, build_vuses, i, op); i++)
2571 if (TREE_CODE (op) != SSA_NAME)
2572 var_ann (op)->in_vdef_list = false;
2573
2574 /* Remove any virtual operands that were found. */
2575 VEC_truncate (tree, build_vdefs, 0);
2576 VEC_truncate (tree, build_vuses, 0);
2577
2578 /* For each VDEF on the original statement, we want to create a
2579 VUSE of the VDEF result operand on the new statement. */
2580 FOR_EACH_SSA_TREE_OPERAND (op, old_stmt, iter, SSA_OP_VDEF)
2581 append_vuse (op);
2582
2583 finalize_ssa_stmt_operands (new_stmt);
2584
2585 /* All uses in this fake stmt must not be in the immediate use lists. */
2586 FOR_EACH_SSA_USE_OPERAND (use_p, new_stmt, iter, SSA_OP_ALL_USES)
2587 delink_imm_use (use_p);
2588 }
2589
2590
2591 /* Swap operands EXP0 and EXP1 in statement STMT. No attempt is done
2592 to test the validity of the swap operation. */
2593
2594 void
2595 swap_tree_operands (tree stmt, tree *exp0, tree *exp1)
2596 {
2597 tree op0, op1;
2598 op0 = *exp0;
2599 op1 = *exp1;
2600
2601 /* If the operand cache is active, attempt to preserve the relative
2602 positions of these two operands in their respective immediate use
2603 lists. */
2604 if (ssa_operands_active () && op0 != op1)
2605 {
2606 use_optype_p use0, use1, ptr;
2607 use0 = use1 = NULL;
2608
2609 /* Find the 2 operands in the cache, if they are there. */
2610 for (ptr = USE_OPS (stmt); ptr; ptr = ptr->next)
2611 if (USE_OP_PTR (ptr)->use == exp0)
2612 {
2613 use0 = ptr;
2614 break;
2615 }
2616
2617 for (ptr = USE_OPS (stmt); ptr; ptr = ptr->next)
2618 if (USE_OP_PTR (ptr)->use == exp1)
2619 {
2620 use1 = ptr;
2621 break;
2622 }
2623
2624 /* If both uses don't have operand entries, there isn't much we can do
2625 at this point. Presumably we don't need to worry about it. */
2626 if (use0 && use1)
2627 {
2628 tree *tmp = USE_OP_PTR (use1)->use;
2629 USE_OP_PTR (use1)->use = USE_OP_PTR (use0)->use;
2630 USE_OP_PTR (use0)->use = tmp;
2631 }
2632 }
2633
2634 /* Now swap the data. */
2635 *exp0 = op1;
2636 *exp1 = op0;
2637 }
2638
2639
2640 /* Add the base address of REF to the set *ADDRESSES_TAKEN. If
2641 *ADDRESSES_TAKEN is NULL, a new set is created. REF may be
2642 a single variable whose address has been taken or any other valid
2643 GIMPLE memory reference (structure reference, array, etc). If the
2644 base address of REF is a decl that has sub-variables, also add all
2645 of its sub-variables. */
2646
2647 void
2648 add_to_addressable_set (tree ref, bitmap *addresses_taken)
2649 {
2650 tree var;
2651 subvar_t svars;
2652
2653 gcc_assert (addresses_taken);
2654
2655 /* Note that it is *NOT OKAY* to use the target of a COMPONENT_REF
2656 as the only thing we take the address of. If VAR is a structure,
2657 taking the address of a field means that the whole structure may
2658 be referenced using pointer arithmetic. See PR 21407 and the
2659 ensuing mailing list discussion. */
2660 var = get_base_address (ref);
2661 if (var && SSA_VAR_P (var))
2662 {
2663 if (*addresses_taken == NULL)
2664 *addresses_taken = BITMAP_GGC_ALLOC ();
2665
2666 if (var_can_have_subvars (var)
2667 && (svars = get_subvars_for_var (var)))
2668 {
2669 subvar_t sv;
2670 for (sv = svars; sv; sv = sv->next)
2671 {
2672 bitmap_set_bit (*addresses_taken, DECL_UID (sv->var));
2673 TREE_ADDRESSABLE (sv->var) = 1;
2674 }
2675 }
2676 else
2677 {
2678 bitmap_set_bit (*addresses_taken, DECL_UID (var));
2679 TREE_ADDRESSABLE (var) = 1;
2680 }
2681 }
2682 }
2683
2684
2685 /* Scan the immediate_use list for VAR making sure its linked properly.
2686 Return TRUE if there is a problem and emit an error message to F. */
2687
2688 bool
2689 verify_imm_links (FILE *f, tree var)
2690 {
2691 use_operand_p ptr, prev, list;
2692 int count;
2693
2694 gcc_assert (TREE_CODE (var) == SSA_NAME);
2695
2696 list = &(SSA_NAME_IMM_USE_NODE (var));
2697 gcc_assert (list->use == NULL);
2698
2699 if (list->prev == NULL)
2700 {
2701 gcc_assert (list->next == NULL);
2702 return false;
2703 }
2704
2705 prev = list;
2706 count = 0;
2707 for (ptr = list->next; ptr != list; )
2708 {
2709 if (prev != ptr->prev)
2710 goto error;
2711
2712 if (ptr->use == NULL)
2713 goto error; /* 2 roots, or SAFE guard node. */
2714 else if (*(ptr->use) != var)
2715 goto error;
2716
2717 prev = ptr;
2718 ptr = ptr->next;
2719
2720 /* Avoid infinite loops. 50,000,000 uses probably indicates a
2721 problem. */
2722 if (count++ > 50000000)
2723 goto error;
2724 }
2725
2726 /* Verify list in the other direction. */
2727 prev = list;
2728 for (ptr = list->prev; ptr != list; )
2729 {
2730 if (prev != ptr->next)
2731 goto error;
2732 prev = ptr;
2733 ptr = ptr->prev;
2734 if (count-- < 0)
2735 goto error;
2736 }
2737
2738 if (count != 0)
2739 goto error;
2740
2741 return false;
2742
2743 error:
2744 if (ptr->stmt && stmt_modified_p (ptr->stmt))
2745 {
2746 fprintf (f, " STMT MODIFIED. - <%p> ", (void *)ptr->stmt);
2747 print_generic_stmt (f, ptr->stmt, TDF_SLIM);
2748 }
2749 fprintf (f, " IMM ERROR : (use_p : tree - %p:%p)", (void *)ptr,
2750 (void *)ptr->use);
2751 print_generic_expr (f, USE_FROM_PTR (ptr), TDF_SLIM);
2752 fprintf(f, "\n");
2753 return true;
2754 }
2755
2756
2757 /* Dump all the immediate uses to FILE. */
2758
2759 void
2760 dump_immediate_uses_for (FILE *file, tree var)
2761 {
2762 imm_use_iterator iter;
2763 use_operand_p use_p;
2764
2765 gcc_assert (var && TREE_CODE (var) == SSA_NAME);
2766
2767 print_generic_expr (file, var, TDF_SLIM);
2768 fprintf (file, " : -->");
2769 if (has_zero_uses (var))
2770 fprintf (file, " no uses.\n");
2771 else
2772 if (has_single_use (var))
2773 fprintf (file, " single use.\n");
2774 else
2775 fprintf (file, "%d uses.\n", num_imm_uses (var));
2776
2777 FOR_EACH_IMM_USE_FAST (use_p, iter, var)
2778 {
2779 if (use_p->stmt == NULL && use_p->use == NULL)
2780 fprintf (file, "***end of stmt iterator marker***\n");
2781 else
2782 if (!is_gimple_reg (USE_FROM_PTR (use_p)))
2783 print_generic_stmt (file, USE_STMT (use_p), TDF_VOPS|TDF_MEMSYMS);
2784 else
2785 print_generic_stmt (file, USE_STMT (use_p), TDF_SLIM);
2786 }
2787 fprintf(file, "\n");
2788 }
2789
2790
2791 /* Dump all the immediate uses to FILE. */
2792
2793 void
2794 dump_immediate_uses (FILE *file)
2795 {
2796 tree var;
2797 unsigned int x;
2798
2799 fprintf (file, "Immediate_uses: \n\n");
2800 for (x = 1; x < num_ssa_names; x++)
2801 {
2802 var = ssa_name(x);
2803 if (!var)
2804 continue;
2805 dump_immediate_uses_for (file, var);
2806 }
2807 }
2808
2809
2810 /* Dump def-use edges on stderr. */
2811
2812 void
2813 debug_immediate_uses (void)
2814 {
2815 dump_immediate_uses (stderr);
2816 }
2817
2818
2819 /* Dump def-use edges on stderr. */
2820
2821 void
2822 debug_immediate_uses_for (tree var)
2823 {
2824 dump_immediate_uses_for (stderr, var);
2825 }
2826
2827
2828 /* Create a new change buffer for the statement pointed by STMT_P and
2829 push the buffer into SCB_STACK. Each change buffer
2830 records state information needed to determine what changed in the
2831 statement. Mainly, this keeps track of symbols that may need to be
2832 put into SSA form, SSA name replacements and other information
2833 needed to keep the SSA form up to date. */
2834
2835 void
2836 push_stmt_changes (tree *stmt_p)
2837 {
2838 tree stmt;
2839 scb_t buf;
2840
2841 stmt = *stmt_p;
2842
2843 /* It makes no sense to keep track of PHI nodes. */
2844 if (TREE_CODE (stmt) == PHI_NODE)
2845 return;
2846
2847 buf = XNEW (struct scb_d);
2848 memset (buf, 0, sizeof *buf);
2849
2850 buf->stmt_p = stmt_p;
2851
2852 if (stmt_references_memory_p (stmt))
2853 {
2854 tree op;
2855 ssa_op_iter i;
2856
2857 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VUSE)
2858 {
2859 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2860 if (buf->loads == NULL)
2861 buf->loads = BITMAP_ALLOC (NULL);
2862 bitmap_set_bit (buf->loads, DECL_UID (sym));
2863 }
2864
2865 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VDEF)
2866 {
2867 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2868 if (buf->stores == NULL)
2869 buf->stores = BITMAP_ALLOC (NULL);
2870 bitmap_set_bit (buf->stores, DECL_UID (sym));
2871 }
2872 }
2873
2874 VEC_safe_push (scb_t, heap, scb_stack, buf);
2875 }
2876
2877
2878 /* Given two sets S1 and S2, mark the symbols that differ in S1 and S2
2879 for renaming. The set to mark for renaming is (S1 & ~S2) | (S2 & ~S1). */
2880
2881 static void
2882 mark_difference_for_renaming (bitmap s1, bitmap s2)
2883 {
2884 if (s1 == NULL && s2 == NULL)
2885 return;
2886
2887 if (s1 && s2 == NULL)
2888 mark_set_for_renaming (s1);
2889 else if (s1 == NULL && s2)
2890 mark_set_for_renaming (s2);
2891 else if (!bitmap_equal_p (s1, s2))
2892 {
2893 bitmap t1 = BITMAP_ALLOC (NULL);
2894 bitmap t2 = BITMAP_ALLOC (NULL);
2895
2896 bitmap_and_compl (t1, s1, s2);
2897 bitmap_and_compl (t2, s2, s1);
2898 bitmap_ior_into (t1, t2);
2899 mark_set_for_renaming (t1);
2900
2901 BITMAP_FREE (t1);
2902 BITMAP_FREE (t2);
2903 }
2904 }
2905
2906
2907 /* Pop the top SCB from SCB_STACK and act on the differences between
2908 what was recorded by push_stmt_changes and the current state of
2909 the statement. */
2910
2911 void
2912 pop_stmt_changes (tree *stmt_p)
2913 {
2914 tree op, stmt;
2915 ssa_op_iter iter;
2916 bitmap loads, stores;
2917 scb_t buf;
2918
2919 stmt = *stmt_p;
2920
2921 /* It makes no sense to keep track of PHI nodes. */
2922 if (TREE_CODE (stmt) == PHI_NODE)
2923 return;
2924
2925 buf = VEC_pop (scb_t, scb_stack);
2926 gcc_assert (stmt_p == buf->stmt_p);
2927
2928 /* Force an operand re-scan on the statement and mark any newly
2929 exposed variables. */
2930 update_stmt (stmt);
2931
2932 /* Determine whether any memory symbols need to be renamed. If the
2933 sets of loads and stores are different after the statement is
2934 modified, then the affected symbols need to be renamed.
2935
2936 Note that it may be possible for the statement to not reference
2937 memory anymore, but we still need to act on the differences in
2938 the sets of symbols. */
2939 loads = stores = NULL;
2940 if (stmt_references_memory_p (stmt))
2941 {
2942 tree op;
2943 ssa_op_iter i;
2944
2945 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VUSE)
2946 {
2947 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2948 if (loads == NULL)
2949 loads = BITMAP_ALLOC (NULL);
2950 bitmap_set_bit (loads, DECL_UID (sym));
2951 }
2952
2953 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_VDEF)
2954 {
2955 tree sym = TREE_CODE (op) == SSA_NAME ? SSA_NAME_VAR (op) : op;
2956 if (stores == NULL)
2957 stores = BITMAP_ALLOC (NULL);
2958 bitmap_set_bit (stores, DECL_UID (sym));
2959 }
2960 }
2961
2962 /* If LOADS is different from BUF->LOADS, the affected
2963 symbols need to be marked for renaming. */
2964 mark_difference_for_renaming (loads, buf->loads);
2965
2966 /* Similarly for STORES and BUF->STORES. */
2967 mark_difference_for_renaming (stores, buf->stores);
2968
2969 /* Mark all the naked GIMPLE register operands for renaming. */
2970 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_DEF|SSA_OP_USE)
2971 if (DECL_P (op))
2972 mark_sym_for_renaming (op);
2973
2974 /* FIXME, need to add more finalizers here. Cleanup EH info,
2975 recompute invariants for address expressions, add
2976 SSA replacement mappings, etc. For instance, given
2977 testsuite/gcc.c-torture/compile/pr16808.c, we fold a statement of
2978 the form:
2979
2980 # SMT.4_20 = VDEF <SMT.4_16>
2981 D.1576_11 = 1.0e+0;
2982
2983 So, the VDEF will disappear, but instead of marking SMT.4 for
2984 renaming it would be far more efficient to establish a
2985 replacement mapping that would replace every reference of
2986 SMT.4_20 with SMT.4_16. */
2987
2988 /* Free memory used by the buffer. */
2989 BITMAP_FREE (buf->loads);
2990 BITMAP_FREE (buf->stores);
2991 BITMAP_FREE (loads);
2992 BITMAP_FREE (stores);
2993 buf->stmt_p = NULL;
2994 free (buf);
2995 }
2996
2997
2998 /* Discard the topmost change buffer from SCB_STACK. This is useful
2999 when the caller realized that it did not actually modified the
3000 statement. It avoids the expensive operand re-scan. */
3001
3002 void
3003 discard_stmt_changes (tree *stmt_p)
3004 {
3005 scb_t buf;
3006 tree stmt;
3007
3008 /* It makes no sense to keep track of PHI nodes. */
3009 stmt = *stmt_p;
3010 if (TREE_CODE (stmt) == PHI_NODE)
3011 return;
3012
3013 buf = VEC_pop (scb_t, scb_stack);
3014 gcc_assert (stmt_p == buf->stmt_p);
3015
3016 /* Free memory used by the buffer. */
3017 BITMAP_FREE (buf->loads);
3018 BITMAP_FREE (buf->stores);
3019 buf->stmt_p = NULL;
3020 free (buf);
3021 }
3022
3023
3024 /* Returns true if statement STMT may access memory. */
3025
3026 bool
3027 stmt_references_memory_p (tree stmt)
3028 {
3029 if (!gimple_ssa_operands (cfun)->ops_active || TREE_CODE (stmt) == PHI_NODE)
3030 return false;
3031
3032 return stmt_ann (stmt)->references_memory;
3033 }
This page took 0.173554 seconds and 6 git commands to generate.