[ScopDetection] Fix use-after-free.
authorMichael Kruse <llvm@meinersbur.de>
Mon, 29 Feb 2016 16:54:18 +0000 (16:54 +0000)
committerMichael Kruse <llvm@meinersbur.de>
Mon, 29 Feb 2016 16:54:18 +0000 (16:54 +0000)
commit0b56681d21df79a242e4838c95abcdf193ef9974
tree7f3c7cd7bfbe8fda79ce2476ab78ff99f09a5768
parent06d5af4c9dee685961e83c49e4c9ffb1cc054e56
[ScopDetection] Fix use-after-free.

removeCachedResults deletes the DetectionContext from
DetectionContextMap such that any it cannot be used anymore.
Unfortunately invalid<ReportUnprofitable> and RejectLogs.insert still do
use it. Because the memory is part of a map and not returned to to the
OS immediatly, such that the observable effect was only a memory leak
due to reference counters not decreased when the second call to
removeCachedResults does not remove the DetectionContext because because
it already has been removed.

Fix by not removing the DetectionContext prematurely. The second call to
removeCachedResults will handle it anyway.

llvm-svn: 262235
polly/lib/Analysis/ScopDetection.cpp