GCC Middle and Back End API Reference
vec_info Class Reference

#include <tree-vectorizer.h>

Inheritance diagram for vec_info:
Collaboration diagram for vec_info:

Public Types

enum  vec_kind { bb , loop }
 
typedef hash_set< int_hash< machine_mode, E_VOIDmode, E_BLKmode > > mode_set
 

Public Member Functions

 vec_info (vec_kind, vec_info_shared *)
 
 ~vec_info ()
 
stmt_vec_info add_stmt (gimple *)
 
stmt_vec_info add_pattern_stmt (gimple *, stmt_vec_info)
 
stmt_vec_info lookup_stmt (gimple *)
 
stmt_vec_info lookup_def (tree)
 
stmt_vec_info lookup_single_use (tree)
 
class dr_vec_infolookup_dr (data_reference *)
 
void move_dr (stmt_vec_info, stmt_vec_info)
 
void remove_stmt (stmt_vec_info)
 
void replace_stmt (gimple_stmt_iterator *, stmt_vec_info, gimple *)
 
void insert_on_entry (stmt_vec_info, gimple *)
 
void insert_seq_on_entry (stmt_vec_info, gimple_seq)
 

Data Fields

vec_kind kind
 
vec_info_sharedshared
 
vec< stmt_vec_infostmt_vec_infos
 
bool stmt_vec_info_ro
 
bool any_known_not_updated_vssa
 
auto_vec< slp_instanceslp_instances
 
vec_base_alignments base_alignments
 
auto_vec< stmt_vec_infogrouped_stores
 
mode_set used_vector_modes
 
machine_mode vector_mode
 

Private Member Functions

stmt_vec_info new_stmt_vec_info (gimple *stmt)
 
void set_vinfo_for_stmt (gimple *, stmt_vec_info, bool=true)
 
void free_stmt_vec_infos ()
 
void free_stmt_vec_info (stmt_vec_info)
 

Detailed Description

Vectorizer state common between loop and basic-block vectorization.   

Member Typedef Documentation

◆ mode_set

Member Enumeration Documentation

◆ vec_kind

Enumerator
bb 
loop 

Constructor & Destructor Documentation

◆ vec_info()

vec_info::vec_info ( vec_info::vec_kind kind_in,
vec_info_shared * shared_ )
Initialize the vec_info with kind KIND_IN and target cost data
TARGET_COST_DATA_IN.   

References stmt_vec_infos.

◆ ~vec_info()

vec_info::~vec_info ( )

Member Function Documentation

◆ add_pattern_stmt()

stmt_vec_info vec_info::add_pattern_stmt ( gimple * stmt,
stmt_vec_info stmt_info )
Record that STMT belongs to the vectorizable region.  Create a new
stmt_vec_info and mark VECINFO as being related and return the new
stmt_vec_info.   

References new_stmt_vec_info(), set_vinfo_for_stmt(), and STMT_VINFO_RELATED_STMT.

Referenced by addsub_pattern::build(), and complex_pattern::build().

◆ add_stmt()

◆ free_stmt_vec_info()

void vec_info::free_stmt_vec_info ( stmt_vec_info stmt_info)
private

◆ free_stmt_vec_infos()

void vec_info::free_stmt_vec_infos ( void )
private
Free the contents of stmt_vec_infos.   

References free_stmt_vec_info(), NULL, and stmt_vec_infos.

Referenced by ~vec_info().

◆ insert_on_entry()

void vec_info::insert_on_entry ( stmt_vec_info context,
gimple * new_stmt )
Like insert_seq_on_entry but just inserts the single stmt NEW_STMT.   

References ggc_alloc(), gsi_insert_before_without_update(), GSI_SAME_STMT, gsi_start(), insert_seq_on_entry(), and NULL.

Referenced by vect_init_vector_1().

◆ insert_seq_on_entry()

void vec_info::insert_seq_on_entry ( stmt_vec_info context,
gimple_seq seq )
Insert stmts in SEQ on the VEC_INFO region entry.  If CONTEXT is
not NULL it specifies whether to use the sub-region entry
determined by it, currently used for loop vectorization to insert
on the inner loop entry vs. the outer loop entry.   

References gcc_assert, ggc_alloc(), gsi_after_labels(), gsi_insert_seq_before(), gsi_insert_seq_on_edge_immediate(), GSI_SAME_STMT, loop::inner, loop_preheader_edge(), LOOP_VINFO_LOOP, and nested_in_vect_loop_p().

Referenced by insert_on_entry(), and vect_create_constant_vectors().

◆ lookup_def()

◆ lookup_dr()

◆ lookup_single_use()

stmt_vec_info vec_info::lookup_single_use ( tree lhs)
See whether there is a single non-debug statement that uses LHS and
whether that statement has an associated stmt_vec_info.  Return the
stmt_vec_info if so, otherwise return null.   

References ggc_alloc(), lookup_stmt(), NULL, and single_imm_use().

◆ lookup_stmt()

◆ move_dr()

void vec_info::move_dr ( stmt_vec_info new_stmt_info,
stmt_vec_info old_stmt_info )

◆ new_stmt_vec_info()

◆ remove_stmt()

void vec_info::remove_stmt ( stmt_vec_info stmt_info)
Permanently remove the statement described by STMT_INFO from the
function.   

References free_stmt_vec_info(), gcc_assert, gsi_for_stmt(), gsi_remove(), NULL, release_defs(), set_vinfo_for_stmt(), si, and unlink_stmt_vdef().

Referenced by vect_remove_stores(), vect_schedule_slp(), vect_set_loop_condition(), and vect_transform_loop().

◆ replace_stmt()

void vec_info::replace_stmt ( gimple_stmt_iterator * gsi,
stmt_vec_info stmt_info,
gimple * new_stmt )
Replace the statement at GSI by NEW_STMT, both the vectorization
information and the function itself.  STMT_INFO describes the statement
at GSI.   

References gcc_assert, ggc_alloc(), gimple_set_uid(), gimple_uid(), gsi_replace(), and gsi_stmt().

Referenced by vect_remove_slp_scalar_calls(), vectorizable_call(), and vectorizable_simd_clone_call().

◆ set_vinfo_for_stmt()

void vec_info::set_vinfo_for_stmt ( gimple * stmt,
stmt_vec_info info,
bool check_ro = true )
private

Field Documentation

◆ any_known_not_updated_vssa

bool vec_info::any_known_not_updated_vssa

◆ base_alignments

◆ grouped_stores

◆ kind

vec_kind vec_info::kind

Referenced by is_a_helper< T >::test().

◆ shared

◆ slp_instances

◆ stmt_vec_info_ro

bool vec_info::stmt_vec_info_ro

◆ stmt_vec_infos

vec<stmt_vec_info> vec_info::stmt_vec_infos

◆ used_vector_modes

mode_set vec_info::used_vector_modes

◆ vector_mode


The documentation for this class was generated from the following files: