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)
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/>. */
22 #include "coretypes.h"
27 #include "diagnostic.h"
28 #include "tree-flow.h"
29 #include "tree-inline.h"
30 #include "tree-pass.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
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
74 operand vector for VUSE, then the new vector will also be modified
75 such that it contains 'a_5' rather than 'a'. */
78 /* Structure storing statistics on how many call clobbers we have, and
79 how many where avoided. */
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
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
;
107 /* Flags to describe operand properties in helpers. */
109 /* By default, operands are loaded. */
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
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. */
180 /* Pointer to the statement being modified. */
183 /* If the statement references memory these are the sets of symbols
184 loaded and stored by the statement. */
189 typedef struct scb_d
*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
)
207 return DECL_UID (SSA_NAME_VAR (t
));
211 /* Comparison function for qsort used in operand_build_sort_virtual. */
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
);
225 return (u1
> u2
? 1 : -1);
229 /* Sort the virtual operands in LIST from lowest DECL_UID to highest. */
232 operand_build_sort_virtual (VEC(tree
,heap
) *list
)
234 int num
= VEC_length (tree
, list
);
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
);
252 /* There are 3 or more elements, call qsort. */
253 qsort (VEC_address (tree
, list
),
254 VEC_length (tree
, list
),
260 /* Return true if the SSA operands cache is active. */
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
282 Any VOPs larger than this are simply added to the largest bucket when they
286 /* Return the number of operands used in bucket BUCKET. */
289 vop_free_bucket_size (int bucket
)
291 #ifdef ENABLE_CHECKING
292 gcc_assert (bucket
>= 0 && bucket
< NUM_VOP_FREE_BUCKETS
);
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. */
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. */
311 /* Buckets 16 - NUM_VOP_FREE_BUCKETS represent 8 unit chunks. */
312 num
= 14 + (num
- 1) / 8;
313 if (num
>= NUM_VOP_FREE_BUCKETS
)
320 /* Initialize the VOP free buckets. */
323 init_vop_buckets (void)
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. */
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. */
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
354 #define OP_SIZE_2 110
355 #define OP_SIZE_3 511
357 /* Initialize the operand cache routines. */
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
));
381 gimple_ssa_operands (cfun
)->ssa_operand_mem_size
= OP_SIZE_INIT
;
385 /* Dispose of anything required by the operand routines. */
388 fini_ssa_operands (void)
390 struct ssa_operand_memory_d
*ptr
;
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
);
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
;
420 VEC_iterate (tree
, gimple_ssa_operands (cfun
)->mpt_table
, ix
, 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;
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. */
454 ssa_operand_alloc (unsigned size
)
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
);
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
);
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 /* We can reliably trigger the case that we need arbitrary many
481 operands (see PR34093), so allocate a buffer just for this request. */
482 if (size
> gimple_ssa_operands (cfun
)->ssa_operand_mem_size
)
483 gimple_ssa_operands (cfun
)->ssa_operand_mem_size
= size
;
485 ptr
= (struct ssa_operand_memory_d
*)
486 ggc_alloc (sizeof (struct ssa_operand_memory_d
)
487 + gimple_ssa_operands (cfun
)->ssa_operand_mem_size
- 1);
488 ptr
->next
= gimple_ssa_operands (cfun
)->operand_memory
;
489 gimple_ssa_operands (cfun
)->operand_memory
= ptr
;
490 gimple_ssa_operands (cfun
)->operand_memory_index
= 0;
492 ptr
= &(gimple_ssa_operands (cfun
)->operand_memory
493 ->mem
[gimple_ssa_operands (cfun
)->operand_memory_index
]);
494 gimple_ssa_operands (cfun
)->operand_memory_index
+= size
;
499 /* Allocate a DEF operand. */
501 static inline struct def_optype_d
*
504 struct def_optype_d
*ret
;
505 if (gimple_ssa_operands (cfun
)->free_defs
)
507 ret
= gimple_ssa_operands (cfun
)->free_defs
;
508 gimple_ssa_operands (cfun
)->free_defs
509 = gimple_ssa_operands (cfun
)->free_defs
->next
;
512 ret
= (struct def_optype_d
*)
513 ssa_operand_alloc (sizeof (struct def_optype_d
));
518 /* Allocate a USE operand. */
520 static inline struct use_optype_d
*
523 struct use_optype_d
*ret
;
524 if (gimple_ssa_operands (cfun
)->free_uses
)
526 ret
= gimple_ssa_operands (cfun
)->free_uses
;
527 gimple_ssa_operands (cfun
)->free_uses
528 = gimple_ssa_operands (cfun
)->free_uses
->next
;
531 ret
= (struct use_optype_d
*)
532 ssa_operand_alloc (sizeof (struct use_optype_d
));
537 /* Allocate a vop with NUM elements. */
539 static inline struct voptype_d
*
542 struct voptype_d
*ret
= NULL
;
545 int bucket
= vop_free_bucket_index (num
);
548 /* If there is a free operand, use it. */
549 if (gimple_ssa_operands (cfun
)->vop_free_buckets
[bucket
] != NULL
)
551 ret
= gimple_ssa_operands (cfun
)->vop_free_buckets
[bucket
];
552 gimple_ssa_operands (cfun
)->vop_free_buckets
[bucket
] =
553 gimple_ssa_operands (cfun
)->vop_free_buckets
[bucket
]->next
;
556 alloc_size
= vop_free_bucket_size(bucket
);
562 ret
= (struct voptype_d
*)ssa_operand_alloc (
563 sizeof (struct voptype_d
) + (alloc_size
- 1) * sizeof (vuse_element_t
));
565 VUSE_VECT_NUM_ELEM (ret
->usev
) = num
;
570 /* This routine makes sure that PTR is in an immediate use list, and makes
571 sure the stmt pointer is set to the current stmt. */
574 set_virtual_use_link (use_operand_p ptr
, tree stmt
)
576 /* fold_stmt may have changed the stmt pointers. */
577 if (ptr
->stmt
!= stmt
)
580 /* If this use isn't in a list, add it to the correct list. */
582 link_imm_use (ptr
, *(ptr
->use
));
586 /* Adds OP to the list of defs after LAST. */
588 static inline def_optype_p
589 add_def_op (tree
*op
, def_optype_p last
)
591 def_optype_p new_def
;
593 new_def
= alloc_def ();
594 DEF_OP_PTR (new_def
) = op
;
595 last
->next
= new_def
;
596 new_def
->next
= NULL
;
601 /* Adds OP to the list of uses of statement STMT after LAST. */
603 static inline use_optype_p
604 add_use_op (tree stmt
, tree
*op
, use_optype_p last
)
606 use_optype_p new_use
;
608 new_use
= alloc_use ();
609 USE_OP_PTR (new_use
)->use
= op
;
610 link_imm_use_stmt (USE_OP_PTR (new_use
), *op
, stmt
);
611 last
->next
= new_use
;
612 new_use
->next
= NULL
;
617 /* Return a virtual op pointer with NUM elements which are all
618 initialized to OP and are linked into the immediate uses for STMT.
619 The new vop is appended after PREV. */
621 static inline voptype_p
622 add_vop (tree stmt
, tree op
, int num
, voptype_p prev
)
627 new_vop
= alloc_vop (num
);
628 for (x
= 0; x
< num
; x
++)
630 VUSE_OP_PTR (new_vop
, x
)->prev
= NULL
;
631 SET_VUSE_OP (new_vop
, x
, op
);
632 VUSE_OP_PTR (new_vop
, x
)->use
= &new_vop
->usev
.uses
[x
].use_var
;
633 link_imm_use_stmt (VUSE_OP_PTR (new_vop
, x
),
634 new_vop
->usev
.uses
[x
].use_var
, stmt
);
638 prev
->next
= new_vop
;
639 new_vop
->next
= NULL
;
644 /* Adds OP to the list of vuses of statement STMT after LAST, and moves
645 LAST to the new element. */
647 static inline voptype_p
648 add_vuse_op (tree stmt
, tree op
, int num
, voptype_p last
)
650 voptype_p new_vop
= add_vop (stmt
, op
, num
, last
);
651 VDEF_RESULT (new_vop
) = NULL_TREE
;
656 /* Adds OP to the list of vdefs of statement STMT after LAST, and moves
657 LAST to the new element. */
659 static inline voptype_p
660 add_vdef_op (tree stmt
, tree op
, int num
, voptype_p last
)
662 voptype_p new_vop
= add_vop (stmt
, op
, num
, last
);
663 VDEF_RESULT (new_vop
) = op
;
668 /* Takes elements from build_defs and turns them into def operands of STMT.
669 TODO -- Make build_defs VEC of tree *. */
672 finalize_ssa_defs (tree stmt
)
675 struct def_optype_d new_list
;
676 def_optype_p old_ops
, last
;
677 unsigned int num
= VEC_length (tree
, build_defs
);
679 /* There should only be a single real definition per assignment. */
680 gcc_assert ((stmt
&& TREE_CODE (stmt
) != GIMPLE_MODIFY_STMT
) || num
<= 1);
682 new_list
.next
= NULL
;
685 old_ops
= DEF_OPS (stmt
);
689 /* Check for the common case of 1 def that hasn't changed. */
690 if (old_ops
&& old_ops
->next
== NULL
&& num
== 1
691 && (tree
*) VEC_index (tree
, build_defs
, 0) == DEF_OP_PTR (old_ops
))
694 /* If there is anything in the old list, free it. */
697 old_ops
->next
= gimple_ssa_operands (cfun
)->free_defs
;
698 gimple_ssa_operands (cfun
)->free_defs
= old_ops
;
701 /* If there is anything remaining in the build_defs list, simply emit it. */
702 for ( ; new_i
< num
; new_i
++)
703 last
= add_def_op ((tree
*) VEC_index (tree
, build_defs
, new_i
), last
);
705 /* Now set the stmt's operands. */
706 DEF_OPS (stmt
) = new_list
.next
;
708 #ifdef ENABLE_CHECKING
712 for (ptr
= DEF_OPS (stmt
); ptr
; ptr
= ptr
->next
)
715 gcc_assert (x
== num
);
721 /* Takes elements from build_uses and turns them into use operands of STMT.
722 TODO -- Make build_uses VEC of tree *. */
725 finalize_ssa_uses (tree stmt
)
728 struct use_optype_d new_list
;
729 use_optype_p old_ops
, ptr
, last
;
731 #ifdef ENABLE_CHECKING
734 unsigned num
= VEC_length (tree
, build_uses
);
736 /* If the pointer to the operand is the statement itself, something is
737 wrong. It means that we are pointing to a local variable (the
738 initial call to update_stmt_operands does not pass a pointer to a
740 for (x
= 0; x
< num
; x
++)
741 gcc_assert (*((tree
*)VEC_index (tree
, build_uses
, x
)) != stmt
);
745 new_list
.next
= NULL
;
748 old_ops
= USE_OPS (stmt
);
750 /* If there is anything in the old list, free it. */
753 for (ptr
= old_ops
; ptr
; ptr
= ptr
->next
)
754 delink_imm_use (USE_OP_PTR (ptr
));
755 old_ops
->next
= gimple_ssa_operands (cfun
)->free_uses
;
756 gimple_ssa_operands (cfun
)->free_uses
= old_ops
;
759 /* Now create nodes for all the new nodes. */
760 for (new_i
= 0; new_i
< VEC_length (tree
, build_uses
); new_i
++)
761 last
= add_use_op (stmt
,
762 (tree
*) VEC_index (tree
, build_uses
, new_i
),
765 /* Now set the stmt's operands. */
766 USE_OPS (stmt
) = new_list
.next
;
768 #ifdef ENABLE_CHECKING
771 for (ptr
= USE_OPS (stmt
); ptr
; ptr
= ptr
->next
)
774 gcc_assert (x
== VEC_length (tree
, build_uses
));
780 /* Takes elements from BUILD_VDEFS and turns them into vdef operands of
781 STMT. FIXME, for now VDEF operators should have a single operand
785 finalize_ssa_vdefs (tree stmt
)
788 struct voptype_d new_list
;
789 voptype_p old_ops
, ptr
, last
;
790 stmt_ann_t ann
= stmt_ann (stmt
);
792 /* Set the symbols referenced by STMT. */
793 if (!bitmap_empty_p (build_stores
))
795 if (ann
->operands
.stores
== NULL
)
796 ann
->operands
.stores
= BITMAP_ALLOC (&operands_bitmap_obstack
);
798 bitmap_copy (ann
->operands
.stores
, build_stores
);
801 BITMAP_FREE (ann
->operands
.stores
);
803 /* If aliases have not been computed, do not instantiate a virtual
804 operator on STMT. Initially, we only compute the SSA form on
805 GIMPLE registers. The virtual SSA form is only computed after
806 alias analysis, so virtual operators will remain unrenamed and
807 the verifier will complain. However, alias analysis needs to
808 access symbol load/store information, so we need to compute
810 if (!gimple_aliases_computed_p (cfun
))
813 new_list
.next
= NULL
;
816 old_ops
= VDEF_OPS (stmt
);
818 while (old_ops
&& new_i
< VEC_length (tree
, build_vdefs
))
820 tree op
= VEC_index (tree
, build_vdefs
, new_i
);
821 unsigned new_uid
= get_name_decl (op
);
822 unsigned old_uid
= get_name_decl (VDEF_RESULT (old_ops
));
824 /* FIXME, for now each VDEF operator should have at most one
825 operand in their RHS. */
826 gcc_assert (VDEF_NUM (old_ops
) == 1);
828 if (old_uid
== new_uid
)
830 /* If the symbols are the same, reuse the existing operand. */
831 last
->next
= old_ops
;
833 old_ops
= old_ops
->next
;
835 set_virtual_use_link (VDEF_OP_PTR (last
, 0), stmt
);
838 else if (old_uid
< new_uid
)
840 /* If old is less than new, old goes to the free list. */
842 delink_imm_use (VDEF_OP_PTR (old_ops
, 0));
843 next
= old_ops
->next
;
844 add_vop_to_freelist (old_ops
);
849 /* This is a new operand. */
850 last
= add_vdef_op (stmt
, op
, 1, last
);
855 /* If there is anything remaining in BUILD_VDEFS, simply emit it. */
856 for ( ; new_i
< VEC_length (tree
, build_vdefs
); new_i
++)
857 last
= add_vdef_op (stmt
, VEC_index (tree
, build_vdefs
, new_i
), 1, last
);
859 /* If there is anything in the old list, free it. */
862 for (ptr
= old_ops
; ptr
; ptr
= last
)
865 delink_imm_use (VDEF_OP_PTR (ptr
, 0));
866 add_vop_to_freelist (ptr
);
870 /* Now set STMT's operands. */
871 VDEF_OPS (stmt
) = new_list
.next
;
873 #ifdef ENABLE_CHECKING
876 for (ptr
= VDEF_OPS (stmt
); ptr
; ptr
= ptr
->next
)
879 gcc_assert (x
== VEC_length (tree
, build_vdefs
));
885 /* Takes elements from BUILD_VUSES and turns them into VUSE operands of
889 finalize_ssa_vuse_ops (tree stmt
)
891 unsigned new_i
, old_i
;
892 voptype_p old_ops
, last
;
893 VEC(tree
,heap
) *new_ops
;
896 /* Set the symbols referenced by STMT. */
897 ann
= stmt_ann (stmt
);
898 if (!bitmap_empty_p (build_loads
))
900 if (ann
->operands
.loads
== NULL
)
901 ann
->operands
.loads
= BITMAP_ALLOC (&operands_bitmap_obstack
);
903 bitmap_copy (ann
->operands
.loads
, build_loads
);
906 BITMAP_FREE (ann
->operands
.loads
);
908 /* If aliases have not been computed, do not instantiate a virtual
909 operator on STMT. Initially, we only compute the SSA form on
910 GIMPLE registers. The virtual SSA form is only computed after
911 alias analysis, so virtual operators will remain unrenamed and
912 the verifier will complain. However, alias analysis needs to
913 access symbol load/store information, so we need to compute
915 if (!gimple_aliases_computed_p (cfun
))
918 /* STMT should have at most one VUSE operator. */
919 old_ops
= VUSE_OPS (stmt
);
920 gcc_assert (old_ops
== NULL
|| old_ops
->next
== NULL
);
925 && old_i
< VUSE_NUM (old_ops
)
926 && new_i
< VEC_length (tree
, build_vuses
))
928 tree new_op
= VEC_index (tree
, build_vuses
, new_i
);
929 tree old_op
= VUSE_OP (old_ops
, old_i
);
930 unsigned new_uid
= get_name_decl (new_op
);
931 unsigned old_uid
= get_name_decl (old_op
);
933 if (old_uid
== new_uid
)
935 /* If the symbols are the same, reuse the existing operand. */
936 VEC_safe_push (tree
, heap
, new_ops
, old_op
);
940 else if (old_uid
< new_uid
)
942 /* If OLD_UID is less than NEW_UID, the old operand has
943 disappeared, skip to the next old operand. */
948 /* This is a new operand. */
949 VEC_safe_push (tree
, heap
, new_ops
, new_op
);
954 /* If there is anything remaining in the build_vuses list, simply emit it. */
955 for ( ; new_i
< VEC_length (tree
, build_vuses
); new_i
++)
956 VEC_safe_push (tree
, heap
, new_ops
, VEC_index (tree
, build_vuses
, new_i
));
958 /* If there is anything in the old list, free it. */
961 for (old_i
= 0; old_i
< VUSE_NUM (old_ops
); old_i
++)
962 delink_imm_use (VUSE_OP_PTR (old_ops
, old_i
));
963 add_vop_to_freelist (old_ops
);
964 VUSE_OPS (stmt
) = NULL
;
967 /* If there are any operands, instantiate a VUSE operator for STMT. */
973 last
= add_vuse_op (stmt
, NULL
, VEC_length (tree
, new_ops
), NULL
);
975 for (i
= 0; VEC_iterate (tree
, new_ops
, i
, op
); i
++)
976 SET_USE (VUSE_OP_PTR (last
, (int) i
), op
);
978 VUSE_OPS (stmt
) = last
;
979 VEC_free (tree
, heap
, new_ops
);
982 #ifdef ENABLE_CHECKING
988 gcc_assert (VUSE_OPS (stmt
)->next
== NULL
);
989 x
= VUSE_NUM (VUSE_OPS (stmt
));
994 gcc_assert (x
== VEC_length (tree
, build_vuses
));
999 /* Return a new VUSE operand vector for STMT. */
1002 finalize_ssa_vuses (tree stmt
)
1004 unsigned num
, num_vdefs
;
1005 unsigned vuse_index
;
1007 /* Remove superfluous VUSE operands. If the statement already has a
1008 VDEF operator for a variable 'a', then a VUSE for 'a' is not
1009 needed because VDEFs imply a VUSE of the variable. For instance,
1010 suppose that variable 'a' is pointed-to by p and q:
1016 The VUSE <a_2> is superfluous because it is implied by the
1018 num
= VEC_length (tree
, build_vuses
);
1019 num_vdefs
= VEC_length (tree
, build_vdefs
);
1021 if (num
> 0 && num_vdefs
> 0)
1022 for (vuse_index
= 0; vuse_index
< VEC_length (tree
, build_vuses
); )
1025 vuse
= VEC_index (tree
, build_vuses
, vuse_index
);
1026 if (TREE_CODE (vuse
) != SSA_NAME
)
1028 var_ann_t ann
= var_ann (vuse
);
1029 ann
->in_vuse_list
= 0;
1030 if (ann
->in_vdef_list
)
1032 VEC_ordered_remove (tree
, build_vuses
, vuse_index
);
1039 finalize_ssa_vuse_ops (stmt
);
1043 /* Clear the in_list bits and empty the build array for VDEFs and
1047 cleanup_build_arrays (void)
1052 for (i
= 0; VEC_iterate (tree
, build_vdefs
, i
, t
); i
++)
1053 if (TREE_CODE (t
) != SSA_NAME
)
1054 var_ann (t
)->in_vdef_list
= false;
1056 for (i
= 0; VEC_iterate (tree
, build_vuses
, i
, t
); i
++)
1057 if (TREE_CODE (t
) != SSA_NAME
)
1058 var_ann (t
)->in_vuse_list
= false;
1060 VEC_truncate (tree
, build_vdefs
, 0);
1061 VEC_truncate (tree
, build_vuses
, 0);
1062 VEC_truncate (tree
, build_defs
, 0);
1063 VEC_truncate (tree
, build_uses
, 0);
1064 bitmap_clear (build_loads
);
1065 bitmap_clear (build_stores
);
1069 /* Finalize all the build vectors, fill the new ones into INFO. */
1072 finalize_ssa_stmt_operands (tree stmt
)
1074 finalize_ssa_defs (stmt
);
1075 finalize_ssa_uses (stmt
);
1076 finalize_ssa_vdefs (stmt
);
1077 finalize_ssa_vuses (stmt
);
1078 cleanup_build_arrays ();
1082 /* Start the process of building up operands vectors in INFO. */
1085 start_ssa_stmt_operands (void)
1087 gcc_assert (VEC_length (tree
, build_defs
) == 0);
1088 gcc_assert (VEC_length (tree
, build_uses
) == 0);
1089 gcc_assert (VEC_length (tree
, build_vuses
) == 0);
1090 gcc_assert (VEC_length (tree
, build_vdefs
) == 0);
1091 gcc_assert (bitmap_empty_p (build_loads
));
1092 gcc_assert (bitmap_empty_p (build_stores
));
1096 /* Add DEF_P to the list of pointers to operands. */
1099 append_def (tree
*def_p
)
1101 VEC_safe_push (tree
, heap
, build_defs
, (tree
) def_p
);
1105 /* Add USE_P to the list of pointers to operands. */
1108 append_use (tree
*use_p
)
1110 VEC_safe_push (tree
, heap
, build_uses
, (tree
) use_p
);
1114 /* Add VAR to the set of variables that require a VDEF operator. */
1117 append_vdef (tree var
)
1121 if (TREE_CODE (var
) != SSA_NAME
)
1126 /* If VAR belongs to a memory partition, use it instead of VAR. */
1127 mpt
= memory_partition (var
);
1131 /* Don't allow duplicate entries. */
1132 ann
= get_var_ann (var
);
1133 if (ann
->in_vdef_list
)
1136 ann
->in_vdef_list
= true;
1140 sym
= SSA_NAME_VAR (var
);
1142 VEC_safe_push (tree
, heap
, build_vdefs
, var
);
1143 bitmap_set_bit (build_stores
, DECL_UID (sym
));
1147 /* Add VAR to the set of variables that require a VUSE operator. */
1150 append_vuse (tree var
)
1154 if (TREE_CODE (var
) != SSA_NAME
)
1159 /* If VAR belongs to a memory partition, use it instead of VAR. */
1160 mpt
= memory_partition (var
);
1164 /* Don't allow duplicate entries. */
1165 ann
= get_var_ann (var
);
1166 if (ann
->in_vuse_list
)
1168 else if (ann
->in_vdef_list
)
1170 /* We don't want a vuse if we already have a vdef, but we must
1171 still put this in build_loads. */
1172 bitmap_set_bit (build_loads
, DECL_UID (var
));
1176 ann
->in_vuse_list
= true;
1180 sym
= SSA_NAME_VAR (var
);
1182 VEC_safe_push (tree
, heap
, build_vuses
, var
);
1183 bitmap_set_bit (build_loads
, DECL_UID (sym
));
1187 /* REF is a tree that contains the entire pointer dereference
1188 expression, if available, or NULL otherwise. ALIAS is the variable
1189 we are asking if REF can access. OFFSET and SIZE come from the
1190 memory access expression that generated this virtual operand.
1192 XXX: We should handle the NO_ALIAS attributes here. */
1195 access_can_touch_variable (tree ref
, tree alias
, HOST_WIDE_INT offset
,
1198 bool offsetgtz
= offset
> 0;
1199 unsigned HOST_WIDE_INT uoffset
= (unsigned HOST_WIDE_INT
) offset
;
1200 tree base
= ref
? get_base_address (ref
) : NULL
;
1202 /* If ALIAS is .GLOBAL_VAR then the memory reference REF must be
1203 using a call-clobbered memory tag. By definition, call-clobbered
1204 memory tags can always touch .GLOBAL_VAR. */
1205 if (alias
== gimple_global_var (cfun
))
1208 /* If ref is a TARGET_MEM_REF, just return true, as we can't really
1209 disambiguate them right now. */
1210 if (ref
&& TREE_CODE (ref
) == TARGET_MEM_REF
)
1213 /* Without strict aliasing, it is impossible for a component access
1214 through a pointer to touch a random variable, unless that
1215 variable *is* a structure or a pointer.
1217 That is, given p->c, and some random global variable b,
1218 there is no legal way that p->c could be an access to b.
1220 Without strict aliasing on, we consider it legal to do something
1223 struct foos { int l; };
1225 static struct foos *getfoo(void);
1228 struct foos *f = getfoo();
1235 static struct foos *getfoo(void)
1236 { return (struct foos *)&foo; }
1238 (taken from 20000623-1.c)
1240 The docs also say/imply that access through union pointers
1241 is legal (but *not* if you take the address of the union member,
1242 i.e. the inverse), such that you can do
1252 U *pretmp = (U*)&rv;
1256 To implement this, we just punt on accesses through union
1259 Another case we have to allow is accessing a variable
1260 through an array access at offset zero. This happens from
1261 code generated by the fortran frontend like
1263 char[1:1] & my_char_ref;
1265 my_char_ref_1 = (char[1:1] &) &my_char;
1266 D.874_2 = (*my_char_ref_1)[1]{lb: 1 sz: 1};
1269 && flag_strict_aliasing
1270 && TREE_CODE (ref
) != INDIRECT_REF
1273 && (TREE_CODE (base
) != INDIRECT_REF
1274 || TREE_CODE (TREE_TYPE (base
)) != UNION_TYPE
)
1275 && (TREE_CODE (base
) != INDIRECT_REF
1276 || TREE_CODE (ref
) != ARRAY_REF
1278 || (DECL_SIZE (alias
)
1279 && TREE_CODE (DECL_SIZE (alias
)) == INTEGER_CST
1281 && (unsigned HOST_WIDE_INT
)size
1282 != TREE_INT_CST_LOW (DECL_SIZE (alias
))))
1283 && !AGGREGATE_TYPE_P (TREE_TYPE (alias
))
1284 && TREE_CODE (TREE_TYPE (alias
)) != COMPLEX_TYPE
1285 && !var_ann (alias
)->is_heapvar
1286 /* When the struct has may_alias attached to it, we need not to
1288 && get_alias_set (base
))
1290 #ifdef ACCESS_DEBUGGING
1291 fprintf (stderr
, "Access to ");
1292 print_generic_expr (stderr
, ref
, 0);
1293 fprintf (stderr
, " may not touch ");
1294 print_generic_expr (stderr
, alias
, 0);
1295 fprintf (stderr
, " in function %s\n", get_name (current_function_decl
));
1300 /* If the offset of the access is greater than the size of one of
1301 the possible aliases, it can't be touching that alias, because it
1302 would be past the end of the structure. */
1304 && flag_strict_aliasing
1305 && TREE_CODE (ref
) != INDIRECT_REF
1307 && !POINTER_TYPE_P (TREE_TYPE (alias
))
1309 && DECL_SIZE (alias
)
1310 && TREE_CODE (DECL_SIZE (alias
)) == INTEGER_CST
1311 && uoffset
> TREE_INT_CST_LOW (DECL_SIZE (alias
)))
1313 #ifdef ACCESS_DEBUGGING
1314 fprintf (stderr
, "Access to ");
1315 print_generic_expr (stderr
, ref
, 0);
1316 fprintf (stderr
, " may not touch ");
1317 print_generic_expr (stderr
, alias
, 0);
1318 fprintf (stderr
, " in function %s\n", get_name (current_function_decl
));
1326 /* Add VAR to the virtual operands array. FLAGS is as in
1327 get_expr_operands. FULL_REF is a tree that contains the entire
1328 pointer dereference expression, if available, or NULL otherwise.
1329 OFFSET and SIZE come from the memory access expression that
1330 generated this virtual operand. IS_CALL_SITE is true if the
1331 affected statement is a call site. */
1334 add_virtual_operand (tree var
, stmt_ann_t s_ann
, int flags
,
1335 tree full_ref
, HOST_WIDE_INT offset
,
1336 HOST_WIDE_INT size
, bool is_call_site
)
1338 bitmap aliases
= NULL
;
1342 sym
= (TREE_CODE (var
) == SSA_NAME
? SSA_NAME_VAR (var
) : var
);
1343 v_ann
= var_ann (sym
);
1345 /* Mark the statement as having memory operands. */
1346 s_ann
->references_memory
= true;
1348 /* If the variable cannot be modified and this is a VDEF change
1349 it into a VUSE. This happens when read-only variables are marked
1350 call-clobbered and/or aliased to writable variables. So we only
1351 check that this only happens on non-specific stores.
1353 Note that if this is a specific store, i.e. associated with a
1354 GIMPLE_MODIFY_STMT, then we can't suppress the VDEF, lest we run
1355 into validation problems.
1357 This can happen when programs cast away const, leaving us with a
1358 store to read-only memory. If the statement is actually executed
1359 at runtime, then the program is ill formed. If the statement is
1360 not executed then all is well. At the very least, we cannot ICE. */
1361 if ((flags
& opf_implicit
) && unmodifiable_var_p (var
))
1364 /* The variable is not a GIMPLE register. Add it (or its aliases) to
1365 virtual operands, unless the caller has specifically requested
1366 not to add virtual operands (used when adding operands inside an
1367 ADDR_EXPR expression). */
1368 if (flags
& opf_no_vops
)
1372 aliases
= MTAG_ALIASES (var
);
1374 if (aliases
== NULL
)
1376 if (!gimple_aliases_computed_p (cfun
)
1377 && (flags
& opf_def
))
1378 s_ann
->has_volatile_ops
= true;
1380 /* The variable is not aliased or it is an alias tag. */
1381 if (flags
& opf_def
)
1390 bool none_added
= true;
1392 /* The variable is aliased. Add its aliases to the virtual
1394 gcc_assert (!bitmap_empty_p (aliases
));
1396 EXECUTE_IF_SET_IN_BITMAP (aliases
, 0, i
, bi
)
1398 tree al
= referenced_var (i
);
1400 /* Call-clobbered tags may have non-call-clobbered
1401 symbols in their alias sets. Ignore them if we are
1402 adding VOPs for a call site. */
1403 if (is_call_site
&& !is_call_clobbered (al
))
1406 /* If we do not know the full reference tree or if the access is
1407 unspecified [0, -1], we cannot prune it. Otherwise try doing
1408 so using access_can_touch_variable. */
1410 && !access_can_touch_variable (full_ref
, al
, offset
, size
))
1413 if (flags
& opf_def
)
1420 if (flags
& opf_def
)
1422 /* If the variable is also an alias tag, add a virtual
1423 operand for it, otherwise we will miss representing
1424 references to the members of the variable's alias set.
1425 This fixes the bug in gcc.c-torture/execute/20020503-1.c.
1427 It is also necessary to add bare defs on clobbers for
1428 SMT's, so that bare SMT uses caused by pruning all the
1429 aliases will link up properly with calls. In order to
1430 keep the number of these bare defs we add down to the
1431 minimum necessary, we keep track of which SMT's were used
1432 alone in statement vdefs or VUSEs. */
1434 || (TREE_CODE (var
) == SYMBOL_MEMORY_TAG
1440 /* Even if no aliases have been added, we still need to
1441 establish def-use and use-def chains, lest
1442 transformations think that this is not a memory
1443 reference. For an example of this scenario, see
1444 testsuite/g++.dg/opt/cleanup1.C. */
1452 /* Add *VAR_P to the appropriate operand array for S_ANN. FLAGS is as in
1453 get_expr_operands. If *VAR_P is a GIMPLE register, it will be added to
1454 the statement's real operands, otherwise it is added to virtual
1458 add_stmt_operand (tree
*var_p
, stmt_ann_t s_ann
, int flags
)
1463 gcc_assert (SSA_VAR_P (*var_p
) && s_ann
);
1466 sym
= (TREE_CODE (var
) == SSA_NAME
? SSA_NAME_VAR (var
) : var
);
1467 v_ann
= var_ann (sym
);
1469 /* Mark statements with volatile operands. */
1470 if (TREE_THIS_VOLATILE (sym
))
1471 s_ann
->has_volatile_ops
= true;
1473 if (is_gimple_reg (sym
))
1475 /* The variable is a GIMPLE register. Add it to real operands. */
1476 if (flags
& opf_def
)
1482 add_virtual_operand (var
, s_ann
, flags
, NULL_TREE
, 0, -1, false);
1485 /* Subroutine of get_indirect_ref_operands. ADDR is the address
1486 that is dereferenced, the meaning of the rest of the arguments
1487 is the same as in get_indirect_ref_operands. */
1490 get_addr_dereference_operands (tree stmt
, tree
*addr
, int flags
, tree full_ref
,
1491 HOST_WIDE_INT offset
, HOST_WIDE_INT size
,
1492 bool recurse_on_base
)
1495 stmt_ann_t s_ann
= stmt_ann (stmt
);
1497 s_ann
->references_memory
= true;
1499 if (SSA_VAR_P (ptr
))
1501 struct ptr_info_def
*pi
= NULL
;
1503 /* If PTR has flow-sensitive points-to information, use it. */
1504 if (TREE_CODE (ptr
) == SSA_NAME
1505 && (pi
= SSA_NAME_PTR_INFO (ptr
)) != NULL
1506 && pi
->name_mem_tag
)
1508 /* PTR has its own memory tag. Use it. */
1509 add_virtual_operand (pi
->name_mem_tag
, s_ann
, flags
,
1510 full_ref
, offset
, size
, false);
1514 /* If PTR is not an SSA_NAME or it doesn't have a name
1515 tag, use its symbol memory tag. */
1518 /* If we are emitting debugging dumps, display a warning if
1519 PTR is an SSA_NAME with no flow-sensitive alias
1520 information. That means that we may need to compute
1521 aliasing again or that a propagation pass forgot to
1522 update the alias information on the pointers. */
1524 && TREE_CODE (ptr
) == SSA_NAME
1526 || pi
->name_mem_tag
== NULL_TREE
))
1529 "NOTE: no flow-sensitive alias info for ");
1530 print_generic_expr (dump_file
, ptr
, dump_flags
);
1531 fprintf (dump_file
, " in ");
1532 print_generic_stmt (dump_file
, stmt
, 0);
1535 if (TREE_CODE (ptr
) == SSA_NAME
)
1536 ptr
= SSA_NAME_VAR (ptr
);
1537 v_ann
= var_ann (ptr
);
1539 /* If we don't know what this pointer points to then we have
1540 to make sure to not prune virtual operands based on offset
1542 if (v_ann
->symbol_mem_tag
)
1544 add_virtual_operand (v_ann
->symbol_mem_tag
, s_ann
, flags
,
1545 full_ref
, 0, -1, false);
1546 /* Make sure we add the SMT itself. */
1547 if (!(flags
& opf_no_vops
))
1549 if (flags
& opf_def
)
1550 append_vdef (v_ann
->symbol_mem_tag
);
1552 append_vuse (v_ann
->symbol_mem_tag
);
1556 /* Aliasing information is missing; mark statement as
1557 volatile so we won't optimize it out too actively. */
1558 else if (!gimple_aliases_computed_p (cfun
)
1559 && (flags
& opf_def
))
1560 s_ann
->has_volatile_ops
= true;
1563 else if (TREE_CODE (ptr
) == INTEGER_CST
)
1565 /* If a constant is used as a pointer, we can't generate a real
1566 operand for it but we mark the statement volatile to prevent
1567 optimizations from messing things up. */
1568 s_ann
->has_volatile_ops
= true;
1573 /* Ok, this isn't even is_gimple_min_invariant. Something's broke. */
1577 /* If requested, add a USE operand for the base pointer. */
1578 if (recurse_on_base
)
1579 get_expr_operands (stmt
, addr
, opf_use
);
1583 /* A subroutine of get_expr_operands to handle INDIRECT_REF,
1584 ALIGN_INDIRECT_REF and MISALIGNED_INDIRECT_REF.
1586 STMT is the statement being processed, EXPR is the INDIRECT_REF
1589 FLAGS is as in get_expr_operands.
1591 FULL_REF contains the full pointer dereference expression, if we
1592 have it, or NULL otherwise.
1594 OFFSET and SIZE are the location of the access inside the
1595 dereferenced pointer, if known.
1597 RECURSE_ON_BASE should be set to true if we want to continue
1598 calling get_expr_operands on the base pointer, and false if
1599 something else will do it for us. */
1602 get_indirect_ref_operands (tree stmt
, tree expr
, int flags
, tree full_ref
,
1603 HOST_WIDE_INT offset
, HOST_WIDE_INT size
,
1604 bool recurse_on_base
)
1606 tree
*pptr
= &TREE_OPERAND (expr
, 0);
1607 stmt_ann_t s_ann
= stmt_ann (stmt
);
1609 if (TREE_THIS_VOLATILE (expr
))
1610 s_ann
->has_volatile_ops
= true;
1612 get_addr_dereference_operands (stmt
, pptr
, flags
, full_ref
, offset
, size
,
1617 /* A subroutine of get_expr_operands to handle TARGET_MEM_REF. */
1620 get_tmr_operands (tree stmt
, tree expr
, int flags
)
1623 stmt_ann_t s_ann
= stmt_ann (stmt
);
1625 /* This statement references memory. */
1626 s_ann
->references_memory
= 1;
1628 /* First record the real operands. */
1629 get_expr_operands (stmt
, &TMR_BASE (expr
), opf_use
);
1630 get_expr_operands (stmt
, &TMR_INDEX (expr
), opf_use
);
1632 if (TMR_SYMBOL (expr
))
1633 add_to_addressable_set (TMR_SYMBOL (expr
), &s_ann
->addresses_taken
);
1635 tag
= TMR_TAG (expr
);
1638 /* Something weird, so ensure that we will be careful. */
1639 s_ann
->has_volatile_ops
= true;
1644 get_expr_operands (stmt
, &tag
, flags
);
1648 add_virtual_operand (tag
, s_ann
, flags
, expr
, 0, -1, false);
1652 /* Add clobbering definitions for .GLOBAL_VAR or for each of the call
1653 clobbered variables in the function. */
1656 add_call_clobber_ops (tree stmt
, tree callee
)
1660 stmt_ann_t s_ann
= stmt_ann (stmt
);
1661 bitmap not_read_b
, not_written_b
;
1663 /* If we created .GLOBAL_VAR earlier, just use it. */
1664 if (gimple_global_var (cfun
))
1666 tree var
= gimple_global_var (cfun
);
1667 add_virtual_operand (var
, s_ann
, opf_def
, NULL
, 0, -1, true);
1671 /* Get info for local and module level statics. There is a bit
1672 set for each static if the call being processed does not read
1673 or write that variable. */
1674 not_read_b
= callee
? ipa_reference_get_not_read_global (callee
) : NULL
;
1675 not_written_b
= callee
? ipa_reference_get_not_written_global (callee
) : NULL
;
1677 /* Add a VDEF operand for every call clobbered variable. */
1678 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun
), 0, u
, bi
)
1680 tree var
= referenced_var_lookup (u
);
1681 unsigned int escape_mask
= var_ann (var
)->escape_mask
;
1682 tree real_var
= var
;
1686 not_read
= not_read_b
1687 ? bitmap_bit_p (not_read_b
, DECL_UID (real_var
))
1690 not_written
= not_written_b
1691 ? bitmap_bit_p (not_written_b
, DECL_UID (real_var
))
1693 gcc_assert (!unmodifiable_var_p (var
));
1695 clobber_stats
.clobbered_vars
++;
1697 /* See if this variable is really clobbered by this function. */
1699 /* Trivial case: Things escaping only to pure/const are not
1700 clobbered by non-pure-const, and only read by pure/const. */
1701 if ((escape_mask
& ~(ESCAPE_TO_PURE_CONST
)) == 0)
1703 tree call
= get_call_expr_in (stmt
);
1704 if (call_expr_flags (call
) & (ECF_CONST
| ECF_PURE
))
1706 add_virtual_operand (var
, s_ann
, opf_use
, NULL
, 0, -1, true);
1707 clobber_stats
.unescapable_clobbers_avoided
++;
1712 clobber_stats
.unescapable_clobbers_avoided
++;
1719 clobber_stats
.static_write_clobbers_avoided
++;
1721 add_virtual_operand (var
, s_ann
, opf_use
, NULL
, 0, -1, true);
1723 clobber_stats
.static_read_clobbers_avoided
++;
1726 add_virtual_operand (var
, s_ann
, opf_def
, NULL
, 0, -1, true);
1731 /* Add VUSE operands for .GLOBAL_VAR or all call clobbered variables in the
1735 add_call_read_ops (tree stmt
, tree callee
)
1739 stmt_ann_t s_ann
= stmt_ann (stmt
);
1742 /* if the function is not pure, it may reference memory. Add
1743 a VUSE for .GLOBAL_VAR if it has been created. See add_referenced_var
1744 for the heuristic used to decide whether to create .GLOBAL_VAR. */
1745 if (gimple_global_var (cfun
))
1747 tree var
= gimple_global_var (cfun
);
1748 add_virtual_operand (var
, s_ann
, opf_use
, NULL
, 0, -1, true);
1752 not_read_b
= callee
? ipa_reference_get_not_read_global (callee
) : NULL
;
1754 /* Add a VUSE for each call-clobbered variable. */
1755 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun
), 0, u
, bi
)
1757 tree var
= referenced_var (u
);
1758 tree real_var
= var
;
1761 clobber_stats
.readonly_clobbers
++;
1763 not_read
= not_read_b
? bitmap_bit_p (not_read_b
, DECL_UID (real_var
))
1768 clobber_stats
.static_readonly_clobbers_avoided
++;
1772 add_virtual_operand (var
, s_ann
, opf_use
, NULL
, 0, -1, true);
1777 /* A subroutine of get_expr_operands to handle CALL_EXPR. */
1780 get_call_expr_operands (tree stmt
, tree expr
)
1782 int call_flags
= call_expr_flags (expr
);
1784 stmt_ann_t ann
= stmt_ann (stmt
);
1786 ann
->references_memory
= true;
1788 /* If aliases have been computed already, add VDEF or VUSE
1789 operands for all the symbols that have been found to be
1791 if (gimple_aliases_computed_p (cfun
)
1792 && !(call_flags
& ECF_NOVOPS
))
1794 /* A 'pure' or a 'const' function never call-clobbers anything.
1795 A 'noreturn' function might, but since we don't return anyway
1796 there is no point in recording that. */
1797 if (TREE_SIDE_EFFECTS (expr
)
1798 && !(call_flags
& (ECF_PURE
| ECF_CONST
| ECF_NORETURN
)))
1799 add_call_clobber_ops (stmt
, get_callee_fndecl (expr
));
1800 else if (!(call_flags
& ECF_CONST
))
1801 add_call_read_ops (stmt
, get_callee_fndecl (expr
));
1804 /* Find uses in the called function. */
1805 get_expr_operands (stmt
, &CALL_EXPR_FN (expr
), opf_use
);
1806 nargs
= call_expr_nargs (expr
);
1807 for (i
= 0; i
< nargs
; i
++)
1808 get_expr_operands (stmt
, &CALL_EXPR_ARG (expr
, i
), opf_use
);
1810 get_expr_operands (stmt
, &CALL_EXPR_STATIC_CHAIN (expr
), opf_use
);
1814 /* Scan operands in the ASM_EXPR stmt referred to in INFO. */
1817 get_asm_expr_operands (tree stmt
)
1821 const char **oconstraints
;
1822 const char *constraint
;
1823 bool allows_mem
, allows_reg
, is_inout
;
1826 s_ann
= stmt_ann (stmt
);
1827 noutputs
= list_length (ASM_OUTPUTS (stmt
));
1828 oconstraints
= (const char **) alloca ((noutputs
) * sizeof (const char *));
1830 /* Gather all output operands. */
1831 for (i
= 0, link
= ASM_OUTPUTS (stmt
); link
; i
++, link
= TREE_CHAIN (link
))
1833 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
1834 oconstraints
[i
] = constraint
;
1835 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
,
1836 &allows_reg
, &is_inout
);
1838 /* This should have been split in gimplify_asm_expr. */
1839 gcc_assert (!allows_reg
|| !is_inout
);
1841 /* Memory operands are addressable. Note that STMT needs the
1842 address of this operand. */
1843 if (!allows_reg
&& allows_mem
)
1845 tree t
= get_base_address (TREE_VALUE (link
));
1846 if (t
&& DECL_P (t
) && s_ann
)
1847 add_to_addressable_set (t
, &s_ann
->addresses_taken
);
1850 get_expr_operands (stmt
, &TREE_VALUE (link
), opf_def
);
1853 /* Gather all input operands. */
1854 for (link
= ASM_INPUTS (stmt
); link
; link
= TREE_CHAIN (link
))
1856 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
1857 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0, oconstraints
,
1858 &allows_mem
, &allows_reg
);
1860 /* Memory operands are addressable. Note that STMT needs the
1861 address of this operand. */
1862 if (!allows_reg
&& allows_mem
)
1864 tree t
= get_base_address (TREE_VALUE (link
));
1865 if (t
&& DECL_P (t
) && s_ann
)
1866 add_to_addressable_set (t
, &s_ann
->addresses_taken
);
1869 get_expr_operands (stmt
, &TREE_VALUE (link
), 0);
1872 /* Clobber all memory and addressable symbols for asm ("" : : : "memory"); */
1873 for (link
= ASM_CLOBBERS (stmt
); link
; link
= TREE_CHAIN (link
))
1874 if (strcmp (TREE_STRING_POINTER (TREE_VALUE (link
)), "memory") == 0)
1879 s_ann
->references_memory
= true;
1881 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun
), 0, i
, bi
)
1883 tree var
= referenced_var (i
);
1884 add_stmt_operand (&var
, s_ann
, opf_def
| opf_implicit
);
1887 EXECUTE_IF_SET_IN_BITMAP (gimple_addressable_vars (cfun
), 0, i
, bi
)
1889 tree var
= referenced_var (i
);
1890 add_stmt_operand (&var
, s_ann
, opf_def
| opf_implicit
);
1897 /* Scan operands for the assignment expression EXPR in statement STMT. */
1900 get_modify_stmt_operands (tree stmt
, tree expr
)
1902 /* First get operands from the RHS. */
1903 get_expr_operands (stmt
, &GIMPLE_STMT_OPERAND (expr
, 1), opf_use
);
1905 /* For the LHS, use a regular definition (opf_def) for GIMPLE
1906 registers. If the LHS is a store to memory, we will need
1907 a preserving definition (VDEF).
1909 Preserving definitions are those that modify a part of an
1910 aggregate object. Stores through a pointer are also represented
1911 with VDEF operators.
1913 We used to distinguish between preserving and killing definitions.
1914 We always emit preserving definitions now. */
1915 get_expr_operands (stmt
, &GIMPLE_STMT_OPERAND (expr
, 0), opf_def
);
1919 /* Recursively scan the expression pointed to by EXPR_P in statement
1920 STMT. FLAGS is one of the OPF_* constants modifying how to
1921 interpret the operands found. */
1924 get_expr_operands (tree stmt
, tree
*expr_p
, int flags
)
1926 enum tree_code code
;
1927 enum tree_code_class codeclass
;
1928 tree expr
= *expr_p
;
1929 stmt_ann_t s_ann
= stmt_ann (stmt
);
1934 code
= TREE_CODE (expr
);
1935 codeclass
= TREE_CODE_CLASS (code
);
1940 /* Taking the address of a variable does not represent a
1941 reference to it, but the fact that the statement takes its
1942 address will be of interest to some passes (e.g. alias
1944 add_to_addressable_set (TREE_OPERAND (expr
, 0), &s_ann
->addresses_taken
);
1946 /* If the address is invariant, there may be no interesting
1947 variable references inside. */
1948 if (is_gimple_min_invariant (expr
))
1951 /* Otherwise, there may be variables referenced inside but there
1952 should be no VUSEs created, since the referenced objects are
1953 not really accessed. The only operands that we should find
1954 here are ARRAY_REF indices which will always be real operands
1955 (GIMPLE does not allow non-registers as array indices). */
1956 flags
|= opf_no_vops
;
1957 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 0), flags
);
1961 case SYMBOL_MEMORY_TAG
:
1962 case NAME_MEMORY_TAG
:
1963 add_stmt_operand (expr_p
, s_ann
, flags
);
1969 add_stmt_operand (expr_p
, s_ann
, flags
);
1972 case MISALIGNED_INDIRECT_REF
:
1973 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 1), flags
);
1976 case ALIGN_INDIRECT_REF
:
1978 get_indirect_ref_operands (stmt
, expr
, flags
, expr
, 0, -1, true);
1981 case TARGET_MEM_REF
:
1982 get_tmr_operands (stmt
, expr
, flags
);
1986 case ARRAY_RANGE_REF
:
1992 HOST_WIDE_INT offset
, size
, maxsize
;
1994 if (TREE_THIS_VOLATILE (expr
))
1995 s_ann
->has_volatile_ops
= true;
1997 ref
= get_ref_base_and_extent (expr
, &offset
, &size
, &maxsize
);
1998 if (TREE_CODE (ref
) == INDIRECT_REF
)
2000 get_indirect_ref_operands (stmt
, ref
, flags
, expr
, offset
,
2002 flags
|= opf_no_vops
;
2005 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 0), flags
);
2007 if (code
== COMPONENT_REF
)
2009 if (TREE_THIS_VOLATILE (TREE_OPERAND (expr
, 1)))
2010 s_ann
->has_volatile_ops
= true;
2011 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 2), opf_use
);
2013 else if (code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
2015 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 1), opf_use
);
2016 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 2), opf_use
);
2017 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 3), opf_use
);
2023 case WITH_SIZE_EXPR
:
2024 /* WITH_SIZE_EXPR is a pass-through reference to its first argument,
2025 and an rvalue reference to its second argument. */
2026 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 1), opf_use
);
2027 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 0), flags
);
2031 get_call_expr_operands (stmt
, expr
);
2036 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 0), opf_use
);
2037 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 1), opf_use
);
2038 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 2), opf_use
);
2041 case GIMPLE_MODIFY_STMT
:
2042 get_modify_stmt_operands (stmt
, expr
);
2047 /* General aggregate CONSTRUCTORs have been decomposed, but they
2048 are still in use as the COMPLEX_EXPR equivalent for vectors. */
2049 constructor_elt
*ce
;
2050 unsigned HOST_WIDE_INT idx
;
2053 VEC_iterate (constructor_elt
, CONSTRUCTOR_ELTS (expr
), idx
, ce
);
2055 get_expr_operands (stmt
, &ce
->value
, opf_use
);
2061 case TRUTH_NOT_EXPR
:
2062 case VIEW_CONVERT_EXPR
:
2064 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 0), flags
);
2067 case TRUTH_AND_EXPR
:
2069 case TRUTH_XOR_EXPR
:
2075 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 0), flags
);
2076 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 1), flags
);
2081 case REALIGN_LOAD_EXPR
:
2083 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 0), flags
);
2084 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 1), flags
);
2085 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 2), flags
);
2089 case CHANGE_DYNAMIC_TYPE_EXPR
:
2090 get_expr_operands (stmt
, &CHANGE_DYNAMIC_TYPE_LOCATION (expr
), opf_use
);
2095 tree init
= OMP_FOR_INIT (expr
);
2096 tree cond
= OMP_FOR_COND (expr
);
2097 tree incr
= OMP_FOR_INCR (expr
);
2098 tree c
, clauses
= OMP_FOR_CLAUSES (stmt
);
2100 get_expr_operands (stmt
, &GIMPLE_STMT_OPERAND (init
, 0), opf_def
);
2101 get_expr_operands (stmt
, &GIMPLE_STMT_OPERAND (init
, 1), opf_use
);
2102 get_expr_operands (stmt
, &TREE_OPERAND (cond
, 1), opf_use
);
2103 get_expr_operands (stmt
,
2104 &TREE_OPERAND (GIMPLE_STMT_OPERAND (incr
, 1), 1),
2107 c
= find_omp_clause (clauses
, OMP_CLAUSE_SCHEDULE
);
2109 get_expr_operands (stmt
, &OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c
),
2116 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 0), opf_def
);
2117 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 1), opf_use
);
2123 tree c
, clauses
= OMP_PARALLEL_CLAUSES (stmt
);
2125 if (OMP_PARALLEL_DATA_ARG (stmt
))
2127 get_expr_operands (stmt
, &OMP_PARALLEL_DATA_ARG (stmt
), opf_use
);
2128 add_to_addressable_set (OMP_PARALLEL_DATA_ARG (stmt
),
2129 &s_ann
->addresses_taken
);
2132 c
= find_omp_clause (clauses
, OMP_CLAUSE_IF
);
2134 get_expr_operands (stmt
, &OMP_CLAUSE_IF_EXPR (c
), opf_use
);
2135 c
= find_omp_clause (clauses
, OMP_CLAUSE_NUM_THREADS
);
2137 get_expr_operands (stmt
, &OMP_CLAUSE_NUM_THREADS_EXPR (c
), opf_use
);
2143 get_expr_operands (stmt
, &OMP_SECTIONS_CONTROL (expr
), opf_def
);
2147 case OMP_ATOMIC_LOAD
:
2149 tree
*addr
= &TREE_OPERAND (expr
, 1);
2150 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 0), opf_def
);
2152 if (TREE_CODE (*addr
) == ADDR_EXPR
)
2153 get_expr_operands (stmt
, &TREE_OPERAND (*addr
, 0), opf_def
);
2155 get_addr_dereference_operands (stmt
, addr
, opf_def
,
2156 NULL_TREE
, 0, -1, true);
2160 case OMP_ATOMIC_STORE
:
2162 get_expr_operands (stmt
, &TREE_OPERAND (expr
, 0), opf_use
);
2178 case OMP_SECTIONS_SWITCH
:
2180 /* Expressions that make no memory references. */
2184 if (codeclass
== tcc_unary
)
2186 if (codeclass
== tcc_binary
|| codeclass
== tcc_comparison
)
2188 if (codeclass
== tcc_constant
|| codeclass
== tcc_type
)
2192 /* If we get here, something has gone wrong. */
2193 #ifdef ENABLE_CHECKING
2194 fprintf (stderr
, "unhandled expression in get_expr_operands():\n");
2196 fputs ("\n", stderr
);
2202 /* Parse STMT looking for operands. When finished, the various
2203 build_* operand vectors will have potential operands in them. */
2206 parse_ssa_operands (tree stmt
)
2208 enum tree_code code
;
2210 code
= TREE_CODE (stmt
);
2213 case GIMPLE_MODIFY_STMT
:
2214 get_modify_stmt_operands (stmt
, stmt
);
2218 get_expr_operands (stmt
, &COND_EXPR_COND (stmt
), opf_use
);
2222 get_expr_operands (stmt
, &SWITCH_COND (stmt
), opf_use
);
2226 get_asm_expr_operands (stmt
);
2230 get_expr_operands (stmt
, &TREE_OPERAND (stmt
, 0), opf_use
);
2234 get_expr_operands (stmt
, &GOTO_DESTINATION (stmt
), opf_use
);
2238 get_expr_operands (stmt
, &LABEL_EXPR_LABEL (stmt
), opf_use
);
2242 case CASE_LABEL_EXPR
:
2243 case TRY_CATCH_EXPR
:
2244 case TRY_FINALLY_EXPR
:
2245 case EH_FILTER_EXPR
:
2248 /* These nodes contain no variable references. */
2252 /* Notice that if get_expr_operands tries to use &STMT as the
2253 operand pointer (which may only happen for USE operands), we
2254 will fail in add_stmt_operand. This default will handle
2255 statements like empty statements, or CALL_EXPRs that may
2256 appear on the RHS of a statement or as statements themselves. */
2257 get_expr_operands (stmt
, &stmt
, opf_use
);
2263 /* Create an operands cache for STMT. */
2266 build_ssa_operands (tree stmt
)
2268 stmt_ann_t ann
= get_stmt_ann (stmt
);
2270 /* Initially assume that the statement has no volatile operands and
2271 makes no memory references. */
2272 ann
->has_volatile_ops
= false;
2273 ann
->references_memory
= false;
2274 /* Just clear the bitmap so we don't end up reallocating it over and over. */
2275 if (ann
->addresses_taken
)
2276 bitmap_clear (ann
->addresses_taken
);
2278 start_ssa_stmt_operands ();
2279 parse_ssa_operands (stmt
);
2280 operand_build_sort_virtual (build_vuses
);
2281 operand_build_sort_virtual (build_vdefs
);
2282 finalize_ssa_stmt_operands (stmt
);
2284 if (ann
->addresses_taken
&& bitmap_empty_p (ann
->addresses_taken
))
2285 ann
->addresses_taken
= NULL
;
2287 /* For added safety, assume that statements with volatile operands
2288 also reference memory. */
2289 if (ann
->has_volatile_ops
)
2290 ann
->references_memory
= true;
2294 /* Releases the operands of STMT back to their freelists, and clears
2295 the stmt operand lists. */
2298 free_stmt_operands (tree stmt
)
2300 def_optype_p defs
= DEF_OPS (stmt
), last_def
;
2301 use_optype_p uses
= USE_OPS (stmt
), last_use
;
2302 voptype_p vuses
= VUSE_OPS (stmt
);
2303 voptype_p vdefs
= VDEF_OPS (stmt
), vdef
, next_vdef
;
2308 for (last_def
= defs
; last_def
->next
; last_def
= last_def
->next
)
2310 last_def
->next
= gimple_ssa_operands (cfun
)->free_defs
;
2311 gimple_ssa_operands (cfun
)->free_defs
= defs
;
2312 DEF_OPS (stmt
) = NULL
;
2317 for (last_use
= uses
; last_use
->next
; last_use
= last_use
->next
)
2318 delink_imm_use (USE_OP_PTR (last_use
));
2319 delink_imm_use (USE_OP_PTR (last_use
));
2320 last_use
->next
= gimple_ssa_operands (cfun
)->free_uses
;
2321 gimple_ssa_operands (cfun
)->free_uses
= uses
;
2322 USE_OPS (stmt
) = NULL
;
2327 for (i
= 0; i
< VUSE_NUM (vuses
); i
++)
2328 delink_imm_use (VUSE_OP_PTR (vuses
, i
));
2329 add_vop_to_freelist (vuses
);
2330 VUSE_OPS (stmt
) = NULL
;
2335 for (vdef
= vdefs
; vdef
; vdef
= next_vdef
)
2337 next_vdef
= vdef
->next
;
2338 delink_imm_use (VDEF_OP_PTR (vdef
, 0));
2339 add_vop_to_freelist (vdef
);
2341 VDEF_OPS (stmt
) = NULL
;
2346 /* Free any operands vectors in OPS. */
2349 free_ssa_operands (stmt_operands_p ops
)
2351 ops
->def_ops
= NULL
;
2352 ops
->use_ops
= NULL
;
2353 ops
->vdef_ops
= NULL
;
2354 ops
->vuse_ops
= NULL
;
2355 BITMAP_FREE (ops
->loads
);
2356 BITMAP_FREE (ops
->stores
);
2360 /* Get the operands of statement STMT. */
2363 update_stmt_operands (tree stmt
)
2365 stmt_ann_t ann
= get_stmt_ann (stmt
);
2367 /* If update_stmt_operands is called before SSA is initialized, do
2369 if (!ssa_operands_active ())
2372 /* The optimizers cannot handle statements that are nothing but a
2373 _DECL. This indicates a bug in the gimplifier. */
2374 gcc_assert (!SSA_VAR_P (stmt
));
2376 timevar_push (TV_TREE_OPS
);
2378 gcc_assert (ann
->modified
);
2379 build_ssa_operands (stmt
);
2382 timevar_pop (TV_TREE_OPS
);
2386 /* Copies virtual operands from SRC to DST. */
2389 copy_virtual_operands (tree dest
, tree src
)
2392 voptype_p src_vuses
, dest_vuses
;
2393 voptype_p src_vdefs
, dest_vdefs
;
2394 struct voptype_d vuse
;
2395 struct voptype_d vdef
;
2396 stmt_ann_t dest_ann
;
2398 VDEF_OPS (dest
) = NULL
;
2399 VUSE_OPS (dest
) = NULL
;
2401 dest_ann
= get_stmt_ann (dest
);
2402 BITMAP_FREE (dest_ann
->operands
.loads
);
2403 BITMAP_FREE (dest_ann
->operands
.stores
);
2405 if (LOADED_SYMS (src
))
2407 dest_ann
->operands
.loads
= BITMAP_ALLOC (&operands_bitmap_obstack
);
2408 bitmap_copy (dest_ann
->operands
.loads
, LOADED_SYMS (src
));
2411 if (STORED_SYMS (src
))
2413 dest_ann
->operands
.stores
= BITMAP_ALLOC (&operands_bitmap_obstack
);
2414 bitmap_copy (dest_ann
->operands
.stores
, STORED_SYMS (src
));
2417 /* Copy all the VUSE operators and corresponding operands. */
2419 for (src_vuses
= VUSE_OPS (src
); src_vuses
; src_vuses
= src_vuses
->next
)
2421 n
= VUSE_NUM (src_vuses
);
2422 dest_vuses
= add_vuse_op (dest
, NULL_TREE
, n
, dest_vuses
);
2423 for (i
= 0; i
< n
; i
++)
2424 SET_USE (VUSE_OP_PTR (dest_vuses
, i
), VUSE_OP (src_vuses
, i
));
2426 if (VUSE_OPS (dest
) == NULL
)
2427 VUSE_OPS (dest
) = vuse
.next
;
2430 /* Copy all the VDEF operators and corresponding operands. */
2432 for (src_vdefs
= VDEF_OPS (src
); src_vdefs
; src_vdefs
= src_vdefs
->next
)
2434 n
= VUSE_NUM (src_vdefs
);
2435 dest_vdefs
= add_vdef_op (dest
, NULL_TREE
, n
, dest_vdefs
);
2436 VDEF_RESULT (dest_vdefs
) = VDEF_RESULT (src_vdefs
);
2437 for (i
= 0; i
< n
; i
++)
2438 SET_USE (VUSE_OP_PTR (dest_vdefs
, i
), VUSE_OP (src_vdefs
, i
));
2440 if (VDEF_OPS (dest
) == NULL
)
2441 VDEF_OPS (dest
) = vdef
.next
;
2446 /* Specifically for use in DOM's expression analysis. Given a store, we
2447 create an artificial stmt which looks like a load from the store, this can
2448 be used to eliminate redundant loads. OLD_OPS are the operands from the
2449 store stmt, and NEW_STMT is the new load which represents a load of the
2450 values stored. If DELINK_IMM_USES_P is specified, the immediate
2451 uses of this stmt will be de-linked. */
2454 create_ssa_artificial_load_stmt (tree new_stmt
, tree old_stmt
,
2455 bool delink_imm_uses_p
)
2459 use_operand_p use_p
;
2463 /* Create the stmt annotation but make sure to not mark the stmt
2464 as modified as we will build operands ourselves. */
2465 ann
= get_stmt_ann (new_stmt
);
2468 /* Process NEW_STMT looking for operands. */
2469 start_ssa_stmt_operands ();
2470 parse_ssa_operands (new_stmt
);
2472 for (i
= 0; VEC_iterate (tree
, build_vuses
, i
, op
); i
++)
2473 if (TREE_CODE (op
) != SSA_NAME
)
2474 var_ann (op
)->in_vuse_list
= false;
2476 for (i
= 0; VEC_iterate (tree
, build_vdefs
, i
, op
); i
++)
2477 if (TREE_CODE (op
) != SSA_NAME
)
2478 var_ann (op
)->in_vdef_list
= false;
2480 /* Remove any virtual operands that were found. */
2481 VEC_truncate (tree
, build_vdefs
, 0);
2482 VEC_truncate (tree
, build_vuses
, 0);
2484 /* Clear the loads and stores bitmaps. */
2485 bitmap_clear (build_loads
);
2486 bitmap_clear (build_stores
);
2488 /* For each VDEF on the original statement, we want to create a
2489 VUSE of the VDEF result operand on the new statement. */
2490 FOR_EACH_SSA_TREE_OPERAND (op
, old_stmt
, iter
, SSA_OP_VDEF
)
2493 finalize_ssa_stmt_operands (new_stmt
);
2495 /* All uses in this fake stmt must not be in the immediate use lists. */
2496 if (delink_imm_uses_p
)
2497 FOR_EACH_SSA_USE_OPERAND (use_p
, new_stmt
, iter
, SSA_OP_ALL_USES
)
2498 delink_imm_use (use_p
);
2502 /* Swap operands EXP0 and EXP1 in statement STMT. No attempt is done
2503 to test the validity of the swap operation. */
2506 swap_tree_operands (tree stmt
, tree
*exp0
, tree
*exp1
)
2512 /* If the operand cache is active, attempt to preserve the relative
2513 positions of these two operands in their respective immediate use
2515 if (ssa_operands_active () && op0
!= op1
)
2517 use_optype_p use0
, use1
, ptr
;
2520 /* Find the 2 operands in the cache, if they are there. */
2521 for (ptr
= USE_OPS (stmt
); ptr
; ptr
= ptr
->next
)
2522 if (USE_OP_PTR (ptr
)->use
== exp0
)
2528 for (ptr
= USE_OPS (stmt
); ptr
; ptr
= ptr
->next
)
2529 if (USE_OP_PTR (ptr
)->use
== exp1
)
2535 /* If both uses don't have operand entries, there isn't much we can do
2536 at this point. Presumably we don't need to worry about it. */
2539 tree
*tmp
= USE_OP_PTR (use1
)->use
;
2540 USE_OP_PTR (use1
)->use
= USE_OP_PTR (use0
)->use
;
2541 USE_OP_PTR (use0
)->use
= tmp
;
2545 /* Now swap the data. */
2551 /* Add the base address of REF to the set *ADDRESSES_TAKEN. If
2552 *ADDRESSES_TAKEN is NULL, a new set is created. REF may be
2553 a single variable whose address has been taken or any other valid
2554 GIMPLE memory reference (structure reference, array, etc). */
2557 add_to_addressable_set (tree ref
, bitmap
*addresses_taken
)
2561 gcc_assert (addresses_taken
);
2563 /* Note that it is *NOT OKAY* to use the target of a COMPONENT_REF
2564 as the only thing we take the address of. If VAR is a structure,
2565 taking the address of a field means that the whole structure may
2566 be referenced using pointer arithmetic. See PR 21407 and the
2567 ensuing mailing list discussion. */
2568 var
= get_base_address (ref
);
2569 if (var
&& SSA_VAR_P (var
))
2571 if (*addresses_taken
== NULL
)
2572 *addresses_taken
= BITMAP_GGC_ALLOC ();
2573 bitmap_set_bit (*addresses_taken
, DECL_UID (var
));
2574 TREE_ADDRESSABLE (var
) = 1;
2579 /* Scan the immediate_use list for VAR making sure its linked properly.
2580 Return TRUE if there is a problem and emit an error message to F. */
2583 verify_imm_links (FILE *f
, tree var
)
2585 use_operand_p ptr
, prev
, list
;
2588 gcc_assert (TREE_CODE (var
) == SSA_NAME
);
2590 list
= &(SSA_NAME_IMM_USE_NODE (var
));
2591 gcc_assert (list
->use
== NULL
);
2593 if (list
->prev
== NULL
)
2595 gcc_assert (list
->next
== NULL
);
2601 for (ptr
= list
->next
; ptr
!= list
; )
2603 if (prev
!= ptr
->prev
)
2606 if (ptr
->use
== NULL
)
2607 goto error
; /* 2 roots, or SAFE guard node. */
2608 else if (*(ptr
->use
) != var
)
2614 /* Avoid infinite loops. 50,000,000 uses probably indicates a
2616 if (count
++ > 50000000)
2620 /* Verify list in the other direction. */
2622 for (ptr
= list
->prev
; ptr
!= list
; )
2624 if (prev
!= ptr
->next
)
2638 if (ptr
->stmt
&& stmt_modified_p (ptr
->stmt
))
2640 fprintf (f
, " STMT MODIFIED. - <%p> ", (void *)ptr
->stmt
);
2641 print_generic_stmt (f
, ptr
->stmt
, TDF_SLIM
);
2643 fprintf (f
, " IMM ERROR : (use_p : tree - %p:%p)", (void *)ptr
,
2645 print_generic_expr (f
, USE_FROM_PTR (ptr
), TDF_SLIM
);
2651 /* Dump all the immediate uses to FILE. */
2654 dump_immediate_uses_for (FILE *file
, tree var
)
2656 imm_use_iterator iter
;
2657 use_operand_p use_p
;
2659 gcc_assert (var
&& TREE_CODE (var
) == SSA_NAME
);
2661 print_generic_expr (file
, var
, TDF_SLIM
);
2662 fprintf (file
, " : -->");
2663 if (has_zero_uses (var
))
2664 fprintf (file
, " no uses.\n");
2666 if (has_single_use (var
))
2667 fprintf (file
, " single use.\n");
2669 fprintf (file
, "%d uses.\n", num_imm_uses (var
));
2671 FOR_EACH_IMM_USE_FAST (use_p
, iter
, var
)
2673 if (use_p
->stmt
== NULL
&& use_p
->use
== NULL
)
2674 fprintf (file
, "***end of stmt iterator marker***\n");
2676 if (!is_gimple_reg (USE_FROM_PTR (use_p
)))
2677 print_generic_stmt (file
, USE_STMT (use_p
), TDF_VOPS
|TDF_MEMSYMS
);
2679 print_generic_stmt (file
, USE_STMT (use_p
), TDF_SLIM
);
2681 fprintf(file
, "\n");
2685 /* Dump all the immediate uses to FILE. */
2688 dump_immediate_uses (FILE *file
)
2693 fprintf (file
, "Immediate_uses: \n\n");
2694 for (x
= 1; x
< num_ssa_names
; x
++)
2699 dump_immediate_uses_for (file
, var
);
2704 /* Dump def-use edges on stderr. */
2707 debug_immediate_uses (void)
2709 dump_immediate_uses (stderr
);
2713 /* Dump def-use edges on stderr. */
2716 debug_immediate_uses_for (tree var
)
2718 dump_immediate_uses_for (stderr
, var
);
2722 /* Create a new change buffer for the statement pointed by STMT_P and
2723 push the buffer into SCB_STACK. Each change buffer
2724 records state information needed to determine what changed in the
2725 statement. Mainly, this keeps track of symbols that may need to be
2726 put into SSA form, SSA name replacements and other information
2727 needed to keep the SSA form up to date. */
2730 push_stmt_changes (tree
*stmt_p
)
2737 /* It makes no sense to keep track of PHI nodes. */
2738 if (TREE_CODE (stmt
) == PHI_NODE
)
2741 buf
= XNEW (struct scb_d
);
2742 memset (buf
, 0, sizeof *buf
);
2744 buf
->stmt_p
= stmt_p
;
2746 if (stmt_references_memory_p (stmt
))
2751 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, i
, SSA_OP_VUSE
)
2753 tree sym
= TREE_CODE (op
) == SSA_NAME
? SSA_NAME_VAR (op
) : op
;
2754 if (buf
->loads
== NULL
)
2755 buf
->loads
= BITMAP_ALLOC (NULL
);
2756 bitmap_set_bit (buf
->loads
, DECL_UID (sym
));
2759 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, i
, SSA_OP_VDEF
)
2761 tree sym
= TREE_CODE (op
) == SSA_NAME
? SSA_NAME_VAR (op
) : op
;
2762 if (buf
->stores
== NULL
)
2763 buf
->stores
= BITMAP_ALLOC (NULL
);
2764 bitmap_set_bit (buf
->stores
, DECL_UID (sym
));
2768 VEC_safe_push (scb_t
, heap
, scb_stack
, buf
);
2772 /* Given two sets S1 and S2, mark the symbols that differ in S1 and S2
2773 for renaming. The set to mark for renaming is (S1 & ~S2) | (S2 & ~S1). */
2776 mark_difference_for_renaming (bitmap s1
, bitmap s2
)
2778 if (s1
== NULL
&& s2
== NULL
)
2781 if (s1
&& s2
== NULL
)
2782 mark_set_for_renaming (s1
);
2783 else if (s1
== NULL
&& s2
)
2784 mark_set_for_renaming (s2
);
2785 else if (!bitmap_equal_p (s1
, s2
))
2787 bitmap t1
= BITMAP_ALLOC (NULL
);
2788 bitmap_xor (t1
, s1
, s2
);
2789 mark_set_for_renaming (t1
);
2795 /* Pop the top SCB from SCB_STACK and act on the differences between
2796 what was recorded by push_stmt_changes and the current state of
2800 pop_stmt_changes (tree
*stmt_p
)
2804 bitmap loads
, stores
;
2809 /* It makes no sense to keep track of PHI nodes. */
2810 if (TREE_CODE (stmt
) == PHI_NODE
)
2813 buf
= VEC_pop (scb_t
, scb_stack
);
2814 gcc_assert (stmt_p
== buf
->stmt_p
);
2816 /* Force an operand re-scan on the statement and mark any newly
2817 exposed variables. */
2820 /* Determine whether any memory symbols need to be renamed. If the
2821 sets of loads and stores are different after the statement is
2822 modified, then the affected symbols need to be renamed.
2824 Note that it may be possible for the statement to not reference
2825 memory anymore, but we still need to act on the differences in
2826 the sets of symbols. */
2827 loads
= stores
= NULL
;
2828 if (stmt_references_memory_p (stmt
))
2833 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, i
, SSA_OP_VUSE
)
2835 tree sym
= TREE_CODE (op
) == SSA_NAME
? SSA_NAME_VAR (op
) : op
;
2837 loads
= BITMAP_ALLOC (NULL
);
2838 bitmap_set_bit (loads
, DECL_UID (sym
));
2841 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, i
, SSA_OP_VDEF
)
2843 tree sym
= TREE_CODE (op
) == SSA_NAME
? SSA_NAME_VAR (op
) : op
;
2845 stores
= BITMAP_ALLOC (NULL
);
2846 bitmap_set_bit (stores
, DECL_UID (sym
));
2850 /* If LOADS is different from BUF->LOADS, the affected
2851 symbols need to be marked for renaming. */
2852 mark_difference_for_renaming (loads
, buf
->loads
);
2854 /* Similarly for STORES and BUF->STORES. */
2855 mark_difference_for_renaming (stores
, buf
->stores
);
2857 /* Mark all the naked GIMPLE register operands for renaming. */
2858 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_DEF
|SSA_OP_USE
)
2860 mark_sym_for_renaming (op
);
2862 /* FIXME, need to add more finalizers here. Cleanup EH info,
2863 recompute invariants for address expressions, add
2864 SSA replacement mappings, etc. For instance, given
2865 testsuite/gcc.c-torture/compile/pr16808.c, we fold a statement of
2868 # SMT.4_20 = VDEF <SMT.4_16>
2871 So, the VDEF will disappear, but instead of marking SMT.4 for
2872 renaming it would be far more efficient to establish a
2873 replacement mapping that would replace every reference of
2874 SMT.4_20 with SMT.4_16. */
2876 /* Free memory used by the buffer. */
2877 BITMAP_FREE (buf
->loads
);
2878 BITMAP_FREE (buf
->stores
);
2879 BITMAP_FREE (loads
);
2880 BITMAP_FREE (stores
);
2886 /* Discard the topmost change buffer from SCB_STACK. This is useful
2887 when the caller realized that it did not actually modified the
2888 statement. It avoids the expensive operand re-scan. */
2891 discard_stmt_changes (tree
*stmt_p
)
2896 /* It makes no sense to keep track of PHI nodes. */
2898 if (TREE_CODE (stmt
) == PHI_NODE
)
2901 buf
= VEC_pop (scb_t
, scb_stack
);
2902 gcc_assert (stmt_p
== buf
->stmt_p
);
2904 /* Free memory used by the buffer. */
2905 BITMAP_FREE (buf
->loads
);
2906 BITMAP_FREE (buf
->stores
);
2912 /* Returns true if statement STMT may access memory. */
2915 stmt_references_memory_p (tree stmt
)
2917 if (!gimple_ssa_operands (cfun
)->ops_active
|| TREE_CODE (stmt
) == PHI_NODE
)
2920 return stmt_ann (stmt
)->references_memory
;