| Commit message (Expand) | Author | Age | Files | Lines |
* | [ThinLTO] Import only necessary DICompileUnit fields | Teresa Johnson | 2016-12-12 | 2 | -4/+75 |
* | IR: Move NumElements field from {Array,Vector}Type to SequentialType. | Peter Collingbourne | 2016-12-02 | 1 | -5/+3 |
* | [ThinLTO] Fix crash when importing an opaque type | Mehdi Amini | 2016-11-19 | 1 | -1/+1 |
* | IRMover: Avoid accidentally mapping types from the destination module (PR30799) | Hans Wennborg | 2016-11-18 | 1 | -0/+8 |
* | Linker: Remove unnecessary call to copyMetadata in IRLinker::linkGlobalVariable. | Peter Collingbourne | 2016-11-14 | 1 | -2/+0 |
* | Typo | Adrian Prantl | 2016-11-14 | 1 | -1/+1 |
* | Bitcode: Change the materializer interface to return llvm::Error. | Peter Collingbourne | 2016-11-09 | 1 | -4/+4 |
* | Typo: nomed struct -> named struct | Hans Wennborg | 2016-10-19 | 1 | -1/+1 |
* | [ThinLTO] Don't link module level assembly when importing | Teresa Johnson | 2016-10-12 | 2 | -6/+16 |
* | DebugInfo: New metadata representation for global variables. | Peter Collingbourne | 2016-09-13 | 1 | -3/+5 |
* | Fix ThinLTO crash with debug info | Mehdi Amini | 2016-09-03 | 1 | -0/+6 |
* | Linker: Avoid some ridiculous indentation by using a temporary. NFC | Justin Bogner | 2016-08-15 | 1 | -12/+11 |
* | Use the range variant of remove_if instead of unpacking begin/end | David Majnemer | 2016-08-12 | 1 | -9/+9 |
* | IR: New representation for CFI and virtual call optimization pass metadata. | Peter Collingbourne | 2016-06-24 | 1 | -2/+2 |
* | Linker: Copy metadata when linking declarations. | Peter Collingbourne | 2016-06-24 | 1 | -4/+7 |
* | Remangle intrinsics names when types are renamed | Artur Pilipenko | 2016-06-24 | 1 | -0/+9 |
* | Revert r273568 "Remangle intrinsics names when types are renamed" | Hans Wennborg | 2016-06-23 | 1 | -9/+0 |
* | Remangle intrinsics names when types are renamed | Artur Pilipenko | 2016-06-23 | 1 | -0/+9 |
* | [IR] [DAE] Copy comdats during DAE, and don't copy comdats in GlobalObject::c... | Justin Lebar | 2016-06-15 | 1 | -5/+0 |
* | IR: Introduce local_unnamed_addr attribute. | Peter Collingbourne | 2016-06-14 | 2 | -4/+5 |
* | Move instances of std::function. | Benjamin Kramer | 2016-06-12 | 1 | -1/+1 |
* | Apply most suggestions of clang-tidy's performance-unnecessary-value-param | Benjamin Kramer | 2016-06-08 | 1 | -2/+2 |
* | [Linker/IRMover] Simplify the code a bit. NFCI. | Davide Italiano | 2016-06-07 | 1 | -25/+7 |
* | Apply clang-tidy's misc-move-constructor-init throughout LLVM. | Benjamin Kramer | 2016-05-27 | 1 | -2/+4 |
* | Linker: teach the IR mover to return llvm::Error. | Peter Collingbourne | 2016-05-27 | 2 | -99/+99 |
* | ValueMaterializer: rename materializeDeclFor() to materialize() | Mehdi Amini | 2016-05-25 | 1 | -4/+4 |
* | ValueMaterializer: fuse materializeDeclFor and materializeInitFor (NFC) | Mehdi Amini | 2016-05-25 | 1 | -30/+22 |
* | IRLinker: fix double scheduling of mapping a global value because of an alias | Mehdi Amini | 2016-05-25 | 1 | -0/+11 |
* | [IR] Copy comdats in GlobalObject::copyAttributesFrom | Reid Kleckner | 2016-05-25 | 1 | -0/+5 |
* | Return a StringRef from getSection. | Rafael Espindola | 2016-05-11 | 1 | -1/+1 |
* | Fix recursive -only-needed. | Rafael Espindola | 2016-04-21 | 2 | -2/+4 |
* | ThinLTO/ModuleLinker: add a flag to not always pull-in linkonce when performi... | Mehdi Amini | 2016-04-21 | 1 | -0/+9 |
* | ModuleLinker: only import what is in GlobalsToImport, regarless if it is a fu... | Mehdi Amini | 2016-04-20 | 1 | -22/+6 |
* | Linker: Avoid constructing ValueMap::MDMapT | Duncan P. N. Exon Smith | 2016-04-19 | 1 | -2/+2 |
* | ModuleLinker: Do not import linkonce/weak as "external_weak" | Mehdi Amini | 2016-04-19 | 1 | -2/+1 |
* | Linker: Share a single Metadata map for the lifetime of IRMover | Duncan P. N. Exon Smith | 2016-04-17 | 1 | -5/+14 |
* | Linker: Don't double-schedule appending variables | Duncan P. N. Exon Smith | 2016-04-17 | 1 | -1/+1 |
* | IRMover: Remove dead code, NFC | Duncan P. N. Exon Smith | 2016-04-17 | 1 | -3/+0 |
* | Reapply "ValueMapper: Eliminate cross-file co-recursion, NFC" | Duncan P. N. Exon Smith | 2016-04-16 | 1 | -38/+24 |
* | Revert "ValueMapper: Eliminate cross-file co-recursion, NFC" | Duncan P. N. Exon Smith | 2016-04-16 | 1 | -24/+38 |
* | ValueMapper: Eliminate cross-file co-recursion, NFC | Duncan P. N. Exon Smith | 2016-04-16 | 1 | -38/+24 |
* | Linker: Remove an unnecessary local variable in for loop, NFC | Duncan P. N. Exon Smith | 2016-04-15 | 1 | -6/+4 |
* | [PR27284] Reverse the ownership between DICompileUnit and DISubprogram. | Adrian Prantl | 2016-04-15 | 1 | -71/+0 |
* | ValueMapper: Extract llvm::RemapFunction from IRMover.cpp, NFC | Duncan P. N. Exon Smith | 2016-04-08 | 1 | -25/+8 |
* | Linker: Always pass RF_IgnoreMissingLocals; NFC | Duncan P. N. Exon Smith | 2016-04-08 | 1 | -3/+3 |
* | IR: RF_IgnoreMissingValues => RF_IgnoreMissingLocals, NFC | Duncan P. N. Exon Smith | 2016-04-07 | 1 | -1/+1 |
* | IRMover: Steal arguments when moving functions, NFC | Duncan P. N. Exon Smith | 2016-04-06 | 1 | -19/+6 |
* | Linker: Split mapUnneededSubprograms into two; almost NFC | Duncan P. N. Exon Smith | 2016-04-02 | 1 | -11/+15 |
* | Remove redundant assertion after cast, NFC | Duncan P. N. Exon Smith | 2016-04-02 | 1 | -1/+0 |
* | Linker: Avoid unnecessary work when moving named metadata | Duncan P. N. Exon Smith | 2016-04-02 | 1 | -17/+11 |