1. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 14 years ago
  2. bfb7a1d Remove the old vtable layout code. by Anders Carlsson · 14 years ago
  3. 8887bdc Use the new function in EmitClassAggrMemberwiseCopy, fixing the same assert as seen in PR6628 but for arrays this time. by Anders Carlsson · 14 years ago
  4. 21c9ad9 Factor emitting a call to a copy constructor out into a separate function. by Anders Carlsson · 14 years ago
  5. 44ec82b Introduce a CXXTemporariesCleanupScope RAII object and use it to cleanup the temporaries code. by Anders Carlsson · 14 years ago
  6. 46bbf8d Handle default arguments when calling copy constructors for bases or members when synthesizing a copy constructor. Fixes PR6628. by Anders Carlsson · 14 years ago
  7. 851853d Flip the switch to always get vtables from the VTT when necessary, I've verified that clang bootstraps with this. by Anders Carlsson · 14 years ago
  8. 64c9eca Cleanup, no functionality change. by Anders Carlsson · 14 years ago
  9. 14da9de Fix another thinko, so that flags don't depend on previous bases. by Anders Carlsson · 14 years ago
  10. b358814 When generating base ctors/dtors, we need to lookup virtual bases using the vtable. by Anders Carlsson · 14 years ago
  11. c83f106 Use construction vtables when needed. This is currently guarded by -fdump-vtable-layouts since it doesn't work 100% yet :) by Anders Carlsson · 14 years ago
  12. 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 · 14 years ago
  13. 4658990 Looks like I broke self-host again :(. by Anders Carlsson · 14 years ago
  14. 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 · 14 years ago
  15. d103f9f Factor vtable pointer setting code out into a separate function. by Anders Carlsson · 14 years ago
  16. 94e8ee5 Revert r99612 and see if it fixes self-host. by Anders Carlsson · 14 years ago
  17. c2d526e Don't initialize virtual pointers for primary bases, they've already been initialized. by Anders Carlsson · 14 years ago
  18. 0703690 Simplify InitializeVtablePtrs in preparation of making it work with construction vtables. by Anders Carlsson · 14 years ago
  19. 5eea876 Use getNamedGlobal instead of getGlobalVariable. (Fixes self-host). by Anders Carlsson · 14 years ago
  20. 5c6c1d9 More vtable work; preparations for moving over to the new vtable layout code (finally). by Anders Carlsson · 14 years ago
  21. af44035 Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTableInfo class. by Anders Carlsson · 14 years ago
  22. bba1607 Rename getVirtualBaseOffsetIndex to getVirtualBaseOffsetOffset to reflect what it actually does. by Anders Carlsson · 14 years ago
  23. c0bf462 Perform two more constructor/destructor code-size optimizations: by John McCall · 15 years ago
  24. 9fc6a77 More refactoring around constructor/destructor code generation. by John McCall · 15 years ago
  25. 3b47733 Make deleting and complete dtor variants defer to other dtor variants by by John McCall · 15 years ago
  26. a355e07 Extract out function-body code generation into its own method. No functionality by John McCall · 15 years ago
  27. 2504941 IRgen optimization: cache the value of 'this' and 'vtt' instead of by John McCall · 15 years ago
  28. bff225e When emitting complete destructors for classes with virtual bases, compute by John McCall · 15 years ago
  29. 1851a12 Make sure to set vtable pointers in the destructors as well. by Anders Carlsson · 15 years ago
  30. 594d5e8 Call destructors for constructed bases as well. by Anders Carlsson · 15 years ago
  31. 9405dcd If a constructor throws an exception we need to execute the destructors for all fully constructed members. Fixes ctor_dtor_count.cpp in the test suite. by Anders Carlsson · 15 years ago
  32. eafd1d6 Remove unused variable. by Ted Kremenek · 15 years ago
  33. 8b6bbeb Rearrange some checks to avoid call to isCopyConstructor() and clarify path by John McCall · 15 years ago
  34. 04a67a6 Standardize the parsing of function type attributes in a way that by John McCall · 15 years ago
  35. a64a869 Revert the new reference binding code; I came up with a way simpler solution for the reference binding bug that is preventing self-hosting. by Anders Carlsson · 15 years ago
  36. a78fa2c Set the correct vtable pointers _before_ generating code for any member initializers. Fixes about ~2000 clang/LLVM tests in the clang-on-clang build. by Anders Carlsson · 15 years ago
  37. 3bb9412 Simplify EmitMemberInitializer; no intended functionality change. by Eli Friedman · 15 years ago
  38. 9db7dbb Rework base and member initialization in constructors, with several by Douglas Gregor · 15 years ago
  39. 905a100 When performing a derived-to-base cast that we know will not change the offset, we don't need to null check the input pointer. Fixes PR5965. by Anders Carlsson · 15 years ago
  40. a552ea7 When doing a base-to-derived cast we don't need to null check the derived value if the class offset is 0. by Anders Carlsson · 15 years ago
  41. bb7e17b Some class related cleanup. by Anders Carlsson · 15 years ago
  42. 9cfe0ec Use EmitLValueForFieldInitialization when synthesizing the copy ctor as well. by Anders Carlsson · 15 years ago
  43. 06a2970 Add a new EmitLValueForFieldInitialization that will be used for initializing fields (and reference type fields in particular). by Anders Carlsson · 15 years ago
  44. e6d2a53 Simplify EmitLValueForField - we can get whether the field is part of a union or not from the FieldDecl (through its DeclContext). by Anders Carlsson · 15 years ago
  45. 8a850ba Fix a couple bugs in copy assignment operator synthesis. by Eli Friedman · 15 years ago
  46. 21431c5 Move address points to CGVtableInfo, no functionality change. by Anders Carlsson · 15 years ago
  47. c997d42 Correctly pass VTT parameters to constructors and destructors. The VTTs aren't yet used in the ctors/dtors, but that will follow. by Anders Carlsson · 15 years ago
  48. 3b5ad22 Move a few more functions away from CGCXX and to CGClass and CGExprCXX. by Anders Carlsson · 15 years ago
  49. 607d037 Move a bunch of class related functions to CGClass.cpp, no functionality change. by Anders Carlsson · 15 years ago
  50. 9fcfc42 Add CodeGenModule::ComputeThunkAdjustment, which Eli wrote. by Anders Carlsson · 15 years ago
  51. fa3e82b Tests now pass with the assertion. by Eli Friedman · 15 years ago
  52. 8432f25 Add a much more thorough test of casts to virtual bases, and fix by Eli Friedman · 15 years ago
  53. 5b95592 Get rid of the ugly CGCXX names and replace them with CGClass, CGExprCXX and CGTemporaries. by Anders Carlsson · 15 years ago[Renamed (99%) from lib/CodeGen/CGCXXClass.cpp]
  54. a3697c9 Handle base-to-derived casts. Will land test case shortly. by Anders Carlsson · 15 years ago
  55. a660440 This falls into the category of stupid pet tricks. I hate to do this, by Mike Stump · 15 years ago
  56. 4a5dc24 Revert r86741; it doesn't handle virtual bases correctly. by Eli Friedman · 15 years ago
  57. db380b4 Minor optimization to skip null check in generated code where it isn't by Eli Friedman · 15 years ago
  58. 3c0ef8c Simplify pointer creation with the new Type::getInt*Ptr methods. by Benjamin Kramer · 15 years ago
  59. 2f1986b Change GetAddressCXXOfBaseClass to use CXXBasePaths for calculating base class offsets. Fix the code to handle virtual bases as well. by Anders Carlsson · 15 years ago
  60. 2b35835 Move some functions from CodeGenFunctions to CodeGenModule so they can be used by CGExprConstant. by Anders Carlsson · 15 years ago
  61. 84080ec Handle CK_BaseToDerivedMemberPointer for member function pointers. Fixes PR5091. by Anders Carlsson · 15 years ago
  62. dfd0330 When doing a derived-to-base class and the class offset is 0 we can just do a simple bitcast. by Anders Carlsson · 15 years ago
  63. 32baf62 When necessary, null check the base value in GetAddressCXXOfBaseClass. by Anders Carlsson · 15 years ago
  64. 5d58a1d Whoops, add CGCXXClass.cpp by Anders Carlsson · 15 years ago