mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-12 14:20:33 +00:00
Fix cases where we generated horrible code like this:
mov %EDI, 12 add %EDI, %ECX mov %ECX, 12 add %ECX, %EDX mov %EDX, 12 add %EDX, %ESI instead (really!) generate this: add %ECX, 12 add %EDX, 12 add %ESI, 12 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15090 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7848e68c16
commit
3dbb504081
@ -2967,8 +2967,9 @@ void ISel::visitLoadInst(LoadInst &I) {
|
||||
// Okay, we found a user. If the load is the first operand and there is
|
||||
// no second operand load, reverse the operand ordering. Note that this
|
||||
// can fail for a subtract (ie, no change will be made).
|
||||
bool Swapped = false;
|
||||
if (!isa<LoadInst>(User->getOperand(1)))
|
||||
cast<BinaryOperator>(User)->swapOperands();
|
||||
Swapped = !cast<BinaryOperator>(User)->swapOperands();
|
||||
|
||||
// Okay, now that everything is set up, if this load is used by the second
|
||||
// operand, and if there are no instructions that invalidate the load
|
||||
@ -2985,6 +2986,11 @@ void ISel::visitLoadInst(LoadInst &I) {
|
||||
User->getOpcode() == Instruction::Div) &&
|
||||
isSafeToFoldLoadIntoInstruction(I, *User))
|
||||
return; // Eliminate the load!
|
||||
|
||||
// If we swapped the operands to the instruction, but couldn't fold the
|
||||
// load anyway, swap them back. We don't want to break add X, int
|
||||
// folding.
|
||||
if (Swapped) cast<BinaryOperator>(User)->swapOperands();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2967,8 +2967,9 @@ void ISel::visitLoadInst(LoadInst &I) {
|
||||
// Okay, we found a user. If the load is the first operand and there is
|
||||
// no second operand load, reverse the operand ordering. Note that this
|
||||
// can fail for a subtract (ie, no change will be made).
|
||||
bool Swapped = false;
|
||||
if (!isa<LoadInst>(User->getOperand(1)))
|
||||
cast<BinaryOperator>(User)->swapOperands();
|
||||
Swapped = !cast<BinaryOperator>(User)->swapOperands();
|
||||
|
||||
// Okay, now that everything is set up, if this load is used by the second
|
||||
// operand, and if there are no instructions that invalidate the load
|
||||
@ -2985,6 +2986,11 @@ void ISel::visitLoadInst(LoadInst &I) {
|
||||
User->getOpcode() == Instruction::Div) &&
|
||||
isSafeToFoldLoadIntoInstruction(I, *User))
|
||||
return; // Eliminate the load!
|
||||
|
||||
// If we swapped the operands to the instruction, but couldn't fold the
|
||||
// load anyway, swap them back. We don't want to break add X, int
|
||||
// folding.
|
||||
if (Swapped) cast<BinaryOperator>(User)->swapOperands();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user