mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00

Summary: This pass tries to remove Global Variables, as well as their derived uses. For example if a variable `@x` is used by `%call1` and `%call2`, both these uses and the definition of `@x` are deleted. Moreover if `%call1` or `%call2` are used elsewhere those uses are also deleted, and so on recursively. I'm still uncertain if this pass should remove derived uses, I'm open to suggestions. Subscribers: mgorny, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D64176 llvm-svn: 368115
41 lines
1.5 KiB
C++
41 lines
1.5 KiB
C++
//===-- TestRunner.cpp ----------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "TestRunner.h"
|
|
|
|
using namespace llvm;
|
|
|
|
TestRunner::TestRunner(StringRef TestName, std::vector<std::string> TestArgs,
|
|
StringRef ReducedFilepath, SmallString<128> TmpDirectory)
|
|
: TestName(TestName), TestArgs(TestArgs), ReducedFilepath(ReducedFilepath),
|
|
TmpDirectory(TmpDirectory) {}
|
|
|
|
/// Runs the interestingness test, passes file to be tested as first argument
|
|
/// and other specified test arguments after that.
|
|
int TestRunner::run(StringRef Filename) {
|
|
std::vector<StringRef> ProgramArgs;
|
|
ProgramArgs.push_back(TestName);
|
|
ProgramArgs.push_back(Filename);
|
|
|
|
for (unsigned I = 0, E = TestArgs.size(); I != E; ++I)
|
|
ProgramArgs.push_back(TestArgs[I].c_str());
|
|
|
|
StringRef SR = "";
|
|
Optional<StringRef> Redirects[3] = {SR, SR, SR}; // STDIN, STDOUT, STDERR
|
|
int Result = sys::ExecuteAndWait(TestName, ProgramArgs, None, Redirects);
|
|
|
|
if (Result < 0) {
|
|
Error E = make_error<StringError>("Error running interesting-ness test\n",
|
|
inconvertibleErrorCode());
|
|
outs() << toString(std::move(E));
|
|
exit(1);
|
|
}
|
|
|
|
return !Result;
|
|
}
|