mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-13 16:03:58 +00:00
make gep matching in fastisel match the base of the gep as a
register if it isn't possible to match the indexes *and* the base. This fixes some fast isel rejects of load instructions on oggenc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97739 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c19ae9d91d
commit
225d4ca8ab
@ -425,10 +425,17 @@ bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM) {
|
||||
break;
|
||||
// Ok, the GEP indices were covered by constant-offset and scaled-index
|
||||
// addressing. Update the address state and move on to examining the base.
|
||||
X86AddressMode SavedAM = AM;
|
||||
AM.IndexReg = IndexReg;
|
||||
AM.Scale = Scale;
|
||||
AM.Disp = (uint32_t)Disp;
|
||||
return X86SelectAddress(U->getOperand(0), AM);
|
||||
if (X86SelectAddress(U->getOperand(0), AM))
|
||||
return true;
|
||||
|
||||
// If we couldn't merge the sub value into this addr mode, revert back to
|
||||
// our address and just match the value instead of completely failing.
|
||||
AM = SavedAM;
|
||||
break;
|
||||
unsupported_gep:
|
||||
// Ok, the GEP indices weren't all covered.
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user