blob: f8b831d0e9bedec75d371fc732788cae802645da [file] [log] [blame]
David Chisnalld3858d62011-03-25 11:57:33 +00001//==- CGObjCRuntime.cpp - Interface to Shared Objective-C Runtime Features ==//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
David Chisnalld3858d62011-03-25 11:57:33 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This abstract class defines the interface for Objective-C runtime-specific
10// code generation. It provides some concrete helper methods for functionality
11// shared between all (or most) of the Objective-C runtimes supported by clang.
12//
13//===----------------------------------------------------------------------===//
14
15#include "CGObjCRuntime.h"
David Chisnalld3858d62011-03-25 11:57:33 +000016#include "CGCleanup.h"
David Chisnall93ce0182018-08-10 12:53:13 +000017#include "CGCXXABI.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "CGRecordLayout.h"
19#include "CodeGenFunction.h"
20#include "CodeGenModule.h"
David Chisnalld3858d62011-03-25 11:57:33 +000021#include "clang/AST/RecordLayout.h"
22#include "clang/AST/StmtObjC.h"
Mark Laceya8e7df32013-10-30 21:53:58 +000023#include "clang/CodeGen/CGFunctionInfo.h"
David Chisnall93ce0182018-08-10 12:53:13 +000024#include "llvm/Support/SaveAndRestore.h"
David Chisnalld3858d62011-03-25 11:57:33 +000025
26using namespace clang;
27using namespace CodeGen;
28
Eli Friedman8cbca202012-11-06 22:15:52 +000029uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
30 const ObjCInterfaceDecl *OID,
31 const ObjCIvarDecl *Ivar) {
Akira Hatanaka4b1c4842017-06-27 04:34:04 +000032 return CGM.getContext().lookupFieldBitOffset(OID, nullptr, Ivar) /
33 CGM.getContext().getCharWidth();
David Chisnalld3858d62011-03-25 11:57:33 +000034}
35
Eli Friedman8cbca202012-11-06 22:15:52 +000036uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
37 const ObjCImplementationDecl *OID,
38 const ObjCIvarDecl *Ivar) {
Akira Hatanaka4b1c4842017-06-27 04:34:04 +000039 return CGM.getContext().lookupFieldBitOffset(OID->getClassInterface(), OID,
40 Ivar) /
41 CGM.getContext().getCharWidth();
David Chisnalld3858d62011-03-25 11:57:33 +000042}
43
Eli Friedman85937482012-11-06 23:40:48 +000044unsigned CGObjCRuntime::ComputeBitfieldBitOffset(
45 CodeGen::CodeGenModule &CGM,
46 const ObjCInterfaceDecl *ID,
47 const ObjCIvarDecl *Ivar) {
Akira Hatanaka4b1c4842017-06-27 04:34:04 +000048 return CGM.getContext().lookupFieldBitOffset(ID, ID->getImplementation(),
49 Ivar);
Eli Friedman85937482012-11-06 23:40:48 +000050}
51
David Chisnalld3858d62011-03-25 11:57:33 +000052LValue CGObjCRuntime::EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF,
53 const ObjCInterfaceDecl *OID,
54 llvm::Value *BaseValue,
55 const ObjCIvarDecl *Ivar,
56 unsigned CVRQualifiers,
57 llvm::Value *Offset) {
58 // Compute (type*) ( (char *) BaseValue + Offset)
Akira Hatanaka14149bf2017-06-01 18:41:25 +000059 QualType InterfaceTy{OID->getTypeForDecl(), 0};
60 QualType ObjectPtrTy =
61 CGF.CGM.getContext().getObjCObjectPointerType(InterfaceTy);
62 QualType IvarTy =
63 Ivar->getUsageType(ObjectPtrTy).withCVRQualifiers(CVRQualifiers);
Chris Lattner2192fe52011-07-18 04:24:23 +000064 llvm::Type *LTy = CGF.CGM.getTypes().ConvertTypeForMem(IvarTy);
Chandler Carruthff0e3a12012-12-06 11:14:44 +000065 llvm::Value *V = CGF.Builder.CreateBitCast(BaseValue, CGF.Int8PtrTy);
David Chisnalld3858d62011-03-25 11:57:33 +000066 V = CGF.Builder.CreateInBoundsGEP(V, Offset, "add.ptr");
David Chisnalld3858d62011-03-25 11:57:33 +000067
68 if (!Ivar->isBitField()) {
Chandler Carruthff0e3a12012-12-06 11:14:44 +000069 V = CGF.Builder.CreateBitCast(V, llvm::PointerType::getUnqual(LTy));
Eli Friedman3184a5e2011-12-19 23:03:09 +000070 LValue LV = CGF.MakeNaturalAlignAddrLValue(V, IvarTy);
David Chisnalld3858d62011-03-25 11:57:33 +000071 return LV;
72 }
73
74 // We need to compute an access strategy for this bit-field. We are given the
75 // offset to the first byte in the bit-field, the sub-byte offset is taken
76 // from the original layout. We reuse the normal bit-field access strategy by
77 // treating this as an access to a struct where the bit-field is in byte 0,
78 // and adjust the containing type size as appropriate.
79 //
80 // FIXME: Note that currently we make a very conservative estimate of the
81 // alignment of the bit-field, because (a) it is not clear what guarantees the
82 // runtime makes us, and (b) we don't have a way to specify that the struct is
83 // at an alignment plus offset.
84 //
85 // Note, there is a subtle invariant here: we can only call this routine on
86 // non-synthesized ivars but we may be called for synthesized ivars. However,
87 // a synthesized ivar can never be a bit-field, so this is safe.
Akira Hatanaka4b1c4842017-06-27 04:34:04 +000088 uint64_t FieldBitOffset =
89 CGF.CGM.getContext().lookupFieldBitOffset(OID, nullptr, Ivar);
Ken Dyckabae3be2011-04-22 17:23:43 +000090 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth();
John McCallc8e01702013-04-16 22:48:15 +000091 uint64_t AlignmentBits = CGF.CGM.getTarget().getCharAlign();
Richard Smithcaf33902011-10-10 18:28:20 +000092 uint64_t BitFieldSize = Ivar->getBitWidthValue(CGF.getContext());
Rui Ueyama83aa9792016-01-14 21:00:27 +000093 CharUnits StorageSize = CGF.CGM.getContext().toCharUnitsFromBits(
94 llvm::alignTo(BitOffset + BitFieldSize, AlignmentBits));
Chandler Carruthff0e3a12012-12-06 11:14:44 +000095 CharUnits Alignment = CGF.CGM.getContext().toCharUnitsFromBits(AlignmentBits);
David Chisnalld3858d62011-03-25 11:57:33 +000096
97 // Allocate a new CGBitFieldInfo object to describe this access.
98 //
99 // FIXME: This is incredibly wasteful, these should be uniqued or part of some
100 // layout object. However, this is blocked on other cleanups to the
101 // Objective-C code, so for now we just live with allocating a bunch of these
102 // objects.
103 CGBitFieldInfo *Info = new (CGF.CGM.getContext()) CGBitFieldInfo(
104 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize,
Chandler Carruthff0e3a12012-12-06 11:14:44 +0000105 CGF.CGM.getContext().toBits(StorageSize),
Ulrich Weigand03ce2a12015-07-10 17:30:00 +0000106 CharUnits::fromQuantity(0)));
David Chisnalld3858d62011-03-25 11:57:33 +0000107
John McCall7f416cc2015-09-08 08:05:57 +0000108 Address Addr(V, Alignment);
109 Addr = CGF.Builder.CreateElementBitCast(Addr,
110 llvm::Type::getIntNTy(CGF.getLLVMContext(),
Chandler Carruthff0e3a12012-12-06 11:14:44 +0000111 Info->StorageSize));
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +0000112 return LValue::MakeBitfield(Addr, *Info, IvarTy,
Ivan A. Kosarevb9c59f32017-10-31 11:05:34 +0000113 LValueBaseInfo(AlignmentSource::Decl),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +0000114 TBAAAccessInfo());
David Chisnalld3858d62011-03-25 11:57:33 +0000115}
116
117namespace {
118 struct CatchHandler {
119 const VarDecl *Variable;
120 const Stmt *Body;
121 llvm::BasicBlock *Block;
Rafael Espindolabb9e7a32014-06-04 18:51:46 +0000122 llvm::Constant *TypeInfo;
David Chisnall93ce0182018-08-10 12:53:13 +0000123 /// Flags used to differentiate cleanups and catchalls in Windows SEH
124 unsigned Flags;
David Chisnalld3858d62011-03-25 11:57:33 +0000125 };
126
David Blaikie7e70d682015-08-18 22:40:54 +0000127 struct CallObjCEndCatch final : EHScopeStack::Cleanup {
James Y Knight9871db02019-02-05 16:42:33 +0000128 CallObjCEndCatch(bool MightThrow, llvm::FunctionCallee Fn)
Saleem Abdulrasool887a82c2016-10-13 19:45:08 +0000129 : MightThrow(MightThrow), Fn(Fn) {}
David Chisnalld3858d62011-03-25 11:57:33 +0000130 bool MightThrow;
James Y Knight9871db02019-02-05 16:42:33 +0000131 llvm::FunctionCallee Fn;
David Chisnalld3858d62011-03-25 11:57:33 +0000132
Craig Topper4f12f102014-03-12 06:41:41 +0000133 void Emit(CodeGenFunction &CGF, Flags flags) override {
Saleem Abdulrasool887a82c2016-10-13 19:45:08 +0000134 if (MightThrow)
135 CGF.EmitRuntimeCallOrInvoke(Fn);
136 else
137 CGF.EmitNounwindRuntimeCall(Fn);
David Chisnalld3858d62011-03-25 11:57:33 +0000138 }
139 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000140}
David Chisnalld3858d62011-03-25 11:57:33 +0000141
David Chisnalld3858d62011-03-25 11:57:33 +0000142void CGObjCRuntime::EmitTryCatchStmt(CodeGenFunction &CGF,
143 const ObjCAtTryStmt &S,
James Y Knight9871db02019-02-05 16:42:33 +0000144 llvm::FunctionCallee beginCatchFn,
145 llvm::FunctionCallee endCatchFn,
146 llvm::FunctionCallee exceptionRethrowFn) {
David Chisnalld3858d62011-03-25 11:57:33 +0000147 // Jump destination for falling out of catch bodies.
148 CodeGenFunction::JumpDest Cont;
149 if (S.getNumCatchStmts())
150 Cont = CGF.getJumpDestInCurrentScope("eh.cont");
151
David Chisnall93ce0182018-08-10 12:53:13 +0000152 bool useFunclets = EHPersonality::get(CGF).usesFuncletPads();
153
David Chisnalld3858d62011-03-25 11:57:33 +0000154 CodeGenFunction::FinallyInfo FinallyInfo;
David Chisnall93ce0182018-08-10 12:53:13 +0000155 if (!useFunclets)
156 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt())
157 FinallyInfo.enter(CGF, Finally->getFinallyBody(),
158 beginCatchFn, endCatchFn, exceptionRethrowFn);
David Chisnalld3858d62011-03-25 11:57:33 +0000159
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000160 SmallVector<CatchHandler, 8> Handlers;
David Chisnalld3858d62011-03-25 11:57:33 +0000161
David Chisnall93ce0182018-08-10 12:53:13 +0000162
David Chisnalld3858d62011-03-25 11:57:33 +0000163 // Enter the catch, if there is one.
164 if (S.getNumCatchStmts()) {
165 for (unsigned I = 0, N = S.getNumCatchStmts(); I != N; ++I) {
166 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I);
167 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
168
169 Handlers.push_back(CatchHandler());
170 CatchHandler &Handler = Handlers.back();
171 Handler.Variable = CatchDecl;
172 Handler.Body = CatchStmt->getCatchBody();
173 Handler.Block = CGF.createBasicBlock("catch");
David Chisnall93ce0182018-08-10 12:53:13 +0000174 Handler.Flags = 0;
David Chisnalld3858d62011-03-25 11:57:33 +0000175
176 // @catch(...) always matches.
177 if (!CatchDecl) {
David Chisnall93ce0182018-08-10 12:53:13 +0000178 auto catchAll = getCatchAllTypeInfo();
179 Handler.TypeInfo = catchAll.RTTI;
180 Handler.Flags = catchAll.Flags;
David Chisnalld3858d62011-03-25 11:57:33 +0000181 // Don't consider any other catches.
182 break;
183 }
184
185 Handler.TypeInfo = GetEHType(CatchDecl->getType());
186 }
187
188 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
189 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
David Chisnall93ce0182018-08-10 12:53:13 +0000190 Catch->setHandler(I, { Handlers[I].TypeInfo, Handlers[I].Flags }, Handlers[I].Block);
David Chisnalld3858d62011-03-25 11:57:33 +0000191 }
Fangrui Song6907ce22018-07-30 19:24:48 +0000192
David Chisnall93ce0182018-08-10 12:53:13 +0000193 if (useFunclets)
194 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt()) {
195 CodeGenFunction HelperCGF(CGM, /*suppressNewContext=*/true);
196 if (!CGF.CurSEHParent)
197 CGF.CurSEHParent = cast<NamedDecl>(CGF.CurFuncDecl);
198 // Outline the finally block.
199 const Stmt *FinallyBlock = Finally->getFinallyBody();
200 HelperCGF.startOutlinedSEHHelper(CGF, /*isFilter*/false, FinallyBlock);
201
202 // Emit the original filter expression, convert to i32, and return.
203 HelperCGF.EmitStmt(FinallyBlock);
204
David Chisnallb3c11502018-08-10 12:53:18 +0000205 HelperCGF.FinishFunction(FinallyBlock->getEndLoc());
David Chisnall93ce0182018-08-10 12:53:13 +0000206
207 llvm::Function *FinallyFunc = HelperCGF.CurFn;
208
209
210 // Push a cleanup for __finally blocks.
211 CGF.pushSEHCleanup(NormalAndEHCleanup, FinallyFunc);
212 }
213
214
David Chisnalld3858d62011-03-25 11:57:33 +0000215 // Emit the try body.
216 CGF.EmitStmt(S.getTryBody());
217
218 // Leave the try.
219 if (S.getNumCatchStmts())
John McCall8e4c74b2011-08-11 02:22:43 +0000220 CGF.popCatchScope();
David Chisnalld3858d62011-03-25 11:57:33 +0000221
222 // Remember where we were.
223 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
224
225 // Emit the handlers.
226 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
227 CatchHandler &Handler = Handlers[I];
228
229 CGF.EmitBlock(Handler.Block);
David Chisnall93ce0182018-08-10 12:53:13 +0000230 llvm::CatchPadInst *CPI = nullptr;
231 SaveAndRestore<llvm::Instruction *> RestoreCurrentFuncletPad(CGF.CurrentFuncletPad);
232 if (useFunclets)
233 if ((CPI = dyn_cast_or_null<llvm::CatchPadInst>(Handler.Block->getFirstNonPHI()))) {
234 CGF.CurrentFuncletPad = CPI;
235 CPI->setOperand(2, CGF.getExceptionSlot().getPointer());
236 }
Bill Wendling79a70e42011-09-15 18:57:19 +0000237 llvm::Value *RawExn = CGF.getExceptionFromSlot();
David Chisnalld3858d62011-03-25 11:57:33 +0000238
239 // Enter the catch.
240 llvm::Value *Exn = RawExn;
Saleem Abdulrasool887a82c2016-10-13 19:45:08 +0000241 if (beginCatchFn)
242 Exn = CGF.EmitNounwindRuntimeCall(beginCatchFn, RawExn, "exn.adjusted");
David Chisnalld3858d62011-03-25 11:57:33 +0000243
Eric Christopher7ec8ec82011-10-19 00:44:01 +0000244 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
John McCall3f6e7452011-05-12 01:00:15 +0000245
David Chisnalld3858d62011-03-25 11:57:33 +0000246 if (endCatchFn) {
247 // Add a cleanup to leave the catch.
Craig Topper8a13c412014-05-21 05:09:00 +0000248 bool EndCatchMightThrow = (Handler.Variable == nullptr);
David Chisnalld3858d62011-03-25 11:57:33 +0000249
250 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup,
251 EndCatchMightThrow,
252 endCatchFn);
253 }
254
255 // Bind the catch parameter if it exists.
256 if (const VarDecl *CatchParam = Handler.Variable) {
Chris Lattner2192fe52011-07-18 04:24:23 +0000257 llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType());
David Chisnalld3858d62011-03-25 11:57:33 +0000258 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
259
260 CGF.EmitAutoVarDecl(*CatchParam);
John McCall17f02752015-10-30 00:56:02 +0000261 EmitInitOfCatchParam(CGF, CastExn, CatchParam);
David Chisnalld3858d62011-03-25 11:57:33 +0000262 }
David Chisnall93ce0182018-08-10 12:53:13 +0000263 if (CPI)
264 CGF.EHStack.pushCleanup<CatchRetScope>(NormalCleanup, CPI);
David Chisnalld3858d62011-03-25 11:57:33 +0000265
266 CGF.ObjCEHValueStack.push_back(Exn);
267 CGF.EmitStmt(Handler.Body);
268 CGF.ObjCEHValueStack.pop_back();
269
John McCall3f6e7452011-05-12 01:00:15 +0000270 // Leave any cleanups associated with the catch.
271 cleanups.ForceCleanup();
David Chisnalld3858d62011-03-25 11:57:33 +0000272
273 CGF.EmitBranchThroughCleanup(Cont);
David Chisnall93ce0182018-08-10 12:53:13 +0000274 }
David Chisnalld3858d62011-03-25 11:57:33 +0000275
276 // Go back to the try-statement fallthrough.
277 CGF.Builder.restoreIP(SavedIP);
278
John McCall6b0feb72011-06-22 02:32:12 +0000279 // Pop out of the finally.
David Chisnall93ce0182018-08-10 12:53:13 +0000280 if (!useFunclets && S.getFinallyStmt())
John McCall6b0feb72011-06-22 02:32:12 +0000281 FinallyInfo.exit(CGF);
David Chisnalld3858d62011-03-25 11:57:33 +0000282
283 if (Cont.isValid())
284 CGF.EmitBlock(Cont.getBlock());
285}
286
John McCall17f02752015-10-30 00:56:02 +0000287void CGObjCRuntime::EmitInitOfCatchParam(CodeGenFunction &CGF,
288 llvm::Value *exn,
289 const VarDecl *paramDecl) {
290
291 Address paramAddr = CGF.GetAddrOfLocalVar(paramDecl);
292
293 switch (paramDecl->getType().getQualifiers().getObjCLifetime()) {
294 case Qualifiers::OCL_Strong:
295 exn = CGF.EmitARCRetainNonBlock(exn);
Reid Kleckner4dc0b1a2018-11-01 19:54:45 +0000296 LLVM_FALLTHROUGH;
John McCall17f02752015-10-30 00:56:02 +0000297
298 case Qualifiers::OCL_None:
299 case Qualifiers::OCL_ExplicitNone:
300 case Qualifiers::OCL_Autoreleasing:
301 CGF.Builder.CreateStore(exn, paramAddr);
302 return;
303
304 case Qualifiers::OCL_Weak:
305 CGF.EmitARCInitWeak(paramAddr, exn);
306 return;
307 }
308 llvm_unreachable("invalid ownership qualifier");
309}
310
David Chisnalld3858d62011-03-25 11:57:33 +0000311namespace {
David Blaikie7e70d682015-08-18 22:40:54 +0000312 struct CallSyncExit final : EHScopeStack::Cleanup {
James Y Knight9871db02019-02-05 16:42:33 +0000313 llvm::FunctionCallee SyncExitFn;
David Chisnalld3858d62011-03-25 11:57:33 +0000314 llvm::Value *SyncArg;
James Y Knight9871db02019-02-05 16:42:33 +0000315 CallSyncExit(llvm::FunctionCallee SyncExitFn, llvm::Value *SyncArg)
316 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {}
David Chisnalld3858d62011-03-25 11:57:33 +0000317
Craig Topper4f12f102014-03-12 06:41:41 +0000318 void Emit(CodeGenFunction &CGF, Flags flags) override {
David Chisnall93ce0182018-08-10 12:53:13 +0000319 CGF.EmitNounwindRuntimeCall(SyncExitFn, SyncArg);
David Chisnalld3858d62011-03-25 11:57:33 +0000320 }
321 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000322}
David Chisnalld3858d62011-03-25 11:57:33 +0000323
324void CGObjCRuntime::EmitAtSynchronizedStmt(CodeGenFunction &CGF,
325 const ObjCAtSynchronizedStmt &S,
James Y Knight9871db02019-02-05 16:42:33 +0000326 llvm::FunctionCallee syncEnterFn,
327 llvm::FunctionCallee syncExitFn) {
John McCalld9bb7432011-07-27 21:50:02 +0000328 CodeGenFunction::RunCleanupsScope cleanups(CGF);
329
330 // Evaluate the lock operand. This is guaranteed to dominate the
331 // ARC release and lock-release cleanups.
332 const Expr *lockExpr = S.getSynchExpr();
333 llvm::Value *lock;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000334 if (CGF.getLangOpts().ObjCAutoRefCount) {
John McCalld9bb7432011-07-27 21:50:02 +0000335 lock = CGF.EmitARCRetainScalarExpr(lockExpr);
336 lock = CGF.EmitObjCConsumeObject(lockExpr->getType(), lock);
337 } else {
338 lock = CGF.EmitScalarExpr(lockExpr);
339 }
340 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
David Chisnalld3858d62011-03-25 11:57:33 +0000341
342 // Acquire the lock.
John McCalld9bb7432011-07-27 21:50:02 +0000343 CGF.Builder.CreateCall(syncEnterFn, lock)->setDoesNotThrow();
David Chisnalld3858d62011-03-25 11:57:33 +0000344
345 // Register an all-paths cleanup to release the lock.
John McCalld9bb7432011-07-27 21:50:02 +0000346 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup, syncExitFn, lock);
David Chisnalld3858d62011-03-25 11:57:33 +0000347
348 // Emit the body of the statement.
349 CGF.EmitStmt(S.getSynchBody());
David Chisnalld3858d62011-03-25 11:57:33 +0000350}
John McCalla729c622012-02-17 03:33:10 +0000351
352/// Compute the pointer-to-function type to which a message send
353/// should be casted in order to correctly call the given method
354/// with the given arguments.
355///
356/// \param method - may be null
357/// \param resultType - the result type to use if there's no method
James Dennett9426c6c2012-06-15 09:02:08 +0000358/// \param callArgs - the actual arguments, including implicit ones
John McCalla729c622012-02-17 03:33:10 +0000359CGObjCRuntime::MessageSendInfo
360CGObjCRuntime::getMessageSendInfo(const ObjCMethodDecl *method,
361 QualType resultType,
362 CallArgList &callArgs) {
363 // If there's a method, use information from that.
364 if (method) {
365 const CGFunctionInfo &signature =
366 CGM.getTypes().arrangeObjCMessageSendSignature(method, callArgs[0].Ty);
367
368 llvm::PointerType *signatureType =
369 CGM.getTypes().GetFunctionType(signature)->getPointerTo();
370
John McCallc56a8b32016-03-11 04:30:31 +0000371 const CGFunctionInfo &signatureForCall =
372 CGM.getTypes().arrangeCall(signature, callArgs);
John McCalla729c622012-02-17 03:33:10 +0000373
John McCallc56a8b32016-03-11 04:30:31 +0000374 return MessageSendInfo(signatureForCall, signatureType);
John McCalla729c622012-02-17 03:33:10 +0000375 }
376
377 // There's no method; just use a default CC.
378 const CGFunctionInfo &argsInfo =
John McCallc56a8b32016-03-11 04:30:31 +0000379 CGM.getTypes().arrangeUnprototypedObjCMessageSend(resultType, callArgs);
John McCalla729c622012-02-17 03:33:10 +0000380
381 // Derive the signature to call from that.
382 llvm::PointerType *signatureType =
383 CGM.getTypes().GetFunctionType(argsInfo)->getPointerTo();
384 return MessageSendInfo(argsInfo, signatureType);
385}