Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1 | //===---- TargetABIInfo.cpp - Encapsulate target ABI details ----*- C++ -*-===// |
| 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 | |
| 15 | #include "ABIInfo.h" |
| 16 | #include "CodeGenFunction.h" |
Anders Carlsson | 19cc4ab | 2009-07-18 19:43:29 +0000 | [diff] [blame] | 17 | #include "clang/AST/RecordLayout.h" |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 18 | #include "llvm/Type.h" |
| 19 | |
| 20 | using namespace clang; |
| 21 | using namespace CodeGen; |
| 22 | |
| 23 | ABIInfo::~ABIInfo() {} |
| 24 | |
| 25 | void ABIArgInfo::dump() const { |
| 26 | fprintf(stderr, "(ABIArgInfo Kind="); |
| 27 | switch (TheKind) { |
| 28 | case Direct: |
| 29 | fprintf(stderr, "Direct"); |
| 30 | break; |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 31 | case Extend: |
| 32 | fprintf(stderr, "Extend"); |
| 33 | break; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 34 | case Ignore: |
| 35 | fprintf(stderr, "Ignore"); |
| 36 | break; |
| 37 | case Coerce: |
| 38 | fprintf(stderr, "Coerce Type="); |
| 39 | getCoerceToType()->print(llvm::errs()); |
| 40 | break; |
| 41 | case Indirect: |
| 42 | fprintf(stderr, "Indirect Align=%d", getIndirectAlign()); |
| 43 | break; |
| 44 | case Expand: |
| 45 | fprintf(stderr, "Expand"); |
| 46 | break; |
| 47 | } |
| 48 | fprintf(stderr, ")\n"); |
| 49 | } |
| 50 | |
| 51 | static bool isEmptyRecord(ASTContext &Context, QualType T); |
| 52 | |
| 53 | /// isEmptyField - Return true iff a the field is "empty", that is it |
| 54 | /// is an unnamed bit-field or an (array of) empty record(s). |
| 55 | static bool isEmptyField(ASTContext &Context, const FieldDecl *FD) { |
| 56 | if (FD->isUnnamedBitfield()) |
| 57 | return true; |
| 58 | |
| 59 | QualType FT = FD->getType(); |
| 60 | // Constant arrays of empty records count as empty, strip them off. |
| 61 | while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) |
| 62 | FT = AT->getElementType(); |
| 63 | |
| 64 | return isEmptyRecord(Context, FT); |
| 65 | } |
| 66 | |
| 67 | /// isEmptyRecord - Return true iff a structure contains only empty |
| 68 | /// fields. Note that a structure with a flexible array member is not |
| 69 | /// considered empty. |
| 70 | static bool isEmptyRecord(ASTContext &Context, QualType T) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 71 | const RecordType *RT = T->getAs<RecordType>(); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 72 | if (!RT) |
| 73 | return 0; |
| 74 | const RecordDecl *RD = RT->getDecl(); |
| 75 | if (RD->hasFlexibleArrayMember()) |
| 76 | return false; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 77 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 78 | i != e; ++i) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 79 | if (!isEmptyField(Context, *i)) |
| 80 | return false; |
| 81 | return true; |
| 82 | } |
| 83 | |
| 84 | /// isSingleElementStruct - Determine if a structure is a "single |
| 85 | /// element struct", i.e. it has exactly one non-empty field or |
| 86 | /// exactly one field which is itself a single element |
| 87 | /// struct. Structures with flexible array members are never |
| 88 | /// considered single element structs. |
| 89 | /// |
| 90 | /// \return The field declaration for the single non-empty field, if |
| 91 | /// it exists. |
| 92 | static const Type *isSingleElementStruct(QualType T, ASTContext &Context) { |
| 93 | const RecordType *RT = T->getAsStructureType(); |
| 94 | if (!RT) |
| 95 | return 0; |
| 96 | |
| 97 | const RecordDecl *RD = RT->getDecl(); |
| 98 | if (RD->hasFlexibleArrayMember()) |
| 99 | return 0; |
| 100 | |
| 101 | const Type *Found = 0; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 102 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 103 | i != e; ++i) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 104 | const FieldDecl *FD = *i; |
| 105 | QualType FT = FD->getType(); |
| 106 | |
| 107 | // Ignore empty fields. |
| 108 | if (isEmptyField(Context, FD)) |
| 109 | continue; |
| 110 | |
| 111 | // If we already found an element then this isn't a single-element |
| 112 | // struct. |
| 113 | if (Found) |
| 114 | return 0; |
| 115 | |
| 116 | // Treat single element arrays as the element. |
| 117 | while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) { |
| 118 | if (AT->getSize().getZExtValue() != 1) |
| 119 | break; |
| 120 | FT = AT->getElementType(); |
| 121 | } |
| 122 | |
| 123 | if (!CodeGenFunction::hasAggregateLLVMType(FT)) { |
| 124 | Found = FT.getTypePtr(); |
| 125 | } else { |
| 126 | Found = isSingleElementStruct(FT, Context); |
| 127 | if (!Found) |
| 128 | return 0; |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | return Found; |
| 133 | } |
| 134 | |
| 135 | static bool is32Or64BitBasicType(QualType Ty, ASTContext &Context) { |
| 136 | if (!Ty->getAsBuiltinType() && !Ty->isPointerType()) |
| 137 | return false; |
| 138 | |
| 139 | uint64_t Size = Context.getTypeSize(Ty); |
| 140 | return Size == 32 || Size == 64; |
| 141 | } |
| 142 | |
| 143 | static bool areAllFields32Or64BitBasicType(const RecordDecl *RD, |
| 144 | ASTContext &Context) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 145 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 146 | i != e; ++i) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 147 | const FieldDecl *FD = *i; |
| 148 | |
| 149 | if (!is32Or64BitBasicType(FD->getType(), Context)) |
| 150 | return false; |
| 151 | |
| 152 | // FIXME: Reject bit-fields wholesale; there are two problems, we don't know |
| 153 | // how to expand them yet, and the predicate for telling if a bitfield still |
| 154 | // counts as "basic" is more complicated than what we were doing previously. |
| 155 | if (FD->isBitField()) |
| 156 | return false; |
| 157 | } |
| 158 | |
| 159 | return true; |
| 160 | } |
| 161 | |
Eli Friedman | a1e6de9 | 2009-06-13 21:37:10 +0000 | [diff] [blame] | 162 | static bool typeContainsSSEVector(const RecordDecl *RD, ASTContext &Context) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 163 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 164 | i != e; ++i) { |
Eli Friedman | a1e6de9 | 2009-06-13 21:37:10 +0000 | [diff] [blame] | 165 | const FieldDecl *FD = *i; |
| 166 | |
| 167 | if (FD->getType()->isVectorType() && |
| 168 | Context.getTypeSize(FD->getType()) >= 128) |
| 169 | return true; |
| 170 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 171 | if (const RecordType* RT = FD->getType()->getAs<RecordType>()) |
Eli Friedman | a1e6de9 | 2009-06-13 21:37:10 +0000 | [diff] [blame] | 172 | if (typeContainsSSEVector(RT->getDecl(), Context)) |
| 173 | return true; |
| 174 | } |
| 175 | |
| 176 | return false; |
| 177 | } |
| 178 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 179 | namespace { |
| 180 | /// DefaultABIInfo - The default implementation for ABI specific |
| 181 | /// details. This implementation provides information which results in |
| 182 | /// self-consistent and sensible LLVM IR generation, but does not |
| 183 | /// conform to any particular ABI. |
| 184 | class DefaultABIInfo : public ABIInfo { |
| 185 | ABIArgInfo classifyReturnType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 186 | ASTContext &Context, |
| 187 | llvm::LLVMContext &VMContext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 188 | |
| 189 | ABIArgInfo classifyArgumentType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 190 | ASTContext &Context, |
| 191 | llvm::LLVMContext &VMContext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 192 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 193 | virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context, |
| 194 | llvm::LLVMContext &VMContext) const { |
| 195 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context, |
| 196 | VMContext); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 197 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 198 | it != ie; ++it) |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 199 | it->info = classifyArgumentType(it->type, Context, VMContext); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 203 | CodeGenFunction &CGF) const; |
| 204 | }; |
| 205 | |
| 206 | /// X86_32ABIInfo - The X86-32 ABI information. |
| 207 | class X86_32ABIInfo : public ABIInfo { |
| 208 | ASTContext &Context; |
| 209 | bool IsDarwin; |
| 210 | |
| 211 | static bool isRegisterSize(unsigned Size) { |
| 212 | return (Size == 8 || Size == 16 || Size == 32 || Size == 64); |
| 213 | } |
| 214 | |
| 215 | static bool shouldReturnTypeInRegister(QualType Ty, ASTContext &Context); |
| 216 | |
Eli Friedman | a1e6de9 | 2009-06-13 21:37:10 +0000 | [diff] [blame] | 217 | static unsigned getIndirectArgumentAlignment(QualType Ty, |
| 218 | ASTContext &Context); |
| 219 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 220 | public: |
| 221 | ABIArgInfo classifyReturnType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 222 | ASTContext &Context, |
| 223 | llvm::LLVMContext &VMContext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 224 | |
| 225 | ABIArgInfo classifyArgumentType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 226 | ASTContext &Context, |
| 227 | llvm::LLVMContext &VMContext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 228 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 229 | virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context, |
| 230 | llvm::LLVMContext &VMContext) const { |
| 231 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context, |
| 232 | VMContext); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 233 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 234 | it != ie; ++it) |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 235 | it->info = classifyArgumentType(it->type, Context, VMContext); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 239 | CodeGenFunction &CGF) const; |
| 240 | |
| 241 | X86_32ABIInfo(ASTContext &Context, bool d) |
| 242 | : ABIInfo(), Context(Context), IsDarwin(d) {} |
| 243 | }; |
| 244 | } |
| 245 | |
| 246 | |
| 247 | /// shouldReturnTypeInRegister - Determine if the given type should be |
| 248 | /// passed in a register (for the Darwin ABI). |
| 249 | bool X86_32ABIInfo::shouldReturnTypeInRegister(QualType Ty, |
| 250 | ASTContext &Context) { |
| 251 | uint64_t Size = Context.getTypeSize(Ty); |
| 252 | |
| 253 | // Type must be register sized. |
| 254 | if (!isRegisterSize(Size)) |
| 255 | return false; |
| 256 | |
| 257 | if (Ty->isVectorType()) { |
| 258 | // 64- and 128- bit vectors inside structures are not returned in |
| 259 | // registers. |
| 260 | if (Size == 64 || Size == 128) |
| 261 | return false; |
| 262 | |
| 263 | return true; |
| 264 | } |
| 265 | |
| 266 | // If this is a builtin, pointer, or complex type, it is ok. |
| 267 | if (Ty->getAsBuiltinType() || Ty->isPointerType() || Ty->isAnyComplexType()) |
| 268 | return true; |
| 269 | |
| 270 | // Arrays are treated like records. |
| 271 | if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) |
| 272 | return shouldReturnTypeInRegister(AT->getElementType(), Context); |
| 273 | |
| 274 | // Otherwise, it must be a record type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 275 | const RecordType *RT = Ty->getAs<RecordType>(); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 276 | if (!RT) return false; |
| 277 | |
| 278 | // Structure types are passed in register if all fields would be |
| 279 | // passed in a register. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 280 | for (RecordDecl::field_iterator i = RT->getDecl()->field_begin(), |
| 281 | e = RT->getDecl()->field_end(); i != e; ++i) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 282 | const FieldDecl *FD = *i; |
| 283 | |
| 284 | // Empty fields are ignored. |
| 285 | if (isEmptyField(Context, FD)) |
| 286 | continue; |
| 287 | |
| 288 | // Check fields recursively. |
| 289 | if (!shouldReturnTypeInRegister(FD->getType(), Context)) |
| 290 | return false; |
| 291 | } |
| 292 | |
| 293 | return true; |
| 294 | } |
| 295 | |
| 296 | ABIArgInfo X86_32ABIInfo::classifyReturnType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 297 | ASTContext &Context, |
| 298 | llvm::LLVMContext &VMContext) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 299 | if (RetTy->isVoidType()) { |
| 300 | return ABIArgInfo::getIgnore(); |
| 301 | } else if (const VectorType *VT = RetTy->getAsVectorType()) { |
| 302 | // On Darwin, some vectors are returned in registers. |
| 303 | if (IsDarwin) { |
| 304 | uint64_t Size = Context.getTypeSize(RetTy); |
| 305 | |
| 306 | // 128-bit vectors are a special case; they are returned in |
| 307 | // registers and we need to make sure to pick a type the LLVM |
| 308 | // backend will like. |
| 309 | if (Size == 128) |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 310 | return |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 311 | ABIArgInfo::getCoerce(llvm::VectorType::get(llvm::Type::Int64Ty, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 312 | 2)); |
| 313 | |
| 314 | // Always return in register if it fits in a general purpose |
| 315 | // register, or if it is 64 bits and has a single element. |
| 316 | if ((Size == 8 || Size == 16 || Size == 32) || |
| 317 | (Size == 64 && VT->getNumElements() == 1)) |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 318 | return ABIArgInfo::getCoerce(llvm::IntegerType::get(Size)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 319 | |
| 320 | return ABIArgInfo::getIndirect(0); |
| 321 | } |
| 322 | |
| 323 | return ABIArgInfo::getDirect(); |
| 324 | } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) { |
| 325 | // Structures with flexible arrays are always indirect. |
| 326 | if (const RecordType *RT = RetTy->getAsStructureType()) |
| 327 | if (RT->getDecl()->hasFlexibleArrayMember()) |
| 328 | return ABIArgInfo::getIndirect(0); |
| 329 | |
| 330 | // Outside of Darwin, structs and unions are always indirect. |
| 331 | if (!IsDarwin && !RetTy->isAnyComplexType()) |
| 332 | return ABIArgInfo::getIndirect(0); |
| 333 | |
| 334 | // Classify "single element" structs as their element type. |
| 335 | if (const Type *SeltTy = isSingleElementStruct(RetTy, Context)) { |
| 336 | if (const BuiltinType *BT = SeltTy->getAsBuiltinType()) { |
| 337 | if (BT->isIntegerType()) { |
| 338 | // We need to use the size of the structure, padding |
| 339 | // bit-fields can adjust that to be larger than the single |
| 340 | // element type. |
| 341 | uint64_t Size = Context.getTypeSize(RetTy); |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 342 | return ABIArgInfo::getCoerce( |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 343 | llvm::IntegerType::get((unsigned) Size)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 344 | } else if (BT->getKind() == BuiltinType::Float) { |
| 345 | assert(Context.getTypeSize(RetTy) == Context.getTypeSize(SeltTy) && |
| 346 | "Unexpect single element structure size!"); |
| 347 | return ABIArgInfo::getCoerce(llvm::Type::FloatTy); |
| 348 | } else if (BT->getKind() == BuiltinType::Double) { |
| 349 | assert(Context.getTypeSize(RetTy) == Context.getTypeSize(SeltTy) && |
| 350 | "Unexpect single element structure size!"); |
| 351 | return ABIArgInfo::getCoerce(llvm::Type::DoubleTy); |
| 352 | } |
| 353 | } else if (SeltTy->isPointerType()) { |
| 354 | // FIXME: It would be really nice if this could come out as the proper |
| 355 | // pointer type. |
| 356 | llvm::Type *PtrTy = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 357 | llvm::PointerType::getUnqual(llvm::Type::Int8Ty); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 358 | return ABIArgInfo::getCoerce(PtrTy); |
| 359 | } else if (SeltTy->isVectorType()) { |
| 360 | // 64- and 128-bit vectors are never returned in a |
| 361 | // register when inside a structure. |
| 362 | uint64_t Size = Context.getTypeSize(RetTy); |
| 363 | if (Size == 64 || Size == 128) |
| 364 | return ABIArgInfo::getIndirect(0); |
| 365 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 366 | return classifyReturnType(QualType(SeltTy, 0), Context, VMContext); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 367 | } |
| 368 | } |
| 369 | |
| 370 | // Small structures which are register sized are generally returned |
| 371 | // in a register. |
| 372 | if (X86_32ABIInfo::shouldReturnTypeInRegister(RetTy, Context)) { |
| 373 | uint64_t Size = Context.getTypeSize(RetTy); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 374 | return ABIArgInfo::getCoerce(llvm::IntegerType::get(Size)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | return ABIArgInfo::getIndirect(0); |
| 378 | } else { |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 379 | return (RetTy->isPromotableIntegerType() ? |
| 380 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 381 | } |
| 382 | } |
| 383 | |
Eli Friedman | a1e6de9 | 2009-06-13 21:37:10 +0000 | [diff] [blame] | 384 | unsigned X86_32ABIInfo::getIndirectArgumentAlignment(QualType Ty, |
| 385 | ASTContext &Context) { |
| 386 | unsigned Align = Context.getTypeAlign(Ty); |
| 387 | if (Align < 128) return 0; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 388 | if (const RecordType* RT = Ty->getAs<RecordType>()) |
Eli Friedman | a1e6de9 | 2009-06-13 21:37:10 +0000 | [diff] [blame] | 389 | if (typeContainsSSEVector(RT->getDecl(), Context)) |
| 390 | return 16; |
| 391 | return 0; |
| 392 | } |
| 393 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 394 | ABIArgInfo X86_32ABIInfo::classifyArgumentType(QualType Ty, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 395 | ASTContext &Context, |
| 396 | llvm::LLVMContext &VMContext) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 397 | // FIXME: Set alignment on indirect arguments. |
| 398 | if (CodeGenFunction::hasAggregateLLVMType(Ty)) { |
| 399 | // Structures with flexible arrays are always indirect. |
| 400 | if (const RecordType *RT = Ty->getAsStructureType()) |
| 401 | if (RT->getDecl()->hasFlexibleArrayMember()) |
Eli Friedman | a1e6de9 | 2009-06-13 21:37:10 +0000 | [diff] [blame] | 402 | return ABIArgInfo::getIndirect(getIndirectArgumentAlignment(Ty, |
| 403 | Context)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 404 | |
| 405 | // Ignore empty structs. |
Eli Friedman | a1e6de9 | 2009-06-13 21:37:10 +0000 | [diff] [blame] | 406 | if (Ty->isStructureType() && Context.getTypeSize(Ty) == 0) |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 407 | return ABIArgInfo::getIgnore(); |
| 408 | |
| 409 | // Expand structs with size <= 128-bits which consist only of |
| 410 | // basic types (int, long long, float, double, xxx*). This is |
| 411 | // non-recursive and does not ignore empty fields. |
| 412 | if (const RecordType *RT = Ty->getAsStructureType()) { |
| 413 | if (Context.getTypeSize(Ty) <= 4*32 && |
| 414 | areAllFields32Or64BitBasicType(RT->getDecl(), Context)) |
| 415 | return ABIArgInfo::getExpand(); |
| 416 | } |
| 417 | |
Eli Friedman | a1e6de9 | 2009-06-13 21:37:10 +0000 | [diff] [blame] | 418 | return ABIArgInfo::getIndirect(getIndirectArgumentAlignment(Ty, Context)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 419 | } else { |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 420 | return (Ty->isPromotableIntegerType() ? |
| 421 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 422 | } |
| 423 | } |
| 424 | |
| 425 | llvm::Value *X86_32ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 426 | CodeGenFunction &CGF) const { |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 427 | const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty); |
| 428 | const llvm::Type *BPP = llvm::PointerType::getUnqual(BP); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 429 | |
| 430 | CGBuilderTy &Builder = CGF.Builder; |
| 431 | llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP, |
| 432 | "ap"); |
| 433 | llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur"); |
| 434 | llvm::Type *PTy = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 435 | llvm::PointerType::getUnqual(CGF.ConvertType(Ty)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 436 | llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy); |
| 437 | |
| 438 | uint64_t Offset = |
| 439 | llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 4); |
| 440 | llvm::Value *NextAddr = |
| 441 | Builder.CreateGEP(Addr, |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 442 | llvm::ConstantInt::get(llvm::Type::Int32Ty, Offset), |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 443 | "ap.next"); |
| 444 | Builder.CreateStore(NextAddr, VAListAddrAsBPP); |
| 445 | |
| 446 | return AddrTyped; |
| 447 | } |
| 448 | |
| 449 | namespace { |
| 450 | /// X86_64ABIInfo - The X86_64 ABI information. |
| 451 | class X86_64ABIInfo : public ABIInfo { |
| 452 | enum Class { |
| 453 | Integer = 0, |
| 454 | SSE, |
| 455 | SSEUp, |
| 456 | X87, |
| 457 | X87Up, |
| 458 | ComplexX87, |
| 459 | NoClass, |
| 460 | Memory |
| 461 | }; |
| 462 | |
| 463 | /// merge - Implement the X86_64 ABI merging algorithm. |
| 464 | /// |
| 465 | /// Merge an accumulating classification \arg Accum with a field |
| 466 | /// classification \arg Field. |
| 467 | /// |
| 468 | /// \param Accum - The accumulating classification. This should |
| 469 | /// always be either NoClass or the result of a previous merge |
| 470 | /// call. In addition, this should never be Memory (the caller |
| 471 | /// should just return Memory for the aggregate). |
| 472 | Class merge(Class Accum, Class Field) const; |
| 473 | |
| 474 | /// classify - Determine the x86_64 register classes in which the |
| 475 | /// given type T should be passed. |
| 476 | /// |
| 477 | /// \param Lo - The classification for the parts of the type |
| 478 | /// residing in the low word of the containing object. |
| 479 | /// |
| 480 | /// \param Hi - The classification for the parts of the type |
| 481 | /// residing in the high word of the containing object. |
| 482 | /// |
| 483 | /// \param OffsetBase - The bit offset of this type in the |
| 484 | /// containing object. Some parameters are classified different |
| 485 | /// depending on whether they straddle an eightbyte boundary. |
| 486 | /// |
| 487 | /// If a word is unused its result will be NoClass; if a type should |
| 488 | /// be passed in Memory then at least the classification of \arg Lo |
| 489 | /// will be Memory. |
| 490 | /// |
| 491 | /// The \arg Lo class will be NoClass iff the argument is ignored. |
| 492 | /// |
| 493 | /// If the \arg Lo class is ComplexX87, then the \arg Hi class will |
| 494 | /// also be ComplexX87. |
| 495 | void classify(QualType T, ASTContext &Context, uint64_t OffsetBase, |
| 496 | Class &Lo, Class &Hi) const; |
| 497 | |
| 498 | /// getCoerceResult - Given a source type \arg Ty and an LLVM type |
| 499 | /// to coerce to, chose the best way to pass Ty in the same place |
| 500 | /// that \arg CoerceTo would be passed, but while keeping the |
| 501 | /// emitted code as simple as possible. |
| 502 | /// |
| 503 | /// FIXME: Note, this should be cleaned up to just take an enumeration of all |
| 504 | /// the ways we might want to pass things, instead of constructing an LLVM |
| 505 | /// type. This makes this code more explicit, and it makes it clearer that we |
| 506 | /// are also doing this for correctness in the case of passing scalar types. |
| 507 | ABIArgInfo getCoerceResult(QualType Ty, |
| 508 | const llvm::Type *CoerceTo, |
| 509 | ASTContext &Context) const; |
| 510 | |
| 511 | /// getIndirectResult - Give a source type \arg Ty, return a suitable result |
| 512 | /// such that the argument will be passed in memory. |
| 513 | ABIArgInfo getIndirectResult(QualType Ty, |
| 514 | ASTContext &Context) const; |
| 515 | |
| 516 | ABIArgInfo classifyReturnType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 517 | ASTContext &Context, |
| 518 | llvm::LLVMContext &VMContext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 519 | |
| 520 | ABIArgInfo classifyArgumentType(QualType Ty, |
| 521 | ASTContext &Context, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 522 | llvm::LLVMContext &VMContext, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 523 | unsigned &neededInt, |
| 524 | unsigned &neededSSE) const; |
| 525 | |
| 526 | public: |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 527 | virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context, |
| 528 | llvm::LLVMContext &VMContext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 529 | |
| 530 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 531 | CodeGenFunction &CGF) const; |
| 532 | }; |
| 533 | } |
| 534 | |
| 535 | X86_64ABIInfo::Class X86_64ABIInfo::merge(Class Accum, |
| 536 | Class Field) const { |
| 537 | // AMD64-ABI 3.2.3p2: Rule 4. Each field of an object is |
| 538 | // classified recursively so that always two fields are |
| 539 | // considered. The resulting class is calculated according to |
| 540 | // the classes of the fields in the eightbyte: |
| 541 | // |
| 542 | // (a) If both classes are equal, this is the resulting class. |
| 543 | // |
| 544 | // (b) If one of the classes is NO_CLASS, the resulting class is |
| 545 | // the other class. |
| 546 | // |
| 547 | // (c) If one of the classes is MEMORY, the result is the MEMORY |
| 548 | // class. |
| 549 | // |
| 550 | // (d) If one of the classes is INTEGER, the result is the |
| 551 | // INTEGER. |
| 552 | // |
| 553 | // (e) If one of the classes is X87, X87UP, COMPLEX_X87 class, |
| 554 | // MEMORY is used as class. |
| 555 | // |
| 556 | // (f) Otherwise class SSE is used. |
| 557 | |
| 558 | // Accum should never be memory (we should have returned) or |
| 559 | // ComplexX87 (because this cannot be passed in a structure). |
| 560 | assert((Accum != Memory && Accum != ComplexX87) && |
| 561 | "Invalid accumulated classification during merge."); |
| 562 | if (Accum == Field || Field == NoClass) |
| 563 | return Accum; |
| 564 | else if (Field == Memory) |
| 565 | return Memory; |
| 566 | else if (Accum == NoClass) |
| 567 | return Field; |
| 568 | else if (Accum == Integer || Field == Integer) |
| 569 | return Integer; |
| 570 | else if (Field == X87 || Field == X87Up || Field == ComplexX87 || |
| 571 | Accum == X87 || Accum == X87Up) |
| 572 | return Memory; |
| 573 | else |
| 574 | return SSE; |
| 575 | } |
| 576 | |
| 577 | void X86_64ABIInfo::classify(QualType Ty, |
| 578 | ASTContext &Context, |
| 579 | uint64_t OffsetBase, |
| 580 | Class &Lo, Class &Hi) const { |
| 581 | // FIXME: This code can be simplified by introducing a simple value class for |
| 582 | // Class pairs with appropriate constructor methods for the various |
| 583 | // situations. |
| 584 | |
| 585 | // FIXME: Some of the split computations are wrong; unaligned vectors |
| 586 | // shouldn't be passed in registers for example, so there is no chance they |
| 587 | // can straddle an eightbyte. Verify & simplify. |
| 588 | |
| 589 | Lo = Hi = NoClass; |
| 590 | |
| 591 | Class &Current = OffsetBase < 64 ? Lo : Hi; |
| 592 | Current = Memory; |
| 593 | |
| 594 | if (const BuiltinType *BT = Ty->getAsBuiltinType()) { |
| 595 | BuiltinType::Kind k = BT->getKind(); |
| 596 | |
| 597 | if (k == BuiltinType::Void) { |
| 598 | Current = NoClass; |
| 599 | } else if (k == BuiltinType::Int128 || k == BuiltinType::UInt128) { |
| 600 | Lo = Integer; |
| 601 | Hi = Integer; |
| 602 | } else if (k >= BuiltinType::Bool && k <= BuiltinType::LongLong) { |
| 603 | Current = Integer; |
| 604 | } else if (k == BuiltinType::Float || k == BuiltinType::Double) { |
| 605 | Current = SSE; |
| 606 | } else if (k == BuiltinType::LongDouble) { |
| 607 | Lo = X87; |
| 608 | Hi = X87Up; |
| 609 | } |
| 610 | // FIXME: _Decimal32 and _Decimal64 are SSE. |
| 611 | // FIXME: _float128 and _Decimal128 are (SSE, SSEUp). |
| 612 | } else if (const EnumType *ET = Ty->getAsEnumType()) { |
| 613 | // Classify the underlying integer type. |
| 614 | classify(ET->getDecl()->getIntegerType(), Context, OffsetBase, Lo, Hi); |
| 615 | } else if (Ty->hasPointerRepresentation()) { |
| 616 | Current = Integer; |
| 617 | } else if (const VectorType *VT = Ty->getAsVectorType()) { |
| 618 | uint64_t Size = Context.getTypeSize(VT); |
| 619 | if (Size == 32) { |
| 620 | // gcc passes all <4 x char>, <2 x short>, <1 x int>, <1 x |
| 621 | // float> as integer. |
| 622 | Current = Integer; |
| 623 | |
| 624 | // If this type crosses an eightbyte boundary, it should be |
| 625 | // split. |
| 626 | uint64_t EB_Real = (OffsetBase) / 64; |
| 627 | uint64_t EB_Imag = (OffsetBase + Size - 1) / 64; |
| 628 | if (EB_Real != EB_Imag) |
| 629 | Hi = Lo; |
| 630 | } else if (Size == 64) { |
| 631 | // gcc passes <1 x double> in memory. :( |
| 632 | if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::Double)) |
| 633 | return; |
| 634 | |
| 635 | // gcc passes <1 x long long> as INTEGER. |
| 636 | if (VT->getElementType()->isSpecificBuiltinType(BuiltinType::LongLong)) |
| 637 | Current = Integer; |
| 638 | else |
| 639 | Current = SSE; |
| 640 | |
| 641 | // If this type crosses an eightbyte boundary, it should be |
| 642 | // split. |
| 643 | if (OffsetBase && OffsetBase != 64) |
| 644 | Hi = Lo; |
| 645 | } else if (Size == 128) { |
| 646 | Lo = SSE; |
| 647 | Hi = SSEUp; |
| 648 | } |
| 649 | } else if (const ComplexType *CT = Ty->getAsComplexType()) { |
| 650 | QualType ET = Context.getCanonicalType(CT->getElementType()); |
| 651 | |
| 652 | uint64_t Size = Context.getTypeSize(Ty); |
| 653 | if (ET->isIntegralType()) { |
| 654 | if (Size <= 64) |
| 655 | Current = Integer; |
| 656 | else if (Size <= 128) |
| 657 | Lo = Hi = Integer; |
| 658 | } else if (ET == Context.FloatTy) |
| 659 | Current = SSE; |
| 660 | else if (ET == Context.DoubleTy) |
| 661 | Lo = Hi = SSE; |
| 662 | else if (ET == Context.LongDoubleTy) |
| 663 | Current = ComplexX87; |
| 664 | |
| 665 | // If this complex type crosses an eightbyte boundary then it |
| 666 | // should be split. |
| 667 | uint64_t EB_Real = (OffsetBase) / 64; |
| 668 | uint64_t EB_Imag = (OffsetBase + Context.getTypeSize(ET)) / 64; |
| 669 | if (Hi == NoClass && EB_Real != EB_Imag) |
| 670 | Hi = Lo; |
| 671 | } else if (const ConstantArrayType *AT = Context.getAsConstantArrayType(Ty)) { |
| 672 | // Arrays are treated like structures. |
| 673 | |
| 674 | uint64_t Size = Context.getTypeSize(Ty); |
| 675 | |
| 676 | // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger |
| 677 | // than two eightbytes, ..., it has class MEMORY. |
| 678 | if (Size > 128) |
| 679 | return; |
| 680 | |
| 681 | // AMD64-ABI 3.2.3p2: Rule 1. If ..., or it contains unaligned |
| 682 | // fields, it has class MEMORY. |
| 683 | // |
| 684 | // Only need to check alignment of array base. |
| 685 | if (OffsetBase % Context.getTypeAlign(AT->getElementType())) |
| 686 | return; |
| 687 | |
| 688 | // Otherwise implement simplified merge. We could be smarter about |
| 689 | // this, but it isn't worth it and would be harder to verify. |
| 690 | Current = NoClass; |
| 691 | uint64_t EltSize = Context.getTypeSize(AT->getElementType()); |
| 692 | uint64_t ArraySize = AT->getSize().getZExtValue(); |
| 693 | for (uint64_t i=0, Offset=OffsetBase; i<ArraySize; ++i, Offset += EltSize) { |
| 694 | Class FieldLo, FieldHi; |
| 695 | classify(AT->getElementType(), Context, Offset, FieldLo, FieldHi); |
| 696 | Lo = merge(Lo, FieldLo); |
| 697 | Hi = merge(Hi, FieldHi); |
| 698 | if (Lo == Memory || Hi == Memory) |
| 699 | break; |
| 700 | } |
| 701 | |
| 702 | // Do post merger cleanup (see below). Only case we worry about is Memory. |
| 703 | if (Hi == Memory) |
| 704 | Lo = Memory; |
| 705 | assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp array classification."); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 706 | } else if (const RecordType *RT = Ty->getAs<RecordType>()) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 707 | uint64_t Size = Context.getTypeSize(Ty); |
| 708 | |
| 709 | // AMD64-ABI 3.2.3p2: Rule 1. If the size of an object is larger |
| 710 | // than two eightbytes, ..., it has class MEMORY. |
| 711 | if (Size > 128) |
| 712 | return; |
| 713 | |
| 714 | const RecordDecl *RD = RT->getDecl(); |
| 715 | |
| 716 | // Assume variable sized types are passed in memory. |
| 717 | if (RD->hasFlexibleArrayMember()) |
| 718 | return; |
| 719 | |
| 720 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 721 | |
| 722 | // Reset Lo class, this will be recomputed. |
| 723 | Current = NoClass; |
| 724 | unsigned idx = 0; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 725 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 726 | i != e; ++i, ++idx) { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 727 | uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx); |
| 728 | bool BitField = i->isBitField(); |
| 729 | |
| 730 | // AMD64-ABI 3.2.3p2: Rule 1. If ..., or it contains unaligned |
| 731 | // fields, it has class MEMORY. |
| 732 | // |
| 733 | // Note, skip this test for bit-fields, see below. |
| 734 | if (!BitField && Offset % Context.getTypeAlign(i->getType())) { |
| 735 | Lo = Memory; |
| 736 | return; |
| 737 | } |
| 738 | |
| 739 | // Classify this field. |
| 740 | // |
| 741 | // AMD64-ABI 3.2.3p2: Rule 3. If the size of the aggregate |
| 742 | // exceeds a single eightbyte, each is classified |
| 743 | // separately. Each eightbyte gets initialized to class |
| 744 | // NO_CLASS. |
| 745 | Class FieldLo, FieldHi; |
| 746 | |
| 747 | // Bit-fields require special handling, they do not force the |
| 748 | // structure to be passed in memory even if unaligned, and |
| 749 | // therefore they can straddle an eightbyte. |
| 750 | if (BitField) { |
| 751 | // Ignore padding bit-fields. |
| 752 | if (i->isUnnamedBitfield()) |
| 753 | continue; |
| 754 | |
| 755 | uint64_t Offset = OffsetBase + Layout.getFieldOffset(idx); |
| 756 | uint64_t Size = i->getBitWidth()->EvaluateAsInt(Context).getZExtValue(); |
| 757 | |
| 758 | uint64_t EB_Lo = Offset / 64; |
| 759 | uint64_t EB_Hi = (Offset + Size - 1) / 64; |
| 760 | FieldLo = FieldHi = NoClass; |
| 761 | if (EB_Lo) { |
| 762 | assert(EB_Hi == EB_Lo && "Invalid classification, type > 16 bytes."); |
| 763 | FieldLo = NoClass; |
| 764 | FieldHi = Integer; |
| 765 | } else { |
| 766 | FieldLo = Integer; |
| 767 | FieldHi = EB_Hi ? Integer : NoClass; |
| 768 | } |
| 769 | } else |
| 770 | classify(i->getType(), Context, Offset, FieldLo, FieldHi); |
| 771 | Lo = merge(Lo, FieldLo); |
| 772 | Hi = merge(Hi, FieldHi); |
| 773 | if (Lo == Memory || Hi == Memory) |
| 774 | break; |
| 775 | } |
| 776 | |
| 777 | // AMD64-ABI 3.2.3p2: Rule 5. Then a post merger cleanup is done: |
| 778 | // |
| 779 | // (a) If one of the classes is MEMORY, the whole argument is |
| 780 | // passed in memory. |
| 781 | // |
| 782 | // (b) If SSEUP is not preceeded by SSE, it is converted to SSE. |
| 783 | |
| 784 | // The first of these conditions is guaranteed by how we implement |
| 785 | // the merge (just bail). |
| 786 | // |
| 787 | // The second condition occurs in the case of unions; for example |
| 788 | // union { _Complex double; unsigned; }. |
| 789 | if (Hi == Memory) |
| 790 | Lo = Memory; |
| 791 | if (Hi == SSEUp && Lo != SSE) |
| 792 | Hi = SSE; |
| 793 | } |
| 794 | } |
| 795 | |
| 796 | ABIArgInfo X86_64ABIInfo::getCoerceResult(QualType Ty, |
| 797 | const llvm::Type *CoerceTo, |
| 798 | ASTContext &Context) const { |
| 799 | if (CoerceTo == llvm::Type::Int64Ty) { |
| 800 | // Integer and pointer types will end up in a general purpose |
| 801 | // register. |
| 802 | if (Ty->isIntegralType() || Ty->isPointerType()) |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 803 | return (Ty->isPromotableIntegerType() ? |
| 804 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 805 | } else if (CoerceTo == llvm::Type::DoubleTy) { |
| 806 | // FIXME: It would probably be better to make CGFunctionInfo only map using |
| 807 | // canonical types than to canonize here. |
| 808 | QualType CTy = Context.getCanonicalType(Ty); |
| 809 | |
| 810 | // Float and double end up in a single SSE reg. |
| 811 | if (CTy == Context.FloatTy || CTy == Context.DoubleTy) |
| 812 | return ABIArgInfo::getDirect(); |
| 813 | |
| 814 | } |
| 815 | |
| 816 | return ABIArgInfo::getCoerce(CoerceTo); |
| 817 | } |
| 818 | |
| 819 | ABIArgInfo X86_64ABIInfo::getIndirectResult(QualType Ty, |
| 820 | ASTContext &Context) const { |
| 821 | // If this is a scalar LLVM value then assume LLVM will pass it in the right |
| 822 | // place naturally. |
| 823 | if (!CodeGenFunction::hasAggregateLLVMType(Ty)) |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 824 | return (Ty->isPromotableIntegerType() ? |
| 825 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 826 | |
| 827 | // FIXME: Set alignment correctly. |
| 828 | return ABIArgInfo::getIndirect(0); |
| 829 | } |
| 830 | |
| 831 | ABIArgInfo X86_64ABIInfo::classifyReturnType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 832 | ASTContext &Context, |
| 833 | llvm::LLVMContext &VMContext) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 834 | // AMD64-ABI 3.2.3p4: Rule 1. Classify the return type with the |
| 835 | // classification algorithm. |
| 836 | X86_64ABIInfo::Class Lo, Hi; |
| 837 | classify(RetTy, Context, 0, Lo, Hi); |
| 838 | |
| 839 | // Check some invariants. |
| 840 | assert((Hi != Memory || Lo == Memory) && "Invalid memory classification."); |
| 841 | assert((Lo != NoClass || Hi == NoClass) && "Invalid null classification."); |
| 842 | assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification."); |
| 843 | |
| 844 | const llvm::Type *ResType = 0; |
| 845 | switch (Lo) { |
| 846 | case NoClass: |
| 847 | return ABIArgInfo::getIgnore(); |
| 848 | |
| 849 | case SSEUp: |
| 850 | case X87Up: |
| 851 | assert(0 && "Invalid classification for lo word."); |
| 852 | |
| 853 | // AMD64-ABI 3.2.3p4: Rule 2. Types of class memory are returned via |
| 854 | // hidden argument. |
| 855 | case Memory: |
| 856 | return getIndirectResult(RetTy, Context); |
| 857 | |
| 858 | // AMD64-ABI 3.2.3p4: Rule 3. If the class is INTEGER, the next |
| 859 | // available register of the sequence %rax, %rdx is used. |
| 860 | case Integer: |
| 861 | ResType = llvm::Type::Int64Ty; break; |
| 862 | |
| 863 | // AMD64-ABI 3.2.3p4: Rule 4. If the class is SSE, the next |
| 864 | // available SSE register of the sequence %xmm0, %xmm1 is used. |
| 865 | case SSE: |
| 866 | ResType = llvm::Type::DoubleTy; break; |
| 867 | |
| 868 | // AMD64-ABI 3.2.3p4: Rule 6. If the class is X87, the value is |
| 869 | // returned on the X87 stack in %st0 as 80-bit x87 number. |
| 870 | case X87: |
| 871 | ResType = llvm::Type::X86_FP80Ty; break; |
| 872 | |
| 873 | // AMD64-ABI 3.2.3p4: Rule 8. If the class is COMPLEX_X87, the real |
| 874 | // part of the value is returned in %st0 and the imaginary part in |
| 875 | // %st1. |
| 876 | case ComplexX87: |
| 877 | assert(Hi == ComplexX87 && "Unexpected ComplexX87 classification."); |
Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame^] | 878 | ResType = llvm::StructType::get(VMContext, llvm::Type::X86_FP80Ty, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 879 | llvm::Type::X86_FP80Ty, |
| 880 | NULL); |
| 881 | break; |
| 882 | } |
| 883 | |
| 884 | switch (Hi) { |
| 885 | // Memory was handled previously and X87 should |
| 886 | // never occur as a hi class. |
| 887 | case Memory: |
| 888 | case X87: |
| 889 | assert(0 && "Invalid classification for hi word."); |
| 890 | |
| 891 | case ComplexX87: // Previously handled. |
| 892 | case NoClass: break; |
| 893 | |
| 894 | case Integer: |
Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame^] | 895 | ResType = llvm::StructType::get(VMContext, ResType, |
| 896 | llvm::Type::Int64Ty, NULL); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 897 | break; |
| 898 | case SSE: |
Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame^] | 899 | ResType = llvm::StructType::get(VMContext, ResType, |
| 900 | llvm::Type::DoubleTy, NULL); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 901 | break; |
| 902 | |
| 903 | // AMD64-ABI 3.2.3p4: Rule 5. If the class is SSEUP, the eightbyte |
| 904 | // is passed in the upper half of the last used SSE register. |
| 905 | // |
| 906 | // SSEUP should always be preceeded by SSE, just widen. |
| 907 | case SSEUp: |
| 908 | assert(Lo == SSE && "Unexpected SSEUp classification."); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 909 | ResType = llvm::VectorType::get(llvm::Type::DoubleTy, 2); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 910 | break; |
| 911 | |
| 912 | // AMD64-ABI 3.2.3p4: Rule 7. If the class is X87UP, the value is |
| 913 | // returned together with the previous X87 value in %st0. |
| 914 | case X87Up: |
| 915 | // If X87Up is preceeded by X87, we don't need to do |
| 916 | // anything. However, in some cases with unions it may not be |
| 917 | // preceeded by X87. In such situations we follow gcc and pass the |
| 918 | // extra bits in an SSE reg. |
| 919 | if (Lo != X87) |
Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame^] | 920 | ResType = llvm::StructType::get(VMContext, ResType, |
| 921 | llvm::Type::DoubleTy, NULL); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 922 | break; |
| 923 | } |
| 924 | |
| 925 | return getCoerceResult(RetTy, ResType, Context); |
| 926 | } |
| 927 | |
| 928 | ABIArgInfo X86_64ABIInfo::classifyArgumentType(QualType Ty, ASTContext &Context, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 929 | llvm::LLVMContext &VMContext, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 930 | unsigned &neededInt, |
| 931 | unsigned &neededSSE) const { |
| 932 | X86_64ABIInfo::Class Lo, Hi; |
| 933 | classify(Ty, Context, 0, Lo, Hi); |
| 934 | |
| 935 | // Check some invariants. |
| 936 | // FIXME: Enforce these by construction. |
| 937 | assert((Hi != Memory || Lo == Memory) && "Invalid memory classification."); |
| 938 | assert((Lo != NoClass || Hi == NoClass) && "Invalid null classification."); |
| 939 | assert((Hi != SSEUp || Lo == SSE) && "Invalid SSEUp classification."); |
| 940 | |
| 941 | neededInt = 0; |
| 942 | neededSSE = 0; |
| 943 | const llvm::Type *ResType = 0; |
| 944 | switch (Lo) { |
| 945 | case NoClass: |
| 946 | return ABIArgInfo::getIgnore(); |
| 947 | |
| 948 | // AMD64-ABI 3.2.3p3: Rule 1. If the class is MEMORY, pass the argument |
| 949 | // on the stack. |
| 950 | case Memory: |
| 951 | |
| 952 | // AMD64-ABI 3.2.3p3: Rule 5. If the class is X87, X87UP or |
| 953 | // COMPLEX_X87, it is passed in memory. |
| 954 | case X87: |
| 955 | case ComplexX87: |
| 956 | return getIndirectResult(Ty, Context); |
| 957 | |
| 958 | case SSEUp: |
| 959 | case X87Up: |
| 960 | assert(0 && "Invalid classification for lo word."); |
| 961 | |
| 962 | // AMD64-ABI 3.2.3p3: Rule 2. If the class is INTEGER, the next |
| 963 | // available register of the sequence %rdi, %rsi, %rdx, %rcx, %r8 |
| 964 | // and %r9 is used. |
| 965 | case Integer: |
| 966 | ++neededInt; |
| 967 | ResType = llvm::Type::Int64Ty; |
| 968 | break; |
| 969 | |
| 970 | // AMD64-ABI 3.2.3p3: Rule 3. If the class is SSE, the next |
| 971 | // available SSE register is used, the registers are taken in the |
| 972 | // order from %xmm0 to %xmm7. |
| 973 | case SSE: |
| 974 | ++neededSSE; |
| 975 | ResType = llvm::Type::DoubleTy; |
| 976 | break; |
| 977 | } |
| 978 | |
| 979 | switch (Hi) { |
| 980 | // Memory was handled previously, ComplexX87 and X87 should |
| 981 | // never occur as hi classes, and X87Up must be preceed by X87, |
| 982 | // which is passed in memory. |
| 983 | case Memory: |
| 984 | case X87: |
| 985 | case ComplexX87: |
| 986 | assert(0 && "Invalid classification for hi word."); |
| 987 | break; |
| 988 | |
| 989 | case NoClass: break; |
| 990 | case Integer: |
Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame^] | 991 | ResType = llvm::StructType::get(VMContext, ResType, |
| 992 | llvm::Type::Int64Ty, NULL); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 993 | ++neededInt; |
| 994 | break; |
| 995 | |
| 996 | // X87Up generally doesn't occur here (long double is passed in |
| 997 | // memory), except in situations involving unions. |
| 998 | case X87Up: |
| 999 | case SSE: |
Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame^] | 1000 | ResType = llvm::StructType::get(VMContext, ResType, |
| 1001 | llvm::Type::DoubleTy, NULL); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1002 | ++neededSSE; |
| 1003 | break; |
| 1004 | |
| 1005 | // AMD64-ABI 3.2.3p3: Rule 4. If the class is SSEUP, the |
| 1006 | // eightbyte is passed in the upper half of the last used SSE |
| 1007 | // register. |
| 1008 | case SSEUp: |
| 1009 | assert(Lo == SSE && "Unexpected SSEUp classification."); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1010 | ResType = llvm::VectorType::get(llvm::Type::DoubleTy, 2); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1011 | break; |
| 1012 | } |
| 1013 | |
| 1014 | return getCoerceResult(Ty, ResType, Context); |
| 1015 | } |
| 1016 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1017 | void X86_64ABIInfo::computeInfo(CGFunctionInfo &FI, ASTContext &Context, |
| 1018 | llvm::LLVMContext &VMContext) const { |
| 1019 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), |
| 1020 | Context, VMContext); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1021 | |
| 1022 | // Keep track of the number of assigned registers. |
| 1023 | unsigned freeIntRegs = 6, freeSSERegs = 8; |
| 1024 | |
| 1025 | // If the return value is indirect, then the hidden argument is consuming one |
| 1026 | // integer register. |
| 1027 | if (FI.getReturnInfo().isIndirect()) |
| 1028 | --freeIntRegs; |
| 1029 | |
| 1030 | // AMD64-ABI 3.2.3p3: Once arguments are classified, the registers |
| 1031 | // get assigned (in left-to-right order) for passing as follows... |
| 1032 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 1033 | it != ie; ++it) { |
| 1034 | unsigned neededInt, neededSSE; |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1035 | it->info = classifyArgumentType(it->type, Context, VMContext, |
| 1036 | neededInt, neededSSE); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1037 | |
| 1038 | // AMD64-ABI 3.2.3p3: If there are no registers available for any |
| 1039 | // eightbyte of an argument, the whole argument is passed on the |
| 1040 | // stack. If registers have already been assigned for some |
| 1041 | // eightbytes of such an argument, the assignments get reverted. |
| 1042 | if (freeIntRegs >= neededInt && freeSSERegs >= neededSSE) { |
| 1043 | freeIntRegs -= neededInt; |
| 1044 | freeSSERegs -= neededSSE; |
| 1045 | } else { |
| 1046 | it->info = getIndirectResult(it->type, Context); |
| 1047 | } |
| 1048 | } |
| 1049 | } |
| 1050 | |
| 1051 | static llvm::Value *EmitVAArgFromMemory(llvm::Value *VAListAddr, |
| 1052 | QualType Ty, |
| 1053 | CodeGenFunction &CGF) { |
| 1054 | llvm::Value *overflow_arg_area_p = |
| 1055 | CGF.Builder.CreateStructGEP(VAListAddr, 2, "overflow_arg_area_p"); |
| 1056 | llvm::Value *overflow_arg_area = |
| 1057 | CGF.Builder.CreateLoad(overflow_arg_area_p, "overflow_arg_area"); |
| 1058 | |
| 1059 | // AMD64-ABI 3.5.7p5: Step 7. Align l->overflow_arg_area upwards to a 16 |
| 1060 | // byte boundary if alignment needed by type exceeds 8 byte boundary. |
| 1061 | uint64_t Align = CGF.getContext().getTypeAlign(Ty) / 8; |
| 1062 | if (Align > 8) { |
| 1063 | // Note that we follow the ABI & gcc here, even though the type |
| 1064 | // could in theory have an alignment greater than 16. This case |
| 1065 | // shouldn't ever matter in practice. |
| 1066 | |
| 1067 | // overflow_arg_area = (overflow_arg_area + 15) & ~15; |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1068 | llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty, 15); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1069 | overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset); |
| 1070 | llvm::Value *AsInt = CGF.Builder.CreatePtrToInt(overflow_arg_area, |
| 1071 | llvm::Type::Int64Ty); |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1072 | llvm::Value *Mask = llvm::ConstantInt::get(llvm::Type::Int64Ty, ~15LL); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1073 | overflow_arg_area = |
| 1074 | CGF.Builder.CreateIntToPtr(CGF.Builder.CreateAnd(AsInt, Mask), |
| 1075 | overflow_arg_area->getType(), |
| 1076 | "overflow_arg_area.align"); |
| 1077 | } |
| 1078 | |
| 1079 | // AMD64-ABI 3.5.7p5: Step 8. Fetch type from l->overflow_arg_area. |
| 1080 | const llvm::Type *LTy = CGF.ConvertTypeForMem(Ty); |
| 1081 | llvm::Value *Res = |
| 1082 | CGF.Builder.CreateBitCast(overflow_arg_area, |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1083 | llvm::PointerType::getUnqual(LTy)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1084 | |
| 1085 | // AMD64-ABI 3.5.7p5: Step 9. Set l->overflow_arg_area to: |
| 1086 | // l->overflow_arg_area + sizeof(type). |
| 1087 | // AMD64-ABI 3.5.7p5: Step 10. Align l->overflow_arg_area upwards to |
| 1088 | // an 8 byte boundary. |
| 1089 | |
| 1090 | uint64_t SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8; |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1091 | llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1092 | (SizeInBytes + 7) & ~7); |
| 1093 | overflow_arg_area = CGF.Builder.CreateGEP(overflow_arg_area, Offset, |
| 1094 | "overflow_arg_area.next"); |
| 1095 | CGF.Builder.CreateStore(overflow_arg_area, overflow_arg_area_p); |
| 1096 | |
| 1097 | // AMD64-ABI 3.5.7p5: Step 11. Return the fetched type. |
| 1098 | return Res; |
| 1099 | } |
| 1100 | |
| 1101 | llvm::Value *X86_64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 1102 | CodeGenFunction &CGF) const { |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1103 | llvm::LLVMContext &VMContext = CGF.getLLVMContext(); |
| 1104 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1105 | // Assume that va_list type is correct; should be pointer to LLVM type: |
| 1106 | // struct { |
| 1107 | // i32 gp_offset; |
| 1108 | // i32 fp_offset; |
| 1109 | // i8* overflow_arg_area; |
| 1110 | // i8* reg_save_area; |
| 1111 | // }; |
| 1112 | unsigned neededInt, neededSSE; |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1113 | ABIArgInfo AI = classifyArgumentType(Ty, CGF.getContext(), VMContext, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1114 | neededInt, neededSSE); |
| 1115 | |
| 1116 | // AMD64-ABI 3.5.7p5: Step 1. Determine whether type may be passed |
| 1117 | // in the registers. If not go to step 7. |
| 1118 | if (!neededInt && !neededSSE) |
| 1119 | return EmitVAArgFromMemory(VAListAddr, Ty, CGF); |
| 1120 | |
| 1121 | // AMD64-ABI 3.5.7p5: Step 2. Compute num_gp to hold the number of |
| 1122 | // general purpose registers needed to pass type and num_fp to hold |
| 1123 | // the number of floating point registers needed. |
| 1124 | |
| 1125 | // AMD64-ABI 3.5.7p5: Step 3. Verify whether arguments fit into |
| 1126 | // registers. In the case: l->gp_offset > 48 - num_gp * 8 or |
| 1127 | // l->fp_offset > 304 - num_fp * 16 go to step 7. |
| 1128 | // |
| 1129 | // NOTE: 304 is a typo, there are (6 * 8 + 8 * 16) = 176 bytes of |
| 1130 | // register save space). |
| 1131 | |
| 1132 | llvm::Value *InRegs = 0; |
| 1133 | llvm::Value *gp_offset_p = 0, *gp_offset = 0; |
| 1134 | llvm::Value *fp_offset_p = 0, *fp_offset = 0; |
| 1135 | if (neededInt) { |
| 1136 | gp_offset_p = CGF.Builder.CreateStructGEP(VAListAddr, 0, "gp_offset_p"); |
| 1137 | gp_offset = CGF.Builder.CreateLoad(gp_offset_p, "gp_offset"); |
| 1138 | InRegs = |
| 1139 | CGF.Builder.CreateICmpULE(gp_offset, |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1140 | llvm::ConstantInt::get(llvm::Type::Int32Ty, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1141 | 48 - neededInt * 8), |
| 1142 | "fits_in_gp"); |
| 1143 | } |
| 1144 | |
| 1145 | if (neededSSE) { |
| 1146 | fp_offset_p = CGF.Builder.CreateStructGEP(VAListAddr, 1, "fp_offset_p"); |
| 1147 | fp_offset = CGF.Builder.CreateLoad(fp_offset_p, "fp_offset"); |
| 1148 | llvm::Value *FitsInFP = |
| 1149 | CGF.Builder.CreateICmpULE(fp_offset, |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1150 | llvm::ConstantInt::get(llvm::Type::Int32Ty, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1151 | 176 - neededSSE * 16), |
| 1152 | "fits_in_fp"); |
| 1153 | InRegs = InRegs ? CGF.Builder.CreateAnd(InRegs, FitsInFP) : FitsInFP; |
| 1154 | } |
| 1155 | |
| 1156 | llvm::BasicBlock *InRegBlock = CGF.createBasicBlock("vaarg.in_reg"); |
| 1157 | llvm::BasicBlock *InMemBlock = CGF.createBasicBlock("vaarg.in_mem"); |
| 1158 | llvm::BasicBlock *ContBlock = CGF.createBasicBlock("vaarg.end"); |
| 1159 | CGF.Builder.CreateCondBr(InRegs, InRegBlock, InMemBlock); |
| 1160 | |
| 1161 | // Emit code to load the value if it was passed in registers. |
| 1162 | |
| 1163 | CGF.EmitBlock(InRegBlock); |
| 1164 | |
| 1165 | // AMD64-ABI 3.5.7p5: Step 4. Fetch type from l->reg_save_area with |
| 1166 | // an offset of l->gp_offset and/or l->fp_offset. This may require |
| 1167 | // copying to a temporary location in case the parameter is passed |
| 1168 | // in different register classes or requires an alignment greater |
| 1169 | // than 8 for general purpose registers and 16 for XMM registers. |
| 1170 | // |
| 1171 | // FIXME: This really results in shameful code when we end up needing to |
| 1172 | // collect arguments from different places; often what should result in a |
| 1173 | // simple assembling of a structure from scattered addresses has many more |
| 1174 | // loads than necessary. Can we clean this up? |
| 1175 | const llvm::Type *LTy = CGF.ConvertTypeForMem(Ty); |
| 1176 | llvm::Value *RegAddr = |
| 1177 | CGF.Builder.CreateLoad(CGF.Builder.CreateStructGEP(VAListAddr, 3), |
| 1178 | "reg_save_area"); |
| 1179 | if (neededInt && neededSSE) { |
| 1180 | // FIXME: Cleanup. |
| 1181 | assert(AI.isCoerce() && "Unexpected ABI info for mixed regs"); |
| 1182 | const llvm::StructType *ST = cast<llvm::StructType>(AI.getCoerceToType()); |
| 1183 | llvm::Value *Tmp = CGF.CreateTempAlloca(ST); |
| 1184 | assert(ST->getNumElements() == 2 && "Unexpected ABI info for mixed regs"); |
| 1185 | const llvm::Type *TyLo = ST->getElementType(0); |
| 1186 | const llvm::Type *TyHi = ST->getElementType(1); |
| 1187 | assert((TyLo->isFloatingPoint() ^ TyHi->isFloatingPoint()) && |
| 1188 | "Unexpected ABI info for mixed regs"); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1189 | const llvm::Type *PTyLo = llvm::PointerType::getUnqual(TyLo); |
| 1190 | const llvm::Type *PTyHi = llvm::PointerType::getUnqual(TyHi); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1191 | llvm::Value *GPAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset); |
| 1192 | llvm::Value *FPAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset); |
| 1193 | llvm::Value *RegLoAddr = TyLo->isFloatingPoint() ? FPAddr : GPAddr; |
| 1194 | llvm::Value *RegHiAddr = TyLo->isFloatingPoint() ? GPAddr : FPAddr; |
| 1195 | llvm::Value *V = |
| 1196 | CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegLoAddr, PTyLo)); |
| 1197 | CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0)); |
| 1198 | V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegHiAddr, PTyHi)); |
| 1199 | CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1)); |
| 1200 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1201 | RegAddr = CGF.Builder.CreateBitCast(Tmp, |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1202 | llvm::PointerType::getUnqual(LTy)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1203 | } else if (neededInt) { |
| 1204 | RegAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset); |
| 1205 | RegAddr = CGF.Builder.CreateBitCast(RegAddr, |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1206 | llvm::PointerType::getUnqual(LTy)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1207 | } else { |
| 1208 | if (neededSSE == 1) { |
| 1209 | RegAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset); |
| 1210 | RegAddr = CGF.Builder.CreateBitCast(RegAddr, |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1211 | llvm::PointerType::getUnqual(LTy)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1212 | } else { |
| 1213 | assert(neededSSE == 2 && "Invalid number of needed registers!"); |
| 1214 | // SSE registers are spaced 16 bytes apart in the register save |
| 1215 | // area, we need to collect the two eightbytes together. |
| 1216 | llvm::Value *RegAddrLo = CGF.Builder.CreateGEP(RegAddr, fp_offset); |
| 1217 | llvm::Value *RegAddrHi = |
| 1218 | CGF.Builder.CreateGEP(RegAddrLo, |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1219 | llvm::ConstantInt::get(llvm::Type::Int32Ty, 16)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1220 | const llvm::Type *DblPtrTy = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1221 | llvm::PointerType::getUnqual(llvm::Type::DoubleTy); |
Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame^] | 1222 | const llvm::StructType *ST = llvm::StructType::get(VMContext, |
| 1223 | llvm::Type::DoubleTy, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1224 | llvm::Type::DoubleTy, |
| 1225 | NULL); |
| 1226 | llvm::Value *V, *Tmp = CGF.CreateTempAlloca(ST); |
| 1227 | V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegAddrLo, |
| 1228 | DblPtrTy)); |
| 1229 | CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0)); |
| 1230 | V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegAddrHi, |
| 1231 | DblPtrTy)); |
| 1232 | CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 1)); |
| 1233 | RegAddr = CGF.Builder.CreateBitCast(Tmp, |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1234 | llvm::PointerType::getUnqual(LTy)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1235 | } |
| 1236 | } |
| 1237 | |
| 1238 | // AMD64-ABI 3.5.7p5: Step 5. Set: |
| 1239 | // l->gp_offset = l->gp_offset + num_gp * 8 |
| 1240 | // l->fp_offset = l->fp_offset + num_fp * 16. |
| 1241 | if (neededInt) { |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1242 | llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1243 | neededInt * 8); |
| 1244 | CGF.Builder.CreateStore(CGF.Builder.CreateAdd(gp_offset, Offset), |
| 1245 | gp_offset_p); |
| 1246 | } |
| 1247 | if (neededSSE) { |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1248 | llvm::Value *Offset = llvm::ConstantInt::get(llvm::Type::Int32Ty, |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1249 | neededSSE * 16); |
| 1250 | CGF.Builder.CreateStore(CGF.Builder.CreateAdd(fp_offset, Offset), |
| 1251 | fp_offset_p); |
| 1252 | } |
| 1253 | CGF.EmitBranch(ContBlock); |
| 1254 | |
| 1255 | // Emit code to load the value if it was passed in memory. |
| 1256 | |
| 1257 | CGF.EmitBlock(InMemBlock); |
| 1258 | llvm::Value *MemAddr = EmitVAArgFromMemory(VAListAddr, Ty, CGF); |
| 1259 | |
| 1260 | // Return the appropriate result. |
| 1261 | |
| 1262 | CGF.EmitBlock(ContBlock); |
| 1263 | llvm::PHINode *ResAddr = CGF.Builder.CreatePHI(RegAddr->getType(), |
| 1264 | "vaarg.addr"); |
| 1265 | ResAddr->reserveOperandSpace(2); |
| 1266 | ResAddr->addIncoming(RegAddr, InRegBlock); |
| 1267 | ResAddr->addIncoming(MemAddr, InMemBlock); |
| 1268 | |
| 1269 | return ResAddr; |
| 1270 | } |
| 1271 | |
| 1272 | // ABI Info for PIC16 |
| 1273 | class PIC16ABIInfo : public ABIInfo { |
| 1274 | ABIArgInfo classifyReturnType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1275 | ASTContext &Context, |
| 1276 | llvm::LLVMContext &VMContext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1277 | |
| 1278 | ABIArgInfo classifyArgumentType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1279 | ASTContext &Context, |
| 1280 | llvm::LLVMContext &VMContext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1281 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1282 | virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context, |
| 1283 | llvm::LLVMContext &VMContext) const { |
| 1284 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context, |
| 1285 | VMContext); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1286 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 1287 | it != ie; ++it) |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1288 | it->info = classifyArgumentType(it->type, Context, VMContext); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1289 | } |
| 1290 | |
| 1291 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 1292 | CodeGenFunction &CGF) const; |
| 1293 | |
| 1294 | }; |
| 1295 | |
| 1296 | ABIArgInfo PIC16ABIInfo::classifyReturnType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1297 | ASTContext &Context, |
| 1298 | llvm::LLVMContext &VMContext) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1299 | if (RetTy->isVoidType()) { |
| 1300 | return ABIArgInfo::getIgnore(); |
| 1301 | } else { |
| 1302 | return ABIArgInfo::getDirect(); |
| 1303 | } |
| 1304 | } |
| 1305 | |
| 1306 | ABIArgInfo PIC16ABIInfo::classifyArgumentType(QualType Ty, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1307 | ASTContext &Context, |
| 1308 | llvm::LLVMContext &VMContext) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1309 | return ABIArgInfo::getDirect(); |
| 1310 | } |
| 1311 | |
| 1312 | llvm::Value *PIC16ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 1313 | CodeGenFunction &CGF) const { |
| 1314 | return 0; |
| 1315 | } |
| 1316 | |
| 1317 | class ARMABIInfo : public ABIInfo { |
| 1318 | ABIArgInfo classifyReturnType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1319 | ASTContext &Context, |
| 1320 | llvm::LLVMContext &VMCOntext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1321 | |
| 1322 | ABIArgInfo classifyArgumentType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1323 | ASTContext &Context, |
| 1324 | llvm::LLVMContext &VMContext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1325 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1326 | virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context, |
| 1327 | llvm::LLVMContext &VMContext) const; |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1328 | |
| 1329 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 1330 | CodeGenFunction &CGF) const; |
| 1331 | }; |
| 1332 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1333 | void ARMABIInfo::computeInfo(CGFunctionInfo &FI, ASTContext &Context, |
| 1334 | llvm::LLVMContext &VMContext) const { |
| 1335 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), Context, |
| 1336 | VMContext); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1337 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 1338 | it != ie; ++it) { |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1339 | it->info = classifyArgumentType(it->type, Context, VMContext); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1340 | } |
| 1341 | } |
| 1342 | |
| 1343 | ABIArgInfo ARMABIInfo::classifyArgumentType(QualType Ty, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1344 | ASTContext &Context, |
| 1345 | llvm::LLVMContext &VMContext) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1346 | if (!CodeGenFunction::hasAggregateLLVMType(Ty)) { |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 1347 | return (Ty->isPromotableIntegerType() ? |
| 1348 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1349 | } |
| 1350 | // FIXME: This is kind of nasty... but there isn't much choice because the ARM |
| 1351 | // backend doesn't support byval. |
| 1352 | // FIXME: This doesn't handle alignment > 64 bits. |
| 1353 | const llvm::Type* ElemTy; |
| 1354 | unsigned SizeRegs; |
| 1355 | if (Context.getTypeAlign(Ty) > 32) { |
| 1356 | ElemTy = llvm::Type::Int64Ty; |
| 1357 | SizeRegs = (Context.getTypeSize(Ty) + 63) / 64; |
| 1358 | } else { |
| 1359 | ElemTy = llvm::Type::Int32Ty; |
| 1360 | SizeRegs = (Context.getTypeSize(Ty) + 31) / 32; |
| 1361 | } |
| 1362 | std::vector<const llvm::Type*> LLVMFields; |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1363 | LLVMFields.push_back(llvm::ArrayType::get(ElemTy, SizeRegs)); |
Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame^] | 1364 | const llvm::Type* STy = llvm::StructType::get(VMContext, LLVMFields, true); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1365 | return ABIArgInfo::getCoerce(STy); |
| 1366 | } |
| 1367 | |
| 1368 | ABIArgInfo ARMABIInfo::classifyReturnType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1369 | ASTContext &Context, |
| 1370 | llvm::LLVMContext &VMContext) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1371 | if (RetTy->isVoidType()) { |
| 1372 | return ABIArgInfo::getIgnore(); |
| 1373 | } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) { |
| 1374 | // Aggregates <= 4 bytes are returned in r0; other aggregates |
| 1375 | // are returned indirectly. |
| 1376 | uint64_t Size = Context.getTypeSize(RetTy); |
| 1377 | if (Size <= 32) |
| 1378 | return ABIArgInfo::getCoerce(llvm::Type::Int32Ty); |
| 1379 | return ABIArgInfo::getIndirect(0); |
| 1380 | } else { |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 1381 | return (RetTy->isPromotableIntegerType() ? |
| 1382 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1383 | } |
| 1384 | } |
| 1385 | |
| 1386 | llvm::Value *ARMABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 1387 | CodeGenFunction &CGF) const { |
| 1388 | // FIXME: Need to handle alignment |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1389 | const llvm::Type *BP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty); |
| 1390 | const llvm::Type *BPP = llvm::PointerType::getUnqual(BP); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1391 | |
| 1392 | CGBuilderTy &Builder = CGF.Builder; |
| 1393 | llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP, |
| 1394 | "ap"); |
| 1395 | llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur"); |
| 1396 | llvm::Type *PTy = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1397 | llvm::PointerType::getUnqual(CGF.ConvertType(Ty)); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1398 | llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy); |
| 1399 | |
| 1400 | uint64_t Offset = |
| 1401 | llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, 4); |
| 1402 | llvm::Value *NextAddr = |
| 1403 | Builder.CreateGEP(Addr, |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1404 | llvm::ConstantInt::get(llvm::Type::Int32Ty, Offset), |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1405 | "ap.next"); |
| 1406 | Builder.CreateStore(NextAddr, VAListAddrAsBPP); |
| 1407 | |
| 1408 | return AddrTyped; |
| 1409 | } |
| 1410 | |
| 1411 | ABIArgInfo DefaultABIInfo::classifyReturnType(QualType RetTy, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1412 | ASTContext &Context, |
| 1413 | llvm::LLVMContext &VMContext) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1414 | if (RetTy->isVoidType()) { |
| 1415 | return ABIArgInfo::getIgnore(); |
| 1416 | } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) { |
| 1417 | return ABIArgInfo::getIndirect(0); |
| 1418 | } else { |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 1419 | return (RetTy->isPromotableIntegerType() ? |
| 1420 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1421 | } |
| 1422 | } |
| 1423 | |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 1424 | namespace { |
| 1425 | class SystemZABIInfo : public ABIInfo { |
| 1426 | bool isPromotableIntegerType(QualType Ty) const; |
| 1427 | |
| 1428 | ABIArgInfo classifyReturnType(QualType RetTy, ASTContext &Context, |
| 1429 | llvm::LLVMContext &VMContext) const; |
| 1430 | |
| 1431 | ABIArgInfo classifyArgumentType(QualType RetTy, ASTContext &Context, |
| 1432 | llvm::LLVMContext &VMContext) const; |
| 1433 | |
| 1434 | virtual void computeInfo(CGFunctionInfo &FI, ASTContext &Context, |
| 1435 | llvm::LLVMContext &VMContext) const { |
| 1436 | FI.getReturnInfo() = classifyReturnType(FI.getReturnType(), |
| 1437 | Context, VMContext); |
| 1438 | for (CGFunctionInfo::arg_iterator it = FI.arg_begin(), ie = FI.arg_end(); |
| 1439 | it != ie; ++it) |
| 1440 | it->info = classifyArgumentType(it->type, Context, VMContext); |
| 1441 | } |
| 1442 | |
| 1443 | virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 1444 | CodeGenFunction &CGF) const; |
| 1445 | }; |
| 1446 | } |
| 1447 | |
| 1448 | bool SystemZABIInfo::isPromotableIntegerType(QualType Ty) const { |
| 1449 | // SystemZ ABI requires all 8, 16 and 32 bit quantities to be extended. |
| 1450 | if (const BuiltinType *BT = Ty->getAsBuiltinType()) |
| 1451 | switch (BT->getKind()) { |
| 1452 | case BuiltinType::Bool: |
| 1453 | case BuiltinType::Char_S: |
| 1454 | case BuiltinType::Char_U: |
| 1455 | case BuiltinType::SChar: |
| 1456 | case BuiltinType::UChar: |
| 1457 | case BuiltinType::Short: |
| 1458 | case BuiltinType::UShort: |
| 1459 | case BuiltinType::Int: |
| 1460 | case BuiltinType::UInt: |
| 1461 | return true; |
| 1462 | default: |
| 1463 | return false; |
| 1464 | } |
| 1465 | return false; |
| 1466 | } |
| 1467 | |
| 1468 | llvm::Value *SystemZABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 1469 | CodeGenFunction &CGF) const { |
| 1470 | // FIXME: Implement |
| 1471 | return 0; |
| 1472 | } |
| 1473 | |
| 1474 | |
| 1475 | ABIArgInfo SystemZABIInfo::classifyReturnType(QualType RetTy, |
| 1476 | ASTContext &Context, |
| 1477 | llvm::LLVMContext &VMContext) const { |
| 1478 | if (RetTy->isVoidType()) { |
| 1479 | return ABIArgInfo::getIgnore(); |
| 1480 | } else if (CodeGenFunction::hasAggregateLLVMType(RetTy)) { |
| 1481 | return ABIArgInfo::getIndirect(0); |
| 1482 | } else { |
| 1483 | return (isPromotableIntegerType(RetTy) ? |
| 1484 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
| 1485 | } |
| 1486 | } |
| 1487 | |
| 1488 | ABIArgInfo SystemZABIInfo::classifyArgumentType(QualType Ty, |
| 1489 | ASTContext &Context, |
| 1490 | llvm::LLVMContext &VMContext) const { |
| 1491 | if (CodeGenFunction::hasAggregateLLVMType(Ty)) { |
| 1492 | return ABIArgInfo::getIndirect(0); |
| 1493 | } else { |
| 1494 | return (isPromotableIntegerType(Ty) ? |
| 1495 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
| 1496 | } |
| 1497 | } |
| 1498 | |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1499 | ABIArgInfo DefaultABIInfo::classifyArgumentType(QualType Ty, |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1500 | ASTContext &Context, |
| 1501 | llvm::LLVMContext &VMContext) const { |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1502 | if (CodeGenFunction::hasAggregateLLVMType(Ty)) { |
| 1503 | return ABIArgInfo::getIndirect(0); |
| 1504 | } else { |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 1505 | return (Ty->isPromotableIntegerType() ? |
| 1506 | ABIArgInfo::getExtend() : ABIArgInfo::getDirect()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1507 | } |
| 1508 | } |
| 1509 | |
| 1510 | llvm::Value *DefaultABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, |
| 1511 | CodeGenFunction &CGF) const { |
| 1512 | return 0; |
| 1513 | } |
| 1514 | |
| 1515 | const ABIInfo &CodeGenTypes::getABIInfo() const { |
| 1516 | if (TheABIInfo) |
| 1517 | return *TheABIInfo; |
| 1518 | |
| 1519 | // For now we just cache this in the CodeGenTypes and don't bother |
| 1520 | // to free it. |
| 1521 | const char *TargetPrefix = getContext().Target.getTargetPrefix(); |
| 1522 | if (strcmp(TargetPrefix, "x86") == 0) { |
| 1523 | bool IsDarwin = strstr(getContext().Target.getTargetTriple(), "darwin"); |
| 1524 | switch (getContext().Target.getPointerWidth(0)) { |
| 1525 | case 32: |
| 1526 | return *(TheABIInfo = new X86_32ABIInfo(Context, IsDarwin)); |
| 1527 | case 64: |
| 1528 | return *(TheABIInfo = new X86_64ABIInfo()); |
| 1529 | } |
| 1530 | } else if (strcmp(TargetPrefix, "arm") == 0) { |
| 1531 | // FIXME: Support for OABI? |
| 1532 | return *(TheABIInfo = new ARMABIInfo()); |
| 1533 | } else if (strcmp(TargetPrefix, "pic16") == 0) { |
| 1534 | return *(TheABIInfo = new PIC16ABIInfo()); |
Anton Korobeynikov | 89e887f | 2009-07-16 20:09:57 +0000 | [diff] [blame] | 1535 | } else if (strcmp(TargetPrefix, "s390x") == 0) { |
| 1536 | return *(TheABIInfo = new SystemZABIInfo()); |
Anton Korobeynikov | c4a59eb | 2009-06-05 22:08:42 +0000 | [diff] [blame] | 1537 | } |
| 1538 | |
| 1539 | return *(TheABIInfo = new DefaultABIInfo); |
| 1540 | } |