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