aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorHongyu Wang <hongyu.wang@intel.com>2025-01-02 10:29:27 +0800
committerHongyu Wang <hongyu.wang@intel.com>2025-01-08 10:19:21 +0800
commit59096f014fedab9bd6787a286acf2afa7ab0fe9e (patch)
tree5b17ee4b157f5fa2ea30cdfb5a174683483dd566 /gcc
parent4743963b4202d85d2236a349c27924d13d5ba94f (diff)
downloadgcc-59096f014fedab9bd6787a286acf2afa7ab0fe9e.zip
gcc-59096f014fedab9bd6787a286acf2afa7ab0fe9e.tar.gz
gcc-59096f014fedab9bd6787a286acf2afa7ab0fe9e.tar.bz2
i386: Add br_mispredict_scale in cost table.
For later processors, the pipeline went deeper so the penalty for untaken branch can be larger than before. Add a new parameter br_mispredict_scale to describe the penalty, and adopt to noce_max_ifcvt_seq_cost hook to allow longer sequence to be converted with cmove. This improves cpu2017 544 with -Ofast -march=native for 14% on P-core SPR, and 8% on E-core SRF. No other regression observed. gcc/ChangeLog: * config/i386/i386.cc (ix86_noce_max_ifcvt_seq_cost): Adjust cost with ix86_tune_cost->br_mispredict_scale. * config/i386/i386.h (processor_costs): Add br_mispredict_scale. * config/i386/x86-tune-costs.h: Add new br_mispredict_scale to all processor_costs, in which icelake_cost/alderlake_cost with value COSTS_N_INSNS (2) + 3 and other processor with value COSTS_N_INSNS (2). gcc/testsuite/ChangeLog: * gcc.target/i386/cmov12.c: New test.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/i386/i386.cc8
-rw-r--r--gcc/config/i386/i386.h2
-rw-r--r--gcc/config/i386/x86-tune-costs.h33
-rw-r--r--gcc/testsuite/gcc.target/i386/cmov12.c21
4 files changed, 63 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.cc b/gcc/config/i386/i386.cc
index 655335e..11770aa 100644
--- a/gcc/config/i386/i386.cc
+++ b/gcc/config/i386/i386.cc
@@ -25088,7 +25088,13 @@ ix86_max_noce_ifcvt_seq_cost (edge e)
return param_max_rtl_if_conversion_unpredictable_cost;
}
- return BRANCH_COST (true, predictable_p) * COSTS_N_INSNS (2);
+ /* For modern machines with deeper pipeline, the penalty for branch
+ misprediction could be higher than before to reset the pipeline
+ slots. Add parameter br_mispredict_scale as a factor to describe
+ the impact of reseting the pipeline. */
+
+ return BRANCH_COST (true, predictable_p)
+ * ix86_tune_cost->br_mispredict_scale;
}
/* Return true if SEQ is a good candidate as a replacement for the
diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h
index 00626d5..e8e528c 100644
--- a/gcc/config/i386/i386.h
+++ b/gcc/config/i386/i386.h
@@ -232,6 +232,8 @@ struct processor_costs {
to be unrolled. */
const unsigned small_unroll_factor; /* Unroll factor for small loop to
be unrolled. */
+ const int br_mispredict_scale; /* Branch mispredict scale for ifcvt
+ threshold. */
};
extern const struct processor_costs *ix86_cost;
diff --git a/gcc/config/i386/x86-tune-costs.h b/gcc/config/i386/x86-tune-costs.h
index 56a09f1..a4a128c 100644
--- a/gcc/config/i386/x86-tune-costs.h
+++ b/gcc/config/i386/x86-tune-costs.h
@@ -137,6 +137,7 @@ struct processor_costs ix86_size_cost = {/* costs for tuning for size */
NULL, /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* Processor costs (relative to an add) */
@@ -248,6 +249,7 @@ struct processor_costs i386_cost = { /* 386 specific costs */
"4", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs i486_memcpy[2] = {
@@ -360,6 +362,7 @@ struct processor_costs i486_cost = { /* 486 specific costs */
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs pentium_memcpy[2] = {
@@ -470,6 +473,7 @@ struct processor_costs pentium_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static const
@@ -573,6 +577,7 @@ struct processor_costs lakemont_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* PentiumPro has optimized rep instructions for blocks aligned by 8 bytes
@@ -691,6 +696,7 @@ struct processor_costs pentiumpro_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs geode_memcpy[2] = {
@@ -800,6 +806,7 @@ struct processor_costs geode_cost = {
NULL, /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs k6_memcpy[2] = {
@@ -912,6 +919,7 @@ struct processor_costs k6_cost = {
"32", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* For some reason, Athlon deals better with REP prefix (relative to loops)
@@ -1025,6 +1033,7 @@ struct processor_costs athlon_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* K8 has optimized REP instruction for medium sized blocks, but for very
@@ -1147,6 +1156,7 @@ struct processor_costs k8_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* AMDFAM10 has optimized REP instruction for medium sized blocks, but for
@@ -1277,6 +1287,7 @@ struct processor_costs amdfam10_cost = {
"32", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* BDVER has optimized REP instruction for medium sized blocks, but for
@@ -1400,6 +1411,7 @@ const struct processor_costs bdver_cost = {
"11", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
@@ -1555,6 +1567,7 @@ struct processor_costs znver1_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* ZNVER2 has optimized REP instruction for medium sized blocks, but for
@@ -1714,6 +1727,7 @@ struct processor_costs znver2_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
struct processor_costs znver3_cost = {
@@ -1848,6 +1862,7 @@ struct processor_costs znver3_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* This table currently replicates znver3_cost table. */
@@ -1984,6 +1999,7 @@ struct processor_costs znver4_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* This table currently replicates znver4_cost table. */
@@ -2137,6 +2153,7 @@ struct processor_costs znver5_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* skylake_cost should produce code tuned for Skylake familly of CPUs. */
@@ -2263,6 +2280,7 @@ struct processor_costs skylake_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* icelake_cost should produce code tuned for Icelake family of CPUs.
@@ -2391,6 +2409,7 @@ struct processor_costs icelake_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2) + 3, /* Branch mispredict scale. */
};
/* alderlake_cost should produce code tuned for alderlake family of CPUs. */
@@ -2513,6 +2532,7 @@ struct processor_costs alderlake_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2) + 3, /* Branch mispredict scale. */
};
/* BTVER1 has optimized REP instruction for medium sized blocks, but for
@@ -2628,6 +2648,7 @@ const struct processor_costs btver1_cost = {
"11", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs btver2_memcpy[2] = {
@@ -2740,6 +2761,7 @@ const struct processor_costs btver2_cost = {
"11", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs pentium4_memcpy[2] = {
@@ -2851,6 +2873,7 @@ struct processor_costs pentium4_cost = {
NULL, /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs nocona_memcpy[2] = {
@@ -2965,6 +2988,7 @@ struct processor_costs nocona_cost = {
NULL, /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs atom_memcpy[2] = {
@@ -3077,6 +3101,7 @@ struct processor_costs atom_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs slm_memcpy[2] = {
@@ -3189,6 +3214,7 @@ struct processor_costs slm_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs tremont_memcpy[2] = {
@@ -3315,6 +3341,7 @@ struct processor_costs tremont_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
static stringop_algs intel_memcpy[2] = {
@@ -3427,6 +3454,7 @@ struct processor_costs intel_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* lujiazui_cost should produce code tuned for ZHAOXIN lujiazui CPU. */
@@ -3544,6 +3572,7 @@ struct processor_costs lujiazui_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* yongfeng_cost should produce code tuned for ZHAOXIN yongfeng CPU. */
@@ -3659,6 +3688,7 @@ struct processor_costs yongfeng_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* shijidadao_cost should produce code tuned for ZHAOXIN shijidadao CPU. */
@@ -3774,6 +3804,7 @@ struct processor_costs shijidadao_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
@@ -3897,6 +3928,7 @@ struct processor_costs generic_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
/* core_cost should produce code tuned for Core familly of CPUs. */
@@ -4025,5 +4057,6 @@ struct processor_costs core_cost = {
"16", /* Func alignment. */
4, /* Small unroll limit. */
2, /* Small unroll factor. */
+ COSTS_N_INSNS (2), /* Branch mispredict scale. */
};
diff --git a/gcc/testsuite/gcc.target/i386/cmov12.c b/gcc/testsuite/gcc.target/i386/cmov12.c
new file mode 100644
index 0000000..87de4f4
--- /dev/null
+++ b/gcc/testsuite/gcc.target/i386/cmov12.c
@@ -0,0 +1,21 @@
+/* { dg-do compile { target { ! ia32 } } } */
+/* { dg-options "-O2 -mavx2 -mtune=sapphirerapids" } */
+/* { dg-final { scan-assembler-times "cmovg" 3 } } */
+
+void foo(int *a, int n, int k)
+{
+ int j, v;
+
+ v = a[k - 1];
+ while (k <= n / 2) {
+ j = k + k;
+ if ((j < n) && (a[j - 1] < a[j]))
+ j++;
+ if (v >= a[j - 1])
+ break;
+ a[k - 1] = a[j - 1];
+ k = j;
+ }
+ a[k - 1] = v;
+}
+