1. c00129a Fix for PR7040: Don't try to compute the LLVM type for a function where it by Eli Friedman · 14 years ago
  2. fa037bd Re-teach IR gen to perform GC moves on rvalues resulting from various ObjC by John McCall · 14 years ago
  3. 1884eb0 Re-land the fix for PR7139. by Anders Carlsson · 14 years ago
  4. 2d6b0e9 Improve our handling of reference binding for subobjects of by Douglas Gregor · 14 years ago
  5. ef072fd Push a return-value slot throughout ObjC message-send codegen. Will be by John McCall · 14 years ago
  6. 892fa6c Unbreak self-host. by Anders Carlsson · 14 years ago
  7. db9b12e Rename CodeGenFunction::EmitMemSetToZero to EmitNullInitialization. Handle setting null data member pointers correctly. Fixes PR7139. by Anders Carlsson · 14 years ago
  8. 1d49f21 Copy construction of non-trivial properties must not by Fariborz Jahanian · 14 years ago
  9. 419aa96 Picky, picky by Douglas Gregor · 14 years ago
  10. 7226530 Fix a thinko by Douglas Gregor · 14 years ago
  11. e997948 Assert that we do not try to memcpy a non-POD class type in C++. This by Douglas Gregor · 14 years ago
  12. 69cfeb1 Emit an lvalue dynamic_cast even if the result is not used. Another by Douglas Gregor · 14 years ago
  13. 5e37d48 Remove an unused function. by Anders Carlsson · 14 years ago
  14. e174bd0 If we're generating code to create a pointer-to-member function by Douglas Gregor · 14 years ago
  15. 32897fd When computing the address of a virtual member function pointer, use the pointer width instead of hardcoding for 64-bit. by Anders Carlsson · 14 years ago
  16. 0d7c583 Don't copy or initialize empty classes. Fixes PR7012. by Anders Carlsson · 14 years ago
  17. e04d45e Get rid of the old GetNonVirtualBaseClassOffset and change all call sites to use the new version. by Anders Carlsson · 14 years ago
  18. 046c294 Vtable -> VTable renames across the board. by Anders Carlsson · 14 years ago
  19. 3ecd785 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 14 years ago
  20. c90f56d Revert r100193 since it causes failures in objc in clang by Mon P Wang · 14 years ago
  21. 8facca6 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 14 years ago
  22. b5896c3 Revert Mon Ping's 99930 due to broken llvm-gcc buildbots. by Bob Wilson · 14 years ago
  23. 3b5caa2 Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset by Mon P Wang · 14 years ago
  24. af44035 Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTableInfo class. by Anders Carlsson · 14 years ago
  25. 8682bda Fix PR6648 by not creating a temporary with the type of a by Rafael Espindola · 14 years ago
  26. b35baae add a codegen hack to work around an AST bug, allowing us to compile the by Chris Lattner · 14 years ago
  27. 4ce46c2 Perform overload resolution when static_cast'ing from a by Douglas Gregor · 14 years ago
  28. 18da88a PR6386: Fix a recent regression in IRGen of cast-to-union constructs. by Eli Friedman · 15 years ago
  29. 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 · 15 years ago
  30. 585fa68 Use the right type when taking the address of a non-virtual member function pointer. Fixes PR6258. by Anders Carlsson · 15 years ago
  31. 18aba0d IRgen: Factor out EmitAggExprToLValue. by Daniel Dunbar · 15 years ago
  32. 72119a8 Rename StartConditionalBranch/FinishConditionalBranch to BeginConditionalBranch/EndConditionalBranch. by Anders Carlsson · 15 years ago
  33. e8a81f7 Calculate offset correctly when taking the address of a virtual member function. by Anders Carlsson · 15 years ago
  34. e78ccb4 Handle reference binding in aggregate initializers. Fixes another 47 tests. by Anders Carlsson · 15 years ago
  35. 0f01a33 Add a band-aid fix for clang self-hosting. A better fix will follow shortly. by Anders Carlsson · 15 years ago
  36. 78e83f8 More cleanup. by Anders Carlsson · 15 years ago
  37. bb7e17b Some class related cleanup. by Anders Carlsson · 15 years ago
  38. 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
  39. 7af4ec7 When emitting member function pointers, use the canonical decl if the member function is virtual. Fixes PR5940. by Anders Carlsson · 15 years ago
  40. 5be028f Revert r92431, this code isn't dead and broke the ntfs build. by Daniel Dunbar · 15 years ago
  41. 12c6d26 Delete impossible case. by Eli Friedman · 15 years ago
  42. 8e274bd Minor optimization; emit proper unsupported messages for a couple of cases. by Eli Friedman · 15 years ago
  43. d2490a9 Fill in the return value slot in CGExprAgg::VisitCallExpr. This takes us halfway towards fixing PR5824. by Anders Carlsson · 15 years ago
  44. dd5614b Handle case when DestPtr is 0. by Mike Stump · 15 years ago
  45. 16006c9 When value-initializing a class with no user-defined constructors but by Douglas Gregor · 15 years ago
  46. 30311fa Handle ImplicitValueInitExpr in AggExprEmitter. by Anders Carlsson · 15 years ago
  47. 39406b1 Add throw support. WIP. by Mike Stump · 15 years ago
  48. 13a5be1 Update chunk of #if 0'ed code to remove fixed FIXME and make it compile. We by Eli Friedman · 15 years ago
  49. 85b4521 Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. by Benjamin Kramer · 15 years ago
  50. c6fdb776 Add case for CK_DerivedToBaseMemberPointer cast kind to by Eli Friedman · 15 years ago
  51. a36bf8f Fix lifetime of conditional temporaries. Patch by Victor Zverovich! by Anders Carlsson · 15 years ago
  52. 2710c41 Fix one last gotcha with typeid. by Mike Stump · 15 years ago
  53. 52f08bc Add Code gen support for '->*' operator which fell through the crack. by Fariborz Jahanian · 15 years ago
  54. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 15 years ago
  55. 8bfd31f Complete code gen for '.*' binary expression for both scalar and aggregates. by Fariborz Jahanian · 15 years ago
  56. bb378cb Use CK_BitCast for member function pointer casts. Fixes PR5138. by Anders Carlsson · 15 years ago
  57. 329763b add support for codegening CXXZeroInitValueExprs by Nuno Lopes · 15 years ago
  58. babac13 Suppress -Asserts warning. by Daniel Dunbar · 15 years ago
  59. 3c0ef8c Simplify pointer creation with the new Type::getInt*Ptr methods. by Benjamin Kramer · 15 years ago
  60. dbd920c Move the vtable builder to CGVtable.cpp, general cleanup. by Anders Carlsson · 15 years ago
  61. 719aa44 Pass the canonical method decl to GetVtableIndex. Fixes PR5120. by Anders Carlsson · 15 years ago
  62. a024d17 Teach AggExprEmitter about pointers to member functions. by Anders Carlsson · 15 years ago
  63. 2b35835 Move some functions from CodeGenFunctions to CodeGenModule so they can be used by CGExprConstant. by Anders Carlsson · 15 years ago
  64. 84080ec Handle CK_BaseToDerivedMemberPointer for member function pointers. Fixes PR5091. by Anders Carlsson · 15 years ago
  65. e9d34dc Improve support for member function pointers. by Anders Carlsson · 15 years ago
  66. 3016842 Use a switch statement in VisitCastExpr. by Anders Carlsson · 15 years ago
  67. 0953e76 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 15 years ago
  68. 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
  69. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  70. 08c3213 Re-implemented generation of objc_memmove_collectable by Fariborz Jahanian · 15 years ago
  71. 3197659 Patch for code gen. for c-style cast which ends in by Fariborz Jahanian · 15 years ago
  72. 64e690e ir-gen for type convesion of class objects. WIP. by Fariborz Jahanian · 15 years ago
  73. 09105f5 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 15 years ago
  74. 154440e Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. by Fariborz Jahanian · 15 years ago
  75. 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 · 15 years ago
  76. 0032b27 Update for LLVM API change. by Owen Anderson · 15 years ago
  77. 4d8673b Add CK_ToUnion and use it for aggregate expression codegen. by Anders Carlsson · 15 years ago
  78. c9c88b4 Update for LLVM API change. by Owen Anderson · 15 years ago
  79. b3589f4 Canonicalize else spacing. by Mike Stump · 15 years ago
  80. 96e0fc7 Update for LLVM API change. by Owen Anderson · 15 years ago
  81. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  82. 4a28d5d Update for LLVM API change. by Owen Anderson · 15 years ago
  83. c6a38a4 Preserve address space information through member accesses, e.g., by Mon P Wang · 15 years ago
  84. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  85. 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
  86. a1cf15f Update for LLVM API change, and contextify a bunch of related stuff. by Owen Anderson · 15 years ago
  87. 6924382 Update for LLVM API change. by Owen Anderson · 15 years ago
  88. a294ca8 Implement code generation of ChooseExpr for aggregate types. by Anders Carlsson · 15 years ago
  89. 082b02e Implemented memmove_collectable API for Next runtime by Fariborz Jahanian · 15 years ago
  90. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  91. fb6fa30 Use PushConditionalTempDestruction/PopConditionalTempDestruction for the ternary operator. by Anders Carlsson · 15 years ago
  92. 34ebf4d PR4316: Fix IRGen for cast-to-union extension. by Eli Friedman · 15 years ago
  93. 543ac0c Emit destructors correctly for temporaries. by Anders Carlsson · 15 years ago
  94. e61c9e8 Add lvalue irgen support for CXXBindTemporaryExpr. by Anders Carlsson · 15 years ago
  95. b58d017 More temporary support. by Anders Carlsson · 15 years ago
  96. 8e587a1 Remove VarDecl from CXXConstructExpr. by Anders Carlsson · 15 years ago
  97. 7f79f9b Fixup the rest of the trivial cases of the codegen of volatile. If by Mike Stump · 15 years ago
  98. 2dce5f8 PR4281: Fix bogus CodeGen assertion. The issue is that by Eli Friedman · 15 years ago
  99. 14674ff No write-barrier for initializations. by Fariborz Jahanian · 15 years ago
  100. e70e8f7 IRgen support for calls to functions that return references to aggregate exressions. by Anders Carlsson · 15 years ago