diff options
| author | Craig Topper <craig.topper@intel.com> | 2019-08-23 06:08:33 +0000 | 
|---|---|---|
| committer | Craig Topper <craig.topper@intel.com> | 2019-08-23 06:08:33 +0000 | 
| commit | 4deb388bcaafd08a56a58b29cf3e039d3e3e1a7b (patch) | |
| tree | fac1723da78931fd327ec2b3fa80b601f43b2673 | |
| parent | bdceb9fb14595d10f7d94e1dd950cf2d94d2f2d3 (diff) | |
| download | bcm5719-llvm-4deb388bcaafd08a56a58b29cf3e039d3e3e1a7b.tar.gz bcm5719-llvm-4deb388bcaafd08a56a58b29cf3e039d3e3e1a7b.zip  | |
[X86] Make combineLoopSADPattern use CONCAT_VECTORS instead of INSERT_SUBVECTORS for widening with zeros.
CONCAT_VECTORS is more canonical for the early DAG combine runs
until we start getting into the op legalization phases.
llvm-svn: 369734
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index a29b6a8283c..7b47be5c3fd 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -43660,9 +43660,11 @@ static SDValue combineLoopSADPattern(SDNode *N, SelectionDAG &DAG,    if (VT.getSizeInBits() > ResVT.getSizeInBits()) {      // Fill the upper elements with zero to match the add width. -    SDValue Zero = DAG.getConstant(0, DL, VT); -    Sad = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, VT, Zero, Sad, -                      DAG.getIntPtrConstant(0, DL)); +    assert(VT.getSizeInBits() % ResVT.getSizeInBits() == 0 && "Unexpected VTs"); +    unsigned NumConcats = VT.getSizeInBits() / ResVT.getSizeInBits(); +    SmallVector<SDValue, 4> Ops(NumConcats, DAG.getConstant(0, DL, ResVT)); +    Ops[0] = Sad; +    Sad = DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Ops);    } else if (ExperimentalVectorWideningLegalization &&               VT.getSizeInBits() < ResVT.getSizeInBits()) {      Sad = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, Sad,  | 

