blob: 9aa68376bcd017a2508314065ffd75c486d79830 [file] [log] [blame]
David Chisnall9735ca62011-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 Gregor60ef3082011-12-15 00:29:59 +000044 if (ID && declaresSameEntity(ID->getClassInterface(), Container))
David Chisnall9735ca62011-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 Jahanianbf9eb882011-06-28 18:05:25 +000055
Jordy Rosedb8264e2011-07-22 02:08:32 +000056 for (const ObjCIvarDecl *IVD = Container->all_declared_ivar_begin();
Fariborz Jahanianbf9eb882011-06-28 18:05:25 +000057 IVD; IVD = IVD->getNextIvar()) {
58 if (Ivar == IVD)
David Chisnall9735ca62011-03-25 11:57:33 +000059 break;
60 ++Index;
61 }
David Chisnall9735ca62011-03-25 11:57:33 +000062 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
63
64 return RL->getFieldOffset(Index);
65}
66
67uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
68 const ObjCInterfaceDecl *OID,
69 const ObjCIvarDecl *Ivar) {
Ken Dyck0afe9672011-04-14 01:00:39 +000070 return LookupFieldBitOffset(CGM, OID, 0, Ivar) /
71 CGM.getContext().getCharWidth();
David Chisnall9735ca62011-03-25 11:57:33 +000072}
73
74uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
75 const ObjCImplementationDecl *OID,
76 const ObjCIvarDecl *Ivar) {
Ken Dyck0afe9672011-04-14 01:00:39 +000077 return LookupFieldBitOffset(CGM, OID->getClassInterface(), OID, Ivar) /
78 CGM.getContext().getCharWidth();
David Chisnall9735ca62011-03-25 11:57:33 +000079}
80
81LValue CGObjCRuntime::EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF,
82 const ObjCInterfaceDecl *OID,
83 llvm::Value *BaseValue,
84 const ObjCIvarDecl *Ivar,
85 unsigned CVRQualifiers,
86 llvm::Value *Offset) {
87 // Compute (type*) ( (char *) BaseValue + Offset)
Chris Lattner8b418682012-02-07 00:39:47 +000088 llvm::Type *I8Ptr = CGF.Int8PtrTy;
David Chisnall9735ca62011-03-25 11:57:33 +000089 QualType IvarTy = Ivar->getType();
Chris Lattner2acc6e32011-07-18 04:24:23 +000090 llvm::Type *LTy = CGF.CGM.getTypes().ConvertTypeForMem(IvarTy);
David Chisnall9735ca62011-03-25 11:57:33 +000091 llvm::Value *V = CGF.Builder.CreateBitCast(BaseValue, I8Ptr);
92 V = CGF.Builder.CreateInBoundsGEP(V, Offset, "add.ptr");
93 V = CGF.Builder.CreateBitCast(V, llvm::PointerType::getUnqual(LTy));
94
95 if (!Ivar->isBitField()) {
Eli Friedmand71f4422011-12-19 23:03:09 +000096 LValue LV = CGF.MakeNaturalAlignAddrLValue(V, IvarTy);
David Chisnall9735ca62011-03-25 11:57:33 +000097 LV.getQuals().addCVRQualifiers(CVRQualifiers);
98 return LV;
99 }
100
101 // We need to compute an access strategy for this bit-field. We are given the
102 // offset to the first byte in the bit-field, the sub-byte offset is taken
103 // from the original layout. We reuse the normal bit-field access strategy by
104 // treating this as an access to a struct where the bit-field is in byte 0,
105 // and adjust the containing type size as appropriate.
106 //
107 // FIXME: Note that currently we make a very conservative estimate of the
108 // alignment of the bit-field, because (a) it is not clear what guarantees the
109 // runtime makes us, and (b) we don't have a way to specify that the struct is
110 // at an alignment plus offset.
111 //
112 // Note, there is a subtle invariant here: we can only call this routine on
113 // non-synthesized ivars but we may be called for synthesized ivars. However,
114 // a synthesized ivar can never be a bit-field, so this is safe.
115 const ASTRecordLayout &RL =
116 CGF.CGM.getContext().getASTObjCInterfaceLayout(OID);
117 uint64_t TypeSizeInBits = CGF.CGM.getContext().toBits(RL.getSize());
118 uint64_t FieldBitOffset = LookupFieldBitOffset(CGF.CGM, OID, 0, Ivar);
Ken Dyck18052cd2011-04-22 17:23:43 +0000119 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000120 uint64_t ContainingTypeAlign = CGF.CGM.getContext().getTargetInfo().getCharAlign();
David Chisnall9735ca62011-03-25 11:57:33 +0000121 uint64_t ContainingTypeSize = TypeSizeInBits - (FieldBitOffset - BitOffset);
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000122 uint64_t BitFieldSize = Ivar->getBitWidthValue(CGF.getContext());
Eli Friedmanf4bcfa12012-06-27 21:19:48 +0000123 CharUnits ContainingTypeAlignCharUnits =
124 CGF.CGM.getContext().toCharUnitsFromBits(ContainingTypeAlign);
David Chisnall9735ca62011-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,
134 ContainingTypeSize, ContainingTypeAlign));
135
136 return LValue::MakeBitfield(V, *Info,
Eli Friedmanf4bcfa12012-06-27 21:19:48 +0000137 IvarTy.withCVRQualifiers(CVRQualifiers),
138 ContainingTypeAlignCharUnits);
David Chisnall9735ca62011-03-25 11:57:33 +0000139}
140
141namespace {
142 struct CatchHandler {
143 const VarDecl *Variable;
144 const Stmt *Body;
145 llvm::BasicBlock *Block;
146 llvm::Value *TypeInfo;
147 };
148
149 struct CallObjCEndCatch : EHScopeStack::Cleanup {
150 CallObjCEndCatch(bool MightThrow, llvm::Value *Fn) :
151 MightThrow(MightThrow), Fn(Fn) {}
152 bool MightThrow;
153 llvm::Value *Fn;
154
John McCallad346f42011-07-12 20:27:29 +0000155 void Emit(CodeGenFunction &CGF, Flags flags) {
David Chisnall9735ca62011-03-25 11:57:33 +0000156 if (!MightThrow) {
157 CGF.Builder.CreateCall(Fn)->setDoesNotThrow();
158 return;
159 }
160
Jay Foad4c7d9f12011-07-15 08:37:34 +0000161 CGF.EmitCallOrInvoke(Fn);
David Chisnall9735ca62011-03-25 11:57:33 +0000162 }
163 };
164}
165
166
167void CGObjCRuntime::EmitTryCatchStmt(CodeGenFunction &CGF,
168 const ObjCAtTryStmt &S,
David Chisnall789ecde2011-05-23 22:33:28 +0000169 llvm::Constant *beginCatchFn,
170 llvm::Constant *endCatchFn,
171 llvm::Constant *exceptionRethrowFn) {
David Chisnall9735ca62011-03-25 11:57:33 +0000172 // Jump destination for falling out of catch bodies.
173 CodeGenFunction::JumpDest Cont;
174 if (S.getNumCatchStmts())
175 Cont = CGF.getJumpDestInCurrentScope("eh.cont");
176
177 CodeGenFunction::FinallyInfo FinallyInfo;
178 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt())
John McCalld768e9d2011-06-22 02:32:12 +0000179 FinallyInfo.enter(CGF, Finally->getFinallyBody(),
180 beginCatchFn, endCatchFn, exceptionRethrowFn);
David Chisnall9735ca62011-03-25 11:57:33 +0000181
Chris Lattner5f9e2722011-07-23 10:55:15 +0000182 SmallVector<CatchHandler, 8> Handlers;
David Chisnall9735ca62011-03-25 11:57:33 +0000183
184 // Enter the catch, if there is one.
185 if (S.getNumCatchStmts()) {
186 for (unsigned I = 0, N = S.getNumCatchStmts(); I != N; ++I) {
187 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I);
188 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
189
190 Handlers.push_back(CatchHandler());
191 CatchHandler &Handler = Handlers.back();
192 Handler.Variable = CatchDecl;
193 Handler.Body = CatchStmt->getCatchBody();
194 Handler.Block = CGF.createBasicBlock("catch");
195
196 // @catch(...) always matches.
197 if (!CatchDecl) {
198 Handler.TypeInfo = 0; // catch-all
199 // Don't consider any other catches.
200 break;
201 }
202
203 Handler.TypeInfo = GetEHType(CatchDecl->getType());
204 }
205
206 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
207 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
208 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
209 }
210
211 // Emit the try body.
212 CGF.EmitStmt(S.getTryBody());
213
214 // Leave the try.
215 if (S.getNumCatchStmts())
John McCall777d6e52011-08-11 02:22:43 +0000216 CGF.popCatchScope();
David Chisnall9735ca62011-03-25 11:57:33 +0000217
218 // Remember where we were.
219 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
220
221 // Emit the handlers.
222 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
223 CatchHandler &Handler = Handlers[I];
224
225 CGF.EmitBlock(Handler.Block);
Bill Wendlingae270592011-09-15 18:57:19 +0000226 llvm::Value *RawExn = CGF.getExceptionFromSlot();
David Chisnall9735ca62011-03-25 11:57:33 +0000227
228 // Enter the catch.
229 llvm::Value *Exn = RawExn;
230 if (beginCatchFn) {
231 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted");
232 cast<llvm::CallInst>(Exn)->setDoesNotThrow();
233 }
234
Eric Christopherb9c8c422011-10-19 00:44:01 +0000235 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
John McCallfe3e3bd2011-05-12 01:00:15 +0000236
David Chisnall9735ca62011-03-25 11:57:33 +0000237 if (endCatchFn) {
238 // Add a cleanup to leave the catch.
239 bool EndCatchMightThrow = (Handler.Variable == 0);
240
241 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup,
242 EndCatchMightThrow,
243 endCatchFn);
244 }
245
246 // Bind the catch parameter if it exists.
247 if (const VarDecl *CatchParam = Handler.Variable) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000248 llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType());
David Chisnall9735ca62011-03-25 11:57:33 +0000249 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
250
251 CGF.EmitAutoVarDecl(*CatchParam);
John McCallb29b12d2012-01-17 20:16:56 +0000252
253 llvm::Value *CatchParamAddr = CGF.GetAddrOfLocalVar(CatchParam);
254
255 switch (CatchParam->getType().getQualifiers().getObjCLifetime()) {
256 case Qualifiers::OCL_Strong:
257 CastExn = CGF.EmitARCRetainNonBlock(CastExn);
258 // fallthrough
259
260 case Qualifiers::OCL_None:
261 case Qualifiers::OCL_ExplicitNone:
262 case Qualifiers::OCL_Autoreleasing:
263 CGF.Builder.CreateStore(CastExn, CatchParamAddr);
264 break;
265
266 case Qualifiers::OCL_Weak:
267 CGF.EmitARCInitWeak(CatchParamAddr, CastExn);
268 break;
269 }
David Chisnall9735ca62011-03-25 11:57:33 +0000270 }
271
272 CGF.ObjCEHValueStack.push_back(Exn);
273 CGF.EmitStmt(Handler.Body);
274 CGF.ObjCEHValueStack.pop_back();
275
John McCallfe3e3bd2011-05-12 01:00:15 +0000276 // Leave any cleanups associated with the catch.
277 cleanups.ForceCleanup();
David Chisnall9735ca62011-03-25 11:57:33 +0000278
279 CGF.EmitBranchThroughCleanup(Cont);
280 }
281
282 // Go back to the try-statement fallthrough.
283 CGF.Builder.restoreIP(SavedIP);
284
John McCalld768e9d2011-06-22 02:32:12 +0000285 // Pop out of the finally.
David Chisnall9735ca62011-03-25 11:57:33 +0000286 if (S.getFinallyStmt())
John McCalld768e9d2011-06-22 02:32:12 +0000287 FinallyInfo.exit(CGF);
David Chisnall9735ca62011-03-25 11:57:33 +0000288
289 if (Cont.isValid())
290 CGF.EmitBlock(Cont.getBlock());
291}
292
293namespace {
294 struct CallSyncExit : EHScopeStack::Cleanup {
295 llvm::Value *SyncExitFn;
296 llvm::Value *SyncArg;
297 CallSyncExit(llvm::Value *SyncExitFn, llvm::Value *SyncArg)
298 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {}
299
John McCallad346f42011-07-12 20:27:29 +0000300 void Emit(CodeGenFunction &CGF, Flags flags) {
David Chisnall9735ca62011-03-25 11:57:33 +0000301 CGF.Builder.CreateCall(SyncExitFn, SyncArg)->setDoesNotThrow();
302 }
303 };
304}
305
306void CGObjCRuntime::EmitAtSynchronizedStmt(CodeGenFunction &CGF,
307 const ObjCAtSynchronizedStmt &S,
308 llvm::Function *syncEnterFn,
309 llvm::Function *syncExitFn) {
John McCall07524032011-07-27 21:50:02 +0000310 CodeGenFunction::RunCleanupsScope cleanups(CGF);
311
312 // Evaluate the lock operand. This is guaranteed to dominate the
313 // ARC release and lock-release cleanups.
314 const Expr *lockExpr = S.getSynchExpr();
315 llvm::Value *lock;
David Blaikie4e4d0842012-03-11 07:00:24 +0000316 if (CGF.getLangOpts().ObjCAutoRefCount) {
John McCall07524032011-07-27 21:50:02 +0000317 lock = CGF.EmitARCRetainScalarExpr(lockExpr);
318 lock = CGF.EmitObjCConsumeObject(lockExpr->getType(), lock);
319 } else {
320 lock = CGF.EmitScalarExpr(lockExpr);
321 }
322 lock = CGF.Builder.CreateBitCast(lock, CGF.VoidPtrTy);
David Chisnall9735ca62011-03-25 11:57:33 +0000323
324 // Acquire the lock.
John McCall07524032011-07-27 21:50:02 +0000325 CGF.Builder.CreateCall(syncEnterFn, lock)->setDoesNotThrow();
David Chisnall9735ca62011-03-25 11:57:33 +0000326
327 // Register an all-paths cleanup to release the lock.
John McCall07524032011-07-27 21:50:02 +0000328 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup, syncExitFn, lock);
David Chisnall9735ca62011-03-25 11:57:33 +0000329
330 // Emit the body of the statement.
331 CGF.EmitStmt(S.getSynchBody());
David Chisnall9735ca62011-03-25 11:57:33 +0000332}
John McCallde5d3c72012-02-17 03:33:10 +0000333
334/// Compute the pointer-to-function type to which a message send
335/// should be casted in order to correctly call the given method
336/// with the given arguments.
337///
338/// \param method - may be null
339/// \param resultType - the result type to use if there's no method
James Dennettc7810fe2012-06-15 09:02:08 +0000340/// \param callArgs - the actual arguments, including implicit ones
John McCallde5d3c72012-02-17 03:33:10 +0000341CGObjCRuntime::MessageSendInfo
342CGObjCRuntime::getMessageSendInfo(const ObjCMethodDecl *method,
343 QualType resultType,
344 CallArgList &callArgs) {
345 // If there's a method, use information from that.
346 if (method) {
347 const CGFunctionInfo &signature =
348 CGM.getTypes().arrangeObjCMessageSendSignature(method, callArgs[0].Ty);
349
350 llvm::PointerType *signatureType =
351 CGM.getTypes().GetFunctionType(signature)->getPointerTo();
352
353 // If that's not variadic, there's no need to recompute the ABI
354 // arrangement.
355 if (!signature.isVariadic())
356 return MessageSendInfo(signature, signatureType);
357
358 // Otherwise, there is.
359 FunctionType::ExtInfo einfo = signature.getExtInfo();
360 const CGFunctionInfo &argsInfo =
John McCall0f3d0972012-07-07 06:41:13 +0000361 CGM.getTypes().arrangeFreeFunctionCall(resultType, callArgs, einfo,
362 signature.getRequiredArgs());
John McCallde5d3c72012-02-17 03:33:10 +0000363
364 return MessageSendInfo(argsInfo, signatureType);
365 }
366
367 // There's no method; just use a default CC.
368 const CGFunctionInfo &argsInfo =
John McCall0f3d0972012-07-07 06:41:13 +0000369 CGM.getTypes().arrangeFreeFunctionCall(resultType, callArgs,
370 FunctionType::ExtInfo(),
371 RequiredArgs::All);
John McCallde5d3c72012-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}