mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
Do not fold loads into instructions if it is used more than once. In particular
we do not want to fold the load in cases like this: X = load = add A, X = add B, X git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14204 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5253f05709
commit
ccd9796a46
@ -1964,11 +1964,12 @@ void ISel::visitSimpleBinary(BinaryOperator &B, unsigned OperatorClass) {
|
|||||||
|
|
||||||
// Special case: op Reg, load [mem]
|
// Special case: op Reg, load [mem]
|
||||||
if (isa<LoadInst>(Op0) && !isa<LoadInst>(Op1) && Class != cLong &&
|
if (isa<LoadInst>(Op0) && !isa<LoadInst>(Op1) && Class != cLong &&
|
||||||
|
Op0->hasOneUse() &&
|
||||||
isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op0), B))
|
isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op0), B))
|
||||||
if (!B.swapOperands())
|
if (!B.swapOperands())
|
||||||
std::swap(Op0, Op1); // Make sure any loads are in the RHS.
|
std::swap(Op0, Op1); // Make sure any loads are in the RHS.
|
||||||
|
|
||||||
if (isa<LoadInst>(Op1) && Class != cLong &&
|
if (isa<LoadInst>(Op1) && Class != cLong && Op1->hasOneUse() &&
|
||||||
isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op1), B)) {
|
isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op1), B)) {
|
||||||
|
|
||||||
unsigned Opcode;
|
unsigned Opcode;
|
||||||
|
@ -1964,11 +1964,12 @@ void ISel::visitSimpleBinary(BinaryOperator &B, unsigned OperatorClass) {
|
|||||||
|
|
||||||
// Special case: op Reg, load [mem]
|
// Special case: op Reg, load [mem]
|
||||||
if (isa<LoadInst>(Op0) && !isa<LoadInst>(Op1) && Class != cLong &&
|
if (isa<LoadInst>(Op0) && !isa<LoadInst>(Op1) && Class != cLong &&
|
||||||
|
Op0->hasOneUse() &&
|
||||||
isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op0), B))
|
isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op0), B))
|
||||||
if (!B.swapOperands())
|
if (!B.swapOperands())
|
||||||
std::swap(Op0, Op1); // Make sure any loads are in the RHS.
|
std::swap(Op0, Op1); // Make sure any loads are in the RHS.
|
||||||
|
|
||||||
if (isa<LoadInst>(Op1) && Class != cLong &&
|
if (isa<LoadInst>(Op1) && Class != cLong && Op1->hasOneUse() &&
|
||||||
isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op1), B)) {
|
isSafeToFoldLoadIntoInstruction(*cast<LoadInst>(Op1), B)) {
|
||||||
|
|
||||||
unsigned Opcode;
|
unsigned Opcode;
|
||||||
|
Loading…
Reference in New Issue
Block a user