diff options
author | Dan Gohman <gohman@apple.com> | 2008-10-03 01:27:49 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-10-03 01:27:49 +0000 |
commit | 70b46c83b69cbdc95a93c0169f3ea27dff0eade9 (patch) | |
tree | 9d246ed04d3707f957cc1b43c7456987c7da0d02 | |
parent | fb2a2ca5e1f6ea5006248bf6f9fe2350459e9c53 (diff) | |
download | external_llvm-70b46c83b69cbdc95a93c0169f3ea27dff0eade9.zip external_llvm-70b46c83b69cbdc95a93c0169f3ea27dff0eade9.tar.gz external_llvm-70b46c83b69cbdc95a93c0169f3ea27dff0eade9.tar.bz2 |
Fix X86FastISel to handle dynamic allocas that have avoided
getting inserted into the ValueMap. This avoids infinite
recursion in some rare cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56989 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86FastISel.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp index 68d0d85..ed4168e 100644 --- a/lib/Target/X86/X86FastISel.cpp +++ b/lib/Target/X86/X86FastISel.cpp @@ -1365,6 +1365,16 @@ unsigned X86FastISel::TargetMaterializeConstant(Constant *C) { } unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) { + // Fail on dynamic allocas. At this point, getRegForValue has already + // checked its CSE maps, so if we're here trying to handle a dynamic + // alloca, we're not going to succeed. X86SelectAddress has a + // check for dynamic allocas, because it's called directly from + // various places, but TargetMaterializeAlloca also needs a check + // in order to avoid recursion between getRegForValue, + // X86SelectAddrss, and TargetMaterializeAlloca. + if (!StaticAllocaMap.count(C)) + return 0; + X86AddressMode AM; if (!X86SelectAddress(C, AM, false)) return 0; |