1. 35c98cc Minor cleanup. by Eli Friedman · 16 years ago
  2. 919d5e5 Add support for thunking dtors. Oh why does this make my head hurt? by Mike Stump · 16 years ago
  3. 9953383 More exception handling improvements... WIP. by Mike Stump · 16 years ago
  4. f71d232 Reflow comments and fix 80-col violation. by Mike Stump · 16 years ago
  5. 7622cd3 Add a CovariantThunkAdjustment struct that represents the adjustments needed for a covariant thunk. by Anders Carlsson · 16 years ago
  6. a94822e Add a ThunkAdjustment struct which holds a non-virtual and a virtual adjustment offset. Start using it. General cleanup in Mangle.cpp. by Anders Carlsson · 16 years ago
  7. f6c56e2 Add VTT parameter to base ctors/dtors with virtual bases. (They aren't used yet). by Anders Carlsson · 16 years ago
  8. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 16 years ago
  9. 5656e14 Clean up the AST for while loops and fix several problems with by Douglas Gregor · 16 years ago
  10. 5d4d946 Handle cases where we're constructing an array of objects and the constructor has default arguments. by Anders Carlsson · 16 years ago
  11. 01234bb Introduce cleanup scopes for "if" statements in two places: by Douglas Gregor · 16 years ago
  12. d5782d5 Rename CleanupScope -> DelayedCleanupBlock. No functionality change. by Douglas Gregor · 16 years ago
  13. a3697c9 Handle base-to-derived casts. Will land test case shortly. by Anders Carlsson · 16 years ago
  14. a36bf8f Fix lifetime of conditional temporaries. Patch by Victor Zverovich! by Anders Carlsson · 16 years ago
  15. 44b0a3e Add an assertion to catch bad calls to EmitCallArgs. by Eli Friedman · 16 years ago
  16. 4bf8152 Missing piece of r89173. by Eli Friedman · 16 years ago
  17. 0ed303c More const is always good. by Anders Carlsson · 16 years ago
  18. c849c05 Implement most of dynamic_cast. WIP. by Mike Stump · 16 years ago
  19. c2e84ae Implement typeid for class types. by Mike Stump · 16 years ago
  20. 72c2153 Code gen for arrady delete operator. Fixes pr5472. by Fariborz Jahanian · 16 years ago
  21. 444be73 Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated. by Daniel Dunbar · 16 years ago
  22. 566abee Add a special BuildVirtualCall that's going to be used for building calls to destructors. This is needed because when compiling: by Anders Carlsson · 16 years ago
  23. 88f4280 This patch implements Code gen. for destruction of global array of objects. by Fariborz Jahanian · 16 years ago
  24. 380dd75 Add vtable caching to prevent multiple vtables for the same class from by Mike Stump · 16 years ago
  25. fbfb52d Be sure to clear out VCall when we clear out VCalls. by Mike Stump · 16 years ago
  26. 909fbf7 Change EmitPointerToDataMemberLValue to take a FieldDecl. No intended functionality change. by Anders Carlsson · 16 years ago
  27. 41a124a indirectbr seems to work! Rip out the old code. by Chris Lattner · 16 years ago
  28. 7799621 This patch extends CleanupScope to support destruction by Fariborz Jahanian · 16 years ago
  29. df317bf Refine volatile handling, specifically, we must have the canonical by Mike Stump · 16 years ago
  30. c902d22 Refine return value adjustments for thunks. by Mike Stump · 16 years ago
  31. 756b5c4 Add CGException.cpp, to be used for exception related code generation. by Anders Carlsson · 16 years ago
  32. d8ee95f optimize out some ifdefs. by Chris Lattner · 16 years ago
  33. d9becd1 Implement clang support for indirect branch and address of label by Chris Lattner · 16 years ago
  34. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 16 years ago
  35. 8bfd31f Complete code gen for '.*' binary expression for both scalar and aggregates. by Fariborz Jahanian · 16 years ago
  36. a636299 Code gen for pointer-to-datamember - WIP. by Fariborz Jahanian · 16 years ago
  37. ea26cb5 Prep work to always preallocate BlockDeclRefExprs so that we can by Mike Stump · 16 years ago
  38. 48620ba Code-gen for CXXZeroInitValueExpr AST passed by Fariborz Jahanian · 16 years ago
  39. 259e9cc Twinify CodeGenFunction::CreateTempAlloca by Daniel Dunbar · 16 years ago
  40. 3d00fdc reimplement codegen for indirect goto with the following advantages: by Chris Lattner · 16 years ago
  41. 2f1986b Change GetAddressCXXOfBaseClass to use CXXBasePaths for calculating base class offsets. Fix the code to handle virtual bases as well. by Anders Carlsson · 16 years ago
  42. 375c31c Implement code generation of member function pointer calls. Fixes PR5121. by Anders Carlsson · 16 years ago
  43. 2b35835 Move some functions from CodeGenFunctions to CodeGenModule so they can be used by CGExprConstant. by Anders Carlsson · 16 years ago
  44. 84080ec Handle CK_BaseToDerivedMemberPointer for member function pointers. Fixes PR5091. by Anders Carlsson · 16 years ago
  45. 6815e94 CodeGen for try statements. (We just emit the body for now). by Anders Carlsson · 16 years ago
  46. 0953e76 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 16 years ago
  47. 569c1f4 Add a new variant of EmitCXXAggrConstructorCall that takes a Value that holds the number of elements to construct, to be used when implementing new[]. by Anders Carlsson · 16 years ago
  48. 6fcec8b Code generation of Conditional operators that are lvalues (but that aren't bitfields). by Anders Carlsson · 16 years ago
  49. de1d26b Remove an unnecessary FunctionDecl parameter to the synthesizing functions. by Anders Carlsson · 16 years ago
  50. b9ea0b5 Implement CodeGenFunction::EmitCXXExprWithTemporariesLValue. by Anders Carlsson · 16 years ago
  51. 5a0f49e Rename AddressCXXOfBaseClass to GetAddressCXXOfBaseClass. Add a NullCheckValue argument (currently unused). by Anders Carlsson · 16 years ago
  52. 7dfa407 For __block variables, cache the LLVM types as well as which LLVM field where the variable is stored. by Anders Carlsson · 16 years ago
  53. 6e319f6 Add basic covariant thunk generation support. WIP. by Mike Stump · 16 years ago
  54. 0ff8baf Pass GlobalDecls to GenerateCode and StartFunction. by Anders Carlsson · 16 years ago
  55. 0aebc81 If a cast expression needs either a conversion function or a constructor to be called, generate implicit child expressions that call them. by Anders Carlsson · 16 years ago
  56. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
  57. 9ad5513 Make BuildByRefType take a ValueDecl instead of a QualType and an alignment. by Anders Carlsson · 16 years ago
  58. 77ca8f6 Install thunks later to fixup overrides. Track space taken by vbase by Mike Stump · 16 years ago
  59. ed032eb Add overidding for methods for vtable building for the secondary by Mike Stump · 16 years ago
  60. 08c3213 Re-implemented generation of objc_memmove_collectable by Fariborz Jahanian · 16 years ago
  61. 64e690e ir-gen for type convesion of class objects. WIP. by Fariborz Jahanian · 16 years ago
  62. f0070db Implement virtual dispatch. :-) This is self-consistent with clang, by Mike Stump · 16 years ago
  63. eb1a1b6 Revert r80064 since it broke the build. by Anders Carlsson · 16 years ago
  64. 78e7d3a Implement virtual dispatch. :-) This is self-consistent with clang, but not yet by Mike Stump · 16 years ago
  65. 2d82719 Remove dead code by Anders Carlsson · 16 years ago
  66. c28bbc2 Patch to ir-gen copy assigning array members when synthesizing by Fariborz Jahanian · 16 years ago
  67. eb0b6d5 Patch to provide ir-gen support in copying array members by Fariborz Jahanian · 16 years ago
  68. f800f6c ir-gen patch to destruct array members. WIP. by Fariborz Jahanian · 16 years ago
  69. 09105f5 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 16 years ago
  70. 288dcaf ir-gen for constructing arrays as non-static data members. WIP. by Fariborz Jahanian · 16 years ago
  71. b3d8837 Add some documentation. by Mike Stump · 16 years ago
  72. 32f3701 Cleanups. Move GenerateRtti to CodeGenModule. by Mike Stump · 16 years ago
  73. 109b13d Move the rest of the vtable building code into the new builder. by Mike Stump · 16 years ago
  74. 154440e Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. by Fariborz Jahanian · 16 years ago
  75. 0880bac Patch to 1) synthesizing non-trivial default destructor when by Fariborz Jahanian · 16 years ago
  76. 60e282c Improve handling of delete expressions. by Anders Carlsson · 16 years ago
  77. 14c5cbf Add an IsInitializer flag to EmitAnyExpr. This is used to prevent temporaries from being destroyed when they're bound to a reference variable. by Anders Carlsson · 16 years ago
  78. 276b9f1 Cleanups and fixups for calculating the virtual base offsets. WIP. by Mike Stump · 16 years ago
  79. bbed6b9 Fix for PR4721: adjust CodeGen and ASTContext so that we have a by Eli Friedman · 16 years ago
  80. 4ef9809 Refine vtable layout for virtual bases and keep better track of primaries. WIP. by Mike Stump · 16 years ago
  81. 0032b27 Update for LLVM API change. by Owen Anderson · 16 years ago
  82. 0270b8a More toward synthesizing copy assignments. SWIP. by Fariborz Jahanian · 16 years ago
  83. 4c3aedd Refactor. WIP. Eventually, this will all go into a vtable builder class. by Mike Stump · 16 years ago
  84. bc16aea Refactor. by Mike Stump · 16 years ago
  85. 2198ba1 Patch for synthesizing copy assignment operator. WIP. by Fariborz Jahanian · 16 years ago
  86. 4ffe91e Refine vtable building for the secondary vtables to exclude yet more by Mike Stump · 16 years ago
  87. f21efe9 LLVMContext is a class now. by Benjamin Kramer · 16 years ago
  88. 06f598a minor refactoring. No change otherwise. by Fariborz Jahanian · 16 years ago
  89. 942f4f3 ir-gen for initialization, in synthesize copy constructor, by Fariborz Jahanian · 16 years ago
  90. 89ed31d Add support for global initializers. by Anders Carlsson · 16 years ago
  91. 3b2e16b Refactor some code and implement support for global destructors for static variables. by Anders Carlsson · 16 years ago
  92. 8c241a2 Refactoring of copy ctor ir-gen. No change in functionality. by Fariborz Jahanian · 16 years ago
  93. ca28361 Synthesized copy constructor now generates code for by Fariborz Jahanian · 16 years ago
  94. 97a9375 More synthesis of copy constructors. Work in progress. by Fariborz Jahanian · 16 years ago
  95. 02cf1e2 Add support for vcall generation for vtables for virtual bases. WIP. by Mike Stump · 16 years ago
  96. e1be2b1 Also generate the rtti field for virtual bases for vtables. Turn on by Mike Stump · 16 years ago
  97. 8a12b56 More layout for virtual tables for virtual bases. Still in progress. by Mike Stump · 16 years ago
  98. 47a434f Update for LLVM API change. by Owen Anderson · 16 years ago
  99. 738f8c2 Add beginnigs of rtti generation, wire up more of -fno-exceptions. by Mike Stump · 16 years ago
  100. f121677 Add code to setup the vtable pointer in the constructor. Work in progress. by Mike Stump · 16 years ago