| Commit message (Expand) | Author | Age | Files | Lines |
| * | [llvm-extract] Update the help message for group extraction feature | Jinsong Ji | 2019-08-20 | 1 | -2/+12 |
| * | Rename F_{None,Text,Append} to OF_{None,Text,Append}. NFC | Fangrui Song | 2019-08-05 | 1 | -1/+1 |
| * | Sanitize llvm-extract -help output | Serge Guelton | 2019-06-12 | 1 | -37/+50 |
| * | [llvm-extract] Expose the group extraction feature of the BlockExtractor | Quentin Colombet | 2019-04-29 | 1 | -12/+19 |
| * | Include invoke'd functions for recursive extract | David Callahan | 2019-04-04 | 1 | -3/+3 |
| * | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
| * | Define InitLLVM to do common initialization all at once. | Rui Ueyama | 2018-04-13 | 1 | -7/+2 |
| * | [llvm-extract] Support extracting basic blocks | Volkan Keles | 2018-01-23 | 1 | -0/+40 |
| * | [Support] Rename tool_output_file to ToolOutputFile, NFC | Reid Kleckner | 2017-09-23 | 1 | -1/+1 |
| * | [llvm-extract] Add option for recursive extraction | Keno Fischer | 2017-04-06 | 1 | -1/+34 |
| * | [tools] Unbreak the GCC build (workaround a GCC bug). | Davide Italiano | 2016-11-09 | 1 | -1/+2 |
| * | Bitcode: Change the materializer interface to return llvm::Error. | Peter Collingbourne | 2016-11-09 | 1 | -7/+5 |
| * | Search for llvm-symbolizer binary in the same directory as argv[0], before | Richard Smith | 2016-06-09 | 1 | -1/+1 |
| * | Remove every uses of getGlobalContext() in LLVM (but the C API) | Mehdi Amini | 2016-04-14 | 1 | -1/+1 |
| * | Bring back "Assert that we have all use/users in the getters." | Rafael Espindola | 2016-01-15 | 1 | -3/+12 |
| * | Revert "Assert that we have all use/users in the getters." | Michael Zolotukhin | 2016-01-14 | 1 | -12/+3 |
| * | Assert that we have all use/users in the getters. | Rafael Espindola | 2015-12-19 | 1 | -3/+12 |
| * | Delete dead code: only functions are materializable. | Rafael Espindola | 2015-12-18 | 1 | -4/+0 |
| * | Use a lambda to reduce code duplication. | Rafael Espindola | 2015-12-18 | 1 | -23/+15 |
| * | uselistorder: Remove the global bits | Duncan P. N. Exon Smith | 2015-04-15 | 1 | -10/+13 |
| * | uselistorder: Pull the bit through PrintModulePass | Duncan P. N. Exon Smith | 2015-04-15 | 1 | -1/+2 |
| * | uselistorder: Pull bit through BitcodeWriterPass | Duncan P. N. Exon Smith | 2015-04-15 | 1 | -1/+2 |
| * | IR: Set -preserve-bc-uselistorder=false by default | Duncan P. N. Exon Smith | 2015-04-14 | 1 | -0/+6 |
| * | Make DataLayout Non-Optional in the Module | Mehdi Amini | 2015-03-04 | 1 | -1/+0 |
| * | [PM] Remove the old 'PassManager.h' header file at the top level of | Chandler Carruth | 2015-02-13 | 1 | -2/+2 |
| * | Remove redundant calls to isMaterializable. | Rafael Espindola | 2014-11-01 | 1 | -8/+5 |
| * | Modernize the error handling of the Materialize function. | Rafael Espindola | 2014-10-24 | 1 | -9/+9 |
| * | Add doInitialization/doFinalization to DataLayoutPass. | Rafael Espindola | 2014-09-10 | 1 | -1/+1 |
| * | Return a std::unique_ptr from the IRReader.h functions. NFC. | Rafael Espindola | 2014-08-26 | 1 | -2/+1 |
| * | Modernize raw_fd_ostream's constructor a bit. | Rafael Espindola | 2014-08-25 | 1 | -4/+4 |
| * | Use range loops. | Rafael Espindola | 2014-05-08 | 1 | -13/+9 |
| * | raw_ostream: Forward declare OpenFlags and include FileSystem.h only where ne... | Benjamin Kramer | 2014-04-29 | 1 | -0/+1 |
| * | [C++] Use 'nullptr'. Tools edition. | Craig Topper | 2014-04-25 | 1 | -1/+1 |
| * | Replace OwningPtr<T> with std::unique_ptr<T>. | Ahmed Charles | 2014-03-06 | 1 | -1/+1 |
| * | Make DataLayout a plain object, not a pass. | Rafael Espindola | 2014-02-25 | 1 | -1/+1 |
| * | Replace the F_Binary flag with a F_Text one. | Rafael Espindola | 2014-02-24 | 1 | -1/+1 |
| * | [PM] Wire up support for writing bitcode with new PM. | Chandler Carruth | 2014-01-13 | 1 | -1/+1 |
| * | [PM] Simplify the interface exposed for IR printing passes. | Chandler Carruth | 2014-01-12 | 1 | -1/+1 |
| * | [PM] Rename the IR printing pass header to a more generic and correct | Chandler Carruth | 2014-01-12 | 1 | -2/+2 |
| * | Move the LLVM IR asm writer header files into the IR directory, as they | Chandler Carruth | 2014-01-07 | 1 | -1/+1 |
| * | Revert "Encapsulate PassManager debug flags to avoid static init and cxa_exit." | Andrew Trick | 2013-09-19 | 1 | -4/+0 |
| * | Encapsulate PassManager debug flags to avoid static init and cxa_exit. | Andrew Trick | 2013-09-18 | 1 | -0/+4 |
| * | whitespace | Andrew Trick | 2013-09-18 | 1 | -1/+1 |
| * | Add a wrapper for open. | Rafael Espindola | 2013-07-16 | 1 | -2/+1 |
| * | Replace uses of the deprecated std::auto_ptr with OwningPtr. | Andy Gibbs | 2013-04-12 | 1 | -1/+1 |
| * | Split out the IRReader header and the utility functions it provides into | Chandler Carruth | 2013-03-26 | 1 | -1/+2 |
| * | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -3/+3 |
| * | Sort the #include lines for tools/... | Chandler Carruth | 2012-12-04 | 1 | -8/+8 |
| * | One more step towards making doInitialization and doFinalization useful for | Pedro Artigas | 2012-11-29 | 1 | -2/+0 |
| * | Revert r168635 "Step towards implementation of pass manager with doInitializa... | Owen Anderson | 2012-11-27 | 1 | -0/+2 |