1. 3f6f9fe Implement additional undefined checks for additional loads and stores. WIP. by Mike Stump · 16 years ago
  2. e8c3b3e Switch codegen for -fcatch-undefined-bahavior over to __builtin_trap by Mike Stump · 16 years ago
  3. ba6a0c4 Add support for detecting undefined shift behavior. WIP. by Mike Stump · 16 years ago
  4. d954638 Implement runtime checks for undefined behavior. WIP. by Mike Stump · 16 years ago
  5. d5bc94e Get rid of static variable. by Eli Friedman · 16 years ago
  6. f5cbb08 Ensure we only generate one terminate handler. by Mike Stump · 16 years ago
  7. 1025307 Add terminate handler to cleanups on exceptional edges. by Mike Stump · 16 years ago
  8. 531c16f Code gen for ObjCIsaExpr AST used as lvalue. (fixes radar 7457534). by Fariborz Jahanian · 16 years ago
  9. 2b48887 Break out code for reuse. WIP. by Mike Stump · 16 years ago
  10. aff69af Add cleanups for exceptional edges. WIP. by Mike Stump · 16 years ago
  11. bb5008a Fix for PR5707: make sure implicit copy constructors initialize the vtable by Eli Friedman · 16 years ago
  12. 1d84921 Add codegen support for exception specifications. WIP. by Mike Stump · 16 years ago
  13. e99c110 implement rdar://7346691 by codegen'ing struct/array initializers by Chris Lattner · 16 years ago
  14. bee78dd Add support for function try blocks. by Mike Stump · 16 years ago
  15. 4b1942c Make functions returning a struct indirectly evaluate the returned struct by Eli Friedman · 16 years ago
  16. 551fe84 Minor cleanup. by Eli Friedman · 16 years ago
  17. e2d4a2c Add support for thunking dtors. Oh why does this make my head hurt? by Mike Stump · 16 years ago
  18. 3327021 More exception handling improvements... WIP. by Mike Stump · 16 years ago
  19. e5311b0 Reflow comments and fix 80-col violation. by Mike Stump · 16 years ago
  20. 2f87c4f Add a CovariantThunkAdjustment struct that represents the adjustments needed for a covariant thunk. by Anders Carlsson · 16 years ago
  21. c778540 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
  22. 82ba57c Add VTT parameter to base ctors/dtors with virtual bases. (They aren't used yet). by Anders Carlsson · 16 years ago
  23. 7bab5ff Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 16 years ago
  24. 680f861 Clean up the AST for while loops and fix several problems with by Douglas Gregor · 16 years ago
  25. 3a202f6 Handle cases where we're constructing an array of objects and the constructor has default arguments. by Anders Carlsson · 16 years ago
  26. 965f450 Introduce cleanup scopes for "if" statements in two places: by Douglas Gregor · 16 years ago
  27. 48a409e Rename CleanupScope -> DelayedCleanupBlock. No functionality change. by Douglas Gregor · 16 years ago
  28. 8c79317 Handle base-to-derived casts. Will land test case shortly. by Anders Carlsson · 16 years ago
  29. 0a66c26 Fix lifetime of conditional temporaries. Patch by Victor Zverovich! by Anders Carlsson · 16 years ago
  30. 794290c Add an assertion to catch bad calls to EmitCallArgs. by Eli Friedman · 16 years ago
  31. 24f5543 Missing piece of r89173. by Eli Friedman · 16 years ago
  32. cfd3012 More const is always good. by Anders Carlsson · 16 years ago
  33. 6551170 Implement most of dynamic_cast. WIP. by Mike Stump · 16 years ago
  34. c9b231c Implement typeid for class types. by Mike Stump · 16 years ago
  35. 6814eaa Code gen for arrady delete operator. Fixes pr5472. by Fariborz Jahanian · 16 years ago
  36. 1b44419 Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated. by Daniel Dunbar · 16 years ago
  37. e828c36 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
  38. 1254a09 This patch implements Code gen. for destruction of global array of objects. by Fariborz Jahanian · 16 years ago
  39. d846d08 Add vtable caching to prevent multiple vtables for the same class from by Mike Stump · 16 years ago
  40. 9f23a14 Be sure to clear out VCall when we clear out VCalls. by Mike Stump · 16 years ago
  41. 509850e Change EmitPointerToDataMemberLValue to take a FieldDecl. No intended functionality change. by Anders Carlsson · 16 years ago
  42. 4f24225 indirectbr seems to work! Rip out the old code. by Chris Lattner · 16 years ago
  43. 09cc10f This patch extends CleanupScope to support destruction by Fariborz Jahanian · 16 years ago
  44. 53f9ded Refine volatile handling, specifically, we must have the canonical by Mike Stump · 16 years ago
  45. 7773820 Refine return value adjustments for thunks. by Mike Stump · 16 years ago
  46. 4b08db7 Add CGException.cpp, to be used for exception related code generation. by Anders Carlsson · 16 years ago
  47. edc56ef optimize out some ifdefs. by Chris Lattner · 16 years ago
  48. 6c4d255 Implement clang support for indirect branch and address of label by Chris Lattner · 16 years ago
  49. 4bd90e5 Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 16 years ago
  50. ffba662 Complete code gen for '.*' binary expression for both scalar and aggregates. by Fariborz Jahanian · 16 years ago
  51. 4ebdff5 Code gen for pointer-to-datamember - WIP. by Fariborz Jahanian · 16 years ago
  52. 7fe9cc1 Prep work to always preallocate BlockDeclRefExprs so that we can by Mike Stump · 16 years ago
  53. e4d94ce Code-gen for CXXZeroInitValueExpr AST passed by Fariborz Jahanian · 16 years ago
  54. b5aacc2 Twinify CodeGenFunction::CreateTempAlloca by Daniel Dunbar · 16 years ago
  55. 2bb5cb4 reimplement codegen for indirect goto with the following advantages: by Chris Lattner · 16 years ago
  56. c6d171e 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
  57. 2ee3c01 Implement code generation of member function pointer calls. Fixes PR5121. by Anders Carlsson · 16 years ago
  58. 32bfb1c Move some functions from CodeGenFunctions to CodeGenModule so they can be used by CGExprConstant. by Anders Carlsson · 16 years ago
  59. 9150a2a Handle CK_BaseToDerivedMemberPointer for member function pointers. Fixes PR5091. by Anders Carlsson · 16 years ago
  60. 52d78a5 CodeGen for try statements. (We just emit the body for now). by Anders Carlsson · 16 years ago
  61. 8ccfcb5 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 16 years ago
  62. d49844b 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
  63. 1450adb Code generation of Conditional operators that are lvalues (but that aren't bitfields). by Anders Carlsson · 16 years ago
  64. ddf57d3 Remove an unnecessary FunctionDecl parameter to the synthesizing functions. by Anders Carlsson · 16 years ago
  65. 96bad9a Implement CodeGenFunction::EmitCXXExprWithTemporariesLValue. by Anders Carlsson · 16 years ago
  66. 864d525 Rename AddressCXXOfBaseClass to GetAddressCXXOfBaseClass. Add a NullCheckValue argument (currently unused). by Anders Carlsson · 16 years ago
  67. 0168f4b For __block variables, cache the LLVM types as well as which LLVM field where the variable is stored. by Anders Carlsson · 16 years ago
  68. 80f6ac5 Add basic covariant thunk generation support. WIP. by Mike Stump · 16 years ago
  69. 73fcc95 Pass GlobalDecls to GenerateCode and StartFunction. by Anders Carlsson · 16 years ago
  70. e9766d5 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
  71. 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
  72. 71d1d92 Make BuildByRefType take a ValueDecl instead of a QualType and an alignment. by Anders Carlsson · 16 years ago
  73. 453fe42 Install thunks later to fixup overrides. Track space taken by vbase by Mike Stump · 16 years ago
  74. 5a52235 Add overidding for methods for vtable building for the secondary by Mike Stump · 16 years ago
  75. 879d726 Re-implemented generation of objc_memmove_collectable by Fariborz Jahanian · 16 years ago
  76. c71f094 ir-gen for type convesion of class objects. WIP. by Fariborz Jahanian · 16 years ago
  77. a5588bf Implement virtual dispatch. :-) This is self-consistent with clang, by Mike Stump · 16 years ago
  78. 458055a Revert r80064 since it broke the build. by Anders Carlsson · 16 years ago
  79. fbddfda Implement virtual dispatch. :-) This is self-consistent with clang, but not yet by Mike Stump · 16 years ago
  80. 4557b2c Remove dead code by Anders Carlsson · 16 years ago
  81. 8adc973 Patch to ir-gen copy assigning array members when synthesizing by Fariborz Jahanian · 16 years ago
  82. 5626384 Patch to provide ir-gen support in copying array members by Fariborz Jahanian · 16 years ago
  83. 9c83720 ir-gen patch to destruct array members. WIP. by Fariborz Jahanian · 16 years ago
  84. 9a84665 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 16 years ago
  85. 431c883 ir-gen for constructing arrays as non-static data members. WIP. by Fariborz Jahanian · 16 years ago
  86. 494c425 Add some documentation. by Mike Stump · 16 years ago
  87. 0734735 Cleanups. Move GenerateRtti to CodeGenModule. by Mike Stump · 16 years ago
  88. ee81dca Move the rest of the vtable building code into the new builder. by Mike Stump · 16 years ago
  89. 88cc234 Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. by Fariborz Jahanian · 16 years ago
  90. d172e91 Patch to 1) synthesizing non-trivial default destructor when by Fariborz Jahanian · 16 years ago
  91. 81f0df9 Improve handling of delete expressions. by Anders Carlsson · 16 years ago
  92. 5b106a7 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
  93. 22ea1f8 Cleanups and fixups for calculating the virtual base offsets. WIP. by Mike Stump · 16 years ago
  94. 04fddf0 Fix for PR4721: adjust CodeGen and ASTContext so that we have a by Eli Friedman · 16 years ago
  95. c2f591b Refine vtable layout for virtual bases and keep better track of primaries. WIP. by Mike Stump · 16 years ago
  96. 41a7502 Update for LLVM API change. by Owen Anderson · 16 years ago
  97. bbd5e8c More toward synthesizing copy assignments. SWIP. by Fariborz Jahanian · 16 years ago
  98. 938f15b Refactor. WIP. Eventually, this will all go into a vtable builder class. by Mike Stump · 16 years ago
  99. 82165ef Refactor. by Mike Stump · 16 years ago
  100. de7d4c2 Patch for synthesizing copy assignment operator. WIP. by Fariborz Jahanian · 16 years ago