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