Fix invalid function pointers in bugpoint ExtractLoops
authorHal Finkel <hfinkel@anl.gov>
Fri, 2 Aug 2013 21:13:42 +0000 (21:13 +0000)
committerHal Finkel <hfinkel@anl.gov>
Fri, 2 Aug 2013 21:13:42 +0000 (21:13 +0000)
commite8bc700a87b88751b82e132b10c4b96f311e0b3a
tree7f19d254e087e153324464a6aebca3974f29d43d
parente7bc73b8d127e0e17ba6ac7ceb7462134c730f68
Fix invalid function pointers in bugpoint ExtractLoops

The ExtractLoops function tries to reduce the failing test case by extracting
one or more loops from the misoptimized piece of the program. In doing this,
ExtractLoops must keep the MiscompiledFunctions vector up-to-date by ensuring
that the pointers refer to functions in the current failing program.
Unfortunately, this is not trivial because:

 - ExtractLoops is iterative, and there are several early exits (and the
   MiscompiledFunctions vector must be consistent with the current program at
every non-fatal exit point).
 - Several of the utility functions used by ExtractLoops (such as
   TestOptimizer, some of which are called through the TestFn callback
parameter, and Linker::LinkModules) delete their inputs upon success.

This change adds several updates of the MiscompiledFunctions vector at
different points. The first is after the initial call to TestMergedProgram
which checks that the loop-extracted program still works. The second is after
the call to TestFn (TestOptimizer, for example). This function will delete its
inputs (which is why the existing ExtractLoops logic cloned the inputs first).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187674 91177308-0d34-0410-b5e6-96231b3b80d8
tools/bugpoint/Miscompilation.cpp