summaryrefslogtreecommitdiff
path: root/llvm/tools/bugpoint/ExecutionDriver.cpp
AgeCommit message (Expand)Author
2025-11-20Revert "[NFC][bugpoint] Namespace cleanup in `bugpoint`" (#168961)Rahul Joshi
2025-11-20[NFC][bugpoint] Namespace cleanup in `bugpoint` (#168921)Rahul Joshi
2025-10-13[NFC][LLVM] Code cleanup in bugpoint (#162909)Rahul Joshi
2025-03-03[NFC]Make file-local cl::opt global variables static (#126486)chrisPyr
2024-01-19[tools] Use SmallString::operator std::string (NFC)Kazu Hirata
2022-06-05Remove unneeded cl::ZeroOrMore for cl::opt/cl::list optionsFangrui Song
2022-06-05Remove unneeded cl::ZeroOrMore for cl::opt/cl::list optionsFangrui Song
2022-06-04Remove unneeded cl::ZeroOrMore for cl::list optionsFangrui Song
2020-10-09[bugpoint] Delete -safe-llc and make -run-llc work like -run-llc -safe-run-llcFangrui Song
2020-02-10Revert "Remove redundant "std::move"s in return statements"Bill Wendling
2020-02-10Remove redundant "std::move"s in return statementsBill Wendling
2020-01-28Make llvm::StringRef to std::string conversions explicit.Benjamin Kramer
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth
2018-12-10[bugpoint] Find 'opt', etc., in bugpoint directoryBrian Gesiak
2018-09-18[bugpoint] Revert r318459Don Hinton
2018-02-14Change the BugDriver to store the current module with std::unique_ptr.Rafael Espindola
2017-11-16Convert the last use of sys::fs::createUniqueFile in bugpoint.Rafael Espindola
2017-11-16Convert another use of createUniqueFile to TempFile::create.Rafael Espindola
2016-10-08Turn cl::values() (for enum) from a vararg function to using C++ variadic tem...Mehdi Amini
2016-09-06bugpoint: Return Errors instead of passing around stringsJustin Bogner
2016-09-02bugpoint: clang-format all of bugpoint. NFCJustin Bogner
2016-06-08Apply most suggestions of clang-tidy's performance-unnecessary-value-paramBenjamin Kramer
2015-10-14[Bugpoint] Use 'CC' instead of 'GCC' for variable naming.Davide Italiano
2015-10-14[Bugpoint] Use clang by default.Davide Italiano
2014-06-13Remove 'using std::error_code' from tools.Rafael Espindola
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola
2014-04-25[C++] Use 'nullptr'. Tools edition.Craig Topper
2014-03-14Fix a bug introduced during the transition to PathV2.Rafael Espindola
2013-10-01Remove several unused variables.Rafael Espindola
2013-07-05Add a createUniqueFile function and switch llvm's users of unique_file.Rafael Espindola
2013-06-28Fix bugpoint execution/reference output file nameHal Finkel
2013-06-18Add a version of unique_file that return just the file name.Rafael Espindola
2013-06-18Remove use of PathV1.h from ExecutionDriver.cpp.Rafael Espindola
2013-06-17Don't use PathV1.h in ToolRunner.h.Rafael Espindola
2013-06-13Don't use PathV1.h in FileUtilities.h.Rafael Espindola
2013-01-24[bugpoint] make tool selection messages uniqueSaleem Abdulrasool
2012-03-23Remove the C backend.Eric Christopher
2012-01-10Remove unnecessary default cases in switches that cover all enum values.David Blaikie
2011-05-11Bugpoint support for miscompilations that result in a crash.Andrew Trick
2011-03-31Switch FileRemover from PathV1 to V2.Michael J. Spencer
2011-02-08Added bugpoint options: -compile-custom and -compile-command=...Andrew Trick
2011-02-08whitespaceAndrew Trick
2010-08-05Add const to compileProgram and to the various test functions in CrashDebugger.Rafael Espindola
2010-07-31Add const to some methods and change TestMergedProgram to return the mergedRafael Espindola
2010-07-30Add a Program argument to diffProgram to avoid a use of swapProgramIn.Rafael Espindola
2010-05-24Apply timeouts and memory limits in more places. In particular, whenDuncan Sands
2010-05-10Add command line option --gcc to bugpoint.Kalle Raiskila
2010-04-12Remove use of exceptions from bugpoint. No deliberate functionality change!Nick Lewycky
2010-04-10Remove dead argument and clean whitespace. No functionality change.Nick Lewycky
2010-03-16add support for bugpointing the integrated assembler. Something like thisChris Lattner