Age | Commit message (Expand) | Author | Files | Lines |
2021-06-29 | [OpaquePtr][BitcodeWriter] Handle attributes with types | Arthur Eubanks | 1 | -0/+5 |
2021-06-25 | [OpaquePtr] Enumerate GlobalAlias value type | Nikita Popov | 1 | -1/+3 |
2021-06-25 | [OpaquePtr] Enumerate alloca type | Nikita Popov | 1 | -0/+2 |
2021-06-25 | [OpaquePtr] Enumerate global variable type | Nikita Popov | 1 | -1/+3 |
2021-06-24 | [OpaquePtr] Introduce option to force all pointers to be opaque pointers | Arthur Eubanks | 1 | -0/+1 |
2021-06-23 | [OpaquePtr] Support call instruction | Nikita Popov | 1 | -1/+3 |
2021-06-21 | [OpaquePtr] Support opaque constant expression GEP | Nikita Popov | 1 | -1/+5 |
2021-06-21 | [OpaquePtr] Return opaque pointer from opaque pointer GEP | Nikita Popov | 1 | -0/+2 |
2021-04-22 | [Bitcode] Ensure DIArgList in bitcode has no null or forward metadata refs | Stephen Tozer | 1 | -19/+63 |
2021-03-07 | OpaquePtr: Record byref types in bitcode writer | Matt Arsenault | 1 | -0/+2 |
2021-03-05 | [DebugInfo] Add DIArgList MD to store multple values in DbgVariableIntrinsics | gbtozers | 1 | -3/+20 |
2020-10-20 | Handle value uses wrapped in metadata for the use-list order | David Stenberg | 1 | -0/+29 |
2020-10-16 | Reapply "OpaquePtr: Add type to sret attribute" | Matt Arsenault | 1 | -0/+2 |
2020-09-16 | ValueEnumerator.cpp - remove duplicate includes. NFCI. | Simon Pilgrim | 1 | -6/+0 |
2020-04-14 | [ADT/STLExtras.h] - Add llvm::is_sorted wrapper and update callers. | Georgii Rymar | 1 | -3/+3 |
2020-03-31 | Remove "mask" operand from shufflevector. | Eli Friedman | 1 | -7/+36 |
2019-06-05 | IR: make getParamByValType Just Work. NFC. | Tim Northover | 1 | -1/+1 |
2019-05-30 | Reapply: IR: add optional type to 'byval' function parameters | Tim Northover | 1 | -2/+4 |
2019-05-29 | Revert "IR: add optional type to 'byval' function parameters" | Tim Northover | 1 | -4/+2 |
2019-05-29 | IR: add optional type to 'byval' function parameters | Tim Northover | 1 | -2/+4 |
2019-05-07 | Avoid use-after-move warnings by using swap instead. NFCI. | Simon Pilgrim | 1 | -1/+2 |
2019-02-08 | Implementation of asm-goto support in LLVM | Craig Topper | 1 | -4/+2 |
2019-01-19 | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 1 | -4/+3 |
2018-09-27 | llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...) | Fangrui Song | 1 | -2/+2 |
2018-05-10 | [STLExtras] Add distance() for ranges, pred_size(), and succ_size() | Vedant Kumar | 1 | -1/+1 |
2018-04-30 | IWYU for llvm-config.h in llvm, additions. | Nico Weber | 1 | -0/+1 |
2018-04-05 | [Bitcode] Change std::sort to llvm::sort in response to r327219 | Mandeep Singh Grang | 1 | -2/+2 |
2017-10-15 | Reverting r315590; it did not include changes for llvm-tblgen, which is causi... | Aaron Ballman | 1 | -1/+1 |
2017-10-12 | [dump] Remove NDEBUG from test to enable dump methods [NFC] | Don Hinton | 1 | -1/+1 |
2017-09-07 | [Bitcode] Fix some Clang-tidy modernize-use-using and Include What You Use wa... | Eugene Zelenko | 1 | -13/+39 |
2017-05-23 | [IR] Switch AttributeList to use an array for O(1) access | Reid Kleckner | 1 | -2/+5 |
2017-05-11 | [IR] Allow attributes with global variables | Javed Absar | 1 | -2/+5 |
2017-04-24 | Make getSlotAttributes return an AttributeSet instead of a wrapper list | Reid Kleckner | 1 | -1/+1 |
2017-04-24 | [Bitcode] Refactor attribute group writing to avoid getSlotAttributes | Reid Kleckner | 1 | -6/+6 |
2017-03-21 | Rename AttributeSet to AttributeList | Reid Kleckner | 1 | -2/+2 |
2017-01-28 | Cleanup dump() functions. | Matthias Braun | 1 | -1/+4 |
2017-01-13 | Remove unused lambda captures. NFC | Malcolm Parsons | 1 | -1/+1 |
2016-07-08 | Add an assertion for the value enumerator (bitcode writer) NFC | Mehdi Amini | 1 | -1/+6 |
2016-06-21 | IR: Allow metadata attachments on declarations, and fix lazy loaded metadata ... | Peter Collingbourne | 1 | -8/+10 |
2016-06-01 | IR: Allow multiple global metadata attachments with the same type. | Peter Collingbourne | 1 | -0/+2 |
2016-05-31 | Add support for metadata attachments for global variables. | Peter Collingbourne | 1 | -5/+11 |
2016-04-23 | BitcodeWriter: Emit uniqued subgraphs after all distinct nodes | Duncan P. N. Exon Smith | 1 | -1/+20 |
2016-04-23 | BitcodeWriter: Emit distinct nodes before uniqued nodes | Duncan P. N. Exon Smith | 1 | -6/+18 |
2016-04-23 | ValueEnumerator: Use std::find_if, NFC | Duncan P. N. Exon Smith | 1 | -13/+8 |
2016-04-22 | ValueMapper/Enumerator: Clean up code in post-order traversals, NFC | Duncan P. N. Exon Smith | 1 | -22/+24 |
2016-04-21 | BitcodeWriter: Emit metadata in post-order (again) | Duncan P. N. Exon Smith | 1 | -15/+21 |
2016-04-19 | BitcodeWriter: Break recursion when enumerating Metadata, almost NFC | Duncan P. N. Exon Smith | 1 | -67/+69 |
2016-04-18 | BitcodeWriter: WorkList => Worklist, NFC | Duncan P. N. Exon Smith | 1 | -5/+5 |
2016-04-07 | [GCC] Attribute ifunc support in llvm | Dmitry Polukhin | 1 | -0/+17 |
2016-04-02 | Bitcode: Try to emit metadata in function blocks | Duncan P. N. Exon Smith | 1 | -30/+171 |