| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add function attribute 'optnone'. | Andrea Di Biagio | 2013-08-23 | 1 | -0/+3 |
| * | Add a AttributeSetImpl::dump function. | Peter Collingbourne | 2013-08-02 | 1 | -0/+4 |
| * | Make one of the AttributeSet ctors maintain the invariant that the | Peter Collingbourne | 2013-08-02 | 1 | -2/+20 |
| * | Add a way to add a kind-value string pair to an attribute. | Bill Wendling | 2013-07-25 | 1 | -0/+7 |
| * | Replace the "NoFramePointerElimNonLeaf" target option with a function attribute. | Bill Wendling | 2013-07-25 | 1 | -0/+4 |
| * | Reduce the number of indirections in the attributes implementation. | Benjamin Kramer | 2013-07-11 | 1 | -64/+39 |
| * | Extend 'readonly' and 'readnone' to work on function arguments as well as | Nick Lewycky | 2013-07-06 | 1 | -0/+2 |
| * | Added support for the Builtin attribute. | Michael Gottesman | 2013-06-27 | 1 | -0/+3 |
| * | Add a new function attribute 'cold' to functions. | Diego Novillo | 2013-05-24 | 1 | -0/+3 |
| * | Now that the underlying issue is fixed, revert r180750 and r180722. | Rafael Espindola | 2013-05-01 | 1 | -9/+6 |
| * | Change getSlotIndex to return unsigned. | Rafael Espindola | 2013-04-30 | 1 | -2/+2 |
| * | Revert the command line option patch. However, keep the part that makes this ... | Bill Wendling | 2013-04-29 | 1 | -2/+1 |
| * | Revert "revert r179735, it has no testcases, and doesn't really make sense." | Reid Kleckner | 2013-04-29 | 1 | -6/+10 |
| * | revert r179735, it has no testcases, and doesn't really make sense. | Chris Lattner | 2013-04-25 | 1 | -10/+6 |
| * | Add CodeGen support for functions that always return arguments via a new para... | Stephen Lin | 2013-04-20 | 1 | -0/+3 |
| * | Attributes: Don't print trailing whitespace on the function attribute comment. | Benjamin Kramer | 2013-04-19 | 1 | -5/+4 |
| * | Make the TargetIndependent flag have the right boolean value. | Bill Wendling | 2013-04-18 | 1 | -1/+1 |
| * | Cleanup patch: | Bill Wendling | 2013-04-18 | 1 | -50/+50 |
| * | This patch addresses two cleanup issues: | Bill Wendling | 2013-04-18 | 1 | -27/+0 |
| * | Add an option `-enable-old-style-attr-syntax' to print out function attribute... | Bill Wendling | 2013-04-17 | 1 | -5/+11 |
| * | Add some additonal attribute helper functions. Test will be on follow | Reed Kotler | 2013-03-13 | 1 | -0/+7 |
| * | Don't add an attribute that already exists and don't remove an attribute that... | Bill Wendling | 2013-02-28 | 1 | -0/+2 |
| * | Unify clang/llvm attributes for asan/tsan/msan (LLVM part) | Kostya Serebryany | 2013-02-26 | 1 | -12/+12 |
| * | Remove warning about default covering no cases. | Bill Wendling | 2013-02-22 | 1 | -3/+2 |
| * | Add a bitmask for NoBuiltin. This should *not* be used. | Bill Wendling | 2013-02-22 | 1 | -1/+2 |
| * | Implement the NoBuiltin attribute. | Bill Wendling | 2013-02-22 | 1 | -1/+31 |
| * | Futureproof AttrBuild if we ever have more than 64 attr enum values. | Benjamin Kramer | 2013-02-18 | 1 | -14/+12 |
| * | GCC doesn't like ++ on enums. | Benjamin Kramer | 2013-02-16 | 1 | -1/+1 |
| * | Turn the enum attributes DenseSet in AttrBuilder into a set of bits. | Benjamin Kramer | 2013-02-16 | 1 | -24/+23 |
| * | Simplify the 'operator<' for the attribute object. | Bill Wendling | 2013-02-15 | 1 | -15/+13 |
| * | Revert "Simplify the attributes '<' comparison function." | Anna Zaks | 2013-02-15 | 1 | -13/+15 |
| * | Simplify the attributes '<' comparison function. | Bill Wendling | 2013-02-15 | 1 | -15/+13 |
| * | Use array_pod_sort. | Bill Wendling | 2013-02-13 | 1 | -1/+1 |
| * | Add some accessor and query methods for retrieving Attribute objects and such. | Bill Wendling | 2013-02-13 | 1 | -0/+41 |
| * | Support string attributes in the AttrBuilder. | Bill Wendling | 2013-02-12 | 1 | -11/+25 |
| * | Add support for printing out the attribute groups. | Bill Wendling | 2013-02-11 | 1 | -12/+19 |
| * | [tsan/msan] adding thread_safety and uninitialized_checks attributes | Kostya Serebryany | 2013-02-11 | 1 | -0/+6 |
| * | The 'Raw' method cannot handle 'string' attributes. Don't even try. | Bill Wendling | 2013-02-10 | 1 | -0/+4 |
| * | Handle string attributes in the AttrBuilder. | Bill Wendling | 2013-02-10 | 1 | -1/+5 |
| * | Add accessor for the LLVMContext. | Bill Wendling | 2013-02-10 | 1 | -0/+4 |
| * | Add a 'StringRef' version of hasAttribute. | Bill Wendling | 2013-02-06 | 1 | -4/+16 |
| * | Add methods to merge an AttrBuilder into another builder. | Bill Wendling | 2013-02-06 | 1 | -0/+17 |
| * | Add the target-dependent (string) attributes from the AttrBuilder to the Attr... | Bill Wendling | 2013-02-05 | 1 | -2/+13 |
| * | Convert to storing the attribute's internals as enums, integers, and strings. | Bill Wendling | 2013-02-05 | 1 | -106/+150 |
| * | Add target-dependent versions of addAttribute/removeAttribute to AttrBuilder. | Bill Wendling | 2013-02-05 | 1 | -1/+13 |
| * | Initial cleanups of the param-attribute code in the bitcode reader/writer. | Bill Wendling | 2013-02-04 | 1 | -41/+1 |
| * | Remove AttrBuilder::Raw(). | Bill Wendling | 2013-02-02 | 1 | -25/+18 |
| * | Use the AttributeSet's iterators. | Bill Wendling | 2013-02-02 | 1 | -4/+22 |
| * | Change the AttributeImpl to hold a single Constant* for the values. | Bill Wendling | 2013-02-01 | 1 | -15/+13 |
| * | Remove some dead code, improve some asserts, and other assorted changes. No f... | Bill Wendling | 2013-02-01 | 1 | -22/+11 |