1. dad45ea Make bugpoint use ParseIRFile instead of doing the same thing manually. by Dan Gohman · 15 years ago
  2. ca74096 Change bugpoint to use Triple to make runtime decisions. by Daniel Dunbar · 15 years ago
  3. 86c006a Add save-temps option to bugpoint to keep temporary stuff. by Anton Korobeynikov · 15 years ago
  4. ac95cc7 Convert more tools code from cerr and cout to errs() and outs(). by Dan Gohman · 15 years ago
  5. 65f57c2 Use errs() instead of std::cerr. by Dan Gohman · 15 years ago
  6. 80becf1 Support remote execute for ARM. by David Goodwin · 15 years ago
  7. 92bcb42 switch the .ll parser into SMDiagnostic. by Chris Lattner · 15 years ago
  8. 4434ed4 Make the use of const with respect to LLVMContext sane. Hopefully this is the last time, for the by Owen Anderson · 15 years ago
  9. 31895e7 Hold the LLVMContext by reference rather than by pointer. by Owen Anderson · 15 years ago
  10. 8b477ed Add a pointer to the owning LLVMContext to Module. This requires threading LLVMContext through a lot by Owen Anderson · 15 years ago
  11. df98617 Reimplement the old and horrible bison parser for .ll files with a nice by Chris Lattner · 16 years ago
  12. 70ef449 Generalize bugpoint's concept of a "safe" backend, and add options by Dan Gohman · 16 years ago
  13. 584c3bf Detabify. by Bill Wendling · 17 years ago
  14. 21c62da remove attributions from tools. by Chris Lattner · 17 years ago
  15. 8ff70c2 Pretty straightforward replacement of "bytecode" by "bitcode" by Gabor Greif · 17 years ago
  16. 065344d use the new MemoryBuffer interfaces to simplify error reporting in clients. by Chris Lattner · 17 years ago
  17. 744879e switch tools to bitcode from bytecode by Chris Lattner · 17 years ago
  18. 03b6963 add bitcode support by Chris Lattner · 17 years ago
  19. 9ba8a76 Add possibility to set memory limit for binaries run via libSystem. This by Anton Korobeynikov · 18 years ago
  20. f2e292c push bytecode decompressor out through APIs. Now the bytecode reader by Chris Lattner · 18 years ago
  21. 4e3be89 Fix for PR960. Improves bugpoint so that it removes global variable by Bill Wendling · 18 years ago
  22. 61c83e0 For PR797: by Reid Spencer · 18 years ago
  23. 6a3f31c This commit adds a new feature called find-bugs. The find-bugs option can be invoked on a .bc file from the command like with -find-bugs and a list of passes you wish to test. This procedure takes the set of optimization passes the user specifies, randomizes the passes, runs the passes on the specified .bc file, compiles the program, and finally runs the program checking its output vs the .bc file with no optimizations. This process repeats until either the user kills bugpoint or an error occurs in the optimizations, program complitation, or the running of the program. If an error occurs, bugpoint attempts to diagnose the error by eliminating passes that are not at fault and code that is not needed. by Patrick Jenkins · 18 years ago
  24. 9686ae7 Teach bugpoint to kill optimization passes that run over the timeout limit, by Chris Lattner · 18 years ago
  25. f1b20d8 Move ToolRunner.(cpp|h) into the bugpoint directory by Chris Lattner · 18 years ago
  26. 53bd1b9 print a nice error if bugpoint gets an error reading inputs. Bug identified by Chris Lattner · 18 years ago
  27. c4bb052 For PR351: by Reid Spencer · 19 years ago
  28. 3da94ae Remove trailing whitespace by Misha Brukman · 19 years ago
  29. 5d28218 Allow compilers that can't distinguish between a class instantiation and by Reid Spencer · 20 years ago
  30. 5f76760 For PR351: by Reid Spencer · 20 years ago
  31. e487402 LinkModules is now in the Linker class by Reid Spencer · 20 years ago
  32. 605b9e2 Linker.h has a new home. by Reid Spencer · 20 years ago
  33. 551ccae Changes For Bug 352 by Reid Spencer · 20 years ago
  34. 7d91e49 Finally give bugpoint -timeout support! by Chris Lattner · 20 years ago
  35. eed80e2 * Convert "\n" -> '\n' by Misha Brukman · 20 years ago
  36. 86f42bd Add #include <iostream> since Value.h does not include it any more. by Reid Spencer · 20 years ago
  37. 008248f Linker.h moved to include/llvm/Support by Misha Brukman · 20 years ago
  38. b04da8a Wrap at 80 cols. by Misha Brukman · 20 years ago
  39. efdc0b5 Refactor and clean up a bunch more code. No major functionality changes. by Chris Lattner · 21 years ago
  40. be21ca5 Refactor all of the "splitting a module into two pieces" code to avoid by Chris Lattner · 21 years ago
  41. 47dd276 Format a bit more nicely by Chris Lattner · 21 years ago
  42. 7c955fd Be a bit more robust. Explicitly check for a code generator crash. by Chris Lattner · 21 years ago
  43. 1d29a6d Make ToolExecutionError inherit std::exception and implement its by Alkis Evlogimenos · 21 years ago
  44. 06905db Cleanup and simplify manipulation of the program, eliminate the need for so by Chris Lattner · 21 years ago
  45. 0252626 Add a stub for debugging code generator crashes by Chris Lattner · 21 years ago
  46. 5dcc366 ctor arguments changed order by Chris Lattner · 21 years ago
  47. c064e89 This class got moved to FileUtilities.h by Chris Lattner · 21 years ago
  48. fa76183 finegrainify namespacification by Chris Lattner · 21 years ago
  49. d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 21 years ago
  50. 9432111 fix file headers by Chris Lattner · 21 years ago
  51. 7c0e022 Added copyright header to all C++ source files. by John Criswell · 21 years ago
  52. b6c3a88 Flush output after writing out the list of function names. by Brian Gaeke · 21 years ago
  53. a5a96a9 Eliminate the bugpoint -mode option, by making bugpoint automatically infer the root of all of your problems by Chris Lattner · 21 years ago
  54. 99b8533 Unbreak code generator debug mode by Chris Lattner · 21 years ago
  55. 79f03d3 Use new method by Chris Lattner · 21 years ago
  56. c28c1d3 Kill warning by Chris Lattner · 21 years ago
  57. 79063d6 Squash the warning that `Result' may not be initialized on all code paths. by Misha Brukman · 21 years ago
  58. 3d9cafa File-related functions moved to FileUtilities.h . by Misha Brukman · 21 years ago
  59. e49603d Re-grouped and alphabetized headers for easier reading and cleaner style. by Misha Brukman · 21 years ago
  60. 0bd75bb Moved SystemUtils.h to include/Support and SystemUtils.cpp to lib/Support. by Misha Brukman · 21 years ago
  61. a259c9b Made a bunch of cleanups, as per Chris' recommendations: by Misha Brukman · 21 years ago
  62. 5073336 Major addition to bugpoint: ability to debug code generators (LLC and LLI). by Misha Brukman · 21 years ago
  63. dae7f92 Clarify BugDriver.cpp:BugDriver::ParseInputFile()'s return values in its by Brian Gaeke · 21 years ago
  64. c8b2731 The Grammar Police is out on patrol. by Misha Brukman · 21 years ago
  65. 473a843 Make sure that deleted functions have external linkage by Chris Lattner · 21 years ago
  66. ff4aaf0 Move function from Miscompilation.cpp by Chris Lattner · 21 years ago
  67. 640f22e Implement support for bugpoint to identify which FUNCTION an optimization by Chris Lattner · 21 years ago
  68. 218e26e Implement the start of the miscompilation detection stuff by Chris Lattner · 22 years ago
  69. afade92 Initial checkin of bugpoint by Chris Lattner · 22 years ago