Fix a regression from r147481. This combine should only happen if there is a

single use.
rdar://11360370


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156316 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chad Rosier 2012-05-07 18:47:44 +00:00
parent d58518a8b6
commit 42726835e3
2 changed files with 14 additions and 11 deletions

View File

@ -13050,16 +13050,18 @@ static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
// If V1 is coming from a vector load then just fold to a VZEXT_LOAD. // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) { if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other); if (Ld->hasNUsesOfValue(1, 0)) {
SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() }; SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
SDValue ResNode = SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2, SDValue ResNode =
Ld->getMemoryVT(), DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2,
Ld->getPointerInfo(), Ld->getMemoryVT(),
Ld->getAlignment(), Ld->getPointerInfo(),
false/*isVolatile*/, true/*ReadMem*/, Ld->getAlignment(),
false/*WriteMem*/); false/*isVolatile*/, true/*ReadMem*/,
return DAG.getNode(ISD::BITCAST, dl, VT, ResNode); false/*WriteMem*/);
return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
}
} }
// Emit a zeroed vector and insert the desired subvector on its // Emit a zeroed vector and insert the desired subvector on its

View File

@ -5,7 +5,8 @@
; It's hard to test for the ISEL condition because CodeGen optimizes ; It's hard to test for the ISEL condition because CodeGen optimizes
; away the bugpointed code. Just ensure the basics are still there. ; away the bugpointed code. Just ensure the basics are still there.
;CHECK: func: ;CHECK: func:
;CHECK: vmovups ;CHECK: vpxor
;CHECK: vinsertf128
;CHECK: vpshufd ;CHECK: vpshufd
;CHECK: vpshufd ;CHECK: vpshufd
;CHECK: vmulps ;CHECK: vmulps