1. 2677261 IRgen: (Reapply 101222, with fixes) Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 14 years ago
  2. 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 · 14 years ago
  3. 89cdaa9 IRgen: Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 14 years ago
  4. ecdb41e IRgen: Move EmitLoadOfBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 14 years ago
  5. c24b9c4 fix PR6805: llvm.objectsize changed to take an i1 instead of an i32. by Chris Lattner · 14 years ago
  6. 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 · 14 years ago
  7. efbf487 IRgen: Move BitFieldIsSigned bit into CGBitFieldInfo. by Daniel Dunbar · 14 years ago
  8. 8bea3ef Simplify. by Daniel Dunbar · 14 years ago
  9. f0fe5bc IRgen: Move BitField LValues to just hold a reference to the CGBitFieldInfo. by Daniel Dunbar · 14 years ago
  10. 2eec0b2 IRgen: Lift BitFieldInfo to CGBitFieldInfo at namespace level. by Daniel Dunbar · 14 years ago
  11. 198bcb4 IRGen: Move the auxiliary data structures tracking AST -> LLVM mappings out of CodeGenTypes, to per-record CGRecordLayout structures. by Daniel Dunbar · 14 years ago
  12. 23cba80 Introduce a new kind of derived-to-base cast which bypasses the need for by John McCall · 14 years ago
  13. f858da6 Minor formatting/FIXME cleanups. by Daniel Dunbar · 14 years ago
  14. 6a83670 Fix PR6473. by Rafael Espindola · 15 years ago
  15. 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
  16. 1500657 IRgen: Switch EmitCompoundLiteralLValue to use CreateMemTemp. by Daniel Dunbar · 15 years ago
  17. 63efd33 When emitting an aggregate into a temporary, make sure we set the alignment by John McCall · 15 years ago
  18. 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
  19. 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
  20. e86bcf0 Reapply r95393, without the change to CGExpr. I was wrong in assuming that the by Daniel Dunbar · 15 years ago
  21. 04a67a6 Standardize the parsing of function type attributes in a way that by John McCall · 15 years ago
  22. a500210 Revert r95393, which broke Clang's self-host. by Douglas Gregor · 15 years ago
  23. b2cd777 IRgen: A few more ConvertType cleanups. by Daniel Dunbar · 15 years ago
  24. 18aba0d IRgen: Factor out EmitAggExprToLValue. by Daniel Dunbar · 15 years ago
  25. ea48522 IRgen: Fix some CreateTempAlloca calls to use ConvertTypeForMem when that is by Daniel Dunbar · 15 years ago
  26. 16c4f3c Now that we store calling conventions in the types, use them instead of by Charles Davis · 15 years ago
  27. 0276271 IRgen: Use hasAggregateLLVMType instead of isSingleValueType() for cases that by Daniel Dunbar · 15 years ago
  28. 0dc7366 When binding an lvalue to a reference, we always need to pop temporaries. by Anders Carlsson · 15 years ago
  29. c1b32f6 Fix a bug where we would not mark temporaries as conditional when emitting a conditional operator as an lvalue. by Anders Carlsson · 15 years ago
  30. 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 · 15 years ago
  31. 45147d0 Move pointer to data member emission to CodeGenModule and use it in CGExprConstant. Fixes PR5674. by Anders Carlsson · 15 years ago
  32. 3aba093 Start creating CXXBindReferenceExpr nodes when binding complex types to references. by Anders Carlsson · 15 years ago
  33. 06a2970 Add a new EmitLValueForFieldInitialization that will be used for initializing fields (and reference type fields in particular). by Anders Carlsson · 15 years ago
  34. 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
  35. eb60edf Add an CXXBindReferenceExpr (not used just yet). by Anders Carlsson · 15 years ago
  36. 3228f42 Use CharUnits for alignment in EmitNullInitializationLValue(). by Ken Dyck · 15 years ago
  37. 199c3d6 Roll out ASTContext::getTypeSizeInChars(), replacing instances of by Ken Dyck · 15 years ago
  38. 197a338 implement codegen support for preinc as an lvalue, PR5514. by Chris Lattner · 15 years ago
  39. dd36d32 refactor pre/postinc logic into CGF and require the caller to pass in the by Chris Lattner · 15 years ago
  40. 302c3c2 Fix -Asserts warning. by Daniel Dunbar · 15 years ago
  41. 8e274bd Minor optimization; emit proper unsupported messages for a couple of cases. by Eli Friedman · 15 years ago
  42. ab18995 Some small improvements to dead code elimination; helps a bit on by Eli Friedman · 15 years ago
  43. a1736c0 Pass the return value slot to all call exprs. by Anders Carlsson · 15 years ago
  44. d2490a9 Fill in the return value slot in CGExprAgg::VisitCallExpr. This takes us halfway towards fixing PR5824. by Anders Carlsson · 15 years ago
  45. f3c47c9 Pass ReturnValueSlot to EmitCall. No functionality change yet. by Anders Carlsson · 15 years ago
  46. 31777a2 Add a ReturnValueSlot class. Change the argument order in EmitCall to match the other overload better. by Anders Carlsson · 15 years ago
  47. 0ad57fb simplify my previous patch. by Chris Lattner · 15 years ago
  48. 998eab1 fix opencl extvector element extraction on rvalues. We previously by Chris Lattner · 15 years ago
  49. 27a9b72 Fix for PR5524: make reference binding in default argument work correctly. by Eli Friedman · 15 years ago
  50. b14e62d Implement additional undefined checks for additional loads and stores. WIP. by Mike Stump · 15 years ago
  51. a7fa7cd Fixes a code gen bug related to accessing a now by Fariborz Jahanian · 15 years ago
  52. 0ece491 ShouldDestroyTemporaries? I don't think so. by Anders Carlsson · 15 years ago
  53. d8af360 Fix spacing. by Mike Stump · 15 years ago
  54. 4151344 Ensure we preserve line information for each trap for by Mike Stump · 15 years ago
  55. 15037ca Switch codegen for -fcatch-undefined-bahavior over to __builtin_trap by Mike Stump · 15 years ago
  56. 750c85e We have to allow one to form an address for one past the end. WIP. by Mike Stump · 15 years ago
  57. 96a063a Simplifiy. by Mike Stump · 15 years ago
  58. 9c276ae Implement runtime checks for undefined behavior. WIP. by Mike Stump · 15 years ago
  59. 3a17370 Move the code for converting a member pointer to a bool so that it is usable by Eli Friedman · 15 years ago
  60. 6ec687d When extending the lifetime of a temporary, make sure to emit a branch to the cleanup exit block. This fixes a broken module error in LLVMCConfigurationEmitter.cpp. by Anders Carlsson · 15 years ago
  61. 820bca4 Code gen for ObjCIsaExpr AST used as lvalue. (fixes radar 7457534). by Fariborz Jahanian · 15 years ago
  62. d88ea56 Add cleanups for exceptional edges. WIP. by Mike Stump · 15 years ago
  63. c4451db Fix some direct checks of expressions which might be surrounded by parentheses. by Eli Friedman · 15 years ago
  64. 130c69e Make the comma operator consistently call EnsureInsertPoint. by Eli Friedman · 15 years ago
  65. 86b85b2 use new helpers to simplify code. by Chris Lattner · 15 years ago
  66. 2b06d34 Make EmitStoreOfScalar generate a more sane representation of boolean stores. by Eli Friedman · 15 years ago
  67. 2da84ff Don't pass false (default) for isVolatile parameter to CreateLoad. by Daniel Dunbar · 15 years ago
  68. 9a14630 Implement IRGen for MemberExpr referring to static member function. by Eli Friedman · 15 years ago
  69. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 15 years ago
  70. d5782d5 Rename CleanupScope -> DelayedCleanupBlock. No functionality change. by Douglas Gregor · 15 years ago
  71. a3697c9 Handle base-to-derived casts. Will land test case shortly. by Anders Carlsson · 15 years ago
  72. 1c5c1a0 Clean up EmitPointerToDataMemberBinaryExpr a bit. by Eli Friedman · 15 years ago
  73. 0ed303c More const is always good. by Anders Carlsson · 15 years ago
  74. c849c05 Implement most of dynamic_cast. WIP. by Mike Stump · 15 years ago
  75. eaae78a Some minor cleanup for EmitCastLValue. by Eli Friedman · 15 years ago
  76. c2e84ae Implement typeid for class types. by Mike Stump · 15 years ago
  77. 658e812 Handle CK_BitCast in EmitCastLValue. by Anders Carlsson · 15 years ago
  78. 370e538 Handle CXXDefaultArgExprs in EmitLValue. Fixes PR5484. by Anders Carlsson · 15 years ago
  79. e401cd5 Explicitly note that pre-inc/dec lvalues are not supported yet, so that it by Eli Friedman · 15 years ago
  80. d2113f2 Add clarifying parens. by Daniel Dunbar · 15 years ago
  81. 589f9e3 Handle member expressions where the member declaration is actually a static variable. Fixes PR5392. by Anders Carlsson · 15 years ago
  82. ce53f7d More LValue related code cleanup. by Anders Carlsson · 15 years ago
  83. 1e74c4f More cleanup, the code is much easier to follow now. by Anders Carlsson · 15 years ago
  84. 0bc7049 Reduce nesting, no functionality change. by Anders Carlsson · 15 years ago
  85. a59869b We only need to call SetObjCNonGC for local variables. No functionality change. by Anders Carlsson · 15 years ago
  86. 909fbf7 Change EmitPointerToDataMemberLValue to take a FieldDecl. No intended functionality change. by Anders Carlsson · 15 years ago
  87. eb99b01 random tidying by Chris Lattner · 15 years ago
  88. 6766586 adjust for a pending LLVM change. by Chris Lattner · 15 years ago
  89. 52f08bc Add Code gen support for '->*' operator which fell through the crack. by Fariborz Jahanian · 15 years ago
  90. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 15 years ago
  91. 00a1ad9 Emit calls using the canonical prototype of the called function. by John McCall · 15 years ago
  92. 8bfd31f Complete code gen for '.*' binary expression for both scalar and aggregates. by Fariborz Jahanian · 15 years ago
  93. 3976295 Expand on code gen. for pointer to data members so it works by Fariborz Jahanian · 15 years ago
  94. a636299 Code gen for pointer-to-datamember - WIP. by Fariborz Jahanian · 15 years ago
  95. 48620ba Code-gen for CXXZeroInitValueExpr AST passed by Fariborz Jahanian · 15 years ago
  96. 86aa0cd Handle emitting the assignment operator when the lhs is a reference. Fixes PR5227. by Anders Carlsson · 15 years ago
  97. 259e9cc Twinify CodeGenFunction::CreateTempAlloca by Daniel Dunbar · 15 years ago
  98. e1b7ea1 When binding a reference to a temporary, it's important that other temporaries created as on the RHS are destroyed before emitting the dtor for the temporary. by Anders Carlsson · 15 years ago
  99. b3f7442 Handle by Anders Carlsson · 15 years ago
  100. 3c0ef8c Simplify pointer creation with the new Type::getInt*Ptr methods. by Benjamin Kramer · 15 years ago