Transforms: reapply SVN r219899
authorSaleem Abdulrasool <compnerd@compnerd.org>
Tue, 28 Oct 2014 18:27:37 +0000 (18:27 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Tue, 28 Oct 2014 18:27:37 +0000 (18:27 +0000)
commit586cf3d88de9cf75c6c6338a2d041afb7785f8cc
tree5590c9a5ba94dbaf3a635d6ae00f5234c48b9c3c
parente1610162fb298e43a9bb1c94cadc0579ff31160d
Transforms: reapply SVN r219899

This restores the commit from SVN r219899 with an additional change to ensure
that the CodeGen is correct for the case that was identified as being incorrect
(originally PR7272).

In the case that during inlining we need to synthesize a value on the stack
(i.e. for passing a value byval), then any function involving that alloca must
be stripped of its tailness as the restriction that it does not access the
parent's stack no longer holds.  Unfortunately, a single alloca can cause a
rippling effect through out the inlining as the value may be aliased or may be
mutated through an escaped external call.  As such, we simply track if an alloca
has been introduced in the frame during inlining, and strip any tail calls.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220811 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/Scalar/TailRecursionElimination.cpp
lib/Transforms/Utils/InlineFunction.cpp
test/Transforms/Inline/byval-tail-call.ll
test/Transforms/Inline/inline-tail.ll
test/Transforms/Inline/inlined-allocas.ll [new file with mode: 0644]
test/Transforms/TailCallElim/basic.ll
test/Transforms/TailCallElim/byval.ll [new file with mode: 0644]