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_asm 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 (as_a
<gimple_call
> (stmt
)),
240 callback_op
, wi
, pset
);
244 ret
= walk_tree (gimple_call_fn_ptr (stmt
), callback_op
, wi
, pset
);
248 for (i
= 0; i
< gimple_call_num_args (stmt
); i
++)
252 = is_gimple_reg_type (TREE_TYPE (gimple_call_arg (stmt
, i
)));
253 ret
= walk_tree (gimple_call_arg_ptr (stmt
, i
), callback_op
, wi
,
259 if (gimple_call_lhs (stmt
))
265 = is_gimple_reg_type (TREE_TYPE (gimple_call_lhs (stmt
)));
268 ret
= walk_tree (gimple_call_lhs_ptr (stmt
), callback_op
, wi
, pset
);
281 ret
= walk_tree (gimple_catch_types_ptr (as_a
<gimple_catch
> (stmt
)),
282 callback_op
, wi
, pset
);
287 case GIMPLE_EH_FILTER
:
288 ret
= walk_tree (gimple_eh_filter_types_ptr (stmt
), callback_op
, wi
,
295 ret
= walk_gimple_asm (as_a
<gimple_asm
> (stmt
), callback_op
, wi
);
300 case GIMPLE_OMP_CONTINUE
:
302 gimple_omp_continue cont_stmt
= as_a
<gimple_omp_continue
> (stmt
);
303 ret
= walk_tree (gimple_omp_continue_control_def_ptr (cont_stmt
),
304 callback_op
, wi
, pset
);
308 ret
= walk_tree (gimple_omp_continue_control_use_ptr (cont_stmt
),
309 callback_op
, wi
, pset
);
315 case GIMPLE_OMP_CRITICAL
:
316 ret
= walk_tree (gimple_omp_critical_name_ptr (
317 as_a
<gimple_omp_critical
> (stmt
)),
318 callback_op
, wi
, pset
);
324 ret
= walk_tree (gimple_omp_for_clauses_ptr (stmt
), callback_op
, wi
,
328 for (i
= 0; i
< gimple_omp_for_collapse (stmt
); i
++)
330 ret
= walk_tree (gimple_omp_for_index_ptr (stmt
, i
), callback_op
,
334 ret
= walk_tree (gimple_omp_for_initial_ptr (stmt
, i
), callback_op
,
338 ret
= walk_tree (gimple_omp_for_final_ptr (stmt
, i
), callback_op
,
342 ret
= walk_tree (gimple_omp_for_incr_ptr (stmt
, i
), callback_op
,
349 case GIMPLE_OMP_PARALLEL
:
350 ret
= walk_tree (gimple_omp_parallel_clauses_ptr (stmt
), callback_op
,
354 ret
= walk_tree (gimple_omp_parallel_child_fn_ptr (stmt
), callback_op
,
358 ret
= walk_tree (gimple_omp_parallel_data_arg_ptr (stmt
), callback_op
,
364 case GIMPLE_OMP_TASK
:
365 ret
= walk_tree (gimple_omp_task_clauses_ptr (stmt
), callback_op
,
369 ret
= walk_tree (gimple_omp_task_child_fn_ptr (stmt
), callback_op
,
373 ret
= walk_tree (gimple_omp_task_data_arg_ptr (stmt
), callback_op
,
377 ret
= walk_tree (gimple_omp_task_copy_fn_ptr (stmt
), callback_op
,
381 ret
= walk_tree (gimple_omp_task_arg_size_ptr (stmt
), callback_op
,
385 ret
= walk_tree (gimple_omp_task_arg_align_ptr (stmt
), callback_op
,
391 case GIMPLE_OMP_SECTIONS
:
392 ret
= walk_tree (gimple_omp_sections_clauses_ptr (stmt
), callback_op
,
397 ret
= walk_tree (gimple_omp_sections_control_ptr (stmt
), callback_op
,
404 case GIMPLE_OMP_SINGLE
:
405 ret
= walk_tree (gimple_omp_single_clauses_ptr (stmt
), callback_op
, wi
,
411 case GIMPLE_OMP_TARGET
:
412 ret
= walk_tree (gimple_omp_target_clauses_ptr (stmt
), callback_op
, wi
,
418 case GIMPLE_OMP_TEAMS
:
419 ret
= walk_tree (gimple_omp_teams_clauses_ptr (stmt
), callback_op
, wi
,
425 case GIMPLE_OMP_ATOMIC_LOAD
:
427 gimple_omp_atomic_load omp_stmt
= as_a
<gimple_omp_atomic_load
> (stmt
);
428 ret
= walk_tree (gimple_omp_atomic_load_lhs_ptr (omp_stmt
),
429 callback_op
, wi
, pset
);
433 ret
= walk_tree (gimple_omp_atomic_load_rhs_ptr (omp_stmt
),
434 callback_op
, wi
, pset
);
440 case GIMPLE_OMP_ATOMIC_STORE
:
441 ret
= walk_tree (gimple_omp_atomic_store_val_ptr (
442 as_a
<gimple_omp_atomic_store
> (stmt
)),
443 callback_op
, wi
, pset
);
448 case GIMPLE_TRANSACTION
:
449 ret
= walk_tree (gimple_transaction_label_ptr (
450 as_a
<gimple_transaction
> (stmt
)),
451 callback_op
, wi
, pset
);
456 case GIMPLE_OMP_RETURN
:
457 ret
= walk_tree (gimple_omp_return_lhs_ptr (stmt
), callback_op
, wi
,
463 /* Tuples that do not have operands. */
471 enum gimple_statement_structure_enum gss
;
472 gss
= gimple_statement_structure (stmt
);
473 if (gss
== GSS_WITH_OPS
|| gss
== GSS_WITH_MEM_OPS
)
474 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
476 ret
= walk_tree (gimple_op_ptr (stmt
, i
), callback_op
, wi
, pset
);
488 /* Walk the current statement in GSI (optionally using traversal state
489 stored in WI). If WI is NULL, no state is kept during traversal.
490 The callback CALLBACK_STMT is called. If CALLBACK_STMT indicates
491 that it has handled all the operands of the statement, its return
492 value is returned. Otherwise, the return value from CALLBACK_STMT
493 is discarded and its operands are scanned.
495 If CALLBACK_STMT is NULL or it didn't handle the operands,
496 CALLBACK_OP is called on each operand of the statement via
497 walk_gimple_op. If walk_gimple_op returns non-NULL for any
498 operand, the remaining operands are not scanned. In this case, the
499 return value from CALLBACK_OP is returned.
501 In any other case, NULL_TREE is returned. */
504 walk_gimple_stmt (gimple_stmt_iterator
*gsi
, walk_stmt_fn callback_stmt
,
505 walk_tree_fn callback_op
, struct walk_stmt_info
*wi
)
509 gimple stmt
= gsi_stmt (*gsi
);
514 wi
->removed_stmt
= false;
516 if (wi
->want_locations
&& gimple_has_location (stmt
))
517 input_location
= gimple_location (stmt
);
522 /* Invoke the statement callback. Return if the callback handled
523 all of STMT operands by itself. */
526 bool handled_ops
= false;
527 tree_ret
= callback_stmt (gsi
, &handled_ops
, wi
);
531 /* If CALLBACK_STMT did not handle operands, it should not have
532 a value to return. */
533 gcc_assert (tree_ret
== NULL
);
535 if (wi
&& wi
->removed_stmt
)
538 /* Re-read stmt in case the callback changed it. */
539 stmt
= gsi_stmt (*gsi
);
542 /* If CALLBACK_OP is defined, invoke it on every operand of STMT. */
545 tree_ret
= walk_gimple_op (stmt
, callback_op
, wi
);
550 /* If STMT can have statements inside (e.g. GIMPLE_BIND), walk them. */
551 switch (gimple_code (stmt
))
555 walk_gimple_seq_mod (gimple_bind_body_ptr (as_a
<gimple_bind
> (stmt
)),
556 callback_stmt
, callback_op
, wi
);
558 return wi
->callback_result
;
562 ret
= walk_gimple_seq_mod (gimple_catch_handler_ptr (
563 as_a
<gimple_catch
> (stmt
)),
564 callback_stmt
, callback_op
, wi
);
566 return wi
->callback_result
;
569 case GIMPLE_EH_FILTER
:
570 ret
= walk_gimple_seq_mod (gimple_eh_filter_failure_ptr (stmt
), callback_stmt
,
573 return wi
->callback_result
;
578 gimple_eh_else eh_else_stmt
= as_a
<gimple_eh_else
> (stmt
);
579 ret
= walk_gimple_seq_mod (gimple_eh_else_n_body_ptr (eh_else_stmt
),
580 callback_stmt
, callback_op
, wi
);
582 return wi
->callback_result
;
583 ret
= walk_gimple_seq_mod (gimple_eh_else_e_body_ptr (eh_else_stmt
),
584 callback_stmt
, callback_op
, wi
);
586 return wi
->callback_result
;
591 ret
= walk_gimple_seq_mod (gimple_try_eval_ptr (stmt
), callback_stmt
, callback_op
,
594 return wi
->callback_result
;
596 ret
= walk_gimple_seq_mod (gimple_try_cleanup_ptr (stmt
), callback_stmt
,
599 return wi
->callback_result
;
603 ret
= walk_gimple_seq_mod (gimple_omp_for_pre_body_ptr (stmt
), callback_stmt
,
606 return wi
->callback_result
;
609 case GIMPLE_OMP_CRITICAL
:
610 case GIMPLE_OMP_MASTER
:
611 case GIMPLE_OMP_TASKGROUP
:
612 case GIMPLE_OMP_ORDERED
:
613 case GIMPLE_OMP_SECTION
:
614 case GIMPLE_OMP_PARALLEL
:
615 case GIMPLE_OMP_TASK
:
616 case GIMPLE_OMP_SECTIONS
:
617 case GIMPLE_OMP_SINGLE
:
618 case GIMPLE_OMP_TARGET
:
619 case GIMPLE_OMP_TEAMS
:
620 ret
= walk_gimple_seq_mod (gimple_omp_body_ptr (stmt
), callback_stmt
,
623 return wi
->callback_result
;
626 case GIMPLE_WITH_CLEANUP_EXPR
:
627 ret
= walk_gimple_seq_mod (gimple_wce_cleanup_ptr (stmt
), callback_stmt
,
630 return wi
->callback_result
;
633 case GIMPLE_TRANSACTION
:
634 ret
= walk_gimple_seq_mod (gimple_transaction_body_ptr (
635 as_a
<gimple_transaction
> (stmt
)),
636 callback_stmt
, callback_op
, wi
);
638 return wi
->callback_result
;
642 gcc_assert (!gimple_has_substatements (stmt
));
649 /* From a tree operand OP return the base of a load or store operation
650 or NULL_TREE if OP is not a load or a store. */
653 get_base_loadstore (tree op
)
655 while (handled_component_p (op
))
656 op
= TREE_OPERAND (op
, 0);
658 || INDIRECT_REF_P (op
)
659 || TREE_CODE (op
) == MEM_REF
660 || TREE_CODE (op
) == TARGET_MEM_REF
)
666 /* For the statement STMT call the callbacks VISIT_LOAD, VISIT_STORE and
667 VISIT_ADDR if non-NULL on loads, store and address-taken operands
668 passing the STMT, the base of the operand, the operand itself containing
669 the base and DATA to it. The base will be either a decl, an indirect
670 reference (including TARGET_MEM_REF) or the argument of an address
672 Returns the results of these callbacks or'ed. */
675 walk_stmt_load_store_addr_ops (gimple stmt
, void *data
,
676 walk_stmt_load_store_addr_fn visit_load
,
677 walk_stmt_load_store_addr_fn visit_store
,
678 walk_stmt_load_store_addr_fn visit_addr
)
682 if (gimple_assign_single_p (stmt
))
687 arg
= gimple_assign_lhs (stmt
);
688 lhs
= get_base_loadstore (arg
);
690 ret
|= visit_store (stmt
, lhs
, arg
, data
);
692 arg
= gimple_assign_rhs1 (stmt
);
694 while (handled_component_p (rhs
))
695 rhs
= TREE_OPERAND (rhs
, 0);
698 if (TREE_CODE (rhs
) == ADDR_EXPR
)
699 ret
|= visit_addr (stmt
, TREE_OPERAND (rhs
, 0), arg
, data
);
700 else if (TREE_CODE (rhs
) == TARGET_MEM_REF
701 && TREE_CODE (TMR_BASE (rhs
)) == ADDR_EXPR
)
702 ret
|= visit_addr (stmt
, TREE_OPERAND (TMR_BASE (rhs
), 0), arg
,
704 else if (TREE_CODE (rhs
) == OBJ_TYPE_REF
705 && TREE_CODE (OBJ_TYPE_REF_OBJECT (rhs
)) == ADDR_EXPR
)
706 ret
|= visit_addr (stmt
, TREE_OPERAND (OBJ_TYPE_REF_OBJECT (rhs
),
708 else if (TREE_CODE (rhs
) == CONSTRUCTOR
)
713 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (rhs
), ix
, val
)
714 if (TREE_CODE (val
) == ADDR_EXPR
)
715 ret
|= visit_addr (stmt
, TREE_OPERAND (val
, 0), arg
, data
);
716 else if (TREE_CODE (val
) == OBJ_TYPE_REF
717 && TREE_CODE (OBJ_TYPE_REF_OBJECT (val
)) == ADDR_EXPR
)
718 ret
|= visit_addr (stmt
,
719 TREE_OPERAND (OBJ_TYPE_REF_OBJECT (val
),
722 lhs
= gimple_assign_lhs (stmt
);
723 if (TREE_CODE (lhs
) == TARGET_MEM_REF
724 && TREE_CODE (TMR_BASE (lhs
)) == ADDR_EXPR
)
725 ret
|= visit_addr (stmt
, TREE_OPERAND (TMR_BASE (lhs
), 0), lhs
, data
);
729 rhs
= get_base_loadstore (rhs
);
731 ret
|= visit_load (stmt
, rhs
, arg
, data
);
735 && (is_gimple_assign (stmt
)
736 || gimple_code (stmt
) == GIMPLE_COND
))
738 for (i
= 0; i
< gimple_num_ops (stmt
); ++i
)
740 tree op
= gimple_op (stmt
, i
);
743 else if (TREE_CODE (op
) == ADDR_EXPR
)
744 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
745 /* COND_EXPR and VCOND_EXPR rhs1 argument is a comparison
746 tree with two operands. */
747 else if (i
== 1 && COMPARISON_CLASS_P (op
))
749 if (TREE_CODE (TREE_OPERAND (op
, 0)) == ADDR_EXPR
)
750 ret
|= visit_addr (stmt
, TREE_OPERAND (TREE_OPERAND (op
, 0),
752 if (TREE_CODE (TREE_OPERAND (op
, 1)) == ADDR_EXPR
)
753 ret
|= visit_addr (stmt
, TREE_OPERAND (TREE_OPERAND (op
, 1),
758 else if (is_gimple_call (stmt
))
762 tree arg
= gimple_call_lhs (stmt
);
765 tree lhs
= get_base_loadstore (arg
);
767 ret
|= visit_store (stmt
, lhs
, arg
, data
);
770 if (visit_load
|| visit_addr
)
771 for (i
= 0; i
< gimple_call_num_args (stmt
); ++i
)
773 tree arg
= gimple_call_arg (stmt
, i
);
775 && TREE_CODE (arg
) == ADDR_EXPR
)
776 ret
|= visit_addr (stmt
, TREE_OPERAND (arg
, 0), arg
, data
);
779 tree rhs
= get_base_loadstore (arg
);
781 ret
|= visit_load (stmt
, rhs
, arg
, data
);
785 && gimple_call_chain (stmt
)
786 && TREE_CODE (gimple_call_chain (stmt
)) == ADDR_EXPR
)
787 ret
|= visit_addr (stmt
, TREE_OPERAND (gimple_call_chain (stmt
), 0),
788 gimple_call_chain (stmt
), data
);
790 && gimple_call_return_slot_opt_p (stmt
)
791 && gimple_call_lhs (stmt
) != NULL_TREE
792 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt
))))
793 ret
|= visit_addr (stmt
, gimple_call_lhs (stmt
),
794 gimple_call_lhs (stmt
), data
);
796 else if (gimple_asm asm_stmt
= dyn_cast
<gimple_asm
> (stmt
))
799 const char *constraint
;
800 const char **oconstraints
;
801 bool allows_mem
, allows_reg
, is_inout
;
802 noutputs
= gimple_asm_noutputs (asm_stmt
);
803 oconstraints
= XALLOCAVEC (const char *, noutputs
);
804 if (visit_store
|| visit_addr
)
805 for (i
= 0; i
< gimple_asm_noutputs (asm_stmt
); ++i
)
807 tree link
= gimple_asm_output_op (asm_stmt
, i
);
808 tree op
= get_base_loadstore (TREE_VALUE (link
));
809 if (op
&& visit_store
)
810 ret
|= visit_store (stmt
, op
, TREE_VALUE (link
), data
);
813 constraint
= TREE_STRING_POINTER
814 (TREE_VALUE (TREE_PURPOSE (link
)));
815 oconstraints
[i
] = constraint
;
816 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
,
817 &allows_reg
, &is_inout
);
818 if (op
&& !allows_reg
&& allows_mem
)
819 ret
|= visit_addr (stmt
, op
, TREE_VALUE (link
), data
);
822 if (visit_load
|| visit_addr
)
823 for (i
= 0; i
< gimple_asm_ninputs (asm_stmt
); ++i
)
825 tree link
= gimple_asm_input_op (asm_stmt
, i
);
826 tree op
= TREE_VALUE (link
);
828 && TREE_CODE (op
) == ADDR_EXPR
)
829 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
830 else if (visit_load
|| visit_addr
)
832 op
= get_base_loadstore (op
);
836 ret
|= visit_load (stmt
, op
, TREE_VALUE (link
), data
);
839 constraint
= TREE_STRING_POINTER
840 (TREE_VALUE (TREE_PURPOSE (link
)));
841 parse_input_constraint (&constraint
, 0, 0, noutputs
,
843 &allows_mem
, &allows_reg
);
844 if (!allows_reg
&& allows_mem
)
845 ret
|= visit_addr (stmt
, op
, TREE_VALUE (link
),
852 else if (gimple_code (stmt
) == GIMPLE_RETURN
)
854 tree op
= gimple_return_retval (stmt
);
858 && TREE_CODE (op
) == ADDR_EXPR
)
859 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
862 tree base
= get_base_loadstore (op
);
864 ret
|= visit_load (stmt
, base
, op
, data
);
869 && gimple_code (stmt
) == GIMPLE_PHI
)
871 for (i
= 0; i
< gimple_phi_num_args (stmt
); ++i
)
873 tree op
= gimple_phi_arg_def (stmt
, i
);
874 if (TREE_CODE (op
) == ADDR_EXPR
)
875 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
879 && gimple_code (stmt
) == GIMPLE_GOTO
)
881 tree op
= gimple_goto_dest (stmt
);
882 if (TREE_CODE (op
) == ADDR_EXPR
)
883 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
889 /* Like walk_stmt_load_store_addr_ops but with NULL visit_addr. IPA-CP
890 should make a faster clone for this case. */
893 walk_stmt_load_store_ops (gimple stmt
, void *data
,
894 walk_stmt_load_store_addr_fn visit_load
,
895 walk_stmt_load_store_addr_fn visit_store
)
897 return walk_stmt_load_store_addr_ops (stmt
, data
,
898 visit_load
, visit_store
, NULL
);