1. b7bdfd6 [PM] Wire up support for writing bitcode with new PM. by Chandler Carruth · 12 years ago
  2. 9d80513 [PM] Simplify the interface exposed for IR printing passes. by Chandler Carruth · 12 years ago
  3. b8ddc70 [PM] Rename the IR printing pass header to a more generic and correct by Chandler Carruth · 12 years ago
  4. 9aca918 Move the LLVM IR asm writer header files into the IR directory, as they by Chandler Carruth · 12 years ago
  5. b5e1e6c Revert "Encapsulate PassManager debug flags to avoid static init and cxa_exit." by Andrew Trick · 12 years ago
  6. f33d6df Encapsulate PassManager debug flags to avoid static init and cxa_exit. by Andrew Trick · 12 years ago
  7. dc073ad whitespace by Andrew Trick · 12 years ago
  8. 6d35481 Add a wrapper for open. by Rafael Espindola · 12 years ago
  9. 9577755 Replace uses of the deprecated std::auto_ptr with OwningPtr. by Andy Gibbs · 13 years ago
  10. e60e57b Split out the IRReader header and the utility functions it provides into by Chandler Carruth · 13 years ago
  11. 9fb823b Move all of the header files which are involved in modelling the LLVM IR by Chandler Carruth · 13 years ago
  12. 4d88a1c Sort the #include lines for tools/... by Chandler Carruth · 13 years ago
  13. d6b092b One more step towards making doInitialization and doFinalization useful for by Pedro Artigas · 13 years ago
  14. 1db12f5 Revert r168635 "Step towards implementation of pass manager with doInitialization and doFinalization per module detangled from runOn?? calls, still has temporary code not to break ASAN to be removed when that pass conforms to the proposed model". by Owen Anderson · 13 years ago
  15. 336368c Step towards implementation of pass manager with doInitialization and doFinalization per module detangled from runOn?? calls, still has temporary code not to break ASAN to be removed when that pass conforms to the proposed model by Owen Anderson · 13 years ago
  16. 1aa2751 Add doInitialization and doFinalization methods to ModulePass's, to allow them to be re-initialized and reused on multiple Module's. by Owen Anderson · 13 years ago
  17. 7043858a Add -alias and -ralias options to match what we have for functions and globals. by Rafael Espindola · 13 years ago
  18. 9cfc13d Move TargetData to DataLayout. by Micah Villmow · 13 years ago
  19. 5079e4d Remove extraneous ".get()->" which is just "->". No functionality change. by Nick Lewycky · 14 years ago
  20. a3a0681 Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does. Enhance by Chris Lattner · 14 years ago
  21. f0d3786 Add -rfunc and -rglob options to llvm-extract to support regular by Chad Rosier · 14 years ago
  22. b1ed91f Land the long talked about "type system rewrite" patch. This by Chris Lattner · 14 years ago
  23. 447762d Merge System into Support. by Michael J. Spencer · 15 years ago
  24. 0df7ea4 Move tool_output_file into its own file. by Dan Gohman · 15 years ago
  25. 0d2c07c Fix llvm-extract -delete's lazy loading to materialize the functions that by Dan Gohman · 15 years ago
  26. a2233f2 Make tool_output_file's raw_ostream instance a member variable instead by Dan Gohman · 15 years ago
  27. 8f292e7 Rewrite ExtractGV, removing a bunch of stuff that didn't fully work, by Dan Gohman · 15 years ago
  28. bf15459 Convert llvm-extract to use lazy loading. This makes it substantially by Dan Gohman · 15 years ago
  29. 4cc73ba Use tool_output_file in llvm-extract and llvm-link too. by Dan Gohman · 15 years ago
  30. 6111d7c Don't register stdout to be deleted on a signal. by Dan Gohman · 15 years ago
  31. 9b2a93a Preserve debug info for only extracted symbols. by Devang Patel · 15 years ago
  32. 8e404fe Trim #includes. by Dan Gohman · 16 years ago
  33. f684e45 Add support to llvm-extract for extracting multiple functions and/or by Dan Gohman · 16 years ago
  34. e592923 Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn't by Dan Gohman · 16 years ago
  35. 61a8796 Make LLVM command-line tools overwrite their output files without -f. by Dan Gohman · 16 years ago
  36. abd1736 simplify output file selection, fixing two FIXMEs about binary output by Chris Lattner · 16 years ago
  37. 9e6f1f1 Change raw_fd_ostream to take flags as an optional bitmask by Chris Lattner · 16 years ago
  38. dd1db9c "-" should write to stdout, not stderr. by Chris Lattner · 16 years ago
  39. ee05152 Convert more tools code from cerr and cout to errs() and outs(). by Dan Gohman · 16 years ago
  40. 19251ec To simplify the upcoming context-on-type change, switch all command line tools to using the default global context for now. by Owen Anderson · 16 years ago
  41. 607818a Add a Force option to raw_fd_ostream to specify whether opening by Dan Gohman · 16 years ago
  42. 1cf085d Hold the LLVMContext by reference rather than by pointer. by Owen Anderson · 16 years ago
  43. 6773d38 Add a pointer to the owning LLVMContext to Module. This requires threading LLVMContext through a lot by Owen Anderson · 16 years ago
  44. 59ceb59 Use .empty() instead of .size(). by Dan Gohman · 17 years ago
  45. e3fc2d1 Change various llvm utilities to use PrettyStackTraceProgram in by Chris Lattner · 17 years ago
  46. fc42740 only extract main if the user didn't specify anything to extract by Andrew Lenharth · 18 years ago
  47. 3906c6a make error message reflect default search function name by Andrew Lenharth · 18 years ago
  48. 3f13b66 add a pass that can extract all kinds of global values, not just functions. Update llvm-extract to use it and optionally extract a global variable if you want it too by Andrew Lenharth · 18 years ago
  49. 345353d remove attributions from tools. by Chris Lattner · 18 years ago
  50. 2c6a821 Move the space in overview output for commands out of each of the by Dan Gohman · 18 years ago
  51. fd46bad Separate program name from error message with a : by Reid Spencer · 18 years ago
  52. f054db3 Terminate an error message with a newline. by Reid Spencer · 18 years ago
  53. e16561c Here is the bulk of the sanitizing. by Gabor Greif · 18 years ago
  54. 9e9a34c use the new MemoryBuffer interfaces to simplify error reporting in clients. by Chris Lattner · 19 years ago
  55. 6d80e21 switch tools to bitcode instead of bytecode by Chris Lattner · 19 years ago
  56. 2793699 remove EH cruft, add bitcode support by Chris Lattner · 19 years ago
  57. a0e49f2 push bytecode decompressor out through APIs. Now the bytecode reader by Chris Lattner · 19 years ago
  58. 3c52e27 For PR411: by Reid Spencer · 19 years ago
  59. 3aaaa0b For PR411: by Reid Spencer · 19 years ago
  60. 037c867 Propagate changes from my local tree. This patch includes: by Anton Korobeynikov · 19 years ago
  61. f3baad3 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
  62. 76d4632 make all llvm tools call llvm_shutdown when they exit, static'ify some stuff. by Chris Lattner · 19 years ago
  63. afd54eb Replacing std::iostreams with llvm iostreams. Some of these changes involve by Bill Wendling · 19 years ago
  64. 16cf813 Don't pass target name into TargetData anymore, it is never used or needed. by Chris Lattner · 19 years ago
  65. e22594f extract has been renamed to llvm-extract to avoid conflicting with another tool by Misha Brukman · 21 years ago[Renamed (92%) from llvm/tools/extract/extract.cpp]
  66. 650ba8e Remove trailing whitespace by Misha Brukman · 21 years ago
  67. c8f1f4b Use binary mode for reading/writing bytecode files by Jeff Cohen · 21 years ago
  68. 996ec72 For PR351: by Reid Spencer · 21 years ago
  69. 7c16caa Changes For Bug 352 by Reid Spencer · 21 years ago
  70. e3263ec The functions in Signal.h are now in the llvm::sys namespace - adjust by Reid Spencer · 21 years ago
  71. 278f515 Header file moved by Chris Lattner · 21 years ago
  72. 2ccac82 Add command-line option to select whether to isolate or delete function from by Misha Brukman · 22 years ago
  73. 69e896b Make sure to print a stack trace whenever an error signal is delivered to by Chris Lattner · 22 years ago
  74. 3b203f5 Give extract -o and -f options, just like every other tool! by Chris Lattner · 22 years ago
  75. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  76. 8fb7af1 Fix extract to use the right TargetData, like Bugpoint does. by Brian Gaeke · 22 years ago
  77. 8f71f04 fix file header by Chris Lattner · 22 years ago
  78. 09344dc Added copyright header to all C++ source files. by John Criswell · 22 years ago
  79. 6d2eab6 Clean up header, remove extra #include by Chris Lattner · 22 years ago
  80. ff713ae Make createVerifierPass return a FunctionPass *. by Brian Gaeke · 22 years ago
  81. 58f9002 Move the function extractor pass from tools/extract into lib/Xform/IPO by Chris Lattner · 23 years ago
  82. 66507d8 * Fix extract to work with constant pointer refs correctly by Chris Lattner · 23 years ago
  83. 8e2c197 Avoid making external global variables internal by Chris Lattner · 23 years ago
  84. ae4cf52 - The extract tool now is sure to extract the function implementation for by Chris Lattner · 23 years ago
  85. da4c6cc Print the tool name when an error comes from so that I can tell which by Chris Lattner · 23 years ago
  86. 386ebdd Remove extraneous #includes by Chris Lattner · 23 years ago
  87. 64a6727 *** empty log message *** by Chris Lattner · 23 years ago
  88. b3b0216 *** empty log message *** by Chris Lattner · 23 years ago
  89. da02d41 Minor changes due to code juggled around by Chris Lattner · 23 years ago
  90. f5cad15 *** empty log message *** by Chris Lattner · 23 years ago
  91. 113f4f4 MEGAPATCH checkin. by Chris Lattner · 23 years ago
  92. c17c38f Make sure the extracted function has external linkage, so that it doesn't by Chris Lattner · 23 years ago
  93. 055de18 Initial checkin of the "extract" utility by Chris Lattner · 23 years ago