| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert "Revert r211402 (and r211408,r211410), "CodeGen: Refactor dynamic_cast... | David Majnemer | 2014-06-22 | 1 | -366/+52 |
* | Revert r211402 (and r211408,r211410), "CodeGen: Refactor dynamic_cast and typ... | NAKAMURA Takumi | 2014-06-22 | 1 | -52/+366 |
* | CodeGen: Refactor dynamic_cast and typeid | David Majnemer | 2014-06-20 | 1 | -366/+52 |
* | [MS-ABI] Implement typeid | Warren Hunt | 2014-06-18 | 1 | -2/+35 |
* | Fix typos | Alp Toker | 2014-06-16 | 1 | -1/+1 |
* | [MS-ABI] Implement dynamic_cast | Warren Hunt | 2014-06-06 | 1 | -4/+135 |
* | Bugfix: don't assert if someone manages to declare an operator new/delete tem... | Richard Smith | 2014-06-05 | 1 | -2/+3 |
* | Add __builtin_operator_new and __builtin_operator_delete, which act like calls | Richard Smith | 2014-06-03 | 1 | -0/+17 |
* | Implement DR990 and DR1070. Aggregate initialization initializes uninitialized | Richard Smith | 2014-06-03 | 1 | -11/+18 |
* | When emitting a multidimensional array new, emit the initializers for the | Richard Smith | 2014-06-03 | 1 | -136/+171 |
* | [C++11] Use 'nullptr'. CodeGen edition. | Craig Topper | 2014-05-21 | 1 | -27/+27 |
* | [leaks] Re-shuffle code such that we don't create a basic block for | Chandler Carruth | 2014-05-03 | 1 | -9/+11 |
* | Fix PR19104: Incorrect handling of non-virtual calls of virtual methods | Timur Iskhodzhanov | 2014-03-14 | 1 | -2/+4 |
* | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 2014-03-12 | 1 | -4/+4 |
* | [Modules] Update to reflect the move of CallSite into the IR library in | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | Sema: Do not assert when dereferencing member pointer using virtual inheritan... | David Majnemer | 2014-02-20 | 1 | -1/+1 |
* | Rename getResultType() on function and method declarations to getReturnType() | Alp Toker | 2014-01-25 | 1 | -2/+2 |
* | Rename FunctionProtoType accessors from 'arguments' to 'parameters' | Alp Toker | 2014-01-20 | 1 | -18/+18 |
* | [ms-abi] Refactor Microsoft Record Layout | Warren Hunt | 2014-01-09 | 1 | -1/+1 |
* | Quick-Fix pointer arithmetic when performing multi-D new-array initialization. | Faisal Vali | 2013-12-14 | 1 | -3/+23 |
* | When performing an array new of a multidimensional array with an initializer | Richard Smith | 2013-12-11 | 1 | -3/+19 |
* | [ms-cxxabi] Construct and destroy call arguments in the correct order | Reid Kleckner | 2013-12-04 | 1 | -27/+4 |
* | Add CodeGenABITypes.h for use in LLDB. | Mark Lacey | 2013-10-30 | 1 | -0/+1 |
* | Revert "This patch causes clang to reject alias attributes that point to unde... | Rafael Espindola | 2013-10-22 | 1 | -1/+2 |
* | This patch causes clang to reject alias attributes that point to undefined | Rafael Espindola | 2013-10-22 | 1 | -2/+1 |
* | Implement function type checker for the undefined behavior sanitizer. | Peter Collingbourne | 2013-10-20 | 1 | -1/+2 |
* | No functionality change. Reflow lines that could fit on one line. Break lines | Nick Lewycky | 2013-10-01 | 1 | -4/+3 |
* | AST: Handle qualified array types in typeid() expressions | David Majnemer | 2013-09-27 | 1 | -2/+2 |
* | CodeGen: Unify two implementations of canDevirtualizeMemberFunctionCall. | Benjamin Kramer | 2013-08-25 | 1 | -95/+1 |
* | Abstract out virtual calls and virtual function prologue code generation; imp... | Timur Iskhodzhanov | 2013-08-21 | 1 | -1/+4 |
* | PR16715: Fix assert in verifier: only mark call to 'operator new' as 'builtin... | Richard Smith | 2013-07-29 | 1 | -2/+5 |
* | [ms-cxxabi] Emit linkonce complete dtors in TUs that need them | Reid Kleckner | 2013-07-22 | 1 | -2/+2 |
* | Tighten up the set of operator new/operator delete calls we're permitted to | Richard Smith | 2013-07-21 | 1 | -16/+37 |
* | PR16214, PR14467: DebugInfo: use "RequireCompleteType" to decide when to emit... | David Blaikie | 2013-07-13 | 1 | -11/+0 |
* | Restore r184205 and associated commits (after commit of r185290) | Stephen Lin | 2013-06-30 | 1 | -12/+14 |
* | Revert r184205 and associated patches while investigating issue with broken b... | Stephen Lin | 2013-06-19 | 1 | -14/+12 |
* | Corrections to r184205 ('this'-return optimization) due to the wrong version ... | Stephen Lin | 2013-06-19 | 1 | -12/+14 |
* | PR12086, PR15117 | Richard Smith | 2013-06-12 | 1 | -2/+0 |
* | Tighten up the rules for precise lifetime and document | John McCall | 2013-03-13 | 1 | -1/+1 |
* | Change hasAggregateLLVMType, which conflates complex and | John McCall | 2013-03-07 | 1 | -5/+12 |
* | Use the actual ABI-determined C calling convention for runtime | John McCall | 2013-02-28 | 1 | -4/+5 |
* | Abstract out emitting the vdtor calls and do it properly when using -cxx-abi ... | Timur Iskhodzhanov | 2013-02-15 | 1 | -12/+11 |
* | Emit virtual/deleting destructors properly with -cxx-abi microsoft, PR15058 | Timur Iskhodzhanov | 2013-02-13 | 1 | -8/+10 |
* | CodeGen: Implement hint values for dynamic_cast as described in the Itanium C... | Benjamin Kramer | 2013-02-03 | 1 | -2/+59 |
* | CodeGen: Mark the runtime function __dynamic_cast as readonly & nounwind. | Benjamin Kramer | 2013-02-03 | 1 | -5/+10 |
* | When we're emitting a constructor or destructor call from a delegating | Douglas Gregor | 2013-01-31 | 1 | -3/+7 |
* | Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to | Chandler Carruth | 2013-01-02 | 1 | -1/+1 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -2/+2 |
* | Simplify: replace getContext().getLangOpts() with just getLangOpts(). | Richard Smith | 2012-11-01 | 1 | -3/+3 |
* | Cleanup some clang code to use new type functions instead of using cast<>. | Micah Villmow | 2012-10-25 | 1 | -2/+1 |