1. 7a614d8 Implement support for C++11 in-class initialization of non-static data members. by Richard Smith · 13 years ago
  2. e3d6cf2 Fix another regression from the "skip vtable pointer initialization" by Anders Carlsson · 13 years ago
  3. adf5dc3 Re-enable the fix for PR9181 now that all the edge cases are handled. by Anders Carlsson · 13 years ago
  4. 1493e23 Disable the optimization until the bug noticed by Sean Hunt has been fixed. by Anders Carlsson · 13 years ago
  5. ffb945f When emitting the destructor for a class with a vtable, if we can determine by Anders Carlsson · 13 years ago
  6. a2447e0 Move code to emit the callee of an CXXOperatorCallExpr out into a separate function in CGClass.cpp by Anders Carlsson · 13 years ago
  7. b76af9c Ensure that destructors are properly inovked when an exception leaves by Sean Hunt · 13 years ago
  8. d49bd55 Fix delegating constructors stylistic issues. by Sean Hunt · 13 years ago
  9. 04c9a49 Simplify code a bit by using CallArgList::add. No intended functionality change. by Eli Friedman · 13 years ago
  10. 059ce0d Fully implement delegating constructors! by Sean Hunt · 13 years ago
  11. 642a75f When block-capturing a variable with a non-trivial destructor, by John McCall · 13 years ago
  12. b924124 Replace a couple of Builder.CreateICmpEQ with Builder.CreateIsNull. No functionality change. by Anders Carlsson · 14 years ago
  13. 14c65ca [Reapply r128776, modified so that it does not break debug info.] by Ken Dyck · 14 years ago
  14. 62c117d Revert r128770, r128771, r128773 and r128776 for now. It breaks debug info. by Devang Patel · 14 years ago
  15. 4fbabd3 Change the return type of CodeGenVTables::getVirtualBaseOffsetOffset() to by Ken Dyck · 14 years ago
  16. bbf3bac Remove PHINode::reserveOperandSpace(). Instead, add a parameter to by Jay Foad · 14 years ago
  17. 4230d52 Convert the BaseOffset member of BaseSubobject to CharUnits from bits. No by Ken Dyck · 14 years ago
  18. d6fb21f Convert OffsetFromNearestVBast parameter of InitializeVTablePointer(s) to by Ken Dyck · 14 years ago
  19. 9a8ad9b Convert NonVirtual parameter of ApplyNonVirtualAndVirtualOffset() to by Ken Dyck · 14 years ago
  20. 5fff46b Convert Offset variable in GetAddressOfDirectBaseInCompleteClass() to by Ken Dyck · 14 years ago
  21. 55c0258 Change return value of ComputeNonVirtualBaseClassOffset() to CharUnits. No by Ken Dyck · 14 years ago
  22. 413ebdb Use a slightly more semantic interface for emitting call arguments. by John McCall · 14 years ago
  23. d26bc76 Use the "undergoes default argument promotion" bit on parameters to by John McCall · 14 years ago
  24. 7a17851 Get rid of the areExceptionsEnabled() getter from LangOptions. by Anders Carlsson · 14 years ago
  25. 3ee36af A constructor call should force class's debug info even if -flimit-debug-info is enabled. by Devang Patel · 14 years ago
  26. c1cfdf8 Add a LangOptions::areExceptionsEnabled and start using it. by Anders Carlsson · 14 years ago
  27. d16c2cf Reorganize CodeGen{Function,Module} to eliminate the unfortunate by John McCall · 14 years ago
  28. 771c678 Clean up of -fapple-kext abi code. No change otherwise. by Fariborz Jahanian · 14 years ago
  29. 5abec14 -fapple-kext, elimination of all direct calls to virtual dtors. by Fariborz Jahanian · 14 years ago
  30. ccd5259 -fapple-kext support for indirect call to virtuals dtors - wip. by Fariborz Jahanian · 14 years ago
  31. 1cbce12 Make emitting a VTT a two-step process, much like emitting a VTable. You first get the address of the VTT, and then pass it to EmitVTTDefinition. by Anders Carlsson · 14 years ago
  32. 336a7dc When doing a derived-to-base class through a virtual class, we don't have to get the vbase offset from the vtable if the derived class is marked final. by Anders Carlsson · 14 years ago
  33. cbb6748 Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, by Sean Hunt · 14 years ago
  34. 00eb3f9 More anonymous struct/union redesign. This one deals with anonymous field used in a constructor initializer list: by Francois Pichet · 14 years ago
  35. 3499987 Block API patch to do copy ctor of copied-in cxx objects in by Fariborz Jahanian · 14 years ago
  36. a14f597 Rename getBaseClassOffset to getBaseClassOffsetInBits and introduce a getBaseClassOffset which returns the offset in CharUnits. Do the same thing for getVBaseClassOffset. by Anders Carlsson · 14 years ago
  37. 043fb9a Factor out the code for emitting code to load vtable pointer members by Dan Gohman · 14 years ago
  38. b6bbcc9 Death to blocks, or at least the word "block" in one particular obnoxiously by John McCall · 14 years ago
  39. 7e1dff7 Currently we're initializing the vtable pointers of a class only after by John McCall · 14 years ago
  40. 558d2ab one piece of code is responsible for the lifetime of every aggregate by John McCall · 14 years ago
  41. 9f553f5 IRgen: Switch a bunch of trivial MakeAddr calls to use MakeAddrLValue. by Daniel Dunbar · 14 years ago
  42. 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
  43. f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 14 years ago
  44. 1f0fca5 Rename LazyCleanup -> Cleanup. No functionality change for these last three by John McCall · 14 years ago
  45. 81407d4 Switch the destructor for a temporary arising from a reference binding over to by John McCall · 14 years ago
  46. 50da2ca Implement proper base/member destructor EH chaining. by John McCall · 14 years ago
  47. 291ae94 Change PushDestructorCleanup to use lazy cleanups. by John McCall · 14 years ago
  48. 182ab51 Convert the EH cleanups for base and member destructors in a constructor into by John McCall · 14 years ago
  49. 59174c0 Implement zero-initialization for array new when there is an by Douglas Gregor · 14 years ago
  50. da65ea8 Teach IR generation how to lazily emit cleanups. This has a lot of advantages, by John McCall · 14 years ago
  51. 59a7000 Teach function-try-blocks on constructors and destructors to implicitly by John McCall · 14 years ago
  52. f1549f6 Validated by nightly-test runs on x86 and x86-64 darwin, including after by John McCall · 14 years ago
  53. 1d110e0 Remove unnecessary ASTContext parameter from by Douglas Gregor · 14 years ago
  54. 32f36ba Change EmitReferenceBindingToExpr to take a decl instead of a boolean. by Anders Carlsson · 14 years ago
  55. 7729136 Move GenerateCXXAggrDestructorHelper to CGDeclCXX.cpp where it belongs. by Anders Carlsson · 14 years ago
  56. 02e370a Simplify GenerateCXXAggrDestructorHelper. by Anders Carlsson · 14 years ago
  57. 0b29227 Don't intentionally try to ignore the value of a scalar expression when we by Eli Friedman · 14 years ago
  58. 2736071 Correctly pass aggregates by reference when emitting thunks. by John McCall · 14 years ago
  59. 1884eb0 Re-land the fix for PR7139. by Anders Carlsson · 14 years ago
  60. 892fa6c Unbreak self-host. by Anders Carlsson · 14 years ago
  61. db9b12e Rename CodeGenFunction::EmitMemSetToZero to EmitNullInitialization. Handle setting null data member pointers correctly. Fixes PR7139. by Anders Carlsson · 14 years ago
  62. a9976d3 When emitting an lvalue for an anonymous struct or union member during by John McCall · 14 years ago
  63. 985f739 simplify EmitAggMemberInitializer a bit and make it work in 32-bit mode, by Chris Lattner · 14 years ago
  64. fb8cc25 Reimplement code generation for copying fields in the by Douglas Gregor · 14 years ago
  65. 3d6c178 When inheriting a default argument expression, inherit the full expression, by John McCall · 14 years ago
  66. 4337396 Remove OldGetAddressOfBaseClass - bye bye ambiguities. by Anders Carlsson · 14 years ago
  67. 8246cc7 Get rid of the last caller of OldGetAddressOfBaseClass. by Anders Carlsson · 14 years ago
  68. 4235840 More work towards getting rid of OldGetAddressOfBaseClass. by Anders Carlsson · 14 years ago
  69. 77fae58 Get rid of a call to GetAddressOfDirectBaseInCompleteClass. by Anders Carlsson · 14 years ago
  70. c11bb21 Have getSubVTTIndex take a BaseSubobject instead of just a base. by Anders Carlsson · 14 years ago
  71. 314e622 Pass ForVirtualBase all the way to GetVTTParameter. by Anders Carlsson · 14 years ago
  72. 8e6404c Add the same 'ForVirtualBase' parameter to EmitCXXDestructorCall. by Anders Carlsson · 14 years ago
  73. 155ed4a Revert my last change and add a 'ForVirtualBase' parameter to EmitCXXConstructorCall instead. by Anders Carlsson · 14 years ago
  74. 24eb78e Pass the construction kind down to EmitCXXConstructorCall. by Anders Carlsson · 14 years ago
  75. 8292931 Remove another unused function. by Anders Carlsson · 14 years ago
  76. 05dd1f6 Remove an unused function. by Anders Carlsson · 14 years ago
  77. 06a9f36 Complete reimplementation of the synthesis for implicitly-defined copy by Douglas Gregor · 14 years ago
  78. bfe7e91 Simplify EmitCopyCtorCall. by Anders Carlsson · 14 years ago
  79. 43db20e Simplify EmitClassAggrMemberwiseCopy. by Anders Carlsson · 14 years ago
  80. f62756f Clean up EmitClassMemberwiseCopy further. by Anders Carlsson · 14 years ago
  81. 1d1d118 Get rid of a parameter from EmitClassMemberwiseCopy. by Anders Carlsson · 14 years ago
  82. 59b7f15 When defining implicit copy constructors, use SetBaseOrMemberInitializers to initialize the bases. by Anders Carlsson · 14 years ago
  83. 106d9ea Remove an unnecessary parameter from EmitClassCopyAssignment. by Anders Carlsson · 14 years ago
  84. c743571 Account for the VTT argument when making an implicit copy constructor for by John McCall · 14 years ago
  85. f406d9c Get the base class addresses before calling EmitClassCopyAssignment. by Anders Carlsson · 14 years ago
  86. 9ffdd45 Remove an unnecessary argument to EmitClassCopyAssignment. by Anders Carlsson · 14 years ago
  87. 9675466 Land another cleanup patch. by Anders Carlsson · 14 years ago
  88. 8e142cc Revert enough of my patches to fix self-host again :( by Anders Carlsson · 14 years ago
  89. df1147e Cleanup SynthesizeCXXCopyConstructor. by Anders Carlsson · 14 years ago
  90. 5f7cc73 Clean up SynthesizeCXXCopyAssignment a little. by Anders Carlsson · 14 years ago
  91. 8561a86 RenameGetAddressOfBaseOfCompleteClass to GetAddressOfDirectBaseInCompleteClass to reflect that it only handles direct bases. by Anders Carlsson · 14 years ago
  92. f500de5 More cleanup. by Anders Carlsson · 14 years ago
  93. 6444c41 Simplify EmitClassMemberwiseCopy now that it's only used for fields. by Anders Carlsson · 14 years ago
  94. e127abe DefineImplicitCopyConstructor now uses SetBaseOrMemberInitializers to create implicit base initializers. (Member initializers are still handled by CodeGenFunction::SynthesizeCXXCopyConstructor for now). by Anders Carlsson · 14 years ago
  95. a88ad56 Rename GetAddressOfBaseClass to OldGetAddressOfBaseClass. by Anders Carlsson · 14 years ago
  96. e04d45e Get rid of the old GetNonVirtualBaseClassOffset and change all call sites to use the new version. by Anders Carlsson · 14 years ago
  97. a04efdf Change CodeGenFunction::GetAddressOfDerivedClass to take a BasePath. by Anders Carlsson · 14 years ago
  98. fc89c31 Convert more call sites over to the new GetAddressOfBaseClass. by Anders Carlsson · 14 years ago
  99. 34a2d38 Add a new GetAddressOfBaseClass overload that takes a base path and. Use it for derived-to-base casts. by Anders Carlsson · 14 years ago
  100. c2a9b79 Comment out an assert for now. by Anders Carlsson · 14 years ago