1. 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
  2. b2bcf1c Use the correct function info for constructors when applying function attributes. Fixes PR6245. by Anders Carlsson · 14 years ago
  3. 04a67a6 Standardize the parsing of function type attributes in a way that by John McCall · 14 years ago
  4. 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
  5. 3aba093 Start creating CXXBindReferenceExpr nodes when binding complex types to references. by Anders Carlsson · 14 years ago
  6. 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
  7. d2490a9 Fill in the return value slot in CGExprAgg::VisitCallExpr. This takes us halfway towards fixing PR5824. by Anders Carlsson · 15 years ago
  8. f3c47c9 Pass ReturnValueSlot to EmitCall. No functionality change yet. by Anders Carlsson · 15 years ago
  9. 079b495 implement PR5274: mark 'restrict' parameters as noalias by Nuno Lopes · 15 years ago
  10. b17daf9 Make functions returning a struct indirectly evaluate the returned struct by Eli Friedman · 15 years ago
  11. f6c56e2 Add VTT parameter to base ctors/dtors with virtual bases. (They aren't used yet). by Anders Carlsson · 15 years ago
  12. ecf282b It is common for vtables to contain pointers to functions that have either incomplete return types or incomplete argument types. by Anders Carlsson · 15 years ago
  13. fd01535 The ssp and sspreq function attributes should only be applied to function definitions, not declarations or calls. by Anders Carlsson · 15 years ago
  14. 2811ccf Move CompileOptions -> CodeGenOptions, and sink it into the CodeGen library. by Chandler Carruth · 15 years ago
  15. 7ab1c3e Set OptimizeForSize LLVM function attribute with -Os. by Daniel Dunbar · 15 years ago
  16. 259e9cc Twinify CodeGenFunction::CreateTempAlloca by Daniel Dunbar · 15 years ago
  17. ffbb15e Use new predicates for some type equality tests. by Benjamin Kramer · 15 years ago
  18. 375c31c Implement code generation of member function pointer calls. Fixes PR5121. by Anders Carlsson · 15 years ago
  19. 0953e76 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 15 years ago
  20. 183700f Change all the Type::getAsFoo() methods to specializations of Type::getAs(). by John McCall · 15 years ago
  21. 0a8f847 x86-64 ABI: If a type is a C++ record with either a non-trivial destructor or a non-trivial copy constructor, it should be passed in a pointer. Daniel, plz review. by Anders Carlsson · 15 years ago
  22. ca6408c Change CodeGenModule::ConstructTypeAttributes to return the calling convention by Daniel Dunbar · 15 years ago
  23. 8a9f3fd Set the calling convention based on the CGFunctionInfo. by Daniel Dunbar · 15 years ago
  24. bac7c25 Add CallingConvention argument to CGFunctionInfo. - Currently unused. by Daniel Dunbar · 15 years ago
  25. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  26. 0032b27 Update for LLVM API change. by Owen Anderson · 15 years ago
  27. 76168e2 map previously ignored __attribute((malloc)) to noalias attribute of llvm function's return by Ryan Flynn · 15 years ago
  28. 89ed31d Add support for global initializers. by Anders Carlsson · 15 years ago
  29. 0ab9a25 Use Twine instead of utostr by Daniel Dunbar · 15 years ago
  30. c9c88b4 Update for LLVM API change. by Owen Anderson · 15 years ago
  31. 0cfeb63 Allow functions to be marked "implicit return zero" and so mark main(). by John McCall · 15 years ago
  32. a1cf15f Update for LLVM API change, and contextify a bunch of related stuff. by Owen Anderson · 15 years ago
  33. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  34. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  35. 4ebe3e4 Make the StackProtector bitfield use enums instead of obscure numbers. by Bill Wendling · 15 years ago
  36. 45483f7 Add stack protector support to clang. This generates the 'ssp' and 'sspreq' by Bill Wendling · 15 years ago
  37. d6bebbf fix PR4423. by Chris Lattner · 15 years ago
  38. 68584ed Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 15 years ago
  39. 5db7ae5 Fix PR4372, another case where non-prototyped functions can prevent by Chris Lattner · 15 years ago
  40. cc6fa88 Add new ABIArgInfo kind: Extend. This allows target to implement its own argument by Anton Korobeynikov · 15 years ago
  41. c4a59eb Factor out TargetABIInfo stuff into separate file. No functionality change. by Anton Korobeynikov · 15 years ago
  42. acebb39 Set function Attribute::NoImplicitFloat appropriately. by Devang Patel · 15 years ago
  43. fdf4986 ABI handling: Fix nasty thinko where IRgen could generate an out-of-bounds read by Daniel Dunbar · 15 years ago
  44. 24095da Set function attribute llvm::Attribute::NoRedZone appropriately. by Devang Patel · 15 years ago
  45. 86e13ee When trying to pass an argument on the stack, assume LLVM will do the right by Daniel Dunbar · 15 years ago
  46. 3a5f5c5 x86_64 ABI: Account for sret parameters consuming an integer register. by Daniel Dunbar · 15 years ago
  47. 6857d9d Set correct calling convention even if there is a bitcast in the way. by Torok Edwin · 15 years ago
  48. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  49. 4029ca7 Add EmitReferenceBindingToExpr. Have EmitCallArg use it for now. Doesn't support anything but at least we don't crash ;) by Anders Carlsson · 15 years ago
  50. b4aa466 Pass the destination QualType to EmitStoreOfScalar. No functionality change. by Anders Carlsson · 15 years ago
  51. ac8d629 Clean up some unnecessary includes. by Eli Friedman · 15 years ago
  52. f5408fe Reflow some comments. by Mike Stump · 15 years ago
  53. 7ef455b ABI handling: Fix invalid assertion, it is possible for a valid by Daniel Dunbar · 15 years ago
  54. 3eb67ca static methods don't get this pointers. by Chris Lattner · 15 years ago
  55. 836a064 Darwin x86-32 ABI: Now that structure passing is farther along, we by Daniel Dunbar · 15 years ago
  56. 20e95c5 x86-64 ABI: clang incorrectly passes union { long double, float } in by Daniel Dunbar · 15 years ago
  57. cc401dc Darwin x86-32: Multi-dimensional arrays were not handled correctly, by Daniel Dunbar · 15 years ago
  58. 573b907 Darwin x86_32: Treat records with unnamed bit-fields as "empty". by Daniel Dunbar · 15 years ago
  59. 9408c45 Correct for renaming PaddedSize -> AllocSize in LLVM. by Duncan Sands · 15 years ago
  60. 8236bf1 x86_64 ABI: Ignore padding bit-fields during classification. by Daniel Dunbar · 15 years ago
  61. 2e00116 Darwin x86_32: When coercing a "single element" structure, make sure by Daniel Dunbar · 15 years ago
  62. fcab2ca Darwin x86_32: Ignore padding bit-fields when looking for "single by Daniel Dunbar · 15 years ago
  63. eedd292 Darwin x86_32: Improve bit-field handling for returning records. by Daniel Dunbar · 15 years ago
  64. f7fff32 Darwin x86_32: Ignore arrays of empty structures inside records. by Daniel Dunbar · 15 years ago
  65. ae69e00 fix i128 to return in 2 64-bit registers (rax/rdx on x86-64) by Chris Lattner · 15 years ago
  66. 2df9ced initial support for __[u]int128_t, which should be basically by Chris Lattner · 15 years ago
  67. 8e03444 x86-32 ABI: Fix crash on return of structure with flexible array member. by Daniel Dunbar · 15 years ago
  68. 9a901bb Remove getIntegerConstantExprValue in favor of using EvaluateAsInt. by Eli Friedman · 15 years ago
  69. 70aa5f9 Pass and return aggregate types directly to function calls. by Sanjiv Gupta · 15 years ago
  70. af23f69 Make CodeGenFunction::EmitCallArgs a template function that takes a generic "Type Info" parameter. The type info parameter knows how to iterate over its arguments. by Anders Carlsson · 15 years ago
  71. b11fa0d Update to use hasAttr() instead of getAttr(). - No functionality change. by Daniel Dunbar · 15 years ago
  72. 64c2e07 Don't set both readnone and readonly. by Daniel Dunbar · 15 years ago
  73. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 15 years ago
  74. 0139bb9 Add code for emitting call arguments (not used yet). by Anders Carlsson · 15 years ago
  75. a17d7cc Don't assume that a block always has a FunctionProtoType. Fixes rdar://6768379. by Anders Carlsson · 15 years ago
  76. 5529b24 Add a getFunctionInfo that takes a BlockPointerType. by Anders Carlsson · 15 years ago
  77. 1102f42 Basic support for regparm codegen by Anton Korobeynikov · 15 years ago
  78. f6f8ae5 Add a getFunctionInfo that takes a CXXMethodDecl. by Anders Carlsson · 15 years ago
  79. cf6bde3 x86-32 Darwin ABI: Handle small structures correctly. by Daniel Dunbar · 15 years ago
  80. dfc6b80 x86-32 Darwin ABI: Single element arrays can be part of "single by Daniel Dunbar · 15 years ago
  81. 3604316 x86-32 Darwin ABI: Handle direct return of vectors. by Daniel Dunbar · 15 years ago
  82. 5bde6f4 x86_32 Darwin ABI: Treat empty unions like empty structures. by Daniel Dunbar · 15 years ago
  83. a027ea9 Initial implementation of ARM ABI. Mostly untested. Note that I'm not by Eli Friedman · 15 years ago
  84. 9fd58e8 Fix the ABI convention for struct returns on x86 outside of Darwin. by Eli Friedman · 15 years ago
  85. 3403084 don't set the name of a call instruction to "call" in release-asserts by Chris Lattner · 15 years ago
  86. 0ac86f0 PR3835: Interaction with ABI structure passing can inhibit by Daniel Dunbar · 15 years ago
  87. e06a75f x86_32 ABI: Don't try and expand structures with bitfields. by Daniel Dunbar · 15 years ago
  88. 4a77edb Remove some now-unneeded calls to llvm::errs().flush(). by Daniel Dunbar · 15 years ago
  89. 100f402 x86_64 ABI: Handle long double in union when upper eightbyte results by Daniel Dunbar · 15 years ago
  90. d14151d Cleanup handling of function attributes in calls. by Daniel Dunbar · 15 years ago
  91. 72564e7 Create a new TypeNodes.def file that enumerates all of the types, by Douglas Gregor · 15 years ago
  92. 8958891 Add Type::hasPointerRepresentation predicate. by Daniel Dunbar · 15 years ago
  93. 24a9f6e Drop uses of isPointerLikeType. - No functionality change. by Daniel Dunbar · 15 years ago
  94. 708762b Classify enum types correctly by Anders Carlsson · 15 years ago
  95. 9a8c2e9 x86_64 ABI: Qualified id types are passed as pointers. by Daniel Dunbar · 15 years ago
  96. 0334a4e Temporarily disable clearing of insert point (to indicate unreachable by Daniel Dunbar · 15 years ago
  97. 9834ffb Add low level support for generating invoke instead of calls. by Daniel Dunbar · 15 years ago
  98. 245f553 x86_64 ABI: Actually, we can always pass things we want to pass in by Daniel Dunbar · 15 years ago
  99. 775e43b x86_64 ABI: Make sure to pass vectors that we want to pass in memory by Daniel Dunbar · 15 years ago
  100. e28099b x86_64 ABI: Pass 32-bit vectors as Integer to match gcc. We don't care by Daniel Dunbar · 15 years ago