forked from OSchip/llvm-project
[SelectionDAG] Remove the code that attempts to calculate the alignment for the second half of a split masked load/store.
The code divides the alignment by 2 if the original alignment is equal to the original VT size. But this wouldn't be correct if the alignment was larger than the VT size. The memory operand object already takes care of calling MinAlign on the base alignment and the memory pointer offset. So we don't need any special code at all. llvm-svn: 364151
This commit is contained in:
parent
cadd826d0a
commit
6ddc7912b0
|
@ -8437,11 +8437,6 @@ SDValue DAGCombiner::visitMSTORE(SDNode *N) {
|
|||
EVT MemoryVT = MST->getMemoryVT();
|
||||
unsigned Alignment = MST->getOriginalAlignment();
|
||||
|
||||
// if Alignment is equal to the vector size,
|
||||
// take the half of it for the second part
|
||||
unsigned SecondHalfAlignment =
|
||||
(Alignment == VT.getSizeInBits() / 8) ? Alignment / 2 : Alignment;
|
||||
|
||||
EVT LoMemVT, HiMemVT;
|
||||
std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT);
|
||||
|
||||
|
@ -8463,7 +8458,7 @@ SDValue DAGCombiner::visitMSTORE(SDNode *N) {
|
|||
|
||||
MMO = DAG.getMachineFunction().getMachineMemOperand(
|
||||
MST->getPointerInfo().getWithOffset(HiOffset),
|
||||
MachineMemOperand::MOStore, HiMemVT.getStoreSize(), SecondHalfAlignment,
|
||||
MachineMemOperand::MOStore, HiMemVT.getStoreSize(), Alignment,
|
||||
MST->getAAInfo(), MST->getRanges());
|
||||
|
||||
Hi = DAG.getMaskedStore(Chain, DL, DataHi, Ptr, MaskHi, HiMemVT, MMO,
|
||||
|
@ -8598,12 +8593,6 @@ SDValue DAGCombiner::visitMLOAD(SDNode *N) {
|
|||
EVT MemoryVT = MLD->getMemoryVT();
|
||||
unsigned Alignment = MLD->getOriginalAlignment();
|
||||
|
||||
// if Alignment is equal to the vector size,
|
||||
// take the half of it for the second part
|
||||
unsigned SecondHalfAlignment =
|
||||
(Alignment == MLD->getValueType(0).getSizeInBits()/8) ?
|
||||
Alignment/2 : Alignment;
|
||||
|
||||
EVT LoMemVT, HiMemVT;
|
||||
std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT);
|
||||
|
||||
|
@ -8621,7 +8610,7 @@ SDValue DAGCombiner::visitMLOAD(SDNode *N) {
|
|||
|
||||
MMO = DAG.getMachineFunction().getMachineMemOperand(
|
||||
MLD->getPointerInfo().getWithOffset(HiOffset),
|
||||
MachineMemOperand::MOLoad, HiMemVT.getStoreSize(), SecondHalfAlignment,
|
||||
MachineMemOperand::MOLoad, HiMemVT.getStoreSize(), Alignment,
|
||||
MLD->getAAInfo(), MLD->getRanges());
|
||||
|
||||
Hi = DAG.getMaskedLoad(HiVT, DL, Chain, Ptr, MaskHi, PassThruHi, HiMemVT,
|
||||
|
|
|
@ -1558,12 +1558,6 @@ void DAGTypeLegalizer::SplitVecRes_MLOAD(MaskedLoadSDNode *MLD,
|
|||
unsigned Alignment = MLD->getOriginalAlignment();
|
||||
ISD::LoadExtType ExtType = MLD->getExtensionType();
|
||||
|
||||
// if Alignment is equal to the vector size,
|
||||
// take the half of it for the second part
|
||||
unsigned SecondHalfAlignment =
|
||||
(Alignment == MLD->getValueType(0).getSizeInBits()/8) ?
|
||||
Alignment/2 : Alignment;
|
||||
|
||||
// Split Mask operand
|
||||
SDValue MaskLo, MaskHi;
|
||||
if (getTypeAction(Mask.getValueType()) == TargetLowering::TypeSplitVector)
|
||||
|
@ -1595,7 +1589,7 @@ void DAGTypeLegalizer::SplitVecRes_MLOAD(MaskedLoadSDNode *MLD,
|
|||
|
||||
MMO = DAG.getMachineFunction().getMachineMemOperand(
|
||||
MLD->getPointerInfo().getWithOffset(HiOffset), MachineMemOperand::MOLoad,
|
||||
HiMemVT.getStoreSize(), SecondHalfAlignment, MLD->getAAInfo(),
|
||||
HiMemVT.getStoreSize(), Alignment, MLD->getAAInfo(),
|
||||
MLD->getRanges());
|
||||
|
||||
Hi = DAG.getMaskedLoad(HiVT, dl, Ch, Ptr, MaskHi, PassThruHi, HiMemVT, MMO,
|
||||
|
@ -2353,12 +2347,6 @@ SDValue DAGTypeLegalizer::SplitVecOp_MSTORE(MaskedStoreSDNode *N,
|
|||
else
|
||||
std::tie(MaskLo, MaskHi) = DAG.SplitVector(Mask, DL);
|
||||
|
||||
// if Alignment is equal to the vector size,
|
||||
// take the half of it for the second part
|
||||
unsigned SecondHalfAlignment =
|
||||
(Alignment == Data->getValueType(0).getSizeInBits()/8) ?
|
||||
Alignment/2 : Alignment;
|
||||
|
||||
SDValue Lo, Hi;
|
||||
MachineMemOperand *MMO = DAG.getMachineFunction().
|
||||
getMachineMemOperand(N->getPointerInfo(),
|
||||
|
@ -2375,7 +2363,7 @@ SDValue DAGTypeLegalizer::SplitVecOp_MSTORE(MaskedStoreSDNode *N,
|
|||
|
||||
MMO = DAG.getMachineFunction().getMachineMemOperand(
|
||||
N->getPointerInfo().getWithOffset(HiOffset), MachineMemOperand::MOStore,
|
||||
HiMemVT.getStoreSize(), SecondHalfAlignment, N->getAAInfo(),
|
||||
HiMemVT.getStoreSize(), Alignment, N->getAAInfo(),
|
||||
N->getRanges());
|
||||
|
||||
Hi = DAG.getMaskedStore(Ch, DL, DataHi, Ptr, MaskHi, HiMemVT, MMO,
|
||||
|
|
Loading…
Reference in New Issue