1. 195337d IRgen: Add CreateMemTemp, for creating an temporary memory object for a particular type, and flood fill. - CreateMemTemp sets the alignment on the alloca correctly, which fixes a great many places in IRgen where we were doing the wrong thing. by Daniel Dunbar · 14 years ago
  2. f6b89a1 Use the right linkage for static variables inside C++ inline functions. by Anders Carlsson · 14 years ago
  3. 18aba0d IRgen: Factor out EmitAggExprToLValue. by Daniel Dunbar · 14 years ago
  4. 72119a8 Rename StartConditionalBranch/FinishConditionalBranch to BeginConditionalBranch/EndConditionalBranch. by Anders Carlsson · 14 years ago
  5. 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 · 14 years ago
  6. 45147d0 Move pointer to data member emission to CodeGenModule and use it in CGExprConstant. Fixes PR5674. by Anders Carlsson · 14 years ago
  7. 3aba093 Start creating CXXBindReferenceExpr nodes when binding complex types to references. by Anders Carlsson · 14 years ago
  8. bb7e17b Some class related cleanup. by Anders Carlsson · 14 years ago
  9. 06a2970 Add a new EmitLValueForFieldInitialization that will be used for initializing fields (and reference type fields in particular). by Anders Carlsson · 15 years ago
  10. 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
  11. 30a8a27 Use CharUnits for alignments in character units. by Ken Dyck · 15 years ago
  12. 08e9e45 Fix a nasty bug where temporaries weren't marked as being conditional in some cases. by Anders Carlsson · 15 years ago
  13. 199c3d6 Roll out ASTContext::getTypeSizeInChars(), replacing instances of by Ken Dyck · 15 years ago
  14. dd36d32 refactor pre/postinc logic into CGF and require the caller to pass in the by Chris Lattner · 15 years ago
  15. 6c6bda3 Fix for PR5967: Make const-marking for LLVM globals correct for cases requiring by Eli Friedman · 15 years ago
  16. 696f87b Get rid of more dead code. by Eli Friedman · 15 years ago
  17. 21431c5 Move address points to CGVtableInfo, no functionality change. by Anders Carlsson · 15 years ago
  18. 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
  19. a1736c0 Pass the return value slot to all call exprs. by Anders Carlsson · 15 years ago
  20. d2490a9 Fill in the return value slot in CGExprAgg::VisitCallExpr. This takes us halfway towards fixing PR5824. by Anders Carlsson · 15 years ago
  21. f3c47c9 Pass ReturnValueSlot to EmitCall. No functionality change yet. by Anders Carlsson · 15 years ago
  22. 31777a2 Add a ReturnValueSlot class. Change the argument order in EmitCall to match the other overload better. by Anders Carlsson · 15 years ago
  23. e12e77b Work in progress for setting the vtable pointers for all bases correctly in by Eli Friedman · 15 years ago
  24. b14e62d Implement additional undefined checks for additional loads and stores. WIP. by Mike Stump · 15 years ago
  25. 15037ca Switch codegen for -fcatch-undefined-bahavior over to __builtin_trap by Mike Stump · 15 years ago
  26. be07f60 Add support for detecting undefined shift behavior. WIP. by Mike Stump · 15 years ago
  27. 9c276ae Implement runtime checks for undefined behavior. WIP. by Mike Stump · 15 years ago
  28. 9406705 Get rid of static variable. by Eli Friedman · 15 years ago
  29. 182f383 Ensure we only generate one terminate handler. by Mike Stump · 15 years ago
  30. 20d3a53 Add terminate handler to cleanups on exceptional edges. by Mike Stump · 15 years ago
  31. 820bca4 Code gen for ObjCIsaExpr AST used as lvalue. (fixes radar 7457534). by Fariborz Jahanian · 15 years ago
  32. 9b39c51 Break out code for reuse. WIP. by Mike Stump · 15 years ago
  33. d88ea56 Add cleanups for exceptional edges. WIP. by Mike Stump · 15 years ago
  34. 77a259c Fix for PR5707: make sure implicit copy constructors initialize the vtable by Eli Friedman · 15 years ago
  35. cce3d4f Add codegen support for exception specifications. WIP. by Mike Stump · 15 years ago
  36. 761acc1 implement rdar://7346691 by codegen'ing struct/array initializers by Chris Lattner · 15 years ago
  37. 6a1e0eb Add support for function try blocks. by Mike Stump · 15 years ago
  38. b17daf9 Make functions returning a struct indirectly evaluate the returned struct by Eli Friedman · 15 years ago
  39. 35c98cc Minor cleanup. by Eli Friedman · 15 years ago
  40. 919d5e5 Add support for thunking dtors. Oh why does this make my head hurt? by Mike Stump · 15 years ago
  41. 9953383 More exception handling improvements... WIP. by Mike Stump · 15 years ago
  42. f71d232 Reflow comments and fix 80-col violation. by Mike Stump · 15 years ago
  43. 7622cd3 Add a CovariantThunkAdjustment struct that represents the adjustments needed for a covariant thunk. by Anders Carlsson · 15 years ago
  44. 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 · 15 years ago
  45. f6c56e2 Add VTT parameter to base ctors/dtors with virtual bases. (They aren't used yet). by Anders Carlsson · 15 years ago
  46. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 15 years ago
  47. 5656e14 Clean up the AST for while loops and fix several problems with by Douglas Gregor · 15 years ago
  48. 5d4d946 Handle cases where we're constructing an array of objects and the constructor has default arguments. by Anders Carlsson · 15 years ago
  49. 01234bb Introduce cleanup scopes for "if" statements in two places: by Douglas Gregor · 15 years ago
  50. d5782d5 Rename CleanupScope -> DelayedCleanupBlock. No functionality change. by Douglas Gregor · 15 years ago
  51. a3697c9 Handle base-to-derived casts. Will land test case shortly. by Anders Carlsson · 15 years ago
  52. a36bf8f Fix lifetime of conditional temporaries. Patch by Victor Zverovich! by Anders Carlsson · 15 years ago
  53. 44b0a3e Add an assertion to catch bad calls to EmitCallArgs. by Eli Friedman · 15 years ago
  54. 4bf8152 Missing piece of r89173. by Eli Friedman · 15 years ago
  55. 0ed303c More const is always good. by Anders Carlsson · 15 years ago
  56. c849c05 Implement most of dynamic_cast. WIP. by Mike Stump · 15 years ago
  57. c2e84ae Implement typeid for class types. by Mike Stump · 15 years ago
  58. 72c2153 Code gen for arrady delete operator. Fixes pr5472. by Fariborz Jahanian · 15 years ago
  59. 444be73 Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated. by Daniel Dunbar · 15 years ago
  60. 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 · 15 years ago
  61. 88f4280 This patch implements Code gen. for destruction of global array of objects. by Fariborz Jahanian · 15 years ago
  62. 380dd75 Add vtable caching to prevent multiple vtables for the same class from by Mike Stump · 15 years ago
  63. fbfb52d Be sure to clear out VCall when we clear out VCalls. by Mike Stump · 15 years ago
  64. 909fbf7 Change EmitPointerToDataMemberLValue to take a FieldDecl. No intended functionality change. by Anders Carlsson · 15 years ago
  65. 41a124a indirectbr seems to work! Rip out the old code. by Chris Lattner · 15 years ago
  66. 7799621 This patch extends CleanupScope to support destruction by Fariborz Jahanian · 15 years ago
  67. df317bf Refine volatile handling, specifically, we must have the canonical by Mike Stump · 15 years ago
  68. c902d22 Refine return value adjustments for thunks. by Mike Stump · 15 years ago
  69. 756b5c4 Add CGException.cpp, to be used for exception related code generation. by Anders Carlsson · 15 years ago
  70. d8ee95f optimize out some ifdefs. by Chris Lattner · 15 years ago
  71. d9becd1 Implement clang support for indirect branch and address of label by Chris Lattner · 15 years ago
  72. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 15 years ago
  73. 8bfd31f Complete code gen for '.*' binary expression for both scalar and aggregates. by Fariborz Jahanian · 15 years ago
  74. a636299 Code gen for pointer-to-datamember - WIP. by Fariborz Jahanian · 15 years ago
  75. ea26cb5 Prep work to always preallocate BlockDeclRefExprs so that we can by Mike Stump · 15 years ago
  76. 48620ba Code-gen for CXXZeroInitValueExpr AST passed by Fariborz Jahanian · 15 years ago
  77. 259e9cc Twinify CodeGenFunction::CreateTempAlloca by Daniel Dunbar · 15 years ago
  78. 3d00fdc reimplement codegen for indirect goto with the following advantages: by Chris Lattner · 15 years ago
  79. 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
  80. 375c31c Implement code generation of member function pointer calls. Fixes PR5121. by Anders Carlsson · 15 years ago
  81. 2b35835 Move some functions from CodeGenFunctions to CodeGenModule so they can be used by CGExprConstant. by Anders Carlsson · 15 years ago
  82. 84080ec Handle CK_BaseToDerivedMemberPointer for member function pointers. Fixes PR5091. by Anders Carlsson · 15 years ago
  83. 6815e94 CodeGen for try statements. (We just emit the body for now). by Anders Carlsson · 15 years ago
  84. 0953e76 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 15 years ago
  85. 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 · 15 years ago
  86. 6fcec8b Code generation of Conditional operators that are lvalues (but that aren't bitfields). by Anders Carlsson · 15 years ago
  87. de1d26b Remove an unnecessary FunctionDecl parameter to the synthesizing functions. by Anders Carlsson · 15 years ago
  88. b9ea0b5 Implement CodeGenFunction::EmitCXXExprWithTemporariesLValue. by Anders Carlsson · 15 years ago
  89. 5a0f49e Rename AddressCXXOfBaseClass to GetAddressCXXOfBaseClass. Add a NullCheckValue argument (currently unused). by Anders Carlsson · 15 years ago
  90. 7dfa407 For __block variables, cache the LLVM types as well as which LLVM field where the variable is stored. by Anders Carlsson · 15 years ago
  91. 6e319f6 Add basic covariant thunk generation support. WIP. by Mike Stump · 15 years ago
  92. 0ff8baf Pass GlobalDecls to GenerateCode and StartFunction. by Anders Carlsson · 15 years ago
  93. 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 · 15 years ago
  94. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  95. 9ad5513 Make BuildByRefType take a ValueDecl instead of a QualType and an alignment. by Anders Carlsson · 15 years ago
  96. 77ca8f6 Install thunks later to fixup overrides. Track space taken by vbase by Mike Stump · 15 years ago
  97. ed032eb Add overidding for methods for vtable building for the secondary by Mike Stump · 15 years ago
  98. 08c3213 Re-implemented generation of objc_memmove_collectable by Fariborz Jahanian · 15 years ago
  99. 64e690e ir-gen for type convesion of class objects. WIP. by Fariborz Jahanian · 15 years ago
  100. f0070db Implement virtual dispatch. :-) This is self-consistent with clang, by Mike Stump · 15 years ago