blob: 6932dd709d1628d5945ada9e06e23ef2cd22a115 [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"
17
18#include "CGRecordLayout.h"
19#include "CodeGenModule.h"
20#include "CodeGenFunction.h"
21#include "CGCleanup.h"
22
23#include "clang/AST/RecordLayout.h"
24#include "clang/AST/StmtObjC.h"
25
26#include "llvm/Support/CallSite.h"
27
28using namespace clang;
29using namespace CodeGen;
30
31static uint64_t LookupFieldBitOffset(CodeGen::CodeGenModule &CGM,
32 const ObjCInterfaceDecl *OID,
33 const ObjCImplementationDecl *ID,
34 const ObjCIvarDecl *Ivar) {
35 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
36
37 // FIXME: We should eliminate the need to have ObjCImplementationDecl passed
38 // in here; it should never be necessary because that should be the lexical
39 // decl context for the ivar.
40
41 // If we know have an implementation (and the ivar is in it) then
42 // look up in the implementation layout.
43 const ASTRecordLayout *RL;
Douglas Gregor0b144e12011-12-15 00:29:59 +000044 if (ID && declaresSameEntity(ID->getClassInterface(), Container))
David Chisnalld3858d62011-03-25 11:57:33 +000045 RL = &CGM.getContext().getASTObjCImplementationLayout(ID);
46 else
47 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
48
49 // Compute field index.
50 //
51 // FIXME: The index here is closely tied to how ASTContext::getObjCLayout is
52 // implemented. This should be fixed to get the information from the layout
53 // directly.
54 unsigned Index = 0;
Fariborz Jahanianb26d5782011-06-28 18:05:25 +000055
Jordy Rosea91768e2011-07-22 02:08:32 +000056 for (const ObjCIvarDecl *IVD = Container->all_declared_ivar_begin();
Fariborz Jahanianb26d5782011-06-28 18:05:25 +000057 IVD; IVD = IVD->getNextIvar()) {
58 if (Ivar == IVD)
David Chisnalld3858d62011-03-25 11:57:33 +000059 break;
60 ++Index;
61 }
David Chisnalld3858d62011-03-25 11:57:33 +000062 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
63
64 return RL->getFieldOffset(Index);
65}
66
Eli Friedman8cbca202012-11-06 22:15:52 +000067uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
68 const ObjCInterfaceDecl *OID,
69 const ObjCIvarDecl *Ivar) {
70 return LookupFieldBitOffset(CGM, OID, 0, Ivar) /
71 CGM.getContext().getCharWidth();
David Chisnalld3858d62011-03-25 11:57:33 +000072}
73
Eli Friedman8cbca202012-11-06 22:15:52 +000074uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
75 const ObjCImplementationDecl *OID,
76 const ObjCIvarDecl *Ivar) {
77 return LookupFieldBitOffset(CGM, OID->getClassInterface(), OID, Ivar) /
78 CGM.getContext().getCharWidth();
David Chisnalld3858d62011-03-25 11:57:33 +000079}
80
Eli Friedman85937482012-11-06 23:40:48 +000081unsigned CGObjCRuntime::ComputeBitfieldBitOffset(
82 CodeGen::CodeGenModule &CGM,
83 const ObjCInterfaceDecl *ID,
84 const ObjCIvarDecl *Ivar) {
85 return LookupFieldBitOffset(CGM, ID, ID->getImplementation(), Ivar);
86}
87
David Chisnalld3858d62011-03-25 11:57:33 +000088LValue CGObjCRuntime::EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF,
89 const ObjCInterfaceDecl *OID,
90 llvm::Value *BaseValue,
91 const ObjCIvarDecl *Ivar,
92 unsigned CVRQualifiers,
93 llvm::Value *Offset) {
94 // Compute (type*) ( (char *) BaseValue + Offset)
Chris Lattnerece04092012-02-07 00:39:47 +000095 llvm::Type *I8Ptr = CGF.Int8PtrTy;
David Chisnalld3858d62011-03-25 11:57:33 +000096 QualType IvarTy = Ivar->getType();
Chris Lattner2192fe52011-07-18 04:24:23 +000097 llvm::Type *LTy = CGF.CGM.getTypes().ConvertTypeForMem(IvarTy);
David Chisnalld3858d62011-03-25 11:57:33 +000098 llvm::Value *V = CGF.Builder.CreateBitCast(BaseValue, I8Ptr);
99 V = CGF.Builder.CreateInBoundsGEP(V, Offset, "add.ptr");
100 V = CGF.Builder.CreateBitCast(V, llvm::PointerType::getUnqual(LTy));
101
102 if (!Ivar->isBitField()) {
Eli Friedman3184a5e2011-12-19 23:03:09 +0000103 LValue LV = CGF.MakeNaturalAlignAddrLValue(V, IvarTy);
David Chisnalld3858d62011-03-25 11:57:33 +0000104 LV.getQuals().addCVRQualifiers(CVRQualifiers);
105 return LV;
106 }
107
108 // We need to compute an access strategy for this bit-field. We are given the
109 // offset to the first byte in the bit-field, the sub-byte offset is taken
110 // from the original layout. We reuse the normal bit-field access strategy by
111 // treating this as an access to a struct where the bit-field is in byte 0,
112 // and adjust the containing type size as appropriate.
113 //
114 // FIXME: Note that currently we make a very conservative estimate of the
115 // alignment of the bit-field, because (a) it is not clear what guarantees the
116 // runtime makes us, and (b) we don't have a way to specify that the struct is
117 // at an alignment plus offset.
118 //
119 // Note, there is a subtle invariant here: we can only call this routine on
120 // non-synthesized ivars but we may be called for synthesized ivars. However,
121 // a synthesized ivar can never be a bit-field, so this is safe.
122 const ASTRecordLayout &RL =
123 CGF.CGM.getContext().getASTObjCInterfaceLayout(OID);
124 uint64_t TypeSizeInBits = CGF.CGM.getContext().toBits(RL.getSize());
125 uint64_t FieldBitOffset = LookupFieldBitOffset(CGF.CGM, OID, 0, Ivar);
Ken Dyckabae3be2011-04-22 17:23:43 +0000126 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth();
Douglas Gregore8bbc122011-09-02 00:18:52 +0000127 uint64_t ContainingTypeAlign = CGF.CGM.getContext().getTargetInfo().getCharAlign();
David Chisnalld3858d62011-03-25 11:57:33 +0000128 uint64_t ContainingTypeSize = TypeSizeInBits - (FieldBitOffset - BitOffset);
Richard Smithcaf33902011-10-10 18:28:20 +0000129 uint64_t BitFieldSize = Ivar->getBitWidthValue(CGF.getContext());
Eli Friedmanc24e2fb2012-06-27 21:19:48 +0000130 CharUnits ContainingTypeAlignCharUnits =
131 CGF.CGM.getContext().toCharUnitsFromBits(ContainingTypeAlign);
David Chisnalld3858d62011-03-25 11:57:33 +0000132
133 // Allocate a new CGBitFieldInfo object to describe this access.
134 //
135 // FIXME: This is incredibly wasteful, these should be uniqued or part of some
136 // layout object. However, this is blocked on other cleanups to the
137 // Objective-C code, so for now we just live with allocating a bunch of these
138 // objects.
139 CGBitFieldInfo *Info = new (CGF.CGM.getContext()) CGBitFieldInfo(
140 CGBitFieldInfo::MakeInfo(CGF.CGM.getTypes(), Ivar, BitOffset, BitFieldSize,
141 ContainingTypeSize, ContainingTypeAlign));
142
143 return LValue::MakeBitfield(V, *Info,
Eli Friedmanc24e2fb2012-06-27 21:19:48 +0000144 IvarTy.withCVRQualifiers(CVRQualifiers),
145 ContainingTypeAlignCharUnits);
David Chisnalld3858d62011-03-25 11:57:33 +0000146}
147
148namespace {
149 struct CatchHandler {
150 const VarDecl *Variable;
151 const Stmt *Body;
152 llvm::BasicBlock *Block;
153 llvm::Value *TypeInfo;
154 };
155
156 struct CallObjCEndCatch : EHScopeStack::Cleanup {
157 CallObjCEndCatch(bool MightThrow, llvm::Value *Fn) :
158 MightThrow(MightThrow), Fn(Fn) {}
159 bool MightThrow;
160 llvm::Value *Fn;
161
John McCall30317fd2011-07-12 20:27:29 +0000162 void Emit(CodeGenFunction &CGF, Flags flags) {
David Chisnalld3858d62011-03-25 11:57:33 +0000163 if (!MightThrow) {
164 CGF.Builder.CreateCall(Fn)->setDoesNotThrow();
165 return;
166 }
167
Jay Foad5bd375a2011-07-15 08:37:34 +0000168 CGF.EmitCallOrInvoke(Fn);
David Chisnalld3858d62011-03-25 11:57:33 +0000169 }
170 };
171}
172
173
174void CGObjCRuntime::EmitTryCatchStmt(CodeGenFunction &CGF,
175 const ObjCAtTryStmt &S,
David Chisnall3fe89562011-05-23 22:33:28 +0000176 llvm::Constant *beginCatchFn,
177 llvm::Constant *endCatchFn,
178 llvm::Constant *exceptionRethrowFn) {
David Chisnalld3858d62011-03-25 11:57:33 +0000179 // Jump destination for falling out of catch bodies.
180 CodeGenFunction::JumpDest Cont;
181 if (S.getNumCatchStmts())
182 Cont = CGF.getJumpDestInCurrentScope("eh.cont");
183
184 CodeGenFunction::FinallyInfo FinallyInfo;
185 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt())
John McCall6b0feb72011-06-22 02:32:12 +0000186 FinallyInfo.enter(CGF, Finally->getFinallyBody(),
187 beginCatchFn, endCatchFn, exceptionRethrowFn);
David Chisnalld3858d62011-03-25 11:57:33 +0000188
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000189 SmallVector<CatchHandler, 8> Handlers;
David Chisnalld3858d62011-03-25 11:57:33 +0000190
191 // Enter the catch, if there is one.
192 if (S.getNumCatchStmts()) {
193 for (unsigned I = 0, N = S.getNumCatchStmts(); I != N; ++I) {
194 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I);
195 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
196
197 Handlers.push_back(CatchHandler());
198 CatchHandler &Handler = Handlers.back();
199 Handler.Variable = CatchDecl;
200 Handler.Body = CatchStmt->getCatchBody();
201 Handler.Block = CGF.createBasicBlock("catch");
202
203 // @catch(...) always matches.
204 if (!CatchDecl) {
205 Handler.TypeInfo = 0; // catch-all
206 // Don't consider any other catches.
207 break;
208 }
209
210 Handler.TypeInfo = GetEHType(CatchDecl->getType());
211 }
212
213 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
214 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
215 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
216 }
217
218 // 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);
Bill Wendling79a70e42011-09-15 18:57:19 +0000233 llvm::Value *RawExn = CGF.getExceptionFromSlot();
David Chisnalld3858d62011-03-25 11:57:33 +0000234
235 // Enter the catch.
236 llvm::Value *Exn = RawExn;
237 if (beginCatchFn) {
238 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted");
239 cast<llvm::CallInst>(Exn)->setDoesNotThrow();
240 }
241
Eric Christopher7ec8ec82011-10-19 00:44:01 +0000242 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
John McCall3f6e7452011-05-12 01:00:15 +0000243
David Chisnalld3858d62011-03-25 11:57:33 +0000244 if (endCatchFn) {
245 // Add a cleanup to leave the catch.
246 bool EndCatchMightThrow = (Handler.Variable == 0);
247
248 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup,
249 EndCatchMightThrow,
250 endCatchFn);
251 }
252
253 // Bind the catch parameter if it exists.
254 if (const VarDecl *CatchParam = Handler.Variable) {
Chris Lattner2192fe52011-07-18 04:24:23 +0000255 llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType());
David Chisnalld3858d62011-03-25 11:57:33 +0000256 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
257
258 CGF.EmitAutoVarDecl(*CatchParam);
John McCall97017312012-01-17 20:16:56 +0000259
260 llvm::Value *CatchParamAddr = CGF.GetAddrOfLocalVar(CatchParam);
261
262 switch (CatchParam->getType().getQualifiers().getObjCLifetime()) {
263 case Qualifiers::OCL_Strong:
264 CastExn = CGF.EmitARCRetainNonBlock(CastExn);
265 // fallthrough
266
267 case Qualifiers::OCL_None:
268 case Qualifiers::OCL_ExplicitNone:
269 case Qualifiers::OCL_Autoreleasing:
270 CGF.Builder.CreateStore(CastExn, CatchParamAddr);
271 break;
272
273 case Qualifiers::OCL_Weak:
274 CGF.EmitARCInitWeak(CatchParamAddr, CastExn);
275 break;
276 }
David Chisnalld3858d62011-03-25 11:57:33 +0000277 }
278
279 CGF.ObjCEHValueStack.push_back(Exn);
280 CGF.EmitStmt(Handler.Body);
281 CGF.ObjCEHValueStack.pop_back();
282
John McCall3f6e7452011-05-12 01:00:15 +0000283 // Leave any cleanups associated with the catch.
284 cleanups.ForceCleanup();
David Chisnalld3858d62011-03-25 11:57:33 +0000285
286 CGF.EmitBranchThroughCleanup(Cont);
287 }
288
289 // Go back to the try-statement fallthrough.
290 CGF.Builder.restoreIP(SavedIP);
291
John McCall6b0feb72011-06-22 02:32:12 +0000292 // Pop out of the finally.
David Chisnalld3858d62011-03-25 11:57:33 +0000293 if (S.getFinallyStmt())
John McCall6b0feb72011-06-22 02:32:12 +0000294 FinallyInfo.exit(CGF);
David Chisnalld3858d62011-03-25 11:57:33 +0000295
296 if (Cont.isValid())
297 CGF.EmitBlock(Cont.getBlock());
298}
299
300namespace {
301 struct CallSyncExit : EHScopeStack::Cleanup {
302 llvm::Value *SyncExitFn;
303 llvm::Value *SyncArg;
304 CallSyncExit(llvm::Value *SyncExitFn, llvm::Value *SyncArg)
305 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {}
306
John McCall30317fd2011-07-12 20:27:29 +0000307 void Emit(CodeGenFunction &CGF, Flags flags) {
David Chisnalld3858d62011-03-25 11:57:33 +0000308 CGF.Builder.CreateCall(SyncExitFn, SyncArg)->setDoesNotThrow();
309 }
310 };
311}
312
313void CGObjCRuntime::EmitAtSynchronizedStmt(CodeGenFunction &CGF,
314 const ObjCAtSynchronizedStmt &S,
315 llvm::Function *syncEnterFn,
316 llvm::Function *syncExitFn) {
John McCalld9bb7432011-07-27 21:50:02 +0000317 CodeGenFunction::RunCleanupsScope cleanups(CGF);
318
319 // Evaluate the lock operand. This is guaranteed to dominate the
320 // ARC release and lock-release cleanups.
321 const Expr *lockExpr = S.getSynchExpr();
322 llvm::Value *lock;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000323 if (CGF.getLangOpts().ObjCAutoRefCount) {
John McCalld9bb7432011-07-27 21:50:02 +0000324 lock = CGF.EmitARCRetainScalarExpr(lockExpr);
325 lock = CGF.EmitObjCConsumeObject(lockExpr->getType(), lock);
326 } else {
327 lock = CGF.EmitScalarExpr(lockExpr);
328 }
329 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
David Chisnalld3858d62011-03-25 11:57:33 +0000330
331 // Acquire the lock.
John McCalld9bb7432011-07-27 21:50:02 +0000332 CGF.Builder.CreateCall(syncEnterFn, lock)->setDoesNotThrow();
David Chisnalld3858d62011-03-25 11:57:33 +0000333
334 // Register an all-paths cleanup to release the lock.
John McCalld9bb7432011-07-27 21:50:02 +0000335 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup, syncExitFn, lock);
David Chisnalld3858d62011-03-25 11:57:33 +0000336
337 // Emit the body of the statement.
338 CGF.EmitStmt(S.getSynchBody());
David Chisnalld3858d62011-03-25 11:57:33 +0000339}
John McCalla729c622012-02-17 03:33:10 +0000340
341/// Compute the pointer-to-function type to which a message send
342/// should be casted in order to correctly call the given method
343/// with the given arguments.
344///
345/// \param method - may be null
346/// \param resultType - the result type to use if there's no method
James Dennett9426c6c2012-06-15 09:02:08 +0000347/// \param callArgs - the actual arguments, including implicit ones
John McCalla729c622012-02-17 03:33:10 +0000348CGObjCRuntime::MessageSendInfo
349CGObjCRuntime::getMessageSendInfo(const ObjCMethodDecl *method,
350 QualType resultType,
351 CallArgList &callArgs) {
352 // If there's a method, use information from that.
353 if (method) {
354 const CGFunctionInfo &signature =
355 CGM.getTypes().arrangeObjCMessageSendSignature(method, callArgs[0].Ty);
356
357 llvm::PointerType *signatureType =
358 CGM.getTypes().GetFunctionType(signature)->getPointerTo();
359
360 // If that's not variadic, there's no need to recompute the ABI
361 // arrangement.
362 if (!signature.isVariadic())
363 return MessageSendInfo(signature, signatureType);
364
365 // Otherwise, there is.
366 FunctionType::ExtInfo einfo = signature.getExtInfo();
367 const CGFunctionInfo &argsInfo =
John McCall8dda7b22012-07-07 06:41:13 +0000368 CGM.getTypes().arrangeFreeFunctionCall(resultType, callArgs, einfo,
369 signature.getRequiredArgs());
John McCalla729c622012-02-17 03:33:10 +0000370
371 return MessageSendInfo(argsInfo, signatureType);
372 }
373
374 // There's no method; just use a default CC.
375 const CGFunctionInfo &argsInfo =
John McCall8dda7b22012-07-07 06:41:13 +0000376 CGM.getTypes().arrangeFreeFunctionCall(resultType, callArgs,
377 FunctionType::ExtInfo(),
378 RequiredArgs::All);
John McCalla729c622012-02-17 03:33:10 +0000379
380 // Derive the signature to call from that.
381 llvm::PointerType *signatureType =
382 CGM.getTypes().GetFunctionType(argsInfo)->getPointerTo();
383 return MessageSendInfo(argsInfo, signatureType);
384}