Home | History | Annotate | Download | only in gcc

Lines Matching refs:initial_def

5253          for induc_val, use initial_def.  */
5743 the same as initial_def already. */
5746 tree initial_def = reduc_info->reduc_initial_values[0];
5750 initial_def, new_temp);
6035 the same as initial_def already. */
6038 tree initial_def = reduc_info->reduc_initial_values[0];
6042 initial_def, new_temp);
7726 tree initial_def = vect_phi_initial_value (phi);
7727 reduc_info->reduc_initial_values.safe_push (initial_def);
7728 /* Optimize: if initial_def is for REDUC_MAX smaller than the base
7729 and we can't use zero for induc_val, use initial_def. Similarly
7730 for REDUC_MIN and initial_def larger than the base. */
7734 if (TREE_CODE (initial_def) == INTEGER_CST
7737 && tree_int_cst_lt (initial_def, induc_val))
7739 && tree_int_cst_lt (induc_val, initial_def))))
7741 induc_val = initial_def;
7742 /* Communicate we used the initial_def to epilouge
7753 ncopies, initial_def,
7761 initial_def, initial_def);
7768 initial_def = reduc_info->reduc_initial_values[0];
7771 = neutral_op_for_reduction (TREE_TYPE (initial_def),
7772 code, initial_def);
7778 && !operand_equal_p (neutral_op, initial_def))
7781 = initial_def;
7782 initial_def = neutral_op;
7786 initial_def, neutral_op);