mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
reenable this hack, the tblgen version isn't quite ready
llvm-svn: 26902
This commit is contained in:
parent
fb0e160aa5
commit
5c994b8c63
@ -927,6 +927,22 @@ void PPCDAGToDAGISel::Select(SDOperand &Result, SDOperand Op) {
|
||||
|
||||
switch (N->getOpcode()) {
|
||||
default: break;
|
||||
case ISD::VECTOR_SHUFFLE:
|
||||
// FIXME: This should be autogenerated from the .td file, it is here for now
|
||||
// due to bugs in tblgen.
|
||||
if (Op.getOperand(1).getOpcode() == ISD::UNDEF &&
|
||||
(Op.getValueType() == MVT::v4f32 || Op.getValueType() == MVT::v4i32) &&
|
||||
PPC::isSplatShuffleMask(Op.getOperand(2).Val)) {
|
||||
SDOperand N0;
|
||||
Select(N0, N->getOperand(0));
|
||||
Result = CodeGenMap[Op] =
|
||||
SDOperand(CurDAG->getTargetNode(PPC::VSPLTW, MVT::v4f32,
|
||||
getI32Imm(PPC::getVSPLTImmediate(Op.getOperand(2).Val)),
|
||||
N0), 0);
|
||||
return;
|
||||
}
|
||||
assert(0 && "ILLEGAL VECTOR_SHUFFLE!");
|
||||
|
||||
case ISD::SETCC:
|
||||
Result = SelectSETCC(Op);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user