Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 1 | //===---- TargetInfo.cpp - Encapsulate target details -----------*- C++ -*-===// |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // These classes wrap the information about a call or function |
| 11 | // definition used to handle ABI compliancy. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 15 | #include "TargetInfo.h" |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 16 | #include "ABIInfo.h" |
| 17 | #include "CodeGenFunction.h" |
Anders Carlsson | 19cc4ab | 2009-07-18 19:43:29 +0000 | [diff] [blame] | 18 | #include "clang/AST/RecordLayout.h" |
Sandeep Patel | 34c1af8 | 2011-04-05 00:23:47 +0000 | [diff] [blame] | 19 | #include "clang/Frontend/CodeGenOptions.h" |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 20 | #include "llvm/Type.h" |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetData.h" |
Daniel Dunbar | 2c0843f | 2009-08-24 08:52:16 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Triple.h" |
Daniel Dunbar | 28df7a5 | 2009-12-03 09:13:49 +0000 | [diff] [blame] | 23 | #include "llvm/Support/raw_ostream.h" |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 24 | using namespace clang; |
| 25 | using namespace CodeGen; |
| 26 | |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 27 | static void AssignToArrayRange(CodeGen::CGBuilderTy &Builder, |
| 28 | llvm::Value *Array, |
| 29 | llvm::Value *Value, |
| 30 | unsigned FirstIndex, |
| 31 | unsigned LastIndex) { |
| 32 | // Alternatively, we could emit this as a loop in the source. |
| 33 | for (unsigned I = FirstIndex; I <= LastIndex; ++I) { |
| 34 | llvm::Value *Cell = Builder.CreateConstInBoundsGEP1_32(Array, I); |
| 35 | Builder.CreateStore(Value, Cell); |
| 36 | } |
| 37 | } |
| 38 | |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 39 | static bool isAggregateTypeForABI(QualType T) { |
| 40 | return CodeGenFunction::hasAggregateLLVMType(T) || |
| 41 | T->isMemberFunctionPointerType(); |
| 42 | } |
| 43 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 44 | ABIInfo::~ABIInfo() {} |
| 45 | |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 46 | ASTContext &ABIInfo::getContext() const { |
| 47 | return CGT.getContext(); |
| 48 | } |
| 49 | |
| 50 | llvm::LLVMContext &ABIInfo::getVMContext() const { |
| 51 | return CGT.getLLVMContext(); |
| 52 | } |
| 53 | |
| 54 | const llvm::TargetData &ABIInfo::getTargetData() const { |
| 55 | return CGT.getTargetData(); |
| 56 | } |
| 57 | |
| 58 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 59 | void ABIArgInfo::dump() const { |
Daniel Dunbar | 28df7a5 | 2009-12-03 09:13:49 +0000 | [diff] [blame] | 60 | llvm::raw_ostream &OS = llvm::errs(); |
| 61 | OS << "(ABIArgInfo Kind="; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 62 | switch (TheKind) { |
| 63 | case Direct: |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 64 | OS << "Direct Type="; |
| 65 | if (const llvm::Type *Ty = getCoerceToType()) |
| 66 | Ty->print(OS); |
| 67 | else |
| 68 | OS << "null"; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 69 | break; |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 70 | case Extend: |
Daniel Dunbar | 28df7a5 | 2009-12-03 09:13:49 +0000 | [diff] [blame] | 71 | OS << "Extend"; |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 72 | break; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 73 | case Ignore: |
Daniel Dunbar | 28df7a5 | 2009-12-03 09:13:49 +0000 | [diff] [blame] | 74 | OS << "Ignore"; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 75 | break; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 76 | case Indirect: |
Daniel Dunbar | dc6d574 | 2010-04-21 19:10:51 +0000 | [diff] [blame] | 77 | OS << "Indirect Align=" << getIndirectAlign() |
Daniel Dunbar | cf3b6f2 | 2010-09-16 20:42:02 +0000 | [diff] [blame] | 78 | << " Byal=" << getIndirectByVal() |
| 79 | << " Realign=" << getIndirectRealign(); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 80 | break; |
| 81 | case Expand: |
Daniel Dunbar | 28df7a5 | 2009-12-03 09:13:49 +0000 | [diff] [blame] | 82 | OS << "Expand"; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 83 | break; |
| 84 | } |
Daniel Dunbar | 28df7a5 | 2009-12-03 09:13:49 +0000 | [diff] [blame] | 85 | OS << ")\n"; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 88 | TargetCodeGenInfo::~TargetCodeGenInfo() { delete Info; } |
| 89 | |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 90 | static bool isEmptyRecord(ASTContext &Context, QualType T, bool AllowArrays); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 91 | |
| 92 | /// isEmptyField - Return true iff a the field is "empty", that is it |
| 93 | /// is an unnamed bit-field or an (array of) empty record(s). |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 94 | static bool isEmptyField(ASTContext &Context, const FieldDecl *FD, |
| 95 | bool AllowArrays) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 96 | if (FD->isUnnamedBitfield()) |
| 97 | return true; |
| 98 | |
| 99 | QualType FT = FD->getType(); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 100 | |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 101 | // Constant arrays of empty records count as empty, strip them off. |
| 102 | if (AllowArrays) |
| 103 | while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) |
| 104 | FT = AT->getElementType(); |
| 105 | |
Daniel Dunbar | 5ea6861 | 2010-05-17 16:46:00 +0000 | [diff] [blame] | 106 | const RecordType *RT = FT->getAs<RecordType>(); |
| 107 | if (!RT) |
| 108 | return false; |
| 109 | |
| 110 | // C++ record fields are never empty, at least in the Itanium ABI. |
| 111 | // |
| 112 | // FIXME: We should use a predicate for whether this behavior is true in the |
| 113 | // current ABI. |
| 114 | if (isa<CXXRecordDecl>(RT->getDecl())) |
| 115 | return false; |
| 116 | |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 117 | return isEmptyRecord(Context, FT, AllowArrays); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /// isEmptyRecord - Return true iff a structure contains only empty |
| 121 | /// fields. Note that a structure with a flexible array member is not |
| 122 | /// considered empty. |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 123 | static bool isEmptyRecord(ASTContext &Context, QualType T, bool AllowArrays) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 124 | const RecordType *RT = T->getAs<RecordType>(); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 125 | if (!RT) |
| 126 | return 0; |
| 127 | const RecordDecl *RD = RT->getDecl(); |
| 128 | if (RD->hasFlexibleArrayMember()) |
| 129 | return false; |
Daniel Dunbar | 5ea6861 | 2010-05-17 16:46:00 +0000 | [diff] [blame] | 130 | |
Argyrios Kyrtzidis | c5f18f3 | 2011-05-17 02:17:52 +0000 | [diff] [blame] | 131 | // If this is a C++ record, check the bases first. |
Daniel Dunbar | 5ea6861 | 2010-05-17 16:46:00 +0000 | [diff] [blame] | 132 | if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) |
Argyrios Kyrtzidis | c5f18f3 | 2011-05-17 02:17:52 +0000 | [diff] [blame] | 133 | for (CXXRecordDecl::base_class_const_iterator i = CXXRD->bases_begin(), |
| 134 | e = CXXRD->bases_end(); i != e; ++i) |
| 135 | if (!isEmptyRecord(Context, i->getType(), true)) |
| 136 | return false; |
Daniel Dunbar | 5ea6861 | 2010-05-17 16:46:00 +0000 | [diff] [blame] | 137 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 138 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 139 | i != e; ++i) |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 140 | if (!isEmptyField(Context, *i, AllowArrays)) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 141 | return false; |
| 142 | return true; |
| 143 | } |
| 144 | |
Anders Carlsson | 0a8f847 | 2009-09-16 15:53:40 +0000 | [diff] [blame] | 145 | /// hasNonTrivialDestructorOrCopyConstructor - Determine if a type has either |
| 146 | /// a non-trivial destructor or a non-trivial copy constructor. |
| 147 | static bool hasNonTrivialDestructorOrCopyConstructor(const RecordType *RT) { |
| 148 | const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl()); |
| 149 | if (!RD) |
| 150 | return false; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 151 | |
Anders Carlsson | 0a8f847 | 2009-09-16 15:53:40 +0000 | [diff] [blame] | 152 | return !RD->hasTrivialDestructor() || !RD->hasTrivialCopyConstructor(); |
| 153 | } |
| 154 | |
| 155 | /// isRecordWithNonTrivialDestructorOrCopyConstructor - Determine if a type is |
| 156 | /// a record type with either a non-trivial destructor or a non-trivial copy |
| 157 | /// constructor. |
| 158 | static bool isRecordWithNonTrivialDestructorOrCopyConstructor(QualType T) { |
| 159 | const RecordType *RT = T->getAs<RecordType>(); |
| 160 | if (!RT) |
| 161 | return false; |
| 162 | |
| 163 | return hasNonTrivialDestructorOrCopyConstructor(RT); |
| 164 | } |
| 165 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 166 | /// isSingleElementStruct - Determine if a structure is a "single |
| 167 | /// element struct", i.e. it has exactly one non-empty field or |
| 168 | /// exactly one field which is itself a single element |
| 169 | /// struct. Structures with flexible array members are never |
| 170 | /// considered single element structs. |
| 171 | /// |
| 172 | /// \return The field declaration for the single non-empty field, if |
| 173 | /// it exists. |
| 174 | static const Type *isSingleElementStruct(QualType T, ASTContext &Context) { |
| 175 | const RecordType *RT = T->getAsStructureType(); |
| 176 | if (!RT) |
| 177 | return 0; |
| 178 | |
| 179 | const RecordDecl *RD = RT->getDecl(); |
| 180 | if (RD->hasFlexibleArrayMember()) |
| 181 | return 0; |
| 182 | |
| 183 | const Type *Found = 0; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 184 | |
Daniel Dunbar | 9430d5a | 2010-05-11 21:15:36 +0000 | [diff] [blame] | 185 | // If this is a C++ record, check the bases first. |
| 186 | if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) { |
| 187 | for (CXXRecordDecl::base_class_const_iterator i = CXXRD->bases_begin(), |
| 188 | e = CXXRD->bases_end(); i != e; ++i) { |
Daniel Dunbar | 9430d5a | 2010-05-11 21:15:36 +0000 | [diff] [blame] | 189 | // Ignore empty records. |
Daniel Dunbar | 5ea6861 | 2010-05-17 16:46:00 +0000 | [diff] [blame] | 190 | if (isEmptyRecord(Context, i->getType(), true)) |
Daniel Dunbar | 9430d5a | 2010-05-11 21:15:36 +0000 | [diff] [blame] | 191 | continue; |
| 192 | |
| 193 | // If we already found an element then this isn't a single-element struct. |
| 194 | if (Found) |
| 195 | return 0; |
| 196 | |
| 197 | // If this is non-empty and not a single element struct, the composite |
| 198 | // cannot be a single element struct. |
| 199 | Found = isSingleElementStruct(i->getType(), Context); |
| 200 | if (!Found) |
| 201 | return 0; |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | // Check for single element. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 206 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 207 | i != e; ++i) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 208 | const FieldDecl *FD = *i; |
| 209 | QualType FT = FD->getType(); |
| 210 | |
| 211 | // Ignore empty fields. |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 212 | if (isEmptyField(Context, FD, true)) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 213 | continue; |
| 214 | |
| 215 | // If we already found an element then this isn't a single-element |
| 216 | // struct. |
| 217 | if (Found) |
| 218 | return 0; |
| 219 | |
| 220 | // Treat single element arrays as the element. |
| 221 | while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) { |
| 222 | if (AT->getSize().getZExtValue() != 1) |
| 223 | break; |
| 224 | FT = AT->getElementType(); |
| 225 | } |
| 226 | |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 227 | if (!isAggregateTypeForABI(FT)) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 228 | Found = FT.getTypePtr(); |
| 229 | } else { |
| 230 | Found = isSingleElementStruct(FT, Context); |
| 231 | if (!Found) |
| 232 | return 0; |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | return Found; |
| 237 | } |
| 238 | |
| 239 | static bool is32Or64BitBasicType(QualType Ty, ASTContext &Context) { |
Daniel Dunbar | a1842d3 | 2010-05-14 03:40:53 +0000 | [diff] [blame] | 240 | if (!Ty->getAs<BuiltinType>() && !Ty->hasPointerRepresentation() && |
Daniel Dunbar | 55e59e1 | 2009-09-24 05:12:36 +0000 | [diff] [blame] | 241 | !Ty->isAnyComplexType() && !Ty->isEnumeralType() && |
| 242 | !Ty->isBlockPointerType()) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 243 | return false; |
| 244 | |
| 245 | uint64_t Size = Context.getTypeSize(Ty); |
| 246 | return Size == 32 || Size == 64; |
| 247 | } |
| 248 | |
Daniel Dunbar | 53012f4 | 2009-11-09 01:33:53 +0000 | [diff] [blame] | 249 | /// canExpandIndirectArgument - Test whether an argument type which is to be |
| 250 | /// passed indirectly (on the stack) would have the equivalent layout if it was |
| 251 | /// expanded into separate arguments. If so, we prefer to do the latter to avoid |
| 252 | /// inhibiting optimizations. |
| 253 | /// |
| 254 | // FIXME: This predicate is missing many cases, currently it just follows |
| 255 | // llvm-gcc (checks that all fields are 32-bit or 64-bit primitive types). We |
| 256 | // should probably make this smarter, or better yet make the LLVM backend |
| 257 | // capable of handling it. |
| 258 | static bool canExpandIndirectArgument(QualType Ty, ASTContext &Context) { |
| 259 | // We can only expand structure types. |
| 260 | const RecordType *RT = Ty->getAs<RecordType>(); |
| 261 | if (!RT) |
| 262 | return false; |
| 263 | |
| 264 | // We can only expand (C) structures. |
| 265 | // |
| 266 | // FIXME: This needs to be generalized to handle classes as well. |
| 267 | const RecordDecl *RD = RT->getDecl(); |
| 268 | if (!RD->isStruct() || isa<CXXRecordDecl>(RD)) |
| 269 | return false; |
| 270 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 271 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 272 | i != e; ++i) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 273 | const FieldDecl *FD = *i; |
| 274 | |
| 275 | if (!is32Or64BitBasicType(FD->getType(), Context)) |
| 276 | return false; |
| 277 | |
| 278 | // FIXME: Reject bit-fields wholesale; there are two problems, we don't know |
| 279 | // how to expand them yet, and the predicate for telling if a bitfield still |
| 280 | // counts as "basic" is more complicated than what we were doing previously. |
| 281 | if (FD->isBitField()) |
| 282 | return false; |
| 283 | } |
| 284 | |
| 285 | return true; |
| 286 | } |
| 287 | |
| 288 | namespace { |
| 289 | /// DefaultABIInfo - The default implementation for ABI specific |
| 290 | /// details. This implementation provides information which results in |
| 291 | /// self-consistent and sensible LLVM IR generation, but does not |
| 292 | /// conform to any particular ABI. |
| 293 | class DefaultABIInfo : public ABIInfo { |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 294 | public: |
| 295 | DefaultABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {} |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 296 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 297 | ABIArgInfo classifyReturnType(QualType RetTy) const; |
| 298 | ABIArgInfo classifyArgumentType(QualType RetTy) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 299 | |
Chris Lattner | ee5dcd0 | 2010-07-29 02:31:05 +0000 | [diff] [blame] | 300 | virtual void computeInfo(CGFunctionInfo &FI) const { |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 301 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 302 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 303 | it != ie; ++it) |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 304 | it->info = classifyArgumentType(it->type); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 308 | CodeGenFunction &CGF) const; |
| 309 | }; |
| 310 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 311 | class DefaultTargetCodeGenInfo : public TargetCodeGenInfo { |
| 312 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 313 | DefaultTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT) |
| 314 | : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {} |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 315 | }; |
| 316 | |
| 317 | llvm::Value *DefaultABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 318 | CodeGenFunction &CGF) const { |
| 319 | return 0; |
| 320 | } |
| 321 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 322 | ABIArgInfo DefaultABIInfo::classifyArgumentType(QualType Ty) const { |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 323 | if (isAggregateTypeForABI(Ty)) |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 324 | return ABIArgInfo::getIndirect(0); |
Daniel Dunbar | dc6d574 | 2010-04-21 19:10:51 +0000 | [diff] [blame] | 325 | |
Chris Lattner | a14db75 | 2010-03-11 18:19:55 +0000 | [diff] [blame] | 326 | // Treat an enum type as its underlying type. |
| 327 | if (const EnumType *EnumTy = Ty->getAs<EnumType>()) |
| 328 | Ty = EnumTy->getDecl()->getIntegerType(); |
Douglas Gregor | aa74a1e | 2010-02-02 20:10:50 +0000 | [diff] [blame] | 329 | |
Chris Lattner | a14db75 | 2010-03-11 18:19:55 +0000 | [diff] [blame] | 330 | return (Ty->isPromotableIntegerType() ? |
| 331 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 332 | } |
| 333 | |
Bob Wilson | 0024f94 | 2011-01-10 23:54:17 +0000 | [diff] [blame] | 334 | ABIArgInfo DefaultABIInfo::classifyReturnType(QualType RetTy) const { |
| 335 | if (RetTy->isVoidType()) |
| 336 | return ABIArgInfo::getIgnore(); |
| 337 | |
| 338 | if (isAggregateTypeForABI(RetTy)) |
| 339 | return ABIArgInfo::getIndirect(0); |
| 340 | |
| 341 | // Treat an enum type as its underlying type. |
| 342 | if (const EnumType *EnumTy = RetTy->getAs<EnumType>()) |
| 343 | RetTy = EnumTy->getDecl()->getIntegerType(); |
| 344 | |
| 345 | return (RetTy->isPromotableIntegerType() ? |
| 346 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
| 347 | } |
| 348 | |
Bill Wendling | bb465d7 | 2010-10-18 03:41:31 +0000 | [diff] [blame] | 349 | /// UseX86_MMXType - Return true if this is an MMX type that should use the special |
| 350 | /// x86_mmx type. |
| 351 | bool UseX86_MMXType(const llvm::Type *IRType) { |
| 352 | // If the type is an MMX type <2 x i32>, <4 x i16>, or <8 x i8>, use the |
| 353 | // special x86_mmx type. |
| 354 | return IRType->isVectorTy() && IRType->getPrimitiveSizeInBits() == 64 && |
| 355 | cast<llvm::VectorType>(IRType)->getElementType()->isIntegerTy() && |
| 356 | IRType->getScalarSizeInBits() != 64; |
| 357 | } |
| 358 | |
Peter Collingbourne | 4b93d66 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 359 | static const llvm::Type* X86AdjustInlineAsmType(CodeGen::CodeGenFunction &CGF, |
| 360 | llvm::StringRef Constraint, |
| 361 | const llvm::Type* Ty) { |
Bill Wendling | 0507be6 | 2011-03-07 22:47:14 +0000 | [diff] [blame] | 362 | if ((Constraint == "y" || Constraint == "&y") && Ty->isVectorTy()) |
Peter Collingbourne | 4b93d66 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 363 | return llvm::Type::getX86_MMXTy(CGF.getLLVMContext()); |
| 364 | return Ty; |
| 365 | } |
| 366 | |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 367 | //===----------------------------------------------------------------------===// |
| 368 | // X86-32 ABI Implementation |
| 369 | //===----------------------------------------------------------------------===// |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 370 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 371 | /// X86_32ABIInfo - The X86-32 ABI information. |
| 372 | class X86_32ABIInfo : public ABIInfo { |
Daniel Dunbar | fb67d6c | 2010-09-16 20:41:56 +0000 | [diff] [blame] | 373 | static const unsigned MinABIStackAlignInBytes = 4; |
| 374 | |
David Chisnall | 1e4249c | 2009-08-17 23:08:21 +0000 | [diff] [blame] | 375 | bool IsDarwinVectorABI; |
| 376 | bool IsSmallStructInRegABI; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 377 | |
| 378 | static bool isRegisterSize(unsigned Size) { |
| 379 | return (Size == 8 || Size == 16 || Size == 32 || Size == 64); |
| 380 | } |
| 381 | |
| 382 | static bool shouldReturnTypeInRegister(QualType Ty, ASTContext &Context); |
| 383 | |
Daniel Dunbar | dc6d574 | 2010-04-21 19:10:51 +0000 | [diff] [blame] | 384 | /// getIndirectResult - Give a source type \arg Ty, return a suitable result |
| 385 | /// such that the argument will be passed in memory. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 386 | ABIArgInfo getIndirectResult(QualType Ty, bool ByVal = true) const; |
Daniel Dunbar | dc6d574 | 2010-04-21 19:10:51 +0000 | [diff] [blame] | 387 | |
Daniel Dunbar | fb67d6c | 2010-09-16 20:41:56 +0000 | [diff] [blame] | 388 | /// \brief Return the alignment to use for the given type on the stack. |
Daniel Dunbar | e59d858 | 2010-09-16 20:42:06 +0000 | [diff] [blame] | 389 | unsigned getTypeStackAlignInBytes(QualType Ty, unsigned Align) const; |
Daniel Dunbar | fb67d6c | 2010-09-16 20:41:56 +0000 | [diff] [blame] | 390 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 391 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 392 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 393 | ABIArgInfo classifyReturnType(QualType RetTy) const; |
| 394 | ABIArgInfo classifyArgumentType(QualType RetTy) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 395 | |
Chris Lattner | ee5dcd0 | 2010-07-29 02:31:05 +0000 | [diff] [blame] | 396 | virtual void computeInfo(CGFunctionInfo &FI) const { |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 397 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 398 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 399 | it != ie; ++it) |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 400 | it->info = classifyArgumentType(it->type); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 401 | } |
| 402 | |
| 403 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 404 | CodeGenFunction &CGF) const; |
| 405 | |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 406 | X86_32ABIInfo(CodeGen::CodeGenTypes &CGT, bool d, bool p) |
| 407 | : ABIInfo(CGT), IsDarwinVectorABI(d), IsSmallStructInRegABI(p) {} |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 408 | }; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 409 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 410 | class X86_32TargetCodeGenInfo : public TargetCodeGenInfo { |
| 411 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 412 | X86_32TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT, bool d, bool p) |
| 413 | :TargetCodeGenInfo(new X86_32ABIInfo(CGT, d, p)) {} |
Charles Davis | 74f7293 | 2010-02-13 15:54:06 +0000 | [diff] [blame] | 414 | |
| 415 | void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV, |
| 416 | CodeGen::CodeGenModule &CGM) const; |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 417 | |
| 418 | int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const { |
| 419 | // Darwin uses different dwarf register numbers for EH. |
| 420 | if (CGM.isTargetDarwin()) return 5; |
| 421 | |
| 422 | return 4; |
| 423 | } |
| 424 | |
| 425 | bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF, |
| 426 | llvm::Value *Address) const; |
Peter Collingbourne | 4b93d66 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 427 | |
| 428 | const llvm::Type* adjustInlineAsmType(CodeGen::CodeGenFunction &CGF, |
| 429 | llvm::StringRef Constraint, |
| 430 | const llvm::Type* Ty) const { |
| 431 | return X86AdjustInlineAsmType(CGF, Constraint, Ty); |
| 432 | } |
| 433 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 434 | }; |
| 435 | |
| 436 | } |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 437 | |
| 438 | /// shouldReturnTypeInRegister - Determine if the given type should be |
| 439 | /// passed in a register (for the Darwin ABI). |
| 440 | bool X86_32ABIInfo::shouldReturnTypeInRegister(QualType Ty, |
| 441 | ASTContext &Context) { |
| 442 | uint64_t Size = Context.getTypeSize(Ty); |
| 443 | |
| 444 | // Type must be register sized. |
| 445 | if (!isRegisterSize(Size)) |
| 446 | return false; |
| 447 | |
| 448 | if (Ty->isVectorType()) { |
| 449 | // 64- and 128- bit vectors inside structures are not returned in |
| 450 | // registers. |
| 451 | if (Size == 64 || Size == 128) |
| 452 | return false; |
| 453 | |
| 454 | return true; |
| 455 | } |
| 456 | |
Daniel Dunbar | 7711523 | 2010-05-15 00:00:30 +0000 | [diff] [blame] | 457 | // If this is a builtin, pointer, enum, complex type, member pointer, or |
| 458 | // member function pointer it is ok. |
Daniel Dunbar | a1842d3 | 2010-05-14 03:40:53 +0000 | [diff] [blame] | 459 | if (Ty->getAs<BuiltinType>() || Ty->hasPointerRepresentation() || |
Daniel Dunbar | 55e59e1 | 2009-09-24 05:12:36 +0000 | [diff] [blame] | 460 | Ty->isAnyComplexType() || Ty->isEnumeralType() || |
Daniel Dunbar | 7711523 | 2010-05-15 00:00:30 +0000 | [diff] [blame] | 461 | Ty->isBlockPointerType() || Ty->isMemberPointerType()) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 462 | return true; |
| 463 | |
| 464 | // Arrays are treated like records. |
| 465 | if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) |
| 466 | return shouldReturnTypeInRegister(AT->getElementType(), Context); |
| 467 | |
| 468 | // Otherwise, it must be a record type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 469 | const RecordType *RT = Ty->getAs<RecordType>(); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 470 | if (!RT) return false; |
| 471 | |
Anders Carlsson | a887423 | 2010-01-27 03:25:19 +0000 | [diff] [blame] | 472 | // FIXME: Traverse bases here too. |
| 473 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 474 | // Structure types are passed in register if all fields would be |
| 475 | // passed in a register. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 476 | for (RecordDecl::field_iterator i = RT->getDecl()->field_begin(), |
| 477 | e = RT->getDecl()->field_end(); i != e; ++i) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 478 | const FieldDecl *FD = *i; |
| 479 | |
| 480 | // Empty fields are ignored. |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 481 | if (isEmptyField(Context, FD, true)) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 482 | continue; |
| 483 | |
| 484 | // Check fields recursively. |
| 485 | if (!shouldReturnTypeInRegister(FD->getType(), Context)) |
| 486 | return false; |
| 487 | } |
| 488 | |
| 489 | return true; |
| 490 | } |
| 491 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 492 | ABIArgInfo X86_32ABIInfo::classifyReturnType(QualType RetTy) const { |
| 493 | if (RetTy->isVoidType()) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 494 | return ABIArgInfo::getIgnore(); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 495 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 496 | if (const VectorType *VT = RetTy->getAs<VectorType>()) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 497 | // On Darwin, some vectors are returned in registers. |
David Chisnall | 1e4249c | 2009-08-17 23:08:21 +0000 | [diff] [blame] | 498 | if (IsDarwinVectorABI) { |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 499 | uint64_t Size = getContext().getTypeSize(RetTy); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 500 | |
| 501 | // 128-bit vectors are a special case; they are returned in |
| 502 | // registers and we need to make sure to pick a type the LLVM |
| 503 | // backend will like. |
| 504 | if (Size == 128) |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 505 | return ABIArgInfo::getDirect(llvm::VectorType::get( |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 506 | llvm::Type::getInt64Ty(getVMContext()), 2)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 507 | |
| 508 | // Always return in register if it fits in a general purpose |
| 509 | // register, or if it is 64 bits and has a single element. |
| 510 | if ((Size == 8 || Size == 16 || Size == 32) || |
| 511 | (Size == 64 && VT->getNumElements() == 1)) |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 512 | return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 513 | Size)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 514 | |
| 515 | return ABIArgInfo::getIndirect(0); |
| 516 | } |
| 517 | |
| 518 | return ABIArgInfo::getDirect(); |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 519 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 520 | |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 521 | if (isAggregateTypeForABI(RetTy)) { |
Anders Carlsson | a887423 | 2010-01-27 03:25:19 +0000 | [diff] [blame] | 522 | if (const RecordType *RT = RetTy->getAs<RecordType>()) { |
Anders Carlsson | 4009297 | 2009-10-20 22:07:59 +0000 | [diff] [blame] | 523 | // Structures with either a non-trivial destructor or a non-trivial |
| 524 | // copy constructor are always indirect. |
| 525 | if (hasNonTrivialDestructorOrCopyConstructor(RT)) |
| 526 | return ABIArgInfo::getIndirect(0, /*ByVal=*/false); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 527 | |
Anders Carlsson | 4009297 | 2009-10-20 22:07:59 +0000 | [diff] [blame] | 528 | // Structures with flexible arrays are always indirect. |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 529 | if (RT->getDecl()->hasFlexibleArrayMember()) |
| 530 | return ABIArgInfo::getIndirect(0); |
Anders Carlsson | 4009297 | 2009-10-20 22:07:59 +0000 | [diff] [blame] | 531 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 532 | |
David Chisnall | 1e4249c | 2009-08-17 23:08:21 +0000 | [diff] [blame] | 533 | // If specified, structs and unions are always indirect. |
| 534 | if (!IsSmallStructInRegABI && !RetTy->isAnyComplexType()) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 535 | return ABIArgInfo::getIndirect(0); |
| 536 | |
| 537 | // Classify "single element" structs as their element type. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 538 | if (const Type *SeltTy = isSingleElementStruct(RetTy, getContext())) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 539 | if (const BuiltinType *BT = SeltTy->getAs<BuiltinType>()) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 540 | if (BT->isIntegerType()) { |
| 541 | // We need to use the size of the structure, padding |
| 542 | // bit-fields can adjust that to be larger than the single |
| 543 | // element type. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 544 | uint64_t Size = getContext().getTypeSize(RetTy); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 545 | return ABIArgInfo::getDirect( |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 546 | llvm::IntegerType::get(getVMContext(), (unsigned)Size)); |
| 547 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 548 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 549 | if (BT->getKind() == BuiltinType::Float) { |
| 550 | assert(getContext().getTypeSize(RetTy) == |
| 551 | getContext().getTypeSize(SeltTy) && |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 552 | "Unexpect single element structure size!"); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 553 | return ABIArgInfo::getDirect(llvm::Type::getFloatTy(getVMContext())); |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 554 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 555 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 556 | if (BT->getKind() == BuiltinType::Double) { |
| 557 | assert(getContext().getTypeSize(RetTy) == |
| 558 | getContext().getTypeSize(SeltTy) && |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 559 | "Unexpect single element structure size!"); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 560 | return ABIArgInfo::getDirect(llvm::Type::getDoubleTy(getVMContext())); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 561 | } |
| 562 | } else if (SeltTy->isPointerType()) { |
| 563 | // FIXME: It would be really nice if this could come out as the proper |
| 564 | // pointer type. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 565 | const llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(getVMContext()); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 566 | return ABIArgInfo::getDirect(PtrTy); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 567 | } else if (SeltTy->isVectorType()) { |
| 568 | // 64- and 128-bit vectors are never returned in a |
| 569 | // register when inside a structure. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 570 | uint64_t Size = getContext().getTypeSize(RetTy); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 571 | if (Size == 64 || Size == 128) |
| 572 | return ABIArgInfo::getIndirect(0); |
| 573 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 574 | return classifyReturnType(QualType(SeltTy, 0)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 575 | } |
| 576 | } |
| 577 | |
| 578 | // Small structures which are register sized are generally returned |
| 579 | // in a register. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 580 | if (X86_32ABIInfo::shouldReturnTypeInRegister(RetTy, getContext())) { |
| 581 | uint64_t Size = getContext().getTypeSize(RetTy); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 582 | return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(),Size)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | return ABIArgInfo::getIndirect(0); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 586 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 587 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 588 | // Treat an enum type as its underlying type. |
| 589 | if (const EnumType *EnumTy = RetTy->getAs<EnumType>()) |
| 590 | RetTy = EnumTy->getDecl()->getIntegerType(); |
| 591 | |
| 592 | return (RetTy->isPromotableIntegerType() ? |
| 593 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 594 | } |
| 595 | |
Daniel Dunbar | 93ae947 | 2010-09-16 20:42:00 +0000 | [diff] [blame] | 596 | static bool isRecordWithSSEVectorType(ASTContext &Context, QualType Ty) { |
| 597 | const RecordType *RT = Ty->getAs<RecordType>(); |
| 598 | if (!RT) |
| 599 | return 0; |
| 600 | const RecordDecl *RD = RT->getDecl(); |
| 601 | |
| 602 | // If this is a C++ record, check the bases first. |
| 603 | if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) |
| 604 | for (CXXRecordDecl::base_class_const_iterator i = CXXRD->bases_begin(), |
| 605 | e = CXXRD->bases_end(); i != e; ++i) |
| 606 | if (!isRecordWithSSEVectorType(Context, i->getType())) |
| 607 | return false; |
| 608 | |
| 609 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 610 | i != e; ++i) { |
| 611 | QualType FT = i->getType(); |
| 612 | |
| 613 | if (FT->getAs<VectorType>() && Context.getTypeSize(Ty) == 128) |
| 614 | return true; |
| 615 | |
| 616 | if (isRecordWithSSEVectorType(Context, FT)) |
| 617 | return true; |
| 618 | } |
| 619 | |
| 620 | return false; |
| 621 | } |
| 622 | |
Daniel Dunbar | e59d858 | 2010-09-16 20:42:06 +0000 | [diff] [blame] | 623 | unsigned X86_32ABIInfo::getTypeStackAlignInBytes(QualType Ty, |
| 624 | unsigned Align) const { |
| 625 | // Otherwise, if the alignment is less than or equal to the minimum ABI |
| 626 | // alignment, just use the default; the backend will handle this. |
Daniel Dunbar | fb67d6c | 2010-09-16 20:41:56 +0000 | [diff] [blame] | 627 | if (Align <= MinABIStackAlignInBytes) |
Daniel Dunbar | e59d858 | 2010-09-16 20:42:06 +0000 | [diff] [blame] | 628 | return 0; // Use default alignment. |
| 629 | |
| 630 | // On non-Darwin, the stack type alignment is always 4. |
| 631 | if (!IsDarwinVectorABI) { |
| 632 | // Set explicit alignment, since we may need to realign the top. |
Daniel Dunbar | fb67d6c | 2010-09-16 20:41:56 +0000 | [diff] [blame] | 633 | return MinABIStackAlignInBytes; |
Daniel Dunbar | e59d858 | 2010-09-16 20:42:06 +0000 | [diff] [blame] | 634 | } |
Daniel Dunbar | fb67d6c | 2010-09-16 20:41:56 +0000 | [diff] [blame] | 635 | |
Daniel Dunbar | 93ae947 | 2010-09-16 20:42:00 +0000 | [diff] [blame] | 636 | // Otherwise, if the type contains an SSE vector type, the alignment is 16. |
| 637 | if (isRecordWithSSEVectorType(getContext(), Ty)) |
| 638 | return 16; |
| 639 | |
| 640 | return MinABIStackAlignInBytes; |
Daniel Dunbar | fb67d6c | 2010-09-16 20:41:56 +0000 | [diff] [blame] | 641 | } |
| 642 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 643 | ABIArgInfo X86_32ABIInfo::getIndirectResult(QualType Ty, bool ByVal) const { |
Daniel Dunbar | 46c54fb | 2010-04-21 19:49:55 +0000 | [diff] [blame] | 644 | if (!ByVal) |
| 645 | return ABIArgInfo::getIndirect(0, false); |
| 646 | |
Daniel Dunbar | e59d858 | 2010-09-16 20:42:06 +0000 | [diff] [blame] | 647 | // Compute the byval alignment. |
| 648 | unsigned TypeAlign = getContext().getTypeAlign(Ty) / 8; |
| 649 | unsigned StackAlign = getTypeStackAlignInBytes(Ty, TypeAlign); |
| 650 | if (StackAlign == 0) |
Chris Lattner | de92d73 | 2011-05-22 23:35:00 +0000 | [diff] [blame] | 651 | return ABIArgInfo::getIndirect(4); |
Daniel Dunbar | e59d858 | 2010-09-16 20:42:06 +0000 | [diff] [blame] | 652 | |
| 653 | // If the stack alignment is less than the type alignment, realign the |
| 654 | // argument. |
| 655 | if (StackAlign < TypeAlign) |
| 656 | return ABIArgInfo::getIndirect(StackAlign, /*ByVal=*/true, |
| 657 | /*Realign=*/true); |
| 658 | |
| 659 | return ABIArgInfo::getIndirect(StackAlign); |
Daniel Dunbar | dc6d574 | 2010-04-21 19:10:51 +0000 | [diff] [blame] | 660 | } |
| 661 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 662 | ABIArgInfo X86_32ABIInfo::classifyArgumentType(QualType Ty) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 663 | // FIXME: Set alignment on indirect arguments. |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 664 | if (isAggregateTypeForABI(Ty)) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 665 | // Structures with flexible arrays are always indirect. |
Anders Carlsson | a887423 | 2010-01-27 03:25:19 +0000 | [diff] [blame] | 666 | if (const RecordType *RT = Ty->getAs<RecordType>()) { |
| 667 | // Structures with either a non-trivial destructor or a non-trivial |
| 668 | // copy constructor are always indirect. |
| 669 | if (hasNonTrivialDestructorOrCopyConstructor(RT)) |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 670 | return getIndirectResult(Ty, /*ByVal=*/false); |
Daniel Dunbar | dc6d574 | 2010-04-21 19:10:51 +0000 | [diff] [blame] | 671 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 672 | if (RT->getDecl()->hasFlexibleArrayMember()) |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 673 | return getIndirectResult(Ty); |
Anders Carlsson | a887423 | 2010-01-27 03:25:19 +0000 | [diff] [blame] | 674 | } |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 675 | |
| 676 | // Ignore empty structs. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 677 | if (Ty->isStructureType() && getContext().getTypeSize(Ty) == 0) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 678 | return ABIArgInfo::getIgnore(); |
| 679 | |
Daniel Dunbar | 53012f4 | 2009-11-09 01:33:53 +0000 | [diff] [blame] | 680 | // Expand small (<= 128-bit) record types when we know that the stack layout |
| 681 | // of those arguments will match the struct. This is important because the |
| 682 | // LLVM backend isn't smart enough to remove byval, which inhibits many |
| 683 | // optimizations. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 684 | if (getContext().getTypeSize(Ty) <= 4*32 && |
| 685 | canExpandIndirectArgument(Ty, getContext())) |
Daniel Dunbar | 53012f4 | 2009-11-09 01:33:53 +0000 | [diff] [blame] | 686 | return ABIArgInfo::getExpand(); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 687 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 688 | return getIndirectResult(Ty); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 689 | } |
| 690 | |
Chris Lattner | bbae8b4 | 2010-08-26 20:05:13 +0000 | [diff] [blame] | 691 | if (const VectorType *VT = Ty->getAs<VectorType>()) { |
Chris Lattner | 7b73350 | 2010-08-26 20:08:43 +0000 | [diff] [blame] | 692 | // On Darwin, some vectors are passed in memory, we handle this by passing |
| 693 | // it as an i8/i16/i32/i64. |
Chris Lattner | bbae8b4 | 2010-08-26 20:05:13 +0000 | [diff] [blame] | 694 | if (IsDarwinVectorABI) { |
| 695 | uint64_t Size = getContext().getTypeSize(Ty); |
Chris Lattner | bbae8b4 | 2010-08-26 20:05:13 +0000 | [diff] [blame] | 696 | if ((Size == 8 || Size == 16 || Size == 32) || |
| 697 | (Size == 64 && VT->getNumElements() == 1)) |
| 698 | return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), |
| 699 | Size)); |
Chris Lattner | bbae8b4 | 2010-08-26 20:05:13 +0000 | [diff] [blame] | 700 | } |
Bill Wendling | bb465d7 | 2010-10-18 03:41:31 +0000 | [diff] [blame] | 701 | |
| 702 | const llvm::Type *IRType = CGT.ConvertTypeRecursive(Ty); |
| 703 | if (UseX86_MMXType(IRType)) { |
| 704 | ABIArgInfo AAI = ABIArgInfo::getDirect(IRType); |
| 705 | AAI.setCoerceToType(llvm::Type::getX86_MMXTy(getVMContext())); |
| 706 | return AAI; |
| 707 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 708 | |
Chris Lattner | bbae8b4 | 2010-08-26 20:05:13 +0000 | [diff] [blame] | 709 | return ABIArgInfo::getDirect(); |
| 710 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 711 | |
| 712 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 713 | if (const EnumType *EnumTy = Ty->getAs<EnumType>()) |
| 714 | Ty = EnumTy->getDecl()->getIntegerType(); |
Douglas Gregor | aa74a1e | 2010-02-02 20:10:50 +0000 | [diff] [blame] | 715 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 716 | return (Ty->isPromotableIntegerType() ? |
| 717 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | llvm::Value *X86_32ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 721 | CodeGenFunction &CGF) const { |
Benjamin Kramer | 3c0ef8c | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 722 | const llvm::Type *BP = llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 723 | const llvm::Type *BPP = llvm::PointerType::getUnqual(BP); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 724 | |
| 725 | CGBuilderTy &Builder = CGF.Builder; |
| 726 | llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP, |
| 727 | "ap"); |
| 728 | llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur"); |
| 729 | llvm::Type *PTy = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 730 | llvm::PointerType::getUnqual(CGF.ConvertType(Ty)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 731 | llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy); |
| 732 | |
| 733 | uint64_t Offset = |
| 734 | llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 4); |
| 735 | llvm::Value *NextAddr = |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 736 | Builder.CreateGEP(Addr, llvm::ConstantInt::get(CGF.Int32Ty, Offset), |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 737 | "ap.next"); |
| 738 | Builder.CreateStore(NextAddr, VAListAddrAsBPP); |
| 739 | |
| 740 | return AddrTyped; |
| 741 | } |
| 742 | |
Charles Davis | 74f7293 | 2010-02-13 15:54:06 +0000 | [diff] [blame] | 743 | void X86_32TargetCodeGenInfo::SetTargetAttributes(const Decl *D, |
| 744 | llvm::GlobalValue *GV, |
| 745 | CodeGen::CodeGenModule &CGM) const { |
| 746 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 747 | if (FD->hasAttr<X86ForceAlignArgPointerAttr>()) { |
| 748 | // Get the LLVM function. |
| 749 | llvm::Function *Fn = cast<llvm::Function>(GV); |
| 750 | |
| 751 | // Now add the 'alignstack' attribute with a value of 16. |
| 752 | Fn->addFnAttr(llvm::Attribute::constructStackAlignmentFromInt(16)); |
| 753 | } |
| 754 | } |
| 755 | } |
| 756 | |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 757 | bool X86_32TargetCodeGenInfo::initDwarfEHRegSizeTable( |
| 758 | CodeGen::CodeGenFunction &CGF, |
| 759 | llvm::Value *Address) const { |
| 760 | CodeGen::CGBuilderTy &Builder = CGF.Builder; |
| 761 | llvm::LLVMContext &Context = CGF.getLLVMContext(); |
| 762 | |
| 763 | const llvm::IntegerType *i8 = llvm::Type::getInt8Ty(Context); |
| 764 | llvm::Value *Four8 = llvm::ConstantInt::get(i8, 4); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 765 | |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 766 | // 0-7 are the eight integer registers; the order is different |
| 767 | // on Darwin (for EH), but the range is the same. |
| 768 | // 8 is %eip. |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 769 | AssignToArrayRange(Builder, Address, Four8, 0, 8); |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 770 | |
| 771 | if (CGF.CGM.isTargetDarwin()) { |
| 772 | // 12-16 are st(0..4). Not sure why we stop at 4. |
| 773 | // These have size 16, which is sizeof(long double) on |
| 774 | // platforms with 8-byte alignment for that type. |
| 775 | llvm::Value *Sixteen8 = llvm::ConstantInt::get(i8, 16); |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 776 | AssignToArrayRange(Builder, Address, Sixteen8, 12, 16); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 777 | |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 778 | } else { |
| 779 | // 9 is %eflags, which doesn't get a size on Darwin for some |
| 780 | // reason. |
| 781 | Builder.CreateStore(Four8, Builder.CreateConstInBoundsGEP1_32(Address, 9)); |
| 782 | |
| 783 | // 11-16 are st(0..5). Not sure why we stop at 5. |
| 784 | // These have size 12, which is sizeof(long double) on |
| 785 | // platforms with 4-byte alignment for that type. |
| 786 | llvm::Value *Twelve8 = llvm::ConstantInt::get(i8, 12); |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 787 | AssignToArrayRange(Builder, Address, Twelve8, 11, 16); |
| 788 | } |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 789 | |
| 790 | return false; |
| 791 | } |
| 792 | |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 793 | //===----------------------------------------------------------------------===// |
| 794 | // X86-64 ABI Implementation |
| 795 | //===----------------------------------------------------------------------===// |
| 796 | |
| 797 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 798 | namespace { |
| 799 | /// X86_64ABIInfo - The X86_64 ABI information. |
| 800 | class X86_64ABIInfo : public ABIInfo { |
| 801 | enum Class { |
| 802 | Integer = 0, |
| 803 | SSE, |
| 804 | SSEUp, |
| 805 | X87, |
| 806 | X87Up, |
| 807 | ComplexX87, |
| 808 | NoClass, |
| 809 | Memory |
| 810 | }; |
| 811 | |
| 812 | /// merge - Implement the X86_64 ABI merging algorithm. |
| 813 | /// |
| 814 | /// Merge an accumulating classification \arg Accum with a field |
| 815 | /// classification \arg Field. |
| 816 | /// |
| 817 | /// \param Accum - The accumulating classification. This should |
| 818 | /// always be either NoClass or the result of a previous merge |
| 819 | /// call. In addition, this should never be Memory (the caller |
| 820 | /// should just return Memory for the aggregate). |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 821 | static Class merge(Class Accum, Class Field); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 822 | |
| 823 | /// classify - Determine the x86_64 register classes in which the |
| 824 | /// given type T should be passed. |
| 825 | /// |
| 826 | /// \param Lo - The classification for the parts of the type |
| 827 | /// residing in the low word of the containing object. |
| 828 | /// |
| 829 | /// \param Hi - The classification for the parts of the type |
| 830 | /// residing in the high word of the containing object. |
| 831 | /// |
| 832 | /// \param OffsetBase - The bit offset of this type in the |
| 833 | /// containing object. Some parameters are classified different |
| 834 | /// depending on whether they straddle an eightbyte boundary. |
| 835 | /// |
| 836 | /// If a word is unused its result will be NoClass; if a type should |
| 837 | /// be passed in Memory then at least the classification of \arg Lo |
| 838 | /// will be Memory. |
| 839 | /// |
| 840 | /// The \arg Lo class will be NoClass iff the argument is ignored. |
| 841 | /// |
| 842 | /// If the \arg Lo class is ComplexX87, then the \arg Hi class will |
| 843 | /// also be ComplexX87. |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 844 | void classify(QualType T, uint64_t OffsetBase, Class &Lo, Class &Hi) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 845 | |
Chris Lattner | 0f408f5 | 2010-07-29 04:56:46 +0000 | [diff] [blame] | 846 | const llvm::Type *Get16ByteVectorType(QualType Ty) const; |
Chris Lattner | 603519d | 2010-07-29 17:49:08 +0000 | [diff] [blame] | 847 | const llvm::Type *GetSSETypeAtOffset(const llvm::Type *IRType, |
Chris Lattner | f47c944 | 2010-07-29 18:13:09 +0000 | [diff] [blame] | 848 | unsigned IROffset, QualType SourceTy, |
| 849 | unsigned SourceOffset) const; |
Chris Lattner | 0d2656d | 2010-07-29 17:40:35 +0000 | [diff] [blame] | 850 | const llvm::Type *GetINTEGERTypeAtOffset(const llvm::Type *IRType, |
| 851 | unsigned IROffset, QualType SourceTy, |
| 852 | unsigned SourceOffset) const; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 853 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 854 | /// getIndirectResult - Give a source type \arg Ty, return a suitable result |
Daniel Dunbar | 46c54fb | 2010-04-21 19:49:55 +0000 | [diff] [blame] | 855 | /// such that the argument will be returned in memory. |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 856 | ABIArgInfo getIndirectReturnResult(QualType Ty) const; |
Daniel Dunbar | 46c54fb | 2010-04-21 19:49:55 +0000 | [diff] [blame] | 857 | |
| 858 | /// getIndirectResult - Give a source type \arg Ty, return a suitable result |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 859 | /// such that the argument will be passed in memory. |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 860 | ABIArgInfo getIndirectResult(QualType Ty) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 861 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 862 | ABIArgInfo classifyReturnType(QualType RetTy) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 863 | |
Bill Wendling | bb465d7 | 2010-10-18 03:41:31 +0000 | [diff] [blame] | 864 | ABIArgInfo classifyArgumentType(QualType Ty, |
| 865 | unsigned &neededInt, |
Bill Wendling | 99aaae8 | 2010-10-18 23:51:38 +0000 | [diff] [blame] | 866 | unsigned &neededSSE) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 867 | |
John McCall | 67a5773 | 2011-04-21 01:20:55 +0000 | [diff] [blame] | 868 | /// The 0.98 ABI revision clarified a lot of ambiguities, |
| 869 | /// unfortunately in ways that were not always consistent with |
| 870 | /// certain previous compilers. In particular, platforms which |
| 871 | /// required strict binary compatibility with older versions of GCC |
| 872 | /// may need to exempt themselves. |
| 873 | bool honorsRevision0_98() const { |
| 874 | return !getContext().Target.getTriple().isOSDarwin(); |
| 875 | } |
| 876 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 877 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 878 | X86_64ABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {} |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 879 | |
Chris Lattner | ee5dcd0 | 2010-07-29 02:31:05 +0000 | [diff] [blame] | 880 | virtual void computeInfo(CGFunctionInfo &FI) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 881 | |
| 882 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 883 | CodeGenFunction &CGF) const; |
| 884 | }; |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 885 | |
Chris Lattner | f13721d | 2010-08-31 16:44:54 +0000 | [diff] [blame] | 886 | /// WinX86_64ABIInfo - The Windows X86_64 ABI information. |
NAKAMURA Takumi | a757322 | 2011-01-17 22:56:31 +0000 | [diff] [blame] | 887 | class WinX86_64ABIInfo : public ABIInfo { |
| 888 | |
| 889 | ABIArgInfo classify(QualType Ty) const; |
| 890 | |
Chris Lattner | f13721d | 2010-08-31 16:44:54 +0000 | [diff] [blame] | 891 | public: |
NAKAMURA Takumi | a757322 | 2011-01-17 22:56:31 +0000 | [diff] [blame] | 892 | WinX86_64ABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {} |
| 893 | |
| 894 | virtual void computeInfo(CGFunctionInfo &FI) const; |
Chris Lattner | f13721d | 2010-08-31 16:44:54 +0000 | [diff] [blame] | 895 | |
| 896 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 897 | CodeGenFunction &CGF) const; |
| 898 | }; |
| 899 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 900 | class X86_64TargetCodeGenInfo : public TargetCodeGenInfo { |
| 901 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 902 | X86_64TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT) |
| 903 | : TargetCodeGenInfo(new X86_64ABIInfo(CGT)) {} |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 904 | |
| 905 | int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const { |
| 906 | return 7; |
| 907 | } |
| 908 | |
| 909 | bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF, |
| 910 | llvm::Value *Address) const { |
| 911 | CodeGen::CGBuilderTy &Builder = CGF.Builder; |
| 912 | llvm::LLVMContext &Context = CGF.getLLVMContext(); |
| 913 | |
| 914 | const llvm::IntegerType *i8 = llvm::Type::getInt8Ty(Context); |
| 915 | llvm::Value *Eight8 = llvm::ConstantInt::get(i8, 8); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 916 | |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 917 | // 0-15 are the 16 integer registers. |
| 918 | // 16 is %rip. |
| 919 | AssignToArrayRange(Builder, Address, Eight8, 0, 16); |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 920 | |
| 921 | return false; |
| 922 | } |
Peter Collingbourne | 4b93d66 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 923 | |
| 924 | const llvm::Type* adjustInlineAsmType(CodeGen::CodeGenFunction &CGF, |
| 925 | llvm::StringRef Constraint, |
| 926 | const llvm::Type* Ty) const { |
| 927 | return X86AdjustInlineAsmType(CGF, Constraint, Ty); |
| 928 | } |
| 929 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 930 | }; |
| 931 | |
Chris Lattner | f13721d | 2010-08-31 16:44:54 +0000 | [diff] [blame] | 932 | class WinX86_64TargetCodeGenInfo : public TargetCodeGenInfo { |
| 933 | public: |
| 934 | WinX86_64TargetCodeGenInfo(CodeGen::CodeGenTypes &CGT) |
| 935 | : TargetCodeGenInfo(new WinX86_64ABIInfo(CGT)) {} |
| 936 | |
| 937 | int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const { |
| 938 | return 7; |
| 939 | } |
| 940 | |
| 941 | bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF, |
| 942 | llvm::Value *Address) const { |
| 943 | CodeGen::CGBuilderTy &Builder = CGF.Builder; |
| 944 | llvm::LLVMContext &Context = CGF.getLLVMContext(); |
| 945 | |
| 946 | const llvm::IntegerType *i8 = llvm::Type::getInt8Ty(Context); |
| 947 | llvm::Value *Eight8 = llvm::ConstantInt::get(i8, 8); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 948 | |
Chris Lattner | f13721d | 2010-08-31 16:44:54 +0000 | [diff] [blame] | 949 | // 0-15 are the 16 integer registers. |
| 950 | // 16 is %rip. |
| 951 | AssignToArrayRange(Builder, Address, Eight8, 0, 16); |
| 952 | |
| 953 | return false; |
| 954 | } |
| 955 | }; |
| 956 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 957 | } |
| 958 | |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 959 | X86_64ABIInfo::Class X86_64ABIInfo::merge(Class Accum, Class Field) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 960 | // AMD64-ABI 3.2.3p2: Rule 4. Each field of an object is |
| 961 | // classified recursively so that always two fields are |
| 962 | // considered. The resulting class is calculated according to |
| 963 | // the classes of the fields in the eightbyte: |
| 964 | // |
| 965 | // (a) If both classes are equal, this is the resulting class. |
| 966 | // |
| 967 | // (b) If one of the classes is NO_CLASS, the resulting class is |
| 968 | // the other class. |
| 969 | // |
| 970 | // (c) If one of the classes is MEMORY, the result is the MEMORY |
| 971 | // class. |
| 972 | // |
| 973 | // (d) If one of the classes is INTEGER, the result is the |
| 974 | // INTEGER. |
| 975 | // |
| 976 | // (e) If one of the classes is X87, X87UP, COMPLEX_X87 class, |
| 977 | // MEMORY is used as class. |
| 978 | // |
| 979 | // (f) Otherwise class SSE is used. |
| 980 | |
| 981 | // Accum should never be memory (we should have returned) or |
| 982 | // ComplexX87 (because this cannot be passed in a structure). |
| 983 | assert((Accum != Memory && Accum != ComplexX87) && |
| 984 | "Invalid accumulated classification during merge."); |
| 985 | if (Accum == Field || Field == NoClass) |
| 986 | return Accum; |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 987 | if (Field == Memory) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 988 | return Memory; |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 989 | if (Accum == NoClass) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 990 | return Field; |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 991 | if (Accum == Integer || Field == Integer) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 992 | return Integer; |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 993 | if (Field == X87 || Field == X87Up || Field == ComplexX87 || |
| 994 | Accum == X87 || Accum == X87Up) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 995 | return Memory; |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 996 | return SSE; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 997 | } |
| 998 | |
Chris Lattner | bcaedae | 2010-06-30 19:14:05 +0000 | [diff] [blame] | 999 | void X86_64ABIInfo::classify(QualType Ty, uint64_t OffsetBase, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1000 | Class &Lo, Class &Hi) const { |
| 1001 | // FIXME: This code can be simplified by introducing a simple value class for |
| 1002 | // Class pairs with appropriate constructor methods for the various |
| 1003 | // situations. |
| 1004 | |
| 1005 | // FIXME: Some of the split computations are wrong; unaligned vectors |
| 1006 | // shouldn't be passed in registers for example, so there is no chance they |
| 1007 | // can straddle an eightbyte. Verify & simplify. |
| 1008 | |
| 1009 | Lo = Hi = NoClass; |
| 1010 | |
| 1011 | Class &Current = OffsetBase < 64 ? Lo : Hi; |
| 1012 | Current = Memory; |
| 1013 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1014 | if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1015 | BuiltinType::Kind k = BT->getKind(); |
| 1016 | |
| 1017 | if (k == BuiltinType::Void) { |
| 1018 | Current = NoClass; |
| 1019 | } else if (k == BuiltinType::Int128 || k == BuiltinType::UInt128) { |
| 1020 | Lo = Integer; |
| 1021 | Hi = Integer; |
| 1022 | } else if (k >= BuiltinType::Bool && k <= BuiltinType::LongLong) { |
| 1023 | Current = Integer; |
| 1024 | } else if (k == BuiltinType::Float || k == BuiltinType::Double) { |
| 1025 | Current = SSE; |
| 1026 | } else if (k == BuiltinType::LongDouble) { |
| 1027 | Lo = X87; |
| 1028 | Hi = X87Up; |
| 1029 | } |
| 1030 | // FIXME: _Decimal32 and _Decimal64 are SSE. |
| 1031 | // FIXME: _float128 and _Decimal128 are (SSE, SSEUp). |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1032 | return; |
| 1033 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1034 | |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1035 | if (const EnumType *ET = Ty->getAs<EnumType>()) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1036 | // Classify the underlying integer type. |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1037 | classify(ET->getDecl()->getIntegerType(), OffsetBase, Lo, Hi); |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1038 | return; |
| 1039 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1040 | |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1041 | if (Ty->hasPointerRepresentation()) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1042 | Current = Integer; |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1043 | return; |
| 1044 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1045 | |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1046 | if (Ty->isMemberPointerType()) { |
Daniel Dunbar | 67d438d | 2010-05-15 00:00:37 +0000 | [diff] [blame] | 1047 | if (Ty->isMemberFunctionPointerType()) |
| 1048 | Lo = Hi = Integer; |
| 1049 | else |
| 1050 | Current = Integer; |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1051 | return; |
| 1052 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1053 | |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1054 | if (const VectorType *VT = Ty->getAs<VectorType>()) { |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1055 | uint64_t Size = getContext().getTypeSize(VT); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1056 | if (Size == 32) { |
| 1057 | // gcc passes all <4 x char>, <2 x short>, <1 x int>, <1 x |
| 1058 | // float> as integer. |
| 1059 | Current = Integer; |
| 1060 | |
| 1061 | // If this type crosses an eightbyte boundary, it should be |
| 1062 | // split. |
| 1063 | uint64_t EB_Real = (OffsetBase) / 64; |
| 1064 | uint64_t EB_Imag = (OffsetBase + Size - 1) / 64; |
| 1065 | if (EB_Real != EB_Imag) |
| 1066 | Hi = Lo; |
| 1067 | } else if (Size == 64) { |
| 1068 | // gcc passes <1 x double> in memory. :( |
| 1069 | if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::Double)) |
| 1070 | return; |
| 1071 | |
| 1072 | // gcc passes <1 x long long> as INTEGER. |
Chris Lattner | 473f8e7 | 2010-08-26 18:03:20 +0000 | [diff] [blame] | 1073 | if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::LongLong) || |
Chris Lattner | 0fefa41 | 2010-08-26 18:13:50 +0000 | [diff] [blame] | 1074 | VT->getElementType()->isSpecificBuiltinType(BuiltinType::ULongLong) || |
| 1075 | VT->getElementType()->isSpecificBuiltinType(BuiltinType::Long) || |
| 1076 | VT->getElementType()->isSpecificBuiltinType(BuiltinType::ULong)) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1077 | Current = Integer; |
| 1078 | else |
| 1079 | Current = SSE; |
| 1080 | |
| 1081 | // If this type crosses an eightbyte boundary, it should be |
| 1082 | // split. |
| 1083 | if (OffsetBase && OffsetBase != 64) |
| 1084 | Hi = Lo; |
| 1085 | } else if (Size == 128) { |
| 1086 | Lo = SSE; |
| 1087 | Hi = SSEUp; |
| 1088 | } |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1089 | return; |
| 1090 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1091 | |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1092 | if (const ComplexType *CT = Ty->getAs<ComplexType>()) { |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1093 | QualType ET = getContext().getCanonicalType(CT->getElementType()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1094 | |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1095 | uint64_t Size = getContext().getTypeSize(Ty); |
Douglas Gregor | 2ade35e | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 1096 | if (ET->isIntegralOrEnumerationType()) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1097 | if (Size <= 64) |
| 1098 | Current = Integer; |
| 1099 | else if (Size <= 128) |
| 1100 | Lo = Hi = Integer; |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1101 | } else if (ET == getContext().FloatTy) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1102 | Current = SSE; |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1103 | else if (ET == getContext().DoubleTy) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1104 | Lo = Hi = SSE; |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1105 | else if (ET == getContext().LongDoubleTy) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1106 | Current = ComplexX87; |
| 1107 | |
| 1108 | // If this complex type crosses an eightbyte boundary then it |
| 1109 | // should be split. |
| 1110 | uint64_t EB_Real = (OffsetBase) / 64; |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1111 | uint64_t EB_Imag = (OffsetBase + getContext().getTypeSize(ET)) / 64; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1112 | if (Hi == NoClass && EB_Real != EB_Imag) |
| 1113 | Hi = Lo; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1114 | |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1115 | return; |
| 1116 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1117 | |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1118 | if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1119 | // Arrays are treated like structures. |
| 1120 | |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1121 | uint64_t Size = getContext().getTypeSize(Ty); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1122 | |
| 1123 | // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger |
| 1124 | // than two eightbytes, ..., it has class MEMORY. |
| 1125 | if (Size > 128) |
| 1126 | return; |
| 1127 | |
| 1128 | // AMD64-ABI 3.2.3p2: Rule 1. If ..., or it contains unaligned |
| 1129 | // fields, it has class MEMORY. |
| 1130 | // |
| 1131 | // Only need to check alignment of array base. |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1132 | if (OffsetBase % getContext().getTypeAlign(AT->getElementType())) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1133 | return; |
| 1134 | |
| 1135 | // Otherwise implement simplified merge. We could be smarter about |
| 1136 | // this, but it isn't worth it and would be harder to verify. |
| 1137 | Current = NoClass; |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1138 | uint64_t EltSize = getContext().getTypeSize(AT->getElementType()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1139 | uint64_t ArraySize = AT->getSize().getZExtValue(); |
| 1140 | for (uint64_t i=0, Offset=OffsetBase; i<ArraySize; ++i, Offset += EltSize) { |
| 1141 | Class FieldLo, FieldHi; |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1142 | classify(AT->getElementType(), Offset, FieldLo, FieldHi); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1143 | Lo = merge(Lo, FieldLo); |
| 1144 | Hi = merge(Hi, FieldHi); |
| 1145 | if (Lo == Memory || Hi == Memory) |
| 1146 | break; |
| 1147 | } |
| 1148 | |
| 1149 | // Do post merger cleanup (see below). Only case we worry about is Memory. |
| 1150 | if (Hi == Memory) |
| 1151 | Lo = Memory; |
| 1152 | assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp array classification."); |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1153 | return; |
| 1154 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1155 | |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1156 | if (const RecordType *RT = Ty->getAs<RecordType>()) { |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1157 | uint64_t Size = getContext().getTypeSize(Ty); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1158 | |
| 1159 | // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger |
| 1160 | // than two eightbytes, ..., it has class MEMORY. |
| 1161 | if (Size > 128) |
| 1162 | return; |
| 1163 | |
Anders Carlsson | 0a8f847 | 2009-09-16 15:53:40 +0000 | [diff] [blame] | 1164 | // AMD64-ABI 3.2.3p2: Rule 2. If a C++ object has either a non-trivial |
| 1165 | // copy constructor or a non-trivial destructor, it is passed by invisible |
| 1166 | // reference. |
| 1167 | if (hasNonTrivialDestructorOrCopyConstructor(RT)) |
| 1168 | return; |
Daniel Dunbar | ce9f423 | 2009-11-22 23:01:23 +0000 | [diff] [blame] | 1169 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1170 | const RecordDecl *RD = RT->getDecl(); |
| 1171 | |
| 1172 | // Assume variable sized types are passed in memory. |
| 1173 | if (RD->hasFlexibleArrayMember()) |
| 1174 | return; |
| 1175 | |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1176 | const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1177 | |
| 1178 | // Reset Lo class, this will be recomputed. |
| 1179 | Current = NoClass; |
Daniel Dunbar | ce9f423 | 2009-11-22 23:01:23 +0000 | [diff] [blame] | 1180 | |
| 1181 | // If this is a C++ record, classify the bases first. |
| 1182 | if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) { |
| 1183 | for (CXXRecordDecl::base_class_const_iterator i = CXXRD->bases_begin(), |
| 1184 | e = CXXRD->bases_end(); i != e; ++i) { |
| 1185 | assert(!i->isVirtual() && !i->getType()->isDependentType() && |
| 1186 | "Unexpected base class!"); |
| 1187 | const CXXRecordDecl *Base = |
| 1188 | cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl()); |
| 1189 | |
| 1190 | // Classify this field. |
| 1191 | // |
| 1192 | // AMD64-ABI 3.2.3p2: Rule 3. If the size of the aggregate exceeds a |
| 1193 | // single eightbyte, each is classified separately. Each eightbyte gets |
| 1194 | // initialized to class NO_CLASS. |
| 1195 | Class FieldLo, FieldHi; |
Anders Carlsson | a14f597 | 2010-10-31 23:22:37 +0000 | [diff] [blame] | 1196 | uint64_t Offset = OffsetBase + Layout.getBaseClassOffsetInBits(Base); |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1197 | classify(i->getType(), Offset, FieldLo, FieldHi); |
Daniel Dunbar | ce9f423 | 2009-11-22 23:01:23 +0000 | [diff] [blame] | 1198 | Lo = merge(Lo, FieldLo); |
| 1199 | Hi = merge(Hi, FieldHi); |
| 1200 | if (Lo == Memory || Hi == Memory) |
| 1201 | break; |
| 1202 | } |
| 1203 | } |
| 1204 | |
| 1205 | // Classify the fields one at a time, merging the results. |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1206 | unsigned idx = 0; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1207 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 1208 | i != e; ++i, ++idx) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1209 | uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx); |
| 1210 | bool BitField = i->isBitField(); |
| 1211 | |
| 1212 | // AMD64-ABI 3.2.3p2: Rule 1. If ..., or it contains unaligned |
| 1213 | // fields, it has class MEMORY. |
| 1214 | // |
| 1215 | // Note, skip this test for bit-fields, see below. |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1216 | if (!BitField && Offset % getContext().getTypeAlign(i->getType())) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1217 | Lo = Memory; |
| 1218 | return; |
| 1219 | } |
| 1220 | |
| 1221 | // Classify this field. |
| 1222 | // |
| 1223 | // AMD64-ABI 3.2.3p2: Rule 3. If the size of the aggregate |
| 1224 | // exceeds a single eightbyte, each is classified |
| 1225 | // separately. Each eightbyte gets initialized to class |
| 1226 | // NO_CLASS. |
| 1227 | Class FieldLo, FieldHi; |
| 1228 | |
| 1229 | // Bit-fields require special handling, they do not force the |
| 1230 | // structure to be passed in memory even if unaligned, and |
| 1231 | // therefore they can straddle an eightbyte. |
| 1232 | if (BitField) { |
| 1233 | // Ignore padding bit-fields. |
| 1234 | if (i->isUnnamedBitfield()) |
| 1235 | continue; |
| 1236 | |
| 1237 | uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx); |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1238 | uint64_t Size = |
| 1239 | i->getBitWidth()->EvaluateAsInt(getContext()).getZExtValue(); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1240 | |
| 1241 | uint64_t EB_Lo = Offset / 64; |
| 1242 | uint64_t EB_Hi = (Offset + Size - 1) / 64; |
| 1243 | FieldLo = FieldHi = NoClass; |
| 1244 | if (EB_Lo) { |
| 1245 | assert(EB_Hi == EB_Lo && "Invalid classification, type > 16 bytes."); |
| 1246 | FieldLo = NoClass; |
| 1247 | FieldHi = Integer; |
| 1248 | } else { |
| 1249 | FieldLo = Integer; |
| 1250 | FieldHi = EB_Hi ? Integer : NoClass; |
| 1251 | } |
| 1252 | } else |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1253 | classify(i->getType(), Offset, FieldLo, FieldHi); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1254 | Lo = merge(Lo, FieldLo); |
| 1255 | Hi = merge(Hi, FieldHi); |
| 1256 | if (Lo == Memory || Hi == Memory) |
| 1257 | break; |
| 1258 | } |
| 1259 | |
| 1260 | // AMD64-ABI 3.2.3p2: Rule 5. Then a post merger cleanup is done: |
| 1261 | // |
| 1262 | // (a) If one of the classes is MEMORY, the whole argument is |
| 1263 | // passed in memory. |
| 1264 | // |
John McCall | 67a5773 | 2011-04-21 01:20:55 +0000 | [diff] [blame] | 1265 | // (b) If X87UP is not preceded by X87, the whole argument is |
| 1266 | // passed in memory. |
| 1267 | // |
| 1268 | // (c) If the size of the aggregate exceeds two eightbytes and the first |
| 1269 | // eight-byte isn’t SSE or any other eightbyte isn’t SSEUP, the whole |
| 1270 | // argument is passed in memory. |
| 1271 | // |
| 1272 | // (d) If SSEUP is not preceded by SSE or SSEUP, it is converted to SSE. |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1273 | // |
John McCall | 67a5773 | 2011-04-21 01:20:55 +0000 | [diff] [blame] | 1274 | // Some of these are enforced by the merging logic. Others can arise |
| 1275 | // only with unions; for example: |
| 1276 | // union { _Complex double; unsigned; } |
| 1277 | // |
| 1278 | // Note that clauses (b) and (c) were added in 0.98. |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1279 | if (Hi == Memory) |
| 1280 | Lo = Memory; |
John McCall | 67a5773 | 2011-04-21 01:20:55 +0000 | [diff] [blame] | 1281 | if (Hi == X87Up && Lo != X87 && honorsRevision0_98()) |
| 1282 | Lo = Memory; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1283 | if (Hi == SSEUp && Lo != SSE) |
| 1284 | Hi = SSE; |
| 1285 | } |
| 1286 | } |
| 1287 | |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1288 | ABIArgInfo X86_64ABIInfo::getIndirectReturnResult(QualType Ty) const { |
Daniel Dunbar | 46c54fb | 2010-04-21 19:49:55 +0000 | [diff] [blame] | 1289 | // If this is a scalar LLVM value then assume LLVM will pass it in the right |
| 1290 | // place naturally. |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 1291 | if (!isAggregateTypeForABI(Ty)) { |
Daniel Dunbar | 46c54fb | 2010-04-21 19:49:55 +0000 | [diff] [blame] | 1292 | // Treat an enum type as its underlying type. |
| 1293 | if (const EnumType *EnumTy = Ty->getAs<EnumType>()) |
| 1294 | Ty = EnumTy->getDecl()->getIntegerType(); |
| 1295 | |
| 1296 | return (Ty->isPromotableIntegerType() ? |
| 1297 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
| 1298 | } |
| 1299 | |
| 1300 | return ABIArgInfo::getIndirect(0); |
| 1301 | } |
| 1302 | |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1303 | ABIArgInfo X86_64ABIInfo::getIndirectResult(QualType Ty) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1304 | // If this is a scalar LLVM value then assume LLVM will pass it in the right |
| 1305 | // place naturally. |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 1306 | if (!isAggregateTypeForABI(Ty)) { |
Douglas Gregor | aa74a1e | 2010-02-02 20:10:50 +0000 | [diff] [blame] | 1307 | // Treat an enum type as its underlying type. |
| 1308 | if (const EnumType *EnumTy = Ty->getAs<EnumType>()) |
| 1309 | Ty = EnumTy->getDecl()->getIntegerType(); |
| 1310 | |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 1311 | return (Ty->isPromotableIntegerType() ? |
| 1312 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Douglas Gregor | aa74a1e | 2010-02-02 20:10:50 +0000 | [diff] [blame] | 1313 | } |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1314 | |
Daniel Dunbar | 46c54fb | 2010-04-21 19:49:55 +0000 | [diff] [blame] | 1315 | if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty)) |
| 1316 | return ABIArgInfo::getIndirect(0, /*ByVal=*/false); |
Anders Carlsson | 0a8f847 | 2009-09-16 15:53:40 +0000 | [diff] [blame] | 1317 | |
Chris Lattner | 855d227 | 2011-05-22 23:21:23 +0000 | [diff] [blame] | 1318 | // Compute the byval alignment. We specify the alignment of the byval in all |
| 1319 | // cases so that the mid-level optimizer knows the alignment of the byval. |
| 1320 | unsigned Align = std::max(getContext().getTypeAlign(Ty) / 8, 8U); |
| 1321 | return ABIArgInfo::getIndirect(Align); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1322 | } |
| 1323 | |
Chris Lattner | 0f408f5 | 2010-07-29 04:56:46 +0000 | [diff] [blame] | 1324 | /// Get16ByteVectorType - The ABI specifies that a value should be passed in an |
| 1325 | /// full vector XMM register. Pick an LLVM IR type that will be passed as a |
| 1326 | /// vector register. |
| 1327 | const llvm::Type *X86_64ABIInfo::Get16ByteVectorType(QualType Ty) const { |
Chris Lattner | 15842bd | 2010-07-29 05:02:29 +0000 | [diff] [blame] | 1328 | const llvm::Type *IRType = CGT.ConvertTypeRecursive(Ty); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1329 | |
Chris Lattner | 15842bd | 2010-07-29 05:02:29 +0000 | [diff] [blame] | 1330 | // Wrapper structs that just contain vectors are passed just like vectors, |
| 1331 | // strip them off if present. |
| 1332 | const llvm::StructType *STy = dyn_cast<llvm::StructType>(IRType); |
| 1333 | while (STy && STy->getNumElements() == 1) { |
| 1334 | IRType = STy->getElementType(0); |
| 1335 | STy = dyn_cast<llvm::StructType>(IRType); |
| 1336 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1337 | |
Chris Lattner | 0f408f5 | 2010-07-29 04:56:46 +0000 | [diff] [blame] | 1338 | // If the preferred type is a 16-byte vector, prefer to pass it. |
Chris Lattner | 15842bd | 2010-07-29 05:02:29 +0000 | [diff] [blame] | 1339 | if (const llvm::VectorType *VT = dyn_cast<llvm::VectorType>(IRType)){ |
Chris Lattner | 0f408f5 | 2010-07-29 04:56:46 +0000 | [diff] [blame] | 1340 | const llvm::Type *EltTy = VT->getElementType(); |
| 1341 | if (VT->getBitWidth() == 128 && |
| 1342 | (EltTy->isFloatTy() || EltTy->isDoubleTy() || |
| 1343 | EltTy->isIntegerTy(8) || EltTy->isIntegerTy(16) || |
| 1344 | EltTy->isIntegerTy(32) || EltTy->isIntegerTy(64) || |
| 1345 | EltTy->isIntegerTy(128))) |
| 1346 | return VT; |
| 1347 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1348 | |
Chris Lattner | 0f408f5 | 2010-07-29 04:56:46 +0000 | [diff] [blame] | 1349 | return llvm::VectorType::get(llvm::Type::getDoubleTy(getVMContext()), 2); |
| 1350 | } |
| 1351 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1352 | /// BitsContainNoUserData - Return true if the specified [start,end) bit range |
| 1353 | /// is known to either be off the end of the specified type or being in |
| 1354 | /// alignment padding. The user type specified is known to be at most 128 bits |
| 1355 | /// in size, and have passed through X86_64ABIInfo::classify with a successful |
| 1356 | /// classification that put one of the two halves in the INTEGER class. |
| 1357 | /// |
| 1358 | /// It is conservatively correct to return false. |
| 1359 | static bool BitsContainNoUserData(QualType Ty, unsigned StartBit, |
| 1360 | unsigned EndBit, ASTContext &Context) { |
| 1361 | // If the bytes being queried are off the end of the type, there is no user |
| 1362 | // data hiding here. This handles analysis of builtins, vectors and other |
| 1363 | // types that don't contain interesting padding. |
| 1364 | unsigned TySize = (unsigned)Context.getTypeSize(Ty); |
| 1365 | if (TySize <= StartBit) |
| 1366 | return true; |
| 1367 | |
Chris Lattner | 021c3a3 | 2010-07-29 07:43:55 +0000 | [diff] [blame] | 1368 | if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) { |
| 1369 | unsigned EltSize = (unsigned)Context.getTypeSize(AT->getElementType()); |
| 1370 | unsigned NumElts = (unsigned)AT->getSize().getZExtValue(); |
| 1371 | |
| 1372 | // Check each element to see if the element overlaps with the queried range. |
| 1373 | for (unsigned i = 0; i != NumElts; ++i) { |
| 1374 | // If the element is after the span we care about, then we're done.. |
| 1375 | unsigned EltOffset = i*EltSize; |
| 1376 | if (EltOffset >= EndBit) break; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1377 | |
Chris Lattner | 021c3a3 | 2010-07-29 07:43:55 +0000 | [diff] [blame] | 1378 | unsigned EltStart = EltOffset < StartBit ? StartBit-EltOffset :0; |
| 1379 | if (!BitsContainNoUserData(AT->getElementType(), EltStart, |
| 1380 | EndBit-EltOffset, Context)) |
| 1381 | return false; |
| 1382 | } |
| 1383 | // If it overlaps no elements, then it is safe to process as padding. |
| 1384 | return true; |
| 1385 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1386 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1387 | if (const RecordType *RT = Ty->getAs<RecordType>()) { |
| 1388 | const RecordDecl *RD = RT->getDecl(); |
| 1389 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1390 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1391 | // If this is a C++ record, check the bases first. |
| 1392 | if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) { |
| 1393 | for (CXXRecordDecl::base_class_const_iterator i = CXXRD->bases_begin(), |
| 1394 | e = CXXRD->bases_end(); i != e; ++i) { |
| 1395 | assert(!i->isVirtual() && !i->getType()->isDependentType() && |
| 1396 | "Unexpected base class!"); |
| 1397 | const CXXRecordDecl *Base = |
| 1398 | cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl()); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1399 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1400 | // If the base is after the span we care about, ignore it. |
Anders Carlsson | a14f597 | 2010-10-31 23:22:37 +0000 | [diff] [blame] | 1401 | unsigned BaseOffset = (unsigned)Layout.getBaseClassOffsetInBits(Base); |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1402 | if (BaseOffset >= EndBit) continue; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1403 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1404 | unsigned BaseStart = BaseOffset < StartBit ? StartBit-BaseOffset :0; |
| 1405 | if (!BitsContainNoUserData(i->getType(), BaseStart, |
| 1406 | EndBit-BaseOffset, Context)) |
| 1407 | return false; |
| 1408 | } |
| 1409 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1410 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1411 | // Verify that no field has data that overlaps the region of interest. Yes |
| 1412 | // this could be sped up a lot by being smarter about queried fields, |
| 1413 | // however we're only looking at structs up to 16 bytes, so we don't care |
| 1414 | // much. |
| 1415 | unsigned idx = 0; |
| 1416 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 1417 | i != e; ++i, ++idx) { |
| 1418 | unsigned FieldOffset = (unsigned)Layout.getFieldOffset(idx); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1419 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1420 | // If we found a field after the region we care about, then we're done. |
| 1421 | if (FieldOffset >= EndBit) break; |
| 1422 | |
| 1423 | unsigned FieldStart = FieldOffset < StartBit ? StartBit-FieldOffset :0; |
| 1424 | if (!BitsContainNoUserData(i->getType(), FieldStart, EndBit-FieldOffset, |
| 1425 | Context)) |
| 1426 | return false; |
| 1427 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1428 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1429 | // If nothing in this record overlapped the area of interest, then we're |
| 1430 | // clean. |
| 1431 | return true; |
| 1432 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1433 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1434 | return false; |
| 1435 | } |
| 1436 | |
Chris Lattner | 0b36200 | 2010-07-29 18:39:32 +0000 | [diff] [blame] | 1437 | /// ContainsFloatAtOffset - Return true if the specified LLVM IR type has a |
| 1438 | /// float member at the specified offset. For example, {int,{float}} has a |
| 1439 | /// float at offset 4. It is conservatively correct for this routine to return |
| 1440 | /// false. |
| 1441 | static bool ContainsFloatAtOffset(const llvm::Type *IRType, unsigned IROffset, |
| 1442 | const llvm::TargetData &TD) { |
| 1443 | // Base case if we find a float. |
| 1444 | if (IROffset == 0 && IRType->isFloatTy()) |
| 1445 | return true; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1446 | |
Chris Lattner | 0b36200 | 2010-07-29 18:39:32 +0000 | [diff] [blame] | 1447 | // If this is a struct, recurse into the field at the specified offset. |
| 1448 | if (const llvm::StructType *STy = dyn_cast<llvm::StructType>(IRType)) { |
| 1449 | const llvm::StructLayout *SL = TD.getStructLayout(STy); |
| 1450 | unsigned Elt = SL->getElementContainingOffset(IROffset); |
| 1451 | IROffset -= SL->getElementOffset(Elt); |
| 1452 | return ContainsFloatAtOffset(STy->getElementType(Elt), IROffset, TD); |
| 1453 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1454 | |
Chris Lattner | 0b36200 | 2010-07-29 18:39:32 +0000 | [diff] [blame] | 1455 | // If this is an array, recurse into the field at the specified offset. |
| 1456 | if (const llvm::ArrayType *ATy = dyn_cast<llvm::ArrayType>(IRType)) { |
| 1457 | const llvm::Type *EltTy = ATy->getElementType(); |
| 1458 | unsigned EltSize = TD.getTypeAllocSize(EltTy); |
| 1459 | IROffset -= IROffset/EltSize*EltSize; |
| 1460 | return ContainsFloatAtOffset(EltTy, IROffset, TD); |
| 1461 | } |
| 1462 | |
| 1463 | return false; |
| 1464 | } |
| 1465 | |
Chris Lattner | f47c944 | 2010-07-29 18:13:09 +0000 | [diff] [blame] | 1466 | |
| 1467 | /// GetSSETypeAtOffset - Return a type that will be passed by the backend in the |
| 1468 | /// low 8 bytes of an XMM register, corresponding to the SSE class. |
| 1469 | const llvm::Type *X86_64ABIInfo:: |
| 1470 | GetSSETypeAtOffset(const llvm::Type *IRType, unsigned IROffset, |
| 1471 | QualType SourceTy, unsigned SourceOffset) const { |
Chris Lattner | cba8d31 | 2010-07-29 18:19:50 +0000 | [diff] [blame] | 1472 | // The only three choices we have are either double, <2 x float>, or float. We |
Chris Lattner | f47c944 | 2010-07-29 18:13:09 +0000 | [diff] [blame] | 1473 | // pass as float if the last 4 bytes is just padding. This happens for |
| 1474 | // structs that contain 3 floats. |
| 1475 | if (BitsContainNoUserData(SourceTy, SourceOffset*8+32, |
| 1476 | SourceOffset*8+64, getContext())) |
| 1477 | return llvm::Type::getFloatTy(getVMContext()); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1478 | |
Chris Lattner | 0b36200 | 2010-07-29 18:39:32 +0000 | [diff] [blame] | 1479 | // We want to pass as <2 x float> if the LLVM IR type contains a float at |
| 1480 | // offset+0 and offset+4. Walk the LLVM IR type to find out if this is the |
| 1481 | // case. |
| 1482 | if (ContainsFloatAtOffset(IRType, IROffset, getTargetData()) && |
Chris Lattner | 22fd4ba | 2010-08-25 23:39:14 +0000 | [diff] [blame] | 1483 | ContainsFloatAtOffset(IRType, IROffset+4, getTargetData())) |
| 1484 | return llvm::VectorType::get(llvm::Type::getFloatTy(getVMContext()), 2); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1485 | |
Chris Lattner | f47c944 | 2010-07-29 18:13:09 +0000 | [diff] [blame] | 1486 | return llvm::Type::getDoubleTy(getVMContext()); |
| 1487 | } |
| 1488 | |
| 1489 | |
Chris Lattner | 0d2656d | 2010-07-29 17:40:35 +0000 | [diff] [blame] | 1490 | /// GetINTEGERTypeAtOffset - The ABI specifies that a value should be passed in |
| 1491 | /// an 8-byte GPR. This means that we either have a scalar or we are talking |
| 1492 | /// about the high or low part of an up-to-16-byte struct. This routine picks |
| 1493 | /// the best LLVM IR type to represent this, which may be i64 or may be anything |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1494 | /// else that the backend will pass in a GPR that works better (e.g. i8, %foo*, |
| 1495 | /// etc). |
| 1496 | /// |
| 1497 | /// PrefType is an LLVM IR type that corresponds to (part of) the IR type for |
| 1498 | /// the source type. IROffset is an offset in bytes into the LLVM IR type that |
| 1499 | /// the 8-byte value references. PrefType may be null. |
| 1500 | /// |
| 1501 | /// SourceTy is the source level type for the entire argument. SourceOffset is |
| 1502 | /// an offset into this that we're processing (which is always either 0 or 8). |
| 1503 | /// |
Chris Lattner | 44f0fd2 | 2010-07-29 02:20:19 +0000 | [diff] [blame] | 1504 | const llvm::Type *X86_64ABIInfo:: |
Chris Lattner | 0d2656d | 2010-07-29 17:40:35 +0000 | [diff] [blame] | 1505 | GetINTEGERTypeAtOffset(const llvm::Type *IRType, unsigned IROffset, |
| 1506 | QualType SourceTy, unsigned SourceOffset) const { |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1507 | // If we're dealing with an un-offset LLVM IR type, then it means that we're |
| 1508 | // returning an 8-byte unit starting with it. See if we can safely use it. |
| 1509 | if (IROffset == 0) { |
| 1510 | // Pointers and int64's always fill the 8-byte unit. |
| 1511 | if (isa<llvm::PointerType>(IRType) || IRType->isIntegerTy(64)) |
| 1512 | return IRType; |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1513 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1514 | // If we have a 1/2/4-byte integer, we can use it only if the rest of the |
| 1515 | // goodness in the source type is just tail padding. This is allowed to |
| 1516 | // kick in for struct {double,int} on the int, but not on |
| 1517 | // struct{double,int,int} because we wouldn't return the second int. We |
| 1518 | // have to do this analysis on the source type because we can't depend on |
| 1519 | // unions being lowered a specific way etc. |
| 1520 | if (IRType->isIntegerTy(8) || IRType->isIntegerTy(16) || |
| 1521 | IRType->isIntegerTy(32)) { |
| 1522 | unsigned BitWidth = cast<llvm::IntegerType>(IRType)->getBitWidth(); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1523 | |
Chris Lattner | e2962be | 2010-07-29 07:30:00 +0000 | [diff] [blame] | 1524 | if (BitsContainNoUserData(SourceTy, SourceOffset*8+BitWidth, |
| 1525 | SourceOffset*8+64, getContext())) |
| 1526 | return IRType; |
| 1527 | } |
| 1528 | } |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1529 | |
Chris Lattner | fe12d1e | 2010-07-29 04:51:12 +0000 | [diff] [blame] | 1530 | if (const llvm::StructType *STy = dyn_cast<llvm::StructType>(IRType)) { |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1531 | // If this is a struct, recurse into the field at the specified offset. |
Chris Lattner | 44f0fd2 | 2010-07-29 02:20:19 +0000 | [diff] [blame] | 1532 | const llvm::StructLayout *SL = getTargetData().getStructLayout(STy); |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1533 | if (IROffset < SL->getSizeInBytes()) { |
| 1534 | unsigned FieldIdx = SL->getElementContainingOffset(IROffset); |
| 1535 | IROffset -= SL->getElementOffset(FieldIdx); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1536 | |
Chris Lattner | 0d2656d | 2010-07-29 17:40:35 +0000 | [diff] [blame] | 1537 | return GetINTEGERTypeAtOffset(STy->getElementType(FieldIdx), IROffset, |
| 1538 | SourceTy, SourceOffset); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1539 | } |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1540 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1541 | |
Chris Lattner | 021c3a3 | 2010-07-29 07:43:55 +0000 | [diff] [blame] | 1542 | if (const llvm::ArrayType *ATy = dyn_cast<llvm::ArrayType>(IRType)) { |
| 1543 | const llvm::Type *EltTy = ATy->getElementType(); |
| 1544 | unsigned EltSize = getTargetData().getTypeAllocSize(EltTy); |
| 1545 | unsigned EltOffset = IROffset/EltSize*EltSize; |
Chris Lattner | 0d2656d | 2010-07-29 17:40:35 +0000 | [diff] [blame] | 1546 | return GetINTEGERTypeAtOffset(EltTy, IROffset-EltOffset, SourceTy, |
| 1547 | SourceOffset); |
Chris Lattner | 021c3a3 | 2010-07-29 07:43:55 +0000 | [diff] [blame] | 1548 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1549 | |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1550 | // Okay, we don't have any better idea of what to pass, so we pass this in an |
| 1551 | // integer register that isn't too big to fit the rest of the struct. |
Chris Lattner | 9e45a3d | 2010-07-29 17:34:39 +0000 | [diff] [blame] | 1552 | unsigned TySizeInBytes = |
| 1553 | (unsigned)getContext().getTypeSizeInChars(SourceTy).getQuantity(); |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1554 | |
Chris Lattner | 9e45a3d | 2010-07-29 17:34:39 +0000 | [diff] [blame] | 1555 | assert(TySizeInBytes != SourceOffset && "Empty field?"); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1556 | |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1557 | // It is always safe to classify this as an integer type up to i64 that |
| 1558 | // isn't larger than the structure. |
Chris Lattner | 9e45a3d | 2010-07-29 17:34:39 +0000 | [diff] [blame] | 1559 | return llvm::IntegerType::get(getVMContext(), |
| 1560 | std::min(TySizeInBytes-SourceOffset, 8U)*8); |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1561 | } |
| 1562 | |
Chris Lattner | 66e7b68 | 2010-09-01 00:50:20 +0000 | [diff] [blame] | 1563 | |
| 1564 | /// GetX86_64ByValArgumentPair - Given a high and low type that can ideally |
| 1565 | /// be used as elements of a two register pair to pass or return, return a |
| 1566 | /// first class aggregate to represent them. For example, if the low part of |
| 1567 | /// a by-value argument should be passed as i32* and the high part as float, |
| 1568 | /// return {i32*, float}. |
| 1569 | static const llvm::Type * |
| 1570 | GetX86_64ByValArgumentPair(const llvm::Type *Lo, const llvm::Type *Hi, |
| 1571 | const llvm::TargetData &TD) { |
| 1572 | // In order to correctly satisfy the ABI, we need to the high part to start |
| 1573 | // at offset 8. If the high and low parts we inferred are both 4-byte types |
| 1574 | // (e.g. i32 and i32) then the resultant struct type ({i32,i32}) won't have |
| 1575 | // the second element at offset 8. Check for this: |
| 1576 | unsigned LoSize = (unsigned)TD.getTypeAllocSize(Lo); |
| 1577 | unsigned HiAlign = TD.getABITypeAlignment(Hi); |
| 1578 | unsigned HiStart = llvm::TargetData::RoundUpAlignment(LoSize, HiAlign); |
| 1579 | assert(HiStart != 0 && HiStart <= 8 && "Invalid x86-64 argument pair!"); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1580 | |
Chris Lattner | 66e7b68 | 2010-09-01 00:50:20 +0000 | [diff] [blame] | 1581 | // To handle this, we have to increase the size of the low part so that the |
| 1582 | // second element will start at an 8 byte offset. We can't increase the size |
| 1583 | // of the second element because it might make us access off the end of the |
| 1584 | // struct. |
| 1585 | if (HiStart != 8) { |
| 1586 | // There are only two sorts of types the ABI generation code can produce for |
| 1587 | // the low part of a pair that aren't 8 bytes in size: float or i8/i16/i32. |
| 1588 | // Promote these to a larger type. |
| 1589 | if (Lo->isFloatTy()) |
| 1590 | Lo = llvm::Type::getDoubleTy(Lo->getContext()); |
| 1591 | else { |
| 1592 | assert(Lo->isIntegerTy() && "Invalid/unknown lo type"); |
| 1593 | Lo = llvm::Type::getInt64Ty(Lo->getContext()); |
| 1594 | } |
| 1595 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1596 | |
| 1597 | const llvm::StructType *Result = |
Chris Lattner | 66e7b68 | 2010-09-01 00:50:20 +0000 | [diff] [blame] | 1598 | llvm::StructType::get(Lo->getContext(), Lo, Hi, NULL); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1599 | |
| 1600 | |
Chris Lattner | 66e7b68 | 2010-09-01 00:50:20 +0000 | [diff] [blame] | 1601 | // Verify that the second element is at an 8-byte offset. |
| 1602 | assert(TD.getStructLayout(Result)->getElementOffset(1) == 8 && |
| 1603 | "Invalid x86-64 argument pair!"); |
| 1604 | return Result; |
| 1605 | } |
| 1606 | |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1607 | ABIArgInfo X86_64ABIInfo:: |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 1608 | classifyReturnType(QualType RetTy) const { |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1609 | // AMD64-ABI 3.2.3p4: Rule 1. Classify the return type with the |
| 1610 | // classification algorithm. |
| 1611 | X86_64ABIInfo::Class Lo, Hi; |
| 1612 | classify(RetTy, 0, Lo, Hi); |
| 1613 | |
| 1614 | // Check some invariants. |
| 1615 | assert((Hi != Memory || Lo == Memory) && "Invalid memory classification."); |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1616 | assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification."); |
| 1617 | |
| 1618 | const llvm::Type *ResType = 0; |
| 1619 | switch (Lo) { |
| 1620 | case NoClass: |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1621 | if (Hi == NoClass) |
| 1622 | return ABIArgInfo::getIgnore(); |
| 1623 | // If the low part is just padding, it takes no register, leave ResType |
| 1624 | // null. |
| 1625 | assert((Hi == SSE || Hi == Integer || Hi == X87Up) && |
| 1626 | "Unknown missing lo part"); |
| 1627 | break; |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1628 | |
| 1629 | case SSEUp: |
| 1630 | case X87Up: |
| 1631 | assert(0 && "Invalid classification for lo word."); |
| 1632 | |
| 1633 | // AMD64-ABI 3.2.3p4: Rule 2. Types of class memory are returned via |
| 1634 | // hidden argument. |
| 1635 | case Memory: |
| 1636 | return getIndirectReturnResult(RetTy); |
| 1637 | |
| 1638 | // AMD64-ABI 3.2.3p4: Rule 3. If the class is INTEGER, the next |
| 1639 | // available register of the sequence %rax, %rdx is used. |
| 1640 | case Integer: |
Chris Lattner | 0d2656d | 2010-07-29 17:40:35 +0000 | [diff] [blame] | 1641 | ResType = GetINTEGERTypeAtOffset(CGT.ConvertTypeRecursive(RetTy), 0, |
| 1642 | RetTy, 0); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1643 | |
Chris Lattner | eb518b4 | 2010-07-29 21:42:50 +0000 | [diff] [blame] | 1644 | // If we have a sign or zero extended integer, make sure to return Extend |
| 1645 | // so that the parameter gets the right LLVM IR attributes. |
| 1646 | if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) { |
| 1647 | // Treat an enum type as its underlying type. |
| 1648 | if (const EnumType *EnumTy = RetTy->getAs<EnumType>()) |
| 1649 | RetTy = EnumTy->getDecl()->getIntegerType(); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1650 | |
Chris Lattner | eb518b4 | 2010-07-29 21:42:50 +0000 | [diff] [blame] | 1651 | if (RetTy->isIntegralOrEnumerationType() && |
| 1652 | RetTy->isPromotableIntegerType()) |
| 1653 | return ABIArgInfo::getExtend(); |
| 1654 | } |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1655 | break; |
| 1656 | |
| 1657 | // AMD64-ABI 3.2.3p4: Rule 4. If the class is SSE, the next |
| 1658 | // available SSE register of the sequence %xmm0, %xmm1 is used. |
| 1659 | case SSE: |
Chris Lattner | f47c944 | 2010-07-29 18:13:09 +0000 | [diff] [blame] | 1660 | ResType = GetSSETypeAtOffset(CGT.ConvertTypeRecursive(RetTy), 0, RetTy, 0); |
Chris Lattner | 0b30c67 | 2010-07-28 23:12:33 +0000 | [diff] [blame] | 1661 | break; |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1662 | |
| 1663 | // AMD64-ABI 3.2.3p4: Rule 6. If the class is X87, the value is |
| 1664 | // returned on the X87 stack in %st0 as 80-bit x87 number. |
| 1665 | case X87: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1666 | ResType = llvm::Type::getX86_FP80Ty(getVMContext()); |
Chris Lattner | 0b30c67 | 2010-07-28 23:12:33 +0000 | [diff] [blame] | 1667 | break; |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1668 | |
| 1669 | // AMD64-ABI 3.2.3p4: Rule 8. If the class is COMPLEX_X87, the real |
| 1670 | // part of the value is returned in %st0 and the imaginary part in |
| 1671 | // %st1. |
| 1672 | case ComplexX87: |
| 1673 | assert(Hi == ComplexX87 && "Unexpected ComplexX87 classification."); |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 1674 | ResType = llvm::StructType::get(getVMContext(), |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 1675 | llvm::Type::getX86_FP80Ty(getVMContext()), |
| 1676 | llvm::Type::getX86_FP80Ty(getVMContext()), |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1677 | NULL); |
| 1678 | break; |
| 1679 | } |
| 1680 | |
Chris Lattner | 3db4dde | 2010-09-01 00:20:33 +0000 | [diff] [blame] | 1681 | const llvm::Type *HighPart = 0; |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1682 | switch (Hi) { |
| 1683 | // Memory was handled previously and X87 should |
| 1684 | // never occur as a hi class. |
| 1685 | case Memory: |
| 1686 | case X87: |
| 1687 | assert(0 && "Invalid classification for hi word."); |
| 1688 | |
| 1689 | case ComplexX87: // Previously handled. |
Chris Lattner | 0b30c67 | 2010-07-28 23:12:33 +0000 | [diff] [blame] | 1690 | case NoClass: |
| 1691 | break; |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1692 | |
Chris Lattner | 3db4dde | 2010-09-01 00:20:33 +0000 | [diff] [blame] | 1693 | case Integer: |
| 1694 | HighPart = GetINTEGERTypeAtOffset(CGT.ConvertTypeRecursive(RetTy), |
| 1695 | 8, RetTy, 8); |
| 1696 | if (Lo == NoClass) // Return HighPart at offset 8 in memory. |
| 1697 | return ABIArgInfo::getDirect(HighPart, 8); |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1698 | break; |
Chris Lattner | 3db4dde | 2010-09-01 00:20:33 +0000 | [diff] [blame] | 1699 | case SSE: |
| 1700 | HighPart = GetSSETypeAtOffset(CGT.ConvertTypeRecursive(RetTy), 8, RetTy, 8); |
| 1701 | if (Lo == NoClass) // Return HighPart at offset 8 in memory. |
| 1702 | return ABIArgInfo::getDirect(HighPart, 8); |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1703 | break; |
| 1704 | |
| 1705 | // AMD64-ABI 3.2.3p4: Rule 5. If the class is SSEUP, the eightbyte |
| 1706 | // is passed in the upper half of the last used SSE register. |
| 1707 | // |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 1708 | // SSEUP should always be preceded by SSE, just widen. |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1709 | case SSEUp: |
| 1710 | assert(Lo == SSE && "Unexpected SSEUp classification."); |
Chris Lattner | 0f408f5 | 2010-07-29 04:56:46 +0000 | [diff] [blame] | 1711 | ResType = Get16ByteVectorType(RetTy); |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1712 | break; |
| 1713 | |
| 1714 | // AMD64-ABI 3.2.3p4: Rule 7. If the class is X87UP, the value is |
| 1715 | // returned together with the previous X87 value in %st0. |
| 1716 | case X87Up: |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 1717 | // If X87Up is preceded by X87, we don't need to do |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1718 | // anything. However, in some cases with unions it may not be |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 1719 | // preceded by X87. In such situations we follow gcc and pass the |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1720 | // extra bits in an SSE reg. |
Chris Lattner | 603519d | 2010-07-29 17:49:08 +0000 | [diff] [blame] | 1721 | if (Lo != X87) { |
Chris Lattner | 3db4dde | 2010-09-01 00:20:33 +0000 | [diff] [blame] | 1722 | HighPart = GetSSETypeAtOffset(CGT.ConvertTypeRecursive(RetTy), |
| 1723 | 8, RetTy, 8); |
| 1724 | if (Lo == NoClass) // Return HighPart at offset 8 in memory. |
| 1725 | return ABIArgInfo::getDirect(HighPart, 8); |
Chris Lattner | 603519d | 2010-07-29 17:49:08 +0000 | [diff] [blame] | 1726 | } |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1727 | break; |
| 1728 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1729 | |
Chris Lattner | 3db4dde | 2010-09-01 00:20:33 +0000 | [diff] [blame] | 1730 | // If a high part was specified, merge it together with the low part. It is |
Chris Lattner | 645406a | 2010-09-01 00:24:35 +0000 | [diff] [blame] | 1731 | // known to pass in the high eightbyte of the result. We do this by forming a |
| 1732 | // first class struct aggregate with the high and low part: {low, high} |
Chris Lattner | 66e7b68 | 2010-09-01 00:50:20 +0000 | [diff] [blame] | 1733 | if (HighPart) |
| 1734 | ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getTargetData()); |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1735 | |
Chris Lattner | eb518b4 | 2010-07-29 21:42:50 +0000 | [diff] [blame] | 1736 | return ABIArgInfo::getDirect(ResType); |
Chris Lattner | 519f68c | 2010-07-28 23:06:14 +0000 | [diff] [blame] | 1737 | } |
| 1738 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 1739 | ABIArgInfo X86_64ABIInfo::classifyArgumentType(QualType Ty, unsigned &neededInt, |
Bill Wendling | 99aaae8 | 2010-10-18 23:51:38 +0000 | [diff] [blame] | 1740 | unsigned &neededSSE) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1741 | X86_64ABIInfo::Class Lo, Hi; |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1742 | classify(Ty, 0, Lo, Hi); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1743 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1744 | // Check some invariants. |
| 1745 | // FIXME: Enforce these by construction. |
| 1746 | assert((Hi != Memory || Lo == Memory) && "Invalid memory classification."); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1747 | assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification."); |
| 1748 | |
| 1749 | neededInt = 0; |
| 1750 | neededSSE = 0; |
| 1751 | const llvm::Type *ResType = 0; |
| 1752 | switch (Lo) { |
| 1753 | case NoClass: |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1754 | if (Hi == NoClass) |
| 1755 | return ABIArgInfo::getIgnore(); |
| 1756 | // If the low part is just padding, it takes no register, leave ResType |
| 1757 | // null. |
| 1758 | assert((Hi == SSE || Hi == Integer || Hi == X87Up) && |
| 1759 | "Unknown missing lo part"); |
| 1760 | break; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1761 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1762 | // AMD64-ABI 3.2.3p3: Rule 1. If the class is MEMORY, pass the argument |
| 1763 | // on the stack. |
| 1764 | case Memory: |
| 1765 | |
| 1766 | // AMD64-ABI 3.2.3p3: Rule 5. If the class is X87, X87UP or |
| 1767 | // COMPLEX_X87, it is passed in memory. |
| 1768 | case X87: |
| 1769 | case ComplexX87: |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1770 | return getIndirectResult(Ty); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1771 | |
| 1772 | case SSEUp: |
| 1773 | case X87Up: |
| 1774 | assert(0 && "Invalid classification for lo word."); |
| 1775 | |
| 1776 | // AMD64-ABI 3.2.3p3: Rule 2. If the class is INTEGER, the next |
| 1777 | // available register of the sequence %rdi, %rsi, %rdx, %rcx, %r8 |
| 1778 | // and %r9 is used. |
| 1779 | case Integer: |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1780 | ++neededInt; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1781 | |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1782 | // Pick an 8-byte type based on the preferred type. |
Chris Lattner | 0d2656d | 2010-07-29 17:40:35 +0000 | [diff] [blame] | 1783 | ResType = GetINTEGERTypeAtOffset(CGT.ConvertTypeRecursive(Ty), 0, Ty, 0); |
Chris Lattner | eb518b4 | 2010-07-29 21:42:50 +0000 | [diff] [blame] | 1784 | |
| 1785 | // If we have a sign or zero extended integer, make sure to return Extend |
| 1786 | // so that the parameter gets the right LLVM IR attributes. |
| 1787 | if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) { |
| 1788 | // Treat an enum type as its underlying type. |
| 1789 | if (const EnumType *EnumTy = Ty->getAs<EnumType>()) |
| 1790 | Ty = EnumTy->getDecl()->getIntegerType(); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1791 | |
Chris Lattner | eb518b4 | 2010-07-29 21:42:50 +0000 | [diff] [blame] | 1792 | if (Ty->isIntegralOrEnumerationType() && |
| 1793 | Ty->isPromotableIntegerType()) |
| 1794 | return ABIArgInfo::getExtend(); |
| 1795 | } |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1796 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1797 | break; |
| 1798 | |
| 1799 | // AMD64-ABI 3.2.3p3: Rule 3. If the class is SSE, the next |
| 1800 | // available SSE register is used, the registers are taken in the |
| 1801 | // order from %xmm0 to %xmm7. |
Bill Wendling | bb465d7 | 2010-10-18 03:41:31 +0000 | [diff] [blame] | 1802 | case SSE: { |
| 1803 | const llvm::Type *IRType = CGT.ConvertTypeRecursive(Ty); |
Bill Wendling | 99aaae8 | 2010-10-18 23:51:38 +0000 | [diff] [blame] | 1804 | if (Hi != NoClass || !UseX86_MMXType(IRType)) |
Bill Wendling | bb465d7 | 2010-10-18 03:41:31 +0000 | [diff] [blame] | 1805 | ResType = GetSSETypeAtOffset(IRType, 0, Ty, 0); |
Bill Wendling | 99aaae8 | 2010-10-18 23:51:38 +0000 | [diff] [blame] | 1806 | else |
Bill Wendling | bb465d7 | 2010-10-18 03:41:31 +0000 | [diff] [blame] | 1807 | // This is an MMX type. Treat it as such. |
| 1808 | ResType = llvm::Type::getX86_MMXTy(getVMContext()); |
Bill Wendling | bb465d7 | 2010-10-18 03:41:31 +0000 | [diff] [blame] | 1809 | |
Bill Wendling | 99aaae8 | 2010-10-18 23:51:38 +0000 | [diff] [blame] | 1810 | ++neededSSE; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1811 | break; |
| 1812 | } |
Bill Wendling | bb465d7 | 2010-10-18 03:41:31 +0000 | [diff] [blame] | 1813 | } |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1814 | |
Chris Lattner | 645406a | 2010-09-01 00:24:35 +0000 | [diff] [blame] | 1815 | const llvm::Type *HighPart = 0; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1816 | switch (Hi) { |
| 1817 | // Memory was handled previously, ComplexX87 and X87 should |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 1818 | // never occur as hi classes, and X87Up must be preceded by X87, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1819 | // which is passed in memory. |
| 1820 | case Memory: |
| 1821 | case X87: |
| 1822 | case ComplexX87: |
| 1823 | assert(0 && "Invalid classification for hi word."); |
| 1824 | break; |
| 1825 | |
| 1826 | case NoClass: break; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1827 | |
Chris Lattner | 645406a | 2010-09-01 00:24:35 +0000 | [diff] [blame] | 1828 | case Integer: |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1829 | ++neededInt; |
Chris Lattner | 49382de | 2010-07-28 22:44:07 +0000 | [diff] [blame] | 1830 | // Pick an 8-byte type based on the preferred type. |
Chris Lattner | 645406a | 2010-09-01 00:24:35 +0000 | [diff] [blame] | 1831 | HighPart = GetINTEGERTypeAtOffset(CGT.ConvertTypeRecursive(Ty), 8, Ty, 8); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1832 | |
Chris Lattner | 645406a | 2010-09-01 00:24:35 +0000 | [diff] [blame] | 1833 | if (Lo == NoClass) // Pass HighPart at offset 8 in memory. |
| 1834 | return ABIArgInfo::getDirect(HighPart, 8); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1835 | break; |
| 1836 | |
| 1837 | // X87Up generally doesn't occur here (long double is passed in |
| 1838 | // memory), except in situations involving unions. |
| 1839 | case X87Up: |
Chris Lattner | 645406a | 2010-09-01 00:24:35 +0000 | [diff] [blame] | 1840 | case SSE: |
| 1841 | HighPart = GetSSETypeAtOffset(CGT.ConvertTypeRecursive(Ty), 8, Ty, 8); |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1842 | |
Chris Lattner | 645406a | 2010-09-01 00:24:35 +0000 | [diff] [blame] | 1843 | if (Lo == NoClass) // Pass HighPart at offset 8 in memory. |
| 1844 | return ABIArgInfo::getDirect(HighPart, 8); |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1845 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1846 | ++neededSSE; |
| 1847 | break; |
| 1848 | |
| 1849 | // AMD64-ABI 3.2.3p3: Rule 4. If the class is SSEUP, the |
| 1850 | // eightbyte is passed in the upper half of the last used SSE |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1851 | // register. This only happens when 128-bit vectors are passed. |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1852 | case SSEUp: |
Chris Lattner | ab5722e | 2010-07-28 23:47:21 +0000 | [diff] [blame] | 1853 | assert(Lo == SSE && "Unexpected SSEUp classification"); |
Chris Lattner | 0f408f5 | 2010-07-29 04:56:46 +0000 | [diff] [blame] | 1854 | ResType = Get16ByteVectorType(Ty); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1855 | break; |
| 1856 | } |
| 1857 | |
Chris Lattner | 645406a | 2010-09-01 00:24:35 +0000 | [diff] [blame] | 1858 | // If a high part was specified, merge it together with the low part. It is |
| 1859 | // known to pass in the high eightbyte of the result. We do this by forming a |
| 1860 | // first class struct aggregate with the high and low part: {low, high} |
| 1861 | if (HighPart) |
Chris Lattner | 66e7b68 | 2010-09-01 00:50:20 +0000 | [diff] [blame] | 1862 | ResType = GetX86_64ByValArgumentPair(ResType, HighPart, getTargetData()); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1863 | |
Chris Lattner | eb518b4 | 2010-07-29 21:42:50 +0000 | [diff] [blame] | 1864 | return ABIArgInfo::getDirect(ResType); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1865 | } |
| 1866 | |
Chris Lattner | ee5dcd0 | 2010-07-29 02:31:05 +0000 | [diff] [blame] | 1867 | void X86_64ABIInfo::computeInfo(CGFunctionInfo &FI) const { |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1868 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 1869 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1870 | |
| 1871 | // Keep track of the number of assigned registers. |
Bill Wendling | 99aaae8 | 2010-10-18 23:51:38 +0000 | [diff] [blame] | 1872 | unsigned freeIntRegs = 6, freeSSERegs = 8; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1873 | |
| 1874 | // If the return value is indirect, then the hidden argument is consuming one |
| 1875 | // integer register. |
| 1876 | if (FI.getReturnInfo().isIndirect()) |
| 1877 | --freeIntRegs; |
| 1878 | |
| 1879 | // AMD64-ABI 3.2.3p3: Once arguments are classified, the registers |
| 1880 | // get assigned (in left-to-right order) for passing as follows... |
| 1881 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 1882 | it != ie; ++it) { |
Bill Wendling | 99aaae8 | 2010-10-18 23:51:38 +0000 | [diff] [blame] | 1883 | unsigned neededInt, neededSSE; |
| 1884 | it->info = classifyArgumentType(it->type, neededInt, neededSSE); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1885 | |
| 1886 | // AMD64-ABI 3.2.3p3: If there are no registers available for any |
| 1887 | // eightbyte of an argument, the whole argument is passed on the |
| 1888 | // stack. If registers have already been assigned for some |
| 1889 | // eightbytes of such an argument, the assignments get reverted. |
Bill Wendling | 99aaae8 | 2010-10-18 23:51:38 +0000 | [diff] [blame] | 1890 | if (freeIntRegs >= neededInt && freeSSERegs >= neededSSE) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1891 | freeIntRegs -= neededInt; |
| 1892 | freeSSERegs -= neededSSE; |
| 1893 | } else { |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 1894 | it->info = getIndirectResult(it->type); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1895 | } |
| 1896 | } |
| 1897 | } |
| 1898 | |
| 1899 | static llvm::Value *EmitVAArgFromMemory(llvm::Value *VAListAddr, |
| 1900 | QualType Ty, |
| 1901 | CodeGenFunction &CGF) { |
| 1902 | llvm::Value *overflow_arg_area_p = |
| 1903 | CGF.Builder.CreateStructGEP(VAListAddr, 2, "overflow_arg_area_p"); |
| 1904 | llvm::Value *overflow_arg_area = |
| 1905 | CGF.Builder.CreateLoad(overflow_arg_area_p, "overflow_arg_area"); |
| 1906 | |
| 1907 | // AMD64-ABI 3.5.7p5: Step 7. Align l->overflow_arg_area upwards to a 16 |
| 1908 | // byte boundary if alignment needed by type exceeds 8 byte boundary. |
| 1909 | uint64_t Align = CGF.getContext().getTypeAlign(Ty) / 8; |
| 1910 | if (Align > 8) { |
| 1911 | // Note that we follow the ABI & gcc here, even though the type |
| 1912 | // could in theory have an alignment greater than 16. This case |
| 1913 | // shouldn't ever matter in practice. |
| 1914 | |
| 1915 | // overflow_arg_area = (overflow_arg_area + 15) & ~15; |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1916 | llvm::Value *Offset = |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 1917 | llvm::ConstantInt::get(CGF.Int32Ty, 15); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1918 | overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset); |
| 1919 | llvm::Value *AsInt = CGF.Builder.CreatePtrToInt(overflow_arg_area, |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 1920 | CGF.Int64Ty); |
| 1921 | llvm::Value *Mask = llvm::ConstantInt::get(CGF.Int64Ty, ~15LL); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1922 | overflow_arg_area = |
| 1923 | CGF.Builder.CreateIntToPtr(CGF.Builder.CreateAnd(AsInt, Mask), |
| 1924 | overflow_arg_area->getType(), |
| 1925 | "overflow_arg_area.align"); |
| 1926 | } |
| 1927 | |
| 1928 | // AMD64-ABI 3.5.7p5: Step 8. Fetch type from l->overflow_arg_area. |
| 1929 | const llvm::Type *LTy = CGF.ConvertTypeForMem(Ty); |
| 1930 | llvm::Value *Res = |
| 1931 | CGF.Builder.CreateBitCast(overflow_arg_area, |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1932 | llvm::PointerType::getUnqual(LTy)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1933 | |
| 1934 | // AMD64-ABI 3.5.7p5: Step 9. Set l->overflow_arg_area to: |
| 1935 | // l->overflow_arg_area + sizeof(type). |
| 1936 | // AMD64-ABI 3.5.7p5: Step 10. Align l->overflow_arg_area upwards to |
| 1937 | // an 8 byte boundary. |
| 1938 | |
| 1939 | uint64_t SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8; |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1940 | llvm::Value *Offset = |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 1941 | llvm::ConstantInt::get(CGF.Int32Ty, (SizeInBytes + 7) & ~7); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1942 | overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset, |
| 1943 | "overflow_arg_area.next"); |
| 1944 | CGF.Builder.CreateStore(overflow_arg_area, overflow_arg_area_p); |
| 1945 | |
| 1946 | // AMD64-ABI 3.5.7p5: Step 11. Return the fetched type. |
| 1947 | return Res; |
| 1948 | } |
| 1949 | |
| 1950 | llvm::Value *X86_64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 1951 | CodeGenFunction &CGF) const { |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1952 | llvm::LLVMContext &VMContext = CGF.getLLVMContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1953 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1954 | // Assume that va_list type is correct; should be pointer to LLVM type: |
| 1955 | // struct { |
| 1956 | // i32 gp_offset; |
| 1957 | // i32 fp_offset; |
| 1958 | // i8* overflow_arg_area; |
| 1959 | // i8* reg_save_area; |
| 1960 | // }; |
Bill Wendling | 99aaae8 | 2010-10-18 23:51:38 +0000 | [diff] [blame] | 1961 | unsigned neededInt, neededSSE; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 1962 | |
Chris Lattner | a14db75 | 2010-03-11 18:19:55 +0000 | [diff] [blame] | 1963 | Ty = CGF.getContext().getCanonicalType(Ty); |
Bill Wendling | 99aaae8 | 2010-10-18 23:51:38 +0000 | [diff] [blame] | 1964 | ABIArgInfo AI = classifyArgumentType(Ty, neededInt, neededSSE); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1965 | |
| 1966 | // AMD64-ABI 3.5.7p5: Step 1. Determine whether type may be passed |
| 1967 | // in the registers. If not go to step 7. |
| 1968 | if (!neededInt && !neededSSE) |
| 1969 | return EmitVAArgFromMemory(VAListAddr, Ty, CGF); |
| 1970 | |
| 1971 | // AMD64-ABI 3.5.7p5: Step 2. Compute num_gp to hold the number of |
| 1972 | // general purpose registers needed to pass type and num_fp to hold |
| 1973 | // the number of floating point registers needed. |
| 1974 | |
| 1975 | // AMD64-ABI 3.5.7p5: Step 3. Verify whether arguments fit into |
| 1976 | // registers. In the case: l->gp_offset > 48 - num_gp * 8 or |
| 1977 | // l->fp_offset > 304 - num_fp * 16 go to step 7. |
| 1978 | // |
| 1979 | // NOTE: 304 is a typo, there are (6 * 8 + 8 * 16) = 176 bytes of |
| 1980 | // register save space). |
| 1981 | |
| 1982 | llvm::Value *InRegs = 0; |
| 1983 | llvm::Value *gp_offset_p = 0, *gp_offset = 0; |
| 1984 | llvm::Value *fp_offset_p = 0, *fp_offset = 0; |
| 1985 | if (neededInt) { |
| 1986 | gp_offset_p = CGF.Builder.CreateStructGEP(VAListAddr, 0, "gp_offset_p"); |
| 1987 | gp_offset = CGF.Builder.CreateLoad(gp_offset_p, "gp_offset"); |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1988 | InRegs = llvm::ConstantInt::get(CGF.Int32Ty, 48 - neededInt * 8); |
| 1989 | InRegs = CGF.Builder.CreateICmpULE(gp_offset, InRegs, "fits_in_gp"); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1990 | } |
| 1991 | |
| 1992 | if (neededSSE) { |
| 1993 | fp_offset_p = CGF.Builder.CreateStructGEP(VAListAddr, 1, "fp_offset_p"); |
| 1994 | fp_offset = CGF.Builder.CreateLoad(fp_offset_p, "fp_offset"); |
| 1995 | llvm::Value *FitsInFP = |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 1996 | llvm::ConstantInt::get(CGF.Int32Ty, 176 - neededSSE * 16); |
| 1997 | FitsInFP = CGF.Builder.CreateICmpULE(fp_offset, FitsInFP, "fits_in_fp"); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1998 | InRegs = InRegs ? CGF.Builder.CreateAnd(InRegs, FitsInFP) : FitsInFP; |
| 1999 | } |
| 2000 | |
| 2001 | llvm::BasicBlock *InRegBlock = CGF.createBasicBlock("vaarg.in_reg"); |
| 2002 | llvm::BasicBlock *InMemBlock = CGF.createBasicBlock("vaarg.in_mem"); |
| 2003 | llvm::BasicBlock *ContBlock = CGF.createBasicBlock("vaarg.end"); |
| 2004 | CGF.Builder.CreateCondBr(InRegs, InRegBlock, InMemBlock); |
| 2005 | |
| 2006 | // Emit code to load the value if it was passed in registers. |
| 2007 | |
| 2008 | CGF.EmitBlock(InRegBlock); |
| 2009 | |
| 2010 | // AMD64-ABI 3.5.7p5: Step 4. Fetch type from l->reg_save_area with |
| 2011 | // an offset of l->gp_offset and/or l->fp_offset. This may require |
| 2012 | // copying to a temporary location in case the parameter is passed |
| 2013 | // in different register classes or requires an alignment greater |
| 2014 | // than 8 for general purpose registers and 16 for XMM registers. |
| 2015 | // |
| 2016 | // FIXME: This really results in shameful code when we end up needing to |
| 2017 | // collect arguments from different places; often what should result in a |
| 2018 | // simple assembling of a structure from scattered addresses has many more |
| 2019 | // loads than necessary. Can we clean this up? |
| 2020 | const llvm::Type *LTy = CGF.ConvertTypeForMem(Ty); |
| 2021 | llvm::Value *RegAddr = |
| 2022 | CGF.Builder.CreateLoad(CGF.Builder.CreateStructGEP(VAListAddr, 3), |
| 2023 | "reg_save_area"); |
| 2024 | if (neededInt && neededSSE) { |
| 2025 | // FIXME: Cleanup. |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2026 | assert(AI.isDirect() && "Unexpected ABI info for mixed regs"); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2027 | const llvm::StructType *ST = cast<llvm::StructType>(AI.getCoerceToType()); |
| 2028 | llvm::Value *Tmp = CGF.CreateTempAlloca(ST); |
| 2029 | assert(ST->getNumElements() == 2 && "Unexpected ABI info for mixed regs"); |
| 2030 | const llvm::Type *TyLo = ST->getElementType(0); |
| 2031 | const llvm::Type *TyHi = ST->getElementType(1); |
Chris Lattner | a8b7a7d | 2010-08-26 06:28:35 +0000 | [diff] [blame] | 2032 | assert((TyLo->isFPOrFPVectorTy() ^ TyHi->isFPOrFPVectorTy()) && |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2033 | "Unexpected ABI info for mixed regs"); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 2034 | const llvm::Type *PTyLo = llvm::PointerType::getUnqual(TyLo); |
| 2035 | const llvm::Type *PTyHi = llvm::PointerType::getUnqual(TyHi); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2036 | llvm::Value *GPAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset); |
| 2037 | llvm::Value *FPAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset); |
Duncan Sands | f177d9d | 2010-02-15 16:14:01 +0000 | [diff] [blame] | 2038 | llvm::Value *RegLoAddr = TyLo->isFloatingPointTy() ? FPAddr : GPAddr; |
| 2039 | llvm::Value *RegHiAddr = TyLo->isFloatingPointTy() ? GPAddr : FPAddr; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2040 | llvm::Value *V = |
| 2041 | CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegLoAddr, PTyLo)); |
| 2042 | CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0)); |
| 2043 | V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegHiAddr, PTyHi)); |
| 2044 | CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1)); |
| 2045 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 2046 | RegAddr = CGF.Builder.CreateBitCast(Tmp, |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 2047 | llvm::PointerType::getUnqual(LTy)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2048 | } else if (neededInt) { |
| 2049 | RegAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset); |
| 2050 | RegAddr = CGF.Builder.CreateBitCast(RegAddr, |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 2051 | llvm::PointerType::getUnqual(LTy)); |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2052 | } else if (neededSSE == 1) { |
| 2053 | RegAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset); |
| 2054 | RegAddr = CGF.Builder.CreateBitCast(RegAddr, |
| 2055 | llvm::PointerType::getUnqual(LTy)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2056 | } else { |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2057 | assert(neededSSE == 2 && "Invalid number of needed registers!"); |
| 2058 | // SSE registers are spaced 16 bytes apart in the register save |
| 2059 | // area, we need to collect the two eightbytes together. |
| 2060 | llvm::Value *RegAddrLo = CGF.Builder.CreateGEP(RegAddr, fp_offset); |
Chris Lattner | 1090a9b | 2010-06-28 21:43:59 +0000 | [diff] [blame] | 2061 | llvm::Value *RegAddrHi = CGF.Builder.CreateConstGEP1_32(RegAddrLo, 16); |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2062 | const llvm::Type *DoubleTy = llvm::Type::getDoubleTy(VMContext); |
| 2063 | const llvm::Type *DblPtrTy = |
| 2064 | llvm::PointerType::getUnqual(DoubleTy); |
| 2065 | const llvm::StructType *ST = llvm::StructType::get(VMContext, DoubleTy, |
| 2066 | DoubleTy, NULL); |
| 2067 | llvm::Value *V, *Tmp = CGF.CreateTempAlloca(ST); |
| 2068 | V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegAddrLo, |
| 2069 | DblPtrTy)); |
| 2070 | CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0)); |
| 2071 | V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegAddrHi, |
| 2072 | DblPtrTy)); |
| 2073 | CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1)); |
| 2074 | RegAddr = CGF.Builder.CreateBitCast(Tmp, |
| 2075 | llvm::PointerType::getUnqual(LTy)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2076 | } |
| 2077 | |
| 2078 | // AMD64-ABI 3.5.7p5: Step 5. Set: |
| 2079 | // l->gp_offset = l->gp_offset + num_gp * 8 |
| 2080 | // l->fp_offset = l->fp_offset + num_fp * 16. |
| 2081 | if (neededInt) { |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 2082 | llvm::Value *Offset = llvm::ConstantInt::get(CGF.Int32Ty, neededInt * 8); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2083 | CGF.Builder.CreateStore(CGF.Builder.CreateAdd(gp_offset, Offset), |
| 2084 | gp_offset_p); |
| 2085 | } |
| 2086 | if (neededSSE) { |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 2087 | llvm::Value *Offset = llvm::ConstantInt::get(CGF.Int32Ty, neededSSE * 16); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2088 | CGF.Builder.CreateStore(CGF.Builder.CreateAdd(fp_offset, Offset), |
| 2089 | fp_offset_p); |
| 2090 | } |
| 2091 | CGF.EmitBranch(ContBlock); |
| 2092 | |
| 2093 | // Emit code to load the value if it was passed in memory. |
| 2094 | |
| 2095 | CGF.EmitBlock(InMemBlock); |
| 2096 | llvm::Value *MemAddr = EmitVAArgFromMemory(VAListAddr, Ty, CGF); |
| 2097 | |
| 2098 | // Return the appropriate result. |
| 2099 | |
| 2100 | CGF.EmitBlock(ContBlock); |
Jay Foad | bbf3bac | 2011-03-30 11:28:58 +0000 | [diff] [blame] | 2101 | llvm::PHINode *ResAddr = CGF.Builder.CreatePHI(RegAddr->getType(), 2, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2102 | "vaarg.addr"); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2103 | ResAddr->addIncoming(RegAddr, InRegBlock); |
| 2104 | ResAddr->addIncoming(MemAddr, InMemBlock); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2105 | return ResAddr; |
| 2106 | } |
| 2107 | |
NAKAMURA Takumi | a757322 | 2011-01-17 22:56:31 +0000 | [diff] [blame] | 2108 | ABIArgInfo WinX86_64ABIInfo::classify(QualType Ty) const { |
| 2109 | |
| 2110 | if (Ty->isVoidType()) |
| 2111 | return ABIArgInfo::getIgnore(); |
| 2112 | |
| 2113 | if (const EnumType *EnumTy = Ty->getAs<EnumType>()) |
| 2114 | Ty = EnumTy->getDecl()->getIntegerType(); |
| 2115 | |
| 2116 | uint64_t Size = getContext().getTypeSize(Ty); |
| 2117 | |
| 2118 | if (const RecordType *RT = Ty->getAs<RecordType>()) { |
NAKAMURA Takumi | ff8be0e | 2011-01-19 00:11:33 +0000 | [diff] [blame] | 2119 | if (hasNonTrivialDestructorOrCopyConstructor(RT) || |
| 2120 | RT->getDecl()->hasFlexibleArrayMember()) |
NAKAMURA Takumi | a757322 | 2011-01-17 22:56:31 +0000 | [diff] [blame] | 2121 | return ABIArgInfo::getIndirect(0, /*ByVal=*/false); |
| 2122 | |
NAKAMURA Takumi | 6f17433 | 2011-02-22 03:56:57 +0000 | [diff] [blame] | 2123 | // FIXME: mingw-w64-gcc emits 128-bit struct as i128 |
| 2124 | if (Size == 128 && |
| 2125 | getContext().Target.getTriple().getOS() == llvm::Triple::MinGW32) |
| 2126 | return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), |
| 2127 | Size)); |
| 2128 | |
| 2129 | // MS x64 ABI requirement: "Any argument that doesn't fit in 8 bytes, or is |
| 2130 | // not 1, 2, 4, or 8 bytes, must be passed by reference." |
| 2131 | if (Size <= 64 && |
NAKAMURA Takumi | ff8be0e | 2011-01-19 00:11:33 +0000 | [diff] [blame] | 2132 | (Size & (Size - 1)) == 0) |
NAKAMURA Takumi | a757322 | 2011-01-17 22:56:31 +0000 | [diff] [blame] | 2133 | return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), |
| 2134 | Size)); |
| 2135 | |
| 2136 | return ABIArgInfo::getIndirect(0, /*ByVal=*/false); |
| 2137 | } |
| 2138 | |
| 2139 | if (Ty->isPromotableIntegerType()) |
| 2140 | return ABIArgInfo::getExtend(); |
| 2141 | |
| 2142 | return ABIArgInfo::getDirect(); |
| 2143 | } |
| 2144 | |
| 2145 | void WinX86_64ABIInfo::computeInfo(CGFunctionInfo &FI) const { |
| 2146 | |
| 2147 | QualType RetTy = FI.getReturnType(); |
| 2148 | FI.getReturnInfo() = classify(RetTy); |
| 2149 | |
NAKAMURA Takumi | a757322 | 2011-01-17 22:56:31 +0000 | [diff] [blame] | 2150 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 2151 | it != ie; ++it) |
| 2152 | it->info = classify(it->type); |
| 2153 | } |
| 2154 | |
Chris Lattner | f13721d | 2010-08-31 16:44:54 +0000 | [diff] [blame] | 2155 | llvm::Value *WinX86_64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 2156 | CodeGenFunction &CGF) const { |
| 2157 | const llvm::Type *BP = llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); |
| 2158 | const llvm::Type *BPP = llvm::PointerType::getUnqual(BP); |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2159 | |
Chris Lattner | f13721d | 2010-08-31 16:44:54 +0000 | [diff] [blame] | 2160 | CGBuilderTy &Builder = CGF.Builder; |
| 2161 | llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP, |
| 2162 | "ap"); |
| 2163 | llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur"); |
| 2164 | llvm::Type *PTy = |
| 2165 | llvm::PointerType::getUnqual(CGF.ConvertType(Ty)); |
| 2166 | llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy); |
| 2167 | |
| 2168 | uint64_t Offset = |
| 2169 | llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 8); |
| 2170 | llvm::Value *NextAddr = |
| 2171 | Builder.CreateGEP(Addr, llvm::ConstantInt::get(CGF.Int32Ty, Offset), |
| 2172 | "ap.next"); |
| 2173 | Builder.CreateStore(NextAddr, VAListAddrAsBPP); |
| 2174 | |
| 2175 | return AddrTyped; |
| 2176 | } |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2177 | |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 2178 | // PowerPC-32 |
| 2179 | |
| 2180 | namespace { |
| 2181 | class PPC32TargetCodeGenInfo : public DefaultTargetCodeGenInfo { |
| 2182 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 2183 | PPC32TargetCodeGenInfo(CodeGenTypes &CGT) : DefaultTargetCodeGenInfo(CGT) {} |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 2184 | |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 2185 | int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const { |
| 2186 | // This is recovered from gcc output. |
| 2187 | return 1; // r1 is the dedicated stack pointer |
| 2188 | } |
| 2189 | |
| 2190 | bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF, |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 2191 | llvm::Value *Address) const; |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 2192 | }; |
| 2193 | |
| 2194 | } |
| 2195 | |
| 2196 | bool |
| 2197 | PPC32TargetCodeGenInfo::initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF, |
| 2198 | llvm::Value *Address) const { |
| 2199 | // This is calculated from the LLVM and GCC tables and verified |
| 2200 | // against gcc output. AFAIK all ABIs use the same encoding. |
| 2201 | |
| 2202 | CodeGen::CGBuilderTy &Builder = CGF.Builder; |
| 2203 | llvm::LLVMContext &Context = CGF.getLLVMContext(); |
| 2204 | |
| 2205 | const llvm::IntegerType *i8 = llvm::Type::getInt8Ty(Context); |
| 2206 | llvm::Value *Four8 = llvm::ConstantInt::get(i8, 4); |
| 2207 | llvm::Value *Eight8 = llvm::ConstantInt::get(i8, 8); |
| 2208 | llvm::Value *Sixteen8 = llvm::ConstantInt::get(i8, 16); |
| 2209 | |
| 2210 | // 0-31: r0-31, the 4-byte general-purpose registers |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2211 | AssignToArrayRange(Builder, Address, Four8, 0, 31); |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 2212 | |
| 2213 | // 32-63: fp0-31, the 8-byte floating-point registers |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2214 | AssignToArrayRange(Builder, Address, Eight8, 32, 63); |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 2215 | |
| 2216 | // 64-76 are various 4-byte special-purpose registers: |
| 2217 | // 64: mq |
| 2218 | // 65: lr |
| 2219 | // 66: ctr |
| 2220 | // 67: ap |
| 2221 | // 68-75 cr0-7 |
| 2222 | // 76: xer |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2223 | AssignToArrayRange(Builder, Address, Four8, 64, 76); |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 2224 | |
| 2225 | // 77-108: v0-31, the 16-byte vector registers |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2226 | AssignToArrayRange(Builder, Address, Sixteen8, 77, 108); |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 2227 | |
| 2228 | // 109: vrsave |
| 2229 | // 110: vscr |
| 2230 | // 111: spe_acc |
| 2231 | // 112: spefscr |
| 2232 | // 113: sfp |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2233 | AssignToArrayRange(Builder, Address, Four8, 109, 113); |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 2234 | |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 2235 | return false; |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 2236 | } |
| 2237 | |
| 2238 | |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2239 | //===----------------------------------------------------------------------===// |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 2240 | // ARM ABI Implementation |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2241 | //===----------------------------------------------------------------------===// |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 2242 | |
| 2243 | namespace { |
| 2244 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2245 | class ARMABIInfo : public ABIInfo { |
Daniel Dunbar | 5e7bace | 2009-09-12 01:00:39 +0000 | [diff] [blame] | 2246 | public: |
| 2247 | enum ABIKind { |
| 2248 | APCS = 0, |
| 2249 | AAPCS = 1, |
| 2250 | AAPCS_VFP |
| 2251 | }; |
| 2252 | |
| 2253 | private: |
| 2254 | ABIKind Kind; |
| 2255 | |
| 2256 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 2257 | ARMABIInfo(CodeGenTypes &CGT, ABIKind _Kind) : ABIInfo(CGT), Kind(_Kind) {} |
Daniel Dunbar | 5e7bace | 2009-09-12 01:00:39 +0000 | [diff] [blame] | 2258 | |
| 2259 | private: |
| 2260 | ABIKind getABIKind() const { return Kind; } |
| 2261 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2262 | ABIArgInfo classifyReturnType(QualType RetTy) const; |
| 2263 | ABIArgInfo classifyArgumentType(QualType RetTy) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2264 | |
Chris Lattner | ee5dcd0 | 2010-07-29 02:31:05 +0000 | [diff] [blame] | 2265 | virtual void computeInfo(CGFunctionInfo &FI) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2266 | |
| 2267 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 2268 | CodeGenFunction &CGF) const; |
| 2269 | }; |
| 2270 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 2271 | class ARMTargetCodeGenInfo : public TargetCodeGenInfo { |
| 2272 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 2273 | ARMTargetCodeGenInfo(CodeGenTypes &CGT, ARMABIInfo::ABIKind K) |
| 2274 | :TargetCodeGenInfo(new ARMABIInfo(CGT, K)) {} |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 2275 | |
| 2276 | int getDwarfEHStackPointer(CodeGen::CodeGenModule &M) const { |
| 2277 | return 13; |
| 2278 | } |
Roman Divacky | 09345d1 | 2011-05-18 19:36:54 +0000 | [diff] [blame] | 2279 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2280 | llvm::StringRef getARCRetainAutoreleasedReturnValueMarker() const { |
| 2281 | return "mov\tr7, r7\t\t@ marker for objc_retainAutoreleaseReturnValue"; |
| 2282 | } |
| 2283 | |
Roman Divacky | 09345d1 | 2011-05-18 19:36:54 +0000 | [diff] [blame] | 2284 | bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF, |
| 2285 | llvm::Value *Address) const { |
| 2286 | CodeGen::CGBuilderTy &Builder = CGF.Builder; |
| 2287 | llvm::LLVMContext &Context = CGF.getLLVMContext(); |
| 2288 | |
| 2289 | const llvm::IntegerType *i8 = llvm::Type::getInt8Ty(Context); |
| 2290 | llvm::Value *Four8 = llvm::ConstantInt::get(i8, 4); |
| 2291 | |
| 2292 | // 0-15 are the 16 integer registers. |
| 2293 | AssignToArrayRange(Builder, Address, Four8, 0, 15); |
| 2294 | |
| 2295 | return false; |
| 2296 | } |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 2297 | }; |
| 2298 | |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 2299 | } |
| 2300 | |
Chris Lattner | ee5dcd0 | 2010-07-29 02:31:05 +0000 | [diff] [blame] | 2301 | void ARMABIInfo::computeInfo(CGFunctionInfo &FI) const { |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2302 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2303 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2304 | it != ie; ++it) |
| 2305 | it->info = classifyArgumentType(it->type); |
Daniel Dunbar | 5e7bace | 2009-09-12 01:00:39 +0000 | [diff] [blame] | 2306 | |
Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 2307 | // Always honor user-specified calling convention. |
| 2308 | if (FI.getCallingConvention() != llvm::CallingConv::C) |
| 2309 | return; |
| 2310 | |
| 2311 | // Calling convention as default by an ABI. |
Rafael Espindola | 25117ab | 2010-06-16 16:13:39 +0000 | [diff] [blame] | 2312 | llvm::CallingConv::ID DefaultCC; |
Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 2313 | llvm::StringRef Env = getContext().Target.getTriple().getEnvironmentName(); |
| 2314 | if (Env == "gnueabi" || Env == "eabi") |
Rafael Espindola | 25117ab | 2010-06-16 16:13:39 +0000 | [diff] [blame] | 2315 | DefaultCC = llvm::CallingConv::ARM_AAPCS; |
Rafael Espindola | 1ed1a59 | 2010-06-16 19:01:17 +0000 | [diff] [blame] | 2316 | else |
| 2317 | DefaultCC = llvm::CallingConv::ARM_APCS; |
Rafael Espindola | 25117ab | 2010-06-16 16:13:39 +0000 | [diff] [blame] | 2318 | |
Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 2319 | // If user did not ask for specific calling convention explicitly (e.g. via |
| 2320 | // pcs attribute), set effective calling convention if it's different than ABI |
| 2321 | // default. |
Daniel Dunbar | 5e7bace | 2009-09-12 01:00:39 +0000 | [diff] [blame] | 2322 | switch (getABIKind()) { |
| 2323 | case APCS: |
Rafael Espindola | 25117ab | 2010-06-16 16:13:39 +0000 | [diff] [blame] | 2324 | if (DefaultCC != llvm::CallingConv::ARM_APCS) |
| 2325 | FI.setEffectiveCallingConvention(llvm::CallingConv::ARM_APCS); |
Daniel Dunbar | 5e7bace | 2009-09-12 01:00:39 +0000 | [diff] [blame] | 2326 | break; |
Daniel Dunbar | 5e7bace | 2009-09-12 01:00:39 +0000 | [diff] [blame] | 2327 | case AAPCS: |
Rafael Espindola | 25117ab | 2010-06-16 16:13:39 +0000 | [diff] [blame] | 2328 | if (DefaultCC != llvm::CallingConv::ARM_AAPCS) |
| 2329 | FI.setEffectiveCallingConvention(llvm::CallingConv::ARM_AAPCS); |
Daniel Dunbar | 5e7bace | 2009-09-12 01:00:39 +0000 | [diff] [blame] | 2330 | break; |
Daniel Dunbar | 5e7bace | 2009-09-12 01:00:39 +0000 | [diff] [blame] | 2331 | case AAPCS_VFP: |
Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 2332 | if (DefaultCC != llvm::CallingConv::ARM_AAPCS_VFP) |
| 2333 | FI.setEffectiveCallingConvention(llvm::CallingConv::ARM_AAPCS_VFP); |
Daniel Dunbar | 5e7bace | 2009-09-12 01:00:39 +0000 | [diff] [blame] | 2334 | break; |
| 2335 | } |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2336 | } |
| 2337 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2338 | ABIArgInfo ARMABIInfo::classifyArgumentType(QualType Ty) const { |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 2339 | if (!isAggregateTypeForABI(Ty)) { |
Douglas Gregor | aa74a1e | 2010-02-02 20:10:50 +0000 | [diff] [blame] | 2340 | // Treat an enum type as its underlying type. |
| 2341 | if (const EnumType *EnumTy = Ty->getAs<EnumType>()) |
| 2342 | Ty = EnumTy->getDecl()->getIntegerType(); |
| 2343 | |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 2344 | return (Ty->isPromotableIntegerType() ? |
| 2345 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Douglas Gregor | aa74a1e | 2010-02-02 20:10:50 +0000 | [diff] [blame] | 2346 | } |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2347 | |
Daniel Dunbar | 4202557 | 2009-09-14 21:54:03 +0000 | [diff] [blame] | 2348 | // Ignore empty records. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2349 | if (isEmptyRecord(getContext(), Ty, true)) |
Daniel Dunbar | 4202557 | 2009-09-14 21:54:03 +0000 | [diff] [blame] | 2350 | return ABIArgInfo::getIgnore(); |
| 2351 | |
Rafael Espindola | 0eb1d97 | 2010-06-08 02:42:08 +0000 | [diff] [blame] | 2352 | // Structures with either a non-trivial destructor or a non-trivial |
| 2353 | // copy constructor are always indirect. |
| 2354 | if (isRecordWithNonTrivialDestructorOrCopyConstructor(Ty)) |
| 2355 | return ABIArgInfo::getIndirect(0, /*ByVal=*/false); |
| 2356 | |
Daniel Dunbar | 8aa87c7 | 2010-09-23 01:54:28 +0000 | [diff] [blame] | 2357 | // Otherwise, pass by coercing to a structure of the appropriate size. |
| 2358 | // |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2359 | // FIXME: This doesn't handle alignment > 64 bits. |
| 2360 | const llvm::Type* ElemTy; |
| 2361 | unsigned SizeRegs; |
Stuart Hastings | a1dadc9 | 2011-04-28 21:35:59 +0000 | [diff] [blame] | 2362 | if (getContext().getTypeSizeInChars(Ty) <= CharUnits::fromQuantity(64)) { |
Eric Christopher | ad27eea | 2011-04-26 01:02:04 +0000 | [diff] [blame] | 2363 | ElemTy = llvm::Type::getInt32Ty(getVMContext()); |
| 2364 | SizeRegs = (getContext().getTypeSize(Ty) + 31) / 32; |
Stuart Hastings | b7f62d0 | 2011-04-28 18:16:06 +0000 | [diff] [blame] | 2365 | } else if (getABIKind() == ARMABIInfo::APCS) { |
Stuart Hastings | 67d097e | 2011-04-27 17:24:02 +0000 | [diff] [blame] | 2366 | // Initial ARM ByVal support is APCS-only. |
| 2367 | return ABIArgInfo::getIndirect(0, /*ByVal=*/true); |
| 2368 | } else { |
| 2369 | // FIXME: This is kind of nasty... but there isn't much choice |
| 2370 | // because most of the ARM calling conventions don't yet support |
| 2371 | // byval. |
| 2372 | ElemTy = llvm::Type::getInt64Ty(getVMContext()); |
| 2373 | SizeRegs = (getContext().getTypeSize(Ty) + 63) / 64; |
Stuart Hastings | 67d097e | 2011-04-27 17:24:02 +0000 | [diff] [blame] | 2374 | } |
Stuart Hastings | b7f62d0 | 2011-04-28 18:16:06 +0000 | [diff] [blame] | 2375 | |
Stuart Hastings | ea971e9 | 2011-04-28 19:24:47 +0000 | [diff] [blame] | 2376 | const llvm::Type *STy = |
| 2377 | llvm::StructType::get(getVMContext(), |
| 2378 | llvm::ArrayType::get(ElemTy, SizeRegs), NULL, NULL); |
Stuart Hastings | b7f62d0 | 2011-04-28 18:16:06 +0000 | [diff] [blame] | 2379 | return ABIArgInfo::getDirect(STy); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2380 | } |
| 2381 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2382 | static bool isIntegerLikeType(QualType Ty, ASTContext &Context, |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2383 | llvm::LLVMContext &VMContext) { |
| 2384 | // APCS, C Language Calling Conventions, Non-Simple Return Values: A structure |
| 2385 | // is called integer-like if its size is less than or equal to one word, and |
| 2386 | // the offset of each of its addressable sub-fields is zero. |
| 2387 | |
| 2388 | uint64_t Size = Context.getTypeSize(Ty); |
| 2389 | |
| 2390 | // Check that the type fits in a word. |
| 2391 | if (Size > 32) |
| 2392 | return false; |
| 2393 | |
| 2394 | // FIXME: Handle vector types! |
| 2395 | if (Ty->isVectorType()) |
| 2396 | return false; |
| 2397 | |
Daniel Dunbar | b0d5819 | 2009-09-14 02:20:34 +0000 | [diff] [blame] | 2398 | // Float types are never treated as "integer like". |
| 2399 | if (Ty->isRealFloatingType()) |
| 2400 | return false; |
| 2401 | |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2402 | // If this is a builtin or pointer type then it is ok. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2403 | if (Ty->getAs<BuiltinType>() || Ty->isPointerType()) |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2404 | return true; |
| 2405 | |
Daniel Dunbar | 4581581 | 2010-02-01 23:31:26 +0000 | [diff] [blame] | 2406 | // Small complex integer types are "integer like". |
| 2407 | if (const ComplexType *CT = Ty->getAs<ComplexType>()) |
| 2408 | return isIntegerLikeType(CT->getElementType(), Context, VMContext); |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2409 | |
| 2410 | // Single element and zero sized arrays should be allowed, by the definition |
| 2411 | // above, but they are not. |
| 2412 | |
| 2413 | // Otherwise, it must be a record type. |
| 2414 | const RecordType *RT = Ty->getAs<RecordType>(); |
| 2415 | if (!RT) return false; |
| 2416 | |
| 2417 | // Ignore records with flexible arrays. |
| 2418 | const RecordDecl *RD = RT->getDecl(); |
| 2419 | if (RD->hasFlexibleArrayMember()) |
| 2420 | return false; |
| 2421 | |
| 2422 | // Check that all sub-fields are at offset 0, and are themselves "integer |
| 2423 | // like". |
| 2424 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 2425 | |
| 2426 | bool HadField = false; |
| 2427 | unsigned idx = 0; |
| 2428 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 2429 | i != e; ++i, ++idx) { |
| 2430 | const FieldDecl *FD = *i; |
| 2431 | |
Daniel Dunbar | 679855a | 2010-01-29 03:22:29 +0000 | [diff] [blame] | 2432 | // Bit-fields are not addressable, we only need to verify they are "integer |
| 2433 | // like". We still have to disallow a subsequent non-bitfield, for example: |
| 2434 | // struct { int : 0; int x } |
| 2435 | // is non-integer like according to gcc. |
| 2436 | if (FD->isBitField()) { |
| 2437 | if (!RD->isUnion()) |
| 2438 | HadField = true; |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2439 | |
Daniel Dunbar | 679855a | 2010-01-29 03:22:29 +0000 | [diff] [blame] | 2440 | if (!isIntegerLikeType(FD->getType(), Context, VMContext)) |
| 2441 | return false; |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2442 | |
Daniel Dunbar | 679855a | 2010-01-29 03:22:29 +0000 | [diff] [blame] | 2443 | continue; |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2444 | } |
| 2445 | |
Daniel Dunbar | 679855a | 2010-01-29 03:22:29 +0000 | [diff] [blame] | 2446 | // Check if this field is at offset 0. |
| 2447 | if (Layout.getFieldOffset(idx) != 0) |
| 2448 | return false; |
| 2449 | |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2450 | if (!isIntegerLikeType(FD->getType(), Context, VMContext)) |
| 2451 | return false; |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 2452 | |
Daniel Dunbar | 679855a | 2010-01-29 03:22:29 +0000 | [diff] [blame] | 2453 | // Only allow at most one field in a structure. This doesn't match the |
| 2454 | // wording above, but follows gcc in situations with a field following an |
| 2455 | // empty structure. |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2456 | if (!RD->isUnion()) { |
| 2457 | if (HadField) |
| 2458 | return false; |
| 2459 | |
| 2460 | HadField = true; |
| 2461 | } |
| 2462 | } |
| 2463 | |
| 2464 | return true; |
| 2465 | } |
| 2466 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2467 | ABIArgInfo ARMABIInfo::classifyReturnType(QualType RetTy) const { |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2468 | if (RetTy->isVoidType()) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2469 | return ABIArgInfo::getIgnore(); |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2470 | |
Daniel Dunbar | f554b1c | 2010-09-23 01:54:32 +0000 | [diff] [blame] | 2471 | // Large vector types should be returned via memory. |
| 2472 | if (RetTy->isVectorType() && getContext().getTypeSize(RetTy) > 128) |
| 2473 | return ABIArgInfo::getIndirect(0); |
| 2474 | |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 2475 | if (!isAggregateTypeForABI(RetTy)) { |
Douglas Gregor | aa74a1e | 2010-02-02 20:10:50 +0000 | [diff] [blame] | 2476 | // Treat an enum type as its underlying type. |
| 2477 | if (const EnumType *EnumTy = RetTy->getAs<EnumType>()) |
| 2478 | RetTy = EnumTy->getDecl()->getIntegerType(); |
| 2479 | |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 2480 | return (RetTy->isPromotableIntegerType() ? |
| 2481 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Douglas Gregor | aa74a1e | 2010-02-02 20:10:50 +0000 | [diff] [blame] | 2482 | } |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2483 | |
Rafael Espindola | 0eb1d97 | 2010-06-08 02:42:08 +0000 | [diff] [blame] | 2484 | // Structures with either a non-trivial destructor or a non-trivial |
| 2485 | // copy constructor are always indirect. |
| 2486 | if (isRecordWithNonTrivialDestructorOrCopyConstructor(RetTy)) |
| 2487 | return ABIArgInfo::getIndirect(0, /*ByVal=*/false); |
| 2488 | |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2489 | // Are we following APCS? |
| 2490 | if (getABIKind() == APCS) { |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2491 | if (isEmptyRecord(getContext(), RetTy, false)) |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2492 | return ABIArgInfo::getIgnore(); |
| 2493 | |
Daniel Dunbar | 4cc753f | 2010-02-01 23:31:19 +0000 | [diff] [blame] | 2494 | // Complex types are all returned as packed integers. |
| 2495 | // |
| 2496 | // FIXME: Consider using 2 x vector types if the back end handles them |
| 2497 | // correctly. |
| 2498 | if (RetTy->isAnyComplexType()) |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2499 | return ABIArgInfo::getDirect(llvm::IntegerType::get(getVMContext(), |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2500 | getContext().getTypeSize(RetTy))); |
Daniel Dunbar | 4cc753f | 2010-02-01 23:31:19 +0000 | [diff] [blame] | 2501 | |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2502 | // Integer like structures are returned in r0. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2503 | if (isIntegerLikeType(RetTy, getContext(), getVMContext())) { |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2504 | // Return in the smallest viable integer type. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2505 | uint64_t Size = getContext().getTypeSize(RetTy); |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2506 | if (Size <= 8) |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2507 | return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext())); |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2508 | if (Size <= 16) |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2509 | return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); |
| 2510 | return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext())); |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2511 | } |
| 2512 | |
| 2513 | // Otherwise return in memory. |
| 2514 | return ABIArgInfo::getIndirect(0); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2515 | } |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2516 | |
| 2517 | // Otherwise this is an AAPCS variant. |
| 2518 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2519 | if (isEmptyRecord(getContext(), RetTy, true)) |
Daniel Dunbar | 16a0808 | 2009-09-14 00:56:55 +0000 | [diff] [blame] | 2520 | return ABIArgInfo::getIgnore(); |
| 2521 | |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2522 | // Aggregates <= 4 bytes are returned in r0; other aggregates |
| 2523 | // are returned indirectly. |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2524 | uint64_t Size = getContext().getTypeSize(RetTy); |
Daniel Dunbar | 16a0808 | 2009-09-14 00:56:55 +0000 | [diff] [blame] | 2525 | if (Size <= 32) { |
| 2526 | // Return in the smallest viable integer type. |
| 2527 | if (Size <= 8) |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2528 | return ABIArgInfo::getDirect(llvm::Type::getInt8Ty(getVMContext())); |
Daniel Dunbar | 16a0808 | 2009-09-14 00:56:55 +0000 | [diff] [blame] | 2529 | if (Size <= 16) |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2530 | return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext())); |
| 2531 | return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext())); |
Daniel Dunbar | 16a0808 | 2009-09-14 00:56:55 +0000 | [diff] [blame] | 2532 | } |
| 2533 | |
Daniel Dunbar | 98303b9 | 2009-09-13 08:03:58 +0000 | [diff] [blame] | 2534 | return ABIArgInfo::getIndirect(0); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2535 | } |
| 2536 | |
| 2537 | llvm::Value *ARMABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 2538 | CodeGenFunction &CGF) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2539 | // FIXME: Need to handle alignment |
Benjamin Kramer | 3c0ef8c | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 2540 | const llvm::Type *BP = llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 2541 | const llvm::Type *BPP = llvm::PointerType::getUnqual(BP); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2542 | |
| 2543 | CGBuilderTy &Builder = CGF.Builder; |
| 2544 | llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP, |
| 2545 | "ap"); |
| 2546 | llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur"); |
| 2547 | llvm::Type *PTy = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 2548 | llvm::PointerType::getUnqual(CGF.ConvertType(Ty)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2549 | llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy); |
| 2550 | |
| 2551 | uint64_t Offset = |
| 2552 | llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 4); |
| 2553 | llvm::Value *NextAddr = |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 2554 | Builder.CreateGEP(Addr, llvm::ConstantInt::get(CGF.Int32Ty, Offset), |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2555 | "ap.next"); |
| 2556 | Builder.CreateStore(NextAddr, VAListAddrAsBPP); |
| 2557 | |
| 2558 | return AddrTyped; |
| 2559 | } |
| 2560 | |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2561 | //===----------------------------------------------------------------------===// |
Justin Holewinski | 0259c3a | 2011-04-22 11:10:38 +0000 | [diff] [blame] | 2562 | // PTX ABI Implementation |
| 2563 | //===----------------------------------------------------------------------===// |
| 2564 | |
| 2565 | namespace { |
| 2566 | |
| 2567 | class PTXABIInfo : public ABIInfo { |
| 2568 | public: |
| 2569 | PTXABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) {} |
| 2570 | |
| 2571 | ABIArgInfo classifyReturnType(QualType RetTy) const; |
| 2572 | ABIArgInfo classifyArgumentType(QualType Ty) const; |
| 2573 | |
| 2574 | virtual void computeInfo(CGFunctionInfo &FI) const; |
| 2575 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 2576 | CodeGenFunction &CFG) const; |
| 2577 | }; |
| 2578 | |
| 2579 | class PTXTargetCodeGenInfo : public TargetCodeGenInfo { |
| 2580 | public: |
| 2581 | PTXTargetCodeGenInfo(CodeGenTypes &CGT) |
| 2582 | : TargetCodeGenInfo(new PTXABIInfo(CGT)) {} |
| 2583 | }; |
| 2584 | |
| 2585 | ABIArgInfo PTXABIInfo::classifyReturnType(QualType RetTy) const { |
| 2586 | if (RetTy->isVoidType()) |
| 2587 | return ABIArgInfo::getIgnore(); |
| 2588 | if (isAggregateTypeForABI(RetTy)) |
| 2589 | return ABIArgInfo::getIndirect(0); |
| 2590 | return ABIArgInfo::getDirect(); |
| 2591 | } |
| 2592 | |
| 2593 | ABIArgInfo PTXABIInfo::classifyArgumentType(QualType Ty) const { |
| 2594 | if (isAggregateTypeForABI(Ty)) |
| 2595 | return ABIArgInfo::getIndirect(0); |
| 2596 | |
| 2597 | return ABIArgInfo::getDirect(); |
| 2598 | } |
| 2599 | |
| 2600 | void PTXABIInfo::computeInfo(CGFunctionInfo &FI) const { |
| 2601 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType()); |
| 2602 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 2603 | it != ie; ++it) |
| 2604 | it->info = classifyArgumentType(it->type); |
| 2605 | |
| 2606 | // Always honor user-specified calling convention. |
| 2607 | if (FI.getCallingConvention() != llvm::CallingConv::C) |
| 2608 | return; |
| 2609 | |
| 2610 | // Calling convention as default by an ABI. |
| 2611 | llvm::CallingConv::ID DefaultCC; |
| 2612 | llvm::StringRef Env = getContext().Target.getTriple().getEnvironmentName(); |
| 2613 | if (Env == "device") |
| 2614 | DefaultCC = llvm::CallingConv::PTX_Device; |
| 2615 | else |
| 2616 | DefaultCC = llvm::CallingConv::PTX_Kernel; |
| 2617 | |
| 2618 | FI.setEffectiveCallingConvention(DefaultCC); |
| 2619 | } |
| 2620 | |
| 2621 | llvm::Value *PTXABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 2622 | CodeGenFunction &CFG) const { |
| 2623 | llvm_unreachable("PTX does not support varargs"); |
| 2624 | return 0; |
| 2625 | } |
| 2626 | |
| 2627 | } |
| 2628 | |
| 2629 | //===----------------------------------------------------------------------===// |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 2630 | // SystemZ ABI Implementation |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2631 | //===----------------------------------------------------------------------===// |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 2632 | |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2633 | namespace { |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 2634 | |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2635 | class SystemZABIInfo : public ABIInfo { |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 2636 | public: |
| 2637 | SystemZABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) {} |
| 2638 | |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2639 | bool isPromotableIntegerType(QualType Ty) const; |
| 2640 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2641 | ABIArgInfo classifyReturnType(QualType RetTy) const; |
| 2642 | ABIArgInfo classifyArgumentType(QualType RetTy) const; |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2643 | |
Chris Lattner | ee5dcd0 | 2010-07-29 02:31:05 +0000 | [diff] [blame] | 2644 | virtual void computeInfo(CGFunctionInfo &FI) const { |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2645 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType()); |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2646 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 2647 | it != ie; ++it) |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2648 | it->info = classifyArgumentType(it->type); |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2649 | } |
| 2650 | |
| 2651 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 2652 | CodeGenFunction &CGF) const; |
| 2653 | }; |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 2654 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 2655 | class SystemZTargetCodeGenInfo : public TargetCodeGenInfo { |
| 2656 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 2657 | SystemZTargetCodeGenInfo(CodeGenTypes &CGT) |
| 2658 | : TargetCodeGenInfo(new SystemZABIInfo(CGT)) {} |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 2659 | }; |
| 2660 | |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2661 | } |
| 2662 | |
| 2663 | bool SystemZABIInfo::isPromotableIntegerType(QualType Ty) const { |
| 2664 | // SystemZ ABI requires all 8, 16 and 32 bit quantities to be extended. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2665 | if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2666 | switch (BT->getKind()) { |
| 2667 | case BuiltinType::Bool: |
| 2668 | case BuiltinType::Char_S: |
| 2669 | case BuiltinType::Char_U: |
| 2670 | case BuiltinType::SChar: |
| 2671 | case BuiltinType::UChar: |
| 2672 | case BuiltinType::Short: |
| 2673 | case BuiltinType::UShort: |
| 2674 | case BuiltinType::Int: |
| 2675 | case BuiltinType::UInt: |
| 2676 | return true; |
| 2677 | default: |
| 2678 | return false; |
| 2679 | } |
| 2680 | return false; |
| 2681 | } |
| 2682 | |
| 2683 | llvm::Value *SystemZABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 2684 | CodeGenFunction &CGF) const { |
| 2685 | // FIXME: Implement |
| 2686 | return 0; |
| 2687 | } |
| 2688 | |
| 2689 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2690 | ABIArgInfo SystemZABIInfo::classifyReturnType(QualType RetTy) const { |
| 2691 | if (RetTy->isVoidType()) |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2692 | return ABIArgInfo::getIgnore(); |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 2693 | if (isAggregateTypeForABI(RetTy)) |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2694 | return ABIArgInfo::getIndirect(0); |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2695 | |
| 2696 | return (isPromotableIntegerType(RetTy) ? |
| 2697 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2698 | } |
| 2699 | |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2700 | ABIArgInfo SystemZABIInfo::classifyArgumentType(QualType Ty) const { |
John McCall | d608cdb | 2010-08-22 10:59:02 +0000 | [diff] [blame] | 2701 | if (isAggregateTypeForABI(Ty)) |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2702 | return ABIArgInfo::getIndirect(0); |
Chris Lattner | a3c109b | 2010-07-29 02:16:43 +0000 | [diff] [blame] | 2703 | |
| 2704 | return (isPromotableIntegerType(Ty) ? |
| 2705 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 2706 | } |
| 2707 | |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2708 | //===----------------------------------------------------------------------===// |
Wesley Peck | 276fdf4 | 2010-12-19 19:57:51 +0000 | [diff] [blame] | 2709 | // MBlaze ABI Implementation |
| 2710 | //===----------------------------------------------------------------------===// |
| 2711 | |
| 2712 | namespace { |
| 2713 | |
| 2714 | class MBlazeABIInfo : public ABIInfo { |
| 2715 | public: |
| 2716 | MBlazeABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) {} |
| 2717 | |
| 2718 | bool isPromotableIntegerType(QualType Ty) const; |
| 2719 | |
| 2720 | ABIArgInfo classifyReturnType(QualType RetTy) const; |
| 2721 | ABIArgInfo classifyArgumentType(QualType RetTy) const; |
| 2722 | |
| 2723 | virtual void computeInfo(CGFunctionInfo &FI) const { |
| 2724 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType()); |
| 2725 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 2726 | it != ie; ++it) |
| 2727 | it->info = classifyArgumentType(it->type); |
| 2728 | } |
| 2729 | |
| 2730 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 2731 | CodeGenFunction &CGF) const; |
| 2732 | }; |
| 2733 | |
| 2734 | class MBlazeTargetCodeGenInfo : public TargetCodeGenInfo { |
| 2735 | public: |
| 2736 | MBlazeTargetCodeGenInfo(CodeGenTypes &CGT) |
| 2737 | : TargetCodeGenInfo(new MBlazeABIInfo(CGT)) {} |
| 2738 | void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV, |
| 2739 | CodeGen::CodeGenModule &M) const; |
| 2740 | }; |
| 2741 | |
| 2742 | } |
| 2743 | |
| 2744 | bool MBlazeABIInfo::isPromotableIntegerType(QualType Ty) const { |
| 2745 | // MBlaze ABI requires all 8 and 16 bit quantities to be extended. |
| 2746 | if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) |
| 2747 | switch (BT->getKind()) { |
| 2748 | case BuiltinType::Bool: |
| 2749 | case BuiltinType::Char_S: |
| 2750 | case BuiltinType::Char_U: |
| 2751 | case BuiltinType::SChar: |
| 2752 | case BuiltinType::UChar: |
| 2753 | case BuiltinType::Short: |
| 2754 | case BuiltinType::UShort: |
| 2755 | return true; |
| 2756 | default: |
| 2757 | return false; |
| 2758 | } |
| 2759 | return false; |
| 2760 | } |
| 2761 | |
| 2762 | llvm::Value *MBlazeABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 2763 | CodeGenFunction &CGF) const { |
| 2764 | // FIXME: Implement |
| 2765 | return 0; |
| 2766 | } |
| 2767 | |
| 2768 | |
| 2769 | ABIArgInfo MBlazeABIInfo::classifyReturnType(QualType RetTy) const { |
| 2770 | if (RetTy->isVoidType()) |
| 2771 | return ABIArgInfo::getIgnore(); |
| 2772 | if (isAggregateTypeForABI(RetTy)) |
| 2773 | return ABIArgInfo::getIndirect(0); |
| 2774 | |
| 2775 | return (isPromotableIntegerType(RetTy) ? |
| 2776 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
| 2777 | } |
| 2778 | |
| 2779 | ABIArgInfo MBlazeABIInfo::classifyArgumentType(QualType Ty) const { |
| 2780 | if (isAggregateTypeForABI(Ty)) |
| 2781 | return ABIArgInfo::getIndirect(0); |
| 2782 | |
| 2783 | return (isPromotableIntegerType(Ty) ? |
| 2784 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
| 2785 | } |
| 2786 | |
| 2787 | void MBlazeTargetCodeGenInfo::SetTargetAttributes(const Decl *D, |
| 2788 | llvm::GlobalValue *GV, |
| 2789 | CodeGen::CodeGenModule &M) |
| 2790 | const { |
| 2791 | const FunctionDecl *FD = dyn_cast<FunctionDecl>(D); |
| 2792 | if (!FD) return; |
NAKAMURA Takumi | 125b4cb | 2011-02-17 08:50:50 +0000 | [diff] [blame] | 2793 | |
Wesley Peck | 276fdf4 | 2010-12-19 19:57:51 +0000 | [diff] [blame] | 2794 | llvm::CallingConv::ID CC = llvm::CallingConv::C; |
| 2795 | if (FD->hasAttr<MBlazeInterruptHandlerAttr>()) |
| 2796 | CC = llvm::CallingConv::MBLAZE_INTR; |
| 2797 | else if (FD->hasAttr<MBlazeSaveVolatilesAttr>()) |
| 2798 | CC = llvm::CallingConv::MBLAZE_SVOL; |
| 2799 | |
| 2800 | if (CC != llvm::CallingConv::C) { |
| 2801 | // Handle 'interrupt_handler' attribute: |
| 2802 | llvm::Function *F = cast<llvm::Function>(GV); |
| 2803 | |
| 2804 | // Step 1: Set ISR calling convention. |
| 2805 | F->setCallingConv(CC); |
| 2806 | |
| 2807 | // Step 2: Add attributes goodness. |
| 2808 | F->addFnAttr(llvm::Attribute::NoInline); |
| 2809 | } |
| 2810 | |
| 2811 | // Step 3: Emit _interrupt_handler alias. |
| 2812 | if (CC == llvm::CallingConv::MBLAZE_INTR) |
| 2813 | new llvm::GlobalAlias(GV->getType(), llvm::Function::ExternalLinkage, |
| 2814 | "_interrupt_handler", GV, &M.getModule()); |
| 2815 | } |
| 2816 | |
| 2817 | |
| 2818 | //===----------------------------------------------------------------------===// |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 2819 | // MSP430 ABI Implementation |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2820 | //===----------------------------------------------------------------------===// |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 2821 | |
| 2822 | namespace { |
| 2823 | |
| 2824 | class MSP430TargetCodeGenInfo : public TargetCodeGenInfo { |
| 2825 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 2826 | MSP430TargetCodeGenInfo(CodeGenTypes &CGT) |
| 2827 | : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {} |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 2828 | void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV, |
| 2829 | CodeGen::CodeGenModule &M) const; |
| 2830 | }; |
| 2831 | |
| 2832 | } |
| 2833 | |
| 2834 | void MSP430TargetCodeGenInfo::SetTargetAttributes(const Decl *D, |
| 2835 | llvm::GlobalValue *GV, |
| 2836 | CodeGen::CodeGenModule &M) const { |
| 2837 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 2838 | if (const MSP430InterruptAttr *attr = FD->getAttr<MSP430InterruptAttr>()) { |
| 2839 | // Handle 'interrupt' attribute: |
| 2840 | llvm::Function *F = cast<llvm::Function>(GV); |
| 2841 | |
| 2842 | // Step 1: Set ISR calling convention. |
| 2843 | F->setCallingConv(llvm::CallingConv::MSP430_INTR); |
| 2844 | |
| 2845 | // Step 2: Add attributes goodness. |
| 2846 | F->addFnAttr(llvm::Attribute::NoInline); |
| 2847 | |
| 2848 | // Step 3: Emit ISR vector alias. |
| 2849 | unsigned Num = attr->getNumber() + 0xffe0; |
| 2850 | new llvm::GlobalAlias(GV->getType(), llvm::Function::ExternalLinkage, |
Benjamin Kramer | 77d6605 | 2010-11-12 15:42:18 +0000 | [diff] [blame] | 2851 | "vector_" + llvm::Twine::utohexstr(Num), |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 2852 | GV, &M.getModule()); |
| 2853 | } |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2854 | } |
| 2855 | } |
| 2856 | |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2857 | //===----------------------------------------------------------------------===// |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2858 | // MIPS ABI Implementation. This works for both little-endian and |
| 2859 | // big-endian variants. |
Chris Lattner | dce5ad0 | 2010-06-28 20:05:43 +0000 | [diff] [blame] | 2860 | //===----------------------------------------------------------------------===// |
| 2861 | |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2862 | namespace { |
Akira Hatanaka | 619e887 | 2011-06-02 00:09:17 +0000 | [diff] [blame] | 2863 | class MipsABIInfo : public ABIInfo { |
| 2864 | public: |
| 2865 | MipsABIInfo(CodeGenTypes &CGT) : ABIInfo(CGT) {} |
| 2866 | |
| 2867 | ABIArgInfo classifyReturnType(QualType RetTy) const; |
| 2868 | ABIArgInfo classifyArgumentType(QualType RetTy) const; |
| 2869 | virtual void computeInfo(CGFunctionInfo &FI) const; |
| 2870 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 2871 | CodeGenFunction &CGF) const; |
| 2872 | }; |
| 2873 | |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2874 | class MIPSTargetCodeGenInfo : public TargetCodeGenInfo { |
| 2875 | public: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 2876 | MIPSTargetCodeGenInfo(CodeGenTypes &CGT) |
Akira Hatanaka | 619e887 | 2011-06-02 00:09:17 +0000 | [diff] [blame] | 2877 | : TargetCodeGenInfo(new MipsABIInfo(CGT)) {} |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2878 | |
| 2879 | int getDwarfEHStackPointer(CodeGen::CodeGenModule &CGM) const { |
| 2880 | return 29; |
| 2881 | } |
| 2882 | |
| 2883 | bool initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF, |
Michael J. Spencer | 8bea82f | 2010-08-25 18:17:27 +0000 | [diff] [blame] | 2884 | llvm::Value *Address) const; |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2885 | }; |
| 2886 | } |
| 2887 | |
Akira Hatanaka | 619e887 | 2011-06-02 00:09:17 +0000 | [diff] [blame] | 2888 | ABIArgInfo MipsABIInfo::classifyArgumentType(QualType Ty) const { |
| 2889 | if (isAggregateTypeForABI(Ty)) { |
| 2890 | // Ignore empty aggregates. |
| 2891 | if (getContext().getTypeSize(Ty) == 0) |
| 2892 | return ABIArgInfo::getIgnore(); |
| 2893 | |
| 2894 | return ABIArgInfo::getIndirect(0); |
| 2895 | } |
| 2896 | |
| 2897 | // Treat an enum type as its underlying type. |
| 2898 | if (const EnumType *EnumTy = Ty->getAs<EnumType>()) |
| 2899 | Ty = EnumTy->getDecl()->getIntegerType(); |
| 2900 | |
| 2901 | return (Ty->isPromotableIntegerType() ? |
| 2902 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
| 2903 | } |
| 2904 | |
| 2905 | ABIArgInfo MipsABIInfo::classifyReturnType(QualType RetTy) const { |
| 2906 | if (RetTy->isVoidType()) |
| 2907 | return ABIArgInfo::getIgnore(); |
| 2908 | |
| 2909 | if (isAggregateTypeForABI(RetTy)) { |
| 2910 | if (RetTy->isAnyComplexType()) |
| 2911 | return ABIArgInfo::getDirect(); |
| 2912 | |
| 2913 | return ABIArgInfo::getIndirect(0); |
| 2914 | } |
| 2915 | |
| 2916 | // Treat an enum type as its underlying type. |
| 2917 | if (const EnumType *EnumTy = RetTy->getAs<EnumType>()) |
| 2918 | RetTy = EnumTy->getDecl()->getIntegerType(); |
| 2919 | |
| 2920 | return (RetTy->isPromotableIntegerType() ? |
| 2921 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
| 2922 | } |
| 2923 | |
| 2924 | void MipsABIInfo::computeInfo(CGFunctionInfo &FI) const { |
| 2925 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType()); |
| 2926 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 2927 | it != ie; ++it) |
| 2928 | it->info = classifyArgumentType(it->type); |
| 2929 | } |
| 2930 | |
| 2931 | llvm::Value* MipsABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 2932 | CodeGenFunction &CGF) const { |
| 2933 | return 0; |
| 2934 | } |
| 2935 | |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2936 | bool |
| 2937 | MIPSTargetCodeGenInfo::initDwarfEHRegSizeTable(CodeGen::CodeGenFunction &CGF, |
| 2938 | llvm::Value *Address) const { |
| 2939 | // This information comes from gcc's implementation, which seems to |
| 2940 | // as canonical as it gets. |
| 2941 | |
| 2942 | CodeGen::CGBuilderTy &Builder = CGF.Builder; |
| 2943 | llvm::LLVMContext &Context = CGF.getLLVMContext(); |
| 2944 | |
| 2945 | // Everything on MIPS is 4 bytes. Double-precision FP registers |
| 2946 | // are aliased to pairs of single-precision FP registers. |
| 2947 | const llvm::IntegerType *i8 = llvm::Type::getInt8Ty(Context); |
| 2948 | llvm::Value *Four8 = llvm::ConstantInt::get(i8, 4); |
| 2949 | |
| 2950 | // 0-31 are the general purpose registers, $0 - $31. |
| 2951 | // 32-63 are the floating-point registers, $f0 - $f31. |
| 2952 | // 64 and 65 are the multiply/divide registers, $hi and $lo. |
| 2953 | // 66 is the (notional, I think) register for signal-handler return. |
| 2954 | AssignToArrayRange(Builder, Address, Four8, 0, 65); |
| 2955 | |
| 2956 | // 67-74 are the floating-point status registers, $fcc0 - $fcc7. |
| 2957 | // They are one bit wide and ignored here. |
| 2958 | |
| 2959 | // 80-111 are the coprocessor 0 registers, $c0r0 - $c0r31. |
| 2960 | // (coprocessor 1 is the FP unit) |
| 2961 | // 112-143 are the coprocessor 2 registers, $c2r0 - $c2r31. |
| 2962 | // 144-175 are the coprocessor 3 registers, $c3r0 - $c3r31. |
| 2963 | // 176-181 are the DSP accumulator registers. |
| 2964 | AssignToArrayRange(Builder, Address, Four8, 80, 181); |
| 2965 | |
| 2966 | return false; |
| 2967 | } |
| 2968 | |
| 2969 | |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 2970 | const TargetCodeGenInfo &CodeGenModule::getTargetCodeGenInfo() { |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 2971 | if (TheTargetCodeGenInfo) |
| 2972 | return *TheTargetCodeGenInfo; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 2973 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 2974 | // For now we just cache the TargetCodeGenInfo in CodeGenModule and don't |
| 2975 | // free it. |
Daniel Dunbar | 2c0843f | 2009-08-24 08:52:16 +0000 | [diff] [blame] | 2976 | |
Chris Lattner | 9c254f0 | 2010-06-29 06:01:59 +0000 | [diff] [blame] | 2977 | const llvm::Triple &Triple = getContext().Target.getTriple(); |
Daniel Dunbar | 1752ee4 | 2009-08-24 09:10:05 +0000 | [diff] [blame] | 2978 | switch (Triple.getArch()) { |
Daniel Dunbar | 2c0843f | 2009-08-24 08:52:16 +0000 | [diff] [blame] | 2979 | default: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 2980 | return *(TheTargetCodeGenInfo = new DefaultTargetCodeGenInfo(Types)); |
Daniel Dunbar | 2c0843f | 2009-08-24 08:52:16 +0000 | [diff] [blame] | 2981 | |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2982 | case llvm::Triple::mips: |
| 2983 | case llvm::Triple::mipsel: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 2984 | return *(TheTargetCodeGenInfo = new MIPSTargetCodeGenInfo(Types)); |
John McCall | aeeb701 | 2010-05-27 06:19:26 +0000 | [diff] [blame] | 2985 | |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 2986 | case llvm::Triple::arm: |
| 2987 | case llvm::Triple::thumb: |
Sandeep Patel | 34c1af8 | 2011-04-05 00:23:47 +0000 | [diff] [blame] | 2988 | { |
| 2989 | ARMABIInfo::ABIKind Kind = ARMABIInfo::AAPCS; |
Daniel Dunbar | 5e7bace | 2009-09-12 01:00:39 +0000 | [diff] [blame] | 2990 | |
Sandeep Patel | 34c1af8 | 2011-04-05 00:23:47 +0000 | [diff] [blame] | 2991 | if (strcmp(getContext().Target.getABI(), "apcs-gnu") == 0) |
| 2992 | Kind = ARMABIInfo::APCS; |
| 2993 | else if (CodeGenOpts.FloatABI == "hard") |
| 2994 | Kind = ARMABIInfo::AAPCS_VFP; |
| 2995 | |
| 2996 | return *(TheTargetCodeGenInfo = new ARMTargetCodeGenInfo(Types, Kind)); |
| 2997 | } |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 2998 | |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 2999 | case llvm::Triple::ppc: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 3000 | return *(TheTargetCodeGenInfo = new PPC32TargetCodeGenInfo(Types)); |
John McCall | ec853ba | 2010-03-11 00:10:12 +0000 | [diff] [blame] | 3001 | |
Justin Holewinski | 0259c3a | 2011-04-22 11:10:38 +0000 | [diff] [blame] | 3002 | case llvm::Triple::ptx32: |
| 3003 | case llvm::Triple::ptx64: |
| 3004 | return *(TheTargetCodeGenInfo = new PTXTargetCodeGenInfo(Types)); |
| 3005 | |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 3006 | case llvm::Triple::systemz: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 3007 | return *(TheTargetCodeGenInfo = new SystemZTargetCodeGenInfo(Types)); |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 3008 | |
Wesley Peck | 276fdf4 | 2010-12-19 19:57:51 +0000 | [diff] [blame] | 3009 | case llvm::Triple::mblaze: |
| 3010 | return *(TheTargetCodeGenInfo = new MBlazeTargetCodeGenInfo(Types)); |
| 3011 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 3012 | case llvm::Triple::msp430: |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 3013 | return *(TheTargetCodeGenInfo = new MSP430TargetCodeGenInfo(Types)); |
Daniel Dunbar | 34d91fd | 2009-09-12 00:59:49 +0000 | [diff] [blame] | 3014 | |
Daniel Dunbar | 1752ee4 | 2009-08-24 09:10:05 +0000 | [diff] [blame] | 3015 | case llvm::Triple::x86: |
Daniel Dunbar | db57a4c | 2011-04-19 21:43:27 +0000 | [diff] [blame] | 3016 | if (Triple.isOSDarwin()) |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 3017 | return *(TheTargetCodeGenInfo = |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 3018 | new X86_32TargetCodeGenInfo(Types, true, true)); |
Daniel Dunbar | db57a4c | 2011-04-19 21:43:27 +0000 | [diff] [blame] | 3019 | |
| 3020 | switch (Triple.getOS()) { |
Daniel Dunbar | 2c0843f | 2009-08-24 08:52:16 +0000 | [diff] [blame] | 3021 | case llvm::Triple::Cygwin: |
Daniel Dunbar | 2c0843f | 2009-08-24 08:52:16 +0000 | [diff] [blame] | 3022 | case llvm::Triple::MinGW32: |
Edward O'Callaghan | 727e268 | 2009-10-21 11:58:24 +0000 | [diff] [blame] | 3023 | case llvm::Triple::AuroraUX: |
| 3024 | case llvm::Triple::DragonFly: |
David Chisnall | 75c135a | 2009-09-03 01:48:05 +0000 | [diff] [blame] | 3025 | case llvm::Triple::FreeBSD: |
Daniel Dunbar | 2c0843f | 2009-08-24 08:52:16 +0000 | [diff] [blame] | 3026 | case llvm::Triple::OpenBSD: |
Benjamin Kramer | 8e50a96 | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 3027 | case llvm::Triple::NetBSD: |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 3028 | return *(TheTargetCodeGenInfo = |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 3029 | new X86_32TargetCodeGenInfo(Types, false, true)); |
Daniel Dunbar | 2c0843f | 2009-08-24 08:52:16 +0000 | [diff] [blame] | 3030 | |
| 3031 | default: |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 3032 | return *(TheTargetCodeGenInfo = |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 3033 | new X86_32TargetCodeGenInfo(Types, false, false)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 3034 | } |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 3035 | |
Daniel Dunbar | 2c0843f | 2009-08-24 08:52:16 +0000 | [diff] [blame] | 3036 | case llvm::Triple::x86_64: |
Chris Lattner | f13721d | 2010-08-31 16:44:54 +0000 | [diff] [blame] | 3037 | switch (Triple.getOS()) { |
| 3038 | case llvm::Triple::Win32: |
NAKAMURA Takumi | 0aa2057 | 2011-02-17 08:51:38 +0000 | [diff] [blame] | 3039 | case llvm::Triple::MinGW32: |
Chris Lattner | f13721d | 2010-08-31 16:44:54 +0000 | [diff] [blame] | 3040 | case llvm::Triple::Cygwin: |
| 3041 | return *(TheTargetCodeGenInfo = new WinX86_64TargetCodeGenInfo(Types)); |
| 3042 | default: |
| 3043 | return *(TheTargetCodeGenInfo = new X86_64TargetCodeGenInfo(Types)); |
| 3044 | } |
Daniel Dunbar | 2c0843f | 2009-08-24 08:52:16 +0000 | [diff] [blame] | 3045 | } |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 3046 | } |