blob: ebc829272e7cf1ceee8924634bb44aa5f76a2230 [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"
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"
Chandler Carruthc80ceea2014-03-04 11:02:08 +000024#include "llvm/IR/CallSite.h"
David Chisnalld3858d62011-03-25 11:57:33 +000025
26using namespace clang;
27using namespace CodeGen;
28
29static uint64_t LookupFieldBitOffset(CodeGen::CodeGenModule &CGM,
30 const ObjCInterfaceDecl *OID,
31 const ObjCImplementationDecl *ID,
32 const ObjCIvarDecl *Ivar) {
33 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
34
35 // FIXME: We should eliminate the need to have ObjCImplementationDecl passed
36 // in here; it should never be necessary because that should be the lexical
37 // decl context for the ivar.
38
39 // If we know have an implementation (and the ivar is in it) then
40 // look up in the implementation layout.
41 const ASTRecordLayout *RL;
Douglas Gregor0b144e12011-12-15 00:29:59 +000042 if (ID && declaresSameEntity(ID->getClassInterface(), Container))
David Chisnalld3858d62011-03-25 11:57:33 +000043 RL = &CGM.getContext().getASTObjCImplementationLayout(ID);
44 else
45 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
46
47 // Compute field index.
48 //
49 // FIXME: The index here is closely tied to how ASTContext::getObjCLayout is
50 // implemented. This should be fixed to get the information from the layout
51 // directly.
52 unsigned Index = 0;
Fariborz Jahanianb26d5782011-06-28 18:05:25 +000053
Jordy Rosea91768e2011-07-22 02:08:32 +000054 for (const ObjCIvarDecl *IVD = Container->all_declared_ivar_begin();
Fariborz Jahanianb26d5782011-06-28 18:05:25 +000055 IVD; IVD = IVD->getNextIvar()) {
56 if (Ivar == IVD)
David Chisnalld3858d62011-03-25 11:57:33 +000057 break;
58 ++Index;
59 }
David Chisnalld3858d62011-03-25 11:57:33 +000060 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
61
62 return RL->getFieldOffset(Index);
63}
64
Eli Friedman8cbca202012-11-06 22:15:52 +000065uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
66 const ObjCInterfaceDecl *OID,
67 const ObjCIvarDecl *Ivar) {
Craig Topper8a13c412014-05-21 05:09:00 +000068 return LookupFieldBitOffset(CGM, OID, nullptr, Ivar) /
Eli Friedman8cbca202012-11-06 22:15:52 +000069 CGM.getContext().getCharWidth();
David Chisnalld3858d62011-03-25 11:57:33 +000070}
71
Eli Friedman8cbca202012-11-06 22:15:52 +000072uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
73 const ObjCImplementationDecl *OID,
74 const ObjCIvarDecl *Ivar) {
75 return LookupFieldBitOffset(CGM, OID->getClassInterface(), OID, Ivar) /
76 CGM.getContext().getCharWidth();
David Chisnalld3858d62011-03-25 11:57:33 +000077}
78
Eli Friedman85937482012-11-06 23:40:48 +000079unsigned CGObjCRuntime::ComputeBitfieldBitOffset(
80 CodeGen::CodeGenModule &CGM,
81 const ObjCInterfaceDecl *ID,
82 const ObjCIvarDecl *Ivar) {
83 return LookupFieldBitOffset(CGM, ID, ID->getImplementation(), Ivar);
84}
85
David Chisnalld3858d62011-03-25 11:57:33 +000086LValue CGObjCRuntime::EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF,
87 const ObjCInterfaceDecl *OID,
88 llvm::Value *BaseValue,
89 const ObjCIvarDecl *Ivar,
90 unsigned CVRQualifiers,
91 llvm::Value *Offset) {
92 // Compute (type*) ( (char *) BaseValue + Offset)
Nick Lewycky6fdfaed2016-10-10 20:07:13 +000093 QualType IvarTy = Ivar->getType().withCVRQualifiers(CVRQualifiers);
Chris Lattner2192fe52011-07-18 04:24:23 +000094 llvm::Type *LTy = CGF.CGM.getTypes().ConvertTypeForMem(IvarTy);
Chandler Carruthff0e3a12012-12-06 11:14:44 +000095 llvm::Value *V = CGF.Builder.CreateBitCast(BaseValue, CGF.Int8PtrTy);
David Chisnalld3858d62011-03-25 11:57:33 +000096 V = CGF.Builder.CreateInBoundsGEP(V, Offset, "add.ptr");
David Chisnalld3858d62011-03-25 11:57:33 +000097
98 if (!Ivar->isBitField()) {
Chandler Carruthff0e3a12012-12-06 11:14:44 +000099 V = CGF.Builder.CreateBitCast(V, llvm::PointerType::getUnqual(LTy));
Eli Friedman3184a5e2011-12-19 23:03:09 +0000100 LValue LV = CGF.MakeNaturalAlignAddrLValue(V, IvarTy);
David Chisnalld3858d62011-03-25 11:57:33 +0000101 return LV;
102 }
103
104 // We need to compute an access strategy for this bit-field. We are given the
105 // offset to the first byte in the bit-field, the sub-byte offset is taken
106 // from the original layout. We reuse the normal bit-field access strategy by
107 // treating this as an access to a struct where the bit-field is in byte 0,
108 // and adjust the containing type size as appropriate.
109 //
110 // FIXME: Note that currently we make a very conservative estimate of the
111 // alignment of the bit-field, because (a) it is not clear what guarantees the
112 // runtime makes us, and (b) we don't have a way to specify that the struct is
113 // at an alignment plus offset.
114 //
115 // Note, there is a subtle invariant here: we can only call this routine on
116 // non-synthesized ivars but we may be called for synthesized ivars. However,
117 // a synthesized ivar can never be a bit-field, so this is safe.
Craig Topper8a13c412014-05-21 05:09:00 +0000118 uint64_t FieldBitOffset = LookupFieldBitOffset(CGF.CGM, OID, nullptr, Ivar);
Ken Dyckabae3be2011-04-22 17:23:43 +0000119 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth();
John McCallc8e01702013-04-16 22:48:15 +0000120 uint64_t AlignmentBits = CGF.CGM.getTarget().getCharAlign();
Richard Smithcaf33902011-10-10 18:28:20 +0000121 uint64_t BitFieldSize = Ivar->getBitWidthValue(CGF.getContext());
Rui Ueyama83aa9792016-01-14 21:00:27 +0000122 CharUnits StorageSize = CGF.CGM.getContext().toCharUnitsFromBits(
123 llvm::alignTo(BitOffset + BitFieldSize, AlignmentBits));
Chandler Carruthff0e3a12012-12-06 11:14:44 +0000124 CharUnits Alignment = CGF.CGM.getContext().toCharUnitsFromBits(AlignmentBits);
David Chisnalld3858d62011-03-25 11:57:33 +0000125
126 // Allocate a new CGBitFieldInfo object to describe this access.
127 //
128 // FIXME: This is incredibly wasteful, these should be uniqued or part of some
129 // layout object. However, this is blocked on other cleanups to the
130 // Objective-C code, so for now we just live with allocating a bunch of these
131 // objects.
132 CGBitFieldInfo *Info = new (CGF.CGM.getContext()) CGBitFieldInfo(
133 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize,
Chandler Carruthff0e3a12012-12-06 11:14:44 +0000134 CGF.CGM.getContext().toBits(StorageSize),
Ulrich Weigand03ce2a12015-07-10 17:30:00 +0000135 CharUnits::fromQuantity(0)));
David Chisnalld3858d62011-03-25 11:57:33 +0000136
John McCall7f416cc2015-09-08 08:05:57 +0000137 Address Addr(V, Alignment);
138 Addr = CGF.Builder.CreateElementBitCast(Addr,
139 llvm::Type::getIntNTy(CGF.getLLVMContext(),
Chandler Carruthff0e3a12012-12-06 11:14:44 +0000140 Info->StorageSize));
Nick Lewycky6fdfaed2016-10-10 20:07:13 +0000141 return LValue::MakeBitfield(Addr, *Info, IvarTy, AlignmentSource::Decl);
David Chisnalld3858d62011-03-25 11:57:33 +0000142}
143
144namespace {
145 struct CatchHandler {
146 const VarDecl *Variable;
147 const Stmt *Body;
148 llvm::BasicBlock *Block;
Rafael Espindolabb9e7a32014-06-04 18:51:46 +0000149 llvm::Constant *TypeInfo;
David Chisnalld3858d62011-03-25 11:57:33 +0000150 };
151
David Blaikie7e70d682015-08-18 22:40:54 +0000152 struct CallObjCEndCatch final : EHScopeStack::Cleanup {
David Chisnalld3858d62011-03-25 11:57:33 +0000153 CallObjCEndCatch(bool MightThrow, llvm::Value *Fn) :
154 MightThrow(MightThrow), Fn(Fn) {}
155 bool MightThrow;
156 llvm::Value *Fn;
157
Craig Topper4f12f102014-03-12 06:41:41 +0000158 void Emit(CodeGenFunction &CGF, Flags flags) override {
David Chisnalld3858d62011-03-25 11:57:33 +0000159 if (!MightThrow) {
David Blaikie4ba525b2015-07-14 17:27:39 +0000160 CGF.Builder.CreateCall(Fn)->setDoesNotThrow();
David Chisnalld3858d62011-03-25 11:57:33 +0000161 return;
162 }
163
John McCall882987f2013-02-28 19:01:20 +0000164 CGF.EmitRuntimeCallOrInvoke(Fn);
David Chisnalld3858d62011-03-25 11:57:33 +0000165 }
166 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000167}
David Chisnalld3858d62011-03-25 11:57:33 +0000168
169
170void CGObjCRuntime::EmitTryCatchStmt(CodeGenFunction &CGF,
171 const ObjCAtTryStmt &S,
David Chisnall3fe89562011-05-23 22:33:28 +0000172 llvm::Constant *beginCatchFn,
173 llvm::Constant *endCatchFn,
174 llvm::Constant *exceptionRethrowFn) {
David Chisnalld3858d62011-03-25 11:57:33 +0000175 // Jump destination for falling out of catch bodies.
176 CodeGenFunction::JumpDest Cont;
177 if (S.getNumCatchStmts())
178 Cont = CGF.getJumpDestInCurrentScope("eh.cont");
179
180 CodeGenFunction::FinallyInfo FinallyInfo;
181 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt())
John McCall6b0feb72011-06-22 02:32:12 +0000182 FinallyInfo.enter(CGF, Finally->getFinallyBody(),
183 beginCatchFn, endCatchFn, exceptionRethrowFn);
David Chisnalld3858d62011-03-25 11:57:33 +0000184
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000185 SmallVector<CatchHandler, 8> Handlers;
David Chisnalld3858d62011-03-25 11:57:33 +0000186
187 // Enter the catch, if there is one.
188 if (S.getNumCatchStmts()) {
189 for (unsigned I = 0, N = S.getNumCatchStmts(); I != N; ++I) {
190 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I);
191 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
192
193 Handlers.push_back(CatchHandler());
194 CatchHandler &Handler = Handlers.back();
195 Handler.Variable = CatchDecl;
196 Handler.Body = CatchStmt->getCatchBody();
197 Handler.Block = CGF.createBasicBlock("catch");
198
199 // @catch(...) always matches.
200 if (!CatchDecl) {
Craig Topper8a13c412014-05-21 05:09:00 +0000201 Handler.TypeInfo = nullptr; // catch-all
David Chisnalld3858d62011-03-25 11:57:33 +0000202 // Don't consider any other catches.
203 break;
204 }
205
206 Handler.TypeInfo = GetEHType(CatchDecl->getType());
207 }
208
209 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
210 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
211 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
212 }
213
214 // Emit the try body.
215 CGF.EmitStmt(S.getTryBody());
216
217 // Leave the try.
218 if (S.getNumCatchStmts())
John McCall8e4c74b2011-08-11 02:22:43 +0000219 CGF.popCatchScope();
David Chisnalld3858d62011-03-25 11:57:33 +0000220
221 // Remember where we were.
222 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
223
224 // Emit the handlers.
225 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
226 CatchHandler &Handler = Handlers[I];
227
228 CGF.EmitBlock(Handler.Block);
Bill Wendling79a70e42011-09-15 18:57:19 +0000229 llvm::Value *RawExn = CGF.getExceptionFromSlot();
David Chisnalld3858d62011-03-25 11:57:33 +0000230
231 // Enter the catch.
232 llvm::Value *Exn = RawExn;
233 if (beginCatchFn) {
234 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted");
235 cast<llvm::CallInst>(Exn)->setDoesNotThrow();
236 }
237
Eric Christopher7ec8ec82011-10-19 00:44:01 +0000238 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
John McCall3f6e7452011-05-12 01:00:15 +0000239
David Chisnalld3858d62011-03-25 11:57:33 +0000240 if (endCatchFn) {
241 // Add a cleanup to leave the catch.
Craig Topper8a13c412014-05-21 05:09:00 +0000242 bool EndCatchMightThrow = (Handler.Variable == nullptr);
David Chisnalld3858d62011-03-25 11:57:33 +0000243
244 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup,
245 EndCatchMightThrow,
246 endCatchFn);
247 }
248
249 // Bind the catch parameter if it exists.
250 if (const VarDecl *CatchParam = Handler.Variable) {
Chris Lattner2192fe52011-07-18 04:24:23 +0000251 llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType());
David Chisnalld3858d62011-03-25 11:57:33 +0000252 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
253
254 CGF.EmitAutoVarDecl(*CatchParam);
John McCall17f02752015-10-30 00:56:02 +0000255 EmitInitOfCatchParam(CGF, CastExn, CatchParam);
David Chisnalld3858d62011-03-25 11:57:33 +0000256 }
257
258 CGF.ObjCEHValueStack.push_back(Exn);
259 CGF.EmitStmt(Handler.Body);
260 CGF.ObjCEHValueStack.pop_back();
261
John McCall3f6e7452011-05-12 01:00:15 +0000262 // Leave any cleanups associated with the catch.
263 cleanups.ForceCleanup();
David Chisnalld3858d62011-03-25 11:57:33 +0000264
265 CGF.EmitBranchThroughCleanup(Cont);
266 }
267
268 // Go back to the try-statement fallthrough.
269 CGF.Builder.restoreIP(SavedIP);
270
John McCall6b0feb72011-06-22 02:32:12 +0000271 // Pop out of the finally.
David Chisnalld3858d62011-03-25 11:57:33 +0000272 if (S.getFinallyStmt())
John McCall6b0feb72011-06-22 02:32:12 +0000273 FinallyInfo.exit(CGF);
David Chisnalld3858d62011-03-25 11:57:33 +0000274
275 if (Cont.isValid())
276 CGF.EmitBlock(Cont.getBlock());
277}
278
John McCall17f02752015-10-30 00:56:02 +0000279void CGObjCRuntime::EmitInitOfCatchParam(CodeGenFunction &CGF,
280 llvm::Value *exn,
281 const VarDecl *paramDecl) {
282
283 Address paramAddr = CGF.GetAddrOfLocalVar(paramDecl);
284
285 switch (paramDecl->getType().getQualifiers().getObjCLifetime()) {
286 case Qualifiers::OCL_Strong:
287 exn = CGF.EmitARCRetainNonBlock(exn);
288 // fallthrough
289
290 case Qualifiers::OCL_None:
291 case Qualifiers::OCL_ExplicitNone:
292 case Qualifiers::OCL_Autoreleasing:
293 CGF.Builder.CreateStore(exn, paramAddr);
294 return;
295
296 case Qualifiers::OCL_Weak:
297 CGF.EmitARCInitWeak(paramAddr, exn);
298 return;
299 }
300 llvm_unreachable("invalid ownership qualifier");
301}
302
David Chisnalld3858d62011-03-25 11:57:33 +0000303namespace {
David Blaikie7e70d682015-08-18 22:40:54 +0000304 struct CallSyncExit final : EHScopeStack::Cleanup {
David Chisnalld3858d62011-03-25 11:57:33 +0000305 llvm::Value *SyncExitFn;
306 llvm::Value *SyncArg;
307 CallSyncExit(llvm::Value *SyncExitFn, llvm::Value *SyncArg)
308 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {}
309
Craig Topper4f12f102014-03-12 06:41:41 +0000310 void Emit(CodeGenFunction &CGF, Flags flags) override {
David Chisnalld3858d62011-03-25 11:57:33 +0000311 CGF.Builder.CreateCall(SyncExitFn, SyncArg)->setDoesNotThrow();
312 }
313 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000314}
David Chisnalld3858d62011-03-25 11:57:33 +0000315
316void CGObjCRuntime::EmitAtSynchronizedStmt(CodeGenFunction &CGF,
317 const ObjCAtSynchronizedStmt &S,
318 llvm::Function *syncEnterFn,
319 llvm::Function *syncExitFn) {
John McCalld9bb7432011-07-27 21:50:02 +0000320 CodeGenFunction::RunCleanupsScope cleanups(CGF);
321
322 // Evaluate the lock operand. This is guaranteed to dominate the
323 // ARC release and lock-release cleanups.
324 const Expr *lockExpr = S.getSynchExpr();
325 llvm::Value *lock;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000326 if (CGF.getLangOpts().ObjCAutoRefCount) {
John McCalld9bb7432011-07-27 21:50:02 +0000327 lock = CGF.EmitARCRetainScalarExpr(lockExpr);
328 lock = CGF.EmitObjCConsumeObject(lockExpr->getType(), lock);
329 } else {
330 lock = CGF.EmitScalarExpr(lockExpr);
331 }
332 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
David Chisnalld3858d62011-03-25 11:57:33 +0000333
334 // Acquire the lock.
John McCalld9bb7432011-07-27 21:50:02 +0000335 CGF.Builder.CreateCall(syncEnterFn, lock)->setDoesNotThrow();
David Chisnalld3858d62011-03-25 11:57:33 +0000336
337 // Register an all-paths cleanup to release the lock.
John McCalld9bb7432011-07-27 21:50:02 +0000338 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup, syncExitFn, lock);
David Chisnalld3858d62011-03-25 11:57:33 +0000339
340 // Emit the body of the statement.
341 CGF.EmitStmt(S.getSynchBody());
David Chisnalld3858d62011-03-25 11:57:33 +0000342}
John McCalla729c622012-02-17 03:33:10 +0000343
344/// Compute the pointer-to-function type to which a message send
345/// should be casted in order to correctly call the given method
346/// with the given arguments.
347///
348/// \param method - may be null
349/// \param resultType - the result type to use if there's no method
James Dennett9426c6c2012-06-15 09:02:08 +0000350/// \param callArgs - the actual arguments, including implicit ones
John McCalla729c622012-02-17 03:33:10 +0000351CGObjCRuntime::MessageSendInfo
352CGObjCRuntime::getMessageSendInfo(const ObjCMethodDecl *method,
353 QualType resultType,
354 CallArgList &callArgs) {
355 // If there's a method, use information from that.
356 if (method) {
357 const CGFunctionInfo &signature =
358 CGM.getTypes().arrangeObjCMessageSendSignature(method, callArgs[0].Ty);
359
360 llvm::PointerType *signatureType =
361 CGM.getTypes().GetFunctionType(signature)->getPointerTo();
362
John McCallc56a8b32016-03-11 04:30:31 +0000363 const CGFunctionInfo &signatureForCall =
364 CGM.getTypes().arrangeCall(signature, callArgs);
John McCalla729c622012-02-17 03:33:10 +0000365
John McCallc56a8b32016-03-11 04:30:31 +0000366 return MessageSendInfo(signatureForCall, signatureType);
John McCalla729c622012-02-17 03:33:10 +0000367 }
368
369 // There's no method; just use a default CC.
370 const CGFunctionInfo &argsInfo =
John McCallc56a8b32016-03-11 04:30:31 +0000371 CGM.getTypes().arrangeUnprototypedObjCMessageSend(resultType, callArgs);
John McCalla729c622012-02-17 03:33:10 +0000372
373 // Derive the signature to call from that.
374 llvm::PointerType *signatureType =
375 CGM.getTypes().GetFunctionType(argsInfo)->getPointerTo();
376 return MessageSendInfo(argsInfo, signatureType);
377}