]> git.ipfire.org Git - thirdparty/gcc.git/commit
middle-end/114070 - VEC_COND_EXPR folding
authorRichard Biener <rguenther@suse.de>
Thu, 29 Feb 2024 08:22:19 +0000 (09:22 +0100)
committerRichard Biener <rguenther@suse.de>
Thu, 21 Mar 2024 11:48:59 +0000 (12:48 +0100)
commita3ff14ac4804be400a52dcf630f0de2d57cae835
treeddc9b0fccb03a1667eab42427684d12c7479b66d
parenta9a425df628ab80374cc6a132d39e470bc78c8bc
middle-end/114070 - VEC_COND_EXPR folding

The following amends the PR114070 fix to optimistically allow
the folding when we cannot expand the current vec_cond using
vcond_mask and we're still before vector lowering.  This leaves
a small window between vectorization and lowering where we could
break vec_conds that can be expanded via vcond{,u,eq}, most
susceptible is the loop unrolling pass which applies VN and thus
possibly folding to the unrolled body of a vectorized loop.

This gets back the folding for targets that cannot do vectorization.
It doesn't get back the folding for x86 with AVX512 for example
since that can handle the original IL but not the folded since
it misses some vcond_mask expanders.

PR middle-end/114070
* match.pd ((c ? a : b) op d  -->  c ? (a op d) : (b op d)):
Allow the folding if before lowering and the current IL
isn't supported with vcond_mask.

(cherry picked from commit f9c30ea737b806caac917d8f501305151a2cbd57)
gcc/match.pd