blob: 4b6f24a03f27fd0230d58a86f390f33761ca160e [file] [log] [blame]
David Chisnalld3858d62011-03-25 11:57:33 +00001//==- CGObjCRuntime.cpp - Interface to Shared Objective-C Runtime Features ==//
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// This abstract class defines the interface for Objective-C runtime-specific
11// code generation. It provides some concrete helper methods for functionality
12// shared between all (or most) of the Objective-C runtimes supported by clang.
13//
14//===----------------------------------------------------------------------===//
15
16#include "CGObjCRuntime.h"
David Chisnalld3858d62011-03-25 11:57:33 +000017#include "CGCleanup.h"
David Chisnall93ce0182018-08-10 12:53:13 +000018#include "CGCXXABI.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000019#include "CGRecordLayout.h"
20#include "CodeGenFunction.h"
21#include "CodeGenModule.h"
David Chisnalld3858d62011-03-25 11:57:33 +000022#include "clang/AST/RecordLayout.h"
23#include "clang/AST/StmtObjC.h"
Mark Laceya8e7df32013-10-30 21:53:58 +000024#include "clang/CodeGen/CGFunctionInfo.h"
Chandler Carruthc80ceea2014-03-04 11:02:08 +000025#include "llvm/IR/CallSite.h"
David Chisnall93ce0182018-08-10 12:53:13 +000026#include "llvm/Support/SaveAndRestore.h"
David Chisnalld3858d62011-03-25 11:57:33 +000027
28using namespace clang;
29using namespace CodeGen;
30
Eli Friedman8cbca202012-11-06 22:15:52 +000031uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
32 const ObjCInterfaceDecl *OID,
33 const ObjCIvarDecl *Ivar) {
Akira Hatanaka4b1c4842017-06-27 04:34:04 +000034 return CGM.getContext().lookupFieldBitOffset(OID, nullptr, Ivar) /
35 CGM.getContext().getCharWidth();
David Chisnalld3858d62011-03-25 11:57:33 +000036}
37
Eli Friedman8cbca202012-11-06 22:15:52 +000038uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
39 const ObjCImplementationDecl *OID,
40 const ObjCIvarDecl *Ivar) {
Akira Hatanaka4b1c4842017-06-27 04:34:04 +000041 return CGM.getContext().lookupFieldBitOffset(OID->getClassInterface(), OID,
42 Ivar) /
43 CGM.getContext().getCharWidth();
David Chisnalld3858d62011-03-25 11:57:33 +000044}
45
Eli Friedman85937482012-11-06 23:40:48 +000046unsigned CGObjCRuntime::ComputeBitfieldBitOffset(
47 CodeGen::CodeGenModule &CGM,
48 const ObjCInterfaceDecl *ID,
49 const ObjCIvarDecl *Ivar) {
Akira Hatanaka4b1c4842017-06-27 04:34:04 +000050 return CGM.getContext().lookupFieldBitOffset(ID, ID->getImplementation(),
51 Ivar);
Eli Friedman85937482012-11-06 23:40:48 +000052}
53
David Chisnalld3858d62011-03-25 11:57:33 +000054LValue CGObjCRuntime::EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF,
55 const ObjCInterfaceDecl *OID,
56 llvm::Value *BaseValue,
57 const ObjCIvarDecl *Ivar,
58 unsigned CVRQualifiers,
59 llvm::Value *Offset) {
60 // Compute (type*) ( (char *) BaseValue + Offset)
Akira Hatanaka14149bf2017-06-01 18:41:25 +000061 QualType InterfaceTy{OID->getTypeForDecl(), 0};
62 QualType ObjectPtrTy =
63 CGF.CGM.getContext().getObjCObjectPointerType(InterfaceTy);
64 QualType IvarTy =
65 Ivar->getUsageType(ObjectPtrTy).withCVRQualifiers(CVRQualifiers);
Chris Lattner2192fe52011-07-18 04:24:23 +000066 llvm::Type *LTy = CGF.CGM.getTypes().ConvertTypeForMem(IvarTy);
Chandler Carruthff0e3a12012-12-06 11:14:44 +000067 llvm::Value *V = CGF.Builder.CreateBitCast(BaseValue, CGF.Int8PtrTy);
David Chisnalld3858d62011-03-25 11:57:33 +000068 V = CGF.Builder.CreateInBoundsGEP(V, Offset, "add.ptr");
David Chisnalld3858d62011-03-25 11:57:33 +000069
70 if (!Ivar->isBitField()) {
Chandler Carruthff0e3a12012-12-06 11:14:44 +000071 V = CGF.Builder.CreateBitCast(V, llvm::PointerType::getUnqual(LTy));
Eli Friedman3184a5e2011-12-19 23:03:09 +000072 LValue LV = CGF.MakeNaturalAlignAddrLValue(V, IvarTy);
David Chisnalld3858d62011-03-25 11:57:33 +000073 return LV;
74 }
75
76 // We need to compute an access strategy for this bit-field. We are given the
77 // offset to the first byte in the bit-field, the sub-byte offset is taken
78 // from the original layout. We reuse the normal bit-field access strategy by
79 // treating this as an access to a struct where the bit-field is in byte 0,
80 // and adjust the containing type size as appropriate.
81 //
82 // FIXME: Note that currently we make a very conservative estimate of the
83 // alignment of the bit-field, because (a) it is not clear what guarantees the
84 // runtime makes us, and (b) we don't have a way to specify that the struct is
85 // at an alignment plus offset.
86 //
87 // Note, there is a subtle invariant here: we can only call this routine on
88 // non-synthesized ivars but we may be called for synthesized ivars. However,
89 // a synthesized ivar can never be a bit-field, so this is safe.
Akira Hatanaka4b1c4842017-06-27 04:34:04 +000090 uint64_t FieldBitOffset =
91 CGF.CGM.getContext().lookupFieldBitOffset(OID, nullptr, Ivar);
Ken Dyckabae3be2011-04-22 17:23:43 +000092 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth();
John McCallc8e01702013-04-16 22:48:15 +000093 uint64_t AlignmentBits = CGF.CGM.getTarget().getCharAlign();
Richard Smithcaf33902011-10-10 18:28:20 +000094 uint64_t BitFieldSize = Ivar->getBitWidthValue(CGF.getContext());
Rui Ueyama83aa9792016-01-14 21:00:27 +000095 CharUnits StorageSize = CGF.CGM.getContext().toCharUnitsFromBits(
96 llvm::alignTo(BitOffset + BitFieldSize, AlignmentBits));
Chandler Carruthff0e3a12012-12-06 11:14:44 +000097 CharUnits Alignment = CGF.CGM.getContext().toCharUnitsFromBits(AlignmentBits);
David Chisnalld3858d62011-03-25 11:57:33 +000098
99 // Allocate a new CGBitFieldInfo object to describe this access.
100 //
101 // FIXME: This is incredibly wasteful, these should be uniqued or part of some
102 // layout object. However, this is blocked on other cleanups to the
103 // Objective-C code, so for now we just live with allocating a bunch of these
104 // objects.
105 CGBitFieldInfo *Info = new (CGF.CGM.getContext()) CGBitFieldInfo(
106 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize,
Chandler Carruthff0e3a12012-12-06 11:14:44 +0000107 CGF.CGM.getContext().toBits(StorageSize),
Ulrich Weigand03ce2a12015-07-10 17:30:00 +0000108 CharUnits::fromQuantity(0)));
David Chisnalld3858d62011-03-25 11:57:33 +0000109
John McCall7f416cc2015-09-08 08:05:57 +0000110 Address Addr(V, Alignment);
111 Addr = CGF.Builder.CreateElementBitCast(Addr,
112 llvm::Type::getIntNTy(CGF.getLLVMContext(),
Chandler Carruthff0e3a12012-12-06 11:14:44 +0000113 Info->StorageSize));
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +0000114 return LValue::MakeBitfield(Addr, *Info, IvarTy,
Ivan A. Kosarevb9c59f32017-10-31 11:05:34 +0000115 LValueBaseInfo(AlignmentSource::Decl),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +0000116 TBAAAccessInfo());
David Chisnalld3858d62011-03-25 11:57:33 +0000117}
118
119namespace {
120 struct CatchHandler {
121 const VarDecl *Variable;
122 const Stmt *Body;
123 llvm::BasicBlock *Block;
Rafael Espindolabb9e7a32014-06-04 18:51:46 +0000124 llvm::Constant *TypeInfo;
David Chisnall93ce0182018-08-10 12:53:13 +0000125 /// Flags used to differentiate cleanups and catchalls in Windows SEH
126 unsigned Flags;
David Chisnalld3858d62011-03-25 11:57:33 +0000127 };
128
David Blaikie7e70d682015-08-18 22:40:54 +0000129 struct CallObjCEndCatch final : EHScopeStack::Cleanup {
Saleem Abdulrasool887a82c2016-10-13 19:45:08 +0000130 CallObjCEndCatch(bool MightThrow, llvm::Value *Fn)
131 : MightThrow(MightThrow), Fn(Fn) {}
David Chisnalld3858d62011-03-25 11:57:33 +0000132 bool MightThrow;
133 llvm::Value *Fn;
134
Craig Topper4f12f102014-03-12 06:41:41 +0000135 void Emit(CodeGenFunction &CGF, Flags flags) override {
Saleem Abdulrasool887a82c2016-10-13 19:45:08 +0000136 if (MightThrow)
137 CGF.EmitRuntimeCallOrInvoke(Fn);
138 else
139 CGF.EmitNounwindRuntimeCall(Fn);
David Chisnalld3858d62011-03-25 11:57:33 +0000140 }
141 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000142}
David Chisnalld3858d62011-03-25 11:57:33 +0000143
144
145void CGObjCRuntime::EmitTryCatchStmt(CodeGenFunction &CGF,
146 const ObjCAtTryStmt &S,
David Chisnall3fe89562011-05-23 22:33:28 +0000147 llvm::Constant *beginCatchFn,
148 llvm::Constant *endCatchFn,
149 llvm::Constant *exceptionRethrowFn) {
David Chisnalld3858d62011-03-25 11:57:33 +0000150 // Jump destination for falling out of catch bodies.
151 CodeGenFunction::JumpDest Cont;
152 if (S.getNumCatchStmts())
153 Cont = CGF.getJumpDestInCurrentScope("eh.cont");
154
David Chisnall93ce0182018-08-10 12:53:13 +0000155 bool useFunclets = EHPersonality::get(CGF).usesFuncletPads();
156
David Chisnalld3858d62011-03-25 11:57:33 +0000157 CodeGenFunction::FinallyInfo FinallyInfo;
David Chisnall93ce0182018-08-10 12:53:13 +0000158 if (!useFunclets)
159 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt())
160 FinallyInfo.enter(CGF, Finally->getFinallyBody(),
161 beginCatchFn, endCatchFn, exceptionRethrowFn);
David Chisnalld3858d62011-03-25 11:57:33 +0000162
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000163 SmallVector<CatchHandler, 8> Handlers;
David Chisnalld3858d62011-03-25 11:57:33 +0000164
David Chisnall93ce0182018-08-10 12:53:13 +0000165
David Chisnalld3858d62011-03-25 11:57:33 +0000166 // Enter the catch, if there is one.
167 if (S.getNumCatchStmts()) {
168 for (unsigned I = 0, N = S.getNumCatchStmts(); I != N; ++I) {
169 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I);
170 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
171
172 Handlers.push_back(CatchHandler());
173 CatchHandler &Handler = Handlers.back();
174 Handler.Variable = CatchDecl;
175 Handler.Body = CatchStmt->getCatchBody();
176 Handler.Block = CGF.createBasicBlock("catch");
David Chisnall93ce0182018-08-10 12:53:13 +0000177 Handler.Flags = 0;
David Chisnalld3858d62011-03-25 11:57:33 +0000178
179 // @catch(...) always matches.
180 if (!CatchDecl) {
David Chisnall93ce0182018-08-10 12:53:13 +0000181 auto catchAll = getCatchAllTypeInfo();
182 Handler.TypeInfo = catchAll.RTTI;
183 Handler.Flags = catchAll.Flags;
David Chisnalld3858d62011-03-25 11:57:33 +0000184 // Don't consider any other catches.
185 break;
186 }
187
188 Handler.TypeInfo = GetEHType(CatchDecl->getType());
189 }
190
191 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
192 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
David Chisnall93ce0182018-08-10 12:53:13 +0000193 Catch->setHandler(I, { Handlers[I].TypeInfo, Handlers[I].Flags }, Handlers[I].Block);
David Chisnalld3858d62011-03-25 11:57:33 +0000194 }
Fangrui Song6907ce22018-07-30 19:24:48 +0000195
David Chisnall93ce0182018-08-10 12:53:13 +0000196 if (useFunclets)
197 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt()) {
198 CodeGenFunction HelperCGF(CGM, /*suppressNewContext=*/true);
199 if (!CGF.CurSEHParent)
200 CGF.CurSEHParent = cast<NamedDecl>(CGF.CurFuncDecl);
201 // Outline the finally block.
202 const Stmt *FinallyBlock = Finally->getFinallyBody();
203 HelperCGF.startOutlinedSEHHelper(CGF, /*isFilter*/false, FinallyBlock);
204
205 // Emit the original filter expression, convert to i32, and return.
206 HelperCGF.EmitStmt(FinallyBlock);
207
David Chisnallb3c11502018-08-10 12:53:18 +0000208 HelperCGF.FinishFunction(FinallyBlock->getEndLoc());
David Chisnall93ce0182018-08-10 12:53:13 +0000209
210 llvm::Function *FinallyFunc = HelperCGF.CurFn;
211
212
213 // Push a cleanup for __finally blocks.
214 CGF.pushSEHCleanup(NormalAndEHCleanup, FinallyFunc);
215 }
216
217
David Chisnalld3858d62011-03-25 11:57:33 +0000218 // Emit the try body.
219 CGF.EmitStmt(S.getTryBody());
220
221 // Leave the try.
222 if (S.getNumCatchStmts())
John McCall8e4c74b2011-08-11 02:22:43 +0000223 CGF.popCatchScope();
David Chisnalld3858d62011-03-25 11:57:33 +0000224
225 // Remember where we were.
226 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
227
228 // Emit the handlers.
229 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
230 CatchHandler &Handler = Handlers[I];
231
232 CGF.EmitBlock(Handler.Block);
David Chisnall93ce0182018-08-10 12:53:13 +0000233 llvm::CatchPadInst *CPI = nullptr;
234 SaveAndRestore<llvm::Instruction *> RestoreCurrentFuncletPad(CGF.CurrentFuncletPad);
235 if (useFunclets)
236 if ((CPI = dyn_cast_or_null<llvm::CatchPadInst>(Handler.Block->getFirstNonPHI()))) {
237 CGF.CurrentFuncletPad = CPI;
238 CPI->setOperand(2, CGF.getExceptionSlot().getPointer());
239 }
Bill Wendling79a70e42011-09-15 18:57:19 +0000240 llvm::Value *RawExn = CGF.getExceptionFromSlot();
David Chisnalld3858d62011-03-25 11:57:33 +0000241
242 // Enter the catch.
243 llvm::Value *Exn = RawExn;
Saleem Abdulrasool887a82c2016-10-13 19:45:08 +0000244 if (beginCatchFn)
245 Exn = CGF.EmitNounwindRuntimeCall(beginCatchFn, RawExn, "exn.adjusted");
David Chisnalld3858d62011-03-25 11:57:33 +0000246
Eric Christopher7ec8ec82011-10-19 00:44:01 +0000247 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
John McCall3f6e7452011-05-12 01:00:15 +0000248
David Chisnalld3858d62011-03-25 11:57:33 +0000249 if (endCatchFn) {
250 // Add a cleanup to leave the catch.
Craig Topper8a13c412014-05-21 05:09:00 +0000251 bool EndCatchMightThrow = (Handler.Variable == nullptr);
David Chisnalld3858d62011-03-25 11:57:33 +0000252
253 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup,
254 EndCatchMightThrow,
255 endCatchFn);
256 }
257
258 // Bind the catch parameter if it exists.
259 if (const VarDecl *CatchParam = Handler.Variable) {
Chris Lattner2192fe52011-07-18 04:24:23 +0000260 llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType());
David Chisnalld3858d62011-03-25 11:57:33 +0000261 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
262
263 CGF.EmitAutoVarDecl(*CatchParam);
John McCall17f02752015-10-30 00:56:02 +0000264 EmitInitOfCatchParam(CGF, CastExn, CatchParam);
David Chisnalld3858d62011-03-25 11:57:33 +0000265 }
David Chisnall93ce0182018-08-10 12:53:13 +0000266 if (CPI)
267 CGF.EHStack.pushCleanup<CatchRetScope>(NormalCleanup, CPI);
David Chisnalld3858d62011-03-25 11:57:33 +0000268
269 CGF.ObjCEHValueStack.push_back(Exn);
270 CGF.EmitStmt(Handler.Body);
271 CGF.ObjCEHValueStack.pop_back();
272
John McCall3f6e7452011-05-12 01:00:15 +0000273 // Leave any cleanups associated with the catch.
274 cleanups.ForceCleanup();
David Chisnalld3858d62011-03-25 11:57:33 +0000275
276 CGF.EmitBranchThroughCleanup(Cont);
David Chisnall93ce0182018-08-10 12:53:13 +0000277 }
David Chisnalld3858d62011-03-25 11:57:33 +0000278
279 // Go back to the try-statement fallthrough.
280 CGF.Builder.restoreIP(SavedIP);
281
John McCall6b0feb72011-06-22 02:32:12 +0000282 // Pop out of the finally.
David Chisnall93ce0182018-08-10 12:53:13 +0000283 if (!useFunclets && S.getFinallyStmt())
John McCall6b0feb72011-06-22 02:32:12 +0000284 FinallyInfo.exit(CGF);
David Chisnalld3858d62011-03-25 11:57:33 +0000285
286 if (Cont.isValid())
287 CGF.EmitBlock(Cont.getBlock());
288}
289
John McCall17f02752015-10-30 00:56:02 +0000290void CGObjCRuntime::EmitInitOfCatchParam(CodeGenFunction &CGF,
291 llvm::Value *exn,
292 const VarDecl *paramDecl) {
293
294 Address paramAddr = CGF.GetAddrOfLocalVar(paramDecl);
295
296 switch (paramDecl->getType().getQualifiers().getObjCLifetime()) {
297 case Qualifiers::OCL_Strong:
298 exn = CGF.EmitARCRetainNonBlock(exn);
Reid Kleckner4dc0b1a2018-11-01 19:54:45 +0000299 LLVM_FALLTHROUGH;
John McCall17f02752015-10-30 00:56:02 +0000300
301 case Qualifiers::OCL_None:
302 case Qualifiers::OCL_ExplicitNone:
303 case Qualifiers::OCL_Autoreleasing:
304 CGF.Builder.CreateStore(exn, paramAddr);
305 return;
306
307 case Qualifiers::OCL_Weak:
308 CGF.EmitARCInitWeak(paramAddr, exn);
309 return;
310 }
311 llvm_unreachable("invalid ownership qualifier");
312}
313
David Chisnalld3858d62011-03-25 11:57:33 +0000314namespace {
David Blaikie7e70d682015-08-18 22:40:54 +0000315 struct CallSyncExit final : EHScopeStack::Cleanup {
David Chisnalld3858d62011-03-25 11:57:33 +0000316 llvm::Value *SyncExitFn;
317 llvm::Value *SyncArg;
318 CallSyncExit(llvm::Value *SyncExitFn, llvm::Value *SyncArg)
319 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {}
320
Craig Topper4f12f102014-03-12 06:41:41 +0000321 void Emit(CodeGenFunction &CGF, Flags flags) override {
David Chisnall93ce0182018-08-10 12:53:13 +0000322 CGF.EmitNounwindRuntimeCall(SyncExitFn, SyncArg);
David Chisnalld3858d62011-03-25 11:57:33 +0000323 }
324 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000325}
David Chisnalld3858d62011-03-25 11:57:33 +0000326
327void CGObjCRuntime::EmitAtSynchronizedStmt(CodeGenFunction &CGF,
328 const ObjCAtSynchronizedStmt &S,
329 llvm::Function *syncEnterFn,
330 llvm::Function *syncExitFn) {
John McCalld9bb7432011-07-27 21:50:02 +0000331 CodeGenFunction::RunCleanupsScope cleanups(CGF);
332
333 // Evaluate the lock operand. This is guaranteed to dominate the
334 // ARC release and lock-release cleanups.
335 const Expr *lockExpr = S.getSynchExpr();
336 llvm::Value *lock;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000337 if (CGF.getLangOpts().ObjCAutoRefCount) {
John McCalld9bb7432011-07-27 21:50:02 +0000338 lock = CGF.EmitARCRetainScalarExpr(lockExpr);
339 lock = CGF.EmitObjCConsumeObject(lockExpr->getType(), lock);
340 } else {
341 lock = CGF.EmitScalarExpr(lockExpr);
342 }
343 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
David Chisnalld3858d62011-03-25 11:57:33 +0000344
345 // Acquire the lock.
John McCalld9bb7432011-07-27 21:50:02 +0000346 CGF.Builder.CreateCall(syncEnterFn, lock)->setDoesNotThrow();
David Chisnalld3858d62011-03-25 11:57:33 +0000347
348 // Register an all-paths cleanup to release the lock.
John McCalld9bb7432011-07-27 21:50:02 +0000349 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup, syncExitFn, lock);
David Chisnalld3858d62011-03-25 11:57:33 +0000350
351 // Emit the body of the statement.
352 CGF.EmitStmt(S.getSynchBody());
David Chisnalld3858d62011-03-25 11:57:33 +0000353}
John McCalla729c622012-02-17 03:33:10 +0000354
355/// Compute the pointer-to-function type to which a message send
356/// should be casted in order to correctly call the given method
357/// with the given arguments.
358///
359/// \param method - may be null
360/// \param resultType - the result type to use if there's no method
James Dennett9426c6c2012-06-15 09:02:08 +0000361/// \param callArgs - the actual arguments, including implicit ones
John McCalla729c622012-02-17 03:33:10 +0000362CGObjCRuntime::MessageSendInfo
363CGObjCRuntime::getMessageSendInfo(const ObjCMethodDecl *method,
364 QualType resultType,
365 CallArgList &callArgs) {
366 // If there's a method, use information from that.
367 if (method) {
368 const CGFunctionInfo &signature =
369 CGM.getTypes().arrangeObjCMessageSendSignature(method, callArgs[0].Ty);
370
371 llvm::PointerType *signatureType =
372 CGM.getTypes().GetFunctionType(signature)->getPointerTo();
373
John McCallc56a8b32016-03-11 04:30:31 +0000374 const CGFunctionInfo &signatureForCall =
375 CGM.getTypes().arrangeCall(signature, callArgs);
John McCalla729c622012-02-17 03:33:10 +0000376
John McCallc56a8b32016-03-11 04:30:31 +0000377 return MessageSendInfo(signatureForCall, signatureType);
John McCalla729c622012-02-17 03:33:10 +0000378 }
379
380 // There's no method; just use a default CC.
381 const CGFunctionInfo &argsInfo =
John McCallc56a8b32016-03-11 04:30:31 +0000382 CGM.getTypes().arrangeUnprototypedObjCMessageSend(resultType, callArgs);
John McCalla729c622012-02-17 03:33:10 +0000383
384 // Derive the signature to call from that.
385 llvm::PointerType *signatureType =
386 CGM.getTypes().GetFunctionType(argsInfo)->getPointerTo();
387 return MessageSendInfo(argsInfo, signatureType);
388}