Age | Commit message (Expand) | Author |
2010-05-03 | When computing the address of a virtual member function pointer, use the poin... | Anders Carlsson |
2010-04-24 | Get rid of the old GetNonVirtualBaseClassOffset and change all call sites to ... | Anders Carlsson |
2010-04-18 | recommit r101568 to fix PR6766 | Nuno Lopes |
2010-04-17 | Vtable -> VTable renames across the board. | Anders Carlsson |
2010-04-17 | revert r101568, which miscompiles this testcase, distilled from ldecod: | Chris Lattner |
2010-04-16 | fix PR6766: codegen of var initialized with wide char | Nuno Lopes |
2010-04-16 | fix a bogus assertion exposed by a recent change: packing the | Chris Lattner |
2010-04-16 | emit padding as undef values, take 2 | Nuno Lopes |
2010-04-13 | Rework the ConstStructBuilder code to emit missing initializer | Chris Lattner |
2010-04-13 | move a bunch of ConstStructBuilder methods out of line. | Chris Lattner |
2010-04-12 | fix PR6660/6168: emit padding as zeros instead of undef. Because | Chris Lattner |
2010-03-31 | IRGen: Move the auxiliary data structures tracking AST -> LLVM mappings out o... | Daniel Dunbar |
2010-03-30 | IRgen: Move CGRecordLayout to its own happy little file. | Daniel Dunbar |
2010-03-23 | Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTable... | Anders Carlsson |
2010-03-04 | really fix 6473 by handling weakref in constant expressions. | Rafael Espindola |
2010-02-10 | hopefully silence a warning on the clang-i386-darwin9 tester. | Chris Lattner |
2010-02-07 | Use the right type when taking the address of a non-virtual member function p... | Anders Carlsson |
2010-02-05 | Fix the bug that was breaking self-host, and re-land the static ctor fixes. | Anders Carlsson |
2010-02-05 | Revert r95363 and r95375, which broke self-host. | Douglas Gregor |
2010-02-05 | Fix array initialization test. | Anders Carlsson |
2010-02-05 | If a global initializer has a non-trivial destructor it can't be emitted as a... | Anders Carlsson |
2010-02-04 | Calculate offset correctly when taking the address of a virtual member function. | Anders Carlsson |
2010-02-03 | Revert "Numerous changes to selector handling:", this breaks a whole bunch of | Daniel Dunbar |
2010-02-03 | Numerous changes to selector handling: | David Chisnall |
2010-02-02 | Use the Arg variable rather than re-computing it. This also silences GCC's | Chandler Carruth |
2010-02-02 | Codegen CXXConstructExprs with trivial constructors as constants. | John McCall |
2010-02-02 | Improve handling of emitting 'null' pointers to data members. | Anders Carlsson |
2010-02-02 | Move pointer to data member emission to CodeGenModule and use it in CGExprCon... | Anders Carlsson |
2010-01-31 | Some class related cleanup. | Anders Carlsson |
2010-01-23 | Created __builtin___NSStringMakeConstantString() builtin, which generates con... | David Chisnall |
2010-01-15 | Convert the type of the LValue offset variable in APValue to CharUnits, moving | Ken Dyck |
2010-01-05 | When emitting member function pointers, use the canonical decl if the member ... | Anders Carlsson |
2010-01-02 | Get rid of some unnecessary code. | Eli Friedman |
2009-12-08 | Update CGExprConstant for change to emit padding values as undef. | Daniel Dunbar |
2009-11-28 | Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. | Benjamin Kramer |
2009-11-27 | Don't build the entire vtable when all we want is the index of a virtual method. | Anders Carlsson |
2009-11-21 | Support emitting aggregate class initializers. Fixes PR5581. | Anders Carlsson |
2009-11-14 | Avoid assert-crash in a case where the expression passed to EmitConstantExpr | Eli Friedman |
2009-11-14 | Make __func__ and friends work correctly within the initializer for a static | Eli Friedman |
2009-11-13 | Obvious fix for PR5474. | Eli Friedman |
2009-11-06 | indirectbr seems to work! Rip out the old code. | Chris Lattner |
2009-10-29 | make clang emit undefs for padding of structs and unions instead of zeros. th... | Nuno Lopes |
2009-10-28 | Implement clang support for indirect branch and address of label | Chris Lattner |
2009-10-23 | Eliminate QualifiedDeclRefExpr, which captured the notion of a | Douglas Gregor |
2009-10-18 | Use CK_BitCast for member function pointer casts. Fixes PR5138. | Anders Carlsson |
2009-10-13 | fix test/CodeGen/statements.c on 32-bit hosts. | Chris Lattner |
2009-10-13 | Simplify pointer creation with the new Type::getInt*Ptr methods. | Benjamin Kramer |
2009-10-13 | Teach sema and codegen about the difference between address of labels, | Chris Lattner |
2009-10-11 | Move the vtable builder to CGVtable.cpp, general cleanup. | Anders Carlsson |
2009-10-03 | Pass the canonical method decl to GetVtableIndex. Fixes PR5120. | Anders Carlsson |