mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Always merge profitable shifts on A9, not just when they have a single use.
llvm-svn: 141248
This commit is contained in:
parent
cc5f846d58
commit
5fb7c6643e
@ -555,9 +555,7 @@ bool ARMDAGToDAGISel::SelectLdStSOReg(SDValue N, SDValue &Base, SDValue &Offset,
|
||||
if (ConstantSDNode *Sh =
|
||||
dyn_cast<ConstantSDNode>(N.getOperand(0).getOperand(1))) {
|
||||
ShAmt = Sh->getZExtValue();
|
||||
if (!Subtarget->isCortexA9() ||
|
||||
(N.hasOneUse() &&
|
||||
isShifterOpProfitable(N.getOperand(0), ShOpcVal, ShAmt))) {
|
||||
if (isShifterOpProfitable(N.getOperand(0), ShOpcVal, ShAmt)) {
|
||||
Offset = N.getOperand(0).getOperand(0);
|
||||
Base = N.getOperand(1);
|
||||
} else {
|
||||
@ -697,9 +695,7 @@ AddrMode2Type ARMDAGToDAGISel::SelectAddrMode2Worker(SDValue N,
|
||||
if (ConstantSDNode *Sh =
|
||||
dyn_cast<ConstantSDNode>(N.getOperand(0).getOperand(1))) {
|
||||
ShAmt = Sh->getZExtValue();
|
||||
if (!Subtarget->isCortexA9() ||
|
||||
(N.hasOneUse() &&
|
||||
isShifterOpProfitable(N.getOperand(0), ShOpcVal, ShAmt))) {
|
||||
if (isShifterOpProfitable(N.getOperand(0), ShOpcVal, ShAmt)) {
|
||||
Offset = N.getOperand(0).getOperand(0);
|
||||
Base = N.getOperand(1);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user