diff options
author | Eric Christopher <echristo@apple.com> | 2010-11-12 22:52:32 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-11-12 22:52:32 +0000 |
commit | c0394c0b8cee513a624566ce1db100bd66d4da57 (patch) | |
tree | c48f866a569caff65c1929fbb1f3e6593ac20ef4 /lib | |
parent | 875a6ac09a2a4ae2d83dfe262a81d6eb33c24022 (diff) | |
download | external_llvm-c0394c0b8cee513a624566ce1db100bd66d4da57.zip external_llvm-c0394c0b8cee513a624566ce1db100bd66d4da57.tar.gz external_llvm-c0394c0b8cee513a624566ce1db100bd66d4da57.tar.bz2 |
Make this happen for ARM like x86. Don't entirely bail out when
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMFastISel.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index 58f72f6..f0413a3 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp @@ -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; |