- b6bbcc9 Death to blocks, or at least the word "block" in one particular obnoxiously by John McCall · 14 years ago
- 7e1dff7 Currently we're initializing the vtable pointers of a class only after by John McCall · 14 years ago
- 558d2ab one piece of code is responsible for the lifetime of every aggregate by John McCall · 14 years ago
- 9f553f5 IRgen: Switch a bunch of trivial MakeAddr calls to use MakeAddrLValue. by Daniel Dunbar · 14 years ago
- d67ef0e Emit a stop point for delegate constructor call. This gives user a chance to step into constructor body. by Devang Patel · 14 years ago
- f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 14 years ago
- 1f0fca5 Rename LazyCleanup -> Cleanup. No functionality change for these last three by John McCall · 14 years ago
- 81407d4 Switch the destructor for a temporary arising from a reference binding over to by John McCall · 14 years ago
- 50da2ca Implement proper base/member destructor EH chaining. by John McCall · 14 years ago
- 291ae94 Change PushDestructorCleanup to use lazy cleanups. by John McCall · 14 years ago
- 182ab51 Convert the EH cleanups for base and member destructors in a constructor into by John McCall · 14 years ago
- 59174c0 Implement zero-initialization for array new when there is an by Douglas Gregor · 14 years ago
- da65ea8 Teach IR generation how to lazily emit cleanups. This has a lot of advantages, by John McCall · 14 years ago
- 59a7000 Teach function-try-blocks on constructors and destructors to implicitly by John McCall · 14 years ago
- f1549f6 Validated by nightly-test runs on x86 and x86-64 darwin, including after by John McCall · 14 years ago
- 1d110e0 Remove unnecessary ASTContext parameter from by Douglas Gregor · 14 years ago
- 32f36ba Change EmitReferenceBindingToExpr to take a decl instead of a boolean. by Anders Carlsson · 14 years ago
- 7729136 Move GenerateCXXAggrDestructorHelper to CGDeclCXX.cpp where it belongs. by Anders Carlsson · 14 years ago
- 02e370a Simplify GenerateCXXAggrDestructorHelper. by Anders Carlsson · 14 years ago
- 0b29227 Don't intentionally try to ignore the value of a scalar expression when we by Eli Friedman · 14 years ago
- 2736071 Correctly pass aggregates by reference when emitting thunks. by John McCall · 14 years ago
- 1884eb0 Re-land the fix for PR7139. by Anders Carlsson · 14 years ago
- 892fa6c Unbreak self-host. by Anders Carlsson · 14 years ago
- db9b12e Rename CodeGenFunction::EmitMemSetToZero to EmitNullInitialization. Handle setting null data member pointers correctly. Fixes PR7139. by Anders Carlsson · 14 years ago
- a9976d3 When emitting an lvalue for an anonymous struct or union member during by John McCall · 14 years ago
- 985f739 simplify EmitAggMemberInitializer a bit and make it work in 32-bit mode, by Chris Lattner · 14 years ago
- fb8cc25 Reimplement code generation for copying fields in the by Douglas Gregor · 14 years ago
- 3d6c178 When inheriting a default argument expression, inherit the full expression, by John McCall · 15 years ago
- 4337396 Remove OldGetAddressOfBaseClass - bye bye ambiguities. by Anders Carlsson · 15 years ago
- 8246cc7 Get rid of the last caller of OldGetAddressOfBaseClass. by Anders Carlsson · 15 years ago
- 4235840 More work towards getting rid of OldGetAddressOfBaseClass. by Anders Carlsson · 15 years ago
- 77fae58 Get rid of a call to GetAddressOfDirectBaseInCompleteClass. by Anders Carlsson · 15 years ago
- c11bb21 Have getSubVTTIndex take a BaseSubobject instead of just a base. by Anders Carlsson · 15 years ago
- 314e622 Pass ForVirtualBase all the way to GetVTTParameter. by Anders Carlsson · 15 years ago
- 8e6404c Add the same 'ForVirtualBase' parameter to EmitCXXDestructorCall. by Anders Carlsson · 15 years ago
- 155ed4a Revert my last change and add a 'ForVirtualBase' parameter to EmitCXXConstructorCall instead. by Anders Carlsson · 15 years ago
- 24eb78e Pass the construction kind down to EmitCXXConstructorCall. by Anders Carlsson · 15 years ago
- 8292931 Remove another unused function. by Anders Carlsson · 15 years ago
- 05dd1f6 Remove an unused function. by Anders Carlsson · 15 years ago
- 06a9f36 Complete reimplementation of the synthesis for implicitly-defined copy by Douglas Gregor · 15 years ago
- bfe7e91 Simplify EmitCopyCtorCall. by Anders Carlsson · 15 years ago
- 43db20e Simplify EmitClassAggrMemberwiseCopy. by Anders Carlsson · 15 years ago
- f62756f Clean up EmitClassMemberwiseCopy further. by Anders Carlsson · 15 years ago
- 1d1d118 Get rid of a parameter from EmitClassMemberwiseCopy. by Anders Carlsson · 15 years ago
- 59b7f15 When defining implicit copy constructors, use SetBaseOrMemberInitializers to initialize the bases. by Anders Carlsson · 15 years ago
- 106d9ea Remove an unnecessary parameter from EmitClassCopyAssignment. by Anders Carlsson · 15 years ago
- c743571 Account for the VTT argument when making an implicit copy constructor for by John McCall · 15 years ago
- f406d9c Get the base class addresses before calling EmitClassCopyAssignment. by Anders Carlsson · 15 years ago
- 9ffdd45 Remove an unnecessary argument to EmitClassCopyAssignment. by Anders Carlsson · 15 years ago
- 9675466 Land another cleanup patch. by Anders Carlsson · 15 years ago
- 8e142cc Revert enough of my patches to fix self-host again :( by Anders Carlsson · 15 years ago
- df1147e Cleanup SynthesizeCXXCopyConstructor. by Anders Carlsson · 15 years ago
- 5f7cc73 Clean up SynthesizeCXXCopyAssignment a little. by Anders Carlsson · 15 years ago
- 8561a86 RenameGetAddressOfBaseOfCompleteClass to GetAddressOfDirectBaseInCompleteClass to reflect that it only handles direct bases. by Anders Carlsson · 15 years ago
- f500de5 More cleanup. by Anders Carlsson · 15 years ago
- 6444c41 Simplify EmitClassMemberwiseCopy now that it's only used for fields. by Anders Carlsson · 15 years ago
- e127abe DefineImplicitCopyConstructor now uses SetBaseOrMemberInitializers to create implicit base initializers. (Member initializers are still handled by CodeGenFunction::SynthesizeCXXCopyConstructor for now). by Anders Carlsson · 15 years ago
- a88ad56 Rename GetAddressOfBaseClass to OldGetAddressOfBaseClass. by Anders Carlsson · 15 years ago
- e04d45e Get rid of the old GetNonVirtualBaseClassOffset and change all call sites to use the new version. by Anders Carlsson · 15 years ago
- a04efdf Change CodeGenFunction::GetAddressOfDerivedClass to take a BasePath. by Anders Carlsson · 15 years ago
- fc89c31 Convert more call sites over to the new GetAddressOfBaseClass. by Anders Carlsson · 15 years ago
- 34a2d38 Add a new GetAddressOfBaseClass overload that takes a base path and. Use it for derived-to-base casts. by Anders Carlsson · 15 years ago
- c2a9b79 Comment out an assert for now. by Anders Carlsson · 15 years ago
- 3e79c30 Back out r101911 and see if it makes the bots happy. by Anders Carlsson · 15 years ago
- 36fd6be Fix a bug which triggered the assertion I added yesterday. Basically, when we initialize the vtable pointer for a virtual base, and there was another path from the most derived class to another base with the same class type, we would use the wrong base. by Anders Carlsson · 15 years ago
- 9dc228a Move code to apply a non-virtual and virtual offset out into a separate function. by Anders Carlsson · 15 years ago
- b3b772e Pass the nearest virtual base decl to InitializeVTablePointers. No functionality change right now. by Anders Carlsson · 15 years ago
- 2692d82 Assert that the path from the derived to the base class in CodeGenFunction::GetAddressOfBaseClass is not ambiguous. by Anders Carlsson · 15 years ago
- 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 15 years ago
- 80638c5 Have the CXXBaseOrMemberInitializer keep track of whether an initializer initializes a virtual base or not. by Anders Carlsson · 15 years ago
- 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 15 years ago
- bfb7a1d Remove the old vtable layout code. by Anders Carlsson · 15 years ago
- 8887bdc Use the new function in EmitClassAggrMemberwiseCopy, fixing the same assert as seen in PR6628 but for arrays this time. by Anders Carlsson · 15 years ago
- 21c9ad9 Factor emitting a call to a copy constructor out into a separate function. by Anders Carlsson · 15 years ago
- 44ec82b Introduce a CXXTemporariesCleanupScope RAII object and use it to cleanup the temporaries code. by Anders Carlsson · 15 years ago
- 46bbf8d Handle default arguments when calling copy constructors for bases or members when synthesizing a copy constructor. Fixes PR6628. by Anders Carlsson · 15 years ago
- 851853d Flip the switch to always get vtables from the VTT when necessary, I've verified that clang bootstraps with this. by Anders Carlsson · 15 years ago
- 64c9eca Cleanup, no functionality change. by Anders Carlsson · 15 years ago
- 14da9de Fix another thinko, so that flags don't depend on previous bases. by Anders Carlsson · 15 years ago
- b358814 When generating base ctors/dtors, we need to lookup virtual bases using the vtable. by Anders Carlsson · 15 years ago
- c83f106 Use construction vtables when needed. This is currently guarded by -fdump-vtable-layouts since it doesn't work 100% yet :) by Anders Carlsson · 15 years ago
- 603d6d1 Reapply r99775 with a fix for a silly bug - we were setting the vtable pointer for all bases, even those without a vtable pointer :) by Anders Carlsson · 15 years ago
- 4658990 Looks like I broke self-host again :(. by Anders Carlsson · 15 years ago
- bdb8865 More improvements to setting the vtable pointer. We now no longer set the vtable pointer for non-virtual primary bases. We also do a pre-order traversal of the class hierarchy; this is necessary in order to get the right vbase offset offsets in base ctors/dtors. by Anders Carlsson · 15 years ago
- d103f9f Factor vtable pointer setting code out into a separate function. by Anders Carlsson · 15 years ago
- 94e8ee5 Revert r99612 and see if it fixes self-host. by Anders Carlsson · 15 years ago
- c2d526e Don't initialize virtual pointers for primary bases, they've already been initialized. by Anders Carlsson · 15 years ago
- 0703690 Simplify InitializeVtablePtrs in preparation of making it work with construction vtables. by Anders Carlsson · 15 years ago
- 5eea876 Use getNamedGlobal instead of getGlobalVariable. (Fixes self-host). by Anders Carlsson · 15 years ago
- 5c6c1d9 More vtable work; preparations for moving over to the new vtable layout code (finally). by Anders Carlsson · 15 years ago
- af44035 Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTableInfo class. by Anders Carlsson · 15 years ago
- bba1607 Rename getVirtualBaseOffsetIndex to getVirtualBaseOffsetOffset to reflect what it actually does. by Anders Carlsson · 15 years ago
- c0bf462 Perform two more constructor/destructor code-size optimizations: by John McCall · 15 years ago
- 9fc6a77 More refactoring around constructor/destructor code generation. by John McCall · 15 years ago
- 3b47733 Make deleting and complete dtor variants defer to other dtor variants by by John McCall · 15 years ago
- a355e07 Extract out function-body code generation into its own method. No functionality by John McCall · 15 years ago
- 2504941 IRgen optimization: cache the value of 'this' and 'vtt' instead of by John McCall · 15 years ago
- bff225e When emitting complete destructors for classes with virtual bases, compute by John McCall · 15 years ago
- 1851a12 Make sure to set vtable pointers in the destructors as well. by Anders Carlsson · 15 years ago
- 594d5e8 Call destructors for constructed bases as well. by Anders Carlsson · 15 years ago