| Commit message (Expand) | Author | Age | Files | Lines |
| * | Use the actual ABI-determined C calling convention for runtime | John McCall | 2013-02-28 | 1 | -3/+2 |
| * | PR15338: Don't assert if -fsanitize=bounds sees array indexing on an incomplete | Richard Smith | 2013-02-24 | 1 | -1/+3 |
| * | ubsan: Emit bounds checks for array indexing, vector indexing, and (in really... | Richard Smith | 2013-02-23 | 1 | -3/+94 |
| * | ubsan: Add checking for invalid downcasts. Per [expr.static.cast]p2 and p11, | Richard Smith | 2013-02-13 | 1 | -2/+25 |
| * | Don't forget to run destructors when we create an array temporary of class type. | Richard Smith | 2013-02-02 | 1 | -8/+22 |
| * | Make sure that the Attribute object represents one attribute only. | Bill Wendling | 2013-01-31 | 1 | -1/+3 |
| * | Move UTF conversion routines from clang/lib/Basic to llvm/lib/Support | Dmitri Gribenko | 2013-01-30 | 1 | -1/+2 |
| * | [ubsan] Implement the -fcatch-undefined-behavior flag using a trapping | Chad Rosier | 2013-01-29 | 1 | -1/+8 |
| * | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei | 2013-01-20 | 1 | -0/+2 |
| * | [ubsan] Add support for -fsanitize-blacklist | Will Dietz | 2013-01-18 | 1 | -6/+7 |
| * | Avoid unsigned Compare to int | David Greene | 2013-01-15 | 1 | -1/+1 |
| * | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko | 2013-01-12 | 1 | -9/+9 |
| * | Don't assert in codegen on static data members which have NoLinkage. Fixes | Nick Lewycky | 2013-01-10 | 1 | -4/+2 |
| * | [ubsan] Make static check data non-const so it can be used for deduplication. | Will Dietz | 2013-01-09 | 1 | -1/+1 |
| * | Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to | Chandler Carruth | 2013-01-02 | 1 | -4/+4 |
| * | Don't eagerly emit a global static merged with a local extern. | Rafael Espindola | 2012-12-21 | 1 | -3/+2 |
| * | Rename llvm::Attributes to llvm::Attribute. | Bill Wendling | 2012-12-20 | 1 | -4/+4 |
| * | Revert r170500. It over-zealously converted *ALL* things named Attributes, wh... | Bill Wendling | 2012-12-20 | 1 | -4/+4 |
| * | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling | 2012-12-19 | 1 | -4/+4 |
| * | Make sure CodeGen uses a value of the correct type as the result of | Eli Friedman | 2012-12-19 | 1 | -1/+1 |
| * | Similar to 170440 - fix build warning with gcc | Eli Bendersky | 2012-12-18 | 1 | -1/+1 |
| * | Fix typo (thanks to Jordan for spotting it!). | Richard Smith | 2012-12-18 | 1 | -1/+1 |
| * | Rein ubsan's vptr sanitizer back a bit. Per core issue 453, binding a reference | Richard Smith | 2012-12-18 | 1 | -1/+8 |
| * | [ubsan] Emit branch weight metadata to hint towards common case. | Will Dietz | 2012-12-15 | 1 | -1/+9 |
| * | ubsan: Add -fsanitize=bool and -fsanitize=enum, which check for loads of | Richard Smith | 2012-12-13 | 1 | -11/+38 |
| * | Simplify. No functionality change. | Richard Smith | 2012-12-13 | 1 | -12/+7 |
| * | Fix the required args count for variadic blocks. | John McCall | 2012-12-07 | 1 | -1/+1 |
| * | Rework the bitfield access IR generation to address PR13619 and | Chandler Carruth | 2012-12-06 | 1 | -154/+88 |
| * | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -5/+5 |
| * | Fix test failure when building Clang with g++4.7 -- don't use a Twine temporary | Richard Smith | 2012-12-03 | 1 | -5/+5 |
| * | [ubsan] Add flag to enable recovery from checks when possible. | Will Dietz | 2012-12-02 | 1 | -7/+17 |
| * | Fixing a precedence issue with my previous commit. | Aaron Ballman | 2012-11-30 | 1 | -1/+1 |
| * | Fixing an MSVC warning about an unsafe mixture of Boolean and unsigned types ... | Aaron Ballman | 2012-11-30 | 1 | -1/+1 |
| * | objective-C arc: load of a __weak object happens via call to | Fariborz Jahanian | 2012-11-27 | 1 | -2/+5 |
| * | Enable inlining of 4 byte atomic ops on ppc32, 8 byte atomic ops on ppc64. | Benjamin Kramer | 2012-11-17 | 1 | -5/+4 |
| * | Fix IR generation for bool on PPC (and any other target where bool is not 8 b... | Eli Friedman | 2012-11-13 | 1 | -5/+7 |
| * | Use the individual -fsanitize=<...> arguments to control which of the UBSan | Richard Smith | 2012-11-05 | 1 | -23/+27 |
| * | Simplify: replace getContext().getLangOpts() with just getLangOpts(). | Richard Smith | 2012-11-01 | 1 | -8/+8 |
| * | Split emission of -ftrapv checks and -fcatch-undefined-behavior checks into | Richard Smith | 2012-11-01 | 1 | -23/+21 |
| * | -fcatch-undefined-behavior: Start checking loads and stores for null pointers. | Richard Smith | 2012-11-01 | 1 | -11/+11 |
| * | Don't crash on bad atomic operations. PR14176. | Eli Friedman | 2012-10-30 | 1 | -7/+13 |
| * | Move two helper functions to AST so that sema can use them. | Rafael Espindola | 2012-10-27 | 1 | -113/+2 |
| * | Refactor some code into a new findMaterializedTemporary function. | Rafael Espindola | 2012-10-27 | 1 | -25/+32 |
| * | Refactor some code into a new skipRValueSubobjectAdjustments function. | Rafael Espindola | 2012-10-27 | 1 | -45/+51 |
| * | Delay codegen to after collecting all SubobjectAdjustment so that the collection | Rafael Espindola | 2012-10-27 | 1 | -6/+6 |
| * | -fcatch-undefined-behavior checking for appropriate vptr value: Clang CodeGen... | Richard Smith | 2012-10-25 | 1 | -7/+83 |
| * | DR1472: A reference isn't odr-used if it has preceding initialization, | Richard Smith | 2012-10-20 | 1 | -3/+17 |
| * | Move the Attributes::Builder outside of the Attributes class and into its own... | Bill Wendling | 2012-10-15 | 1 | -1/+1 |
| * | Attributes Rewrite | Bill Wendling | 2012-10-15 | 1 | -1/+2 |
| * | Add codegen support for __uuidof(). | Nico Weber | 2012-10-11 | 1 | -1/+11 |