mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
LegalizeTypes support for scalarizing a vector store
and splitting extract_subvector. This fixes nine "make check" testcases, for example 2008-02-04-ExtractSubvector.ll and (partially) CodeGen/Generic/vector.ll. llvm-svn: 47384
This commit is contained in:
parent
149903436b
commit
86953f029f
@ -275,7 +275,8 @@ private:
|
|||||||
|
|
||||||
// Operand Vector Scalarization: <1 x ty> -> ty.
|
// Operand Vector Scalarization: <1 x ty> -> ty.
|
||||||
bool ScalarizeOperand(SDNode *N, unsigned OpNo);
|
bool ScalarizeOperand(SDNode *N, unsigned OpNo);
|
||||||
SDOperand ScalarizeOp_EXTRACT_VECTOR_ELT(SDNode *N, unsigned OpNo);
|
SDOperand ScalarizeOp_EXTRACT_VECTOR_ELT(SDNode *N);
|
||||||
|
SDOperand ScalarizeOp_STORE(StoreSDNode *N, unsigned OpNo);
|
||||||
|
|
||||||
//===--------------------------------------------------------------------===//
|
//===--------------------------------------------------------------------===//
|
||||||
// Vector Splitting Support: LegalizeTypesSplit.cpp
|
// Vector Splitting Support: LegalizeTypesSplit.cpp
|
||||||
@ -304,8 +305,9 @@ private:
|
|||||||
// Operand Vector Scalarization: <128 x ty> -> 2 x <64 x ty>.
|
// Operand Vector Scalarization: <128 x ty> -> 2 x <64 x ty>.
|
||||||
bool SplitOperand(SDNode *N, unsigned OpNo);
|
bool SplitOperand(SDNode *N, unsigned OpNo);
|
||||||
|
|
||||||
SDOperand SplitOp_STORE(StoreSDNode *N, unsigned OpNo);
|
SDOperand SplitOp_EXTRACT_SUBVECTOR(SDNode *N);
|
||||||
SDOperand SplitOp_RET(SDNode *N, unsigned OpNo);
|
SDOperand SplitOp_RET(SDNode *N, unsigned OpNo);
|
||||||
|
SDOperand SplitOp_STORE(StoreSDNode *N, unsigned OpNo);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namespace llvm.
|
} // end namespace llvm.
|
||||||
|
@ -166,8 +166,10 @@ bool DAGTypeLegalizer::ScalarizeOperand(SDNode *N, unsigned OpNo) {
|
|||||||
abort();
|
abort();
|
||||||
|
|
||||||
case ISD::EXTRACT_VECTOR_ELT:
|
case ISD::EXTRACT_VECTOR_ELT:
|
||||||
Res = ScalarizeOp_EXTRACT_VECTOR_ELT(N, OpNo);
|
Res = ScalarizeOp_EXTRACT_VECTOR_ELT(N); break;
|
||||||
break;
|
|
||||||
|
case ISD::STORE:
|
||||||
|
Res = ScalarizeOp_STORE(cast<StoreSDNode>(N), OpNo); break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -193,10 +195,17 @@ bool DAGTypeLegalizer::ScalarizeOperand(SDNode *N, unsigned OpNo) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// ScalarizeOp_EXTRACT_VECTOR_ELT - If the input is a vector that needs to be
|
/// ScalarizeOp_EXTRACT_VECTOR_ELT - If the input is a vector that needs to be
|
||||||
/// scalarized, it must be <1 x ty>, just return the operand, ignoring the
|
/// scalarized, it must be <1 x ty>, so just return the element, ignoring the
|
||||||
/// index.
|
/// index.
|
||||||
SDOperand DAGTypeLegalizer::ScalarizeOp_EXTRACT_VECTOR_ELT(SDNode *N,
|
SDOperand DAGTypeLegalizer::ScalarizeOp_EXTRACT_VECTOR_ELT(SDNode *N) {
|
||||||
unsigned OpNo) {
|
|
||||||
return GetScalarizedOp(N->getOperand(0));
|
return GetScalarizedOp(N->getOperand(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ScalarizeOp_STORE - If the value to store is a vector that needs to be
|
||||||
|
/// scalarized, it must be <1 x ty>. Just store the element.
|
||||||
|
SDOperand DAGTypeLegalizer::ScalarizeOp_STORE(StoreSDNode *N, unsigned OpNo) {
|
||||||
|
assert(OpNo == 1 && "Do not know how to scalarize this operand!");
|
||||||
|
return DAG.getStore(N->getChain(), GetScalarizedOp(N->getOperand(1)),
|
||||||
|
N->getBasePtr(), N->getSrcValue(), N->getSrcValueOffset(),
|
||||||
|
N->isVolatile(), N->getAlignment());
|
||||||
|
}
|
||||||
|
@ -339,6 +339,8 @@ bool DAGTypeLegalizer::SplitOperand(SDNode *N, unsigned OpNo) {
|
|||||||
abort();
|
abort();
|
||||||
case ISD::STORE: Res = SplitOp_STORE(cast<StoreSDNode>(N), OpNo); break;
|
case ISD::STORE: Res = SplitOp_STORE(cast<StoreSDNode>(N), OpNo); break;
|
||||||
case ISD::RET: Res = SplitOp_RET(N, OpNo); break;
|
case ISD::RET: Res = SplitOp_RET(N, OpNo); break;
|
||||||
|
|
||||||
|
case ISD::EXTRACT_SUBVECTOR: Res = SplitOp_EXTRACT_SUBVECTOR(N); break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -399,3 +401,24 @@ SDOperand DAGTypeLegalizer::SplitOp_RET(SDNode *N, unsigned OpNo) {
|
|||||||
|
|
||||||
return DAG.getNode(ISD::RET, MVT::Other, Chain, Lo, Sign, Hi, Sign);
|
return DAG.getNode(ISD::RET, MVT::Other, Chain, Lo, Sign, Hi, Sign);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SDOperand DAGTypeLegalizer::SplitOp_EXTRACT_SUBVECTOR(SDNode *N) {
|
||||||
|
// We know that the extracted result type is legal. For now, assume the index
|
||||||
|
// is a constant.
|
||||||
|
MVT::ValueType SubVT = N->getValueType(0);
|
||||||
|
SDOperand Idx = N->getOperand(1);
|
||||||
|
SDOperand Lo, Hi;
|
||||||
|
GetSplitOp(N->getOperand(0), Lo, Hi);
|
||||||
|
|
||||||
|
uint64_t LoElts = MVT::getVectorNumElements(Lo.getValueType());
|
||||||
|
uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getValue();
|
||||||
|
|
||||||
|
if (IdxVal < LoElts) {
|
||||||
|
assert(IdxVal + MVT::getVectorNumElements(SubVT) <= LoElts &&
|
||||||
|
"Extracted subvector crosses vector split!");
|
||||||
|
return DAG.getNode(ISD::EXTRACT_SUBVECTOR, SubVT, Lo, Idx);
|
||||||
|
} else {
|
||||||
|
return DAG.getNode(ISD::EXTRACT_SUBVECTOR, SubVT, Hi,
|
||||||
|
DAG.getConstant(IdxVal - LoElts, Idx.getValueType()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -2145,6 +2145,10 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
|
|||||||
return getConstant(C->getValue() >> Shift, VT);
|
return getConstant(C->getValue() >> Shift, VT);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case ISD::EXTRACT_SUBVECTOR:
|
||||||
|
if (N1.getValueType() == VT) // Trivial extraction.
|
||||||
|
return N1;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (N1C) {
|
if (N1C) {
|
||||||
|
Loading…
Reference in New Issue
Block a user