* config/i386/x86-tune.def (X86_TUNE_VECTORIZE_DOUBLE): Remove.
* config/i386/i386.h (TARGET_VECTORIZE_DOUBLE): Remove.
* config/i386/i386.c (ix86_add_stmt_cost): Use TARGET_BONNEL instead
of !TARGET_VECTORIZE_DOUBLE when penalizing DFmode vector ops.
From-SVN: r240748
+2016-10-04 Uros Bizjak <ubizjak@gmail.com>
+
+ * config/i386/x86-tune.def (X86_TUNE_VECTORIZE_DOUBLE): Remove.
+ * config/i386/i386.h (TARGET_VECTORIZE_DOUBLE): Remove.
+ * config/i386/i386.c (ix86_add_stmt_cost): Use TARGET_BONNEL instead
+ of !TARGET_VECTORIZE_DOUBLE when penalizing DFmode vector ops.
+
2016-10-04 Richard Biener <rguenther@suse.de>
PR tree-optimization/77399
tree vectype = stmt_info ? stmt_vectype (stmt_info) : NULL_TREE;
int stmt_cost = ix86_builtin_vectorization_cost (kind, vectype, misalign);
- /* Penalize DFmode vector operations for !TARGET_VECTORIZE_DOUBLE. */
- if (kind == vector_stmt && !TARGET_VECTORIZE_DOUBLE
+ /* Penalize DFmode vector operations for Bonnell. */
+ if (TARGET_BONNELL && kind == vector_stmt
&& vectype && GET_MODE_INNER (TYPE_MODE (vectype)) == DFmode)
stmt_cost *= 5; /* FIXME: The value here is arbitrary. */
#define TARGET_OPT_AGU ix86_tune_features[X86_TUNE_OPT_AGU]
#define TARGET_AVOID_LEA_FOR_ADDR \
ix86_tune_features[X86_TUNE_AVOID_LEA_FOR_ADDR]
-#define TARGET_VECTORIZE_DOUBLE \
- ix86_tune_features[X86_TUNE_VECTORIZE_DOUBLE]
#define TARGET_SOFTWARE_PREFETCHING_BENEFICIAL \
ix86_tune_features[X86_TUNE_SOFTWARE_PREFETCHING_BENEFICIAL]
#define TARGET_AVX128_OPTIMAL \
/* SSE instruction selection tuning */
/*****************************************************************************/
-/* X86_TUNE_VECTORIZE_DOUBLE: Enable double precision vector
- instructions. */
-DEF_TUNE (X86_TUNE_VECTORIZE_DOUBLE, "vectorize_double", ~m_BONNELL)
-
/* X86_TUNE_GENERAL_REGS_SSE_SPILL: Try to spill general regs to SSE
regs instead of memory. */
DEF_TUNE (X86_TUNE_GENERAL_REGS_SSE_SPILL, "general_regs_sse_spill",