123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143 |
- #ifndef GCC_TREE_VECTORIZER_H
- #define GCC_TREE_VECTORIZER_H
- #include "tree-data-ref.h"
- #include "target.h"
- #include "hash-table.h"
- enum vect_var_kind {
- vect_simple_var,
- vect_pointer_var,
- vect_scalar_var
- };
- enum operation_type {
- unary_op = 1,
- binary_op,
- ternary_op
- };
- enum dr_alignment_support {
- dr_unaligned_unsupported,
- dr_unaligned_supported,
- dr_explicit_realign,
- dr_explicit_realign_optimized,
- dr_aligned
- };
- enum vect_def_type {
- vect_uninitialized_def = 0,
- vect_constant_def = 1,
- vect_external_def,
- vect_internal_def,
- vect_induction_def,
- vect_reduction_def,
- vect_double_reduction_def,
- vect_nested_cycle,
- vect_unknown_def_type
- };
- #define VECTORIZABLE_CYCLE_DEF(D) (((D) == vect_reduction_def) \
- || ((D) == vect_double_reduction_def) \
- || ((D) == vect_nested_cycle))
- typedef struct _stmt_info_for_cost {
- int count;
- enum vect_cost_for_stmt kind;
- gimple stmt;
- int misalign;
- } stmt_info_for_cost;
- typedef vec<stmt_info_for_cost> stmt_vector_for_cost;
- static inline void
- add_stmt_info_to_vec (stmt_vector_for_cost *stmt_cost_vec, int count,
- enum vect_cost_for_stmt kind, gimple stmt, int misalign)
- {
- stmt_info_for_cost si;
- si.count = count;
- si.kind = kind;
- si.stmt = stmt;
- si.misalign = misalign;
- stmt_cost_vec->safe_push (si);
- }
- typedef struct _slp_tree *slp_tree;
- struct _slp_tree {
-
- vec<slp_tree> children;
-
- vec<gimple> stmts;
-
- vec<unsigned> load_permutation;
-
- vec<gimple> vec_stmts;
-
- unsigned int vec_stmts_size;
- };
- typedef struct _slp_instance {
-
- slp_tree root;
-
- unsigned int group_size;
-
- unsigned int unrolling_factor;
-
- stmt_vector_for_cost body_cost_vec;
-
- vec<slp_tree> loads;
-
- gimple first_load;
- } *slp_instance;
- #define SLP_INSTANCE_TREE(S) (S)->root
- #define SLP_INSTANCE_GROUP_SIZE(S) (S)->group_size
- #define SLP_INSTANCE_UNROLLING_FACTOR(S) (S)->unrolling_factor
- #define SLP_INSTANCE_BODY_COST_VEC(S) (S)->body_cost_vec
- #define SLP_INSTANCE_LOADS(S) (S)->loads
- #define SLP_INSTANCE_FIRST_LOAD_STMT(S) (S)->first_load
- #define SLP_TREE_CHILDREN(S) (S)->children
- #define SLP_TREE_SCALAR_STMTS(S) (S)->stmts
- #define SLP_TREE_VEC_STMTS(S) (S)->vec_stmts
- #define SLP_TREE_NUMBER_OF_VEC_STMTS(S) (S)->vec_stmts_size
- #define SLP_TREE_LOAD_PERMUTATION(S) (S)->load_permutation
- typedef struct _slp_oprnd_info
- {
-
- vec<gimple> def_stmts;
-
- enum vect_def_type first_dt;
- tree first_op_type;
- bool first_pattern;
- } *slp_oprnd_info;
- struct dr_with_seg_len
- {
- dr_with_seg_len (data_reference_p d, tree len)
- : dr (d),
- offset (size_binop (PLUS_EXPR, DR_OFFSET (d), DR_INIT (d))),
- seg_len (len) {}
- data_reference_p dr;
- tree offset;
- tree seg_len;
- };
- struct dr_with_seg_len_pair_t
- {
- dr_with_seg_len_pair_t (const dr_with_seg_len& d1,
- const dr_with_seg_len& d2)
- : first (d1), second (d2) {}
- dr_with_seg_len first;
- dr_with_seg_len second;
- };
- typedef struct _vect_peel_info
- {
- int npeel;
- struct data_reference *dr;
- unsigned int count;
- } *vect_peel_info;
- typedef struct _vect_peel_extended_info
- {
- struct _vect_peel_info peel_info;
- unsigned int inside_cost;
- unsigned int outside_cost;
- stmt_vector_for_cost body_cost_vec;
- } *vect_peel_extended_info;
- struct peel_info_hasher : typed_free_remove <_vect_peel_info>
- {
- typedef _vect_peel_info value_type;
- typedef _vect_peel_info compare_type;
- static inline hashval_t hash (const value_type *);
- static inline bool equal (const value_type *, const compare_type *);
- };
- inline hashval_t
- peel_info_hasher::hash (const value_type *peel_info)
- {
- return (hashval_t) peel_info->npeel;
- }
- inline bool
- peel_info_hasher::equal (const value_type *a, const compare_type *b)
- {
- return (a->npeel == b->npeel);
- }
- typedef struct _loop_vec_info {
-
- struct loop *loop;
-
- basic_block *bbs;
-
- tree num_itersm1;
-
- tree num_iters;
-
- tree num_iters_unchanged;
-
- int min_profitable_iters;
-
- unsigned int th;
-
- bool vectorizable;
-
- int vectorization_factor;
-
- struct data_reference *unaligned_dr;
-
- int peeling_for_alignment;
-
- int ptr_mask;
-
- vec<loop_p> loop_nest;
-
- vec<data_reference_p> datarefs;
-
- vec<ddr_p> ddrs;
-
- vec<ddr_p> may_alias_ddrs;
-
- vec<dr_with_seg_len_pair_t> comp_alias_ddrs;
-
- vec<gimple> may_misalign_stmts;
-
- vec<gimple> grouped_stores;
-
- vec<slp_instance> slp_instances;
-
- unsigned slp_unrolling_factor;
-
- vec<gimple> reductions;
-
- vec<gimple> reduction_chains;
-
- hash_table<peel_info_hasher> *peeling_htab;
-
- void *target_cost_data;
-
- bool peeling_for_gaps;
-
- bool peeling_for_niter;
-
- bool operands_swapped;
-
- bool no_data_dependencies;
-
- struct loop *scalar_loop;
- } *loop_vec_info;
- #define LOOP_VINFO_LOOP(L) (L)->loop
- #define LOOP_VINFO_BBS(L) (L)->bbs
- #define LOOP_VINFO_NITERSM1(L) (L)->num_itersm1
- #define LOOP_VINFO_NITERS(L) (L)->num_iters
- #define LOOP_VINFO_NITERS_UNCHANGED(L) (L)->num_iters_unchanged
- #define LOOP_VINFO_COST_MODEL_MIN_ITERS(L) (L)->min_profitable_iters
- #define LOOP_VINFO_COST_MODEL_THRESHOLD(L) (L)->th
- #define LOOP_VINFO_VECTORIZABLE_P(L) (L)->vectorizable
- #define LOOP_VINFO_VECT_FACTOR(L) (L)->vectorization_factor
- #define LOOP_VINFO_PTR_MASK(L) (L)->ptr_mask
- #define LOOP_VINFO_LOOP_NEST(L) (L)->loop_nest
- #define LOOP_VINFO_DATAREFS(L) (L)->datarefs
- #define LOOP_VINFO_DDRS(L) (L)->ddrs
- #define LOOP_VINFO_INT_NITERS(L) (TREE_INT_CST_LOW ((L)->num_iters))
- #define LOOP_VINFO_PEELING_FOR_ALIGNMENT(L) (L)->peeling_for_alignment
- #define LOOP_VINFO_UNALIGNED_DR(L) (L)->unaligned_dr
- #define LOOP_VINFO_MAY_MISALIGN_STMTS(L) (L)->may_misalign_stmts
- #define LOOP_VINFO_MAY_ALIAS_DDRS(L) (L)->may_alias_ddrs
- #define LOOP_VINFO_COMP_ALIAS_DDRS(L) (L)->comp_alias_ddrs
- #define LOOP_VINFO_GROUPED_STORES(L) (L)->grouped_stores
- #define LOOP_VINFO_SLP_INSTANCES(L) (L)->slp_instances
- #define LOOP_VINFO_SLP_UNROLLING_FACTOR(L) (L)->slp_unrolling_factor
- #define LOOP_VINFO_REDUCTIONS(L) (L)->reductions
- #define LOOP_VINFO_REDUCTION_CHAINS(L) (L)->reduction_chains
- #define LOOP_VINFO_PEELING_HTAB(L) (L)->peeling_htab
- #define LOOP_VINFO_TARGET_COST_DATA(L) (L)->target_cost_data
- #define LOOP_VINFO_PEELING_FOR_GAPS(L) (L)->peeling_for_gaps
- #define LOOP_VINFO_OPERANDS_SWAPPED(L) (L)->operands_swapped
- #define LOOP_VINFO_PEELING_FOR_NITER(L) (L)->peeling_for_niter
- #define LOOP_VINFO_NO_DATA_DEPENDENCIES(L) (L)->no_data_dependencies
- #define LOOP_VINFO_SCALAR_LOOP(L) (L)->scalar_loop
- #define LOOP_REQUIRES_VERSIONING_FOR_ALIGNMENT(L) \
- ((L)->may_misalign_stmts.length () > 0)
- #define LOOP_REQUIRES_VERSIONING_FOR_ALIAS(L) \
- ((L)->may_alias_ddrs.length () > 0)
- #define LOOP_VINFO_NITERS_KNOWN_P(L) \
- (tree_fits_shwi_p ((L)->num_iters) && tree_to_shwi ((L)->num_iters) > 0)
- static inline loop_vec_info
- loop_vec_info_for_loop (struct loop *loop)
- {
- return (loop_vec_info) loop->aux;
- }
- static inline bool
- nested_in_vect_loop_p (struct loop *loop, gimple stmt)
- {
- return (loop->inner
- && (loop->inner == (gimple_bb (stmt))->loop_father));
- }
- typedef struct _bb_vec_info {
- basic_block bb;
-
- vec<gimple> grouped_stores;
-
- vec<slp_instance> slp_instances;
-
- vec<data_reference_p> datarefs;
-
- vec<ddr_p> ddrs;
-
- void *target_cost_data;
- } *bb_vec_info;
- #define BB_VINFO_BB(B) (B)->bb
- #define BB_VINFO_GROUPED_STORES(B) (B)->grouped_stores
- #define BB_VINFO_SLP_INSTANCES(B) (B)->slp_instances
- #define BB_VINFO_DATAREFS(B) (B)->datarefs
- #define BB_VINFO_DDRS(B) (B)->ddrs
- #define BB_VINFO_TARGET_COST_DATA(B) (B)->target_cost_data
- static inline bb_vec_info
- vec_info_for_bb (basic_block bb)
- {
- return (bb_vec_info) bb->aux;
- }
- enum stmt_vec_info_type {
- undef_vec_info_type = 0,
- load_vec_info_type,
- store_vec_info_type,
- shift_vec_info_type,
- op_vec_info_type,
- call_vec_info_type,
- call_simd_clone_vec_info_type,
- assignment_vec_info_type,
- condition_vec_info_type,
- reduc_vec_info_type,
- induc_vec_info_type,
- type_promotion_vec_info_type,
- type_demotion_vec_info_type,
- type_conversion_vec_info_type,
- loop_exit_ctrl_vec_info_type
- };
- enum vect_relevant {
- vect_unused_in_scope = 0,
-
- vect_used_in_outer_by_reduction,
-
- vect_used_in_outer,
-
- vect_used_by_reduction,
- vect_used_in_scope
- };
- enum slp_vect_type {
- loop_vect = 0,
- pure_slp,
- hybrid
- };
- typedef struct data_reference *dr_p;
- typedef struct _stmt_vec_info {
- enum stmt_vec_info_type type;
-
- bool live;
-
- bool in_pattern_p;
-
- gimple stmt;
-
- loop_vec_info loop_vinfo;
-
- tree vectype;
-
- gimple vectorized_stmt;
-
-
- struct data_reference *data_ref_info;
-
- tree dr_base_address;
- tree dr_init;
- tree dr_offset;
- tree dr_step;
- tree dr_aligned_to;
-
- tree loop_phi_evolution_part;
-
- gimple related_stmt;
-
- gimple_seq pattern_def_seq;
-
- vec<dr_p> same_align_refs;
-
- vec<tree> simd_clone_info;
-
- enum vect_def_type def_type;
-
- enum slp_vect_type slp_type;
-
-
- gimple first_element;
-
- gimple next_element;
-
- gimple same_dr_stmt;
-
- unsigned int size;
-
- unsigned int store_count;
-
- unsigned int gap;
-
- unsigned int min_neg_dist;
-
- enum vect_relevant relevant;
-
- bb_vec_info bb_vinfo;
-
- bool vectorizable;
-
- bool gather_p;
- bool stride_load_p;
-
- bool simd_lane_access_p;
- } *stmt_vec_info;
- #define STMT_VINFO_TYPE(S) (S)->type
- #define STMT_VINFO_STMT(S) (S)->stmt
- #define STMT_VINFO_LOOP_VINFO(S) (S)->loop_vinfo
- #define STMT_VINFO_BB_VINFO(S) (S)->bb_vinfo
- #define STMT_VINFO_RELEVANT(S) (S)->relevant
- #define STMT_VINFO_LIVE_P(S) (S)->live
- #define STMT_VINFO_VECTYPE(S) (S)->vectype
- #define STMT_VINFO_VEC_STMT(S) (S)->vectorized_stmt
- #define STMT_VINFO_VECTORIZABLE(S) (S)->vectorizable
- #define STMT_VINFO_DATA_REF(S) (S)->data_ref_info
- #define STMT_VINFO_GATHER_P(S) (S)->gather_p
- #define STMT_VINFO_STRIDE_LOAD_P(S) (S)->stride_load_p
- #define STMT_VINFO_SIMD_LANE_ACCESS_P(S) (S)->simd_lane_access_p
- #define STMT_VINFO_DR_BASE_ADDRESS(S) (S)->dr_base_address
- #define STMT_VINFO_DR_INIT(S) (S)->dr_init
- #define STMT_VINFO_DR_OFFSET(S) (S)->dr_offset
- #define STMT_VINFO_DR_STEP(S) (S)->dr_step
- #define STMT_VINFO_DR_ALIGNED_TO(S) (S)->dr_aligned_to
- #define STMT_VINFO_IN_PATTERN_P(S) (S)->in_pattern_p
- #define STMT_VINFO_RELATED_STMT(S) (S)->related_stmt
- #define STMT_VINFO_PATTERN_DEF_SEQ(S) (S)->pattern_def_seq
- #define STMT_VINFO_SAME_ALIGN_REFS(S) (S)->same_align_refs
- #define STMT_VINFO_SIMD_CLONE_INFO(S) (S)->simd_clone_info
- #define STMT_VINFO_DEF_TYPE(S) (S)->def_type
- #define STMT_VINFO_GROUP_FIRST_ELEMENT(S) (S)->first_element
- #define STMT_VINFO_GROUP_NEXT_ELEMENT(S) (S)->next_element
- #define STMT_VINFO_GROUP_SIZE(S) (S)->size
- #define STMT_VINFO_GROUP_STORE_COUNT(S) (S)->store_count
- #define STMT_VINFO_GROUP_GAP(S) (S)->gap
- #define STMT_VINFO_GROUP_SAME_DR_STMT(S) (S)->same_dr_stmt
- #define STMT_VINFO_GROUPED_ACCESS(S) ((S)->first_element != NULL && (S)->data_ref_info)
- #define STMT_VINFO_LOOP_PHI_EVOLUTION_PART(S) (S)->loop_phi_evolution_part
- #define STMT_VINFO_MIN_NEG_DIST(S) (S)->min_neg_dist
- #define GROUP_FIRST_ELEMENT(S) (S)->first_element
- #define GROUP_NEXT_ELEMENT(S) (S)->next_element
- #define GROUP_SIZE(S) (S)->size
- #define GROUP_STORE_COUNT(S) (S)->store_count
- #define GROUP_GAP(S) (S)->gap
- #define GROUP_SAME_DR_STMT(S) (S)->same_dr_stmt
- #define STMT_VINFO_RELEVANT_P(S) ((S)->relevant != vect_unused_in_scope)
- #define HYBRID_SLP_STMT(S) ((S)->slp_type == hybrid)
- #define PURE_SLP_STMT(S) ((S)->slp_type == pure_slp)
- #define STMT_SLP_TYPE(S) (S)->slp_type
- struct dataref_aux {
- int misalignment;
-
- bool base_misaligned;
-
- bool base_element_aligned;
- tree base_decl;
- };
- #define DR_VECT_AUX(dr) ((dataref_aux *)(dr)->aux)
- #define VECT_MAX_COST 1000
- #define MAX_INTERM_CVT_STEPS 3
- #define MAX_VECTORIZATION_FACTOR 64
- typedef void *vec_void_p;
- extern vec<vec_void_p> stmt_vec_info_vec;
- void init_stmt_vec_info_vec (void);
- void free_stmt_vec_info_vec (void);
- static inline stmt_vec_info
- vinfo_for_stmt (gimple stmt)
- {
- unsigned int uid = gimple_uid (stmt);
- if (uid == 0)
- return NULL;
- return (stmt_vec_info) stmt_vec_info_vec[uid - 1];
- }
- static inline void
- set_vinfo_for_stmt (gimple stmt, stmt_vec_info info)
- {
- unsigned int uid = gimple_uid (stmt);
- if (uid == 0)
- {
- gcc_checking_assert (info);
- uid = stmt_vec_info_vec.length () + 1;
- gimple_set_uid (stmt, uid);
- stmt_vec_info_vec.safe_push ((vec_void_p) info);
- }
- else
- stmt_vec_info_vec[uid - 1] = (vec_void_p) info;
- }
- static inline gimple
- get_earlier_stmt (gimple stmt1, gimple stmt2)
- {
- unsigned int uid1, uid2;
- if (stmt1 == NULL)
- return stmt2;
- if (stmt2 == NULL)
- return stmt1;
- uid1 = gimple_uid (stmt1);
- uid2 = gimple_uid (stmt2);
- if (uid1 == 0 || uid2 == 0)
- return NULL;
- gcc_checking_assert (uid1 <= stmt_vec_info_vec.length ()
- && uid2 <= stmt_vec_info_vec.length ());
- if (uid1 < uid2)
- return stmt1;
- else
- return stmt2;
- }
- static inline gimple
- get_later_stmt (gimple stmt1, gimple stmt2)
- {
- unsigned int uid1, uid2;
- if (stmt1 == NULL)
- return stmt2;
- if (stmt2 == NULL)
- return stmt1;
- uid1 = gimple_uid (stmt1);
- uid2 = gimple_uid (stmt2);
- if (uid1 == 0 || uid2 == 0)
- return NULL;
- gcc_assert (uid1 <= stmt_vec_info_vec.length ());
- gcc_assert (uid2 <= stmt_vec_info_vec.length ());
- if (uid1 > uid2)
- return stmt1;
- else
- return stmt2;
- }
- static inline bool
- is_pattern_stmt_p (stmt_vec_info stmt_info)
- {
- gimple related_stmt;
- stmt_vec_info related_stmt_info;
- related_stmt = STMT_VINFO_RELATED_STMT (stmt_info);
- if (related_stmt
- && (related_stmt_info = vinfo_for_stmt (related_stmt))
- && STMT_VINFO_IN_PATTERN_P (related_stmt_info))
- return true;
- return false;
- }
- static inline bool
- is_loop_header_bb_p (basic_block bb)
- {
- if (bb == (bb->loop_father)->header)
- return true;
- gcc_checking_assert (EDGE_COUNT (bb->preds) == 1);
- return false;
- }
- static inline int
- vect_pow2 (int x)
- {
- int i, res = 1;
- for (i = 0; i < x; i++)
- res *= 2;
- return res;
- }
- static inline int
- builtin_vectorization_cost (enum vect_cost_for_stmt type_of_cost,
- tree vectype, int misalign)
- {
- return targetm.vectorize.builtin_vectorization_cost (type_of_cost,
- vectype, misalign);
- }
- static inline
- int vect_get_stmt_cost (enum vect_cost_for_stmt type_of_cost)
- {
- return builtin_vectorization_cost (type_of_cost, NULL, 0);
- }
- static inline void *
- init_cost (struct loop *loop_info)
- {
- return targetm.vectorize.init_cost (loop_info);
- }
- static inline unsigned
- add_stmt_cost (void *data, int count, enum vect_cost_for_stmt kind,
- stmt_vec_info stmt_info, int misalign,
- enum vect_cost_model_location where)
- {
- return targetm.vectorize.add_stmt_cost (data, count, kind,
- stmt_info, misalign, where);
- }
- static inline void
- finish_cost (void *data, unsigned *prologue_cost,
- unsigned *body_cost, unsigned *epilogue_cost)
- {
- targetm.vectorize.finish_cost (data, prologue_cost, body_cost, epilogue_cost);
- }
- static inline void
- destroy_cost_data (void *data)
- {
- targetm.vectorize.destroy_cost_data (data);
- }
- inline void
- set_dr_misalignment (struct data_reference *dr, int val)
- {
- dataref_aux *data_aux = DR_VECT_AUX (dr);
- if (!data_aux)
- {
- data_aux = XCNEW (dataref_aux);
- dr->aux = data_aux;
- }
- data_aux->misalignment = val;
- }
- inline int
- dr_misalignment (struct data_reference *dr)
- {
- return DR_VECT_AUX (dr)->misalignment;
- }
- #define DR_MISALIGNMENT(DR) dr_misalignment (DR)
- #define SET_DR_MISALIGNMENT(DR, VAL) set_dr_misalignment (DR, VAL)
- static inline bool
- aligned_access_p (struct data_reference *data_ref_info)
- {
- return (DR_MISALIGNMENT (data_ref_info) == 0);
- }
- static inline bool
- known_alignment_for_access_p (struct data_reference *data_ref_info)
- {
- return (DR_MISALIGNMENT (data_ref_info) != -1);
- }
- static inline bool
- unlimited_cost_model (loop_p loop)
- {
- if (loop != NULL && loop->force_vectorize
- && flag_simd_cost_model != VECT_COST_MODEL_DEFAULT)
- return flag_simd_cost_model == VECT_COST_MODEL_UNLIMITED;
- return (flag_vect_cost_model == VECT_COST_MODEL_UNLIMITED);
- }
- extern source_location vect_location;
- extern void slpeel_make_loop_iterate_ntimes (struct loop *, tree);
- extern bool slpeel_can_duplicate_loop_p (const struct loop *, const_edge);
- struct loop *slpeel_tree_duplicate_loop_to_edge_cfg (struct loop *,
- struct loop *, edge);
- extern void vect_loop_versioning (loop_vec_info, unsigned int, bool);
- extern void vect_do_peeling_for_loop_bound (loop_vec_info, tree, tree,
- unsigned int, bool);
- extern void vect_do_peeling_for_alignment (loop_vec_info, tree,
- unsigned int, bool);
- extern source_location find_loop_location (struct loop *);
- extern bool vect_can_advance_ivs_p (loop_vec_info);
- extern unsigned int current_vector_size;
- extern tree get_vectype_for_scalar_type (tree);
- extern tree get_same_sized_vectype (tree, tree);
- extern bool vect_is_simple_use (tree, gimple, loop_vec_info,
- bb_vec_info, gimple *,
- tree *, enum vect_def_type *);
- extern bool vect_is_simple_use_1 (tree, gimple, loop_vec_info,
- bb_vec_info, gimple *,
- tree *, enum vect_def_type *, tree *);
- extern bool supportable_widening_operation (enum tree_code, gimple, tree, tree,
- enum tree_code *, enum tree_code *,
- int *, vec<tree> *);
- extern bool supportable_narrowing_operation (enum tree_code, tree, tree,
- enum tree_code *,
- int *, vec<tree> *);
- extern stmt_vec_info new_stmt_vec_info (gimple stmt, loop_vec_info,
- bb_vec_info);
- extern void free_stmt_vec_info (gimple stmt);
- extern tree vectorizable_function (gcall *, tree, tree);
- extern void vect_model_simple_cost (stmt_vec_info, int, enum vect_def_type *,
- stmt_vector_for_cost *,
- stmt_vector_for_cost *);
- extern void vect_model_store_cost (stmt_vec_info, int, bool,
- enum vect_def_type, slp_tree,
- stmt_vector_for_cost *,
- stmt_vector_for_cost *);
- extern void vect_model_load_cost (stmt_vec_info, int, bool, slp_tree,
- stmt_vector_for_cost *,
- stmt_vector_for_cost *);
- extern unsigned record_stmt_cost (stmt_vector_for_cost *, int,
- enum vect_cost_for_stmt, stmt_vec_info,
- int, enum vect_cost_model_location);
- extern void vect_finish_stmt_generation (gimple, gimple,
- gimple_stmt_iterator *);
- extern bool vect_mark_stmts_to_be_vectorized (loop_vec_info);
- extern tree vect_get_vec_def_for_operand (tree, gimple, tree *);
- extern tree vect_init_vector (gimple, tree, tree,
- gimple_stmt_iterator *);
- extern tree vect_get_vec_def_for_stmt_copy (enum vect_def_type, tree);
- extern bool vect_transform_stmt (gimple, gimple_stmt_iterator *,
- bool *, slp_tree, slp_instance);
- extern void vect_remove_stores (gimple);
- extern bool vect_analyze_stmt (gimple, bool *, slp_tree);
- extern bool vectorizable_condition (gimple, gimple_stmt_iterator *, gimple *,
- tree, int, slp_tree);
- extern void vect_get_load_cost (struct data_reference *, int, bool,
- unsigned int *, unsigned int *,
- stmt_vector_for_cost *,
- stmt_vector_for_cost *, bool);
- extern void vect_get_store_cost (struct data_reference *, int,
- unsigned int *, stmt_vector_for_cost *);
- extern bool vect_supportable_shift (enum tree_code, tree);
- extern void vect_get_vec_defs (tree, tree, gimple, vec<tree> *,
- vec<tree> *, slp_tree, int);
- extern tree vect_gen_perm_mask_any (tree, const unsigned char *);
- extern tree vect_gen_perm_mask_checked (tree, const unsigned char *);
- extern bool vect_can_force_dr_alignment_p (const_tree, unsigned int);
- extern enum dr_alignment_support vect_supportable_dr_alignment
- (struct data_reference *, bool);
- extern tree vect_get_smallest_scalar_type (gimple, HOST_WIDE_INT *,
- HOST_WIDE_INT *);
- extern bool vect_analyze_data_ref_dependences (loop_vec_info, int *);
- extern bool vect_slp_analyze_data_ref_dependences (bb_vec_info);
- extern bool vect_enhance_data_refs_alignment (loop_vec_info);
- extern bool vect_analyze_data_refs_alignment (loop_vec_info, bb_vec_info);
- extern bool vect_verify_datarefs_alignment (loop_vec_info, bb_vec_info);
- extern bool vect_analyze_data_ref_accesses (loop_vec_info, bb_vec_info);
- extern bool vect_prune_runtime_alias_test_list (loop_vec_info);
- extern tree vect_check_gather (gimple, loop_vec_info, tree *, tree *,
- int *);
- extern bool vect_analyze_data_refs (loop_vec_info, bb_vec_info, int *,
- unsigned *);
- extern tree vect_create_data_ref_ptr (gimple, tree, struct loop *, tree,
- tree *, gimple_stmt_iterator *,
- gimple *, bool, bool *,
- tree = NULL_TREE);
- extern tree bump_vector_ptr (tree, gimple, gimple_stmt_iterator *, gimple, tree);
- extern tree vect_create_destination_var (tree, tree);
- extern bool vect_grouped_store_supported (tree, unsigned HOST_WIDE_INT);
- extern bool vect_store_lanes_supported (tree, unsigned HOST_WIDE_INT);
- extern bool vect_grouped_load_supported (tree, unsigned HOST_WIDE_INT);
- extern bool vect_load_lanes_supported (tree, unsigned HOST_WIDE_INT);
- extern void vect_permute_store_chain (vec<tree> ,unsigned int, gimple,
- gimple_stmt_iterator *, vec<tree> *);
- extern tree vect_setup_realignment (gimple, gimple_stmt_iterator *, tree *,
- enum dr_alignment_support, tree,
- struct loop **);
- extern void vect_transform_grouped_load (gimple, vec<tree> , int,
- gimple_stmt_iterator *);
- extern void vect_record_grouped_load_vectors (gimple, vec<tree> );
- extern tree vect_get_new_vect_var (tree, enum vect_var_kind, const char *);
- extern tree vect_create_addr_base_for_vector_ref (gimple, gimple_seq *,
- tree, struct loop *,
- tree = NULL_TREE);
- extern void destroy_loop_vec_info (loop_vec_info, bool);
- extern gimple vect_force_simple_reduction (loop_vec_info, gimple, bool, bool *);
- extern loop_vec_info vect_analyze_loop (struct loop *);
- extern void vect_transform_loop (loop_vec_info);
- extern loop_vec_info vect_analyze_loop_form (struct loop *);
- extern bool vectorizable_live_operation (gimple, gimple_stmt_iterator *,
- gimple *);
- extern bool vectorizable_reduction (gimple, gimple_stmt_iterator *, gimple *,
- slp_tree);
- extern bool vectorizable_induction (gimple, gimple_stmt_iterator *, gimple *);
- extern tree get_initial_def_for_reduction (gimple, tree, tree *);
- extern int vect_min_worthwhile_factor (enum tree_code);
- extern int vect_get_known_peeling_cost (loop_vec_info, int, int *,
- stmt_vector_for_cost *,
- stmt_vector_for_cost *,
- stmt_vector_for_cost *);
- extern int vect_get_single_scalar_iteration_cost (loop_vec_info,
- stmt_vector_for_cost *);
- extern void vect_free_slp_instance (slp_instance);
- extern bool vect_transform_slp_perm_load (slp_tree, vec<tree> ,
- gimple_stmt_iterator *, int,
- slp_instance, bool);
- extern bool vect_schedule_slp (loop_vec_info, bb_vec_info);
- extern void vect_update_slp_costs_according_to_vf (loop_vec_info);
- extern bool vect_analyze_slp (loop_vec_info, bb_vec_info, unsigned);
- extern bool vect_make_slp_decision (loop_vec_info);
- extern void vect_detect_hybrid_slp (loop_vec_info);
- extern void vect_get_slp_defs (vec<tree> , slp_tree,
- vec<vec<tree> > *, int);
- extern source_location find_bb_location (basic_block);
- extern bb_vec_info vect_slp_analyze_bb (basic_block);
- extern void vect_slp_transform_bb (basic_block);
- typedef gimple (* vect_recog_func_ptr) (vec<gimple> *, tree *, tree *);
- #define NUM_PATTERNS 12
- void vect_pattern_recog (loop_vec_info, bb_vec_info);
- unsigned vectorize_loops (void);
- void vect_destroy_datarefs (loop_vec_info, bb_vec_info);
- #endif
|