1. 3d5aff5 Experimental TBAA support. by Dan Gohman · 14 years ago
  2. 8ac2d44 Eliminate usage of ObjCSuperExpr used for by Fariborz Jahanian · 14 years ago
  3. 1274ccd Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a by Douglas Gregor · 14 years ago
  4. 0b78710 IRgen for gnu extension's conditional lvalue expression by Fariborz Jahanian · 14 years ago
  5. dc5ea09 Fixes IRgen bug in objc++ reference binding of a by Fariborz Jahanian · 14 years ago
  6. fc1e6c7 Fix a bug with binding l-values to elided temporaries, and leave a couple by John McCall · 14 years ago
  7. 558d2ab one piece of code is responsible for the lifetime of every aggregate by John McCall · 14 years ago
  8. 0934914 Local static block variable referecned in its by Fariborz Jahanian · 14 years ago
  9. d0db03a clean up some formatting. by Chris Lattner · 14 years ago
  10. 469a20d Truncate block variable of bool type to i1 when its by Fariborz Jahanian · 14 years ago
  11. 7925561 Cope with llvm's reference to bool type of 'i1' vs. clang's by Fariborz Jahanian · 14 years ago
  12. 98c9d1f Fix IRGen when property-dot syntax used to access by Fariborz Jahanian · 14 years ago
  13. 6c2ab1d Amusingly, I missed this point of abstraction in all my earlier by John McCall · 14 years ago
  14. 4c40d98 Teach IR generation to return 'this' from constructors and destructors by John McCall · 14 years ago
  15. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  16. b6c504b fix rdar://8340348, a miscompile of boost that was exposed by r109848. by Chris Lattner · 14 years ago
  17. 0bab0cd Abstract out everything having to do with member pointers into the ABI by John McCall · 14 years ago
  18. d608cdb Experiment with using first-class aggregates to represent member function by John McCall · 14 years ago
  19. e9fd7eb Extract member function pointer comparison and null comparison into by John McCall · 14 years ago
  20. 983e3d7 IRgen: Set the alignment correctly when creating LValue for a decls. by Daniel Dunbar · 14 years ago
  21. 3491b3d IRgen: Move remaining LValue::Set... methods to LValue::set... (non-static) methods. by Daniel Dunbar · 14 years ago
  22. 6d5eb76 IRgen: Move remaining MakeAddr() calls to MakeAddrLValue(). by Daniel Dunbar · 14 years ago
  23. 333d42d IRgen: The CVR qualifiers in a subobject adjustment should just come from the by Daniel Dunbar · 14 years ago
  24. ea61917 IRgen/LValue: Add LValue::setNonGC instead of SetObjCNonGC, for consistency with isNonGC(). by Daniel Dunbar · 14 years ago
  25. 79c3928 IRgen: Switch more MakeAddr() users to MakeAddrLValue; this time for calls which were previously not computing the qualifier list. In most cases, I don't think it matters, but I believe this is conservatively more correct / consistent. by Daniel Dunbar · 14 years ago
  26. 9f553f5 IRgen: Switch a bunch of trivial MakeAddr calls to use MakeAddrLValue. by Daniel Dunbar · 14 years ago
  27. 3ec0baf IRgen: Eliminate EmitPredefinedFunctionName(), it doesn't need to be factored out. by Daniel Dunbar · 14 years ago
  28. 9f4f7cf IRgen/CGValue: Add alignment to LValue, and use that alignment when generating lvalue load/stores. by Daniel Dunbar · 14 years ago
  29. 91a16fa IRgen: Change Emit{Load,Store}OfScalar to take a required Alignment argument and by Daniel Dunbar · 14 years ago
  30. 5990b54 fix typo by Chris Lattner · 14 years ago
  31. d7241c7 Fix PR7889 by generalizing some over specialized code. There is no by Chris Lattner · 14 years ago
  32. 5c12c7b fix PR7892, a crash on valid in c++ codegen of __PRETTY_FUNCTION__ by Chris Lattner · 14 years ago
  33. 569c316 Allow reference binding of a reference of Objective-C object type to by Douglas Gregor · 14 years ago
  34. f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 14 years ago
  35. 81407d4 Switch the destructor for a temporary arising from a reference binding over to by John McCall · 14 years ago
  36. 021a7a6 Adopt objc_assign_threadlocal() for __thread variables of GC types. by Fariborz Jahanian · 14 years ago
  37. 6c552c1 implement rdar://5739832 - operator new should check for overflow in multiply, by Chris Lattner · 14 years ago
  38. 7c7a793 Reinstate the scalar-cast-to-const-reference improvements, this time by Douglas Gregor · 14 years ago
  39. 928d69f Revert r108431 and r108433 (the cast-to-const-reference fixes), which by Douglas Gregor · 14 years ago
  40. 06de037 Spell isPRValue() properly. by Douglas Gregor · 14 years ago
  41. 5467209 Teach CodeGenFunction::EmitCastLValue() to handle casts to an lvalue by Douglas Gregor · 14 years ago
  42. 2497886 CK_BitCast is not an lvalue bitcast any longer by Douglas Gregor · 14 years ago
  43. e39a389 Introduce a new cast kind for an "lvalue bitcast", which handles by Douglas Gregor · 14 years ago
  44. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 14 years ago
  45. 8474567 Revert r107828 and r107827, the fix for PR7556, which seems to be by Douglas Gregor · 14 years ago
  46. 016a4a9 Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its by Douglas Gregor · 14 years ago
  47. f1549f6 Validated by nightly-test runs on x86 and x86-64 darwin, including after by John McCall · 14 years ago
  48. 121b3fa in the "coerce" case, the ABI handling code ends up making the by Chris Lattner · 14 years ago
  49. 1d110e0 Remove unnecessary ASTContext parameter from by Douglas Gregor · 14 years ago
  50. 045a6d8 Correctly destroy reference temporaries with global storage. Remove ErrorUnsupported call when binding a global reference to a non-lvalue. Fixes PR7326. by Anders Carlsson · 14 years ago
  51. 656746c Add a CreateReferenceTemporary that will do the right thing for variables with global storage. by Anders Carlsson · 14 years ago
  52. dca7ab2 Simplify CodeGenFunction::EmitReferenceBindingToExpr as a first step towards fixing PR7326. by Anders Carlsson · 14 years ago
  53. cc09785 Reduce indentation. by Anders Carlsson · 14 years ago
  54. 77b89b8 finally get around to doing a significant cleanup to irgen: by Chris Lattner · 14 years ago
  55. 9269d5c Implement rdar://7530813 - collapse multiple GEP instructions in IRgen by Chris Lattner · 14 years ago
  56. a4d94ab minor cleanup: don't emit the base of an array subscript until after by Chris Lattner · 14 years ago
  57. 8c11a65 move scalar inc/dec codegen into ScalarExprEmitter instead by Chris Lattner · 14 years ago
  58. 7f215c1 use more efficient type comparison predicates. by Chris Lattner · 14 years ago
  59. 32f36ba Change EmitReferenceBindingToExpr to take a decl instead of a boolean. by Anders Carlsson · 14 years ago
  60. 7e70fb2 Fix an Obj-C++ miscompile when calling an Obj-C method that returns a C++ reference. by Anders Carlsson · 14 years ago
  61. 353b33b objective-C++ IRGen: property reference as an by Fariborz Jahanian · 14 years ago
  62. 03b2960 Objective-c++ IRGen. Support for @selector expression as by Fariborz Jahanian · 14 years ago
  63. 06057ce Move CodeGenOptions.h *back* into Frontend. This should have been done when the by Chandler Carruth · 14 years ago
  64. 1884eb0 Re-land the fix for PR7139. by Anders Carlsson · 14 years ago
  65. 2d6b0e9 Improve our handling of reference binding for subobjects of by Douglas Gregor · 14 years ago
  66. 892fa6c Unbreak self-host. by Anders Carlsson · 14 years ago
  67. db9b12e Rename CodeGenFunction::EmitMemSetToZero to EmitNullInitialization. Handle setting null data member pointers correctly. Fixes PR7139. by Anders Carlsson · 14 years ago
  68. a9976d3 When emitting an lvalue for an anonymous struct or union member during by John McCall · 14 years ago
  69. 60dcb84 Rework our handling of binding a reference to a temporary by Douglas Gregor · 14 years ago
  70. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  71. 84c580f Minor refactoring of my last patch. by Fariborz Jahanian · 14 years ago
  72. b3ebe94 Objective-C++ Code gen. Handle code gen. for property by Fariborz Jahanian · 14 years ago
  73. 8e6404c Add the same 'ForVirtualBase' parameter to EmitCXXDestructorCall. by Anders Carlsson · 14 years ago
  74. a04efdf Change CodeGenFunction::GetAddressOfDerivedClass to take a BasePath. by Anders Carlsson · 15 years ago
  75. fc89c31 Convert more call sites over to the new GetAddressOfBaseClass. by Anders Carlsson · 15 years ago
  76. 6a03e34 Handle compound assignment expressions (i += j) as lvalues, which is by Douglas Gregor · 15 years ago
  77. ac41816 Call PerformCopyInitialization to properly initialize the exception temporary by John McCall · 15 years ago
  78. 3d3ec1c Miscellaneous codegen cleanups. Mostly, don't create new basic blocks by John McCall · 15 years ago
  79. 63326a5 Some renaming of methods, fixes typo (related to PR6769). by Fariborz Jahanian · 15 years ago
  80. 65ad5a4 Local static variables must be available module-wise by Fariborz Jahanian · 15 years ago
  81. 4803535 Fix an assert when assigning a boolean value to a bitfield of type _Bool. by Anders Carlsson · 15 years ago
  82. 2677261 IRgen: (Reapply 101222, with fixes) Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 15 years ago
  83. 96c250a Speculatively revert "IRgen: Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself.", I think it might be breaking bootstrap. by Daniel Dunbar · 15 years ago
  84. 89cdaa9 IRgen: Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 15 years ago
  85. ecdb41e IRgen: Move EmitLoadOfBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 15 years ago
  86. c24b9c4 fix PR6805: llvm.objectsize changed to take an i1 instead of an i32. by Chris Lattner · 15 years ago
  87. 7f28964 IRgen: Move the bit-field access type into CGBitFieldInfo, and change bit-field LValues to just store the base address of object containing the bit-field. by Daniel Dunbar · 15 years ago
  88. efbf487 IRgen: Move BitFieldIsSigned bit into CGBitFieldInfo. by Daniel Dunbar · 15 years ago
  89. 8bea3ef Simplify. by Daniel Dunbar · 15 years ago
  90. f0fe5bc IRgen: Move BitField LValues to just hold a reference to the CGBitFieldInfo. by Daniel Dunbar · 15 years ago
  91. 2eec0b2 IRgen: Lift BitFieldInfo to CGBitFieldInfo at namespace level. by Daniel Dunbar · 15 years ago
  92. 198bcb4 IRGen: Move the auxiliary data structures tracking AST -> LLVM mappings out of CodeGenTypes, to per-record CGRecordLayout structures. by Daniel Dunbar · 15 years ago
  93. 23cba80 Introduce a new kind of derived-to-base cast which bypasses the need for by John McCall · 15 years ago
  94. f858da6 Minor formatting/FIXME cleanups. by Daniel Dunbar · 15 years ago
  95. 6a83670 Fix PR6473. by Rafael Espindola · 15 years ago
  96. 9bd4da2 IRgen: Add CreateIRTemp, which creates a temporary alloca but with type converted "not-for-memory". Dunno a better name. by Daniel Dunbar · 15 years ago
  97. 1500657 IRgen: Switch EmitCompoundLiteralLValue to use CreateMemTemp. by Daniel Dunbar · 15 years ago
  98. 63efd33 When emitting an aggregate into a temporary, make sure we set the alignment by John McCall · 15 years ago
  99. 848fa64 More vtable layout dumper improvements. Handle destructors, dump the complete function type of the member functions (using PredefinedExpr::ComputeName. by Anders Carlsson · 15 years ago
  100. 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