aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/bugpoint/ToolRunner.cpp
AgeCommit message (Expand)AuthorFilesLines
2013-11-04Use startswith_lower() where possible.Jakub Staszak1-1/+1
2013-07-05Add a createUniqueFile function and switch llvm's users of unique_file.Rafael Espindola1-4/+4
2013-07-05Use sys::fs::createTemporaryFile.Rafael Espindola1-2/+2
2013-06-26Remove unused includes.Rafael Espindola1-1/+0
2013-06-26Port GetMainExecutable over to PathV2.Rafael Espindola1-2/+2
2013-06-25Move GetEXESuffix to the one place it is used.Rafael Espindola1-1/+7
2013-06-18Convert most uses of PathV1.h in ToolRunner.cpp.Rafael Espindola1-25/+35
2013-06-18Return a std::string from PrependMainExecutablePath.Rafael Espindola1-6/+7
2013-06-17Don't use PathV1.h in ToolRunner.h.Rafael Espindola1-7/+8
2013-06-14Move PrependMainExecutablePath next to its only user.Rafael Espindola1-0/+22
2013-06-13Avoid using PathV1.h in Program.h.Rafael Espindola1-13/+5
2013-06-13Have sys::FindProgramByName return a std::string.Rafael Espindola1-6/+6
2013-06-13Further reduce usage of sys::Path in bugpoint.Rafael Espindola1-8/+8
2013-06-13Try to fix the build with libstdc++ 4.4.Rafael Espindola1-1/+2
2013-06-13Reduce sys::Path usage in bugpoint.Rafael Espindola1-47/+47
2013-06-12Remove the program class.Rafael Espindola1-8/+7
2013-01-24[bugpoint] set Message after tool configurationSaleem Abdulrasool1-1/+1
2012-12-04Sort the #include lines for tools/...Chandler Carruth1-2/+2
2012-05-02Fix unintentional use of operator bool.John McCall1-1/+1
2012-03-23Remove the C backend.Eric Christopher1-88/+0
2011-12-20Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie1-0/+2
2011-10-27Remove the Alpha backend.Dan Gohman1-2/+1
2011-05-21Have Program::Wait return -2 for crashed and timeouts instead of embeddingAndrew Trick1-9/+4
2011-05-11Typo and missing checkin from r131186.Andrew Trick1-1/+1
2011-05-11Bugpoint support for miscompilations that result in a crash.Andrew Trick1-2/+16
2011-04-19ADT/Triple: Move a variety of clients to using isOSDarwin() and isOSWindows()Daniel Dunbar1-3/+2
2011-03-31Switch FileRemover from PathV1 to V2.Michael J. Spencer1-3/+3
2011-02-08Added bugpoint options: -compile-custom and -compile-command=...Andrew Trick1-24/+108
2010-11-29Merge System into Support.Michael J. Spencer1-1/+1
2010-11-09Fix some places where error messages were being swallowed.Dan Gohman1-6/+7
2010-11-03Rename FindExecutable to PrependMainExecutablePath.Mikhail Glushenkov1-5/+5
2010-11-0380-col violations, trailing whitespace.Mikhail Glushenkov1-22/+23
2010-10-29Fix these error messages to not mention PATH in cases whereDan Gohman1-6/+6
2010-07-29Use the right gcc tool args for IsARMArchitecture.Jakob Stoklund Olesen1-3/+3
2010-07-24Revert unintended white space change.Rafael Espindola1-1/+1
2010-07-24Fix a trivial use after free.Rafael Espindola1-2/+6
2010-05-24Apply timeouts and memory limits in more places. In particular, whenDuncan Sands1-14/+24
2010-05-13Fix complete badness in bugpoint's IsARMArchitecture() function.Jakob Stoklund Olesen1-3/+2
2010-05-10Add command line option --gcc to bugpoint.Kalle Raiskila1-6/+8
2010-04-29The llc -f flag was removed.Nick Lewycky1-1/+0
2010-04-12Remove use of exceptions from bugpoint. No deliberate functionality change!Nick Lewycky1-43/+50
2010-03-16add support for bugpointing the integrated assembler. Something like thisChris Lattner1-33/+49
2009-11-17Make bugpoint pass -load arguments to LLI. This lets one use bugpoint withDuncan Sands1-4/+5
2009-11-12Add compare_lower and equals_lower methods to StringRef. Switch all users ofBenjamin Kramer1-3/+3
2009-08-25Make LLVM command-line tools overwrite their output files without -f.Dan Gohman1-1/+0
2009-08-24prune the #includes in raw_ostream.h by moving a Chris Lattner1-0/+1
2009-08-23Prune #includes from llvm/Linker.h and llvm/System/Path.h,Chris Lattner1-10/+11
2009-08-19Proper MSVC build fix (and remove my hack again). Patch by Yonggang Luo.Benjamin Kramer1-7/+2
2009-08-19Add a hack to unbreak MSVC builds. str(n)casecmp are POSIX functions and aren...Benjamin Kramer1-0/+5
2009-08-18Change bugpoint to use Triple to make runtime decisions.Daniel Dunbar1-28/+25