Make this happen for ARM like x86. Don't entirely bail out when
authorEric Christopher <echristo@apple.com>
Fri, 12 Nov 2010 22:52:32 +0000 (22:52 +0000)
committerEric Christopher <echristo@apple.com>
Fri, 12 Nov 2010 22:52:32 +0000 (22:52 +0000)
an address is in a different block, get it into a register and go
from there.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118936 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMFastISel.cpp

index 58f72f6c159b2cfbcd9f073d3953cb435a233d5e..f0413a38ec4778ca7eb4e3bedec13f3687f2f9c2 100644 (file)
@@ -590,10 +590,11 @@ bool ARMFastISel::ARMComputeRegOffset(const Value *Obj, unsigned &Base,
     // Don't walk into other basic blocks; it's possible we haven't
     // visited them yet, so the instructions may not yet be assigned
     // virtual registers.
-    if (FuncInfo.MBBMap[I->getParent()] != FuncInfo.MBB)
-      return false;
-    Opcode = I->getOpcode();
-    U = I;
+    if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
+        FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
+      Opcode = I->getOpcode();
+      U = I;
+    }
   } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
     Opcode = C->getOpcode();
     U = C;