| Commit message (Expand) | Author | Age | Files | Lines |
| * | Rework our handling of binding a reference to a temporary | Douglas Gregor | 2010-05-20 | 1 | -18/+100 |
| * | Substantially alter the design of the Objective C type AST by introducing | John McCall | 2010-05-15 | 1 | -4/+3 |
| * | Minor refactoring of my last patch. | Fariborz Jahanian | 2010-05-11 | 1 | -4/+5 |
| * | Objective-C++ Code gen. Handle code gen. for property | Fariborz Jahanian | 2010-05-10 | 1 | -1/+10 |
| * | Add the same 'ForVirtualBase' parameter to EmitCXXDestructorCall. | Anders Carlsson | 2010-05-02 | 1 | -0/+2 |
| * | Change CodeGenFunction::GetAddressOfDerivedClass to take a BasePath. | Anders Carlsson | 2010-04-24 | 1 | -7/+2 |
| * | Convert more call sites over to the new GetAddressOfBaseClass. | Anders Carlsson | 2010-04-24 | 1 | -10/+6 |
| * | Handle compound assignment expressions (i += j) as lvalues, which is | Douglas Gregor | 2010-04-23 | 1 | -0/+2 |
| * | Call PerformCopyInitialization to properly initialize the exception temporary | John McCall | 2010-04-22 | 1 | -0/+7 |
| * | Miscellaneous codegen cleanups. Mostly, don't create new basic blocks | John McCall | 2010-04-21 | 1 | -6/+18 |
| * | Some renaming of methods, fixes typo | Fariborz Jahanian | 2010-04-19 | 1 | -2/+3 |
| * | Local static variables must be available module-wise | Fariborz Jahanian | 2010-04-18 | 1 | -0/+2 |
| * | Fix an assert when assigning a boolean value to a bitfield of type _Bool. | Anders Carlsson | 2010-04-17 | 1 | -1/+5 |
| * | IRgen: (Reapply 101222, with fixes) Move EmitStoreThroughBitfieldLValue to us... | Daniel Dunbar | 2010-04-15 | 1 | -88/+84 |
| * | Speculatively revert "IRgen: Move EmitStoreThroughBitfieldLValue to use new C... | Daniel Dunbar | 2010-04-14 | 1 | -82/+88 |
| * | IRgen: Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessI... | Daniel Dunbar | 2010-04-14 | 1 | -88/+82 |
| * | IRgen: Move EmitLoadOfBitfieldLValue to use new CGBitfieldInfo::AccessInfo de... | Daniel Dunbar | 2010-04-13 | 1 | -51/+61 |
| * | fix PR6805: llvm.objectsize changed to take an i1 instead of an i32. | Chris Lattner | 2010-04-10 | 1 | -8/+5 |
| * | IRgen: Move the bit-field access type into CGBitFieldInfo, and change bit-fie... | Daniel Dunbar | 2010-04-08 | 1 | -15/+18 |
| * | IRgen: Move BitFieldIsSigned bit into CGBitFieldInfo. | Daniel Dunbar | 2010-04-06 | 1 | -7/+9 |
| * | Simplify. | Daniel Dunbar | 2010-04-06 | 1 | -6/+2 |
| * | IRgen: Move BitField LValues to just hold a reference to the CGBitFieldInfo. | Daniel Dunbar | 2010-04-05 | 1 | -15/+14 |
| * | IRgen: Lift BitFieldInfo to CGBitFieldInfo at namespace level. | Daniel Dunbar | 2010-04-05 | 1 | -1/+1 |
| * | IRGen: Move the auxiliary data structures tracking AST -> LLVM mappings out o... | Daniel Dunbar | 2010-03-31 | 1 | -3/+10 |
| * | Introduce a new kind of derived-to-base cast which bypasses the need for | John McCall | 2010-03-30 | 1 | -0/+1 |
| * | Minor formatting/FIXME cleanups. | Daniel Dunbar | 2010-03-30 | 1 | -1/+0 |
| * | Fix PR6473. | Rafael Espindola | 2010-03-04 | 1 | -0/+10 |
| * | IRgen: Add CreateIRTemp, which creates a temporary alloca but with type conve... | Daniel Dunbar | 2010-02-16 | 1 | -1/+11 |
| * | IRgen: Switch EmitCompoundLiteralLValue to use CreateMemTemp. | Daniel Dunbar | 2010-02-16 | 1 | -3/+1 |
| * | When emitting an aggregate into a temporary, make sure we set the alignment | John McCall | 2010-02-15 | 1 | -1/+1 |
| * | More vtable layout dumper improvements. Handle destructors, dump the complete... | Anders Carlsson | 2010-02-11 | 1 | -2/+1 |
| * | IRgen: Add CreateMemTemp, for creating an temporary memory object for a parti... | Daniel Dunbar | 2010-02-09 | 1 | -11/+15 |
| * | Reapply r95393, without the change to CGExpr. I was wrong in assuming that the | Daniel Dunbar | 2010-02-08 | 1 | -0/+2 |
| * | Standardize the parsing of function type attributes in a way that | John McCall | 2010-02-05 | 1 | -14/+4 |
| * | Revert r95393, which broke Clang's self-host. | Douglas Gregor | 2010-02-05 | 1 | -2/+3 |
| * | IRgen: A few more ConvertType cleanups. | Daniel Dunbar | 2010-02-05 | 1 | -11/+6 |
| * | IRgen: Factor out EmitAggExprToLValue. | Daniel Dunbar | 2010-02-05 | 1 | -14/+6 |
| * | IRgen: Fix some CreateTempAlloca calls to use ConvertTypeForMem when that is | Daniel Dunbar | 2010-02-05 | 1 | -1/+2 |
| * | Now that we store calling conventions in the types, use them instead of | Charles Davis | 2010-02-05 | 1 | -6/+10 |
| * | IRgen: Use hasAggregateLLVMType instead of isSingleValueType() for cases that | Daniel Dunbar | 2010-02-05 | 1 | -3/+2 |
| * | When binding an lvalue to a reference, we always need to pop temporaries. | Anders Carlsson | 2010-02-04 | 1 | -1/+9 |
| * | Fix a bug where we would not mark temporaries as conditional when emitting a ... | Anders Carlsson | 2010-02-04 | 1 | -1/+7 |
| * | Revert the new reference binding code; I came up with a way simpler solution ... | Anders Carlsson | 2010-02-03 | 1 | -25/+0 |
| * | Move pointer to data member emission to CodeGenModule and use it in CGExprCon... | Anders Carlsson | 2010-02-02 | 1 | -16/+5 |
| * | Start creating CXXBindReferenceExpr nodes when binding complex types to refer... | Anders Carlsson | 2010-01-31 | 1 | -0/+22 |
| * | Add a new EmitLValueForFieldInitialization that will be used for initializing... | Anders Carlsson | 2010-01-29 | 1 | -0/+17 |
| * | Simplify EmitLValueForField - we can get whether the field is part of a union... | Anders Carlsson | 2010-01-29 | 1 | -12/+3 |
| * | Add an CXXBindReferenceExpr (not used just yet). | Anders Carlsson | 2010-01-29 | 1 | -0/+2 |
| * | Use CharUnits for alignment in EmitNullInitializationLValue(). | Ken Dyck | 2010-01-26 | 1 | -2/+2 |
| * | Roll out ASTContext::getTypeSizeInChars(), replacing instances of | Ken Dyck | 2010-01-11 | 1 | -3/+3 |