diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2018-07-31 14:25:30 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2018-07-31 14:25:30 +0000 |
commit | 32e8e429c685629fc4363138f564f41de47aa7a2 (patch) | |
tree | b7c03a32cfb597accb320bfb44bed8c476b1faaa /gcc/tree-vect-patterns.c | |
parent | 825702749aee7017548db2075cf225a6ed2e3ca8 (diff) | |
download | gcc-32e8e429c685629fc4363138f564f41de47aa7a2.zip gcc-32e8e429c685629fc4363138f564f41de47aa7a2.tar.gz gcc-32e8e429c685629fc4363138f564f41de47aa7a2.tar.bz2 |
[32/46] Use stmt_vec_info in function interfaces (part 2)
This second part handles the mechanical change from a gimple stmt
argument to a stmt_vec_info argument. It updates the function
comments if they referred to the argument by name, but it doesn't
try to retrofit mentions to other functions.
2018-07-31 Richard Sandiford <richard.sandiford@arm.com>
gcc/
* tree-vectorizer.h (nested_in_vect_loop_p): Move further down
file and take a stmt_vec_info instead of a gimple stmt.
(supportable_widening_operation, vect_finish_replace_stmt)
(vect_finish_stmt_generation, vect_get_store_rhs)
(vect_get_vec_def_for_operand_1, vect_get_vec_def_for_operand)
(vect_get_vec_defs, vect_init_vector, vect_transform_stmt)
(vect_remove_stores, vect_analyze_stmt, vectorizable_condition)
(vect_get_smallest_scalar_type, vect_check_gather_scatter)
(vect_create_data_ref_ptr, bump_vector_ptr)
(vect_permute_store_chain, vect_setup_realignment)
(vect_transform_grouped_load, vect_record_grouped_load_vectors)
(vect_create_addr_base_for_vector_ref, vectorizable_live_operation)
(vectorizable_reduction, vectorizable_induction)
(get_initial_def_for_reduction, is_simple_and_all_uses_invariant)
(vect_get_place_in_interleaving_chain): Take stmt_vec_infos rather
than gimple stmts as arguments.
* tree-vect-data-refs.c (vect_get_smallest_scalar_type)
(vect_preserves_scalar_order_p, vect_slp_analyze_node_dependences)
(can_group_stmts_p, vect_check_gather_scatter)
(vect_create_addr_base_for_vector_ref, vect_create_data_ref_ptr)
(bump_vector_ptr, vect_permute_store_chain, vect_setup_realignment)
(vect_permute_load_chain, vect_shift_permute_load_chain)
(vect_transform_grouped_load)
(vect_record_grouped_load_vectors): Likewise.
* tree-vect-loop.c (vect_fixup_reduc_chain)
(get_initial_def_for_reduction, vect_create_epilog_for_reduction)
(vectorize_fold_left_reduction, is_nonwrapping_integer_induction)
(vectorizable_reduction, vectorizable_induction)
(vectorizable_live_operation, vect_loop_kill_debug_uses): Likewise.
* tree-vect-patterns.c (type_conversion_p, adjust_bool_stmts)
(vect_get_load_store_mask): Likewise.
* tree-vect-slp.c (vect_get_place_in_interleaving_chain)
(vect_analyze_slp_instance, vect_mask_constant_operand_p): Likewise.
* tree-vect-stmts.c (vect_mark_relevant)
(is_simple_and_all_uses_invariant)
(exist_non_indexing_operands_for_use_p, process_use)
(vect_init_vector_1, vect_init_vector, vect_get_vec_def_for_operand_1)
(vect_get_vec_def_for_operand, vect_get_vec_defs)
(vect_finish_stmt_generation_1, vect_finish_replace_stmt)
(vect_finish_stmt_generation, vect_truncate_gather_scatter_offset)
(compare_step_with_zero, vect_get_store_rhs, get_group_load_store_type)
(get_negative_load_store_type, get_load_store_type)
(vect_check_load_store_mask, vect_check_store_rhs)
(vect_build_gather_load_calls, vect_get_strided_load_store_ops)
(vectorizable_bswap, vectorizable_call, vectorizable_simd_clone_call)
(vect_create_vectorized_demotion_stmts, vectorizable_conversion)
(vectorizable_assignment, vectorizable_shift, vectorizable_operation)
(get_group_alias_ptr_type, vectorizable_store, hoist_defs_of_uses)
(vectorizable_load, vectorizable_condition, vectorizable_comparison)
(vect_analyze_stmt, vect_transform_stmt, vect_remove_stores)
(supportable_widening_operation): Likewise.
From-SVN: r263147
Diffstat (limited to 'gcc/tree-vect-patterns.c')
-rw-r--r-- | gcc/tree-vect-patterns.c | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/gcc/tree-vect-patterns.c b/gcc/tree-vect-patterns.c index fa11c6e..72785c8 100644 --- a/gcc/tree-vect-patterns.c +++ b/gcc/tree-vect-patterns.c @@ -236,22 +236,20 @@ vect_get_internal_def (vec_info *vinfo, tree op) return NULL; } -/* Check whether NAME, an ssa-name used in USE_STMT, +/* Check whether NAME, an ssa-name used in STMT_VINFO, is a result of a type promotion, such that: DEF_STMT: NAME = NOP (name0) If CHECK_SIGN is TRUE, check that either both types are signed or both are unsigned. */ static bool -type_conversion_p (tree name, gimple *use_stmt, bool check_sign, +type_conversion_p (tree name, stmt_vec_info stmt_vinfo, bool check_sign, tree *orig_type, gimple **def_stmt, bool *promotion) { - stmt_vec_info stmt_vinfo; tree type = TREE_TYPE (name); tree oprnd0; enum vect_def_type dt; - stmt_vinfo = vinfo_for_stmt (use_stmt); stmt_vec_info def_stmt_info; if (!vect_is_simple_use (name, stmt_vinfo->vinfo, &dt, &def_stmt_info, def_stmt)) @@ -3498,15 +3496,13 @@ sort_after_uid (const void *p1, const void *p2) } /* Create pattern stmts for all stmts participating in the bool pattern - specified by BOOL_STMT_SET and its root STMT with the desired type + specified by BOOL_STMT_SET and its root STMT_INFO with the desired type OUT_TYPE. Return the def of the pattern root. */ static tree adjust_bool_stmts (hash_set <gimple *> &bool_stmt_set, - tree out_type, gimple *stmt) + tree out_type, stmt_vec_info stmt_info) { - stmt_vec_info stmt_info = vinfo_for_stmt (stmt); - /* Gather original stmts in the bool pattern in their order of appearance in the IL. */ auto_vec<gimple *> bool_stmts (bool_stmt_set.elements ()); @@ -4126,19 +4122,19 @@ vect_recog_mask_conversion_pattern (stmt_vec_info stmt_vinfo, tree *type_out) return pattern_stmt; } -/* STMT is a load or store. If the load or store is conditional, return +/* STMT_INFO is a load or store. If the load or store is conditional, return the boolean condition under which it occurs, otherwise return null. */ static tree -vect_get_load_store_mask (gimple *stmt) +vect_get_load_store_mask (stmt_vec_info stmt_info) { - if (gassign *def_assign = dyn_cast <gassign *> (stmt)) + if (gassign *def_assign = dyn_cast <gassign *> (stmt_info->stmt)) { gcc_assert (gimple_assign_single_p (def_assign)); return NULL_TREE; } - if (gcall *def_call = dyn_cast <gcall *> (stmt)) + if (gcall *def_call = dyn_cast <gcall *> (stmt_info->stmt)) { internal_fn ifn = gimple_call_internal_fn (def_call); int mask_index = internal_fn_mask_index (ifn); |