diff options
| author | David Greene <greened@obbligato.org> | 2011-02-10 23:11:29 +0000 |
|---|---|---|
| committer | David Greene <greened@obbligato.org> | 2011-02-10 23:11:29 +0000 |
| commit | 79827a5a26332529baedbc669b0cc0d58e64a33f (patch) | |
| tree | f5ef9efbc70dba5bac98c34517122e3e716fd301 | |
| parent | 229ce2d5b1ea23f8835779832f977f958402dc1c (diff) | |
| download | bcm5719-llvm-79827a5a26332529baedbc669b0cc0d58e64a33f.tar.gz bcm5719-llvm-79827a5a26332529baedbc669b0cc0d58e64a33f.zip | |
[AVX] Implement 256-bit vector lowering for SCALAR_TO_VECTOR. This
largely completes support for 128-bit fallback lowering for code that
is not 256-bit ready.
llvm-svn: 125315
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index fff006e3b8e..596f010ec12 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -6116,7 +6116,25 @@ X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const { SDValue X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const { + LLVMContext *Context = DAG.getContext(); DebugLoc dl = Op.getDebugLoc(); + EVT OpVT = Op.getValueType(); + + // If this is a 256-bit vector result, first insert into a 128-bit + // vector and then insert into the 256-bit vector. + if (OpVT.getSizeInBits() > 128) { + // Insert into a 128-bit vector. + EVT VT128 = EVT::getVectorVT(*Context, + OpVT.getVectorElementType(), + OpVT.getVectorNumElements() / 2); + + Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0)); + + // Insert the 128-bit vector. + return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op, + DAG.getConstant(0, MVT::i32), + DAG, dl); + } if (Op.getValueType() == MVT::v1i64 && Op.getOperand(0).getValueType() == MVT::i64) |

