1. f6c56e2 Add VTT parameter to base ctors/dtors with virtual bases. (They aren't used yet). by Anders Carlsson · 15 years ago
  2. a36bf8f Fix lifetime of conditional temporaries. Patch by Victor Zverovich! by Anders Carlsson · 15 years ago
  3. 41a124a indirectbr seems to work! Rip out the old code. by Chris Lattner · 15 years ago
  4. 5e1b918 If a member variable of reference type is bound to a temporary in its member initializer it needs to be destroyed at the end of the constructor. by Anders Carlsson · 15 years ago
  5. 4365bba Cleanup ctor/dtor emission. by Anders Carlsson · 15 years ago
  6. 7799621 This patch extends CleanupScope to support destruction by Fariborz Jahanian · 15 years ago
  7. d9becd1 Implement clang support for indirect branch and address of label by Chris Lattner · 15 years ago
  8. 85e74ac factor a creation of Int32Ty. by Chris Lattner · 15 years ago
  9. 91cc815 Fixup the return type of functions. by Mike Stump · 15 years ago
  10. 3d00fdc reimplement codegen for indirect goto with the following advantages: by Chris Lattner · 15 years ago
  11. 9329a5c number address-taken labels from 1. This allows 0 to be used as a sentinel by Chris Lattner · 15 years ago
  12. 36afd38 Use the new Type::getInt8PtrTy method. This should probably be used in a lot by Chris Lattner · 15 years ago
  13. c33e4ba Emit the destructor epilogue in a cleanup block so a return from a destructor body still calls the epilogue. by Anders Carlsson · 15 years ago
  14. 4513272 CodeGen may see out-of-line declarations of the various special member by Douglas Gregor · 15 years ago
  15. e9d34dc Improve support for member function pointers. by Anders Carlsson · 15 years ago
  16. e322f30 Make hasAggregateLLVMType use positive checks. by Anders Carlsson · 15 years ago
  17. bcdc0f0 Fix 80-col violation. by Mike Stump · 15 years ago
  18. 183700f Change all the Type::getAsFoo() methods to specializations of Type::getAs(). by John McCall · 15 years ago
  19. de1d26b Remove an unnecessary FunctionDecl parameter to the synthesizing functions. by Anders Carlsson · 15 years ago
  20. 1860a31 Pass the GlobalDecl to getMangledName, fixes PR4890. by Anders Carlsson · 15 years ago
  21. 0ff8baf Pass GlobalDecls to GenerateCode and StartFunction. by Anders Carlsson · 15 years ago
  22. 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
  23. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  24. 383d298 Patch to ir-gen user-defined conversions used in expressions [12.3.2-p3] by Fariborz Jahanian · 15 years ago
  25. 1feade8 Regularize the case and sort. by Mike Stump · 15 years ago
  26. 2d82719 Remove dead code by Anders Carlsson · 15 years ago
  27. 0880bac Patch to 1) synthesizing non-trivial default destructor when by Fariborz Jahanian · 15 years ago
  28. bbed6b9 Fix for PR4721: adjust CodeGen and ASTContext so that we have a by Eli Friedman · 15 years ago
  29. ec18ddd minor cleanups for VLA stuff. by Chris Lattner · 15 years ago
  30. 0032b27 Update for LLVM API change. by Owen Anderson · 15 years ago
  31. 2198ba1 Patch for synthesizing copy assignment operator. WIP. by Fariborz Jahanian · 15 years ago
  32. 06f598a minor refactoring. No change otherwise. by Fariborz Jahanian · 15 years ago
  33. 237957c Improve handling of member pointers. by Anders Carlsson · 15 years ago
  34. 89ed31d Add support for global initializers. by Anders Carlsson · 15 years ago
  35. 8c241a2 Refactoring of copy ctor ir-gen. No change in functionality. by Fariborz Jahanian · 15 years ago
  36. ca28361 Synthesized copy constructor now generates code for by Fariborz Jahanian · 15 years ago
  37. 97a9375 More synthesis of copy constructors. Work in progress. by Fariborz Jahanian · 15 years ago
  38. 9889652 Patch toward synthesizing copy constructors. Work in progress. by Fariborz Jahanian · 15 years ago
  39. c9c88b4 Update for LLVM API change. by Owen Anderson · 15 years ago
  40. c7ff8e1 Synthesize the default constructor which has not been declared as needed. by Fariborz Jahanian · 15 years ago
  41. 03e2050 Update for LLVM API changes. by Owen Anderson · 15 years ago
  42. 426cc38 Patch for future ir-gen for destructor calls. by Fariborz Jahanian · 15 years ago
  43. 96e0fc7 Update for LLVM API change. by Owen Anderson · 15 years ago
  44. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  45. 4a28d5d Update for LLVM API change. by Owen Anderson · 15 years ago
  46. 42719fc Shield clang from LLVM API changes, until the dust settles. by Daniel Dunbar · 15 years ago
  47. e7d346b Move EmitCtorPrologue to CGCXX. Add an assert and FIXMEs. by Fariborz Jahanian · 15 years ago
  48. ab3c0a2 Early ir-gen for constructor prologue. This is on going. by Fariborz Jahanian · 15 years ago
  49. 5ac2323 Remove an apparently unused header. by Mike Stump · 15 years ago
  50. 96e18b0 Catch another trivial case where we can avoid emitting a separate return blcok. by Daniel Dunbar · 15 years ago
  51. d286f05 Avoid generation of dead code in a few more situations. by Daniel Dunbar · 15 years ago
  52. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  53. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 15 years ago
  54. 1a1a6e2 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 15 years ago
  55. a1cf15f Update for LLVM API change, and contextify a bunch of related stuff. by Owen Anderson · 15 years ago
  56. 6924382 Update for LLVM API change. by Owen Anderson · 15 years ago
  57. aac8705 Update for IRBuilder API change. by Owen Anderson · 15 years ago
  58. 6fb0aee Remove the ASTContext parameter from the getBody() methods of Decl and subclasses. by Argyrios Kyrtzidis · 15 years ago
  59. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  60. 68584ed Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 15 years ago
  61. eb6437a When possible, don't emit the cleanup block. Instead, just move the instructions to the current block. by Anders Carlsson · 15 years ago
  62. bdad6b6 Re-add a slightly more general version of the check from r72578; it is by Eli Friedman · 15 years ago
  63. c9bb1b8 Oops, the testcase I was thinking of is supposed to error out. I by Mike Stump · 15 years ago
  64. 8ebefde Fixup codegen for composition of vla types using a normal array type. by Mike Stump · 15 years ago
  65. f5408fe Reflow some comments. by Mike Stump · 15 years ago
  66. d3a413d Implement function-try-blocks. However, there's a very subtle bug that I can't track down. by Sebastian Redl · 15 years ago
  67. b5437d2 the logic for computing __func__ and friends is really broken: by Chris Lattner · 15 years ago
  68. 88207c9 don't bother emitting a zero byte memset at all. We used to get them by Chris Lattner · 15 years ago
  69. 7297134 FunctionDecl::getBody() is getting an ASTContext argument for use in by Douglas Gregor · 15 years ago
  70. d7c62b1 Simplify CodeGenFunction::GenerateCode. by Anders Carlsson · 15 years ago
  71. b11fa0d Update to use hasAttr() instead of getAttr(). - No functionality change. by Daniel Dunbar · 15 years ago
  72. b75863d reject codegen of __thread variables as unimplemented, rdar://6775265 by Chris Lattner · 15 years ago
  73. 2b77ba8 Add some basic support for generating C++ member functions. by Anders Carlsson · 15 years ago
  74. 481769b remove some obsolete comments, use an AssertingVH. by Chris Lattner · 15 years ago
  75. 48f9122 Move where block-related variables are initialized so that block by Eli Friedman · 15 years ago
  76. f146684 fix CreateTempAlloca to not set a name on the alloca for temporaries by Chris Lattner · 15 years ago
  77. 0ae7b2b Initialize the cleanup.dst variable if necessary. Fixes PR3789. by Anders Carlsson · 15 years ago
  78. 0892099 Codegen support for copy helpers for block literals. by Mike Stump · 15 years ago
  79. a4f668f Framework for codegen for copy/dispose helpers. by Mike Stump · 15 years ago
  80. 797b632 Add codegen support for __block variables to call _Block_object_dispose as necessary. by Mike Stump · 15 years ago
  81. 3947de5 Move some of the CodeGenFunction blocks code up and out. No by Mike Stump · 15 years ago
  82. 72564e7 Create a new TypeNodes.def file that enumerates all of the types, by Douglas Gregor · 15 years ago
  83. 8958891 Add Type::hasPointerRepresentation predicate. by Daniel Dunbar · 15 years ago
  84. 24a9f6e Drop uses of isPointerLikeType. - No functionality change. by Daniel Dunbar · 15 years ago
  85. 8a2b4b1 CodeGen support for copied BlockDeclRefExprs. by Mike Stump · 15 years ago
  86. 0096acf Pull COdeGenFunction::CreateStaticBlockVarDecl (just for creating the by Daniel Dunbar · 15 years ago
  87. 9834ffb Add low level support for generating invoke instead of calls. by Daniel Dunbar · 15 years ago
  88. 4e7a1f7 Add CodeGen support for the helper for BlockDeclRefExprs. The easier by Mike Stump · 15 years ago
  89. 6ec3668 Address Chris's comments regarding C++ name mangling. by Douglas Gregor · 15 years ago
  90. e896d98 Add CodeGen support for the nodebug attribute. by Anders Carlsson · 15 years ago
  91. 5f2bfd4 Add basic support for C++ name mangling according to the Itanium C++ by Douglas Gregor · 15 years ago
  92. b4094ea Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. by Daniel Dunbar · 15 years ago
  93. fa1f756 Remove the last remnants of the Obj-C EH stack code. by Anders Carlsson · 15 years ago
  94. 4cc1a47 Add DidCallStackSave variable to CodeGenFunction. by Anders Carlsson · 15 years ago
  95. cc89920 Reuse case destinations. by Anders Carlsson · 15 years ago
  96. ad9d00e Always check if we can remove branch fixups, even if the cleanup stack is empty. by Anders Carlsson · 15 years ago
  97. 46831a9 Misc fixes to the cleanup stack code. by Anders Carlsson · 15 years ago
  98. bb66f9f More cleanup stack work, PopCleanupBlock now returns a struct with the switch block and end block. by Anders Carlsson · 15 years ago
  99. d66a9f9 Split some functions up by Anders Carlsson · 15 years ago
  100. 6fc5591 CleanupScope needs to push the cleanup block in its destructor by Anders Carlsson · 15 years ago