1 /* Gimple walk support.
3 Copyright (C) 2007-2014 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
28 #include "basic-block.h"
29 #include "tree-ssa-alias.h"
30 #include "internal-fn.h"
31 #include "gimple-expr.h"
34 #include "gimple-iterator.h"
35 #include "gimple-walk.h"
36 #include "gimple-walk.h"
39 /* Walk all the statements in the sequence *PSEQ calling walk_gimple_stmt
40 on each one. WI is as in walk_gimple_stmt.
42 If walk_gimple_stmt returns non-NULL, the walk is stopped, and the
43 value is stored in WI->CALLBACK_RESULT. Also, the statement that
44 produced the value is returned if this statement has not been
45 removed by a callback (wi->removed_stmt). If the statement has
46 been removed, NULL is returned.
48 Otherwise, all the statements are walked and NULL returned. */
51 walk_gimple_seq_mod (gimple_seq
*pseq
, walk_stmt_fn callback_stmt
,
52 walk_tree_fn callback_op
, struct walk_stmt_info
*wi
)
54 gimple_stmt_iterator gsi
;
56 for (gsi
= gsi_start (*pseq
); !gsi_end_p (gsi
); )
58 tree ret
= walk_gimple_stmt (&gsi
, callback_stmt
, callback_op
, wi
);
61 /* If CALLBACK_STMT or CALLBACK_OP return a value, WI must exist
64 wi
->callback_result
= ret
;
66 return wi
->removed_stmt
? NULL
: gsi_stmt (gsi
);
69 if (!wi
->removed_stmt
)
74 wi
->callback_result
= NULL_TREE
;
80 /* Like walk_gimple_seq_mod, but ensure that the head of SEQ isn't
81 changed by the callbacks. */
84 walk_gimple_seq (gimple_seq seq
, walk_stmt_fn callback_stmt
,
85 walk_tree_fn callback_op
, struct walk_stmt_info
*wi
)
87 gimple_seq seq2
= seq
;
88 gimple ret
= walk_gimple_seq_mod (&seq2
, callback_stmt
, callback_op
, wi
);
89 gcc_assert (seq2
== seq
);
94 /* Helper function for walk_gimple_stmt. Walk operands of a GIMPLE_ASM. */
97 walk_gimple_asm (gimple stmt
, walk_tree_fn callback_op
,
98 struct walk_stmt_info
*wi
)
102 const char **oconstraints
;
104 const char *constraint
;
105 bool allows_mem
, allows_reg
, is_inout
;
107 noutputs
= gimple_asm_noutputs (stmt
);
108 oconstraints
= (const char **) alloca ((noutputs
) * sizeof (const char *));
113 for (i
= 0; i
< noutputs
; i
++)
115 op
= gimple_asm_output_op (stmt
, i
);
116 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op
)));
117 oconstraints
[i
] = constraint
;
118 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
, &allows_reg
,
121 wi
->val_only
= (allows_reg
|| !allows_mem
);
122 ret
= walk_tree (&TREE_VALUE (op
), callback_op
, wi
, NULL
);
127 n
= gimple_asm_ninputs (stmt
);
128 for (i
= 0; i
< n
; i
++)
130 op
= gimple_asm_input_op (stmt
, i
);
131 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op
)));
132 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0,
133 oconstraints
, &allows_mem
, &allows_reg
);
136 wi
->val_only
= (allows_reg
|| !allows_mem
);
137 /* Although input "m" is not really a LHS, we need a lvalue. */
138 wi
->is_lhs
= !wi
->val_only
;
140 ret
= walk_tree (&TREE_VALUE (op
), callback_op
, wi
, NULL
);
151 n
= gimple_asm_nlabels (stmt
);
152 for (i
= 0; i
< n
; i
++)
154 op
= gimple_asm_label_op (stmt
, i
);
155 ret
= walk_tree (&TREE_VALUE (op
), callback_op
, wi
, NULL
);
164 /* Helper function of WALK_GIMPLE_STMT. Walk every tree operand in
165 STMT. CALLBACK_OP and WI are as in WALK_GIMPLE_STMT.
167 CALLBACK_OP is called on each operand of STMT via walk_tree.
168 Additional parameters to walk_tree must be stored in WI. For each operand
169 OP, walk_tree is called as:
171 walk_tree (&OP, CALLBACK_OP, WI, WI->PSET)
173 If CALLBACK_OP returns non-NULL for an operand, the remaining
174 operands are not scanned.
176 The return value is that returned by the last call to walk_tree, or
177 NULL_TREE if no CALLBACK_OP is specified. */
180 walk_gimple_op (gimple stmt
, walk_tree_fn callback_op
,
181 struct walk_stmt_info
*wi
)
183 hash_set
<tree
> *pset
= (wi
) ? wi
->pset
: NULL
;
185 tree ret
= NULL_TREE
;
187 switch (gimple_code (stmt
))
190 /* Walk the RHS operands. If the LHS is of a non-renamable type or
191 is a register variable, we may use a COMPONENT_REF on the RHS. */
194 tree lhs
= gimple_assign_lhs (stmt
);
196 = (is_gimple_reg_type (TREE_TYPE (lhs
)) && !is_gimple_reg (lhs
))
197 || gimple_assign_rhs_class (stmt
) != GIMPLE_SINGLE_RHS
;
200 for (i
= 1; i
< gimple_num_ops (stmt
); i
++)
202 ret
= walk_tree (gimple_op_ptr (stmt
, i
), callback_op
, wi
,
208 /* Walk the LHS. If the RHS is appropriate for a memory, we
209 may use a COMPONENT_REF on the LHS. */
212 /* If the RHS is of a non-renamable type or is a register variable,
213 we may use a COMPONENT_REF on the LHS. */
214 tree rhs1
= gimple_assign_rhs1 (stmt
);
216 = (is_gimple_reg_type (TREE_TYPE (rhs1
)) && !is_gimple_reg (rhs1
))
217 || gimple_assign_rhs_class (stmt
) != GIMPLE_SINGLE_RHS
;
221 ret
= walk_tree (gimple_op_ptr (stmt
, 0), callback_op
, wi
, pset
);
239 ret
= walk_tree (gimple_call_chain_ptr (stmt
), callback_op
, wi
, pset
);
243 ret
= walk_tree (gimple_call_fn_ptr (stmt
), callback_op
, wi
, pset
);
247 for (i
= 0; i
< gimple_call_num_args (stmt
); i
++)
251 = is_gimple_reg_type (TREE_TYPE (gimple_call_arg (stmt
, i
)));
252 ret
= walk_tree (gimple_call_arg_ptr (stmt
, i
), callback_op
, wi
,
258 if (gimple_call_lhs (stmt
))
264 = is_gimple_reg_type (TREE_TYPE (gimple_call_lhs (stmt
)));
267 ret
= walk_tree (gimple_call_lhs_ptr (stmt
), callback_op
, wi
, pset
);
280 ret
= walk_tree (gimple_catch_types_ptr (stmt
), callback_op
, wi
,
286 case GIMPLE_EH_FILTER
:
287 ret
= walk_tree (gimple_eh_filter_types_ptr (stmt
), callback_op
, wi
,
294 ret
= walk_gimple_asm (stmt
, callback_op
, wi
);
299 case GIMPLE_OMP_CONTINUE
:
300 ret
= walk_tree (gimple_omp_continue_control_def_ptr (stmt
),
301 callback_op
, wi
, pset
);
305 ret
= walk_tree (gimple_omp_continue_control_use_ptr (stmt
),
306 callback_op
, wi
, pset
);
311 case GIMPLE_OMP_CRITICAL
:
312 ret
= walk_tree (gimple_omp_critical_name_ptr (stmt
), callback_op
, wi
,
319 ret
= walk_tree (gimple_omp_for_clauses_ptr (stmt
), callback_op
, wi
,
323 for (i
= 0; i
< gimple_omp_for_collapse (stmt
); i
++)
325 ret
= walk_tree (gimple_omp_for_index_ptr (stmt
, i
), callback_op
,
329 ret
= walk_tree (gimple_omp_for_initial_ptr (stmt
, i
), callback_op
,
333 ret
= walk_tree (gimple_omp_for_final_ptr (stmt
, i
), callback_op
,
337 ret
= walk_tree (gimple_omp_for_incr_ptr (stmt
, i
), callback_op
,
344 case GIMPLE_OMP_PARALLEL
:
345 ret
= walk_tree (gimple_omp_parallel_clauses_ptr (stmt
), callback_op
,
349 ret
= walk_tree (gimple_omp_parallel_child_fn_ptr (stmt
), callback_op
,
353 ret
= walk_tree (gimple_omp_parallel_data_arg_ptr (stmt
), callback_op
,
359 case GIMPLE_OMP_TASK
:
360 ret
= walk_tree (gimple_omp_task_clauses_ptr (stmt
), callback_op
,
364 ret
= walk_tree (gimple_omp_task_child_fn_ptr (stmt
), callback_op
,
368 ret
= walk_tree (gimple_omp_task_data_arg_ptr (stmt
), callback_op
,
372 ret
= walk_tree (gimple_omp_task_copy_fn_ptr (stmt
), callback_op
,
376 ret
= walk_tree (gimple_omp_task_arg_size_ptr (stmt
), callback_op
,
380 ret
= walk_tree (gimple_omp_task_arg_align_ptr (stmt
), callback_op
,
386 case GIMPLE_OMP_SECTIONS
:
387 ret
= walk_tree (gimple_omp_sections_clauses_ptr (stmt
), callback_op
,
392 ret
= walk_tree (gimple_omp_sections_control_ptr (stmt
), callback_op
,
399 case GIMPLE_OMP_SINGLE
:
400 ret
= walk_tree (gimple_omp_single_clauses_ptr (stmt
), callback_op
, wi
,
406 case GIMPLE_OMP_TARGET
:
407 ret
= walk_tree (gimple_omp_target_clauses_ptr (stmt
), callback_op
, wi
,
413 case GIMPLE_OMP_TEAMS
:
414 ret
= walk_tree (gimple_omp_teams_clauses_ptr (stmt
), callback_op
, wi
,
420 case GIMPLE_OMP_ATOMIC_LOAD
:
421 ret
= walk_tree (gimple_omp_atomic_load_lhs_ptr (stmt
), callback_op
, wi
,
426 ret
= walk_tree (gimple_omp_atomic_load_rhs_ptr (stmt
), callback_op
, wi
,
432 case GIMPLE_OMP_ATOMIC_STORE
:
433 ret
= walk_tree (gimple_omp_atomic_store_val_ptr (stmt
), callback_op
,
439 case GIMPLE_TRANSACTION
:
440 ret
= walk_tree (gimple_transaction_label_ptr (stmt
), callback_op
,
446 case GIMPLE_OMP_RETURN
:
447 ret
= walk_tree (gimple_omp_return_lhs_ptr (stmt
), callback_op
, wi
,
453 /* Tuples that do not have operands. */
461 enum gimple_statement_structure_enum gss
;
462 gss
= gimple_statement_structure (stmt
);
463 if (gss
== GSS_WITH_OPS
|| gss
== GSS_WITH_MEM_OPS
)
464 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
466 ret
= walk_tree (gimple_op_ptr (stmt
, i
), callback_op
, wi
, pset
);
478 /* Walk the current statement in GSI (optionally using traversal state
479 stored in WI). If WI is NULL, no state is kept during traversal.
480 The callback CALLBACK_STMT is called. If CALLBACK_STMT indicates
481 that it has handled all the operands of the statement, its return
482 value is returned. Otherwise, the return value from CALLBACK_STMT
483 is discarded and its operands are scanned.
485 If CALLBACK_STMT is NULL or it didn't handle the operands,
486 CALLBACK_OP is called on each operand of the statement via
487 walk_gimple_op. If walk_gimple_op returns non-NULL for any
488 operand, the remaining operands are not scanned. In this case, the
489 return value from CALLBACK_OP is returned.
491 In any other case, NULL_TREE is returned. */
494 walk_gimple_stmt (gimple_stmt_iterator
*gsi
, walk_stmt_fn callback_stmt
,
495 walk_tree_fn callback_op
, struct walk_stmt_info
*wi
)
499 gimple stmt
= gsi_stmt (*gsi
);
504 wi
->removed_stmt
= false;
506 if (wi
->want_locations
&& gimple_has_location (stmt
))
507 input_location
= gimple_location (stmt
);
512 /* Invoke the statement callback. Return if the callback handled
513 all of STMT operands by itself. */
516 bool handled_ops
= false;
517 tree_ret
= callback_stmt (gsi
, &handled_ops
, wi
);
521 /* If CALLBACK_STMT did not handle operands, it should not have
522 a value to return. */
523 gcc_assert (tree_ret
== NULL
);
525 if (wi
&& wi
->removed_stmt
)
528 /* Re-read stmt in case the callback changed it. */
529 stmt
= gsi_stmt (*gsi
);
532 /* If CALLBACK_OP is defined, invoke it on every operand of STMT. */
535 tree_ret
= walk_gimple_op (stmt
, callback_op
, wi
);
540 /* If STMT can have statements inside (e.g. GIMPLE_BIND), walk them. */
541 switch (gimple_code (stmt
))
544 ret
= walk_gimple_seq_mod (gimple_bind_body_ptr (stmt
), callback_stmt
,
547 return wi
->callback_result
;
551 ret
= walk_gimple_seq_mod (gimple_catch_handler_ptr (stmt
), callback_stmt
,
554 return wi
->callback_result
;
557 case GIMPLE_EH_FILTER
:
558 ret
= walk_gimple_seq_mod (gimple_eh_filter_failure_ptr (stmt
), callback_stmt
,
561 return wi
->callback_result
;
565 ret
= walk_gimple_seq_mod (gimple_eh_else_n_body_ptr (stmt
),
566 callback_stmt
, callback_op
, wi
);
568 return wi
->callback_result
;
569 ret
= walk_gimple_seq_mod (gimple_eh_else_e_body_ptr (stmt
),
570 callback_stmt
, callback_op
, wi
);
572 return wi
->callback_result
;
576 ret
= walk_gimple_seq_mod (gimple_try_eval_ptr (stmt
), callback_stmt
, callback_op
,
579 return wi
->callback_result
;
581 ret
= walk_gimple_seq_mod (gimple_try_cleanup_ptr (stmt
), callback_stmt
,
584 return wi
->callback_result
;
588 ret
= walk_gimple_seq_mod (gimple_omp_for_pre_body_ptr (stmt
), callback_stmt
,
591 return wi
->callback_result
;
594 case GIMPLE_OMP_CRITICAL
:
595 case GIMPLE_OMP_MASTER
:
596 case GIMPLE_OMP_TASKGROUP
:
597 case GIMPLE_OMP_ORDERED
:
598 case GIMPLE_OMP_SECTION
:
599 case GIMPLE_OMP_PARALLEL
:
600 case GIMPLE_OMP_TASK
:
601 case GIMPLE_OMP_SECTIONS
:
602 case GIMPLE_OMP_SINGLE
:
603 case GIMPLE_OMP_TARGET
:
604 case GIMPLE_OMP_TEAMS
:
605 ret
= walk_gimple_seq_mod (gimple_omp_body_ptr (stmt
), callback_stmt
,
608 return wi
->callback_result
;
611 case GIMPLE_WITH_CLEANUP_EXPR
:
612 ret
= walk_gimple_seq_mod (gimple_wce_cleanup_ptr (stmt
), callback_stmt
,
615 return wi
->callback_result
;
618 case GIMPLE_TRANSACTION
:
619 ret
= walk_gimple_seq_mod (gimple_transaction_body_ptr (stmt
),
620 callback_stmt
, callback_op
, wi
);
622 return wi
->callback_result
;
626 gcc_assert (!gimple_has_substatements (stmt
));
633 /* From a tree operand OP return the base of a load or store operation
634 or NULL_TREE if OP is not a load or a store. */
637 get_base_loadstore (tree op
)
639 while (handled_component_p (op
))
640 op
= TREE_OPERAND (op
, 0);
642 || INDIRECT_REF_P (op
)
643 || TREE_CODE (op
) == MEM_REF
644 || TREE_CODE (op
) == TARGET_MEM_REF
)
650 /* For the statement STMT call the callbacks VISIT_LOAD, VISIT_STORE and
651 VISIT_ADDR if non-NULL on loads, store and address-taken operands
652 passing the STMT, the base of the operand, the operand itself containing
653 the base and DATA to it. The base will be either a decl, an indirect
654 reference (including TARGET_MEM_REF) or the argument of an address
656 Returns the results of these callbacks or'ed. */
659 walk_stmt_load_store_addr_ops (gimple stmt
, void *data
,
660 walk_stmt_load_store_addr_fn visit_load
,
661 walk_stmt_load_store_addr_fn visit_store
,
662 walk_stmt_load_store_addr_fn visit_addr
)
666 if (gimple_assign_single_p (stmt
))
671 arg
= gimple_assign_lhs (stmt
);
672 lhs
= get_base_loadstore (arg
);
674 ret
|= visit_store (stmt
, lhs
, arg
, data
);
676 arg
= gimple_assign_rhs1 (stmt
);
678 while (handled_component_p (rhs
))
679 rhs
= TREE_OPERAND (rhs
, 0);
682 if (TREE_CODE (rhs
) == ADDR_EXPR
)
683 ret
|= visit_addr (stmt
, TREE_OPERAND (rhs
, 0), arg
, data
);
684 else if (TREE_CODE (rhs
) == TARGET_MEM_REF
685 && TREE_CODE (TMR_BASE (rhs
)) == ADDR_EXPR
)
686 ret
|= visit_addr (stmt
, TREE_OPERAND (TMR_BASE (rhs
), 0), arg
,
688 else if (TREE_CODE (rhs
) == OBJ_TYPE_REF
689 && TREE_CODE (OBJ_TYPE_REF_OBJECT (rhs
)) == ADDR_EXPR
)
690 ret
|= visit_addr (stmt
, TREE_OPERAND (OBJ_TYPE_REF_OBJECT (rhs
),
692 else if (TREE_CODE (rhs
) == CONSTRUCTOR
)
697 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (rhs
), ix
, val
)
698 if (TREE_CODE (val
) == ADDR_EXPR
)
699 ret
|= visit_addr (stmt
, TREE_OPERAND (val
, 0), arg
, data
);
700 else if (TREE_CODE (val
) == OBJ_TYPE_REF
701 && TREE_CODE (OBJ_TYPE_REF_OBJECT (val
)) == ADDR_EXPR
)
702 ret
|= visit_addr (stmt
,
703 TREE_OPERAND (OBJ_TYPE_REF_OBJECT (val
),
706 lhs
= gimple_assign_lhs (stmt
);
707 if (TREE_CODE (lhs
) == TARGET_MEM_REF
708 && TREE_CODE (TMR_BASE (lhs
)) == ADDR_EXPR
)
709 ret
|= visit_addr (stmt
, TREE_OPERAND (TMR_BASE (lhs
), 0), lhs
, data
);
713 rhs
= get_base_loadstore (rhs
);
715 ret
|= visit_load (stmt
, rhs
, arg
, data
);
719 && (is_gimple_assign (stmt
)
720 || gimple_code (stmt
) == GIMPLE_COND
))
722 for (i
= 0; i
< gimple_num_ops (stmt
); ++i
)
724 tree op
= gimple_op (stmt
, i
);
727 else if (TREE_CODE (op
) == ADDR_EXPR
)
728 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
729 /* COND_EXPR and VCOND_EXPR rhs1 argument is a comparison
730 tree with two operands. */
731 else if (i
== 1 && COMPARISON_CLASS_P (op
))
733 if (TREE_CODE (TREE_OPERAND (op
, 0)) == ADDR_EXPR
)
734 ret
|= visit_addr (stmt
, TREE_OPERAND (TREE_OPERAND (op
, 0),
736 if (TREE_CODE (TREE_OPERAND (op
, 1)) == ADDR_EXPR
)
737 ret
|= visit_addr (stmt
, TREE_OPERAND (TREE_OPERAND (op
, 1),
742 else if (is_gimple_call (stmt
))
746 tree arg
= gimple_call_lhs (stmt
);
749 tree lhs
= get_base_loadstore (arg
);
751 ret
|= visit_store (stmt
, lhs
, arg
, data
);
754 if (visit_load
|| visit_addr
)
755 for (i
= 0; i
< gimple_call_num_args (stmt
); ++i
)
757 tree arg
= gimple_call_arg (stmt
, i
);
759 && TREE_CODE (arg
) == ADDR_EXPR
)
760 ret
|= visit_addr (stmt
, TREE_OPERAND (arg
, 0), arg
, data
);
763 tree rhs
= get_base_loadstore (arg
);
765 ret
|= visit_load (stmt
, rhs
, arg
, data
);
769 && gimple_call_chain (stmt
)
770 && TREE_CODE (gimple_call_chain (stmt
)) == ADDR_EXPR
)
771 ret
|= visit_addr (stmt
, TREE_OPERAND (gimple_call_chain (stmt
), 0),
772 gimple_call_chain (stmt
), data
);
774 && gimple_call_return_slot_opt_p (stmt
)
775 && gimple_call_lhs (stmt
) != NULL_TREE
776 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt
))))
777 ret
|= visit_addr (stmt
, gimple_call_lhs (stmt
),
778 gimple_call_lhs (stmt
), data
);
780 else if (gimple_code (stmt
) == GIMPLE_ASM
)
783 const char *constraint
;
784 const char **oconstraints
;
785 bool allows_mem
, allows_reg
, is_inout
;
786 noutputs
= gimple_asm_noutputs (stmt
);
787 oconstraints
= XALLOCAVEC (const char *, noutputs
);
788 if (visit_store
|| visit_addr
)
789 for (i
= 0; i
< gimple_asm_noutputs (stmt
); ++i
)
791 tree link
= gimple_asm_output_op (stmt
, i
);
792 tree op
= get_base_loadstore (TREE_VALUE (link
));
793 if (op
&& visit_store
)
794 ret
|= visit_store (stmt
, op
, TREE_VALUE (link
), data
);
797 constraint
= TREE_STRING_POINTER
798 (TREE_VALUE (TREE_PURPOSE (link
)));
799 oconstraints
[i
] = constraint
;
800 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
,
801 &allows_reg
, &is_inout
);
802 if (op
&& !allows_reg
&& allows_mem
)
803 ret
|= visit_addr (stmt
, op
, TREE_VALUE (link
), data
);
806 if (visit_load
|| visit_addr
)
807 for (i
= 0; i
< gimple_asm_ninputs (stmt
); ++i
)
809 tree link
= gimple_asm_input_op (stmt
, i
);
810 tree op
= TREE_VALUE (link
);
812 && TREE_CODE (op
) == ADDR_EXPR
)
813 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
814 else if (visit_load
|| visit_addr
)
816 op
= get_base_loadstore (op
);
820 ret
|= visit_load (stmt
, op
, TREE_VALUE (link
), data
);
823 constraint
= TREE_STRING_POINTER
824 (TREE_VALUE (TREE_PURPOSE (link
)));
825 parse_input_constraint (&constraint
, 0, 0, noutputs
,
827 &allows_mem
, &allows_reg
);
828 if (!allows_reg
&& allows_mem
)
829 ret
|= visit_addr (stmt
, op
, TREE_VALUE (link
),
836 else if (gimple_code (stmt
) == GIMPLE_RETURN
)
838 tree op
= gimple_return_retval (stmt
);
842 && TREE_CODE (op
) == ADDR_EXPR
)
843 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
846 tree base
= get_base_loadstore (op
);
848 ret
|= visit_load (stmt
, base
, op
, data
);
853 && gimple_code (stmt
) == GIMPLE_PHI
)
855 for (i
= 0; i
< gimple_phi_num_args (stmt
); ++i
)
857 tree op
= gimple_phi_arg_def (stmt
, i
);
858 if (TREE_CODE (op
) == ADDR_EXPR
)
859 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
863 && gimple_code (stmt
) == GIMPLE_GOTO
)
865 tree op
= gimple_goto_dest (stmt
);
866 if (TREE_CODE (op
) == ADDR_EXPR
)
867 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
873 /* Like walk_stmt_load_store_addr_ops but with NULL visit_addr. IPA-CP
874 should make a faster clone for this case. */
877 walk_stmt_load_store_ops (gimple stmt
, void *data
,
878 walk_stmt_load_store_addr_fn visit_load
,
879 walk_stmt_load_store_addr_fn visit_store
)
881 return walk_stmt_load_store_addr_ops (stmt
, data
,
882 visit_load
, visit_store
, NULL
);