1. 0ac86f0 PR3835: Interaction with ABI structure passing can inhibit by Daniel Dunbar · 16 years ago
  2. e06a75f x86_32 ABI: Don't try and expand structures with bitfields. by Daniel Dunbar · 16 years ago
  3. 4a77edb Remove some now-unneeded calls to llvm::errs().flush(). by Daniel Dunbar · 16 years ago
  4. 100f402 x86_64 ABI: Handle long double in union when upper eightbyte results by Daniel Dunbar · 16 years ago
  5. d14151d Cleanup handling of function attributes in calls. by Daniel Dunbar · 16 years ago
  6. 72564e7 Create a new TypeNodes.def file that enumerates all of the types, by Douglas Gregor · 16 years ago
  7. 8958891 Add Type::hasPointerRepresentation predicate. by Daniel Dunbar · 16 years ago
  8. 24a9f6e Drop uses of isPointerLikeType. - No functionality change. by Daniel Dunbar · 16 years ago
  9. 708762b Classify enum types correctly by Anders Carlsson · 16 years ago
  10. 9a8c2e9 x86_64 ABI: Qualified id types are passed as pointers. by Daniel Dunbar · 16 years ago
  11. 0334a4e Temporarily disable clearing of insert point (to indicate unreachable by Daniel Dunbar · 16 years ago
  12. 9834ffb Add low level support for generating invoke instead of calls. by Daniel Dunbar · 16 years ago
  13. 245f553 x86_64 ABI: Actually, we can always pass things we want to pass in by Daniel Dunbar · 16 years ago
  14. 775e43b x86_64 ABI: Make sure to pass vectors that we want to pass in memory by Daniel Dunbar · 16 years ago
  15. e28099b x86_64 ABI: Pass 32-bit vectors as Integer to match gcc. We don't care by Daniel Dunbar · 16 years ago
  16. 0af9929 x86_64 ABI: Classify <1 x i64> as INTEGER (match gcc not llvm-gcc). by Daniel Dunbar · 16 years ago
  17. f4fe0f0 Take advantage of noreturn attribute to add unreachable instruction & by Daniel Dunbar · 16 years ago
  18. c0ef9f5 Set call attribute for direct calls (i.e. noreturn). by Daniel Dunbar · 16 years ago
  19. 2073216 switch ObjCMethodDecl's parameter list from being explicitly managed to an ObjCList. by Chris Lattner · 16 years ago
  20. 570f0cf i386 ABI: Offset computation in va_arg was incorrect for sizeof(Ty)>4. by Daniel Dunbar · 16 years ago
  21. 90dafa1 x86_64 ABI: Fix thinko in computation of bound for "passed in SSE regs" test. by Daniel Dunbar · 16 years ago
  22. f231346 x86_64 ABI: "is passed in regs" computation for va_arg was broken for by Daniel Dunbar · 16 years ago
  23. 3e030b4 x86_64 ABI: Two bug fixes. 1. Return of _Complex long double used wrong type. by Daniel Dunbar · 16 years ago
  24. 6e53e9b x86_64 ABI: Fix assert on return of _Complex long double. by Daniel Dunbar · 16 years ago
  25. dd81d44 x86_64 ABI: Implement classification for bit-fields. by Daniel Dunbar · 16 years ago
  26. c5bcee4 x86_64 ABI: Handle va_arg arguments with alignment > 8. by Daniel Dunbar · 16 years ago
  27. 3327f6e x86_64 ABI: Need to use canonical types when comparing against ASTContext types. by Daniel Dunbar · 16 years ago
  28. 644f4c3 x86_64 ABI: Pass simple types directly when possible. This is by Daniel Dunbar · 16 years ago
  29. 55e5d89 x86_64 ABI: Support va_arg passed in mixed registers. by Daniel Dunbar · 16 years ago
  30. be9eb09 x86_64: Initial varargs support. by Daniel Dunbar · 16 years ago
  31. b4094ea Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. by Daniel Dunbar · 16 years ago
  32. 3b4e9cd Tweak x86-64 ABI to allow reuse for vararg handling. by Daniel Dunbar · 16 years ago
  33. adc8bdd ABI: Correctly handle load/store of values which have a different LLVM by Daniel Dunbar · 16 years ago
  34. 8b979d9 Make sure to initialize local variables, even if they were ignored by ABI. by Daniel Dunbar · 16 years ago
  35. 386621f Set load/store alignment when doing ABI coercions. by Daniel Dunbar · 16 years ago
  36. 2fbf2f5 Implement Direct ABIInfo semantics. by Daniel Dunbar · 16 years ago
  37. 2969a02 Simplify test for whether we need an alloca to hold an indirect return by Daniel Dunbar · 16 years ago
  38. 1f74598 Implement ABI Indirect sematics for arguments. by Daniel Dunbar · 16 years ago
  39. 11e383a Merge ABIInfo StructRet/ByVal into Indirect. by Daniel Dunbar · 16 years ago
  40. 13e8173 Pull CodeGenFunction::GetUndefRValue() out of EmitUnsupportedRValue. by Daniel Dunbar · 16 years ago
  41. 3170c93 x86-32: Use Ignore to avoid passing empty structs (instead of Expand). by Daniel Dunbar · 16 years ago
  42. ca00882 Honor ByVal alignment. Patch by Nate Begeman! by Daniel Dunbar · 16 years ago
  43. 35e67d4 Unbreak CGFunctionInfo::Profile method and reenable caching of ABI information. by Daniel Dunbar · 16 years ago
  44. 6f7279b Add ABIArgInfo::dump() by Daniel Dunbar · 16 years ago
  45. 747f06a Temporarily disable caching of ABI results; this is going horribly by Daniel Dunbar · 16 years ago
  46. 4b5f0a4 Add asserts that the function signature matches the other arguments provide by Daniel Dunbar · 16 years ago
  47. 8b29a38 Handle demotion of coerced arguments (as in void a(x) short x; { ... }). by Daniel Dunbar · 16 years ago
  48. 5a1be6e Use ConvertTypeForMem when creating alloca for scalar argument. by Daniel Dunbar · 16 years ago
  49. 59e5a0e x86_64 ABI: Initial implementation of ABI compliant parameter passing. by Daniel Dunbar · 16 years ago
  50. 89c9d8e ABI handling: Implement coercion for argument types (in addition to by Daniel Dunbar · 16 years ago
  51. 6bad265 Change ABIInfo to compute information for a full signature at a time by Daniel Dunbar · 16 years ago
  52. 0bcc521 Remove ABIArgInfo::Default kind, ABI is now responsible for specifying by Daniel Dunbar · 16 years ago
  53. 46327aa Add ABIArgInfo::Direct kind, which passes arguments using whatever the by Daniel Dunbar · 16 years ago
  54. 5251afa Add two FIXMEs. by Daniel Dunbar · 16 years ago
  55. b225be4 Always use CGFunctionInfo to access ABI information. by Daniel Dunbar · 16 years ago
  56. 88c2fa9 Move ABIArgInfo into CGFunctionInfo, computed on creation. by Daniel Dunbar · 16 years ago
  57. 9eb5c6d Move ABIInfo/ABIArgInfo classes into ABIInfo.h by Daniel Dunbar · 16 years ago
  58. 40a6be6 Memoize CGFunctionInfo construction. by Daniel Dunbar · 16 years ago
  59. a0a99e0 Change CGFunctionInfo args iterator to not include the return type. by Daniel Dunbar · 16 years ago
  60. 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 16 years ago
  61. 88b5396 More ABI API cleanup. by Daniel Dunbar · 16 years ago
  62. bb36d33 ABI handling API changes. by Daniel Dunbar · 16 years ago
  63. 275e10d Shuffle some functions around, no functionality change. by Daniel Dunbar · 16 years ago
  64. 9a82b52 Add FIXME. by Daniel Dunbar · 16 years ago
  65. 36b5f5e Remove unused overload of GetFunctionType. by Daniel Dunbar · 16 years ago
  66. 6f6b036 Initialize CGFunctionInfo isVariadic bit correctly. by Daniel Dunbar · 16 years ago
  67. 21a4f62 Err, unbreak my previous "no functionality change commit", will fix properly later. by Daniel Dunbar · 16 years ago
  68. 725ad31 Kill off CGCallInfo, always use CGFunctionInfo for encapsulating by Daniel Dunbar · 16 years ago
  69. c450357 x86_64 ABI: Retool classification to compute lo & hi classifications by Daniel Dunbar · 16 years ago
  70. cdf920e x86_64 ABI: Fix more thinkos, straddling computation for complex was by Daniel Dunbar · 16 years ago
  71. 71e62a9 x86_64 ABI: Fix thinko in prev commit, 64-bit vectors should have SSE by Daniel Dunbar · 16 years ago
  72. d4cd1b0 x86_64 ABI: Pass <1 x double> in memory. This is arguably wrong, but by Daniel Dunbar · 16 years ago
  73. 11a76ed Remove testing -use-x86_64-abi option; current implementation is by Daniel Dunbar · 16 years ago
  74. 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
  75. 8562ae7 x86_64 ABI: Implement classification for arrays. by Daniel Dunbar · 16 years ago
  76. e620ecd Use uint64_t not unsigned for type sizes/offsets. by Daniel Dunbar · 16 years ago
  77. f04d69b x86_64 ABI: Handle fields / complex components which straddle by Daniel Dunbar · 16 years ago
  78. 7f102f8 x86_64 ABI: Tweak merging algorithm so that we always bail early when by Daniel Dunbar · 16 years ago
  79. cc039fe ABI: When emitting calls which return an ignored argument, make sure by Daniel Dunbar · 16 years ago
  80. 99037e5 x86_64 ABI: Implement classification for records. by Daniel Dunbar · 16 years ago
  81. b0e14f2 x86_64: Support cases which map to returning multiple values in LLVM by Daniel Dunbar · 16 years ago
  82. eac48dc x86_64 ABI: Classify _Complex ints as integer. by Daniel Dunbar · 16 years ago
  83. 7a6605d x86_64: Classify __m64 and __m128 "correctly". by Daniel Dunbar · 16 years ago
  84. 54d1ccb Implement support for coercion to wider types during ABI handling. by Daniel Dunbar · 16 years ago
  85. 1143492 Add Ignore ABIArgInfo kind, for handling void & empty structures. by Daniel Dunbar · 16 years ago
  86. 6f3e7fa Start filling in x86_64 ABI implementation. by Daniel Dunbar · 16 years ago
  87. d4edfe4 Add dummy X86_64 ABIInfo implementation. by Daniel Dunbar · 16 years ago
  88. f8d49f6 Provide a new kind of iterator, the specific_decl_iterator, that by Douglas Gregor · 16 years ago
  89. 3aea8ca Allow ABI to use StructRet even for scalar values. by Daniel Dunbar · 16 years ago
  90. ad3d691 Handle returning complex types that get coerced. Fixes PR3131 by Anders Carlsson · 16 years ago
  91. 39f34e9 Migrate some stuff from NamedDecl::getName() to by Chris Lattner · 16 years ago
  92. 1385f8e Fix silly bug spotted by Daniel Dunbar by Anders Carlsson · 16 years ago
  93. 0b685a5 Handle complex return values. by Anders Carlsson · 16 years ago
  94. 6b1da0e Lift out ABIInfo abstract base class. by Daniel Dunbar · 16 years ago
  95. 232eb7d Implement support for the const and pure attributes. by Anders Carlsson · 16 years ago
  96. a2c6912 Now Attributes are divided in three groups by Devang Patel · 16 years ago
  97. 761d7f7 Large mechanical patch. by Devang Patel · 16 years ago
  98. 0fb1d15 Adjust whitespaces. by Devang Patel · 16 years ago
  99. d0646bd s/ParamAttrsWithIndex/FnAttributeWithIndex/g by Devang Patel · 16 years ago
  100. 834af45 Improve x86 ABI compatibility. by Daniel Dunbar · 16 years ago