Skip to content

Commit

Permalink
[Bugpoint] Use unique_ptr correctly.
Browse files Browse the repository at this point in the history
Moving Modules into `testMergedProgram` is incorrect (and causes segmentation
faults) since all callers expect to retain ownership. This is evidenced by the
later calls to `unique_ptr<Module>::get` in the same function.

Differential Revision: https://reviews.llvm.org/D31727

llvm-svn: 299596
  • Loading branch information
bryant committed Apr 5, 2017
1 parent 0ce388b commit 77b1450
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions llvm/tools/bugpoint/Miscompilation.cpp
Expand Up @@ -225,19 +225,22 @@ class ReduceMiscompilingFunctions : public ListReducer<Function *> {
/// output is different. If the DeleteInputs argument is set to true then this
/// function deletes both input modules before it returns.
///
static Expected<std::unique_ptr<Module>>
testMergedProgram(const BugDriver &BD, std::unique_ptr<Module> M1,
std::unique_ptr<Module> M2, bool &Broken) {
if (Linker::linkModules(*M1, std::move(M2)))
static Expected<std::unique_ptr<Module>> testMergedProgram(const BugDriver &BD,
const Module &M1,
const Module &M2,
bool &Broken) {
// Resulting merge of M1 and M2.
auto Merged = CloneModule(&M1);
if (Linker::linkModules(*Merged, CloneModule(&M2)))
// TODO: Shouldn't we thread the error up instead of exiting?
exit(1);

// Execute the program.
Expected<bool> Diff = BD.diffProgram(M1.get(), "", "", false);
Expected<bool> Diff = BD.diffProgram(Merged.get(), "", "", false);
if (Error E = Diff.takeError())
return std::move(E);
Broken = *Diff;
return std::move(M1);
return std::move(Merged);
}

/// TestFuncs - split functions in a Module into two groups: those that are
Expand Down Expand Up @@ -335,9 +338,8 @@ ExtractLoops(BugDriver &BD,
// extraction.
AbstractInterpreter *AI = BD.switchToSafeInterpreter();
bool Failure;
Expected<std::unique_ptr<Module>> New =
testMergedProgram(BD, std::move(ToOptimizeLoopExtracted),
std::move(ToNotOptimize), Failure);
Expected<std::unique_ptr<Module>> New = testMergedProgram(
BD, *ToOptimizeLoopExtracted, *ToNotOptimize, Failure);
if (Error E = New.takeError())
return std::move(E);
if (!*New)
Expand Down Expand Up @@ -726,8 +728,7 @@ static Expected<bool> TestOptimizer(BugDriver &BD, std::unique_ptr<Module> Test,

outs() << " Checking to see if the merged program executes correctly: ";
bool Broken;
auto Result =
testMergedProgram(BD, std::move(Optimized), std::move(Safe), Broken);
auto Result = testMergedProgram(BD, *Optimized, *Safe, Broken);
if (Error E = Result.takeError())
return std::move(E);
if (auto New = std::move(*Result)) {
Expand Down

0 comments on commit 77b1450

Please sign in to comment.