1. 63efd33 When emitting an aggregate into a temporary, make sure we set the alignment by John McCall · 14 years ago
  2. 848fa64 More vtable layout dumper improvements. Handle destructors, dump the complete function type of the member functions (using PredefinedExpr::ComputeName. by Anders Carlsson · 14 years ago
  3. 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 · 14 years ago
  4. e86bcf0 Reapply r95393, without the change to CGExpr. I was wrong in assuming that the by Daniel Dunbar · 14 years ago
  5. 04a67a6 Standardize the parsing of function type attributes in a way that by John McCall · 14 years ago
  6. a500210 Revert r95393, which broke Clang's self-host. by Douglas Gregor · 14 years ago
  7. b2cd777 IRgen: A few more ConvertType cleanups. by Daniel Dunbar · 14 years ago
  8. 18aba0d IRgen: Factor out EmitAggExprToLValue. by Daniel Dunbar · 14 years ago
  9. ea48522 IRgen: Fix some CreateTempAlloca calls to use ConvertTypeForMem when that is by Daniel Dunbar · 14 years ago
  10. 16c4f3c Now that we store calling conventions in the types, use them instead of by Charles Davis · 14 years ago
  11. 0276271 IRgen: Use hasAggregateLLVMType instead of isSingleValueType() for cases that by Daniel Dunbar · 14 years ago
  12. 0dc7366 When binding an lvalue to a reference, we always need to pop temporaries. by Anders Carlsson · 14 years ago
  13. c1b32f6 Fix a bug where we would not mark temporaries as conditional when emitting a conditional operator as an lvalue. by Anders Carlsson · 14 years ago
  14. 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 · 14 years ago
  15. 45147d0 Move pointer to data member emission to CodeGenModule and use it in CGExprConstant. Fixes PR5674. by Anders Carlsson · 14 years ago
  16. 3aba093 Start creating CXXBindReferenceExpr nodes when binding complex types to references. by Anders Carlsson · 14 years ago
  17. 06a2970 Add a new EmitLValueForFieldInitialization that will be used for initializing fields (and reference type fields in particular). by Anders Carlsson · 15 years ago
  18. 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
  19. eb60edf Add an CXXBindReferenceExpr (not used just yet). by Anders Carlsson · 15 years ago
  20. 3228f42 Use CharUnits for alignment in EmitNullInitializationLValue(). by Ken Dyck · 15 years ago
  21. 199c3d6 Roll out ASTContext::getTypeSizeInChars(), replacing instances of by Ken Dyck · 15 years ago
  22. 197a338 implement codegen support for preinc as an lvalue, PR5514. by Chris Lattner · 15 years ago
  23. dd36d32 refactor pre/postinc logic into CGF and require the caller to pass in the by Chris Lattner · 15 years ago
  24. 302c3c2 Fix -Asserts warning. by Daniel Dunbar · 15 years ago
  25. 8e274bd Minor optimization; emit proper unsupported messages for a couple of cases. by Eli Friedman · 15 years ago
  26. ab18995 Some small improvements to dead code elimination; helps a bit on by Eli Friedman · 15 years ago
  27. a1736c0 Pass the return value slot to all call exprs. by Anders Carlsson · 15 years ago
  28. d2490a9 Fill in the return value slot in CGExprAgg::VisitCallExpr. This takes us halfway towards fixing PR5824. by Anders Carlsson · 15 years ago
  29. f3c47c9 Pass ReturnValueSlot to EmitCall. No functionality change yet. by Anders Carlsson · 15 years ago
  30. 31777a2 Add a ReturnValueSlot class. Change the argument order in EmitCall to match the other overload better. by Anders Carlsson · 15 years ago
  31. 0ad57fb simplify my previous patch. by Chris Lattner · 15 years ago
  32. 998eab1 fix opencl extvector element extraction on rvalues. We previously by Chris Lattner · 15 years ago
  33. 27a9b72 Fix for PR5524: make reference binding in default argument work correctly. by Eli Friedman · 15 years ago
  34. b14e62d Implement additional undefined checks for additional loads and stores. WIP. by Mike Stump · 15 years ago
  35. a7fa7cd Fixes a code gen bug related to accessing a now by Fariborz Jahanian · 15 years ago
  36. 0ece491 ShouldDestroyTemporaries? I don't think so. by Anders Carlsson · 15 years ago
  37. d8af360 Fix spacing. by Mike Stump · 15 years ago
  38. 4151344 Ensure we preserve line information for each trap for by Mike Stump · 15 years ago
  39. 15037ca Switch codegen for -fcatch-undefined-bahavior over to __builtin_trap by Mike Stump · 15 years ago
  40. 750c85e We have to allow one to form an address for one past the end. WIP. by Mike Stump · 15 years ago
  41. 96a063a Simplifiy. by Mike Stump · 15 years ago
  42. 9c276ae Implement runtime checks for undefined behavior. WIP. by Mike Stump · 15 years ago
  43. 3a17370 Move the code for converting a member pointer to a bool so that it is usable by Eli Friedman · 15 years ago
  44. 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
  45. 820bca4 Code gen for ObjCIsaExpr AST used as lvalue. (fixes radar 7457534). by Fariborz Jahanian · 15 years ago
  46. d88ea56 Add cleanups for exceptional edges. WIP. by Mike Stump · 15 years ago
  47. c4451db Fix some direct checks of expressions which might be surrounded by parentheses. by Eli Friedman · 15 years ago
  48. 130c69e Make the comma operator consistently call EnsureInsertPoint. by Eli Friedman · 15 years ago
  49. 86b85b2 use new helpers to simplify code. by Chris Lattner · 15 years ago
  50. 2b06d34 Make EmitStoreOfScalar generate a more sane representation of boolean stores. by Eli Friedman · 15 years ago
  51. 2da84ff Don't pass false (default) for isVolatile parameter to CreateLoad. by Daniel Dunbar · 15 years ago
  52. 9a14630 Implement IRGen for MemberExpr referring to static member function. by Eli Friedman · 15 years ago
  53. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 15 years ago
  54. d5782d5 Rename CleanupScope -> DelayedCleanupBlock. No functionality change. by Douglas Gregor · 15 years ago
  55. a3697c9 Handle base-to-derived casts. Will land test case shortly. by Anders Carlsson · 15 years ago
  56. 1c5c1a0 Clean up EmitPointerToDataMemberBinaryExpr a bit. by Eli Friedman · 15 years ago
  57. 0ed303c More const is always good. by Anders Carlsson · 15 years ago
  58. c849c05 Implement most of dynamic_cast. WIP. by Mike Stump · 15 years ago
  59. eaae78a Some minor cleanup for EmitCastLValue. by Eli Friedman · 15 years ago
  60. c2e84ae Implement typeid for class types. by Mike Stump · 15 years ago
  61. 658e812 Handle CK_BitCast in EmitCastLValue. by Anders Carlsson · 15 years ago
  62. 370e538 Handle CXXDefaultArgExprs in EmitLValue. Fixes PR5484. by Anders Carlsson · 15 years ago
  63. e401cd5 Explicitly note that pre-inc/dec lvalues are not supported yet, so that it by Eli Friedman · 15 years ago
  64. d2113f2 Add clarifying parens. by Daniel Dunbar · 15 years ago
  65. 589f9e3 Handle member expressions where the member declaration is actually a static variable. Fixes PR5392. by Anders Carlsson · 15 years ago
  66. ce53f7d More LValue related code cleanup. by Anders Carlsson · 15 years ago
  67. 1e74c4f More cleanup, the code is much easier to follow now. by Anders Carlsson · 15 years ago
  68. 0bc7049 Reduce nesting, no functionality change. by Anders Carlsson · 15 years ago
  69. a59869b We only need to call SetObjCNonGC for local variables. No functionality change. by Anders Carlsson · 15 years ago
  70. 909fbf7 Change EmitPointerToDataMemberLValue to take a FieldDecl. No intended functionality change. by Anders Carlsson · 15 years ago
  71. eb99b01 random tidying by Chris Lattner · 15 years ago
  72. 6766586 adjust for a pending LLVM change. by Chris Lattner · 15 years ago
  73. 52f08bc Add Code gen support for '->*' operator which fell through the crack. by Fariborz Jahanian · 15 years ago
  74. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 15 years ago
  75. 00a1ad9 Emit calls using the canonical prototype of the called function. by John McCall · 15 years ago
  76. 8bfd31f Complete code gen for '.*' binary expression for both scalar and aggregates. by Fariborz Jahanian · 15 years ago
  77. 3976295 Expand on code gen. for pointer to data members so it works by Fariborz Jahanian · 15 years ago
  78. a636299 Code gen for pointer-to-datamember - WIP. by Fariborz Jahanian · 15 years ago
  79. 48620ba Code-gen for CXXZeroInitValueExpr AST passed by Fariborz Jahanian · 15 years ago
  80. 86aa0cd Handle emitting the assignment operator when the lhs is a reference. Fixes PR5227. by Anders Carlsson · 15 years ago
  81. 259e9cc Twinify CodeGenFunction::CreateTempAlloca by Daniel Dunbar · 15 years ago
  82. 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
  83. b3f7442 Handle by Anders Carlsson · 15 years ago
  84. 3c0ef8c Simplify pointer creation with the new Type::getInt*Ptr methods. by Benjamin Kramer · 15 years ago
  85. d35e2e0 There is no need to attach debug location info with alloca instruction. by Devang Patel · 15 years ago
  86. bbd9fa4 Add support to attach debug info to an instruction. This is not yet enabled. by Devang Patel · 15 years ago
  87. 75b08f1 <rdar://problem/7263113> Make clang produce gcc's objc_assign_StrongCast as a result of type-cast of an ivar in assignment. by Fariborz Jahanian · 15 years ago
  88. 76368e8 Fixed another code gen bug in objc's new write-barrier API. by Fariborz Jahanian · 15 years ago
  89. 6c7a1f3 Patch fixes a code gen. bug in generation of objc_assign_ivar (objc GC's API). by Fariborz Jahanian · 15 years ago
  90. 0953e76 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 15 years ago
  91. 183700f Change all the Type::getAsFoo() methods to specializations of Type::getAs(). by John McCall · 15 years ago
  92. b924259 Removed -fobjc-newgc-api option. clang now conforms to by Fariborz Jahanian · 15 years ago
  93. fd02ed7 Miscellanous fixes in generatation of objc gc's write-barriers. by Fariborz Jahanian · 15 years ago
  94. 1c1afc4 Fixed a bug in generation of the new write-barriers when by Fariborz Jahanian · 15 years ago
  95. dbf3cfd patch for generating objc'2 objc_assign_ivar. WIP. by Fariborz Jahanian · 15 years ago
  96. b123ea3 Starting patch to generate more specific API for objc's by Fariborz Jahanian · 15 years ago
  97. 8e674ae Removed a superfluous check before setting a flag (objc GC). by Fariborz Jahanian · 15 years ago
  98. 6fcec8b Code generation of Conditional operators that are lvalues (but that aren't bitfields). by Anders Carlsson · 15 years ago
  99. b9ea0b5 Implement CodeGenFunction::EmitCXXExprWithTemporariesLValue. by Anders Carlsson · 15 years ago
  100. 0a23d76 Don't use the PredefinedExpr string as the global variable name, these don't by Daniel Dunbar · 15 years ago