Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 1 | //===--- CGCall.cpp - Encapsulate calling convention details ----*- C++ -*-===// |
Daniel Dunbar | 0dbe227 | 2008-09-08 21:33:45 +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 | |
| 15 | #include "CGCall.h" |
Chris Lattner | ce93399 | 2010-06-29 16:40:28 +0000 | [diff] [blame] | 16 | #include "ABIInfo.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 17 | #include "CGCXXABI.h" |
Daniel Dunbar | 0dbe227 | 2008-09-08 21:33:45 +0000 | [diff] [blame] | 18 | #include "CodeGenFunction.h" |
Daniel Dunbar | b768807 | 2008-09-10 00:41:16 +0000 | [diff] [blame] | 19 | #include "CodeGenModule.h" |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 20 | #include "TargetInfo.h" |
Daniel Dunbar | 0dbe227 | 2008-09-08 21:33:45 +0000 | [diff] [blame] | 21 | #include "clang/AST/Decl.h" |
Anders Carlsson | f6f8ae5 | 2009-04-03 22:48:58 +0000 | [diff] [blame] | 22 | #include "clang/AST/DeclCXX.h" |
Daniel Dunbar | 0dbe227 | 2008-09-08 21:33:45 +0000 | [diff] [blame] | 23 | #include "clang/AST/DeclObjC.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 24 | #include "clang/Basic/TargetInfo.h" |
Chandler Carruth | 06057ce | 2010-06-15 23:19:56 +0000 | [diff] [blame] | 25 | #include "clang/Frontend/CodeGenOptions.h" |
Bill Wendling | be9e8bf | 2013-02-28 22:49:57 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/StringExtras.h" |
Chandler Carruth | 3b844ba | 2013-01-02 11:45:17 +0000 | [diff] [blame] | 27 | #include "llvm/IR/Attributes.h" |
| 28 | #include "llvm/IR/DataLayout.h" |
| 29 | #include "llvm/IR/InlineAsm.h" |
Bill Wendling | c0dcc2d | 2013-02-15 21:30:01 +0000 | [diff] [blame] | 30 | #include "llvm/MC/SubtargetFeature.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 31 | #include "llvm/Support/CallSite.h" |
Eli Friedman | 97cb5a4 | 2011-06-15 22:09:18 +0000 | [diff] [blame] | 32 | #include "llvm/Transforms/Utils/Local.h" |
Daniel Dunbar | 0dbe227 | 2008-09-08 21:33:45 +0000 | [diff] [blame] | 33 | using namespace clang; |
| 34 | using namespace CodeGen; |
| 35 | |
| 36 | /***/ |
| 37 | |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 38 | static unsigned ClangCallConvToLLVMCallConv(CallingConv CC) { |
| 39 | switch (CC) { |
| 40 | default: return llvm::CallingConv::C; |
| 41 | case CC_X86StdCall: return llvm::CallingConv::X86_StdCall; |
| 42 | case CC_X86FastCall: return llvm::CallingConv::X86_FastCall; |
Douglas Gregor | f813a2c | 2010-05-18 16:57:00 +0000 | [diff] [blame] | 43 | case CC_X86ThisCall: return llvm::CallingConv::X86_ThisCall; |
Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 44 | case CC_AAPCS: return llvm::CallingConv::ARM_AAPCS; |
| 45 | case CC_AAPCS_VFP: return llvm::CallingConv::ARM_AAPCS_VFP; |
Guy Benyei | 3898008 | 2012-12-25 08:53:55 +0000 | [diff] [blame] | 46 | case CC_IntelOclBicc: return llvm::CallingConv::Intel_OCL_BI; |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 47 | // TODO: add support for CC_X86Pascal to llvm |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 48 | } |
| 49 | } |
| 50 | |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 51 | /// Derives the 'this' type for codegen purposes, i.e. ignoring method |
| 52 | /// qualification. |
| 53 | /// FIXME: address space qualification? |
John McCall | ead608a | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 54 | static CanQualType GetThisType(ASTContext &Context, const CXXRecordDecl *RD) { |
| 55 | QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal(); |
| 56 | return Context.getPointerType(CanQualType::CreateUnsafe(RecTy)); |
Daniel Dunbar | 45c25ba | 2008-09-10 04:01:49 +0000 | [diff] [blame] | 57 | } |
| 58 | |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 59 | /// Returns the canonical formal type of the given C++ method. |
John McCall | ead608a | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 60 | static CanQual<FunctionProtoType> GetFormalType(const CXXMethodDecl *MD) { |
| 61 | return MD->getType()->getCanonicalTypeUnqualified() |
| 62 | .getAs<FunctionProtoType>(); |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | /// Returns the "extra-canonicalized" return type, which discards |
| 66 | /// qualifiers on the return type. Codegen doesn't care about them, |
| 67 | /// and it makes ABI code a little easier to be able to assume that |
| 68 | /// all parameter and return types are top-level unqualified. |
John McCall | ead608a | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 69 | static CanQualType GetReturnType(QualType RetTy) { |
| 70 | return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType(); |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 71 | } |
| 72 | |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 73 | /// Arrange the argument and result information for a value of the given |
| 74 | /// unprototyped freestanding function type. |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 75 | const CGFunctionInfo & |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 76 | CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionNoProtoType> FTNP) { |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 77 | // When translating an unprototyped function type, always use a |
| 78 | // variadic type. |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 79 | return arrangeLLVMFunctionInfo(FTNP->getResultType().getUnqualifiedType(), |
Dmitri Gribenko | 5543169 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 80 | None, FTNP->getExtInfo(), RequiredArgs(0)); |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 81 | } |
| 82 | |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 83 | /// Arrange the LLVM function layout for a value of the given function |
| 84 | /// type, on top of any implicit parameters already stored. Use the |
| 85 | /// given ExtInfo instead of the ExtInfo from the function type. |
| 86 | static const CGFunctionInfo &arrangeLLVMFunctionInfo(CodeGenTypes &CGT, |
| 87 | SmallVectorImpl<CanQualType> &prefix, |
| 88 | CanQual<FunctionProtoType> FTP, |
| 89 | FunctionType::ExtInfo extInfo) { |
| 90 | RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, prefix.size()); |
Daniel Dunbar | 541b63b | 2009-02-02 23:23:47 +0000 | [diff] [blame] | 91 | // FIXME: Kill copy. |
Daniel Dunbar | 45c25ba | 2008-09-10 04:01:49 +0000 | [diff] [blame] | 92 | for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i) |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 93 | prefix.push_back(FTP->getArgType(i)); |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 94 | CanQualType resultType = FTP->getResultType().getUnqualifiedType(); |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 95 | return CGT.arrangeLLVMFunctionInfo(resultType, prefix, extInfo, required); |
| 96 | } |
| 97 | |
| 98 | /// Arrange the argument and result information for a free function (i.e. |
| 99 | /// not a C++ or ObjC instance method) of the given type. |
| 100 | static const CGFunctionInfo &arrangeFreeFunctionType(CodeGenTypes &CGT, |
| 101 | SmallVectorImpl<CanQualType> &prefix, |
| 102 | CanQual<FunctionProtoType> FTP) { |
| 103 | return arrangeLLVMFunctionInfo(CGT, prefix, FTP, FTP->getExtInfo()); |
| 104 | } |
| 105 | |
| 106 | /// Given the formal ext-info of a C++ instance method, adjust it |
| 107 | /// according to the C++ ABI in effect. |
| 108 | static void adjustCXXMethodInfo(CodeGenTypes &CGT, |
Timur Iskhodzhanov | 8f88a1d | 2012-07-12 09:50:54 +0000 | [diff] [blame] | 109 | FunctionType::ExtInfo &extInfo, |
| 110 | bool isVariadic) { |
| 111 | if (extInfo.getCC() == CC_Default) { |
| 112 | CallingConv CC = CGT.getContext().getDefaultCXXMethodCallConv(isVariadic); |
| 113 | extInfo = extInfo.withCallingConv(CC); |
| 114 | } |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | /// Arrange the argument and result information for a free function (i.e. |
| 118 | /// not a C++ or ObjC instance method) of the given type. |
| 119 | static const CGFunctionInfo &arrangeCXXMethodType(CodeGenTypes &CGT, |
| 120 | SmallVectorImpl<CanQualType> &prefix, |
| 121 | CanQual<FunctionProtoType> FTP) { |
| 122 | FunctionType::ExtInfo extInfo = FTP->getExtInfo(); |
Timur Iskhodzhanov | 8f88a1d | 2012-07-12 09:50:54 +0000 | [diff] [blame] | 123 | adjustCXXMethodInfo(CGT, extInfo, FTP->isVariadic()); |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 124 | return arrangeLLVMFunctionInfo(CGT, prefix, FTP, extInfo); |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 125 | } |
| 126 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 127 | /// Arrange the argument and result information for a value of the |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 128 | /// given freestanding function type. |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 129 | const CGFunctionInfo & |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 130 | CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionProtoType> FTP) { |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 131 | SmallVector<CanQualType, 16> argTypes; |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 132 | return ::arrangeFreeFunctionType(*this, argTypes, FTP); |
Daniel Dunbar | bac7c25 | 2009-09-11 22:24:53 +0000 | [diff] [blame] | 133 | } |
| 134 | |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 135 | static CallingConv getCallingConventionForDecl(const Decl *D) { |
Daniel Dunbar | bac7c25 | 2009-09-11 22:24:53 +0000 | [diff] [blame] | 136 | // Set the appropriate calling convention for the Function. |
| 137 | if (D->hasAttr<StdCallAttr>()) |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 138 | return CC_X86StdCall; |
Daniel Dunbar | bac7c25 | 2009-09-11 22:24:53 +0000 | [diff] [blame] | 139 | |
| 140 | if (D->hasAttr<FastCallAttr>()) |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 141 | return CC_X86FastCall; |
Daniel Dunbar | bac7c25 | 2009-09-11 22:24:53 +0000 | [diff] [blame] | 142 | |
Douglas Gregor | f813a2c | 2010-05-18 16:57:00 +0000 | [diff] [blame] | 143 | if (D->hasAttr<ThisCallAttr>()) |
| 144 | return CC_X86ThisCall; |
| 145 | |
Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 146 | if (D->hasAttr<PascalAttr>()) |
| 147 | return CC_X86Pascal; |
| 148 | |
Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 149 | if (PcsAttr *PCS = D->getAttr<PcsAttr>()) |
| 150 | return (PCS->getPCS() == PcsAttr::AAPCS ? CC_AAPCS : CC_AAPCS_VFP); |
| 151 | |
Derek Schuff | 263366f | 2012-10-16 22:30:41 +0000 | [diff] [blame] | 152 | if (D->hasAttr<PnaclCallAttr>()) |
| 153 | return CC_PnaclCall; |
| 154 | |
Guy Benyei | 3898008 | 2012-12-25 08:53:55 +0000 | [diff] [blame] | 155 | if (D->hasAttr<IntelOclBiccAttr>()) |
| 156 | return CC_IntelOclBicc; |
| 157 | |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 158 | return CC_C; |
Daniel Dunbar | 45c25ba | 2008-09-10 04:01:49 +0000 | [diff] [blame] | 159 | } |
| 160 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 161 | /// Arrange the argument and result information for a call to an |
| 162 | /// unknown C++ non-static member function of the given abstract type. |
| 163 | /// The member function must be an ordinary function, i.e. not a |
| 164 | /// constructor or destructor. |
| 165 | const CGFunctionInfo & |
| 166 | CodeGenTypes::arrangeCXXMethodType(const CXXRecordDecl *RD, |
| 167 | const FunctionProtoType *FTP) { |
| 168 | SmallVector<CanQualType, 16> argTypes; |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 169 | |
Anders Carlsson | 375c31c | 2009-10-03 19:43:08 +0000 | [diff] [blame] | 170 | // Add the 'this' pointer. |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 171 | argTypes.push_back(GetThisType(Context, RD)); |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 172 | |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 173 | return ::arrangeCXXMethodType(*this, argTypes, |
Tilmann Scheller | 9c6082f | 2011-03-02 21:36:49 +0000 | [diff] [blame] | 174 | FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>()); |
Anders Carlsson | 375c31c | 2009-10-03 19:43:08 +0000 | [diff] [blame] | 175 | } |
| 176 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 177 | /// Arrange the argument and result information for a declaration or |
| 178 | /// definition of the given C++ non-static member function. The |
| 179 | /// member function must be an ordinary function, i.e. not a |
| 180 | /// constructor or destructor. |
| 181 | const CGFunctionInfo & |
| 182 | CodeGenTypes::arrangeCXXMethodDeclaration(const CXXMethodDecl *MD) { |
John McCall | fc40028 | 2010-09-03 01:26:39 +0000 | [diff] [blame] | 183 | assert(!isa<CXXConstructorDecl>(MD) && "wrong method for contructors!"); |
| 184 | assert(!isa<CXXDestructorDecl>(MD) && "wrong method for destructors!"); |
| 185 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 186 | CanQual<FunctionProtoType> prototype = GetFormalType(MD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 187 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 188 | if (MD->isInstance()) { |
| 189 | // The abstract case is perfectly fine. |
| 190 | return arrangeCXXMethodType(MD->getParent(), prototype.getTypePtr()); |
| 191 | } |
| 192 | |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 193 | return arrangeFreeFunctionType(prototype); |
Anders Carlsson | f6f8ae5 | 2009-04-03 22:48:58 +0000 | [diff] [blame] | 194 | } |
| 195 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 196 | /// Arrange the argument and result information for a declaration |
| 197 | /// or definition to the given constructor variant. |
| 198 | const CGFunctionInfo & |
| 199 | CodeGenTypes::arrangeCXXConstructorDeclaration(const CXXConstructorDecl *D, |
| 200 | CXXCtorType ctorKind) { |
| 201 | SmallVector<CanQualType, 16> argTypes; |
| 202 | argTypes.push_back(GetThisType(Context, D->getParent())); |
| 203 | CanQualType resultType = Context.VoidTy; |
Anders Carlsson | f6c56e2 | 2009-11-25 03:15:49 +0000 | [diff] [blame] | 204 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 205 | TheCXXABI.BuildConstructorSignature(D, ctorKind, resultType, argTypes); |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 206 | |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 207 | CanQual<FunctionProtoType> FTP = GetFormalType(D); |
| 208 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 209 | RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, argTypes.size()); |
| 210 | |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 211 | // Add the formal parameters. |
| 212 | for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i) |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 213 | argTypes.push_back(FTP->getArgType(i)); |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 214 | |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 215 | FunctionType::ExtInfo extInfo = FTP->getExtInfo(); |
Timur Iskhodzhanov | 8f88a1d | 2012-07-12 09:50:54 +0000 | [diff] [blame] | 216 | adjustCXXMethodInfo(*this, extInfo, FTP->isVariadic()); |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 217 | return arrangeLLVMFunctionInfo(resultType, argTypes, extInfo, required); |
Anders Carlsson | f6c56e2 | 2009-11-25 03:15:49 +0000 | [diff] [blame] | 218 | } |
| 219 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 220 | /// Arrange the argument and result information for a declaration, |
| 221 | /// definition, or call to the given destructor variant. It so |
| 222 | /// happens that all three cases produce the same information. |
| 223 | const CGFunctionInfo & |
| 224 | CodeGenTypes::arrangeCXXDestructor(const CXXDestructorDecl *D, |
| 225 | CXXDtorType dtorKind) { |
| 226 | SmallVector<CanQualType, 2> argTypes; |
| 227 | argTypes.push_back(GetThisType(Context, D->getParent())); |
| 228 | CanQualType resultType = Context.VoidTy; |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 229 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 230 | TheCXXABI.BuildDestructorSignature(D, dtorKind, resultType, argTypes); |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 231 | |
| 232 | CanQual<FunctionProtoType> FTP = GetFormalType(D); |
| 233 | assert(FTP->getNumArgs() == 0 && "dtor with formal parameters"); |
Timur Iskhodzhanov | 8f88a1d | 2012-07-12 09:50:54 +0000 | [diff] [blame] | 234 | assert(FTP->isVariadic() == 0 && "dtor with formal parameters"); |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 235 | |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 236 | FunctionType::ExtInfo extInfo = FTP->getExtInfo(); |
Timur Iskhodzhanov | 8f88a1d | 2012-07-12 09:50:54 +0000 | [diff] [blame] | 237 | adjustCXXMethodInfo(*this, extInfo, false); |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 238 | return arrangeLLVMFunctionInfo(resultType, argTypes, extInfo, |
| 239 | RequiredArgs::All); |
Anders Carlsson | f6c56e2 | 2009-11-25 03:15:49 +0000 | [diff] [blame] | 240 | } |
| 241 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 242 | /// Arrange the argument and result information for the declaration or |
| 243 | /// definition of the given function. |
| 244 | const CGFunctionInfo & |
| 245 | CodeGenTypes::arrangeFunctionDeclaration(const FunctionDecl *FD) { |
Chris Lattner | 3eb67ca | 2009-05-12 20:27:19 +0000 | [diff] [blame] | 246 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) |
Anders Carlsson | f6f8ae5 | 2009-04-03 22:48:58 +0000 | [diff] [blame] | 247 | if (MD->isInstance()) |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 248 | return arrangeCXXMethodDeclaration(MD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 249 | |
John McCall | ead608a | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 250 | CanQualType FTy = FD->getType()->getCanonicalTypeUnqualified(); |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 251 | |
John McCall | ead608a | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 252 | assert(isa<FunctionType>(FTy)); |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 253 | |
| 254 | // When declaring a function without a prototype, always use a |
| 255 | // non-variadic type. |
| 256 | if (isa<FunctionNoProtoType>(FTy)) { |
| 257 | CanQual<FunctionNoProtoType> noProto = FTy.getAs<FunctionNoProtoType>(); |
Dmitri Gribenko | 5543169 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 258 | return arrangeLLVMFunctionInfo(noProto->getResultType(), None, |
| 259 | noProto->getExtInfo(), RequiredArgs::All); |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 260 | } |
| 261 | |
John McCall | ead608a | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 262 | assert(isa<FunctionProtoType>(FTy)); |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 263 | return arrangeFreeFunctionType(FTy.getAs<FunctionProtoType>()); |
Daniel Dunbar | 0dbe227 | 2008-09-08 21:33:45 +0000 | [diff] [blame] | 264 | } |
| 265 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 266 | /// Arrange the argument and result information for the declaration or |
| 267 | /// definition of an Objective-C method. |
| 268 | const CGFunctionInfo & |
| 269 | CodeGenTypes::arrangeObjCMethodDeclaration(const ObjCMethodDecl *MD) { |
| 270 | // It happens that this is the same as a call with no optional |
| 271 | // arguments, except also using the formal 'self' type. |
| 272 | return arrangeObjCMessageSendSignature(MD, MD->getSelfDecl()->getType()); |
| 273 | } |
| 274 | |
| 275 | /// Arrange the argument and result information for the function type |
| 276 | /// through which to perform a send to the given Objective-C method, |
| 277 | /// using the given receiver type. The receiver type is not always |
| 278 | /// the 'self' type of the method or even an Objective-C pointer type. |
| 279 | /// This is *not* the right method for actually performing such a |
| 280 | /// message send, due to the possibility of optional arguments. |
| 281 | const CGFunctionInfo & |
| 282 | CodeGenTypes::arrangeObjCMessageSendSignature(const ObjCMethodDecl *MD, |
| 283 | QualType receiverType) { |
| 284 | SmallVector<CanQualType, 16> argTys; |
| 285 | argTys.push_back(Context.getCanonicalParamType(receiverType)); |
| 286 | argTys.push_back(Context.getCanonicalParamType(Context.getObjCSelType())); |
Daniel Dunbar | 541b63b | 2009-02-02 23:23:47 +0000 | [diff] [blame] | 287 | // FIXME: Kill copy? |
Argyrios Kyrtzidis | 491306a | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 288 | for (ObjCMethodDecl::param_const_iterator i = MD->param_begin(), |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 289 | e = MD->param_end(); i != e; ++i) { |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 290 | argTys.push_back(Context.getCanonicalParamType((*i)->getType())); |
John McCall | 0b0ef0a | 2010-02-24 07:14:12 +0000 | [diff] [blame] | 291 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 292 | |
| 293 | FunctionType::ExtInfo einfo; |
| 294 | einfo = einfo.withCallingConv(getCallingConventionForDecl(MD)); |
| 295 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 296 | if (getContext().getLangOpts().ObjCAutoRefCount && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 297 | MD->hasAttr<NSReturnsRetainedAttr>()) |
| 298 | einfo = einfo.withProducesResult(true); |
| 299 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 300 | RequiredArgs required = |
| 301 | (MD->isVariadic() ? RequiredArgs(argTys.size()) : RequiredArgs::All); |
| 302 | |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 303 | return arrangeLLVMFunctionInfo(GetReturnType(MD->getResultType()), argTys, |
| 304 | einfo, required); |
Daniel Dunbar | 0dbe227 | 2008-09-08 21:33:45 +0000 | [diff] [blame] | 305 | } |
| 306 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 307 | const CGFunctionInfo & |
| 308 | CodeGenTypes::arrangeGlobalDeclaration(GlobalDecl GD) { |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 309 | // FIXME: Do we need to handle ObjCMethodDecl? |
| 310 | const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl()); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 311 | |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 312 | if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 313 | return arrangeCXXConstructorDeclaration(CD, GD.getCtorType()); |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 314 | |
| 315 | if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(FD)) |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 316 | return arrangeCXXDestructor(DD, GD.getDtorType()); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 317 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 318 | return arrangeFunctionDeclaration(FD); |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 319 | } |
| 320 | |
John McCall | e56bb36 | 2012-12-07 07:03:17 +0000 | [diff] [blame] | 321 | /// Arrange a call as unto a free function, except possibly with an |
| 322 | /// additional number of formal parameters considered required. |
| 323 | static const CGFunctionInfo & |
| 324 | arrangeFreeFunctionLikeCall(CodeGenTypes &CGT, |
| 325 | const CallArgList &args, |
| 326 | const FunctionType *fnType, |
| 327 | unsigned numExtraRequiredArgs) { |
| 328 | assert(args.size() >= numExtraRequiredArgs); |
| 329 | |
| 330 | // In most cases, there are no optional arguments. |
| 331 | RequiredArgs required = RequiredArgs::All; |
| 332 | |
| 333 | // If we have a variadic prototype, the required arguments are the |
| 334 | // extra prefix plus the arguments in the prototype. |
| 335 | if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fnType)) { |
| 336 | if (proto->isVariadic()) |
| 337 | required = RequiredArgs(proto->getNumArgs() + numExtraRequiredArgs); |
| 338 | |
| 339 | // If we don't have a prototype at all, but we're supposed to |
| 340 | // explicitly use the variadic convention for unprototyped calls, |
| 341 | // treat all of the arguments as required but preserve the nominal |
| 342 | // possibility of variadics. |
| 343 | } else if (CGT.CGM.getTargetCodeGenInfo() |
| 344 | .isNoProtoCallVariadic(args, cast<FunctionNoProtoType>(fnType))) { |
| 345 | required = RequiredArgs(args.size()); |
| 346 | } |
| 347 | |
| 348 | return CGT.arrangeFreeFunctionCall(fnType->getResultType(), args, |
| 349 | fnType->getExtInfo(), required); |
| 350 | } |
| 351 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 352 | /// Figure out the rules for calling a function with the given formal |
| 353 | /// type using the given arguments. The arguments are necessary |
| 354 | /// because the function might be unprototyped, in which case it's |
| 355 | /// target-dependent in crazy ways. |
| 356 | const CGFunctionInfo & |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 357 | CodeGenTypes::arrangeFreeFunctionCall(const CallArgList &args, |
| 358 | const FunctionType *fnType) { |
John McCall | e56bb36 | 2012-12-07 07:03:17 +0000 | [diff] [blame] | 359 | return arrangeFreeFunctionLikeCall(*this, args, fnType, 0); |
| 360 | } |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 361 | |
John McCall | e56bb36 | 2012-12-07 07:03:17 +0000 | [diff] [blame] | 362 | /// A block function call is essentially a free-function call with an |
| 363 | /// extra implicit argument. |
| 364 | const CGFunctionInfo & |
| 365 | CodeGenTypes::arrangeBlockFunctionCall(const CallArgList &args, |
| 366 | const FunctionType *fnType) { |
| 367 | return arrangeFreeFunctionLikeCall(*this, args, fnType, 1); |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | const CGFunctionInfo & |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 371 | CodeGenTypes::arrangeFreeFunctionCall(QualType resultType, |
| 372 | const CallArgList &args, |
| 373 | FunctionType::ExtInfo info, |
| 374 | RequiredArgs required) { |
Daniel Dunbar | 541b63b | 2009-02-02 23:23:47 +0000 | [diff] [blame] | 375 | // FIXME: Kill copy. |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 376 | SmallVector<CanQualType, 16> argTypes; |
| 377 | for (CallArgList::const_iterator i = args.begin(), e = args.end(); |
Daniel Dunbar | 725ad31 | 2009-01-31 02:19:00 +0000 | [diff] [blame] | 378 | i != e; ++i) |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 379 | argTypes.push_back(Context.getCanonicalParamType(i->Ty)); |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 380 | return arrangeLLVMFunctionInfo(GetReturnType(resultType), argTypes, info, |
| 381 | required); |
| 382 | } |
| 383 | |
| 384 | /// Arrange a call to a C++ method, passing the given arguments. |
| 385 | const CGFunctionInfo & |
| 386 | CodeGenTypes::arrangeCXXMethodCall(const CallArgList &args, |
| 387 | const FunctionProtoType *FPT, |
| 388 | RequiredArgs required) { |
| 389 | // FIXME: Kill copy. |
| 390 | SmallVector<CanQualType, 16> argTypes; |
| 391 | for (CallArgList::const_iterator i = args.begin(), e = args.end(); |
| 392 | i != e; ++i) |
| 393 | argTypes.push_back(Context.getCanonicalParamType(i->Ty)); |
| 394 | |
| 395 | FunctionType::ExtInfo info = FPT->getExtInfo(); |
Timur Iskhodzhanov | 8f88a1d | 2012-07-12 09:50:54 +0000 | [diff] [blame] | 396 | adjustCXXMethodInfo(*this, info, FPT->isVariadic()); |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 397 | return arrangeLLVMFunctionInfo(GetReturnType(FPT->getResultType()), |
| 398 | argTypes, info, required); |
Daniel Dunbar | 725ad31 | 2009-01-31 02:19:00 +0000 | [diff] [blame] | 399 | } |
| 400 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 401 | const CGFunctionInfo & |
| 402 | CodeGenTypes::arrangeFunctionDeclaration(QualType resultType, |
| 403 | const FunctionArgList &args, |
| 404 | const FunctionType::ExtInfo &info, |
| 405 | bool isVariadic) { |
Daniel Dunbar | 541b63b | 2009-02-02 23:23:47 +0000 | [diff] [blame] | 406 | // FIXME: Kill copy. |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 407 | SmallVector<CanQualType, 16> argTypes; |
| 408 | for (FunctionArgList::const_iterator i = args.begin(), e = args.end(); |
Daniel Dunbar | bb36d33 | 2009-02-02 21:43:58 +0000 | [diff] [blame] | 409 | i != e; ++i) |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 410 | argTypes.push_back(Context.getCanonicalParamType((*i)->getType())); |
| 411 | |
| 412 | RequiredArgs required = |
| 413 | (isVariadic ? RequiredArgs(args.size()) : RequiredArgs::All); |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 414 | return arrangeLLVMFunctionInfo(GetReturnType(resultType), argTypes, info, |
| 415 | required); |
Daniel Dunbar | 541b63b | 2009-02-02 23:23:47 +0000 | [diff] [blame] | 416 | } |
| 417 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 418 | const CGFunctionInfo &CodeGenTypes::arrangeNullaryFunction() { |
Dmitri Gribenko | 5543169 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 419 | return arrangeLLVMFunctionInfo(getContext().VoidTy, None, |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 420 | FunctionType::ExtInfo(), RequiredArgs::All); |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 421 | } |
| 422 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 423 | /// Arrange the argument and result information for an abstract value |
| 424 | /// of a given function type. This is the method which all of the |
| 425 | /// above functions ultimately defer to. |
| 426 | const CGFunctionInfo & |
John McCall | 0f3d097 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 427 | CodeGenTypes::arrangeLLVMFunctionInfo(CanQualType resultType, |
| 428 | ArrayRef<CanQualType> argTypes, |
| 429 | FunctionType::ExtInfo info, |
| 430 | RequiredArgs required) { |
John McCall | ead608a | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 431 | #ifndef NDEBUG |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 432 | for (ArrayRef<CanQualType>::const_iterator |
| 433 | I = argTypes.begin(), E = argTypes.end(); I != E; ++I) |
John McCall | ead608a | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 434 | assert(I->isCanonicalAsParam()); |
| 435 | #endif |
| 436 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 437 | unsigned CC = ClangCallConvToLLVMCallConv(info.getCC()); |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 438 | |
Daniel Dunbar | 40a6be6 | 2009-02-03 00:07:12 +0000 | [diff] [blame] | 439 | // Lookup or create unique function info. |
| 440 | llvm::FoldingSetNodeID ID; |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 441 | CGFunctionInfo::Profile(ID, info, required, resultType, argTypes); |
Daniel Dunbar | 40a6be6 | 2009-02-03 00:07:12 +0000 | [diff] [blame] | 442 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 443 | void *insertPos = 0; |
| 444 | CGFunctionInfo *FI = FunctionInfos.FindNodeOrInsertPos(ID, insertPos); |
Daniel Dunbar | 40a6be6 | 2009-02-03 00:07:12 +0000 | [diff] [blame] | 445 | if (FI) |
| 446 | return *FI; |
| 447 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 448 | // Construct the function info. We co-allocate the ArgInfos. |
| 449 | FI = CGFunctionInfo::create(CC, info, resultType, argTypes, required); |
| 450 | FunctionInfos.InsertNode(FI, insertPos); |
Daniel Dunbar | 88c2fa9 | 2009-02-03 05:31:23 +0000 | [diff] [blame] | 451 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 452 | bool inserted = FunctionsBeingProcessed.insert(FI); (void)inserted; |
| 453 | assert(inserted && "Recursively being processed?"); |
Chris Lattner | 71305cc | 2011-07-15 05:16:14 +0000 | [diff] [blame] | 454 | |
Daniel Dunbar | 88c2fa9 | 2009-02-03 05:31:23 +0000 | [diff] [blame] | 455 | // Compute ABI information. |
Chris Lattner | ee5dcd0 | 2010-07-29 02:31:05 +0000 | [diff] [blame] | 456 | getABIInfo().computeInfo(*FI); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 457 | |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 458 | // Loop over all of the computed argument and return value info. If any of |
| 459 | // them are direct or extend without a specified coerce type, specify the |
| 460 | // default now. |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 461 | ABIArgInfo &retInfo = FI->getReturnInfo(); |
| 462 | if (retInfo.canHaveCoerceToType() && retInfo.getCoerceToType() == 0) |
| 463 | retInfo.setCoerceToType(ConvertType(FI->getReturnType())); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 464 | |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 465 | for (CGFunctionInfo::arg_iterator I = FI->arg_begin(), E = FI->arg_end(); |
| 466 | I != E; ++I) |
| 467 | if (I->info.canHaveCoerceToType() && I->info.getCoerceToType() == 0) |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 468 | I->info.setCoerceToType(ConvertType(I->type)); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 469 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 470 | bool erased = FunctionsBeingProcessed.erase(FI); (void)erased; |
| 471 | assert(erased && "Not in set?"); |
Chris Lattner | d26c071 | 2011-07-15 06:41:05 +0000 | [diff] [blame] | 472 | |
Daniel Dunbar | 40a6be6 | 2009-02-03 00:07:12 +0000 | [diff] [blame] | 473 | return *FI; |
Daniel Dunbar | 541b63b | 2009-02-02 23:23:47 +0000 | [diff] [blame] | 474 | } |
| 475 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 476 | CGFunctionInfo *CGFunctionInfo::create(unsigned llvmCC, |
| 477 | const FunctionType::ExtInfo &info, |
| 478 | CanQualType resultType, |
| 479 | ArrayRef<CanQualType> argTypes, |
| 480 | RequiredArgs required) { |
| 481 | void *buffer = operator new(sizeof(CGFunctionInfo) + |
| 482 | sizeof(ArgInfo) * (argTypes.size() + 1)); |
| 483 | CGFunctionInfo *FI = new(buffer) CGFunctionInfo(); |
| 484 | FI->CallingConvention = llvmCC; |
| 485 | FI->EffectiveCallingConvention = llvmCC; |
| 486 | FI->ASTCallingConvention = info.getCC(); |
| 487 | FI->NoReturn = info.getNoReturn(); |
| 488 | FI->ReturnsRetained = info.getProducesResult(); |
| 489 | FI->Required = required; |
| 490 | FI->HasRegParm = info.getHasRegParm(); |
| 491 | FI->RegParm = info.getRegParm(); |
| 492 | FI->NumArgs = argTypes.size(); |
| 493 | FI->getArgsBuffer()[0].type = resultType; |
| 494 | for (unsigned i = 0, e = argTypes.size(); i != e; ++i) |
| 495 | FI->getArgsBuffer()[i + 1].type = argTypes[i]; |
| 496 | return FI; |
Daniel Dunbar | 88c2fa9 | 2009-02-03 05:31:23 +0000 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | /***/ |
| 500 | |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 501 | void CodeGenTypes::GetExpandedTypes(QualType type, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 502 | SmallVectorImpl<llvm::Type*> &expandedTypes) { |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 503 | if (const ConstantArrayType *AT = Context.getAsConstantArrayType(type)) { |
| 504 | uint64_t NumElts = AT->getSize().getZExtValue(); |
| 505 | for (uint64_t Elt = 0; Elt < NumElts; ++Elt) |
| 506 | GetExpandedTypes(AT->getElementType(), expandedTypes); |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 507 | } else if (const RecordType *RT = type->getAs<RecordType>()) { |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 508 | const RecordDecl *RD = RT->getDecl(); |
| 509 | assert(!RD->hasFlexibleArrayMember() && |
| 510 | "Cannot expand structure with flexible array."); |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 511 | if (RD->isUnion()) { |
| 512 | // Unions can be here only in degenerative cases - all the fields are same |
| 513 | // after flattening. Thus we have to use the "largest" field. |
| 514 | const FieldDecl *LargestFD = 0; |
| 515 | CharUnits UnionSize = CharUnits::Zero(); |
| 516 | |
| 517 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 518 | i != e; ++i) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 519 | const FieldDecl *FD = *i; |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 520 | assert(!FD->isBitField() && |
| 521 | "Cannot expand structure with bit-field members."); |
| 522 | CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType()); |
| 523 | if (UnionSize < FieldSize) { |
| 524 | UnionSize = FieldSize; |
| 525 | LargestFD = FD; |
| 526 | } |
| 527 | } |
| 528 | if (LargestFD) |
| 529 | GetExpandedTypes(LargestFD->getType(), expandedTypes); |
| 530 | } else { |
| 531 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 532 | i != e; ++i) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 533 | assert(!i->isBitField() && |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 534 | "Cannot expand structure with bit-field members."); |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 535 | GetExpandedTypes(i->getType(), expandedTypes); |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 536 | } |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 537 | } |
| 538 | } else if (const ComplexType *CT = type->getAs<ComplexType>()) { |
| 539 | llvm::Type *EltTy = ConvertType(CT->getElementType()); |
| 540 | expandedTypes.push_back(EltTy); |
| 541 | expandedTypes.push_back(EltTy); |
| 542 | } else |
| 543 | expandedTypes.push_back(ConvertType(type)); |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 544 | } |
| 545 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 546 | llvm::Function::arg_iterator |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 547 | CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV, |
| 548 | llvm::Function::arg_iterator AI) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 549 | assert(LV.isSimple() && |
| 550 | "Unexpected non-simple lvalue during struct expansion."); |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 551 | |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 552 | if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) { |
| 553 | unsigned NumElts = AT->getSize().getZExtValue(); |
| 554 | QualType EltTy = AT->getElementType(); |
| 555 | for (unsigned Elt = 0; Elt < NumElts; ++Elt) { |
Eli Friedman | 377ecc7 | 2012-04-16 03:54:45 +0000 | [diff] [blame] | 556 | llvm::Value *EltAddr = Builder.CreateConstGEP2_32(LV.getAddress(), 0, Elt); |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 557 | LValue LV = MakeAddrLValue(EltAddr, EltTy); |
| 558 | AI = ExpandTypeFromArgs(EltTy, LV, AI); |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 559 | } |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 560 | } else if (const RecordType *RT = Ty->getAs<RecordType>()) { |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 561 | RecordDecl *RD = RT->getDecl(); |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 562 | if (RD->isUnion()) { |
| 563 | // Unions can be here only in degenerative cases - all the fields are same |
| 564 | // after flattening. Thus we have to use the "largest" field. |
| 565 | const FieldDecl *LargestFD = 0; |
| 566 | CharUnits UnionSize = CharUnits::Zero(); |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 567 | |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 568 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 569 | i != e; ++i) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 570 | const FieldDecl *FD = *i; |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 571 | assert(!FD->isBitField() && |
| 572 | "Cannot expand structure with bit-field members."); |
| 573 | CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType()); |
| 574 | if (UnionSize < FieldSize) { |
| 575 | UnionSize = FieldSize; |
| 576 | LargestFD = FD; |
| 577 | } |
| 578 | } |
| 579 | if (LargestFD) { |
| 580 | // FIXME: What are the right qualifiers here? |
Eli Friedman | 377ecc7 | 2012-04-16 03:54:45 +0000 | [diff] [blame] | 581 | LValue SubLV = EmitLValueForField(LV, LargestFD); |
| 582 | AI = ExpandTypeFromArgs(LargestFD->getType(), SubLV, AI); |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 583 | } |
| 584 | } else { |
| 585 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 586 | i != e; ++i) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 587 | FieldDecl *FD = *i; |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 588 | QualType FT = FD->getType(); |
| 589 | |
| 590 | // FIXME: What are the right qualifiers here? |
Eli Friedman | 377ecc7 | 2012-04-16 03:54:45 +0000 | [diff] [blame] | 591 | LValue SubLV = EmitLValueForField(LV, FD); |
| 592 | AI = ExpandTypeFromArgs(FT, SubLV, AI); |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 593 | } |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 594 | } |
| 595 | } else if (const ComplexType *CT = Ty->getAs<ComplexType>()) { |
| 596 | QualType EltTy = CT->getElementType(); |
Eli Friedman | 377ecc7 | 2012-04-16 03:54:45 +0000 | [diff] [blame] | 597 | llvm::Value *RealAddr = Builder.CreateStructGEP(LV.getAddress(), 0, "real"); |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 598 | EmitStoreThroughLValue(RValue::get(AI++), MakeAddrLValue(RealAddr, EltTy)); |
Eli Friedman | 377ecc7 | 2012-04-16 03:54:45 +0000 | [diff] [blame] | 599 | llvm::Value *ImagAddr = Builder.CreateStructGEP(LV.getAddress(), 1, "imag"); |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 600 | EmitStoreThroughLValue(RValue::get(AI++), MakeAddrLValue(ImagAddr, EltTy)); |
| 601 | } else { |
| 602 | EmitStoreThroughLValue(RValue::get(AI), LV); |
| 603 | ++AI; |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | return AI; |
| 607 | } |
| 608 | |
Chris Lattner | e7bb777 | 2010-06-27 06:04:18 +0000 | [diff] [blame] | 609 | /// EnterStructPointerForCoercedAccess - Given a struct pointer that we are |
Chris Lattner | 08dd2a0 | 2010-06-27 05:56:15 +0000 | [diff] [blame] | 610 | /// accessing some number of bytes out of it, try to gep into the struct to get |
| 611 | /// at its inner goodness. Dive as deep as possible without entering an element |
| 612 | /// with an in-memory size smaller than DstSize. |
| 613 | static llvm::Value * |
Chris Lattner | e7bb777 | 2010-06-27 06:04:18 +0000 | [diff] [blame] | 614 | EnterStructPointerForCoercedAccess(llvm::Value *SrcPtr, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 615 | llvm::StructType *SrcSTy, |
Chris Lattner | e7bb777 | 2010-06-27 06:04:18 +0000 | [diff] [blame] | 616 | uint64_t DstSize, CodeGenFunction &CGF) { |
Chris Lattner | 08dd2a0 | 2010-06-27 05:56:15 +0000 | [diff] [blame] | 617 | // We can't dive into a zero-element struct. |
| 618 | if (SrcSTy->getNumElements() == 0) return SrcPtr; |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 619 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 620 | llvm::Type *FirstElt = SrcSTy->getElementType(0); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 621 | |
Chris Lattner | 08dd2a0 | 2010-06-27 05:56:15 +0000 | [diff] [blame] | 622 | // If the first elt is at least as large as what we're looking for, or if the |
| 623 | // first element is the same size as the whole struct, we can enter it. |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 624 | uint64_t FirstEltSize = |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 625 | CGF.CGM.getDataLayout().getTypeAllocSize(FirstElt); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 626 | if (FirstEltSize < DstSize && |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 627 | FirstEltSize < CGF.CGM.getDataLayout().getTypeAllocSize(SrcSTy)) |
Chris Lattner | 08dd2a0 | 2010-06-27 05:56:15 +0000 | [diff] [blame] | 628 | return SrcPtr; |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 629 | |
Chris Lattner | 08dd2a0 | 2010-06-27 05:56:15 +0000 | [diff] [blame] | 630 | // GEP into the first element. |
| 631 | SrcPtr = CGF.Builder.CreateConstGEP2_32(SrcPtr, 0, 0, "coerce.dive"); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 632 | |
Chris Lattner | 08dd2a0 | 2010-06-27 05:56:15 +0000 | [diff] [blame] | 633 | // If the first element is a struct, recurse. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 634 | llvm::Type *SrcTy = |
Chris Lattner | 08dd2a0 | 2010-06-27 05:56:15 +0000 | [diff] [blame] | 635 | cast<llvm::PointerType>(SrcPtr->getType())->getElementType(); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 636 | if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) |
Chris Lattner | e7bb777 | 2010-06-27 06:04:18 +0000 | [diff] [blame] | 637 | return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF); |
Chris Lattner | 08dd2a0 | 2010-06-27 05:56:15 +0000 | [diff] [blame] | 638 | |
| 639 | return SrcPtr; |
| 640 | } |
| 641 | |
Chris Lattner | 6d11cdb | 2010-06-27 06:26:04 +0000 | [diff] [blame] | 642 | /// CoerceIntOrPtrToIntOrPtr - Convert a value Val to the specific Ty where both |
| 643 | /// are either integers or pointers. This does a truncation of the value if it |
| 644 | /// is too large or a zero extension if it is too small. |
Jakob Stoklund Olesen | 7e9f52f | 2013-06-05 03:00:13 +0000 | [diff] [blame] | 645 | /// |
| 646 | /// This behaves as if the value were coerced through memory, so on big-endian |
| 647 | /// targets the high bits are preserved in a truncation, while little-endian |
| 648 | /// targets preserve the low bits. |
Chris Lattner | 6d11cdb | 2010-06-27 06:26:04 +0000 | [diff] [blame] | 649 | static llvm::Value *CoerceIntOrPtrToIntOrPtr(llvm::Value *Val, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 650 | llvm::Type *Ty, |
Chris Lattner | 6d11cdb | 2010-06-27 06:26:04 +0000 | [diff] [blame] | 651 | CodeGenFunction &CGF) { |
| 652 | if (Val->getType() == Ty) |
| 653 | return Val; |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 654 | |
Chris Lattner | 6d11cdb | 2010-06-27 06:26:04 +0000 | [diff] [blame] | 655 | if (isa<llvm::PointerType>(Val->getType())) { |
| 656 | // If this is Pointer->Pointer avoid conversion to and from int. |
| 657 | if (isa<llvm::PointerType>(Ty)) |
| 658 | return CGF.Builder.CreateBitCast(Val, Ty, "coerce.val"); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 659 | |
Chris Lattner | 6d11cdb | 2010-06-27 06:26:04 +0000 | [diff] [blame] | 660 | // Convert the pointer to an integer so we can play with its width. |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 661 | Val = CGF.Builder.CreatePtrToInt(Val, CGF.IntPtrTy, "coerce.val.pi"); |
Chris Lattner | 6d11cdb | 2010-06-27 06:26:04 +0000 | [diff] [blame] | 662 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 663 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 664 | llvm::Type *DestIntTy = Ty; |
Chris Lattner | 6d11cdb | 2010-06-27 06:26:04 +0000 | [diff] [blame] | 665 | if (isa<llvm::PointerType>(DestIntTy)) |
Chris Lattner | 77b89b8 | 2010-06-27 07:15:29 +0000 | [diff] [blame] | 666 | DestIntTy = CGF.IntPtrTy; |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 667 | |
Jakob Stoklund Olesen | 7e9f52f | 2013-06-05 03:00:13 +0000 | [diff] [blame] | 668 | if (Val->getType() != DestIntTy) { |
| 669 | const llvm::DataLayout &DL = CGF.CGM.getDataLayout(); |
| 670 | if (DL.isBigEndian()) { |
| 671 | // Preserve the high bits on big-endian targets. |
| 672 | // That is what memory coercion does. |
| 673 | uint64_t SrcSize = DL.getTypeAllocSizeInBits(Val->getType()); |
| 674 | uint64_t DstSize = DL.getTypeAllocSizeInBits(DestIntTy); |
| 675 | if (SrcSize > DstSize) { |
| 676 | Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits"); |
| 677 | Val = CGF.Builder.CreateTrunc(Val, DestIntTy, "coerce.val.ii"); |
| 678 | } else { |
| 679 | Val = CGF.Builder.CreateZExt(Val, DestIntTy, "coerce.val.ii"); |
| 680 | Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits"); |
| 681 | } |
| 682 | } else { |
| 683 | // Little-endian targets preserve the low bits. No shifts required. |
| 684 | Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii"); |
| 685 | } |
| 686 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 687 | |
Chris Lattner | 6d11cdb | 2010-06-27 06:26:04 +0000 | [diff] [blame] | 688 | if (isa<llvm::PointerType>(Ty)) |
| 689 | Val = CGF.Builder.CreateIntToPtr(Val, Ty, "coerce.val.ip"); |
| 690 | return Val; |
| 691 | } |
| 692 | |
Chris Lattner | 08dd2a0 | 2010-06-27 05:56:15 +0000 | [diff] [blame] | 693 | |
| 694 | |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 695 | /// CreateCoercedLoad - Create a load from \arg SrcPtr interpreted as |
| 696 | /// a pointer to an object of type \arg Ty. |
| 697 | /// |
| 698 | /// This safely handles the case when the src type is smaller than the |
| 699 | /// destination type; in this situation the values of bits which not |
| 700 | /// present in the src are undefined. |
| 701 | static llvm::Value *CreateCoercedLoad(llvm::Value *SrcPtr, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 702 | llvm::Type *Ty, |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 703 | CodeGenFunction &CGF) { |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 704 | llvm::Type *SrcTy = |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 705 | cast<llvm::PointerType>(SrcPtr->getType())->getElementType(); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 706 | |
Chris Lattner | 6ae0069 | 2010-06-28 22:51:39 +0000 | [diff] [blame] | 707 | // If SrcTy and Ty are the same, just do a load. |
| 708 | if (SrcTy == Ty) |
| 709 | return CGF.Builder.CreateLoad(SrcPtr); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 710 | |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 711 | uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 712 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 713 | if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) { |
Chris Lattner | e7bb777 | 2010-06-27 06:04:18 +0000 | [diff] [blame] | 714 | SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF); |
Chris Lattner | 08dd2a0 | 2010-06-27 05:56:15 +0000 | [diff] [blame] | 715 | SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType(); |
| 716 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 717 | |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 718 | uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 719 | |
Chris Lattner | 6d11cdb | 2010-06-27 06:26:04 +0000 | [diff] [blame] | 720 | // If the source and destination are integer or pointer types, just do an |
| 721 | // extension or truncation to the desired type. |
| 722 | if ((isa<llvm::IntegerType>(Ty) || isa<llvm::PointerType>(Ty)) && |
| 723 | (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) { |
| 724 | llvm::LoadInst *Load = CGF.Builder.CreateLoad(SrcPtr); |
| 725 | return CoerceIntOrPtrToIntOrPtr(Load, Ty, CGF); |
| 726 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 727 | |
Daniel Dunbar | b225be4 | 2009-02-03 05:59:18 +0000 | [diff] [blame] | 728 | // If load is legal, just bitcast the src pointer. |
Daniel Dunbar | 7ef455b | 2009-05-13 18:54:26 +0000 | [diff] [blame] | 729 | if (SrcSize >= DstSize) { |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 730 | // Generally SrcSize is never greater than DstSize, since this means we are |
| 731 | // losing bits. However, this can happen in cases where the structure has |
| 732 | // additional padding, for example due to a user specified alignment. |
Daniel Dunbar | 7ef455b | 2009-05-13 18:54:26 +0000 | [diff] [blame] | 733 | // |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 734 | // FIXME: Assert that we aren't truncating non-padding bits when have access |
| 735 | // to that information. |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 736 | llvm::Value *Casted = |
| 737 | CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty)); |
Daniel Dunbar | 386621f | 2009-02-07 02:46:03 +0000 | [diff] [blame] | 738 | llvm::LoadInst *Load = CGF.Builder.CreateLoad(Casted); |
| 739 | // FIXME: Use better alignment / avoid requiring aligned load. |
| 740 | Load->setAlignment(1); |
| 741 | return Load; |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 742 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 743 | |
Chris Lattner | 35b21b8 | 2010-06-27 01:06:27 +0000 | [diff] [blame] | 744 | // Otherwise do coercion through memory. This is stupid, but |
| 745 | // simple. |
| 746 | llvm::Value *Tmp = CGF.CreateTempAlloca(Ty); |
Manman Ren | f51c61c | 2012-11-28 22:08:52 +0000 | [diff] [blame] | 747 | llvm::Type *I8PtrTy = CGF.Builder.getInt8PtrTy(); |
| 748 | llvm::Value *Casted = CGF.Builder.CreateBitCast(Tmp, I8PtrTy); |
| 749 | llvm::Value *SrcCasted = CGF.Builder.CreateBitCast(SrcPtr, I8PtrTy); |
Manman Ren | 060f34d | 2012-11-28 22:29:41 +0000 | [diff] [blame] | 750 | // FIXME: Use better alignment. |
Manman Ren | f51c61c | 2012-11-28 22:08:52 +0000 | [diff] [blame] | 751 | CGF.Builder.CreateMemCpy(Casted, SrcCasted, |
| 752 | llvm::ConstantInt::get(CGF.IntPtrTy, SrcSize), |
| 753 | 1, false); |
Chris Lattner | 35b21b8 | 2010-06-27 01:06:27 +0000 | [diff] [blame] | 754 | return CGF.Builder.CreateLoad(Tmp); |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 755 | } |
| 756 | |
Eli Friedman | badea57 | 2011-05-17 21:08:01 +0000 | [diff] [blame] | 757 | // Function to store a first-class aggregate into memory. We prefer to |
| 758 | // store the elements rather than the aggregate to be more friendly to |
| 759 | // fast-isel. |
| 760 | // FIXME: Do we need to recurse here? |
| 761 | static void BuildAggStore(CodeGenFunction &CGF, llvm::Value *Val, |
| 762 | llvm::Value *DestPtr, bool DestIsVolatile, |
| 763 | bool LowAlignment) { |
| 764 | // Prefer scalar stores to first-class aggregate stores. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 765 | if (llvm::StructType *STy = |
Eli Friedman | badea57 | 2011-05-17 21:08:01 +0000 | [diff] [blame] | 766 | dyn_cast<llvm::StructType>(Val->getType())) { |
| 767 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { |
| 768 | llvm::Value *EltPtr = CGF.Builder.CreateConstGEP2_32(DestPtr, 0, i); |
| 769 | llvm::Value *Elt = CGF.Builder.CreateExtractValue(Val, i); |
| 770 | llvm::StoreInst *SI = CGF.Builder.CreateStore(Elt, EltPtr, |
| 771 | DestIsVolatile); |
| 772 | if (LowAlignment) |
| 773 | SI->setAlignment(1); |
| 774 | } |
| 775 | } else { |
Bill Wendling | 0821263 | 2012-03-16 21:45:12 +0000 | [diff] [blame] | 776 | llvm::StoreInst *SI = CGF.Builder.CreateStore(Val, DestPtr, DestIsVolatile); |
| 777 | if (LowAlignment) |
| 778 | SI->setAlignment(1); |
Eli Friedman | badea57 | 2011-05-17 21:08:01 +0000 | [diff] [blame] | 779 | } |
| 780 | } |
| 781 | |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 782 | /// CreateCoercedStore - Create a store to \arg DstPtr from \arg Src, |
| 783 | /// where the source and destination may have different types. |
| 784 | /// |
| 785 | /// This safely handles the case when the src type is larger than the |
| 786 | /// destination type; the upper bits of the src will be lost. |
| 787 | static void CreateCoercedStore(llvm::Value *Src, |
| 788 | llvm::Value *DstPtr, |
Anders Carlsson | d2490a9 | 2009-12-24 20:40:36 +0000 | [diff] [blame] | 789 | bool DstIsVolatile, |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 790 | CodeGenFunction &CGF) { |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 791 | llvm::Type *SrcTy = Src->getType(); |
| 792 | llvm::Type *DstTy = |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 793 | cast<llvm::PointerType>(DstPtr->getType())->getElementType(); |
Chris Lattner | 6ae0069 | 2010-06-28 22:51:39 +0000 | [diff] [blame] | 794 | if (SrcTy == DstTy) { |
| 795 | CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile); |
| 796 | return; |
| 797 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 798 | |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 799 | uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 800 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 801 | if (llvm::StructType *DstSTy = dyn_cast<llvm::StructType>(DstTy)) { |
Chris Lattner | e7bb777 | 2010-06-27 06:04:18 +0000 | [diff] [blame] | 802 | DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF); |
| 803 | DstTy = cast<llvm::PointerType>(DstPtr->getType())->getElementType(); |
| 804 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 805 | |
Chris Lattner | 6d11cdb | 2010-06-27 06:26:04 +0000 | [diff] [blame] | 806 | // If the source and destination are integer or pointer types, just do an |
| 807 | // extension or truncation to the desired type. |
| 808 | if ((isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy)) && |
| 809 | (isa<llvm::IntegerType>(DstTy) || isa<llvm::PointerType>(DstTy))) { |
| 810 | Src = CoerceIntOrPtrToIntOrPtr(Src, DstTy, CGF); |
| 811 | CGF.Builder.CreateStore(Src, DstPtr, DstIsVolatile); |
| 812 | return; |
| 813 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 814 | |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 815 | uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(DstTy); |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 816 | |
Daniel Dunbar | 88c2fa9 | 2009-02-03 05:31:23 +0000 | [diff] [blame] | 817 | // If store is legal, just bitcast the src pointer. |
Daniel Dunbar | fdf4986 | 2009-06-05 07:58:54 +0000 | [diff] [blame] | 818 | if (SrcSize <= DstSize) { |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 819 | llvm::Value *Casted = |
| 820 | CGF.Builder.CreateBitCast(DstPtr, llvm::PointerType::getUnqual(SrcTy)); |
Daniel Dunbar | 386621f | 2009-02-07 02:46:03 +0000 | [diff] [blame] | 821 | // FIXME: Use better alignment / avoid requiring aligned store. |
Eli Friedman | badea57 | 2011-05-17 21:08:01 +0000 | [diff] [blame] | 822 | BuildAggStore(CGF, Src, Casted, DstIsVolatile, true); |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 823 | } else { |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 824 | // Otherwise do coercion through memory. This is stupid, but |
| 825 | // simple. |
Daniel Dunbar | fdf4986 | 2009-06-05 07:58:54 +0000 | [diff] [blame] | 826 | |
| 827 | // Generally SrcSize is never greater than DstSize, since this means we are |
| 828 | // losing bits. However, this can happen in cases where the structure has |
| 829 | // additional padding, for example due to a user specified alignment. |
| 830 | // |
| 831 | // FIXME: Assert that we aren't truncating non-padding bits when have access |
| 832 | // to that information. |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 833 | llvm::Value *Tmp = CGF.CreateTempAlloca(SrcTy); |
| 834 | CGF.Builder.CreateStore(Src, Tmp); |
Manman Ren | f51c61c | 2012-11-28 22:08:52 +0000 | [diff] [blame] | 835 | llvm::Type *I8PtrTy = CGF.Builder.getInt8PtrTy(); |
| 836 | llvm::Value *Casted = CGF.Builder.CreateBitCast(Tmp, I8PtrTy); |
| 837 | llvm::Value *DstCasted = CGF.Builder.CreateBitCast(DstPtr, I8PtrTy); |
Manman Ren | 060f34d | 2012-11-28 22:29:41 +0000 | [diff] [blame] | 838 | // FIXME: Use better alignment. |
Manman Ren | f51c61c | 2012-11-28 22:08:52 +0000 | [diff] [blame] | 839 | CGF.Builder.CreateMemCpy(DstCasted, Casted, |
| 840 | llvm::ConstantInt::get(CGF.IntPtrTy, DstSize), |
| 841 | 1, false); |
Daniel Dunbar | 275e10d | 2009-02-02 19:06:38 +0000 | [diff] [blame] | 842 | } |
| 843 | } |
| 844 | |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 845 | /***/ |
| 846 | |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 847 | bool CodeGenModule::ReturnTypeUsesSRet(const CGFunctionInfo &FI) { |
Daniel Dunbar | 11e383a | 2009-02-05 08:00:50 +0000 | [diff] [blame] | 848 | return FI.getReturnInfo().isIndirect(); |
Daniel Dunbar | bb36d33 | 2009-02-02 21:43:58 +0000 | [diff] [blame] | 849 | } |
| 850 | |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 851 | bool CodeGenModule::ReturnTypeUsesFPRet(QualType ResultType) { |
| 852 | if (const BuiltinType *BT = ResultType->getAs<BuiltinType>()) { |
| 853 | switch (BT->getKind()) { |
| 854 | default: |
| 855 | return false; |
| 856 | case BuiltinType::Float: |
John McCall | 64aa4b3 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 857 | return getTarget().useObjCFPRetForRealType(TargetInfo::Float); |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 858 | case BuiltinType::Double: |
John McCall | 64aa4b3 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 859 | return getTarget().useObjCFPRetForRealType(TargetInfo::Double); |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 860 | case BuiltinType::LongDouble: |
John McCall | 64aa4b3 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 861 | return getTarget().useObjCFPRetForRealType(TargetInfo::LongDouble); |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 862 | } |
| 863 | } |
| 864 | |
| 865 | return false; |
| 866 | } |
| 867 | |
Anders Carlsson | eea6480 | 2011-10-31 16:27:11 +0000 | [diff] [blame] | 868 | bool CodeGenModule::ReturnTypeUsesFP2Ret(QualType ResultType) { |
| 869 | if (const ComplexType *CT = ResultType->getAs<ComplexType>()) { |
| 870 | if (const BuiltinType *BT = CT->getElementType()->getAs<BuiltinType>()) { |
| 871 | if (BT->getKind() == BuiltinType::LongDouble) |
John McCall | 64aa4b3 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 872 | return getTarget().useObjCFP2RetForComplexLongDouble(); |
Anders Carlsson | eea6480 | 2011-10-31 16:27:11 +0000 | [diff] [blame] | 873 | } |
| 874 | } |
| 875 | |
| 876 | return false; |
| 877 | } |
| 878 | |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 879 | llvm::FunctionType *CodeGenTypes::GetFunctionType(GlobalDecl GD) { |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 880 | const CGFunctionInfo &FI = arrangeGlobalDeclaration(GD); |
| 881 | return GetFunctionType(FI); |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 882 | } |
| 883 | |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 884 | llvm::FunctionType * |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 885 | CodeGenTypes::GetFunctionType(const CGFunctionInfo &FI) { |
Chris Lattner | 71305cc | 2011-07-15 05:16:14 +0000 | [diff] [blame] | 886 | |
| 887 | bool Inserted = FunctionsBeingProcessed.insert(&FI); (void)Inserted; |
| 888 | assert(Inserted && "Recursively being processed?"); |
| 889 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 890 | SmallVector<llvm::Type*, 8> argTypes; |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 891 | llvm::Type *resultType = 0; |
Daniel Dunbar | 45c25ba | 2008-09-10 04:01:49 +0000 | [diff] [blame] | 892 | |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 893 | const ABIArgInfo &retAI = FI.getReturnInfo(); |
| 894 | switch (retAI.getKind()) { |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 895 | case ABIArgInfo::Expand: |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 896 | llvm_unreachable("Invalid ABI kind for return argument"); |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 897 | |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 898 | case ABIArgInfo::Extend: |
Daniel Dunbar | 46327aa | 2009-02-03 06:17:37 +0000 | [diff] [blame] | 899 | case ABIArgInfo::Direct: |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 900 | resultType = retAI.getCoerceToType(); |
Daniel Dunbar | 46327aa | 2009-02-03 06:17:37 +0000 | [diff] [blame] | 901 | break; |
| 902 | |
Daniel Dunbar | 11e383a | 2009-02-05 08:00:50 +0000 | [diff] [blame] | 903 | case ABIArgInfo::Indirect: { |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 904 | assert(!retAI.getIndirectAlign() && "Align unused on indirect return."); |
| 905 | resultType = llvm::Type::getVoidTy(getLLVMContext()); |
| 906 | |
| 907 | QualType ret = FI.getReturnType(); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 908 | llvm::Type *ty = ConvertType(ret); |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 909 | unsigned addressSpace = Context.getTargetAddressSpace(ret); |
| 910 | argTypes.push_back(llvm::PointerType::get(ty, addressSpace)); |
Daniel Dunbar | 45c25ba | 2008-09-10 04:01:49 +0000 | [diff] [blame] | 911 | break; |
| 912 | } |
| 913 | |
Daniel Dunbar | 1143492 | 2009-01-26 21:26:08 +0000 | [diff] [blame] | 914 | case ABIArgInfo::Ignore: |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 915 | resultType = llvm::Type::getVoidTy(getLLVMContext()); |
Daniel Dunbar | 1143492 | 2009-01-26 21:26:08 +0000 | [diff] [blame] | 916 | break; |
Daniel Dunbar | 45c25ba | 2008-09-10 04:01:49 +0000 | [diff] [blame] | 917 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 918 | |
John McCall | e56bb36 | 2012-12-07 07:03:17 +0000 | [diff] [blame] | 919 | // Add in all of the required arguments. |
| 920 | CGFunctionInfo::const_arg_iterator it = FI.arg_begin(), ie; |
| 921 | if (FI.isVariadic()) { |
| 922 | ie = it + FI.getRequiredArgs().getNumRequiredArgs(); |
| 923 | } else { |
| 924 | ie = FI.arg_end(); |
| 925 | } |
| 926 | for (; it != ie; ++it) { |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 927 | const ABIArgInfo &argAI = it->info; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 928 | |
Rafael Espindola | e4aeeaa | 2012-10-24 01:59:00 +0000 | [diff] [blame] | 929 | // Insert a padding type to ensure proper alignment. |
| 930 | if (llvm::Type *PaddingType = argAI.getPaddingType()) |
| 931 | argTypes.push_back(PaddingType); |
| 932 | |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 933 | switch (argAI.getKind()) { |
Daniel Dunbar | 1143492 | 2009-01-26 21:26:08 +0000 | [diff] [blame] | 934 | case ABIArgInfo::Ignore: |
| 935 | break; |
| 936 | |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 937 | case ABIArgInfo::Indirect: { |
| 938 | // indirect arguments are always on the stack, which is addr space #0. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 939 | llvm::Type *LTy = ConvertTypeForMem(it->type); |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 940 | argTypes.push_back(LTy->getPointerTo()); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 941 | break; |
| 942 | } |
| 943 | |
| 944 | case ABIArgInfo::Extend: |
Chris Lattner | 1ed7267 | 2010-07-29 06:44:09 +0000 | [diff] [blame] | 945 | case ABIArgInfo::Direct: { |
Chris Lattner | ce70016 | 2010-06-28 23:44:11 +0000 | [diff] [blame] | 946 | // If the coerce-to type is a first class aggregate, flatten it. Either |
| 947 | // way is semantically identical, but fast-isel and the optimizer |
| 948 | // generally likes scalar values better than FCAs. |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 949 | llvm::Type *argType = argAI.getCoerceToType(); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 950 | if (llvm::StructType *st = dyn_cast<llvm::StructType>(argType)) { |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 951 | for (unsigned i = 0, e = st->getNumElements(); i != e; ++i) |
| 952 | argTypes.push_back(st->getElementType(i)); |
Chris Lattner | ce70016 | 2010-06-28 23:44:11 +0000 | [diff] [blame] | 953 | } else { |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 954 | argTypes.push_back(argType); |
Chris Lattner | ce70016 | 2010-06-28 23:44:11 +0000 | [diff] [blame] | 955 | } |
Daniel Dunbar | 89c9d8e | 2009-02-03 19:12:28 +0000 | [diff] [blame] | 956 | break; |
Chris Lattner | 1ed7267 | 2010-07-29 06:44:09 +0000 | [diff] [blame] | 957 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 958 | |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 959 | case ABIArgInfo::Expand: |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 960 | GetExpandedTypes(it->type, argTypes); |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 961 | break; |
| 962 | } |
Daniel Dunbar | 45c25ba | 2008-09-10 04:01:49 +0000 | [diff] [blame] | 963 | } |
| 964 | |
Chris Lattner | 71305cc | 2011-07-15 05:16:14 +0000 | [diff] [blame] | 965 | bool Erased = FunctionsBeingProcessed.erase(&FI); (void)Erased; |
| 966 | assert(Erased && "Not in set?"); |
| 967 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 968 | return llvm::FunctionType::get(resultType, argTypes, FI.isVariadic()); |
Daniel Dunbar | 3913f18 | 2008-09-09 23:48:28 +0000 | [diff] [blame] | 969 | } |
| 970 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 971 | llvm::Type *CodeGenTypes::GetFunctionTypeForVTable(GlobalDecl GD) { |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 972 | const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); |
Anders Carlsson | ecf282b | 2009-11-24 05:08:52 +0000 | [diff] [blame] | 973 | const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>(); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 974 | |
Chris Lattner | f742eb0 | 2011-07-10 00:18:59 +0000 | [diff] [blame] | 975 | if (!isFuncTypeConvertible(FPT)) |
| 976 | return llvm::StructType::get(getLLVMContext()); |
| 977 | |
| 978 | const CGFunctionInfo *Info; |
| 979 | if (isa<CXXDestructorDecl>(MD)) |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 980 | Info = &arrangeCXXDestructor(cast<CXXDestructorDecl>(MD), GD.getDtorType()); |
Chris Lattner | f742eb0 | 2011-07-10 00:18:59 +0000 | [diff] [blame] | 981 | else |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 982 | Info = &arrangeCXXMethodDeclaration(MD); |
| 983 | return GetFunctionType(*Info); |
Anders Carlsson | ecf282b | 2009-11-24 05:08:52 +0000 | [diff] [blame] | 984 | } |
| 985 | |
Daniel Dunbar | a0a99e0 | 2009-02-02 23:43:58 +0000 | [diff] [blame] | 986 | void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI, |
Daniel Dunbar | 88b5396 | 2009-02-02 22:03:45 +0000 | [diff] [blame] | 987 | const Decl *TargetDecl, |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 988 | AttributeListType &PAL, |
Bill Wendling | 94236e7 | 2013-02-22 00:13:35 +0000 | [diff] [blame] | 989 | unsigned &CallingConv, |
| 990 | bool AttrOnCallSite) { |
Bill Wendling | 0d58339 | 2012-10-15 20:36:26 +0000 | [diff] [blame] | 991 | llvm::AttrBuilder FuncAttrs; |
| 992 | llvm::AttrBuilder RetAttrs; |
Daniel Dunbar | 5323a4b | 2008-09-10 00:32:18 +0000 | [diff] [blame] | 993 | |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 994 | CallingConv = FI.getEffectiveCallingConvention(); |
| 995 | |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 996 | if (FI.isNoReturn()) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 997 | FuncAttrs.addAttribute(llvm::Attribute::NoReturn); |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 998 | |
Anton Korobeynikov | 1102f42 | 2009-04-04 00:49:24 +0000 | [diff] [blame] | 999 | // FIXME: handle sseregparm someday... |
Daniel Dunbar | 5323a4b | 2008-09-10 00:32:18 +0000 | [diff] [blame] | 1000 | if (TargetDecl) { |
Rafael Espindola | 6700415 | 2011-10-12 19:51:18 +0000 | [diff] [blame] | 1001 | if (TargetDecl->hasAttr<ReturnsTwiceAttr>()) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1002 | FuncAttrs.addAttribute(llvm::Attribute::ReturnsTwice); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1003 | if (TargetDecl->hasAttr<NoThrowAttr>()) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1004 | FuncAttrs.addAttribute(llvm::Attribute::NoUnwind); |
Richard Smith | 7586a6e | 2013-01-30 05:45:05 +0000 | [diff] [blame] | 1005 | if (TargetDecl->hasAttr<NoReturnAttr>()) |
| 1006 | FuncAttrs.addAttribute(llvm::Attribute::NoReturn); |
| 1007 | |
| 1008 | if (const FunctionDecl *Fn = dyn_cast<FunctionDecl>(TargetDecl)) { |
John McCall | 9c0c1f3 | 2010-07-08 06:48:12 +0000 | [diff] [blame] | 1009 | const FunctionProtoType *FPT = Fn->getType()->getAs<FunctionProtoType>(); |
Sebastian Redl | 8026f6d | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 1010 | if (FPT && FPT->isNothrow(getContext())) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1011 | FuncAttrs.addAttribute(llvm::Attribute::NoUnwind); |
Richard Smith | 3c5cd15 | 2013-03-05 08:30:04 +0000 | [diff] [blame] | 1012 | // Don't use [[noreturn]] or _Noreturn for a call to a virtual function. |
| 1013 | // These attributes are not inherited by overloads. |
| 1014 | const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn); |
| 1015 | if (Fn->isNoReturn() && !(AttrOnCallSite && MD && MD->isVirtual())) |
Richard Smith | 7586a6e | 2013-01-30 05:45:05 +0000 | [diff] [blame] | 1016 | FuncAttrs.addAttribute(llvm::Attribute::NoReturn); |
John McCall | 9c0c1f3 | 2010-07-08 06:48:12 +0000 | [diff] [blame] | 1017 | } |
| 1018 | |
Eric Christopher | 041087c | 2011-08-15 22:38:22 +0000 | [diff] [blame] | 1019 | // 'const' and 'pure' attribute functions are also nounwind. |
| 1020 | if (TargetDecl->hasAttr<ConstAttr>()) { |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1021 | FuncAttrs.addAttribute(llvm::Attribute::ReadNone); |
| 1022 | FuncAttrs.addAttribute(llvm::Attribute::NoUnwind); |
Eric Christopher | 041087c | 2011-08-15 22:38:22 +0000 | [diff] [blame] | 1023 | } else if (TargetDecl->hasAttr<PureAttr>()) { |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1024 | FuncAttrs.addAttribute(llvm::Attribute::ReadOnly); |
| 1025 | FuncAttrs.addAttribute(llvm::Attribute::NoUnwind); |
Eric Christopher | 041087c | 2011-08-15 22:38:22 +0000 | [diff] [blame] | 1026 | } |
Ryan Flynn | 76168e2 | 2009-08-09 20:07:29 +0000 | [diff] [blame] | 1027 | if (TargetDecl->hasAttr<MallocAttr>()) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1028 | RetAttrs.addAttribute(llvm::Attribute::NoAlias); |
Daniel Dunbar | 5323a4b | 2008-09-10 00:32:18 +0000 | [diff] [blame] | 1029 | } |
| 1030 | |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 1031 | if (CodeGenOpts.OptimizeSize) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1032 | FuncAttrs.addAttribute(llvm::Attribute::OptimizeForSize); |
Quentin Colombet | 9046768 | 2012-10-26 00:29:48 +0000 | [diff] [blame] | 1033 | if (CodeGenOpts.OptimizeSize == 2) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1034 | FuncAttrs.addAttribute(llvm::Attribute::MinSize); |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 1035 | if (CodeGenOpts.DisableRedZone) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1036 | FuncAttrs.addAttribute(llvm::Attribute::NoRedZone); |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 1037 | if (CodeGenOpts.NoImplicitFloat) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1038 | FuncAttrs.addAttribute(llvm::Attribute::NoImplicitFloat); |
Devang Patel | 24095da | 2009-06-04 23:32:02 +0000 | [diff] [blame] | 1039 | |
Bill Wendling | 93e4bff | 2013-02-22 20:53:29 +0000 | [diff] [blame] | 1040 | if (AttrOnCallSite) { |
| 1041 | // Attributes that should go on the call site only. |
| 1042 | if (!CodeGenOpts.SimplifyLibCalls) |
| 1043 | FuncAttrs.addAttribute(llvm::Attribute::NoBuiltin); |
Bill Wendling | be9e8bf | 2013-02-28 22:49:57 +0000 | [diff] [blame] | 1044 | } else { |
| 1045 | // Attributes that should go on the function, but not the call site. |
Bill Wendling | be9e8bf | 2013-02-28 22:49:57 +0000 | [diff] [blame] | 1046 | if (!CodeGenOpts.DisableFPElim) { |
Bill Wendling | 4159f05 | 2013-03-13 22:24:33 +0000 | [diff] [blame] | 1047 | FuncAttrs.addAttribute("no-frame-pointer-elim", "false"); |
| 1048 | FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf", "false"); |
Bill Wendling | be9e8bf | 2013-02-28 22:49:57 +0000 | [diff] [blame] | 1049 | } else if (CodeGenOpts.OmitLeafFramePointer) { |
Bill Wendling | 4159f05 | 2013-03-13 22:24:33 +0000 | [diff] [blame] | 1050 | FuncAttrs.addAttribute("no-frame-pointer-elim", "false"); |
| 1051 | FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf", "true"); |
Bill Wendling | be9e8bf | 2013-02-28 22:49:57 +0000 | [diff] [blame] | 1052 | } else { |
Bill Wendling | 4159f05 | 2013-03-13 22:24:33 +0000 | [diff] [blame] | 1053 | FuncAttrs.addAttribute("no-frame-pointer-elim", "true"); |
| 1054 | FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf", "true"); |
Bill Wendling | be9e8bf | 2013-02-28 22:49:57 +0000 | [diff] [blame] | 1055 | } |
| 1056 | |
Bill Wendling | 4159f05 | 2013-03-13 22:24:33 +0000 | [diff] [blame] | 1057 | FuncAttrs.addAttribute("less-precise-fpmad", |
| 1058 | CodeGenOpts.LessPreciseFPMAD ? "true" : "false"); |
| 1059 | FuncAttrs.addAttribute("no-infs-fp-math", |
| 1060 | CodeGenOpts.NoInfsFPMath ? "true" : "false"); |
| 1061 | FuncAttrs.addAttribute("no-nans-fp-math", |
| 1062 | CodeGenOpts.NoNaNsFPMath ? "true" : "false"); |
| 1063 | FuncAttrs.addAttribute("unsafe-fp-math", |
| 1064 | CodeGenOpts.UnsafeFPMath ? "true" : "false"); |
| 1065 | FuncAttrs.addAttribute("use-soft-float", |
| 1066 | CodeGenOpts.SoftFloat ? "true" : "false"); |
Bill Wendling | c0dcc2d | 2013-02-15 21:30:01 +0000 | [diff] [blame] | 1067 | } |
| 1068 | |
Daniel Dunbar | a0a99e0 | 2009-02-02 23:43:58 +0000 | [diff] [blame] | 1069 | QualType RetTy = FI.getReturnType(); |
Daniel Dunbar | 5323a4b | 2008-09-10 00:32:18 +0000 | [diff] [blame] | 1070 | unsigned Index = 1; |
Daniel Dunbar | b225be4 | 2009-02-03 05:59:18 +0000 | [diff] [blame] | 1071 | const ABIArgInfo &RetAI = FI.getReturnInfo(); |
Daniel Dunbar | 45c25ba | 2008-09-10 04:01:49 +0000 | [diff] [blame] | 1072 | switch (RetAI.getKind()) { |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 1073 | case ABIArgInfo::Extend: |
Jakob Stoklund Olesen | 5baefa8 | 2013-05-29 03:57:23 +0000 | [diff] [blame] | 1074 | if (RetTy->hasSignedIntegerRepresentation()) |
| 1075 | RetAttrs.addAttribute(llvm::Attribute::SExt); |
| 1076 | else if (RetTy->hasUnsignedIntegerRepresentation()) |
| 1077 | RetAttrs.addAttribute(llvm::Attribute::ZExt); |
Jakob Stoklund Olesen | 90f9ec0 | 2013-06-05 03:00:09 +0000 | [diff] [blame] | 1078 | // FALL THROUGH |
Daniel Dunbar | 46327aa | 2009-02-03 06:17:37 +0000 | [diff] [blame] | 1079 | case ABIArgInfo::Direct: |
Jakob Stoklund Olesen | 90f9ec0 | 2013-06-05 03:00:09 +0000 | [diff] [blame] | 1080 | if (RetAI.getInReg()) |
| 1081 | RetAttrs.addAttribute(llvm::Attribute::InReg); |
| 1082 | break; |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1083 | case ABIArgInfo::Ignore: |
Daniel Dunbar | 2c8e0f3 | 2008-09-10 02:41:04 +0000 | [diff] [blame] | 1084 | break; |
| 1085 | |
Rafael Espindola | b48280b | 2012-07-31 02:44:24 +0000 | [diff] [blame] | 1086 | case ABIArgInfo::Indirect: { |
Bill Wendling | 0d58339 | 2012-10-15 20:36:26 +0000 | [diff] [blame] | 1087 | llvm::AttrBuilder SRETAttrs; |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1088 | SRETAttrs.addAttribute(llvm::Attribute::StructRet); |
Rafael Espindola | b48280b | 2012-07-31 02:44:24 +0000 | [diff] [blame] | 1089 | if (RetAI.getInReg()) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1090 | SRETAttrs.addAttribute(llvm::Attribute::InReg); |
Bill Wendling | 603571a | 2012-10-10 07:36:56 +0000 | [diff] [blame] | 1091 | PAL.push_back(llvm:: |
Bill Wendling | b263bdf | 2013-01-27 02:46:53 +0000 | [diff] [blame] | 1092 | AttributeSet::get(getLLVMContext(), Index, SRETAttrs)); |
Rafael Espindola | b48280b | 2012-07-31 02:44:24 +0000 | [diff] [blame] | 1093 | |
Daniel Dunbar | 5323a4b | 2008-09-10 00:32:18 +0000 | [diff] [blame] | 1094 | ++Index; |
Daniel Dunbar | 0ac86f0 | 2009-03-18 19:51:01 +0000 | [diff] [blame] | 1095 | // sret disables readnone and readonly |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1096 | FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly) |
| 1097 | .removeAttribute(llvm::Attribute::ReadNone); |
Daniel Dunbar | 2c8e0f3 | 2008-09-10 02:41:04 +0000 | [diff] [blame] | 1098 | break; |
Rafael Espindola | b48280b | 2012-07-31 02:44:24 +0000 | [diff] [blame] | 1099 | } |
Daniel Dunbar | 2c8e0f3 | 2008-09-10 02:41:04 +0000 | [diff] [blame] | 1100 | |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 1101 | case ABIArgInfo::Expand: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1102 | llvm_unreachable("Invalid ABI kind for return argument"); |
Daniel Dunbar | 5323a4b | 2008-09-10 00:32:18 +0000 | [diff] [blame] | 1103 | } |
Daniel Dunbar | 2c8e0f3 | 2008-09-10 02:41:04 +0000 | [diff] [blame] | 1104 | |
Bill Wendling | 603571a | 2012-10-10 07:36:56 +0000 | [diff] [blame] | 1105 | if (RetAttrs.hasAttributes()) |
| 1106 | PAL.push_back(llvm:: |
Bill Wendling | b263bdf | 2013-01-27 02:46:53 +0000 | [diff] [blame] | 1107 | AttributeSet::get(getLLVMContext(), |
| 1108 | llvm::AttributeSet::ReturnIndex, |
| 1109 | RetAttrs)); |
Anton Korobeynikov | 1102f42 | 2009-04-04 00:49:24 +0000 | [diff] [blame] | 1110 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1111 | for (CGFunctionInfo::const_arg_iterator it = FI.arg_begin(), |
Daniel Dunbar | 88c2fa9 | 2009-02-03 05:31:23 +0000 | [diff] [blame] | 1112 | ie = FI.arg_end(); it != ie; ++it) { |
| 1113 | QualType ParamType = it->type; |
| 1114 | const ABIArgInfo &AI = it->info; |
Bill Wendling | 0d58339 | 2012-10-15 20:36:26 +0000 | [diff] [blame] | 1115 | llvm::AttrBuilder Attrs; |
Anton Korobeynikov | 1102f42 | 2009-04-04 00:49:24 +0000 | [diff] [blame] | 1116 | |
Rafael Espindola | e4aeeaa | 2012-10-24 01:59:00 +0000 | [diff] [blame] | 1117 | if (AI.getPaddingType()) { |
Bill Wendling | b263bdf | 2013-01-27 02:46:53 +0000 | [diff] [blame] | 1118 | if (AI.getPaddingInReg()) |
| 1119 | PAL.push_back(llvm::AttributeSet::get(getLLVMContext(), Index, |
| 1120 | llvm::Attribute::InReg)); |
Rafael Espindola | e4aeeaa | 2012-10-24 01:59:00 +0000 | [diff] [blame] | 1121 | // Increment Index if there is padding. |
| 1122 | ++Index; |
| 1123 | } |
| 1124 | |
John McCall | d8e10d2 | 2010-03-27 00:47:27 +0000 | [diff] [blame] | 1125 | // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we |
| 1126 | // have the corresponding parameter variable. It doesn't make |
Daniel Dunbar | 7f6890e | 2011-02-10 18:10:07 +0000 | [diff] [blame] | 1127 | // sense to do it here because parameters are so messed up. |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 1128 | switch (AI.getKind()) { |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1129 | case ABIArgInfo::Extend: |
Douglas Gregor | 575a1c9 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 1130 | if (ParamType->isSignedIntegerOrEnumerationType()) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1131 | Attrs.addAttribute(llvm::Attribute::SExt); |
Douglas Gregor | 575a1c9 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 1132 | else if (ParamType->isUnsignedIntegerOrEnumerationType()) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1133 | Attrs.addAttribute(llvm::Attribute::ZExt); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1134 | // FALL THROUGH |
| 1135 | case ABIArgInfo::Direct: |
Rafael Espindola | b48280b | 2012-07-31 02:44:24 +0000 | [diff] [blame] | 1136 | if (AI.getInReg()) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1137 | Attrs.addAttribute(llvm::Attribute::InReg); |
Rafael Espindola | b48280b | 2012-07-31 02:44:24 +0000 | [diff] [blame] | 1138 | |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1139 | // FIXME: handle sseregparm someday... |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1140 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1141 | if (llvm::StructType *STy = |
Rafael Espindola | b48280b | 2012-07-31 02:44:24 +0000 | [diff] [blame] | 1142 | dyn_cast<llvm::StructType>(AI.getCoerceToType())) { |
| 1143 | unsigned Extra = STy->getNumElements()-1; // 1 will be added below. |
Bill Wendling | 603571a | 2012-10-10 07:36:56 +0000 | [diff] [blame] | 1144 | if (Attrs.hasAttributes()) |
Rafael Espindola | b48280b | 2012-07-31 02:44:24 +0000 | [diff] [blame] | 1145 | for (unsigned I = 0; I < Extra; ++I) |
Bill Wendling | b263bdf | 2013-01-27 02:46:53 +0000 | [diff] [blame] | 1146 | PAL.push_back(llvm::AttributeSet::get(getLLVMContext(), Index + I, |
| 1147 | Attrs)); |
Rafael Espindola | b48280b | 2012-07-31 02:44:24 +0000 | [diff] [blame] | 1148 | Index += Extra; |
| 1149 | } |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1150 | break; |
Daniel Dunbar | 89c9d8e | 2009-02-03 19:12:28 +0000 | [diff] [blame] | 1151 | |
Daniel Dunbar | 11e383a | 2009-02-05 08:00:50 +0000 | [diff] [blame] | 1152 | case ABIArgInfo::Indirect: |
Rafael Espindola | 0b4cc95 | 2012-10-19 05:04:37 +0000 | [diff] [blame] | 1153 | if (AI.getInReg()) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1154 | Attrs.addAttribute(llvm::Attribute::InReg); |
Rafael Espindola | 0b4cc95 | 2012-10-19 05:04:37 +0000 | [diff] [blame] | 1155 | |
Anders Carlsson | 0a8f847 | 2009-09-16 15:53:40 +0000 | [diff] [blame] | 1156 | if (AI.getIndirectByVal()) |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1157 | Attrs.addAttribute(llvm::Attribute::ByVal); |
Anders Carlsson | 0a8f847 | 2009-09-16 15:53:40 +0000 | [diff] [blame] | 1158 | |
Bill Wendling | 603571a | 2012-10-10 07:36:56 +0000 | [diff] [blame] | 1159 | Attrs.addAlignmentAttr(AI.getIndirectAlign()); |
| 1160 | |
Daniel Dunbar | 0ac86f0 | 2009-03-18 19:51:01 +0000 | [diff] [blame] | 1161 | // byval disables readnone and readonly. |
Bill Wendling | 72390b3 | 2012-12-20 19:27:06 +0000 | [diff] [blame] | 1162 | FuncAttrs.removeAttribute(llvm::Attribute::ReadOnly) |
| 1163 | .removeAttribute(llvm::Attribute::ReadNone); |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 1164 | break; |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 1165 | |
Daniel Dunbar | 1143492 | 2009-01-26 21:26:08 +0000 | [diff] [blame] | 1166 | case ABIArgInfo::Ignore: |
| 1167 | // Skip increment, no matching LLVM parameter. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1168 | continue; |
Daniel Dunbar | 1143492 | 2009-01-26 21:26:08 +0000 | [diff] [blame] | 1169 | |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 1170 | case ABIArgInfo::Expand: { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1171 | SmallVector<llvm::Type*, 8> types; |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 1172 | // FIXME: This is rather inefficient. Do we ever actually need to do |
| 1173 | // anything here? The result should be just reconstructed on the other |
| 1174 | // side, so extension should be a non-issue. |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 1175 | getTypes().GetExpandedTypes(ParamType, types); |
John McCall | 42e0611 | 2011-05-15 02:19:42 +0000 | [diff] [blame] | 1176 | Index += types.size(); |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 1177 | continue; |
| 1178 | } |
Daniel Dunbar | 5323a4b | 2008-09-10 00:32:18 +0000 | [diff] [blame] | 1179 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1180 | |
Bill Wendling | 603571a | 2012-10-10 07:36:56 +0000 | [diff] [blame] | 1181 | if (Attrs.hasAttributes()) |
Bill Wendling | b263bdf | 2013-01-27 02:46:53 +0000 | [diff] [blame] | 1182 | PAL.push_back(llvm::AttributeSet::get(getLLVMContext(), Index, Attrs)); |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 1183 | ++Index; |
Daniel Dunbar | 5323a4b | 2008-09-10 00:32:18 +0000 | [diff] [blame] | 1184 | } |
Bill Wendling | 603571a | 2012-10-10 07:36:56 +0000 | [diff] [blame] | 1185 | if (FuncAttrs.hasAttributes()) |
Bill Wendling | 75d37b4 | 2012-10-15 07:31:59 +0000 | [diff] [blame] | 1186 | PAL.push_back(llvm:: |
Bill Wendling | b263bdf | 2013-01-27 02:46:53 +0000 | [diff] [blame] | 1187 | AttributeSet::get(getLLVMContext(), |
| 1188 | llvm::AttributeSet::FunctionIndex, |
| 1189 | FuncAttrs)); |
Daniel Dunbar | 5323a4b | 2008-09-10 00:32:18 +0000 | [diff] [blame] | 1190 | } |
| 1191 | |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1192 | /// An argument came in as a promoted argument; demote it back to its |
| 1193 | /// declared type. |
| 1194 | static llvm::Value *emitArgumentDemotion(CodeGenFunction &CGF, |
| 1195 | const VarDecl *var, |
| 1196 | llvm::Value *value) { |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1197 | llvm::Type *varType = CGF.ConvertType(var->getType()); |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1198 | |
| 1199 | // This can happen with promotions that actually don't change the |
| 1200 | // underlying type, like the enum promotions. |
| 1201 | if (value->getType() == varType) return value; |
| 1202 | |
| 1203 | assert((varType->isIntegerTy() || varType->isFloatingPointTy()) |
| 1204 | && "unexpected promotion type"); |
| 1205 | |
| 1206 | if (isa<llvm::IntegerType>(varType)) |
| 1207 | return CGF.Builder.CreateTrunc(value, varType, "arg.unpromote"); |
| 1208 | |
| 1209 | return CGF.Builder.CreateFPCast(value, varType, "arg.unpromote"); |
| 1210 | } |
| 1211 | |
Daniel Dunbar | 88b5396 | 2009-02-02 22:03:45 +0000 | [diff] [blame] | 1212 | void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI, |
| 1213 | llvm::Function *Fn, |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 1214 | const FunctionArgList &Args) { |
John McCall | 0cfeb63 | 2009-07-28 01:00:58 +0000 | [diff] [blame] | 1215 | // If this is an implicit-return-zero function, go ahead and |
| 1216 | // initialize the return value. TODO: it might be nice to have |
| 1217 | // a more general mechanism for this that didn't require synthesized |
| 1218 | // return statements. |
John McCall | f5ebf9b | 2013-05-03 07:33:41 +0000 | [diff] [blame] | 1219 | if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) { |
John McCall | 0cfeb63 | 2009-07-28 01:00:58 +0000 | [diff] [blame] | 1220 | if (FD->hasImplicitReturnZero()) { |
| 1221 | QualType RetTy = FD->getResultType().getUnqualifiedType(); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1222 | llvm::Type* LLVMTy = CGM.getTypes().ConvertType(RetTy); |
Owen Anderson | c9c88b4 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 1223 | llvm::Constant* Zero = llvm::Constant::getNullValue(LLVMTy); |
John McCall | 0cfeb63 | 2009-07-28 01:00:58 +0000 | [diff] [blame] | 1224 | Builder.CreateStore(Zero, ReturnValue); |
| 1225 | } |
| 1226 | } |
| 1227 | |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 1228 | // FIXME: We no longer need the types from FunctionArgList; lift up and |
| 1229 | // simplify. |
Daniel Dunbar | 5251afa | 2009-02-03 06:02:10 +0000 | [diff] [blame] | 1230 | |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 1231 | // Emit allocs for param decls. Give the LLVM Argument nodes names. |
| 1232 | llvm::Function::arg_iterator AI = Fn->arg_begin(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1233 | |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 1234 | // Name the struct return argument. |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 1235 | if (CGM.ReturnTypeUsesSRet(FI)) { |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 1236 | AI->setName("agg.result"); |
Bill Wendling | 89530e4 | 2013-01-23 06:15:10 +0000 | [diff] [blame] | 1237 | AI->addAttr(llvm::AttributeSet::get(getLLVMContext(), |
| 1238 | AI->getArgNo() + 1, |
| 1239 | llvm::Attribute::NoAlias)); |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 1240 | ++AI; |
| 1241 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1242 | |
Daniel Dunbar | 4b5f0a4 | 2009-02-04 21:17:21 +0000 | [diff] [blame] | 1243 | assert(FI.arg_size() == Args.size() && |
| 1244 | "Mismatch between function signature & arguments."); |
Devang Patel | 093ac46 | 2011-03-03 20:13:15 +0000 | [diff] [blame] | 1245 | unsigned ArgNo = 1; |
Daniel Dunbar | b225be4 | 2009-02-03 05:59:18 +0000 | [diff] [blame] | 1246 | CGFunctionInfo::const_arg_iterator info_it = FI.arg_begin(); |
Devang Patel | 093ac46 | 2011-03-03 20:13:15 +0000 | [diff] [blame] | 1247 | for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end(); |
| 1248 | i != e; ++i, ++info_it, ++ArgNo) { |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1249 | const VarDecl *Arg = *i; |
Daniel Dunbar | b225be4 | 2009-02-03 05:59:18 +0000 | [diff] [blame] | 1250 | QualType Ty = info_it->type; |
| 1251 | const ABIArgInfo &ArgI = info_it->info; |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 1252 | |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1253 | bool isPromoted = |
| 1254 | isa<ParmVarDecl>(Arg) && cast<ParmVarDecl>(Arg)->isKNRPromoted(); |
| 1255 | |
Rafael Espindola | e4aeeaa | 2012-10-24 01:59:00 +0000 | [diff] [blame] | 1256 | // Skip the dummy padding argument. |
| 1257 | if (ArgI.getPaddingType()) |
| 1258 | ++AI; |
| 1259 | |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 1260 | switch (ArgI.getKind()) { |
Daniel Dunbar | 1f74598 | 2009-02-05 09:16:39 +0000 | [diff] [blame] | 1261 | case ABIArgInfo::Indirect: { |
Chris Lattner | ce70016 | 2010-06-28 23:44:11 +0000 | [diff] [blame] | 1262 | llvm::Value *V = AI; |
Daniel Dunbar | cf3b6f2 | 2010-09-16 20:42:02 +0000 | [diff] [blame] | 1263 | |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1264 | if (!hasScalarEvaluationKind(Ty)) { |
Daniel Dunbar | cf3b6f2 | 2010-09-16 20:42:02 +0000 | [diff] [blame] | 1265 | // Aggregates and complex variables are accessed by reference. All we |
| 1266 | // need to do is realign the value, if requested |
| 1267 | if (ArgI.getIndirectRealign()) { |
| 1268 | llvm::Value *AlignedTemp = CreateMemTemp(Ty, "coerce"); |
| 1269 | |
| 1270 | // Copy from the incoming argument pointer to the temporary with the |
| 1271 | // appropriate alignment. |
| 1272 | // |
| 1273 | // FIXME: We should have a common utility for generating an aggregate |
| 1274 | // copy. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1275 | llvm::Type *I8PtrTy = Builder.getInt8PtrTy(); |
Ken Dyck | fe71008 | 2011-01-19 01:58:38 +0000 | [diff] [blame] | 1276 | CharUnits Size = getContext().getTypeSizeInChars(Ty); |
NAKAMURA Takumi | c95a8fc | 2011-03-10 14:02:21 +0000 | [diff] [blame] | 1277 | llvm::Value *Dst = Builder.CreateBitCast(AlignedTemp, I8PtrTy); |
| 1278 | llvm::Value *Src = Builder.CreateBitCast(V, I8PtrTy); |
| 1279 | Builder.CreateMemCpy(Dst, |
| 1280 | Src, |
Ken Dyck | fe71008 | 2011-01-19 01:58:38 +0000 | [diff] [blame] | 1281 | llvm::ConstantInt::get(IntPtrTy, |
| 1282 | Size.getQuantity()), |
Benjamin Kramer | 9f0c7cc | 2010-12-30 00:13:21 +0000 | [diff] [blame] | 1283 | ArgI.getIndirectAlign(), |
| 1284 | false); |
Daniel Dunbar | cf3b6f2 | 2010-09-16 20:42:02 +0000 | [diff] [blame] | 1285 | V = AlignedTemp; |
| 1286 | } |
Daniel Dunbar | 1f74598 | 2009-02-05 09:16:39 +0000 | [diff] [blame] | 1287 | } else { |
| 1288 | // Load scalar value from indirect argument. |
Ken Dyck | fe71008 | 2011-01-19 01:58:38 +0000 | [diff] [blame] | 1289 | CharUnits Alignment = getContext().getTypeAlignInChars(Ty); |
| 1290 | V = EmitLoadOfScalar(V, false, Alignment.getQuantity(), Ty); |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1291 | |
| 1292 | if (isPromoted) |
| 1293 | V = emitArgumentDemotion(*this, Arg, V); |
Daniel Dunbar | 1f74598 | 2009-02-05 09:16:39 +0000 | [diff] [blame] | 1294 | } |
Devang Patel | 093ac46 | 2011-03-03 20:13:15 +0000 | [diff] [blame] | 1295 | EmitParmDecl(*Arg, V, ArgNo); |
Daniel Dunbar | 1f74598 | 2009-02-05 09:16:39 +0000 | [diff] [blame] | 1296 | break; |
| 1297 | } |
Anton Korobeynikov | cc6fa88 | 2009-06-06 09:36:29 +0000 | [diff] [blame] | 1298 | |
| 1299 | case ABIArgInfo::Extend: |
Daniel Dunbar | 46327aa | 2009-02-03 06:17:37 +0000 | [diff] [blame] | 1300 | case ABIArgInfo::Direct: { |
Akira Hatanaka | 4ba3fd4 | 2012-01-09 19:08:06 +0000 | [diff] [blame] | 1301 | |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1302 | // If we have the trivial case, handle it with no muss and fuss. |
| 1303 | if (!isa<llvm::StructType>(ArgI.getCoerceToType()) && |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1304 | ArgI.getCoerceToType() == ConvertType(Ty) && |
| 1305 | ArgI.getDirectOffset() == 0) { |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1306 | assert(AI != Fn->arg_end() && "Argument mismatch!"); |
| 1307 | llvm::Value *V = AI; |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1308 | |
Bill Wendling | a637556 | 2012-10-16 05:23:44 +0000 | [diff] [blame] | 1309 | if (Arg->getType().isRestrictQualified()) |
Bill Wendling | 89530e4 | 2013-01-23 06:15:10 +0000 | [diff] [blame] | 1310 | AI->addAttr(llvm::AttributeSet::get(getLLVMContext(), |
| 1311 | AI->getArgNo() + 1, |
| 1312 | llvm::Attribute::NoAlias)); |
John McCall | d8e10d2 | 2010-03-27 00:47:27 +0000 | [diff] [blame] | 1313 | |
Chris Lattner | b13eab9 | 2011-07-20 06:29:00 +0000 | [diff] [blame] | 1314 | // Ensure the argument is the correct type. |
| 1315 | if (V->getType() != ArgI.getCoerceToType()) |
| 1316 | V = Builder.CreateBitCast(V, ArgI.getCoerceToType()); |
| 1317 | |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1318 | if (isPromoted) |
| 1319 | V = emitArgumentDemotion(*this, Arg, V); |
Rafael Espindola | 8b8a09e | 2012-11-29 16:09:03 +0000 | [diff] [blame] | 1320 | |
| 1321 | // Because of merging of function types from multiple decls it is |
| 1322 | // possible for the type of an argument to not match the corresponding |
| 1323 | // type in the function type. Since we are codegening the callee |
| 1324 | // in here, add a cast to the argument type. |
| 1325 | llvm::Type *LTy = ConvertType(Arg->getType()); |
| 1326 | if (V->getType() != LTy) |
| 1327 | V = Builder.CreateBitCast(V, LTy); |
| 1328 | |
Devang Patel | 093ac46 | 2011-03-03 20:13:15 +0000 | [diff] [blame] | 1329 | EmitParmDecl(*Arg, V, ArgNo); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1330 | break; |
Daniel Dunbar | 8b979d9 | 2009-02-10 00:06:49 +0000 | [diff] [blame] | 1331 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1332 | |
Evgeniy Stepanov | a6ce20e | 2012-02-10 09:30:15 +0000 | [diff] [blame] | 1333 | llvm::AllocaInst *Alloca = CreateMemTemp(Ty, Arg->getName()); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1334 | |
Chris Lattner | deabde2 | 2010-07-28 18:24:28 +0000 | [diff] [blame] | 1335 | // The alignment we need to use is the max of the requested alignment for |
| 1336 | // the argument plus the alignment required by our access code below. |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1337 | unsigned AlignmentToUse = |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 1338 | CGM.getDataLayout().getABITypeAlignment(ArgI.getCoerceToType()); |
Chris Lattner | deabde2 | 2010-07-28 18:24:28 +0000 | [diff] [blame] | 1339 | AlignmentToUse = std::max(AlignmentToUse, |
| 1340 | (unsigned)getContext().getDeclAlign(Arg).getQuantity()); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1341 | |
Chris Lattner | deabde2 | 2010-07-28 18:24:28 +0000 | [diff] [blame] | 1342 | Alloca->setAlignment(AlignmentToUse); |
Chris Lattner | 121b3fa | 2010-07-05 20:21:00 +0000 | [diff] [blame] | 1343 | llvm::Value *V = Alloca; |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1344 | llvm::Value *Ptr = V; // Pointer to store into. |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1345 | |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1346 | // If the value is offset in memory, apply the offset now. |
| 1347 | if (unsigned Offs = ArgI.getDirectOffset()) { |
| 1348 | Ptr = Builder.CreateBitCast(Ptr, Builder.getInt8PtrTy()); |
| 1349 | Ptr = Builder.CreateConstGEP1_32(Ptr, Offs); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1350 | Ptr = Builder.CreateBitCast(Ptr, |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1351 | llvm::PointerType::getUnqual(ArgI.getCoerceToType())); |
| 1352 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1353 | |
Chris Lattner | 309c59f | 2010-06-29 00:06:42 +0000 | [diff] [blame] | 1354 | // If the coerce-to type is a first class aggregate, we flatten it and |
| 1355 | // pass the elements. Either way is semantically identical, but fast-isel |
| 1356 | // and the optimizer generally likes scalar values better than FCAs. |
Evgeniy Stepanov | a6ce20e | 2012-02-10 09:30:15 +0000 | [diff] [blame] | 1357 | llvm::StructType *STy = dyn_cast<llvm::StructType>(ArgI.getCoerceToType()); |
| 1358 | if (STy && STy->getNumElements() > 1) { |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 1359 | uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(STy); |
Evgeniy Stepanov | a6ce20e | 2012-02-10 09:30:15 +0000 | [diff] [blame] | 1360 | llvm::Type *DstTy = |
| 1361 | cast<llvm::PointerType>(Ptr->getType())->getElementType(); |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 1362 | uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(DstTy); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1363 | |
Evgeniy Stepanov | a6ce20e | 2012-02-10 09:30:15 +0000 | [diff] [blame] | 1364 | if (SrcSize <= DstSize) { |
| 1365 | Ptr = Builder.CreateBitCast(Ptr, llvm::PointerType::getUnqual(STy)); |
| 1366 | |
| 1367 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { |
| 1368 | assert(AI != Fn->arg_end() && "Argument mismatch!"); |
| 1369 | AI->setName(Arg->getName() + ".coerce" + Twine(i)); |
| 1370 | llvm::Value *EltPtr = Builder.CreateConstGEP2_32(Ptr, 0, i); |
| 1371 | Builder.CreateStore(AI++, EltPtr); |
| 1372 | } |
| 1373 | } else { |
| 1374 | llvm::AllocaInst *TempAlloca = |
| 1375 | CreateTempAlloca(ArgI.getCoerceToType(), "coerce"); |
| 1376 | TempAlloca->setAlignment(AlignmentToUse); |
| 1377 | llvm::Value *TempV = TempAlloca; |
| 1378 | |
| 1379 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { |
| 1380 | assert(AI != Fn->arg_end() && "Argument mismatch!"); |
| 1381 | AI->setName(Arg->getName() + ".coerce" + Twine(i)); |
| 1382 | llvm::Value *EltPtr = Builder.CreateConstGEP2_32(TempV, 0, i); |
| 1383 | Builder.CreateStore(AI++, EltPtr); |
| 1384 | } |
| 1385 | |
| 1386 | Builder.CreateMemCpy(Ptr, TempV, DstSize, AlignmentToUse); |
Chris Lattner | 309c59f | 2010-06-29 00:06:42 +0000 | [diff] [blame] | 1387 | } |
| 1388 | } else { |
| 1389 | // Simple case, just do a coerced store of the argument into the alloca. |
| 1390 | assert(AI != Fn->arg_end() && "Argument mismatch!"); |
Chris Lattner | 225e286 | 2010-06-29 00:14:52 +0000 | [diff] [blame] | 1391 | AI->setName(Arg->getName() + ".coerce"); |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1392 | CreateCoercedStore(AI++, Ptr, /*DestIsVolatile=*/false, *this); |
Chris Lattner | 309c59f | 2010-06-29 00:06:42 +0000 | [diff] [blame] | 1393 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1394 | |
| 1395 | |
Daniel Dunbar | 89c9d8e | 2009-02-03 19:12:28 +0000 | [diff] [blame] | 1396 | // Match to what EmitParmDecl is expecting for this type. |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1397 | if (CodeGenFunction::hasScalarEvaluationKind(Ty)) { |
Daniel Dunbar | 91a16fa | 2010-08-21 02:24:36 +0000 | [diff] [blame] | 1398 | V = EmitLoadOfScalar(V, false, AlignmentToUse, Ty); |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1399 | if (isPromoted) |
| 1400 | V = emitArgumentDemotion(*this, Arg, V); |
Daniel Dunbar | 8b29a38 | 2009-02-04 07:22:24 +0000 | [diff] [blame] | 1401 | } |
Devang Patel | 093ac46 | 2011-03-03 20:13:15 +0000 | [diff] [blame] | 1402 | EmitParmDecl(*Arg, V, ArgNo); |
Chris Lattner | ce70016 | 2010-06-28 23:44:11 +0000 | [diff] [blame] | 1403 | continue; // Skip ++AI increment, already done. |
Daniel Dunbar | 89c9d8e | 2009-02-03 19:12:28 +0000 | [diff] [blame] | 1404 | } |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1405 | |
| 1406 | case ABIArgInfo::Expand: { |
| 1407 | // If this structure was expanded into multiple arguments then |
| 1408 | // we need to create a temporary and reconstruct it from the |
| 1409 | // arguments. |
Eli Friedman | 1bb94a4 | 2011-11-03 21:39:02 +0000 | [diff] [blame] | 1410 | llvm::AllocaInst *Alloca = CreateMemTemp(Ty); |
Eli Friedman | 6da2c71 | 2011-12-03 04:14:32 +0000 | [diff] [blame] | 1411 | CharUnits Align = getContext().getDeclAlign(Arg); |
| 1412 | Alloca->setAlignment(Align.getQuantity()); |
| 1413 | LValue LV = MakeAddrLValue(Alloca, Ty, Align); |
Eli Friedman | 1bb94a4 | 2011-11-03 21:39:02 +0000 | [diff] [blame] | 1414 | llvm::Function::arg_iterator End = ExpandTypeFromArgs(Ty, LV, AI); |
| 1415 | EmitParmDecl(*Arg, Alloca, ArgNo); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1416 | |
| 1417 | // Name the arguments used in expansion and increment AI. |
| 1418 | unsigned Index = 0; |
| 1419 | for (; AI != End; ++AI, ++Index) |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1420 | AI->setName(Arg->getName() + "." + Twine(Index)); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1421 | continue; |
| 1422 | } |
| 1423 | |
| 1424 | case ABIArgInfo::Ignore: |
| 1425 | // Initialize the local variable appropriately. |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1426 | if (!hasScalarEvaluationKind(Ty)) |
Devang Patel | 093ac46 | 2011-03-03 20:13:15 +0000 | [diff] [blame] | 1427 | EmitParmDecl(*Arg, CreateMemTemp(Ty), ArgNo); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1428 | else |
Devang Patel | 093ac46 | 2011-03-03 20:13:15 +0000 | [diff] [blame] | 1429 | EmitParmDecl(*Arg, llvm::UndefValue::get(ConvertType(Arg->getType())), |
| 1430 | ArgNo); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1431 | |
| 1432 | // Skip increment, no matching LLVM parameter. |
| 1433 | continue; |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 1434 | } |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 1435 | |
| 1436 | ++AI; |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 1437 | } |
| 1438 | assert(AI == Fn->arg_end() && "Argument mismatch!"); |
| 1439 | } |
| 1440 | |
John McCall | 77fe6cd | 2012-01-29 07:46:59 +0000 | [diff] [blame] | 1441 | static void eraseUnusedBitCasts(llvm::Instruction *insn) { |
| 1442 | while (insn->use_empty()) { |
| 1443 | llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(insn); |
| 1444 | if (!bitcast) return; |
| 1445 | |
| 1446 | // This is "safe" because we would have used a ConstantExpr otherwise. |
| 1447 | insn = cast<llvm::Instruction>(bitcast->getOperand(0)); |
| 1448 | bitcast->eraseFromParent(); |
| 1449 | } |
| 1450 | } |
| 1451 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1452 | /// Try to emit a fused autorelease of a return result. |
| 1453 | static llvm::Value *tryEmitFusedAutoreleaseOfResult(CodeGenFunction &CGF, |
| 1454 | llvm::Value *result) { |
| 1455 | // We must be immediately followed the cast. |
| 1456 | llvm::BasicBlock *BB = CGF.Builder.GetInsertBlock(); |
| 1457 | if (BB->empty()) return 0; |
| 1458 | if (&BB->back() != result) return 0; |
| 1459 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1460 | llvm::Type *resultType = result->getType(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1461 | |
| 1462 | // result is in a BasicBlock and is therefore an Instruction. |
| 1463 | llvm::Instruction *generator = cast<llvm::Instruction>(result); |
| 1464 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1465 | SmallVector<llvm::Instruction*,4> insnsToKill; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1466 | |
| 1467 | // Look for: |
| 1468 | // %generator = bitcast %type1* %generator2 to %type2* |
| 1469 | while (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(generator)) { |
| 1470 | // We would have emitted this as a constant if the operand weren't |
| 1471 | // an Instruction. |
| 1472 | generator = cast<llvm::Instruction>(bitcast->getOperand(0)); |
| 1473 | |
| 1474 | // Require the generator to be immediately followed by the cast. |
| 1475 | if (generator->getNextNode() != bitcast) |
| 1476 | return 0; |
| 1477 | |
| 1478 | insnsToKill.push_back(bitcast); |
| 1479 | } |
| 1480 | |
| 1481 | // Look for: |
| 1482 | // %generator = call i8* @objc_retain(i8* %originalResult) |
| 1483 | // or |
| 1484 | // %generator = call i8* @objc_retainAutoreleasedReturnValue(i8* %originalResult) |
| 1485 | llvm::CallInst *call = dyn_cast<llvm::CallInst>(generator); |
| 1486 | if (!call) return 0; |
| 1487 | |
| 1488 | bool doRetainAutorelease; |
| 1489 | |
| 1490 | if (call->getCalledValue() == CGF.CGM.getARCEntrypoints().objc_retain) { |
| 1491 | doRetainAutorelease = true; |
| 1492 | } else if (call->getCalledValue() == CGF.CGM.getARCEntrypoints() |
| 1493 | .objc_retainAutoreleasedReturnValue) { |
| 1494 | doRetainAutorelease = false; |
| 1495 | |
John McCall | f9fdcc0 | 2012-09-07 23:30:50 +0000 | [diff] [blame] | 1496 | // If we emitted an assembly marker for this call (and the |
| 1497 | // ARCEntrypoints field should have been set if so), go looking |
| 1498 | // for that call. If we can't find it, we can't do this |
| 1499 | // optimization. But it should always be the immediately previous |
| 1500 | // instruction, unless we needed bitcasts around the call. |
| 1501 | if (CGF.CGM.getARCEntrypoints().retainAutoreleasedReturnValueMarker) { |
| 1502 | llvm::Instruction *prev = call->getPrevNode(); |
| 1503 | assert(prev); |
| 1504 | if (isa<llvm::BitCastInst>(prev)) { |
| 1505 | prev = prev->getPrevNode(); |
| 1506 | assert(prev); |
| 1507 | } |
| 1508 | assert(isa<llvm::CallInst>(prev)); |
| 1509 | assert(cast<llvm::CallInst>(prev)->getCalledValue() == |
| 1510 | CGF.CGM.getARCEntrypoints().retainAutoreleasedReturnValueMarker); |
| 1511 | insnsToKill.push_back(prev); |
| 1512 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1513 | } else { |
| 1514 | return 0; |
| 1515 | } |
| 1516 | |
| 1517 | result = call->getArgOperand(0); |
| 1518 | insnsToKill.push_back(call); |
| 1519 | |
| 1520 | // Keep killing bitcasts, for sanity. Note that we no longer care |
| 1521 | // about precise ordering as long as there's exactly one use. |
| 1522 | while (llvm::BitCastInst *bitcast = dyn_cast<llvm::BitCastInst>(result)) { |
| 1523 | if (!bitcast->hasOneUse()) break; |
| 1524 | insnsToKill.push_back(bitcast); |
| 1525 | result = bitcast->getOperand(0); |
| 1526 | } |
| 1527 | |
| 1528 | // Delete all the unnecessary instructions, from latest to earliest. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1529 | for (SmallVectorImpl<llvm::Instruction*>::iterator |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1530 | i = insnsToKill.begin(), e = insnsToKill.end(); i != e; ++i) |
| 1531 | (*i)->eraseFromParent(); |
| 1532 | |
| 1533 | // Do the fused retain/autorelease if we were asked to. |
| 1534 | if (doRetainAutorelease) |
| 1535 | result = CGF.EmitARCRetainAutoreleaseReturnValue(result); |
| 1536 | |
| 1537 | // Cast back to the result type. |
| 1538 | return CGF.Builder.CreateBitCast(result, resultType); |
| 1539 | } |
| 1540 | |
John McCall | 77fe6cd | 2012-01-29 07:46:59 +0000 | [diff] [blame] | 1541 | /// If this is a +1 of the value of an immutable 'self', remove it. |
| 1542 | static llvm::Value *tryRemoveRetainOfSelf(CodeGenFunction &CGF, |
| 1543 | llvm::Value *result) { |
| 1544 | // This is only applicable to a method with an immutable 'self'. |
John McCall | bd9b65a | 2012-07-31 00:33:55 +0000 | [diff] [blame] | 1545 | const ObjCMethodDecl *method = |
| 1546 | dyn_cast_or_null<ObjCMethodDecl>(CGF.CurCodeDecl); |
John McCall | 77fe6cd | 2012-01-29 07:46:59 +0000 | [diff] [blame] | 1547 | if (!method) return 0; |
| 1548 | const VarDecl *self = method->getSelfDecl(); |
| 1549 | if (!self->getType().isConstQualified()) return 0; |
| 1550 | |
| 1551 | // Look for a retain call. |
| 1552 | llvm::CallInst *retainCall = |
| 1553 | dyn_cast<llvm::CallInst>(result->stripPointerCasts()); |
| 1554 | if (!retainCall || |
| 1555 | retainCall->getCalledValue() != CGF.CGM.getARCEntrypoints().objc_retain) |
| 1556 | return 0; |
| 1557 | |
| 1558 | // Look for an ordinary load of 'self'. |
| 1559 | llvm::Value *retainedValue = retainCall->getArgOperand(0); |
| 1560 | llvm::LoadInst *load = |
| 1561 | dyn_cast<llvm::LoadInst>(retainedValue->stripPointerCasts()); |
| 1562 | if (!load || load->isAtomic() || load->isVolatile() || |
| 1563 | load->getPointerOperand() != CGF.GetAddrOfLocalVar(self)) |
| 1564 | return 0; |
| 1565 | |
| 1566 | // Okay! Burn it all down. This relies for correctness on the |
| 1567 | // assumption that the retain is emitted as part of the return and |
| 1568 | // that thereafter everything is used "linearly". |
| 1569 | llvm::Type *resultType = result->getType(); |
| 1570 | eraseUnusedBitCasts(cast<llvm::Instruction>(result)); |
| 1571 | assert(retainCall->use_empty()); |
| 1572 | retainCall->eraseFromParent(); |
| 1573 | eraseUnusedBitCasts(cast<llvm::Instruction>(retainedValue)); |
| 1574 | |
| 1575 | return CGF.Builder.CreateBitCast(load, resultType); |
| 1576 | } |
| 1577 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1578 | /// Emit an ARC autorelease of the result of a function. |
John McCall | 77fe6cd | 2012-01-29 07:46:59 +0000 | [diff] [blame] | 1579 | /// |
| 1580 | /// \return the value to actually return from the function |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1581 | static llvm::Value *emitAutoreleaseOfResult(CodeGenFunction &CGF, |
| 1582 | llvm::Value *result) { |
John McCall | 77fe6cd | 2012-01-29 07:46:59 +0000 | [diff] [blame] | 1583 | // If we're returning 'self', kill the initial retain. This is a |
| 1584 | // heuristic attempt to "encourage correctness" in the really unfortunate |
| 1585 | // case where we have a return of self during a dealloc and we desperately |
| 1586 | // need to avoid the possible autorelease. |
| 1587 | if (llvm::Value *self = tryRemoveRetainOfSelf(CGF, result)) |
| 1588 | return self; |
| 1589 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1590 | // At -O0, try to emit a fused retain/autorelease. |
| 1591 | if (CGF.shouldUseFusedARCCalls()) |
| 1592 | if (llvm::Value *fused = tryEmitFusedAutoreleaseOfResult(CGF, result)) |
| 1593 | return fused; |
| 1594 | |
| 1595 | return CGF.EmitARCAutoreleaseReturnValue(result); |
| 1596 | } |
| 1597 | |
John McCall | f48f796 | 2012-01-29 02:35:02 +0000 | [diff] [blame] | 1598 | /// Heuristically search for a dominating store to the return-value slot. |
| 1599 | static llvm::StoreInst *findDominatingStoreToReturnValue(CodeGenFunction &CGF) { |
| 1600 | // If there are multiple uses of the return-value slot, just check |
| 1601 | // for something immediately preceding the IP. Sometimes this can |
| 1602 | // happen with how we generate implicit-returns; it can also happen |
| 1603 | // with noreturn cleanups. |
| 1604 | if (!CGF.ReturnValue->hasOneUse()) { |
| 1605 | llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock(); |
| 1606 | if (IP->empty()) return 0; |
| 1607 | llvm::StoreInst *store = dyn_cast<llvm::StoreInst>(&IP->back()); |
| 1608 | if (!store) return 0; |
| 1609 | if (store->getPointerOperand() != CGF.ReturnValue) return 0; |
| 1610 | assert(!store->isAtomic() && !store->isVolatile()); // see below |
| 1611 | return store; |
| 1612 | } |
| 1613 | |
| 1614 | llvm::StoreInst *store = |
| 1615 | dyn_cast<llvm::StoreInst>(CGF.ReturnValue->use_back()); |
| 1616 | if (!store) return 0; |
| 1617 | |
| 1618 | // These aren't actually possible for non-coerced returns, and we |
| 1619 | // only care about non-coerced returns on this code path. |
| 1620 | assert(!store->isAtomic() && !store->isVolatile()); |
| 1621 | |
| 1622 | // Now do a first-and-dirty dominance check: just walk up the |
| 1623 | // single-predecessors chain from the current insertion point. |
| 1624 | llvm::BasicBlock *StoreBB = store->getParent(); |
| 1625 | llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock(); |
| 1626 | while (IP != StoreBB) { |
| 1627 | if (!(IP = IP->getSinglePredecessor())) |
| 1628 | return 0; |
| 1629 | } |
| 1630 | |
| 1631 | // Okay, the store's basic block dominates the insertion point; we |
| 1632 | // can do our thing. |
| 1633 | return store; |
| 1634 | } |
| 1635 | |
Manman Ren | 63fd408 | 2013-03-20 16:59:38 +0000 | [diff] [blame] | 1636 | /// Check whether 'this' argument of a callsite matches 'this' of the caller. |
| 1637 | static bool checkThisPointer(llvm::Value *ThisArg, llvm::Value *This) { |
| 1638 | if (ThisArg == This) |
| 1639 | return true; |
| 1640 | // Check whether ThisArg is a bitcast of This. |
| 1641 | llvm::BitCastInst *Bitcast; |
| 1642 | if ((Bitcast = dyn_cast<llvm::BitCastInst>(ThisArg)) && |
| 1643 | Bitcast->getOperand(0) == This) |
| 1644 | return true; |
| 1645 | return false; |
| 1646 | } |
| 1647 | |
Adrian Prantl | fa6b079 | 2013-05-02 17:30:20 +0000 | [diff] [blame] | 1648 | void CodeGenFunction::EmitFunctionEpilog(const CGFunctionInfo &FI, |
| 1649 | bool EmitRetDbgLoc) { |
Daniel Dunbar | 2c8e0f3 | 2008-09-10 02:41:04 +0000 | [diff] [blame] | 1650 | // Functions with no result always return void. |
Chris Lattner | c6e6dd2 | 2010-06-26 23:13:19 +0000 | [diff] [blame] | 1651 | if (ReturnValue == 0) { |
Daniel Dunbar | 2c8e0f3 | 2008-09-10 02:41:04 +0000 | [diff] [blame] | 1652 | Builder.CreateRetVoid(); |
Chris Lattner | c6e6dd2 | 2010-06-26 23:13:19 +0000 | [diff] [blame] | 1653 | return; |
Daniel Dunbar | 2c8e0f3 | 2008-09-10 02:41:04 +0000 | [diff] [blame] | 1654 | } |
Daniel Dunbar | 21fcc8f | 2010-06-30 21:27:58 +0000 | [diff] [blame] | 1655 | |
Dan Gohman | 4751a53 | 2010-07-20 20:13:52 +0000 | [diff] [blame] | 1656 | llvm::DebugLoc RetDbgLoc; |
Chris Lattner | c6e6dd2 | 2010-06-26 23:13:19 +0000 | [diff] [blame] | 1657 | llvm::Value *RV = 0; |
| 1658 | QualType RetTy = FI.getReturnType(); |
| 1659 | const ABIArgInfo &RetAI = FI.getReturnInfo(); |
| 1660 | |
| 1661 | switch (RetAI.getKind()) { |
Daniel Dunbar | 91a16fa | 2010-08-21 02:24:36 +0000 | [diff] [blame] | 1662 | case ABIArgInfo::Indirect: { |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1663 | switch (getEvaluationKind(RetTy)) { |
| 1664 | case TEK_Complex: { |
| 1665 | ComplexPairTy RT = |
| 1666 | EmitLoadOfComplex(MakeNaturalAlignAddrLValue(ReturnValue, RetTy)); |
| 1667 | EmitStoreOfComplex(RT, |
| 1668 | MakeNaturalAlignAddrLValue(CurFn->arg_begin(), RetTy), |
| 1669 | /*isInit*/ true); |
| 1670 | break; |
| 1671 | } |
| 1672 | case TEK_Aggregate: |
Chris Lattner | c6e6dd2 | 2010-06-26 23:13:19 +0000 | [diff] [blame] | 1673 | // Do nothing; aggregrates get evaluated directly into the destination. |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1674 | break; |
| 1675 | case TEK_Scalar: |
| 1676 | EmitStoreOfScalar(Builder.CreateLoad(ReturnValue), |
| 1677 | MakeNaturalAlignAddrLValue(CurFn->arg_begin(), RetTy), |
| 1678 | /*isInit*/ true); |
| 1679 | break; |
Chris Lattner | c6e6dd2 | 2010-06-26 23:13:19 +0000 | [diff] [blame] | 1680 | } |
| 1681 | break; |
Daniel Dunbar | 91a16fa | 2010-08-21 02:24:36 +0000 | [diff] [blame] | 1682 | } |
Chris Lattner | c6e6dd2 | 2010-06-26 23:13:19 +0000 | [diff] [blame] | 1683 | |
| 1684 | case ABIArgInfo::Extend: |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1685 | case ABIArgInfo::Direct: |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1686 | if (RetAI.getCoerceToType() == ConvertType(RetTy) && |
| 1687 | RetAI.getDirectOffset() == 0) { |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1688 | // The internal return value temp always will have pointer-to-return-type |
| 1689 | // type, just do a load. |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1690 | |
John McCall | f48f796 | 2012-01-29 02:35:02 +0000 | [diff] [blame] | 1691 | // If there is a dominating store to ReturnValue, we can elide |
| 1692 | // the load, zap the store, and usually zap the alloca. |
| 1693 | if (llvm::StoreInst *SI = findDominatingStoreToReturnValue(*this)) { |
Adrian Prantl | 7c731f5 | 2013-05-30 18:12:23 +0000 | [diff] [blame] | 1694 | // Reuse the debug location from the store unless there is |
| 1695 | // cleanup code to be emitted between the store and return |
| 1696 | // instruction. |
| 1697 | if (EmitRetDbgLoc && !AutoreleaseResult) |
Adrian Prantl | fa6b079 | 2013-05-02 17:30:20 +0000 | [diff] [blame] | 1698 | RetDbgLoc = SI->getDebugLoc(); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1699 | // Get the stored value and nuke the now-dead store. |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1700 | RV = SI->getValueOperand(); |
| 1701 | SI->eraseFromParent(); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1702 | |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1703 | // If that was the only use of the return value, nuke it as well now. |
| 1704 | if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) { |
| 1705 | cast<llvm::AllocaInst>(ReturnValue)->eraseFromParent(); |
| 1706 | ReturnValue = 0; |
| 1707 | } |
John McCall | f48f796 | 2012-01-29 02:35:02 +0000 | [diff] [blame] | 1708 | |
| 1709 | // Otherwise, we have to do a simple load. |
| 1710 | } else { |
| 1711 | RV = Builder.CreateLoad(ReturnValue); |
Chris Lattner | 35b21b8 | 2010-06-27 01:06:27 +0000 | [diff] [blame] | 1712 | } |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1713 | } else { |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1714 | llvm::Value *V = ReturnValue; |
| 1715 | // If the value is offset in memory, apply the offset now. |
| 1716 | if (unsigned Offs = RetAI.getDirectOffset()) { |
| 1717 | V = Builder.CreateBitCast(V, Builder.getInt8PtrTy()); |
| 1718 | V = Builder.CreateConstGEP1_32(V, Offs); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1719 | V = Builder.CreateBitCast(V, |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1720 | llvm::PointerType::getUnqual(RetAI.getCoerceToType())); |
| 1721 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1722 | |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 1723 | RV = CreateCoercedLoad(V, RetAI.getCoerceToType(), *this); |
Chris Lattner | 35b21b8 | 2010-06-27 01:06:27 +0000 | [diff] [blame] | 1724 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1725 | |
| 1726 | // In ARC, end functions that return a retainable type with a call |
| 1727 | // to objc_autoreleaseReturnValue. |
| 1728 | if (AutoreleaseResult) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1729 | assert(getLangOpts().ObjCAutoRefCount && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1730 | !FI.isReturnsRetained() && |
| 1731 | RetTy->isObjCRetainableType()); |
| 1732 | RV = emitAutoreleaseOfResult(*this, RV); |
| 1733 | } |
| 1734 | |
Chris Lattner | c6e6dd2 | 2010-06-26 23:13:19 +0000 | [diff] [blame] | 1735 | break; |
Chris Lattner | c6e6dd2 | 2010-06-26 23:13:19 +0000 | [diff] [blame] | 1736 | |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 1737 | case ABIArgInfo::Ignore: |
Chris Lattner | c6e6dd2 | 2010-06-26 23:13:19 +0000 | [diff] [blame] | 1738 | break; |
| 1739 | |
| 1740 | case ABIArgInfo::Expand: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1741 | llvm_unreachable("Invalid ABI kind for return argument"); |
Chris Lattner | c6e6dd2 | 2010-06-26 23:13:19 +0000 | [diff] [blame] | 1742 | } |
| 1743 | |
Manman Ren | 63fd408 | 2013-03-20 16:59:38 +0000 | [diff] [blame] | 1744 | // If this function returns 'this', the last instruction is a CallInst |
| 1745 | // that returns 'this', and 'this' argument of the CallInst points to |
| 1746 | // the same object as CXXThisValue, use the return value from the CallInst. |
| 1747 | // We will not need to keep 'this' alive through the callsite. It also enables |
| 1748 | // optimizations in the backend, such as tail call optimization. |
Manman Ren | 94d46b5 | 2013-03-26 18:29:15 +0000 | [diff] [blame] | 1749 | if (CalleeWithThisReturn && CGM.getCXXABI().HasThisReturn(CurGD)) { |
Manman Ren | 63fd408 | 2013-03-20 16:59:38 +0000 | [diff] [blame] | 1750 | llvm::BasicBlock *IP = Builder.GetInsertBlock(); |
| 1751 | llvm::CallInst *Callsite; |
| 1752 | if (!IP->empty() && (Callsite = dyn_cast<llvm::CallInst>(&IP->back())) && |
| 1753 | Callsite->getCalledFunction() == CalleeWithThisReturn && |
| 1754 | checkThisPointer(Callsite->getOperand(0), CXXThisValue)) |
| 1755 | RV = Builder.CreateBitCast(Callsite, RetAI.getCoerceToType()); |
| 1756 | } |
Daniel Dunbar | 21fcc8f | 2010-06-30 21:27:58 +0000 | [diff] [blame] | 1757 | llvm::Instruction *Ret = RV ? Builder.CreateRet(RV) : Builder.CreateRetVoid(); |
Devang Patel | d3f265d | 2010-07-21 18:08:50 +0000 | [diff] [blame] | 1758 | if (!RetDbgLoc.isUnknown()) |
| 1759 | Ret->setDebugLoc(RetDbgLoc); |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 1760 | } |
| 1761 | |
John McCall | 413ebdb | 2011-03-11 20:59:21 +0000 | [diff] [blame] | 1762 | void CodeGenFunction::EmitDelegateCallArg(CallArgList &args, |
| 1763 | const VarDecl *param) { |
John McCall | 2736071 | 2010-05-26 22:34:26 +0000 | [diff] [blame] | 1764 | // StartFunction converted the ABI-lowered parameter(s) into a |
| 1765 | // local alloca. We need to turn that into an r-value suitable |
| 1766 | // for EmitCall. |
John McCall | 413ebdb | 2011-03-11 20:59:21 +0000 | [diff] [blame] | 1767 | llvm::Value *local = GetAddrOfLocalVar(param); |
John McCall | 2736071 | 2010-05-26 22:34:26 +0000 | [diff] [blame] | 1768 | |
John McCall | 413ebdb | 2011-03-11 20:59:21 +0000 | [diff] [blame] | 1769 | QualType type = param->getType(); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 1770 | |
John McCall | 2736071 | 2010-05-26 22:34:26 +0000 | [diff] [blame] | 1771 | // For the most part, we just need to load the alloca, except: |
| 1772 | // 1) aggregate r-values are actually pointers to temporaries, and |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1773 | // 2) references to non-scalars are pointers directly to the aggregate. |
| 1774 | // I don't know why references to scalars are different here. |
John McCall | 413ebdb | 2011-03-11 20:59:21 +0000 | [diff] [blame] | 1775 | if (const ReferenceType *ref = type->getAs<ReferenceType>()) { |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1776 | if (!hasScalarEvaluationKind(ref->getPointeeType())) |
John McCall | 413ebdb | 2011-03-11 20:59:21 +0000 | [diff] [blame] | 1777 | return args.add(RValue::getAggregate(local), type); |
John McCall | 2736071 | 2010-05-26 22:34:26 +0000 | [diff] [blame] | 1778 | |
| 1779 | // Locals which are references to scalars are represented |
| 1780 | // with allocas holding the pointer. |
John McCall | 413ebdb | 2011-03-11 20:59:21 +0000 | [diff] [blame] | 1781 | return args.add(RValue::get(Builder.CreateLoad(local)), type); |
John McCall | 2736071 | 2010-05-26 22:34:26 +0000 | [diff] [blame] | 1782 | } |
| 1783 | |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1784 | args.add(convertTempToRValue(local, type), type); |
John McCall | 2736071 | 2010-05-26 22:34:26 +0000 | [diff] [blame] | 1785 | } |
| 1786 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1787 | static bool isProvablyNull(llvm::Value *addr) { |
| 1788 | return isa<llvm::ConstantPointerNull>(addr); |
| 1789 | } |
| 1790 | |
| 1791 | static bool isProvablyNonNull(llvm::Value *addr) { |
| 1792 | return isa<llvm::AllocaInst>(addr); |
| 1793 | } |
| 1794 | |
| 1795 | /// Emit the actual writing-back of a writeback. |
| 1796 | static void emitWriteback(CodeGenFunction &CGF, |
| 1797 | const CallArgList::Writeback &writeback) { |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1798 | const LValue &srcLV = writeback.Source; |
| 1799 | llvm::Value *srcAddr = srcLV.getAddress(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1800 | assert(!isProvablyNull(srcAddr) && |
| 1801 | "shouldn't have writeback for provably null argument"); |
| 1802 | |
| 1803 | llvm::BasicBlock *contBB = 0; |
| 1804 | |
| 1805 | // If the argument wasn't provably non-null, we need to null check |
| 1806 | // before doing the store. |
| 1807 | bool provablyNonNull = isProvablyNonNull(srcAddr); |
| 1808 | if (!provablyNonNull) { |
| 1809 | llvm::BasicBlock *writebackBB = CGF.createBasicBlock("icr.writeback"); |
| 1810 | contBB = CGF.createBasicBlock("icr.done"); |
| 1811 | |
| 1812 | llvm::Value *isNull = CGF.Builder.CreateIsNull(srcAddr, "icr.isnull"); |
| 1813 | CGF.Builder.CreateCondBr(isNull, contBB, writebackBB); |
| 1814 | CGF.EmitBlock(writebackBB); |
| 1815 | } |
| 1816 | |
| 1817 | // Load the value to writeback. |
| 1818 | llvm::Value *value = CGF.Builder.CreateLoad(writeback.Temporary); |
| 1819 | |
| 1820 | // Cast it back, in case we're writing an id to a Foo* or something. |
| 1821 | value = CGF.Builder.CreateBitCast(value, |
| 1822 | cast<llvm::PointerType>(srcAddr->getType())->getElementType(), |
| 1823 | "icr.writeback-cast"); |
| 1824 | |
| 1825 | // Perform the writeback. |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1826 | |
| 1827 | // If we have a "to use" value, it's something we need to emit a use |
| 1828 | // of. This has to be carefully threaded in: if it's done after the |
| 1829 | // release it's potentially undefined behavior (and the optimizer |
| 1830 | // will ignore it), and if it happens before the retain then the |
| 1831 | // optimizer could move the release there. |
| 1832 | if (writeback.ToUse) { |
| 1833 | assert(srcLV.getObjCLifetime() == Qualifiers::OCL_Strong); |
| 1834 | |
| 1835 | // Retain the new value. No need to block-copy here: the block's |
| 1836 | // being passed up the stack. |
| 1837 | value = CGF.EmitARCRetainNonBlock(value); |
| 1838 | |
| 1839 | // Emit the intrinsic use here. |
| 1840 | CGF.EmitARCIntrinsicUse(writeback.ToUse); |
| 1841 | |
| 1842 | // Load the old value (primitively). |
| 1843 | llvm::Value *oldValue = CGF.EmitLoadOfScalar(srcLV); |
| 1844 | |
| 1845 | // Put the new value in place (primitively). |
| 1846 | CGF.EmitStoreOfScalar(value, srcLV, /*init*/ false); |
| 1847 | |
| 1848 | // Release the old value. |
| 1849 | CGF.EmitARCRelease(oldValue, srcLV.isARCPreciseLifetime()); |
| 1850 | |
| 1851 | // Otherwise, we can just do a normal lvalue store. |
| 1852 | } else { |
| 1853 | CGF.EmitStoreThroughLValue(RValue::get(value), srcLV); |
| 1854 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1855 | |
| 1856 | // Jump to the continuation block. |
| 1857 | if (!provablyNonNull) |
| 1858 | CGF.EmitBlock(contBB); |
| 1859 | } |
| 1860 | |
| 1861 | static void emitWritebacks(CodeGenFunction &CGF, |
| 1862 | const CallArgList &args) { |
| 1863 | for (CallArgList::writeback_iterator |
| 1864 | i = args.writeback_begin(), e = args.writeback_end(); i != e; ++i) |
| 1865 | emitWriteback(CGF, *i); |
| 1866 | } |
| 1867 | |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1868 | static const Expr *maybeGetUnaryAddrOfOperand(const Expr *E) { |
| 1869 | if (const UnaryOperator *uop = dyn_cast<UnaryOperator>(E->IgnoreParens())) |
| 1870 | if (uop->getOpcode() == UO_AddrOf) |
| 1871 | return uop->getSubExpr(); |
| 1872 | return 0; |
| 1873 | } |
| 1874 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1875 | /// Emit an argument that's being passed call-by-writeback. That is, |
| 1876 | /// we are passing the address of |
| 1877 | static void emitWritebackArg(CodeGenFunction &CGF, CallArgList &args, |
| 1878 | const ObjCIndirectCopyRestoreExpr *CRE) { |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1879 | LValue srcLV; |
| 1880 | |
| 1881 | // Make an optimistic effort to emit the address as an l-value. |
| 1882 | // This can fail if the the argument expression is more complicated. |
| 1883 | if (const Expr *lvExpr = maybeGetUnaryAddrOfOperand(CRE->getSubExpr())) { |
| 1884 | srcLV = CGF.EmitLValue(lvExpr); |
| 1885 | |
| 1886 | // Otherwise, just emit it as a scalar. |
| 1887 | } else { |
| 1888 | llvm::Value *srcAddr = CGF.EmitScalarExpr(CRE->getSubExpr()); |
| 1889 | |
| 1890 | QualType srcAddrType = |
| 1891 | CRE->getSubExpr()->getType()->castAs<PointerType>()->getPointeeType(); |
| 1892 | srcLV = CGF.MakeNaturalAlignAddrLValue(srcAddr, srcAddrType); |
| 1893 | } |
| 1894 | llvm::Value *srcAddr = srcLV.getAddress(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1895 | |
| 1896 | // The dest and src types don't necessarily match in LLVM terms |
| 1897 | // because of the crazy ObjC compatibility rules. |
| 1898 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1899 | llvm::PointerType *destType = |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1900 | cast<llvm::PointerType>(CGF.ConvertType(CRE->getType())); |
| 1901 | |
| 1902 | // If the address is a constant null, just pass the appropriate null. |
| 1903 | if (isProvablyNull(srcAddr)) { |
| 1904 | args.add(RValue::get(llvm::ConstantPointerNull::get(destType)), |
| 1905 | CRE->getType()); |
| 1906 | return; |
| 1907 | } |
| 1908 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1909 | // Create the temporary. |
| 1910 | llvm::Value *temp = CGF.CreateTempAlloca(destType->getElementType(), |
| 1911 | "icr.temp"); |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 1912 | // Loading an l-value can introduce a cleanup if the l-value is __weak, |
| 1913 | // and that cleanup will be conditional if we can't prove that the l-value |
| 1914 | // isn't null, so we need to register a dominating point so that the cleanups |
| 1915 | // system will make valid IR. |
| 1916 | CodeGenFunction::ConditionalEvaluation condEval(CGF); |
| 1917 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1918 | // Zero-initialize it if we're not doing a copy-initialization. |
| 1919 | bool shouldCopy = CRE->shouldCopy(); |
| 1920 | if (!shouldCopy) { |
| 1921 | llvm::Value *null = |
| 1922 | llvm::ConstantPointerNull::get( |
| 1923 | cast<llvm::PointerType>(destType->getElementType())); |
| 1924 | CGF.Builder.CreateStore(null, temp); |
| 1925 | } |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 1926 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1927 | llvm::BasicBlock *contBB = 0; |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1928 | llvm::BasicBlock *originBB = 0; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1929 | |
| 1930 | // If the address is *not* known to be non-null, we need to switch. |
| 1931 | llvm::Value *finalArgument; |
| 1932 | |
| 1933 | bool provablyNonNull = isProvablyNonNull(srcAddr); |
| 1934 | if (provablyNonNull) { |
| 1935 | finalArgument = temp; |
| 1936 | } else { |
| 1937 | llvm::Value *isNull = CGF.Builder.CreateIsNull(srcAddr, "icr.isnull"); |
| 1938 | |
| 1939 | finalArgument = CGF.Builder.CreateSelect(isNull, |
| 1940 | llvm::ConstantPointerNull::get(destType), |
| 1941 | temp, "icr.argument"); |
| 1942 | |
| 1943 | // If we need to copy, then the load has to be conditional, which |
| 1944 | // means we need control flow. |
| 1945 | if (shouldCopy) { |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1946 | originBB = CGF.Builder.GetInsertBlock(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1947 | contBB = CGF.createBasicBlock("icr.cont"); |
| 1948 | llvm::BasicBlock *copyBB = CGF.createBasicBlock("icr.copy"); |
| 1949 | CGF.Builder.CreateCondBr(isNull, contBB, copyBB); |
| 1950 | CGF.EmitBlock(copyBB); |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 1951 | condEval.begin(CGF); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1952 | } |
| 1953 | } |
| 1954 | |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1955 | llvm::Value *valueToUse = 0; |
| 1956 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1957 | // Perform a copy if necessary. |
| 1958 | if (shouldCopy) { |
John McCall | 545d996 | 2011-06-25 02:11:03 +0000 | [diff] [blame] | 1959 | RValue srcRV = CGF.EmitLoadOfLValue(srcLV); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1960 | assert(srcRV.isScalar()); |
| 1961 | |
| 1962 | llvm::Value *src = srcRV.getScalarVal(); |
| 1963 | src = CGF.Builder.CreateBitCast(src, destType->getElementType(), |
| 1964 | "icr.cast"); |
| 1965 | |
| 1966 | // Use an ordinary store, not a store-to-lvalue. |
| 1967 | CGF.Builder.CreateStore(src, temp); |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1968 | |
| 1969 | // If optimization is enabled, and the value was held in a |
| 1970 | // __strong variable, we need to tell the optimizer that this |
| 1971 | // value has to stay alive until we're doing the store back. |
| 1972 | // This is because the temporary is effectively unretained, |
| 1973 | // and so otherwise we can violate the high-level semantics. |
| 1974 | if (CGF.CGM.getCodeGenOpts().OptimizationLevel != 0 && |
| 1975 | srcLV.getObjCLifetime() == Qualifiers::OCL_Strong) { |
| 1976 | valueToUse = src; |
| 1977 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1978 | } |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 1979 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1980 | // Finish the control flow if we needed it. |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 1981 | if (shouldCopy && !provablyNonNull) { |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1982 | llvm::BasicBlock *copyBB = CGF.Builder.GetInsertBlock(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1983 | CGF.EmitBlock(contBB); |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1984 | |
| 1985 | // Make a phi for the value to intrinsically use. |
| 1986 | if (valueToUse) { |
| 1987 | llvm::PHINode *phiToUse = CGF.Builder.CreatePHI(valueToUse->getType(), 2, |
| 1988 | "icr.to-use"); |
| 1989 | phiToUse->addIncoming(valueToUse, copyBB); |
| 1990 | phiToUse->addIncoming(llvm::UndefValue::get(valueToUse->getType()), |
| 1991 | originBB); |
| 1992 | valueToUse = phiToUse; |
| 1993 | } |
| 1994 | |
Fariborz Jahanian | 82c458e | 2012-11-27 23:02:53 +0000 | [diff] [blame] | 1995 | condEval.end(CGF); |
| 1996 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1997 | |
John McCall | b6a6079 | 2013-03-23 02:35:54 +0000 | [diff] [blame] | 1998 | args.addWriteback(srcLV, temp, valueToUse); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1999 | args.add(RValue::get(finalArgument), CRE->getType()); |
| 2000 | } |
| 2001 | |
John McCall | 413ebdb | 2011-03-11 20:59:21 +0000 | [diff] [blame] | 2002 | void CodeGenFunction::EmitCallArg(CallArgList &args, const Expr *E, |
| 2003 | QualType type) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2004 | if (const ObjCIndirectCopyRestoreExpr *CRE |
| 2005 | = dyn_cast<ObjCIndirectCopyRestoreExpr>(E)) { |
Richard Smith | 7edf9e3 | 2012-11-01 22:30:59 +0000 | [diff] [blame] | 2006 | assert(getLangOpts().ObjCAutoRefCount); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2007 | assert(getContext().hasSameType(E->getType(), type)); |
| 2008 | return emitWritebackArg(*this, args, CRE); |
| 2009 | } |
| 2010 | |
John McCall | 8affed5 | 2011-08-26 18:42:59 +0000 | [diff] [blame] | 2011 | assert(type->isReferenceType() == E->isGLValue() && |
| 2012 | "reference binding to unmaterialized r-value!"); |
| 2013 | |
John McCall | cec52f0 | 2011-08-26 21:08:13 +0000 | [diff] [blame] | 2014 | if (E->isGLValue()) { |
| 2015 | assert(E->getObjectKind() == OK_Ordinary); |
John McCall | 413ebdb | 2011-03-11 20:59:21 +0000 | [diff] [blame] | 2016 | return args.add(EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0), |
| 2017 | type); |
John McCall | cec52f0 | 2011-08-26 21:08:13 +0000 | [diff] [blame] | 2018 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2019 | |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2020 | if (hasAggregateEvaluationKind(type) && |
Eli Friedman | 70cbd2a | 2011-06-15 18:26:32 +0000 | [diff] [blame] | 2021 | isa<ImplicitCastExpr>(E) && |
Eli Friedman | 55d4848 | 2011-05-26 00:10:27 +0000 | [diff] [blame] | 2022 | cast<CastExpr>(E)->getCastKind() == CK_LValueToRValue) { |
| 2023 | LValue L = EmitLValue(cast<CastExpr>(E)->getSubExpr()); |
| 2024 | assert(L.isSimple()); |
Eli Friedman | d39083d | 2013-06-11 01:08:22 +0000 | [diff] [blame^] | 2025 | if (L.getAlignment() >= getContext().getTypeAlignInChars(type)) { |
| 2026 | args.add(L.asAggregateRValue(), type, /*NeedsCopy*/true); |
| 2027 | } else { |
| 2028 | // We can't represent a misaligned lvalue in the CallArgList, so copy |
| 2029 | // to an aligned temporary now. |
| 2030 | llvm::Value *tmp = CreateMemTemp(type); |
| 2031 | EmitAggregateCopy(tmp, L.getAddress(), type, L.isVolatile(), |
| 2032 | L.getAlignment()); |
| 2033 | args.add(RValue::getAggregate(tmp), type); |
| 2034 | } |
Eli Friedman | 55d4848 | 2011-05-26 00:10:27 +0000 | [diff] [blame] | 2035 | return; |
| 2036 | } |
| 2037 | |
John McCall | 413ebdb | 2011-03-11 20:59:21 +0000 | [diff] [blame] | 2038 | args.add(EmitAnyExprToTemp(E), type); |
Anders Carlsson | 0139bb9 | 2009-04-08 20:47:54 +0000 | [diff] [blame] | 2039 | } |
| 2040 | |
Dan Gohman | b49bd27 | 2012-02-16 00:57:37 +0000 | [diff] [blame] | 2041 | // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC |
| 2042 | // optimizer it can aggressively ignore unwind edges. |
| 2043 | void |
| 2044 | CodeGenFunction::AddObjCARCExceptionMetadata(llvm::Instruction *Inst) { |
| 2045 | if (CGM.getCodeGenOpts().OptimizationLevel != 0 && |
| 2046 | !CGM.getCodeGenOpts().ObjCAutoRefCountExceptions) |
| 2047 | Inst->setMetadata("clang.arc.no_objc_arc_exceptions", |
| 2048 | CGM.getNoObjCARCExceptionsMetadata()); |
| 2049 | } |
| 2050 | |
John McCall | bd7370a | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 2051 | /// Emits a call to the given no-arguments nounwind runtime function. |
| 2052 | llvm::CallInst * |
| 2053 | CodeGenFunction::EmitNounwindRuntimeCall(llvm::Value *callee, |
| 2054 | const llvm::Twine &name) { |
| 2055 | return EmitNounwindRuntimeCall(callee, ArrayRef<llvm::Value*>(), name); |
| 2056 | } |
| 2057 | |
| 2058 | /// Emits a call to the given nounwind runtime function. |
| 2059 | llvm::CallInst * |
| 2060 | CodeGenFunction::EmitNounwindRuntimeCall(llvm::Value *callee, |
| 2061 | ArrayRef<llvm::Value*> args, |
| 2062 | const llvm::Twine &name) { |
| 2063 | llvm::CallInst *call = EmitRuntimeCall(callee, args, name); |
| 2064 | call->setDoesNotThrow(); |
| 2065 | return call; |
| 2066 | } |
| 2067 | |
| 2068 | /// Emits a simple call (never an invoke) to the given no-arguments |
| 2069 | /// runtime function. |
| 2070 | llvm::CallInst * |
| 2071 | CodeGenFunction::EmitRuntimeCall(llvm::Value *callee, |
| 2072 | const llvm::Twine &name) { |
| 2073 | return EmitRuntimeCall(callee, ArrayRef<llvm::Value*>(), name); |
| 2074 | } |
| 2075 | |
| 2076 | /// Emits a simple call (never an invoke) to the given runtime |
| 2077 | /// function. |
| 2078 | llvm::CallInst * |
| 2079 | CodeGenFunction::EmitRuntimeCall(llvm::Value *callee, |
| 2080 | ArrayRef<llvm::Value*> args, |
| 2081 | const llvm::Twine &name) { |
| 2082 | llvm::CallInst *call = Builder.CreateCall(callee, args, name); |
| 2083 | call->setCallingConv(getRuntimeCC()); |
| 2084 | return call; |
| 2085 | } |
| 2086 | |
| 2087 | /// Emits a call or invoke to the given noreturn runtime function. |
| 2088 | void CodeGenFunction::EmitNoreturnRuntimeCallOrInvoke(llvm::Value *callee, |
| 2089 | ArrayRef<llvm::Value*> args) { |
| 2090 | if (getInvokeDest()) { |
| 2091 | llvm::InvokeInst *invoke = |
| 2092 | Builder.CreateInvoke(callee, |
| 2093 | getUnreachableBlock(), |
| 2094 | getInvokeDest(), |
| 2095 | args); |
| 2096 | invoke->setDoesNotReturn(); |
| 2097 | invoke->setCallingConv(getRuntimeCC()); |
| 2098 | } else { |
| 2099 | llvm::CallInst *call = Builder.CreateCall(callee, args); |
| 2100 | call->setDoesNotReturn(); |
| 2101 | call->setCallingConv(getRuntimeCC()); |
| 2102 | Builder.CreateUnreachable(); |
| 2103 | } |
| 2104 | } |
| 2105 | |
| 2106 | /// Emits a call or invoke instruction to the given nullary runtime |
| 2107 | /// function. |
| 2108 | llvm::CallSite |
| 2109 | CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee, |
| 2110 | const Twine &name) { |
| 2111 | return EmitRuntimeCallOrInvoke(callee, ArrayRef<llvm::Value*>(), name); |
| 2112 | } |
| 2113 | |
| 2114 | /// Emits a call or invoke instruction to the given runtime function. |
| 2115 | llvm::CallSite |
| 2116 | CodeGenFunction::EmitRuntimeCallOrInvoke(llvm::Value *callee, |
| 2117 | ArrayRef<llvm::Value*> args, |
| 2118 | const Twine &name) { |
| 2119 | llvm::CallSite callSite = EmitCallOrInvoke(callee, args, name); |
| 2120 | callSite.setCallingConv(getRuntimeCC()); |
| 2121 | return callSite; |
| 2122 | } |
| 2123 | |
| 2124 | llvm::CallSite |
| 2125 | CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee, |
| 2126 | const Twine &Name) { |
| 2127 | return EmitCallOrInvoke(Callee, ArrayRef<llvm::Value *>(), Name); |
| 2128 | } |
| 2129 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 2130 | /// Emits a call or invoke instruction to the given function, depending |
| 2131 | /// on the current state of the EH stack. |
| 2132 | llvm::CallSite |
| 2133 | CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee, |
Chris Lattner | 2d3ba4f | 2011-07-23 17:14:25 +0000 | [diff] [blame] | 2134 | ArrayRef<llvm::Value *> Args, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2135 | const Twine &Name) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 2136 | llvm::BasicBlock *InvokeDest = getInvokeDest(); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 2137 | |
Dan Gohman | b49bd27 | 2012-02-16 00:57:37 +0000 | [diff] [blame] | 2138 | llvm::Instruction *Inst; |
| 2139 | if (!InvokeDest) |
| 2140 | Inst = Builder.CreateCall(Callee, Args, Name); |
| 2141 | else { |
| 2142 | llvm::BasicBlock *ContBB = createBasicBlock("invoke.cont"); |
| 2143 | Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, Name); |
| 2144 | EmitBlock(ContBB); |
| 2145 | } |
| 2146 | |
| 2147 | // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC |
| 2148 | // optimizer it can aggressively ignore unwind edges. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2149 | if (CGM.getLangOpts().ObjCAutoRefCount) |
Dan Gohman | b49bd27 | 2012-02-16 00:57:37 +0000 | [diff] [blame] | 2150 | AddObjCARCExceptionMetadata(Inst); |
| 2151 | |
| 2152 | return Inst; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 2153 | } |
| 2154 | |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2155 | static void checkArgMatches(llvm::Value *Elt, unsigned &ArgNo, |
| 2156 | llvm::FunctionType *FTy) { |
| 2157 | if (ArgNo < FTy->getNumParams()) |
| 2158 | assert(Elt->getType() == FTy->getParamType(ArgNo)); |
| 2159 | else |
| 2160 | assert(FTy->isVarArg()); |
| 2161 | ++ArgNo; |
| 2162 | } |
| 2163 | |
Chris Lattner | 811bf36 | 2011-07-12 06:29:11 +0000 | [diff] [blame] | 2164 | void CodeGenFunction::ExpandTypeToArgs(QualType Ty, RValue RV, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2165 | SmallVector<llvm::Value*,16> &Args, |
Chris Lattner | 811bf36 | 2011-07-12 06:29:11 +0000 | [diff] [blame] | 2166 | llvm::FunctionType *IRFuncTy) { |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 2167 | if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) { |
| 2168 | unsigned NumElts = AT->getSize().getZExtValue(); |
| 2169 | QualType EltTy = AT->getElementType(); |
| 2170 | llvm::Value *Addr = RV.getAggregateAddr(); |
| 2171 | for (unsigned Elt = 0; Elt < NumElts; ++Elt) { |
| 2172 | llvm::Value *EltAddr = Builder.CreateConstGEP2_32(Addr, 0, Elt); |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2173 | RValue EltRV = convertTempToRValue(EltAddr, EltTy); |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 2174 | ExpandTypeToArgs(EltTy, EltRV, Args, IRFuncTy); |
Chris Lattner | 811bf36 | 2011-07-12 06:29:11 +0000 | [diff] [blame] | 2175 | } |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 2176 | } else if (const RecordType *RT = Ty->getAs<RecordType>()) { |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 2177 | RecordDecl *RD = RT->getDecl(); |
| 2178 | assert(RV.isAggregate() && "Unexpected rvalue during struct expansion"); |
Eli Friedman | 377ecc7 | 2012-04-16 03:54:45 +0000 | [diff] [blame] | 2179 | LValue LV = MakeAddrLValue(RV.getAggregateAddr(), Ty); |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 2180 | |
| 2181 | if (RD->isUnion()) { |
| 2182 | const FieldDecl *LargestFD = 0; |
| 2183 | CharUnits UnionSize = CharUnits::Zero(); |
| 2184 | |
| 2185 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 2186 | i != e; ++i) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 2187 | const FieldDecl *FD = *i; |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 2188 | assert(!FD->isBitField() && |
| 2189 | "Cannot expand structure with bit-field members."); |
| 2190 | CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType()); |
| 2191 | if (UnionSize < FieldSize) { |
| 2192 | UnionSize = FieldSize; |
| 2193 | LargestFD = FD; |
| 2194 | } |
| 2195 | } |
| 2196 | if (LargestFD) { |
Eli Friedman | 377ecc7 | 2012-04-16 03:54:45 +0000 | [diff] [blame] | 2197 | RValue FldRV = EmitRValueForField(LV, LargestFD); |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 2198 | ExpandTypeToArgs(LargestFD->getType(), FldRV, Args, IRFuncTy); |
| 2199 | } |
| 2200 | } else { |
| 2201 | for (RecordDecl::field_iterator i = RD->field_begin(), e = RD->field_end(); |
| 2202 | i != e; ++i) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 2203 | FieldDecl *FD = *i; |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 2204 | |
Eli Friedman | 377ecc7 | 2012-04-16 03:54:45 +0000 | [diff] [blame] | 2205 | RValue FldRV = EmitRValueForField(LV, FD); |
Anton Korobeynikov | eaf856d | 2012-04-13 11:22:00 +0000 | [diff] [blame] | 2206 | ExpandTypeToArgs(FD->getType(), FldRV, Args, IRFuncTy); |
| 2207 | } |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 2208 | } |
Eli Friedman | ca3d3fc | 2011-11-15 02:46:03 +0000 | [diff] [blame] | 2209 | } else if (Ty->isAnyComplexType()) { |
Bob Wilson | 194f06a | 2011-08-03 05:58:22 +0000 | [diff] [blame] | 2210 | ComplexPairTy CV = RV.getComplexVal(); |
| 2211 | Args.push_back(CV.first); |
| 2212 | Args.push_back(CV.second); |
| 2213 | } else { |
Chris Lattner | 811bf36 | 2011-07-12 06:29:11 +0000 | [diff] [blame] | 2214 | assert(RV.isScalar() && |
| 2215 | "Unexpected non-scalar rvalue during struct expansion."); |
| 2216 | |
| 2217 | // Insert a bitcast as needed. |
| 2218 | llvm::Value *V = RV.getScalarVal(); |
| 2219 | if (Args.size() < IRFuncTy->getNumParams() && |
| 2220 | V->getType() != IRFuncTy->getParamType(Args.size())) |
| 2221 | V = Builder.CreateBitCast(V, IRFuncTy->getParamType(Args.size())); |
| 2222 | |
| 2223 | Args.push_back(V); |
| 2224 | } |
| 2225 | } |
| 2226 | |
| 2227 | |
Daniel Dunbar | 88b5396 | 2009-02-02 22:03:45 +0000 | [diff] [blame] | 2228 | RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2229 | llvm::Value *Callee, |
Anders Carlsson | f3c47c9 | 2009-12-24 19:25:24 +0000 | [diff] [blame] | 2230 | ReturnValueSlot ReturnValue, |
Daniel Dunbar | c0ef9f5 | 2009-02-20 18:06:48 +0000 | [diff] [blame] | 2231 | const CallArgList &CallArgs, |
David Chisnall | dd5c98f | 2010-05-01 11:15:56 +0000 | [diff] [blame] | 2232 | const Decl *TargetDecl, |
David Chisnall | 4b02afc | 2010-05-02 13:41:58 +0000 | [diff] [blame] | 2233 | llvm::Instruction **callOrInvoke) { |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 2234 | // FIXME: We no longer need the types from CallArgs; lift up and simplify. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2235 | SmallVector<llvm::Value*, 16> Args; |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 2236 | |
| 2237 | // Handle struct-return functions by passing a pointer to the |
| 2238 | // location that we would like to return into. |
Daniel Dunbar | bb36d33 | 2009-02-02 21:43:58 +0000 | [diff] [blame] | 2239 | QualType RetTy = CallInfo.getReturnType(); |
Daniel Dunbar | b225be4 | 2009-02-03 05:59:18 +0000 | [diff] [blame] | 2240 | const ABIArgInfo &RetAI = CallInfo.getReturnInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2241 | |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2242 | // IRArgNo - Keep track of the argument number in the callee we're looking at. |
| 2243 | unsigned IRArgNo = 0; |
| 2244 | llvm::FunctionType *IRFuncTy = |
| 2245 | cast<llvm::FunctionType>( |
| 2246 | cast<llvm::PointerType>(Callee->getType())->getElementType()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2247 | |
Chris Lattner | 5db7ae5 | 2009-06-13 00:26:38 +0000 | [diff] [blame] | 2248 | // If the call returns a temporary with struct return, create a temporary |
Anders Carlsson | d2490a9 | 2009-12-24 20:40:36 +0000 | [diff] [blame] | 2249 | // alloca to hold the result, unless one is given to us. |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 2250 | if (CGM.ReturnTypeUsesSRet(CallInfo)) { |
Anders Carlsson | d2490a9 | 2009-12-24 20:40:36 +0000 | [diff] [blame] | 2251 | llvm::Value *Value = ReturnValue.getValue(); |
| 2252 | if (!Value) |
Daniel Dunbar | 195337d | 2010-02-09 02:48:28 +0000 | [diff] [blame] | 2253 | Value = CreateMemTemp(RetTy); |
Anders Carlsson | d2490a9 | 2009-12-24 20:40:36 +0000 | [diff] [blame] | 2254 | Args.push_back(Value); |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2255 | checkArgMatches(Value, IRArgNo, IRFuncTy); |
Anders Carlsson | d2490a9 | 2009-12-24 20:40:36 +0000 | [diff] [blame] | 2256 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2257 | |
Daniel Dunbar | 4b5f0a4 | 2009-02-04 21:17:21 +0000 | [diff] [blame] | 2258 | assert(CallInfo.arg_size() == CallArgs.size() && |
| 2259 | "Mismatch between function signature & arguments."); |
Daniel Dunbar | b225be4 | 2009-02-03 05:59:18 +0000 | [diff] [blame] | 2260 | CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2261 | for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end(); |
Daniel Dunbar | b225be4 | 2009-02-03 05:59:18 +0000 | [diff] [blame] | 2262 | I != E; ++I, ++info_it) { |
| 2263 | const ABIArgInfo &ArgInfo = info_it->info; |
Eli Friedman | c6d0782 | 2011-05-02 18:05:27 +0000 | [diff] [blame] | 2264 | RValue RV = I->RV; |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 2265 | |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2266 | CharUnits TypeAlign = getContext().getTypeAlignInChars(I->Ty); |
Rafael Espindola | e4aeeaa | 2012-10-24 01:59:00 +0000 | [diff] [blame] | 2267 | |
| 2268 | // Insert a padding argument to ensure proper alignment. |
| 2269 | if (llvm::Type *PaddingType = ArgInfo.getPaddingType()) { |
| 2270 | Args.push_back(llvm::UndefValue::get(PaddingType)); |
| 2271 | ++IRArgNo; |
| 2272 | } |
| 2273 | |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 2274 | switch (ArgInfo.getKind()) { |
Daniel Dunbar | 91a16fa | 2010-08-21 02:24:36 +0000 | [diff] [blame] | 2275 | case ABIArgInfo::Indirect: { |
Daniel Dunbar | 1f74598 | 2009-02-05 09:16:39 +0000 | [diff] [blame] | 2276 | if (RV.isScalar() || RV.isComplex()) { |
| 2277 | // Make a temporary alloca to pass the argument. |
Eli Friedman | 70cbd2a | 2011-06-15 18:26:32 +0000 | [diff] [blame] | 2278 | llvm::AllocaInst *AI = CreateMemTemp(I->Ty); |
| 2279 | if (ArgInfo.getIndirectAlign() > AI->getAlignment()) |
| 2280 | AI->setAlignment(ArgInfo.getIndirectAlign()); |
| 2281 | Args.push_back(AI); |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2282 | |
| 2283 | LValue argLV = |
| 2284 | MakeAddrLValue(Args.back(), I->Ty, TypeAlign); |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2285 | |
Daniel Dunbar | 1f74598 | 2009-02-05 09:16:39 +0000 | [diff] [blame] | 2286 | if (RV.isScalar()) |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2287 | EmitStoreOfScalar(RV.getScalarVal(), argLV, /*init*/ true); |
Daniel Dunbar | 1f74598 | 2009-02-05 09:16:39 +0000 | [diff] [blame] | 2288 | else |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2289 | EmitStoreOfComplex(RV.getComplexVal(), argLV, /*init*/ true); |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2290 | |
| 2291 | // Validate argument match. |
| 2292 | checkArgMatches(AI, IRArgNo, IRFuncTy); |
Daniel Dunbar | 1f74598 | 2009-02-05 09:16:39 +0000 | [diff] [blame] | 2293 | } else { |
Eli Friedman | ea5e4da | 2011-06-14 01:37:52 +0000 | [diff] [blame] | 2294 | // We want to avoid creating an unnecessary temporary+copy here; |
Guy Benyei | d436c99 | 2013-03-10 12:59:00 +0000 | [diff] [blame] | 2295 | // however, we need one in three cases: |
Eli Friedman | ea5e4da | 2011-06-14 01:37:52 +0000 | [diff] [blame] | 2296 | // 1. If the argument is not byval, and we are required to copy the |
| 2297 | // source. (This case doesn't occur on any common architecture.) |
| 2298 | // 2. If the argument is byval, RV is not sufficiently aligned, and |
| 2299 | // we cannot force it to be sufficiently aligned. |
Guy Benyei | d436c99 | 2013-03-10 12:59:00 +0000 | [diff] [blame] | 2300 | // 3. If the argument is byval, but RV is located in an address space |
| 2301 | // different than that of the argument (0). |
Eli Friedman | 97cb5a4 | 2011-06-15 22:09:18 +0000 | [diff] [blame] | 2302 | llvm::Value *Addr = RV.getAggregateAddr(); |
| 2303 | unsigned Align = ArgInfo.getIndirectAlign(); |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 2304 | const llvm::DataLayout *TD = &CGM.getDataLayout(); |
Guy Benyei | d436c99 | 2013-03-10 12:59:00 +0000 | [diff] [blame] | 2305 | const unsigned RVAddrSpace = Addr->getType()->getPointerAddressSpace(); |
| 2306 | const unsigned ArgAddrSpace = (IRArgNo < IRFuncTy->getNumParams() ? |
| 2307 | IRFuncTy->getParamType(IRArgNo)->getPointerAddressSpace() : 0); |
Eli Friedman | 97cb5a4 | 2011-06-15 22:09:18 +0000 | [diff] [blame] | 2308 | if ((!ArgInfo.getIndirectByVal() && I->NeedsCopy) || |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2309 | (ArgInfo.getIndirectByVal() && TypeAlign.getQuantity() < Align && |
Guy Benyei | d436c99 | 2013-03-10 12:59:00 +0000 | [diff] [blame] | 2310 | llvm::getOrEnforceKnownAlignment(Addr, Align, TD) < Align) || |
| 2311 | (ArgInfo.getIndirectByVal() && (RVAddrSpace != ArgAddrSpace))) { |
Eli Friedman | ea5e4da | 2011-06-14 01:37:52 +0000 | [diff] [blame] | 2312 | // Create an aligned temporary, and copy to it. |
Eli Friedman | 97cb5a4 | 2011-06-15 22:09:18 +0000 | [diff] [blame] | 2313 | llvm::AllocaInst *AI = CreateMemTemp(I->Ty); |
| 2314 | if (Align > AI->getAlignment()) |
| 2315 | AI->setAlignment(Align); |
Eli Friedman | ea5e4da | 2011-06-14 01:37:52 +0000 | [diff] [blame] | 2316 | Args.push_back(AI); |
Chad Rosier | 649b4a1 | 2012-03-29 17:37:10 +0000 | [diff] [blame] | 2317 | EmitAggregateCopy(AI, Addr, I->Ty, RV.isVolatileQualified()); |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2318 | |
| 2319 | // Validate argument match. |
| 2320 | checkArgMatches(AI, IRArgNo, IRFuncTy); |
Eli Friedman | ea5e4da | 2011-06-14 01:37:52 +0000 | [diff] [blame] | 2321 | } else { |
| 2322 | // Skip the extra memcpy call. |
Eli Friedman | 97cb5a4 | 2011-06-15 22:09:18 +0000 | [diff] [blame] | 2323 | Args.push_back(Addr); |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2324 | |
| 2325 | // Validate argument match. |
| 2326 | checkArgMatches(Addr, IRArgNo, IRFuncTy); |
Eli Friedman | ea5e4da | 2011-06-14 01:37:52 +0000 | [diff] [blame] | 2327 | } |
Daniel Dunbar | 1f74598 | 2009-02-05 09:16:39 +0000 | [diff] [blame] | 2328 | } |
| 2329 | break; |
Daniel Dunbar | 91a16fa | 2010-08-21 02:24:36 +0000 | [diff] [blame] | 2330 | } |
Daniel Dunbar | 1f74598 | 2009-02-05 09:16:39 +0000 | [diff] [blame] | 2331 | |
Daniel Dunbar | 1143492 | 2009-01-26 21:26:08 +0000 | [diff] [blame] | 2332 | case ABIArgInfo::Ignore: |
| 2333 | break; |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2334 | |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2335 | case ABIArgInfo::Extend: |
| 2336 | case ABIArgInfo::Direct: { |
| 2337 | if (!isa<llvm::StructType>(ArgInfo.getCoerceToType()) && |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 2338 | ArgInfo.getCoerceToType() == ConvertType(info_it->type) && |
| 2339 | ArgInfo.getDirectOffset() == 0) { |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2340 | llvm::Value *V; |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2341 | if (RV.isScalar()) |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2342 | V = RV.getScalarVal(); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2343 | else |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2344 | V = Builder.CreateLoad(RV.getAggregateAddr()); |
| 2345 | |
Chris Lattner | 21ca1fd | 2011-07-12 04:53:39 +0000 | [diff] [blame] | 2346 | // If the argument doesn't match, perform a bitcast to coerce it. This |
| 2347 | // can happen due to trivial type mismatches. |
| 2348 | if (IRArgNo < IRFuncTy->getNumParams() && |
| 2349 | V->getType() != IRFuncTy->getParamType(IRArgNo)) |
| 2350 | V = Builder.CreateBitCast(V, IRFuncTy->getParamType(IRArgNo)); |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2351 | Args.push_back(V); |
| 2352 | |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2353 | checkArgMatches(V, IRArgNo, IRFuncTy); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2354 | break; |
| 2355 | } |
Daniel Dunbar | 1143492 | 2009-01-26 21:26:08 +0000 | [diff] [blame] | 2356 | |
Daniel Dunbar | 89c9d8e | 2009-02-03 19:12:28 +0000 | [diff] [blame] | 2357 | // FIXME: Avoid the conversion through memory if possible. |
| 2358 | llvm::Value *SrcPtr; |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2359 | if (RV.isScalar() || RV.isComplex()) { |
Eli Friedman | c6d0782 | 2011-05-02 18:05:27 +0000 | [diff] [blame] | 2360 | SrcPtr = CreateMemTemp(I->Ty, "coerce"); |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2361 | LValue SrcLV = MakeAddrLValue(SrcPtr, I->Ty, TypeAlign); |
| 2362 | if (RV.isScalar()) { |
| 2363 | EmitStoreOfScalar(RV.getScalarVal(), SrcLV, /*init*/ true); |
| 2364 | } else { |
| 2365 | EmitStoreOfComplex(RV.getComplexVal(), SrcLV, /*init*/ true); |
| 2366 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2367 | } else |
Daniel Dunbar | 89c9d8e | 2009-02-03 19:12:28 +0000 | [diff] [blame] | 2368 | SrcPtr = RV.getAggregateAddr(); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2369 | |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 2370 | // If the value is offset in memory, apply the offset now. |
| 2371 | if (unsigned Offs = ArgInfo.getDirectOffset()) { |
| 2372 | SrcPtr = Builder.CreateBitCast(SrcPtr, Builder.getInt8PtrTy()); |
| 2373 | SrcPtr = Builder.CreateConstGEP1_32(SrcPtr, Offs); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2374 | SrcPtr = Builder.CreateBitCast(SrcPtr, |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 2375 | llvm::PointerType::getUnqual(ArgInfo.getCoerceToType())); |
| 2376 | |
| 2377 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2378 | |
Chris Lattner | ce70016 | 2010-06-28 23:44:11 +0000 | [diff] [blame] | 2379 | // If the coerce-to type is a first class aggregate, we flatten it and |
| 2380 | // pass the elements. Either way is semantically identical, but fast-isel |
| 2381 | // and the optimizer generally likes scalar values better than FCAs. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2382 | if (llvm::StructType *STy = |
Chris Lattner | 309c59f | 2010-06-29 00:06:42 +0000 | [diff] [blame] | 2383 | dyn_cast<llvm::StructType>(ArgInfo.getCoerceToType())) { |
Chandler Carruth | f82232c | 2012-10-10 11:29:08 +0000 | [diff] [blame] | 2384 | llvm::Type *SrcTy = |
| 2385 | cast<llvm::PointerType>(SrcPtr->getType())->getElementType(); |
| 2386 | uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(SrcTy); |
| 2387 | uint64_t DstSize = CGM.getDataLayout().getTypeAllocSize(STy); |
| 2388 | |
| 2389 | // If the source type is smaller than the destination type of the |
| 2390 | // coerce-to logic, copy the source value into a temp alloca the size |
| 2391 | // of the destination type to allow loading all of it. The bits past |
| 2392 | // the source value are left undef. |
| 2393 | if (SrcSize < DstSize) { |
| 2394 | llvm::AllocaInst *TempAlloca |
| 2395 | = CreateTempAlloca(STy, SrcPtr->getName() + ".coerce"); |
| 2396 | Builder.CreateMemCpy(TempAlloca, SrcPtr, SrcSize, 0); |
| 2397 | SrcPtr = TempAlloca; |
| 2398 | } else { |
| 2399 | SrcPtr = Builder.CreateBitCast(SrcPtr, |
| 2400 | llvm::PointerType::getUnqual(STy)); |
| 2401 | } |
| 2402 | |
Chris Lattner | 9282688 | 2010-07-05 20:41:41 +0000 | [diff] [blame] | 2403 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { |
| 2404 | llvm::Value *EltPtr = Builder.CreateConstGEP2_32(SrcPtr, 0, i); |
Chris Lattner | deabde2 | 2010-07-28 18:24:28 +0000 | [diff] [blame] | 2405 | llvm::LoadInst *LI = Builder.CreateLoad(EltPtr); |
| 2406 | // We don't know what we're loading from. |
| 2407 | LI->setAlignment(1); |
| 2408 | Args.push_back(LI); |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2409 | |
| 2410 | // Validate argument match. |
| 2411 | checkArgMatches(LI, IRArgNo, IRFuncTy); |
Chris Lattner | 309c59f | 2010-06-29 00:06:42 +0000 | [diff] [blame] | 2412 | } |
Chris Lattner | ce70016 | 2010-06-28 23:44:11 +0000 | [diff] [blame] | 2413 | } else { |
Chris Lattner | 309c59f | 2010-06-29 00:06:42 +0000 | [diff] [blame] | 2414 | // In the simple case, just pass the coerced loaded value. |
| 2415 | Args.push_back(CreateCoercedLoad(SrcPtr, ArgInfo.getCoerceToType(), |
| 2416 | *this)); |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2417 | |
| 2418 | // Validate argument match. |
| 2419 | checkArgMatches(Args.back(), IRArgNo, IRFuncTy); |
Chris Lattner | ce70016 | 2010-06-28 23:44:11 +0000 | [diff] [blame] | 2420 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2421 | |
Daniel Dunbar | 89c9d8e | 2009-02-03 19:12:28 +0000 | [diff] [blame] | 2422 | break; |
| 2423 | } |
| 2424 | |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 2425 | case ABIArgInfo::Expand: |
Chris Lattner | 811bf36 | 2011-07-12 06:29:11 +0000 | [diff] [blame] | 2426 | ExpandTypeToArgs(I->Ty, RV, Args, IRFuncTy); |
Chris Lattner | 7085544 | 2011-07-12 04:46:18 +0000 | [diff] [blame] | 2427 | IRArgNo = Args.size(); |
Daniel Dunbar | 5627377 | 2008-09-17 00:51:38 +0000 | [diff] [blame] | 2428 | break; |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 2429 | } |
| 2430 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2431 | |
Chris Lattner | 5db7ae5 | 2009-06-13 00:26:38 +0000 | [diff] [blame] | 2432 | // If the callee is a bitcast of a function to a varargs pointer to function |
| 2433 | // type, check to see if we can remove the bitcast. This handles some cases |
| 2434 | // with unprototyped functions. |
| 2435 | if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee)) |
| 2436 | if (llvm::Function *CalleeF = dyn_cast<llvm::Function>(CE->getOperand(0))) { |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2437 | llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType()); |
| 2438 | llvm::FunctionType *CurFT = |
Chris Lattner | 5db7ae5 | 2009-06-13 00:26:38 +0000 | [diff] [blame] | 2439 | cast<llvm::FunctionType>(CurPT->getElementType()); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2440 | llvm::FunctionType *ActualFT = CalleeF->getFunctionType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2441 | |
Chris Lattner | 5db7ae5 | 2009-06-13 00:26:38 +0000 | [diff] [blame] | 2442 | if (CE->getOpcode() == llvm::Instruction::BitCast && |
| 2443 | ActualFT->getReturnType() == CurFT->getReturnType() && |
Chris Lattner | d6bebbf | 2009-06-23 01:38:41 +0000 | [diff] [blame] | 2444 | ActualFT->getNumParams() == CurFT->getNumParams() && |
Fariborz Jahanian | c0ddef2 | 2011-03-01 17:28:13 +0000 | [diff] [blame] | 2445 | ActualFT->getNumParams() == Args.size() && |
| 2446 | (CurFT->isVarArg() || !ActualFT->isVarArg())) { |
Chris Lattner | 5db7ae5 | 2009-06-13 00:26:38 +0000 | [diff] [blame] | 2447 | bool ArgsMatch = true; |
| 2448 | for (unsigned i = 0, e = ActualFT->getNumParams(); i != e; ++i) |
| 2449 | if (ActualFT->getParamType(i) != CurFT->getParamType(i)) { |
| 2450 | ArgsMatch = false; |
| 2451 | break; |
| 2452 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2453 | |
Chris Lattner | 5db7ae5 | 2009-06-13 00:26:38 +0000 | [diff] [blame] | 2454 | // Strip the cast if we can get away with it. This is a nice cleanup, |
| 2455 | // but also allows us to inline the function at -O0 if it is marked |
| 2456 | // always_inline. |
| 2457 | if (ArgsMatch) |
| 2458 | Callee = CalleeF; |
| 2459 | } |
| 2460 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2461 | |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 2462 | unsigned CallingConv; |
Devang Patel | 761d7f7 | 2008-09-25 21:02:23 +0000 | [diff] [blame] | 2463 | CodeGen::AttributeListType AttributeList; |
Bill Wendling | 94236e7 | 2013-02-22 00:13:35 +0000 | [diff] [blame] | 2464 | CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList, |
| 2465 | CallingConv, true); |
Bill Wendling | 785b778 | 2012-12-07 23:17:26 +0000 | [diff] [blame] | 2466 | llvm::AttributeSet Attrs = llvm::AttributeSet::get(getLLVMContext(), |
Bill Wendling | 94236e7 | 2013-02-22 00:13:35 +0000 | [diff] [blame] | 2467 | AttributeList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2468 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 2469 | llvm::BasicBlock *InvokeDest = 0; |
Bill Wendling | 01ad954 | 2012-12-30 10:32:17 +0000 | [diff] [blame] | 2470 | if (!Attrs.hasAttribute(llvm::AttributeSet::FunctionIndex, |
| 2471 | llvm::Attribute::NoUnwind)) |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 2472 | InvokeDest = getInvokeDest(); |
| 2473 | |
Daniel Dunbar | d14151d | 2009-03-02 04:32:35 +0000 | [diff] [blame] | 2474 | llvm::CallSite CS; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 2475 | if (!InvokeDest) { |
Jay Foad | 4c7d9f1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 2476 | CS = Builder.CreateCall(Callee, Args); |
Daniel Dunbar | 9834ffb | 2009-02-23 17:26:39 +0000 | [diff] [blame] | 2477 | } else { |
| 2478 | llvm::BasicBlock *Cont = createBasicBlock("invoke.cont"); |
Jay Foad | 4c7d9f1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 2479 | CS = Builder.CreateInvoke(Callee, Cont, InvokeDest, Args); |
Daniel Dunbar | 9834ffb | 2009-02-23 17:26:39 +0000 | [diff] [blame] | 2480 | EmitBlock(Cont); |
Daniel Dunbar | f4fe0f0 | 2009-02-20 18:54:31 +0000 | [diff] [blame] | 2481 | } |
Chris Lattner | ce93399 | 2010-06-29 16:40:28 +0000 | [diff] [blame] | 2482 | if (callOrInvoke) |
David Chisnall | 4b02afc | 2010-05-02 13:41:58 +0000 | [diff] [blame] | 2483 | *callOrInvoke = CS.getInstruction(); |
Daniel Dunbar | f4fe0f0 | 2009-02-20 18:54:31 +0000 | [diff] [blame] | 2484 | |
Daniel Dunbar | d14151d | 2009-03-02 04:32:35 +0000 | [diff] [blame] | 2485 | CS.setAttributes(Attrs); |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 2486 | CS.setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv)); |
Daniel Dunbar | d14151d | 2009-03-02 04:32:35 +0000 | [diff] [blame] | 2487 | |
Dan Gohman | b49bd27 | 2012-02-16 00:57:37 +0000 | [diff] [blame] | 2488 | // In ObjC ARC mode with no ObjC ARC exception safety, tell the ARC |
| 2489 | // optimizer it can aggressively ignore unwind edges. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2490 | if (CGM.getLangOpts().ObjCAutoRefCount) |
Dan Gohman | b49bd27 | 2012-02-16 00:57:37 +0000 | [diff] [blame] | 2491 | AddObjCARCExceptionMetadata(CS.getInstruction()); |
| 2492 | |
Daniel Dunbar | d14151d | 2009-03-02 04:32:35 +0000 | [diff] [blame] | 2493 | // If the call doesn't return, finish the basic block and clear the |
| 2494 | // insertion point; this allows the rest of IRgen to discard |
| 2495 | // unreachable code. |
| 2496 | if (CS.doesNotReturn()) { |
| 2497 | Builder.CreateUnreachable(); |
| 2498 | Builder.ClearInsertionPoint(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2499 | |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 2500 | // FIXME: For now, emit a dummy basic block because expr emitters in |
| 2501 | // generally are not ready to handle emitting expressions at unreachable |
| 2502 | // points. |
Daniel Dunbar | d14151d | 2009-03-02 04:32:35 +0000 | [diff] [blame] | 2503 | EnsureInsertPoint(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2504 | |
Daniel Dunbar | d14151d | 2009-03-02 04:32:35 +0000 | [diff] [blame] | 2505 | // Return a reasonable RValue. |
| 2506 | return GetUndefRValue(RetTy); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2507 | } |
Daniel Dunbar | d14151d | 2009-03-02 04:32:35 +0000 | [diff] [blame] | 2508 | |
| 2509 | llvm::Instruction *CI = CS.getInstruction(); |
Benjamin Kramer | ffbb15e | 2009-10-05 13:47:21 +0000 | [diff] [blame] | 2510 | if (Builder.isNamePreserving() && !CI->getType()->isVoidTy()) |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 2511 | CI->setName("call"); |
Daniel Dunbar | 2c8e0f3 | 2008-09-10 02:41:04 +0000 | [diff] [blame] | 2512 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2513 | // Emit any writebacks immediately. Arguably this should happen |
| 2514 | // after any return-value munging. |
| 2515 | if (CallArgs.hasWritebacks()) |
| 2516 | emitWritebacks(*this, CallArgs); |
| 2517 | |
Daniel Dunbar | 2c8e0f3 | 2008-09-10 02:41:04 +0000 | [diff] [blame] | 2518 | switch (RetAI.getKind()) { |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2519 | case ABIArgInfo::Indirect: |
| 2520 | return convertTempToRValue(Args[0], RetTy); |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 2521 | |
Daniel Dunbar | 1143492 | 2009-01-26 21:26:08 +0000 | [diff] [blame] | 2522 | case ABIArgInfo::Ignore: |
Daniel Dunbar | 0bcc521 | 2009-02-03 06:30:17 +0000 | [diff] [blame] | 2523 | // If we are ignoring an argument that had a result, make sure to |
| 2524 | // construct the appropriate return value for our caller. |
Daniel Dunbar | 13e8173 | 2009-02-05 07:09:07 +0000 | [diff] [blame] | 2525 | return GetUndefRValue(RetTy); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2526 | |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2527 | case ABIArgInfo::Extend: |
| 2528 | case ABIArgInfo::Direct: { |
Chris Lattner | 6af13f3 | 2011-07-13 03:59:32 +0000 | [diff] [blame] | 2529 | llvm::Type *RetIRTy = ConvertType(RetTy); |
| 2530 | if (RetAI.getCoerceToType() == RetIRTy && RetAI.getDirectOffset() == 0) { |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2531 | switch (getEvaluationKind(RetTy)) { |
| 2532 | case TEK_Complex: { |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2533 | llvm::Value *Real = Builder.CreateExtractValue(CI, 0); |
| 2534 | llvm::Value *Imag = Builder.CreateExtractValue(CI, 1); |
| 2535 | return RValue::getComplex(std::make_pair(Real, Imag)); |
| 2536 | } |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2537 | case TEK_Aggregate: { |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2538 | llvm::Value *DestPtr = ReturnValue.getValue(); |
| 2539 | bool DestIsVolatile = ReturnValue.isVolatile(); |
Daniel Dunbar | 1143492 | 2009-01-26 21:26:08 +0000 | [diff] [blame] | 2540 | |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2541 | if (!DestPtr) { |
| 2542 | DestPtr = CreateMemTemp(RetTy, "agg.tmp"); |
| 2543 | DestIsVolatile = false; |
| 2544 | } |
Eli Friedman | badea57 | 2011-05-17 21:08:01 +0000 | [diff] [blame] | 2545 | BuildAggStore(*this, CI, DestPtr, DestIsVolatile, false); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2546 | return RValue::getAggregate(DestPtr); |
| 2547 | } |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2548 | case TEK_Scalar: { |
| 2549 | // If the argument doesn't match, perform a bitcast to coerce it. This |
| 2550 | // can happen due to trivial type mismatches. |
| 2551 | llvm::Value *V = CI; |
| 2552 | if (V->getType() != RetIRTy) |
| 2553 | V = Builder.CreateBitCast(V, RetIRTy); |
| 2554 | return RValue::get(V); |
| 2555 | } |
| 2556 | } |
| 2557 | llvm_unreachable("bad evaluation kind"); |
Chris Lattner | 800588f | 2010-07-29 06:26:06 +0000 | [diff] [blame] | 2558 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2559 | |
Anders Carlsson | d2490a9 | 2009-12-24 20:40:36 +0000 | [diff] [blame] | 2560 | llvm::Value *DestPtr = ReturnValue.getValue(); |
| 2561 | bool DestIsVolatile = ReturnValue.isVolatile(); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2562 | |
Anders Carlsson | d2490a9 | 2009-12-24 20:40:36 +0000 | [diff] [blame] | 2563 | if (!DestPtr) { |
Daniel Dunbar | 195337d | 2010-02-09 02:48:28 +0000 | [diff] [blame] | 2564 | DestPtr = CreateMemTemp(RetTy, "coerce"); |
Anders Carlsson | d2490a9 | 2009-12-24 20:40:36 +0000 | [diff] [blame] | 2565 | DestIsVolatile = false; |
| 2566 | } |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2567 | |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 2568 | // If the value is offset in memory, apply the offset now. |
| 2569 | llvm::Value *StorePtr = DestPtr; |
| 2570 | if (unsigned Offs = RetAI.getDirectOffset()) { |
| 2571 | StorePtr = Builder.CreateBitCast(StorePtr, Builder.getInt8PtrTy()); |
| 2572 | StorePtr = Builder.CreateConstGEP1_32(StorePtr, Offs); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2573 | StorePtr = Builder.CreateBitCast(StorePtr, |
Chris Lattner | 117e3f4 | 2010-07-30 04:02:24 +0000 | [diff] [blame] | 2574 | llvm::PointerType::getUnqual(RetAI.getCoerceToType())); |
| 2575 | } |
| 2576 | CreateCoercedStore(CI, StorePtr, DestIsVolatile, *this); |
Michael J. Spencer | 9cac494 | 2010-10-19 06:39:39 +0000 | [diff] [blame] | 2577 | |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 2578 | return convertTempToRValue(DestPtr, RetTy); |
Daniel Dunbar | 639ffe4 | 2008-09-10 07:04:09 +0000 | [diff] [blame] | 2579 | } |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 2580 | |
Daniel Dunbar | 8951dbd | 2008-09-11 01:48:57 +0000 | [diff] [blame] | 2581 | case ABIArgInfo::Expand: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2582 | llvm_unreachable("Invalid ABI kind for return argument"); |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 2583 | } |
Daniel Dunbar | 2c8e0f3 | 2008-09-10 02:41:04 +0000 | [diff] [blame] | 2584 | |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2585 | llvm_unreachable("Unhandled ABIArgInfo::Kind"); |
Daniel Dunbar | 17b708d | 2008-09-09 23:27:19 +0000 | [diff] [blame] | 2586 | } |
Daniel Dunbar | b4094ea | 2009-02-10 20:44:09 +0000 | [diff] [blame] | 2587 | |
| 2588 | /* VarArg handling */ |
| 2589 | |
| 2590 | llvm::Value *CodeGenFunction::EmitVAArg(llvm::Value *VAListAddr, QualType Ty) { |
| 2591 | return CGM.getTypes().getABIInfo().EmitVAArg(VAListAddr, Ty, *this); |
| 2592 | } |