]> granicus.if.org Git - llvm/commit
Merging r351475:
authorHans Wennborg <hans@hanshq.net>
Fri, 18 Jan 2019 08:59:50 +0000 (08:59 +0000)
committerHans Wennborg <hans@hanshq.net>
Fri, 18 Jan 2019 08:59:50 +0000 (08:59 +0000)
commit100aa4509cbaf5987e990f814810166eaf277412
tree50e8f843e62893a8919bcfeb294e35571e63a19b
parent8779077dde876ddfb6dfbe7f1da338f820a8fa13
Merging r351475:
------------------------------------------------------------------------
r351475 | rnk | 2019-01-17 21:46:53 +0100 (Thu, 17 Jan 2019) | 16 lines

[InstCombine] Don't sink dynamic allocas

Summary:
InstCombine's sinking algorithm only thinks about memory. It doesn't
think about non-memory constraints like stack object lifetime. It can
sink dynamic allocas across a stacksave call, which may be used with
stackrestore, which can incorrectly reduce the lifetime of the dynamic
alloca.

Fixes PR40365

Reviewers: hfinkel, efriedma

Subscribers: hiraditya, llvm-commits

Differential Revision: https://reviews.llvm.org/D56872
------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_80@351530 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/InstCombine/InstructionCombining.cpp
test/Transforms/InstCombine/sink-alloca.ll [new file with mode: 0644]