1. 976f266 fix codegen support for alloc_size attribute for static C++ methods by Nuno Lopes · 13 years ago
  2. 2813420 add CodeGen support for the alloc_size attribute by Nuno Lopes · 13 years ago
  3. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 13 years ago
  4. 377ecc7 Propagate alignment on lvalues through EmitLValueForField. PR12395. by Eli Friedman · 13 years ago
  5. eaf856d Step forward with supporting of ARM homogenous aggregates: by Anton Korobeynikov · 13 years ago
  6. 649b4a1 Revert r153613 as it's causing large compile-time regressions on the nightly testers. by Chad Rosier · 13 years ago
  7. 57cd1b8 When we can't prove that the target of an aggregate copy is by John McCall · 13 years ago
  8. 0821263 When "low alignment" is specified, then set the alignment of the aggregate's by Bill Wendling · 13 years ago
  9. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  10. de5d3c7 Whether an argument is required (in contrast with being an by John McCall · 13 years ago
  11. b49bd27 Teach clang to add metadata tags to calls and invokes in ObjC with by Dan Gohman · 13 years ago
  12. a6ce20e Fix function prolog codegen whe coerce-to type is a struct. by Evgeniy Stepanov · 14 years ago
  13. 77fe6cd When emitting an ARC epilogue that looks like a return of 'self', by John McCall · 14 years ago
  14. f48f796 Get a little bit smarter about killing off the ReturnValue alloca by John McCall · 14 years ago
  15. c891666 use llvm:Attributes instead of unsigned by Kostya Serebryany · 14 years ago
  16. 4ba3fd4 Move the piece of code up that skips the padding argument. Without this change, by Akira Hatanaka · 14 years ago
  17. f0cc208 Add field PaddingType to ABIArgInfo which specifies the type of padding that by Akira Hatanaka · 14 years ago
  18. 6da2c71 Switch LValue so that it exposes alignment in CharUnits. (No functional change.) by Eli Friedman · 14 years ago
  19. 51f5120 Add a utility to get a RValue for a given LValue for an aggregate; switch a few places over to it. by Eli Friedman · 14 years ago
  20. 2871020 Add inreg attributes to reference arguments. by Rafael Espindola · 14 years ago
  21. ca3d3fc Fix crash in calling convention code expanding an struct with a complex member. by Eli Friedman · 14 years ago
  22. 1bb94a4 Fix alignment on alloca's for parameters using ABIArgInfo::Expand. by Eli Friedman · 14 years ago
  23. eea6480 In x86_64, when calling an Objective-C method that returns a _Complex long double, make sure to use the objc_msgSend_fp2ret function which ensures that the return value will be {0, 0} if the receiver is nil. by Anders Carlsson · 14 years ago
  24. bfcacd9 Fix a typo that completely broke the expansion of complex arguments. by Bob Wilson · 14 years ago
  25. 6700415 Add returns_twice to functions that are known to return twice. This implements by Rafael Espindola · 14 years ago
  26. f87cced Propagate __attribute__((returns_twice)) from C to IL. by Rafael Espindola · 14 years ago
  27. 491306a Allow getting all source locations of selector identifiers in a ObjCMethodDecl. by Argyrios Kyrtzidis · 14 years ago
  28. eb2d1f1 Removing a bunch of dead returns/breaks after llvm_unreachables. by David Blaikie · 14 years ago
  29. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 14 years ago
  30. bcfd1f5 Extend the ASTContext constructor to delay the initialization of by Douglas Gregor · 14 years ago
  31. cec52f0 Slight optimization enabled by the previous assert: by John McCall · 14 years ago
  32. 8affed5 Assert that a call argument is a gl-value iff the parameter is a reference type. by John McCall · 14 years ago
  33. 410ffb2 Track whether an AggValueSlot is potentially aliased, and do not by John McCall · 14 years ago
  34. 041087c 'pure' and 'const' functions should also be marked nounwind. Migrate by Eric Christopher · 14 years ago
  35. 194f06a Handle "homogeneous aggregates" as required by the ARM AAPCS-VFP ABI. by Bob Wilson · 14 years ago
  36. 2d3ba4f Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon Mulder! by Chris Lattner · 14 years ago
  37. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
  38. b13eab9 fix rdar://9780211 - Clang crashes with an assertion failure building WKView.mm from WebKit by Chris Lattner · 14 years ago
  39. 2acc6e3 de-constify llvm::Type, patch by David Blaikie! by Chris Lattner · 14 years ago
  40. 4c7d9f1 Convert CallInst and InvokeInst APIs to use ArrayRef. by Jay Foad · 14 years ago
  41. d26c071 protect some calls to ConvertType when a function info is under construction by Chris Lattner · 14 years ago
  42. 71305cc Enhance the IR type lowering code to be much smarter about recursively lowering by Chris Lattner · 14 years ago
  43. 6af13f3 PR10337 reminds me that calls return values, lets handle them just by Chris Lattner · 14 years ago
  44. 811bf36 insert a bitcast in the 'expand' case of argument passing when needed. This by Chris Lattner · 14 years ago
  45. 21ca1fd fix PR10335 by watching out for IR type compatibility in call argument lists. by Chris Lattner · 14 years ago
  46. 7085544 add some aggressive assertions that call arguments match up to callee by Chris Lattner · 14 years ago
  47. be5f332 how about we initialize RecursionState. by Chris Lattner · 14 years ago
  48. f742eb0 Rename CGT::VerifyFuncTypeComplete to isFuncTypeConvertible since by Chris Lattner · 14 years ago
  49. 9cbe4f0 clang side to match the LLVM IR type system rewrite patch. by Chris Lattner · 14 years ago
  50. 545d996 LValue carries a type now, so simplify the main EmitLoad/Store APIs by John McCall · 14 years ago
  51. f85e193 Automatic Reference Counting. by John McCall · 14 years ago
  52. 97cb5a4 Per Chris's suggestion, simplify code using llvm::getOrEnforceKnownAlignment. by Eli Friedman · 14 years ago
  53. 70cbd2a Fix a regression from r132957 involving complex integers. (Fixes failures on gcc-testsuite bot.) by Eli Friedman · 14 years ago
  54. ea5e4da The LLVM IR representation of byval arguments has a rather strange property: if the alignment of an argument to a call is less than the specified byval alignment for that argument, there is no way to specify the alignment of the implied copy. Therefore, we must ensure that the alignment of the argument is at least the byval alignment. To do this, we have to mess with the alignment of relevant alloca's in some cases, and insert a copy that conceptually shouldn't be necessary in some cases. by Eli Friedman · 14 years ago
  55. 55d4848 Skip extra copy from aggregate where it isn't necessary; rdar://problem/8139919 . This shouldn't make much of a difference at -O3, but should substantially reduce the number of generated memcpy's at -O0. by Eli Friedman · 14 years ago
  56. 575a1c9 Introduce Type::isSignedIntegerOrEnumerationType() and by Douglas Gregor · 14 years ago
  57. badea57 For calls returning first-class aggregates, store by element instead of creating aggregate stores in common cases. This is more friendly to fast-isel. by Eli Friedman · 14 years ago
  58. 42e0611 More killing of std::vector. by John McCall · 14 years ago
  59. 6f08777 Revert r130717, which caused a regression (<rdar://problem/9402621>). by Douglas Gregor · 14 years ago
  60. b5a03b6 Skip extra copy from aggregate where it isn't necessary; rdar://problem/8139919 . This shouldn't make much of a difference at -O3, but should substantially reduce the number of generated memcpy's at -O0. by Eli Friedman · 14 years ago
  61. c6d0782 Switch CallArgList from an std::pair to a new CallArg struct (which will eventually gain more members). Working towards modifying call emission to avoid unnecessary copies. by Eli Friedman · 14 years ago
  62. 414d896 Implement ARM pcs attribute. Basically it's another way of calling convention selection (AAPCS or by Anton Korobeynikov · 14 years ago
  63. a49218e PR8369: make __attribute((regparm(0))) work correctly. Original patch by by Eli Friedman · 14 years ago
  64. 207f4d8 Add support for language-specific address spaces. On top of that, by Peter Collingbourne · 14 years ago
  65. 8026f6d Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcept specifiers, unique FunctionProtoTypes with a ContextualFoldingSet, as suggested by John McCall. by Sebastian Redl · 14 years ago
  66. 60618fa Propagate the new exception information to FunctionProtoType. by Sebastian Redl · 14 years ago
  67. 413ebdb Use a slightly more semantic interface for emitting call arguments. by John McCall · 14 years ago
  68. c95a8fc lib/CodeGen/CGCall.cpp: Don't invoke multiple Builder.CreateBitCast() on Builder.CreateMemCpy. Or we would see sideeffect incompatibility among gcc and clang. by NAKAMURA Takumi · 14 years ago
  69. d26bc76 Use the "undergoes default argument promotion" bit on parameters to by John McCall · 14 years ago
  70. 093ac46 Encode argument numbering in debug info so that code generator can emit them in order. by Devang Patel · 14 years ago
  71. 9c6082f Revert "Add CC_Win64ThisCall and set it in the necessary places." by Tilmann Scheller · 14 years ago
  72. 41ba267 revert r126858. by Devang Patel · 14 years ago
  73. 88d117c Add CC_Win64ThisCall and set it in the necessary places. by Tilmann Scheller · 14 years ago
  74. 810b07c by Devang Patel · 14 years ago
  75. 3da5cb2 Revert r126794. by Devang Patel · 14 years ago
  76. 8a04585 Encode argument numbering in debug info so that code generator can emit them in order. by Devang Patel · 14 years ago
  77. c0ddef2 objc IRGen for Next runtime message API. by Fariborz Jahanian · 14 years ago
  78. 3475380 Simplify test to check an aggregate argument that has non trivial constructor or destructor. by Devang Patel · 14 years ago
  79. 7f6890e Fix family-friendly-o, tsk tsk. by Daniel Dunbar · 15 years ago
  80. 17d3fea Driver/Frontend: Wire up -mregparm=. by Daniel Dunbar · 15 years ago
  81. 570729e If an aggregate argument is passed indirectly because it has non trivial by Devang Patel · 15 years ago
  82. d16c2cf Reorganize CodeGen{Function,Module} to eliminate the unfortunate by John McCall · 15 years ago
  83. fe71008 Replace calls to getTypeSize() and getTypeAlign() with their 'InChars' by Ken Dyck · 15 years ago
  84. 9f0c7cc Simplify mem{cpy, move, set} creation with IRBuilder. by Benjamin Kramer · 15 years ago
  85. 9cac494 Fix Whitespace. by Michael J. Spencer · 15 years ago
  86. cf3b6f2 IRgen/ABI: Add support for realigning structures which are passed by indirect by Daniel Dunbar · 15 years ago
  87. 52fc314 Add symantic support for the Pascal calling convention via by Dawn Perchik · 15 years ago
  88. fc40028 Re-commit r112916 with an additional fix for the self-host failures. by John McCall · 15 years ago
  89. 2b8d60d Revert r112916, it's breaking selfhost pretty badly. by John McCall · 15 years ago
  90. 52968ab It's not safe to use the generic CXXMethodDecl overload of CGT::getFunctionInfo by John McCall · 15 years ago
  91. 4c40d98 Teach IR generation to return 'this' from constructors and destructors by John McCall · 15 years ago
  92. 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 · 15 years ago
  93. 91a16fa IRgen: Change Emit{Load,Store}OfScalar to take a required Alignment argument and by Daniel Dunbar · 15 years ago
  94. 117e3f4 fix PR5179 and correctly fix PR5831 to not miscompile. by Chris Lattner · 15 years ago
  95. 1ed7267 fix a builder, why didn't clang++ catch this? by Chris Lattner · 15 years ago
  96. 800588f Kill off the 'coerce' ABI passing form. Now 'direct' and 'extend' always by Chris Lattner · 15 years ago
  97. ee5dcd0 dissolve some more complexity: make the x86-64 abi lowering code by Chris Lattner · 15 years ago
  98. a3c109b now that ABIInfo depends on CGT, it has trivial access to such by Chris Lattner · 15 years ago
  99. 2eb9cdd tidy up by Chris Lattner · 15 years ago
  100. deabde2 some cleanups and get alignments correct for various coerce cases. by Chris Lattner · 15 years ago