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