mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-26 14:15:53 +00:00
Remove some code for inferring alignment info from the x86 backend
now that the dag combiner does it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46404 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b8f43875c3
commit
ba96fbc164
@ -5499,16 +5499,7 @@ static bool isBaseAlignment16(SDNode *Base, MachineFrameInfo *MFI,
|
||||
int64_t Offset;
|
||||
if (isGAPlusOffset(Base, GV, Offset))
|
||||
return (GV->getAlignment() >= 16 && (Offset % 16) == 0);
|
||||
else {
|
||||
assert(Base->getOpcode() == ISD::FrameIndex && "Unexpected base node!");
|
||||
int BFI = cast<FrameIndexSDNode>(Base)->getIndex();
|
||||
if (BFI < 0)
|
||||
// Fixed objects do not specify alignment, however the offsets are known.
|
||||
return ((Subtarget->getStackAlignment() % 16) == 0 &&
|
||||
(MFI->getObjectOffset(BFI) % 16) == 0);
|
||||
else
|
||||
return MFI->getObjectAlignment(BFI) >= 16;
|
||||
}
|
||||
// DAG combine handles the stack object case.
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user