Skip to content

Commit 522031b

Browse files
committed
[lanai] Expand findClosestSuitableAluInstr check to consider offset register.
Previously findClosestSuitableAluInstr was only considering the base register when checking the current instruction for suitability. Expand check to consider the offset if the offset is a register. llvm-svn: 267424
1 parent 4e3bb7b commit 522031b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -347,9 +347,12 @@ MbbIterator LanaiMemAluCombiner::findClosestSuitableAluInstr(
347347
return First;
348348
}
349349

350-
// Usage of the base register of a form not suitable for merging
351-
if (First != Last && InstrUsesReg(First, Base)) {
352-
break;
350+
// Usage of the base or offset register is not a form suitable for merging.
351+
if (First != Last) {
352+
if (InstrUsesReg(First, Base))
353+
break;
354+
if (Offset->isReg() && InstrUsesReg(First, Offset))
355+
break;
353356
}
354357
}
355358

0 commit comments

Comments
 (0)