1. ae69e00 fix i128 to return in 2 64-bit registers (rax/rdx on x86-64) by Chris Lattner · 15 years ago
  2. 2df9ced initial support for __[u]int128_t, which should be basically by Chris Lattner · 15 years ago
  3. 8e03444 x86-32 ABI: Fix crash on return of structure with flexible array member. by Daniel Dunbar · 15 years ago
  4. 9a901bb Remove getIntegerConstantExprValue in favor of using EvaluateAsInt. by Eli Friedman · 15 years ago
  5. 70aa5f9 Pass and return aggregate types directly to function calls. by Sanjiv Gupta · 15 years ago
  6. 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
  7. b11fa0d Update to use hasAttr() instead of getAttr(). - No functionality change. by Daniel Dunbar · 15 years ago
  8. 64c2e07 Don't set both readnone and readonly. by Daniel Dunbar · 15 years ago
  9. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 15 years ago
  10. 0139bb9 Add code for emitting call arguments (not used yet). by Anders Carlsson · 15 years ago
  11. a17d7cc Don't assume that a block always has a FunctionProtoType. Fixes rdar://6768379. by Anders Carlsson · 15 years ago
  12. 5529b24 Add a getFunctionInfo that takes a BlockPointerType. by Anders Carlsson · 15 years ago
  13. 1102f42 Basic support for regparm codegen by Anton Korobeynikov · 15 years ago
  14. f6f8ae5 Add a getFunctionInfo that takes a CXXMethodDecl. by Anders Carlsson · 15 years ago
  15. cf6bde3 x86-32 Darwin ABI: Handle small structures correctly. by Daniel Dunbar · 15 years ago
  16. dfc6b80 x86-32 Darwin ABI: Single element arrays can be part of "single by Daniel Dunbar · 15 years ago
  17. 3604316 x86-32 Darwin ABI: Handle direct return of vectors. by Daniel Dunbar · 15 years ago
  18. 5bde6f4 x86_32 Darwin ABI: Treat empty unions like empty structures. by Daniel Dunbar · 15 years ago
  19. a027ea9 Initial implementation of ARM ABI. Mostly untested. Note that I'm not by Eli Friedman · 15 years ago
  20. 9fd58e8 Fix the ABI convention for struct returns on x86 outside of Darwin. by Eli Friedman · 15 years ago
  21. 3403084 don't set the name of a call instruction to "call" in release-asserts by Chris Lattner · 15 years ago
  22. 0ac86f0 PR3835: Interaction with ABI structure passing can inhibit by Daniel Dunbar · 15 years ago
  23. e06a75f x86_32 ABI: Don't try and expand structures with bitfields. by Daniel Dunbar · 15 years ago
  24. 4a77edb Remove some now-unneeded calls to llvm::errs().flush(). by Daniel Dunbar · 15 years ago
  25. 100f402 x86_64 ABI: Handle long double in union when upper eightbyte results by Daniel Dunbar · 15 years ago
  26. d14151d Cleanup handling of function attributes in calls. by Daniel Dunbar · 15 years ago
  27. 72564e7 Create a new TypeNodes.def file that enumerates all of the types, by Douglas Gregor · 15 years ago
  28. 8958891 Add Type::hasPointerRepresentation predicate. by Daniel Dunbar · 15 years ago
  29. 24a9f6e Drop uses of isPointerLikeType. - No functionality change. by Daniel Dunbar · 15 years ago
  30. 708762b Classify enum types correctly by Anders Carlsson · 15 years ago
  31. 9a8c2e9 x86_64 ABI: Qualified id types are passed as pointers. by Daniel Dunbar · 15 years ago
  32. 0334a4e Temporarily disable clearing of insert point (to indicate unreachable by Daniel Dunbar · 15 years ago
  33. 9834ffb Add low level support for generating invoke instead of calls. by Daniel Dunbar · 15 years ago
  34. 245f553 x86_64 ABI: Actually, we can always pass things we want to pass in by Daniel Dunbar · 15 years ago
  35. 775e43b x86_64 ABI: Make sure to pass vectors that we want to pass in memory by Daniel Dunbar · 15 years ago
  36. e28099b x86_64 ABI: Pass 32-bit vectors as Integer to match gcc. We don't care by Daniel Dunbar · 15 years ago
  37. 0af9929 x86_64 ABI: Classify <1 x i64> as INTEGER (match gcc not llvm-gcc). by Daniel Dunbar · 15 years ago
  38. f4fe0f0 Take advantage of noreturn attribute to add unreachable instruction & by Daniel Dunbar · 15 years ago
  39. c0ef9f5 Set call attribute for direct calls (i.e. noreturn). by Daniel Dunbar · 15 years ago
  40. 2073216 switch ObjCMethodDecl's parameter list from being explicitly managed to an ObjCList. by Chris Lattner · 15 years ago
  41. 570f0cf i386 ABI: Offset computation in va_arg was incorrect for sizeof(Ty)>4. by Daniel Dunbar · 15 years ago
  42. 90dafa1 x86_64 ABI: Fix thinko in computation of bound for "passed in SSE regs" test. by Daniel Dunbar · 15 years ago
  43. f231346 x86_64 ABI: "is passed in regs" computation for va_arg was broken for by Daniel Dunbar · 15 years ago
  44. 3e030b4 x86_64 ABI: Two bug fixes. 1. Return of _Complex long double used wrong type. by Daniel Dunbar · 15 years ago
  45. 6e53e9b x86_64 ABI: Fix assert on return of _Complex long double. by Daniel Dunbar · 15 years ago
  46. dd81d44 x86_64 ABI: Implement classification for bit-fields. by Daniel Dunbar · 15 years ago
  47. c5bcee4 x86_64 ABI: Handle va_arg arguments with alignment > 8. by Daniel Dunbar · 15 years ago
  48. 3327f6e x86_64 ABI: Need to use canonical types when comparing against ASTContext types. by Daniel Dunbar · 16 years ago
  49. 644f4c3 x86_64 ABI: Pass simple types directly when possible. This is by Daniel Dunbar · 16 years ago
  50. 55e5d89 x86_64 ABI: Support va_arg passed in mixed registers. by Daniel Dunbar · 16 years ago
  51. be9eb09 x86_64: Initial varargs support. by Daniel Dunbar · 16 years ago
  52. b4094ea Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. by Daniel Dunbar · 16 years ago
  53. 3b4e9cd Tweak x86-64 ABI to allow reuse for vararg handling. by Daniel Dunbar · 16 years ago
  54. adc8bdd ABI: Correctly handle load/store of values which have a different LLVM by Daniel Dunbar · 16 years ago
  55. 8b979d9 Make sure to initialize local variables, even if they were ignored by ABI. by Daniel Dunbar · 16 years ago
  56. 386621f Set load/store alignment when doing ABI coercions. by Daniel Dunbar · 16 years ago
  57. 2fbf2f5 Implement Direct ABIInfo semantics. by Daniel Dunbar · 16 years ago
  58. 2969a02 Simplify test for whether we need an alloca to hold an indirect return by Daniel Dunbar · 16 years ago
  59. 1f74598 Implement ABI Indirect sematics for arguments. by Daniel Dunbar · 16 years ago
  60. 11e383a Merge ABIInfo StructRet/ByVal into Indirect. by Daniel Dunbar · 16 years ago
  61. 13e8173 Pull CodeGenFunction::GetUndefRValue() out of EmitUnsupportedRValue. by Daniel Dunbar · 16 years ago
  62. 3170c93 x86-32: Use Ignore to avoid passing empty structs (instead of Expand). by Daniel Dunbar · 16 years ago
  63. ca00882 Honor ByVal alignment. Patch by Nate Begeman! by Daniel Dunbar · 16 years ago
  64. 35e67d4 Unbreak CGFunctionInfo::Profile method and reenable caching of ABI information. by Daniel Dunbar · 16 years ago
  65. 6f7279b Add ABIArgInfo::dump() by Daniel Dunbar · 16 years ago
  66. 747f06a Temporarily disable caching of ABI results; this is going horribly by Daniel Dunbar · 16 years ago
  67. 4b5f0a4 Add asserts that the function signature matches the other arguments provide by Daniel Dunbar · 16 years ago
  68. 8b29a38 Handle demotion of coerced arguments (as in void a(x) short x; { ... }). by Daniel Dunbar · 16 years ago
  69. 5a1be6e Use ConvertTypeForMem when creating alloca for scalar argument. by Daniel Dunbar · 16 years ago
  70. 59e5a0e x86_64 ABI: Initial implementation of ABI compliant parameter passing. by Daniel Dunbar · 16 years ago
  71. 89c9d8e ABI handling: Implement coercion for argument types (in addition to by Daniel Dunbar · 16 years ago
  72. 6bad265 Change ABIInfo to compute information for a full signature at a time by Daniel Dunbar · 16 years ago
  73. 0bcc521 Remove ABIArgInfo::Default kind, ABI is now responsible for specifying by Daniel Dunbar · 16 years ago
  74. 46327aa Add ABIArgInfo::Direct kind, which passes arguments using whatever the by Daniel Dunbar · 16 years ago
  75. 5251afa Add two FIXMEs. by Daniel Dunbar · 16 years ago
  76. b225be4 Always use CGFunctionInfo to access ABI information. by Daniel Dunbar · 16 years ago
  77. 88c2fa9 Move ABIArgInfo into CGFunctionInfo, computed on creation. by Daniel Dunbar · 16 years ago
  78. 9eb5c6d Move ABIInfo/ABIArgInfo classes into ABIInfo.h by Daniel Dunbar · 16 years ago
  79. 40a6be6 Memoize CGFunctionInfo construction. by Daniel Dunbar · 16 years ago
  80. a0a99e0 Change CGFunctionInfo args iterator to not include the return type. by Daniel Dunbar · 16 years ago
  81. 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 16 years ago
  82. 88b5396 More ABI API cleanup. by Daniel Dunbar · 16 years ago
  83. bb36d33 ABI handling API changes. by Daniel Dunbar · 16 years ago
  84. 275e10d Shuffle some functions around, no functionality change. by Daniel Dunbar · 16 years ago
  85. 9a82b52 Add FIXME. by Daniel Dunbar · 16 years ago
  86. 36b5f5e Remove unused overload of GetFunctionType. by Daniel Dunbar · 16 years ago
  87. 6f6b036 Initialize CGFunctionInfo isVariadic bit correctly. by Daniel Dunbar · 16 years ago
  88. 21a4f62 Err, unbreak my previous "no functionality change commit", will fix properly later. by Daniel Dunbar · 16 years ago
  89. 725ad31 Kill off CGCallInfo, always use CGFunctionInfo for encapsulating by Daniel Dunbar · 16 years ago
  90. c450357 x86_64 ABI: Retool classification to compute lo & hi classifications by Daniel Dunbar · 16 years ago
  91. cdf920e x86_64 ABI: Fix more thinkos, straddling computation for complex was by Daniel Dunbar · 16 years ago
  92. 71e62a9 x86_64 ABI: Fix thinko in prev commit, 64-bit vectors should have SSE by Daniel Dunbar · 16 years ago
  93. d4cd1b0 x86_64 ABI: Pass <1 x double> in memory. This is arguably wrong, but by Daniel Dunbar · 16 years ago
  94. 11a76ed Remove testing -use-x86_64-abi option; current implementation is by Daniel Dunbar · 16 years ago
  95. e33edf1 x86_64 ABI: Split small vectors which cross an eightbyte boundary. Down to 33/500 return type failures. by Daniel Dunbar · 16 years ago
  96. 8562ae7 x86_64 ABI: Implement classification for arrays. by Daniel Dunbar · 16 years ago
  97. e620ecd Use uint64_t not unsigned for type sizes/offsets. by Daniel Dunbar · 16 years ago
  98. f04d69b x86_64 ABI: Handle fields / complex components which straddle by Daniel Dunbar · 16 years ago
  99. 7f102f8 x86_64 ABI: Tweak merging algorithm so that we always bail early when by Daniel Dunbar · 16 years ago
  100. cc039fe ABI: When emitting calls which return an ignored argument, make sure by Daniel Dunbar · 16 years ago