mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
AVX512: combining setcc and zext is wrong on AVX512
because vector compare instruction puts result in mask register. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -5082,9 +5082,12 @@ SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
|
||||
if (N0.getOpcode() == ISD::SETCC) {
|
||||
if (!LegalOperations && VT.isVector() &&
|
||||
N0.getValueType().getVectorElementType() == MVT::i1) {
|
||||
EVT N0VT = N0.getOperand(0).getValueType();
|
||||
if (getSetCCResultType(N0VT) == N0.getValueType())
|
||||
return SDValue();
|
||||
|
||||
// zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
|
||||
// Only do this before legalize for now.
|
||||
EVT N0VT = N0.getOperand(0).getValueType();
|
||||
EVT EltVT = VT.getVectorElementType();
|
||||
SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
|
||||
DAG.getConstant(1, EltVT));
|
||||
|
Reference in New Issue
Block a user