1 /* Gimple walk support.
3 Copyright (C) 2007-2023 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 "gimple-iterator.h"
29 #include "gimple-walk.h"
32 /* Walk all the statements in the sequence *PSEQ calling walk_gimple_stmt
33 on each one. WI is as in walk_gimple_stmt.
35 If walk_gimple_stmt returns non-NULL, the walk is stopped, and the
36 value is stored in WI->CALLBACK_RESULT. Also, the statement that
37 produced the value is returned if this statement has not been
38 removed by a callback (wi->removed_stmt). If the statement has
39 been removed, NULL is returned.
41 Otherwise, all the statements are walked and NULL returned. */
44 walk_gimple_seq_mod (gimple_seq
*pseq
, walk_stmt_fn callback_stmt
,
45 walk_tree_fn callback_op
, struct walk_stmt_info
*wi
)
47 gimple_stmt_iterator gsi
;
49 for (gsi
= gsi_start (*pseq
); !gsi_end_p (gsi
); )
51 tree ret
= walk_gimple_stmt (&gsi
, callback_stmt
, callback_op
, wi
);
54 /* If CALLBACK_STMT or CALLBACK_OP return a value, WI must exist
57 wi
->callback_result
= ret
;
59 return wi
->removed_stmt
? NULL
: gsi_stmt (gsi
);
62 if (!wi
->removed_stmt
)
67 wi
->callback_result
= NULL_TREE
;
73 /* Like walk_gimple_seq_mod, but ensure that the head of SEQ isn't
74 changed by the callbacks. */
77 walk_gimple_seq (gimple_seq seq
, walk_stmt_fn callback_stmt
,
78 walk_tree_fn callback_op
, struct walk_stmt_info
*wi
)
80 gimple_seq seq2
= seq
;
81 gimple
*ret
= walk_gimple_seq_mod (&seq2
, callback_stmt
, callback_op
, wi
);
82 gcc_assert (seq2
== seq
);
87 /* Helper function for walk_gimple_stmt. Walk operands of a GIMPLE_ASM. */
90 walk_gimple_asm (gasm
*stmt
, walk_tree_fn callback_op
,
91 struct walk_stmt_info
*wi
)
95 const char **oconstraints
;
97 const char *constraint
;
98 bool allows_mem
, allows_reg
, is_inout
;
100 noutputs
= gimple_asm_noutputs (stmt
);
101 oconstraints
= (const char **) alloca ((noutputs
) * sizeof (const char *));
103 for (i
= 0; i
< noutputs
; i
++)
105 op
= gimple_asm_output_op (stmt
, i
);
106 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op
)));
107 oconstraints
[i
] = constraint
;
110 if (parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
,
111 &allows_reg
, &is_inout
))
112 wi
->val_only
= (allows_reg
|| !allows_mem
);
116 ret
= walk_tree (&TREE_VALUE (op
), callback_op
, wi
, NULL
);
121 n
= gimple_asm_ninputs (stmt
);
122 for (i
= 0; i
< n
; i
++)
124 op
= gimple_asm_input_op (stmt
, i
);
125 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op
)));
129 if (parse_input_constraint (&constraint
, 0, 0, noutputs
, 0,
130 oconstraints
, &allows_mem
, &allows_reg
))
132 wi
->val_only
= (allows_reg
|| !allows_mem
);
133 /* Although input "m" is not really a LHS, we need a lvalue. */
134 wi
->is_lhs
= !wi
->val_only
;
137 ret
= walk_tree (&TREE_VALUE (op
), callback_op
, wi
, NULL
);
148 n
= gimple_asm_nlabels (stmt
);
149 for (i
= 0; i
< n
; i
++)
151 op
= gimple_asm_label_op (stmt
, i
);
152 ret
= walk_tree (&TREE_VALUE (op
), callback_op
, wi
, NULL
);
161 /* Helper function of WALK_GIMPLE_STMT. Walk every tree operand in
162 STMT. CALLBACK_OP and WI are as in WALK_GIMPLE_STMT.
164 CALLBACK_OP is called on each operand of STMT via walk_tree.
165 Additional parameters to walk_tree must be stored in WI. For each operand
166 OP, walk_tree is called as:
168 walk_tree (&OP, CALLBACK_OP, WI, WI->PSET)
170 If CALLBACK_OP returns non-NULL for an operand, the remaining
171 operands are not scanned.
173 The return value is that returned by the last call to walk_tree, or
174 NULL_TREE if no CALLBACK_OP is specified. */
177 walk_gimple_op (gimple
*stmt
, walk_tree_fn callback_op
,
178 struct walk_stmt_info
*wi
)
180 hash_set
<tree
> *pset
= (wi
) ? wi
->pset
: NULL
;
182 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
<gcall
*> (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
<gcatch
*> (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
<gasm
*> (stmt
), callback_op
, wi
);
300 case GIMPLE_OMP_CONTINUE
:
302 gomp_continue
*cont_stmt
= as_a
<gomp_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
:
317 gomp_critical
*omp_stmt
= as_a
<gomp_critical
*> (stmt
);
318 ret
= walk_tree (gimple_omp_critical_name_ptr (omp_stmt
),
319 callback_op
, wi
, pset
);
322 ret
= walk_tree (gimple_omp_critical_clauses_ptr (omp_stmt
),
323 callback_op
, wi
, pset
);
329 case GIMPLE_OMP_ORDERED
:
331 gomp_ordered
*omp_stmt
= as_a
<gomp_ordered
*> (stmt
);
332 ret
= walk_tree (gimple_omp_ordered_clauses_ptr (omp_stmt
),
333 callback_op
, wi
, pset
);
339 case GIMPLE_OMP_SCAN
:
341 gomp_scan
*scan_stmt
= as_a
<gomp_scan
*> (stmt
);
342 ret
= walk_tree (gimple_omp_scan_clauses_ptr (scan_stmt
),
343 callback_op
, wi
, pset
);
350 ret
= walk_tree (gimple_omp_for_clauses_ptr (stmt
), callback_op
, wi
,
354 for (i
= 0; i
< gimple_omp_for_collapse (stmt
); i
++)
356 ret
= walk_tree (gimple_omp_for_index_ptr (stmt
, i
), callback_op
,
360 ret
= walk_tree (gimple_omp_for_initial_ptr (stmt
, i
), callback_op
,
364 ret
= walk_tree (gimple_omp_for_final_ptr (stmt
, i
), callback_op
,
368 ret
= walk_tree (gimple_omp_for_incr_ptr (stmt
, i
), callback_op
,
375 case GIMPLE_OMP_PARALLEL
:
377 gomp_parallel
*omp_par_stmt
= as_a
<gomp_parallel
*> (stmt
);
378 ret
= walk_tree (gimple_omp_parallel_clauses_ptr (omp_par_stmt
),
379 callback_op
, wi
, pset
);
382 ret
= walk_tree (gimple_omp_parallel_child_fn_ptr (omp_par_stmt
),
383 callback_op
, wi
, pset
);
386 ret
= walk_tree (gimple_omp_parallel_data_arg_ptr (omp_par_stmt
),
387 callback_op
, wi
, pset
);
393 case GIMPLE_OMP_TASK
:
394 ret
= walk_tree (gimple_omp_task_clauses_ptr (stmt
), callback_op
,
398 ret
= walk_tree (gimple_omp_task_child_fn_ptr (stmt
), callback_op
,
402 ret
= walk_tree (gimple_omp_task_data_arg_ptr (stmt
), callback_op
,
406 ret
= walk_tree (gimple_omp_task_copy_fn_ptr (stmt
), callback_op
,
410 ret
= walk_tree (gimple_omp_task_arg_size_ptr (stmt
), callback_op
,
414 ret
= walk_tree (gimple_omp_task_arg_align_ptr (stmt
), callback_op
,
420 case GIMPLE_OMP_SECTIONS
:
421 ret
= walk_tree (gimple_omp_sections_clauses_ptr (stmt
), callback_op
,
425 ret
= walk_tree (gimple_omp_sections_control_ptr (stmt
), callback_op
,
432 case GIMPLE_OMP_SINGLE
:
433 ret
= walk_tree (gimple_omp_single_clauses_ptr (stmt
), callback_op
, wi
,
439 case GIMPLE_OMP_TARGET
:
441 gomp_target
*omp_stmt
= as_a
<gomp_target
*> (stmt
);
442 ret
= walk_tree (gimple_omp_target_clauses_ptr (omp_stmt
),
443 callback_op
, wi
, pset
);
446 ret
= walk_tree (gimple_omp_target_child_fn_ptr (omp_stmt
),
447 callback_op
, wi
, pset
);
450 ret
= walk_tree (gimple_omp_target_data_arg_ptr (omp_stmt
),
451 callback_op
, wi
, pset
);
457 case GIMPLE_OMP_TEAMS
:
458 ret
= walk_tree (gimple_omp_teams_clauses_ptr (stmt
), callback_op
, wi
,
464 case GIMPLE_OMP_ATOMIC_LOAD
:
466 gomp_atomic_load
*omp_stmt
= as_a
<gomp_atomic_load
*> (stmt
);
467 ret
= walk_tree (gimple_omp_atomic_load_lhs_ptr (omp_stmt
),
468 callback_op
, wi
, pset
);
471 ret
= walk_tree (gimple_omp_atomic_load_rhs_ptr (omp_stmt
),
472 callback_op
, wi
, pset
);
478 case GIMPLE_OMP_ATOMIC_STORE
:
480 gomp_atomic_store
*omp_stmt
= as_a
<gomp_atomic_store
*> (stmt
);
481 ret
= walk_tree (gimple_omp_atomic_store_val_ptr (omp_stmt
),
482 callback_op
, wi
, pset
);
489 ret
= walk_tree (gimple_assume_guard_ptr (stmt
), callback_op
, wi
, pset
);
494 case GIMPLE_TRANSACTION
:
496 gtransaction
*txn
= as_a
<gtransaction
*> (stmt
);
498 ret
= walk_tree (gimple_transaction_label_norm_ptr (txn
),
499 callback_op
, wi
, pset
);
502 ret
= walk_tree (gimple_transaction_label_uninst_ptr (txn
),
503 callback_op
, wi
, pset
);
506 ret
= walk_tree (gimple_transaction_label_over_ptr (txn
),
507 callback_op
, wi
, pset
);
513 case GIMPLE_OMP_RETURN
:
514 ret
= walk_tree (gimple_omp_return_lhs_ptr (stmt
), callback_op
, wi
,
520 /* Tuples that do not have operands. */
527 /* PHIs are not GSS_WITH_OPS so we need to handle them explicitely. */
529 gphi
*phi
= as_a
<gphi
*> (stmt
);
535 ret
= walk_tree (gimple_phi_result_ptr (phi
), callback_op
, wi
, pset
);
540 for (unsigned i
= 0; i
< gimple_phi_num_args (phi
); ++i
)
542 ret
= walk_tree (gimple_phi_arg_def_ptr (phi
, i
),
543 callback_op
, wi
, pset
);
552 enum gimple_statement_structure_enum gss
;
553 gss
= gimple_statement_structure (stmt
);
554 if (gss
== GSS_WITH_OPS
|| gss
== GSS_WITH_MEM_OPS
)
555 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
557 ret
= walk_tree (gimple_op_ptr (stmt
, i
), callback_op
, wi
, pset
);
569 /* Walk the current statement in GSI (optionally using traversal state
570 stored in WI). If WI is NULL, no state is kept during traversal.
571 The callback CALLBACK_STMT is called. If CALLBACK_STMT indicates
572 that it has handled all the operands of the statement, its return
573 value is returned. Otherwise, the return value from CALLBACK_STMT
574 is discarded and its operands are scanned.
576 If CALLBACK_STMT is NULL or it didn't handle the operands,
577 CALLBACK_OP is called on each operand of the statement via
578 walk_gimple_op. If walk_gimple_op returns non-NULL for any
579 operand, the remaining operands are not scanned. In this case, the
580 return value from CALLBACK_OP is returned.
582 In any other case, NULL_TREE is returned. */
585 walk_gimple_stmt (gimple_stmt_iterator
*gsi
, walk_stmt_fn callback_stmt
,
586 walk_tree_fn callback_op
, struct walk_stmt_info
*wi
)
590 gimple
*stmt
= gsi_stmt (*gsi
);
595 wi
->removed_stmt
= false;
597 if (wi
->want_locations
&& gimple_has_location (stmt
))
598 input_location
= gimple_location (stmt
);
603 /* Invoke the statement callback. Return if the callback handled
604 all of STMT operands by itself. */
607 bool handled_ops
= false;
608 tree_ret
= callback_stmt (gsi
, &handled_ops
, wi
);
612 /* If CALLBACK_STMT did not handle operands, it should not have
613 a value to return. */
614 gcc_assert (tree_ret
== NULL
);
616 if (wi
&& wi
->removed_stmt
)
619 /* Re-read stmt in case the callback changed it. */
620 stmt
= gsi_stmt (*gsi
);
623 /* If CALLBACK_OP is defined, invoke it on every operand of STMT. */
626 tree_ret
= walk_gimple_op (stmt
, callback_op
, wi
);
631 /* If STMT can have statements inside (e.g. GIMPLE_BIND), walk them. */
632 switch (gimple_code (stmt
))
635 ret
= walk_gimple_seq_mod (gimple_bind_body_ptr (as_a
<gbind
*> (stmt
)),
636 callback_stmt
, callback_op
, wi
);
638 return wi
->callback_result
;
642 ret
= walk_gimple_seq_mod (gimple_catch_handler_ptr (
643 as_a
<gcatch
*> (stmt
)),
644 callback_stmt
, callback_op
, wi
);
646 return wi
->callback_result
;
649 case GIMPLE_EH_FILTER
:
650 ret
= walk_gimple_seq_mod (gimple_eh_filter_failure_ptr (stmt
), callback_stmt
,
653 return wi
->callback_result
;
658 geh_else
*eh_else_stmt
= as_a
<geh_else
*> (stmt
);
659 ret
= walk_gimple_seq_mod (gimple_eh_else_n_body_ptr (eh_else_stmt
),
660 callback_stmt
, callback_op
, wi
);
662 return wi
->callback_result
;
663 ret
= walk_gimple_seq_mod (gimple_eh_else_e_body_ptr (eh_else_stmt
),
664 callback_stmt
, callback_op
, wi
);
666 return wi
->callback_result
;
671 ret
= walk_gimple_seq_mod (gimple_try_eval_ptr (stmt
), callback_stmt
, callback_op
,
674 return wi
->callback_result
;
676 ret
= walk_gimple_seq_mod (gimple_try_cleanup_ptr (stmt
), callback_stmt
,
679 return wi
->callback_result
;
683 ret
= walk_gimple_seq_mod (gimple_omp_for_pre_body_ptr (stmt
), callback_stmt
,
686 return wi
->callback_result
;
689 case GIMPLE_OMP_CRITICAL
:
690 case GIMPLE_OMP_MASTER
:
691 case GIMPLE_OMP_MASKED
:
692 case GIMPLE_OMP_TASKGROUP
:
693 case GIMPLE_OMP_ORDERED
:
694 case GIMPLE_OMP_SCAN
:
695 case GIMPLE_OMP_SECTION
:
696 case GIMPLE_OMP_STRUCTURED_BLOCK
:
697 case GIMPLE_OMP_PARALLEL
:
698 case GIMPLE_OMP_TASK
:
699 case GIMPLE_OMP_SCOPE
:
700 case GIMPLE_OMP_SECTIONS
:
701 case GIMPLE_OMP_SINGLE
:
702 case GIMPLE_OMP_TARGET
:
703 case GIMPLE_OMP_TEAMS
:
704 ret
= walk_gimple_seq_mod (gimple_omp_body_ptr (stmt
), callback_stmt
,
707 return wi
->callback_result
;
710 case GIMPLE_WITH_CLEANUP_EXPR
:
711 ret
= walk_gimple_seq_mod (gimple_wce_cleanup_ptr (stmt
), callback_stmt
,
714 return wi
->callback_result
;
718 ret
= walk_gimple_seq_mod (gimple_assume_body_ptr (stmt
),
719 callback_stmt
, callback_op
, wi
);
721 return wi
->callback_result
;
724 case GIMPLE_TRANSACTION
:
725 ret
= walk_gimple_seq_mod (gimple_transaction_body_ptr (
726 as_a
<gtransaction
*> (stmt
)),
727 callback_stmt
, callback_op
, wi
);
729 return wi
->callback_result
;
733 gcc_assert (!gimple_has_substatements (stmt
));
740 /* From a tree operand OP return the base of a load or store operation
741 or NULL_TREE if OP is not a load or a store. */
744 get_base_loadstore (tree op
)
746 while (handled_component_p (op
))
747 op
= TREE_OPERAND (op
, 0);
749 || INDIRECT_REF_P (op
)
750 || TREE_CODE (op
) == MEM_REF
751 || TREE_CODE (op
) == TARGET_MEM_REF
)
757 /* For the statement STMT call the callbacks VISIT_LOAD, VISIT_STORE and
758 VISIT_ADDR if non-NULL on loads, store and address-taken operands
759 passing the STMT, the base of the operand, the operand itself containing
760 the base and DATA to it. The base will be either a decl, an indirect
761 reference (including TARGET_MEM_REF) or the argument of an address
763 Returns the results of these callbacks or'ed. */
766 walk_stmt_load_store_addr_ops (gimple
*stmt
, void *data
,
767 walk_stmt_load_store_addr_fn visit_load
,
768 walk_stmt_load_store_addr_fn visit_store
,
769 walk_stmt_load_store_addr_fn visit_addr
)
773 if (gimple_assign_single_p (stmt
))
778 arg
= gimple_assign_lhs (stmt
);
779 lhs
= get_base_loadstore (arg
);
781 ret
|= visit_store (stmt
, lhs
, arg
, data
);
783 arg
= gimple_assign_rhs1 (stmt
);
785 while (handled_component_p (rhs
))
786 rhs
= TREE_OPERAND (rhs
, 0);
789 if (TREE_CODE (rhs
) == ADDR_EXPR
)
790 ret
|= visit_addr (stmt
, TREE_OPERAND (rhs
, 0), arg
, data
);
791 else if (TREE_CODE (rhs
) == OBJ_TYPE_REF
792 && TREE_CODE (OBJ_TYPE_REF_OBJECT (rhs
)) == ADDR_EXPR
)
793 ret
|= visit_addr (stmt
, TREE_OPERAND (OBJ_TYPE_REF_OBJECT (rhs
),
795 else if (TREE_CODE (rhs
) == CONSTRUCTOR
)
800 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (rhs
), ix
, val
)
801 if (TREE_CODE (val
) == ADDR_EXPR
)
802 ret
|= visit_addr (stmt
, TREE_OPERAND (val
, 0), arg
, data
);
803 else if (TREE_CODE (val
) == OBJ_TYPE_REF
804 && TREE_CODE (OBJ_TYPE_REF_OBJECT (val
)) == ADDR_EXPR
)
805 ret
|= visit_addr (stmt
,
806 TREE_OPERAND (OBJ_TYPE_REF_OBJECT (val
),
812 rhs
= get_base_loadstore (rhs
);
814 ret
|= visit_load (stmt
, rhs
, arg
, data
);
818 && (is_gimple_assign (stmt
)
819 || gimple_code (stmt
) == GIMPLE_COND
))
821 for (i
= 0; i
< gimple_num_ops (stmt
); ++i
)
823 tree op
= gimple_op (stmt
, i
);
826 else if (TREE_CODE (op
) == ADDR_EXPR
)
827 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
828 /* COND_EXPR and VCOND_EXPR rhs1 argument is a comparison
829 tree with two operands. */
830 else if (i
== 1 && COMPARISON_CLASS_P (op
))
832 if (TREE_CODE (TREE_OPERAND (op
, 0)) == ADDR_EXPR
)
833 ret
|= visit_addr (stmt
, TREE_OPERAND (TREE_OPERAND (op
, 0),
835 if (TREE_CODE (TREE_OPERAND (op
, 1)) == ADDR_EXPR
)
836 ret
|= visit_addr (stmt
, TREE_OPERAND (TREE_OPERAND (op
, 1),
841 else if (gcall
*call_stmt
= dyn_cast
<gcall
*> (stmt
))
845 tree arg
= gimple_call_lhs (call_stmt
);
848 tree lhs
= get_base_loadstore (arg
);
850 ret
|= visit_store (stmt
, lhs
, arg
, data
);
853 if (visit_load
|| visit_addr
)
854 for (i
= 0; i
< gimple_call_num_args (call_stmt
); ++i
)
856 tree arg
= gimple_call_arg (call_stmt
, i
);
858 && TREE_CODE (arg
) == ADDR_EXPR
)
859 ret
|= visit_addr (stmt
, TREE_OPERAND (arg
, 0), arg
, data
);
862 tree rhs
= get_base_loadstore (arg
);
864 ret
|= visit_load (stmt
, rhs
, arg
, data
);
868 && gimple_call_chain (call_stmt
)
869 && TREE_CODE (gimple_call_chain (call_stmt
)) == ADDR_EXPR
)
870 ret
|= visit_addr (stmt
, TREE_OPERAND (gimple_call_chain (call_stmt
), 0),
871 gimple_call_chain (call_stmt
), data
);
873 && gimple_call_return_slot_opt_p (call_stmt
)
874 && gimple_call_lhs (call_stmt
) != NULL_TREE
875 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (call_stmt
))))
876 ret
|= visit_addr (stmt
, gimple_call_lhs (call_stmt
),
877 gimple_call_lhs (call_stmt
), data
);
879 else if (gasm
*asm_stmt
= dyn_cast
<gasm
*> (stmt
))
882 const char *constraint
;
883 const char **oconstraints
;
884 bool allows_mem
, allows_reg
, is_inout
;
885 noutputs
= gimple_asm_noutputs (asm_stmt
);
886 oconstraints
= XALLOCAVEC (const char *, noutputs
);
887 if (visit_store
|| visit_addr
)
888 for (i
= 0; i
< gimple_asm_noutputs (asm_stmt
); ++i
)
890 tree link
= gimple_asm_output_op (asm_stmt
, i
);
891 tree op
= get_base_loadstore (TREE_VALUE (link
));
892 if (op
&& visit_store
)
893 ret
|= visit_store (stmt
, op
, TREE_VALUE (link
), data
);
896 constraint
= TREE_STRING_POINTER
897 (TREE_VALUE (TREE_PURPOSE (link
)));
898 oconstraints
[i
] = constraint
;
899 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
,
900 &allows_reg
, &is_inout
);
901 if (op
&& !allows_reg
&& allows_mem
)
902 ret
|= visit_addr (stmt
, op
, TREE_VALUE (link
), data
);
905 if (visit_load
|| visit_addr
)
906 for (i
= 0; i
< gimple_asm_ninputs (asm_stmt
); ++i
)
908 tree link
= gimple_asm_input_op (asm_stmt
, i
);
909 tree op
= TREE_VALUE (link
);
911 && TREE_CODE (op
) == ADDR_EXPR
)
912 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
913 else if (visit_load
|| visit_addr
)
915 op
= get_base_loadstore (op
);
919 ret
|= visit_load (stmt
, op
, TREE_VALUE (link
), data
);
922 constraint
= TREE_STRING_POINTER
923 (TREE_VALUE (TREE_PURPOSE (link
)));
924 parse_input_constraint (&constraint
, 0, 0, noutputs
,
926 &allows_mem
, &allows_reg
);
927 if (!allows_reg
&& allows_mem
)
928 ret
|= visit_addr (stmt
, op
, TREE_VALUE (link
),
935 else if (greturn
*return_stmt
= dyn_cast
<greturn
*> (stmt
))
937 tree op
= gimple_return_retval (return_stmt
);
941 && TREE_CODE (op
) == ADDR_EXPR
)
942 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
945 tree base
= get_base_loadstore (op
);
947 ret
|= visit_load (stmt
, base
, op
, data
);
952 && gimple_code (stmt
) == GIMPLE_PHI
)
954 for (i
= 0; i
< gimple_phi_num_args (stmt
); ++i
)
956 tree op
= gimple_phi_arg_def (stmt
, i
);
957 if (TREE_CODE (op
) == ADDR_EXPR
)
958 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
962 && gimple_code (stmt
) == GIMPLE_GOTO
)
964 tree op
= gimple_goto_dest (stmt
);
965 if (TREE_CODE (op
) == ADDR_EXPR
)
966 ret
|= visit_addr (stmt
, TREE_OPERAND (op
, 0), op
, data
);
972 /* Like walk_stmt_load_store_addr_ops but with NULL visit_addr. IPA-CP
973 should make a faster clone for this case. */
976 walk_stmt_load_store_ops (gimple
*stmt
, void *data
,
977 walk_stmt_load_store_addr_fn visit_load
,
978 walk_stmt_load_store_addr_fn visit_store
)
980 return walk_stmt_load_store_addr_ops (stmt
, data
,
981 visit_load
, visit_store
, NULL
);