[DAGCombine] Prevent illegal ISD::SPLAT_VECTOR operations post legalisation.
authorPaul Walker <paul.walker@arm.com>
Thu, 24 Feb 2022 18:40:23 +0000 (18:40 +0000)
committerPaul Walker <paul.walker@arm.com>
Fri, 4 Mar 2022 11:54:03 +0000 (11:54 +0000)
commit42b4a6227e3e6ea6d3f62ee5a65c43e5d6e46ed3
tree4c6b65f36b8517098df02414f9c652f2059b4cba
parentfb42e557d8b4c8430a75391bbb5af309b5472685
[DAGCombine] Prevent illegal ISD::SPLAT_VECTOR operations post legalisation.

When triggered during operation legalisation the affected combine
generates a splat_vector that when custom lowered for SVE fixed
length code generation, results in the original precombine sequence
and thus we enter a legalisation/combine hang.

NOTE: The patch contains no tests because I observed this issue
only when combined with other work that might never become public.
The current way AArch64 lowers ISD::SPLAT_VECTOR meant a specific
test was not possible so I'm hoping the DAGCombiner fix can be seen
as obvious. The AArch64ISelLowering change is requirted to maintain
existing code quality.

Differential Revision: https://reviews.llvm.org/D120735
llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp