blob: 687b6343db31a52a1eb8fcfe8df61c77a8b767fa [file] [log] [blame]
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001//===------- CGObjCMac.cpp - Interface to Apple Objective-C Runtime -------===//
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 provides Objective-C code generation targetting the Apple runtime.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CGObjCRuntime.h"
Daniel Dunbarf77ac862008-08-11 21:35:06 +000015
16#include "CodeGenModule.h"
Daniel Dunbarb7ec2462008-08-16 03:19:19 +000017#include "CodeGenFunction.h"
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000019#include "clang/AST/Decl.h"
Daniel Dunbar6efc0c52008-08-13 03:21:16 +000020#include "clang/AST/DeclObjC.h"
Daniel Dunbar2bebbf02009-05-03 10:46:44 +000021#include "clang/AST/RecordLayout.h"
Chris Lattner16f00492009-04-26 01:32:48 +000022#include "clang/AST/StmtObjC.h"
Daniel Dunbarf77ac862008-08-11 21:35:06 +000023#include "clang/Basic/LangOptions.h"
24
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +000025#include "llvm/Intrinsics.h"
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000026#include "llvm/Module.h"
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +000027#include "llvm/ADT/DenseSet.h"
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000028#include "llvm/Target/TargetData.h"
Daniel Dunbarb7ec2462008-08-16 03:19:19 +000029#include <sstream>
Daniel Dunbarc17a4d32008-08-11 02:45:11 +000030
31using namespace clang;
Daniel Dunbar46f45b92008-09-09 01:06:48 +000032using namespace CodeGen;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +000033
Daniel Dunbar97776872009-04-22 07:32:20 +000034// Common CGObjCRuntime functions, these don't belong here, but they
35// don't belong in CGObjCRuntime either so we will live with it for
36// now.
37
Daniel Dunbar532d4da2009-05-03 13:15:50 +000038/// FindIvarInterface - Find the interface containing the ivar.
Daniel Dunbara2435782009-04-22 12:00:04 +000039///
Daniel Dunbar532d4da2009-05-03 13:15:50 +000040/// FIXME: We shouldn't need to do this, the containing context should
41/// be fixed.
42static const ObjCInterfaceDecl *FindIvarInterface(ASTContext &Context,
43 const ObjCInterfaceDecl *OID,
44 const ObjCIvarDecl *OIVD,
45 unsigned &Index) {
Daniel Dunbar532d4da2009-05-03 13:15:50 +000046 // FIXME: The index here is closely tied to how
47 // ASTContext::getObjCLayout is implemented. This should be fixed to
48 // get the information from the layout directly.
49 Index = 0;
50 for (ObjCInterfaceDecl::ivar_iterator IVI = OID->ivar_begin(),
51 IVE = OID->ivar_end(); IVI != IVE; ++IVI, ++Index)
52 if (OIVD == *IVI)
53 return OID;
54
55 // Also look in synthesized ivars.
Fariborz Jahanian98200742009-05-12 18:14:29 +000056 llvm::SmallVector<ObjCIvarDecl*, 16> Ivars;
57 Context.CollectSynthesizedIvars(OID, Ivars);
58 for (unsigned k = 0, e = Ivars.size(); k != e; ++k) {
59 if (OIVD == Ivars[k])
60 return OID;
61 ++Index;
Daniel Dunbara80a0f62009-04-22 17:43:55 +000062 }
Fariborz Jahanian98200742009-05-12 18:14:29 +000063
Daniel Dunbar532d4da2009-05-03 13:15:50 +000064 // Otherwise check in the super class.
Daniel Dunbara81419d2009-05-05 00:36:57 +000065 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())
Daniel Dunbar532d4da2009-05-03 13:15:50 +000066 return FindIvarInterface(Context, Super, OIVD, Index);
67
68 return 0;
Daniel Dunbara2435782009-04-22 12:00:04 +000069}
70
Daniel Dunbar1d7e5392009-05-03 08:55:17 +000071static uint64_t LookupFieldBitOffset(CodeGen::CodeGenModule &CGM,
72 const ObjCInterfaceDecl *OID,
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +000073 const ObjCImplementationDecl *ID,
Daniel Dunbar1d7e5392009-05-03 08:55:17 +000074 const ObjCIvarDecl *Ivar) {
Daniel Dunbar532d4da2009-05-03 13:15:50 +000075 unsigned Index;
76 const ObjCInterfaceDecl *Container =
77 FindIvarInterface(CGM.getContext(), OID, Ivar, Index);
78 assert(Container && "Unable to find ivar container");
79
80 // If we know have an implementation (and the ivar is in it) then
81 // look up in the implementation layout.
82 const ASTRecordLayout *RL;
83 if (ID && ID->getClassInterface() == Container)
84 RL = &CGM.getContext().getASTObjCImplementationLayout(ID);
85 else
86 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
87 return RL->getFieldOffset(Index);
Daniel Dunbar1d7e5392009-05-03 08:55:17 +000088}
89
90uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
91 const ObjCInterfaceDecl *OID,
92 const ObjCIvarDecl *Ivar) {
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +000093 return LookupFieldBitOffset(CGM, OID, 0, Ivar) / 8;
94}
95
96uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
97 const ObjCImplementationDecl *OID,
98 const ObjCIvarDecl *Ivar) {
99 return LookupFieldBitOffset(CGM, OID->getClassInterface(), OID, Ivar) / 8;
Daniel Dunbar97776872009-04-22 07:32:20 +0000100}
101
102LValue CGObjCRuntime::EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF,
103 const ObjCInterfaceDecl *OID,
104 llvm::Value *BaseValue,
105 const ObjCIvarDecl *Ivar,
106 unsigned CVRQualifiers,
107 llvm::Value *Offset) {
Daniel Dunbar1d7e5392009-05-03 08:55:17 +0000108 // Compute (type*) ( (char *) BaseValue + Offset)
Daniel Dunbar97776872009-04-22 07:32:20 +0000109 llvm::Type *I8Ptr = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Daniel Dunbar1d7e5392009-05-03 08:55:17 +0000110 QualType IvarTy = Ivar->getType();
111 const llvm::Type *LTy = CGF.CGM.getTypes().ConvertTypeForMem(IvarTy);
Daniel Dunbar97776872009-04-22 07:32:20 +0000112 llvm::Value *V = CGF.Builder.CreateBitCast(BaseValue, I8Ptr);
Daniel Dunbar97776872009-04-22 07:32:20 +0000113 V = CGF.Builder.CreateGEP(V, Offset, "add.ptr");
Daniel Dunbar1d7e5392009-05-03 08:55:17 +0000114 V = CGF.Builder.CreateBitCast(V, llvm::PointerType::getUnqual(LTy));
Daniel Dunbar97776872009-04-22 07:32:20 +0000115
116 if (Ivar->isBitField()) {
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +0000117 // We need to compute the bit offset for the bit-field, the offset
118 // is to the byte. Note, there is a subtle invariant here: we can
119 // only call this routine on non-sythesized ivars but we may be
120 // called for synthesized ivars. However, a synthesized ivar can
121 // never be a bit-field so this is safe.
122 uint64_t BitOffset = LookupFieldBitOffset(CGF.CGM, OID, 0, Ivar) % 8;
123
Daniel Dunbar1d7e5392009-05-03 08:55:17 +0000124 uint64_t BitFieldSize =
125 Ivar->getBitWidth()->EvaluateAsInt(CGF.getContext()).getZExtValue();
126 return LValue::MakeBitfield(V, BitOffset, BitFieldSize,
Daniel Dunbare38df862009-05-03 07:52:00 +0000127 IvarTy->isSignedIntegerType(),
128 IvarTy.getCVRQualifiers()|CVRQualifiers);
Daniel Dunbar97776872009-04-22 07:32:20 +0000129 }
130
Daniel Dunbar1d7e5392009-05-03 08:55:17 +0000131 LValue LV = LValue::MakeAddr(V, IvarTy.getCVRQualifiers()|CVRQualifiers,
132 CGF.CGM.getContext().getObjCGCAttrKind(IvarTy));
Daniel Dunbar97776872009-04-22 07:32:20 +0000133 LValue::SetObjCIvar(LV, true);
134 return LV;
135}
136
137///
138
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000139namespace {
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000140
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000141 typedef std::vector<llvm::Constant*> ConstantVector;
142
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000143 // FIXME: We should find a nicer way to make the labels for
144 // metadata, string concatenation is lame.
145
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000146class ObjCCommonTypesHelper {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000147private:
148 llvm::Constant *getMessageSendFn() const {
149 // id objc_msgSend (id, SEL, ...)
150 std::vector<const llvm::Type*> Params;
151 Params.push_back(ObjectPtrTy);
152 Params.push_back(SelectorPtrTy);
153 return
154 CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
155 Params, true),
156 "objc_msgSend");
157 }
158
159 llvm::Constant *getMessageSendStretFn() const {
160 // id objc_msgSend_stret (id, SEL, ...)
161 std::vector<const llvm::Type*> Params;
162 Params.push_back(ObjectPtrTy);
163 Params.push_back(SelectorPtrTy);
164 return
165 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
166 Params, true),
167 "objc_msgSend_stret");
168
169 }
170
171 llvm::Constant *getMessageSendFpretFn() const {
172 // FIXME: This should be long double on x86_64?
173 // [double | long double] objc_msgSend_fpret(id self, SEL op, ...)
174 std::vector<const llvm::Type*> Params;
175 Params.push_back(ObjectPtrTy);
176 Params.push_back(SelectorPtrTy);
177 return
178 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::DoubleTy,
179 Params,
180 true),
181 "objc_msgSend_fpret");
182
183 }
184
185 llvm::Constant *getMessageSendSuperFn() const {
186 // id objc_msgSendSuper(struct objc_super *super, SEL op, ...)
187 const char *SuperName = "objc_msgSendSuper";
188 std::vector<const llvm::Type*> Params;
189 Params.push_back(SuperPtrTy);
190 Params.push_back(SelectorPtrTy);
191 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
192 Params, true),
193 SuperName);
194 }
195
196 llvm::Constant *getMessageSendSuperFn2() const {
197 // id objc_msgSendSuper2(struct objc_super *super, SEL op, ...)
198 const char *SuperName = "objc_msgSendSuper2";
199 std::vector<const llvm::Type*> Params;
200 Params.push_back(SuperPtrTy);
201 Params.push_back(SelectorPtrTy);
202 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
203 Params, true),
204 SuperName);
205 }
206
207 llvm::Constant *getMessageSendSuperStretFn() const {
208 // void objc_msgSendSuper_stret(void * stretAddr, struct objc_super *super,
209 // SEL op, ...)
210 std::vector<const llvm::Type*> Params;
211 Params.push_back(Int8PtrTy);
212 Params.push_back(SuperPtrTy);
213 Params.push_back(SelectorPtrTy);
214 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
215 Params, true),
216 "objc_msgSendSuper_stret");
217 }
218
219 llvm::Constant *getMessageSendSuperStretFn2() const {
220 // void objc_msgSendSuper2_stret(void * stretAddr, struct objc_super *super,
221 // SEL op, ...)
222 std::vector<const llvm::Type*> Params;
223 Params.push_back(Int8PtrTy);
224 Params.push_back(SuperPtrTy);
225 Params.push_back(SelectorPtrTy);
226 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
227 Params, true),
228 "objc_msgSendSuper2_stret");
229 }
230
231 llvm::Constant *getMessageSendSuperFpretFn() const {
232 // There is no objc_msgSendSuper_fpret? How can that work?
233 return getMessageSendSuperFn();
234 }
235
236 llvm::Constant *getMessageSendSuperFpretFn2() const {
237 // There is no objc_msgSendSuper_fpret? How can that work?
238 return getMessageSendSuperFn2();
239 }
240
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000241protected:
242 CodeGen::CodeGenModule &CGM;
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000243
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000244public:
Fariborz Jahanian0a855d02009-03-23 19:10:40 +0000245 const llvm::Type *ShortTy, *IntTy, *LongTy, *LongLongTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000246 const llvm::Type *Int8PtrTy;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000247
Daniel Dunbar2bedbf82008-08-12 05:28:47 +0000248 /// ObjectPtrTy - LLVM type for object handles (typeof(id))
249 const llvm::Type *ObjectPtrTy;
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000250
251 /// PtrObjectPtrTy - LLVM type for id *
252 const llvm::Type *PtrObjectPtrTy;
253
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000254 /// SelectorPtrTy - LLVM type for selector handles (typeof(SEL))
Daniel Dunbar2bedbf82008-08-12 05:28:47 +0000255 const llvm::Type *SelectorPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000256 /// ProtocolPtrTy - LLVM type for external protocol handles
257 /// (typeof(Protocol))
258 const llvm::Type *ExternalProtocolPtrTy;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000259
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000260 // SuperCTy - clang type for struct objc_super.
261 QualType SuperCTy;
262 // SuperPtrCTy - clang type for struct objc_super *.
263 QualType SuperPtrCTy;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000264
Daniel Dunbare8b470d2008-08-23 04:28:29 +0000265 /// SuperTy - LLVM type for struct objc_super.
266 const llvm::StructType *SuperTy;
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000267 /// SuperPtrTy - LLVM type for struct objc_super *.
268 const llvm::Type *SuperPtrTy;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000269
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000270 /// PropertyTy - LLVM type for struct objc_property (struct _prop_t
271 /// in GCC parlance).
272 const llvm::StructType *PropertyTy;
273
274 /// PropertyListTy - LLVM type for struct objc_property_list
275 /// (_prop_list_t in GCC parlance).
276 const llvm::StructType *PropertyListTy;
277 /// PropertyListPtrTy - LLVM type for struct objc_property_list*.
278 const llvm::Type *PropertyListPtrTy;
279
280 // MethodTy - LLVM type for struct objc_method.
281 const llvm::StructType *MethodTy;
282
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000283 /// CacheTy - LLVM type for struct objc_cache.
284 const llvm::Type *CacheTy;
285 /// CachePtrTy - LLVM type for struct objc_cache *.
286 const llvm::Type *CachePtrTy;
287
Chris Lattner72db6c32009-04-22 02:44:54 +0000288 llvm::Constant *getGetPropertyFn() {
289 CodeGen::CodeGenTypes &Types = CGM.getTypes();
290 ASTContext &Ctx = CGM.getContext();
291 // id objc_getProperty (id, SEL, ptrdiff_t, bool)
292 llvm::SmallVector<QualType,16> Params;
293 QualType IdType = Ctx.getObjCIdType();
294 QualType SelType = Ctx.getObjCSelType();
295 Params.push_back(IdType);
296 Params.push_back(SelType);
297 Params.push_back(Ctx.LongTy);
298 Params.push_back(Ctx.BoolTy);
299 const llvm::FunctionType *FTy =
300 Types.GetFunctionType(Types.getFunctionInfo(IdType, Params), false);
301 return CGM.CreateRuntimeFunction(FTy, "objc_getProperty");
302 }
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000303
Chris Lattner72db6c32009-04-22 02:44:54 +0000304 llvm::Constant *getSetPropertyFn() {
305 CodeGen::CodeGenTypes &Types = CGM.getTypes();
306 ASTContext &Ctx = CGM.getContext();
307 // void objc_setProperty (id, SEL, ptrdiff_t, id, bool, bool)
308 llvm::SmallVector<QualType,16> Params;
309 QualType IdType = Ctx.getObjCIdType();
310 QualType SelType = Ctx.getObjCSelType();
311 Params.push_back(IdType);
312 Params.push_back(SelType);
313 Params.push_back(Ctx.LongTy);
314 Params.push_back(IdType);
315 Params.push_back(Ctx.BoolTy);
316 Params.push_back(Ctx.BoolTy);
317 const llvm::FunctionType *FTy =
318 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params), false);
319 return CGM.CreateRuntimeFunction(FTy, "objc_setProperty");
320 }
321
322 llvm::Constant *getEnumerationMutationFn() {
323 // void objc_enumerationMutation (id)
324 std::vector<const llvm::Type*> Args;
325 Args.push_back(ObjectPtrTy);
326 llvm::FunctionType *FTy =
327 llvm::FunctionType::get(llvm::Type::VoidTy, Args, false);
328 return CGM.CreateRuntimeFunction(FTy, "objc_enumerationMutation");
329 }
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000330
331 /// GcReadWeakFn -- LLVM objc_read_weak (id *src) function.
Chris Lattner72db6c32009-04-22 02:44:54 +0000332 llvm::Constant *getGcReadWeakFn() {
333 // id objc_read_weak (id *)
334 std::vector<const llvm::Type*> Args;
335 Args.push_back(ObjectPtrTy->getPointerTo());
336 llvm::FunctionType *FTy = llvm::FunctionType::get(ObjectPtrTy, Args, false);
337 return CGM.CreateRuntimeFunction(FTy, "objc_read_weak");
338 }
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000339
340 /// GcAssignWeakFn -- LLVM objc_assign_weak function.
Chris Lattner96508e12009-04-17 22:12:36 +0000341 llvm::Constant *getGcAssignWeakFn() {
342 // id objc_assign_weak (id, id *)
343 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
344 Args.push_back(ObjectPtrTy->getPointerTo());
345 llvm::FunctionType *FTy =
346 llvm::FunctionType::get(ObjectPtrTy, Args, false);
347 return CGM.CreateRuntimeFunction(FTy, "objc_assign_weak");
348 }
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000349
350 /// GcAssignGlobalFn -- LLVM objc_assign_global function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000351 llvm::Constant *getGcAssignGlobalFn() {
352 // id objc_assign_global(id, id *)
353 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
354 Args.push_back(ObjectPtrTy->getPointerTo());
355 llvm::FunctionType *FTy = llvm::FunctionType::get(ObjectPtrTy, Args, false);
356 return CGM.CreateRuntimeFunction(FTy, "objc_assign_global");
357 }
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000358
359 /// GcAssignIvarFn -- LLVM objc_assign_ivar function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000360 llvm::Constant *getGcAssignIvarFn() {
361 // id objc_assign_ivar(id, id *)
362 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
363 Args.push_back(ObjectPtrTy->getPointerTo());
364 llvm::FunctionType *FTy = llvm::FunctionType::get(ObjectPtrTy, Args, false);
365 return CGM.CreateRuntimeFunction(FTy, "objc_assign_ivar");
366 }
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000367
368 /// GcAssignStrongCastFn -- LLVM objc_assign_strongCast function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000369 llvm::Constant *getGcAssignStrongCastFn() {
370 // id objc_assign_global(id, id *)
371 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
372 Args.push_back(ObjectPtrTy->getPointerTo());
373 llvm::FunctionType *FTy = llvm::FunctionType::get(ObjectPtrTy, Args, false);
374 return CGM.CreateRuntimeFunction(FTy, "objc_assign_strongCast");
375 }
Anders Carlssonf57c5b22009-02-16 22:59:18 +0000376
377 /// ExceptionThrowFn - LLVM objc_exception_throw function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000378 llvm::Constant *getExceptionThrowFn() {
379 // void objc_exception_throw(id)
380 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
381 llvm::FunctionType *FTy =
382 llvm::FunctionType::get(llvm::Type::VoidTy, Args, false);
383 return CGM.CreateRuntimeFunction(FTy, "objc_exception_throw");
384 }
Anders Carlssonf57c5b22009-02-16 22:59:18 +0000385
Daniel Dunbar1c566672009-02-24 01:43:46 +0000386 /// SyncEnterFn - LLVM object_sync_enter function.
Chris Lattnerb02e53b2009-04-06 16:53:45 +0000387 llvm::Constant *getSyncEnterFn() {
388 // void objc_sync_enter (id)
389 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
390 llvm::FunctionType *FTy =
391 llvm::FunctionType::get(llvm::Type::VoidTy, Args, false);
392 return CGM.CreateRuntimeFunction(FTy, "objc_sync_enter");
393 }
Daniel Dunbar1c566672009-02-24 01:43:46 +0000394
395 /// SyncExitFn - LLVM object_sync_exit function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000396 llvm::Constant *getSyncExitFn() {
397 // void objc_sync_exit (id)
398 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
399 llvm::FunctionType *FTy =
400 llvm::FunctionType::get(llvm::Type::VoidTy, Args, false);
401 return CGM.CreateRuntimeFunction(FTy, "objc_sync_exit");
402 }
Daniel Dunbar1c566672009-02-24 01:43:46 +0000403
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000404 llvm::Constant *getSendFn(bool IsSuper) const {
405 return IsSuper ? getMessageSendSuperFn() : getMessageSendFn();
406 }
407
408 llvm::Constant *getSendFn2(bool IsSuper) const {
409 return IsSuper ? getMessageSendSuperFn2() : getMessageSendFn();
410 }
411
412 llvm::Constant *getSendStretFn(bool IsSuper) const {
413 return IsSuper ? getMessageSendSuperStretFn() : getMessageSendStretFn();
414 }
415
416 llvm::Constant *getSendStretFn2(bool IsSuper) const {
417 return IsSuper ? getMessageSendSuperStretFn2() : getMessageSendStretFn();
418 }
419
420 llvm::Constant *getSendFpretFn(bool IsSuper) const {
421 return IsSuper ? getMessageSendSuperFpretFn() : getMessageSendFpretFn();
422 }
423
424 llvm::Constant *getSendFpretFn2(bool IsSuper) const {
425 return IsSuper ? getMessageSendSuperFpretFn2() : getMessageSendFpretFn();
426 }
427
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000428 ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm);
429 ~ObjCCommonTypesHelper(){}
430};
Daniel Dunbare8b470d2008-08-23 04:28:29 +0000431
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000432/// ObjCTypesHelper - Helper class that encapsulates lazy
433/// construction of varies types used during ObjC generation.
434class ObjCTypesHelper : public ObjCCommonTypesHelper {
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000435public:
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000436 /// SymtabTy - LLVM type for struct objc_symtab.
437 const llvm::StructType *SymtabTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000438 /// SymtabPtrTy - LLVM type for struct objc_symtab *.
439 const llvm::Type *SymtabPtrTy;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000440 /// ModuleTy - LLVM type for struct objc_module.
441 const llvm::StructType *ModuleTy;
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000442
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000443 /// ProtocolTy - LLVM type for struct objc_protocol.
444 const llvm::StructType *ProtocolTy;
445 /// ProtocolPtrTy - LLVM type for struct objc_protocol *.
446 const llvm::Type *ProtocolPtrTy;
447 /// ProtocolExtensionTy - LLVM type for struct
448 /// objc_protocol_extension.
449 const llvm::StructType *ProtocolExtensionTy;
450 /// ProtocolExtensionTy - LLVM type for struct
451 /// objc_protocol_extension *.
452 const llvm::Type *ProtocolExtensionPtrTy;
453 /// MethodDescriptionTy - LLVM type for struct
454 /// objc_method_description.
455 const llvm::StructType *MethodDescriptionTy;
456 /// MethodDescriptionListTy - LLVM type for struct
457 /// objc_method_description_list.
458 const llvm::StructType *MethodDescriptionListTy;
459 /// MethodDescriptionListPtrTy - LLVM type for struct
460 /// objc_method_description_list *.
461 const llvm::Type *MethodDescriptionListPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000462 /// ProtocolListTy - LLVM type for struct objc_property_list.
463 const llvm::Type *ProtocolListTy;
464 /// ProtocolListPtrTy - LLVM type for struct objc_property_list*.
465 const llvm::Type *ProtocolListPtrTy;
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000466 /// CategoryTy - LLVM type for struct objc_category.
467 const llvm::StructType *CategoryTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000468 /// ClassTy - LLVM type for struct objc_class.
469 const llvm::StructType *ClassTy;
470 /// ClassPtrTy - LLVM type for struct objc_class *.
471 const llvm::Type *ClassPtrTy;
472 /// ClassExtensionTy - LLVM type for struct objc_class_ext.
473 const llvm::StructType *ClassExtensionTy;
474 /// ClassExtensionPtrTy - LLVM type for struct objc_class_ext *.
475 const llvm::Type *ClassExtensionPtrTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000476 // IvarTy - LLVM type for struct objc_ivar.
477 const llvm::StructType *IvarTy;
478 /// IvarListTy - LLVM type for struct objc_ivar_list.
479 const llvm::Type *IvarListTy;
480 /// IvarListPtrTy - LLVM type for struct objc_ivar_list *.
481 const llvm::Type *IvarListPtrTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000482 /// MethodListTy - LLVM type for struct objc_method_list.
483 const llvm::Type *MethodListTy;
484 /// MethodListPtrTy - LLVM type for struct objc_method_list *.
485 const llvm::Type *MethodListPtrTy;
Anders Carlsson124526b2008-09-09 10:10:21 +0000486
487 /// ExceptionDataTy - LLVM type for struct _objc_exception_data.
488 const llvm::Type *ExceptionDataTy;
489
Anders Carlsson124526b2008-09-09 10:10:21 +0000490 /// ExceptionTryEnterFn - LLVM objc_exception_try_enter function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000491 llvm::Constant *getExceptionTryEnterFn() {
492 std::vector<const llvm::Type*> Params;
493 Params.push_back(llvm::PointerType::getUnqual(ExceptionDataTy));
494 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
495 Params, false),
496 "objc_exception_try_enter");
497 }
Anders Carlsson124526b2008-09-09 10:10:21 +0000498
499 /// ExceptionTryExitFn - LLVM objc_exception_try_exit function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000500 llvm::Constant *getExceptionTryExitFn() {
501 std::vector<const llvm::Type*> Params;
502 Params.push_back(llvm::PointerType::getUnqual(ExceptionDataTy));
503 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
504 Params, false),
505 "objc_exception_try_exit");
506 }
Anders Carlsson124526b2008-09-09 10:10:21 +0000507
508 /// ExceptionExtractFn - LLVM objc_exception_extract function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000509 llvm::Constant *getExceptionExtractFn() {
510 std::vector<const llvm::Type*> Params;
511 Params.push_back(llvm::PointerType::getUnqual(ExceptionDataTy));
512 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
513 Params, false),
514 "objc_exception_extract");
515
516 }
Anders Carlsson124526b2008-09-09 10:10:21 +0000517
518 /// ExceptionMatchFn - LLVM objc_exception_match function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000519 llvm::Constant *getExceptionMatchFn() {
520 std::vector<const llvm::Type*> Params;
521 Params.push_back(ClassPtrTy);
522 Params.push_back(ObjectPtrTy);
523 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::Int32Ty,
524 Params, false),
525 "objc_exception_match");
526
527 }
Anders Carlsson124526b2008-09-09 10:10:21 +0000528
529 /// SetJmpFn - LLVM _setjmp function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000530 llvm::Constant *getSetJmpFn() {
531 std::vector<const llvm::Type*> Params;
532 Params.push_back(llvm::PointerType::getUnqual(llvm::Type::Int32Ty));
533 return
534 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::Int32Ty,
535 Params, false),
536 "_setjmp");
537
538 }
Chris Lattner10cac6f2008-11-15 21:26:17 +0000539
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000540public:
541 ObjCTypesHelper(CodeGen::CodeGenModule &cgm);
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000542 ~ObjCTypesHelper() {}
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000543};
544
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000545/// ObjCNonFragileABITypesHelper - will have all types needed by objective-c's
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000546/// modern abi
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000547class ObjCNonFragileABITypesHelper : public ObjCCommonTypesHelper {
Fariborz Jahanian83a8a752009-02-04 20:42:28 +0000548public:
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000549
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000550 // MethodListnfABITy - LLVM for struct _method_list_t
551 const llvm::StructType *MethodListnfABITy;
552
553 // MethodListnfABIPtrTy - LLVM for struct _method_list_t*
554 const llvm::Type *MethodListnfABIPtrTy;
555
556 // ProtocolnfABITy = LLVM for struct _protocol_t
557 const llvm::StructType *ProtocolnfABITy;
558
Daniel Dunbar948e2582009-02-15 07:36:20 +0000559 // ProtocolnfABIPtrTy = LLVM for struct _protocol_t*
560 const llvm::Type *ProtocolnfABIPtrTy;
561
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000562 // ProtocolListnfABITy - LLVM for struct _objc_protocol_list
563 const llvm::StructType *ProtocolListnfABITy;
564
565 // ProtocolListnfABIPtrTy - LLVM for struct _objc_protocol_list*
566 const llvm::Type *ProtocolListnfABIPtrTy;
567
568 // ClassnfABITy - LLVM for struct _class_t
569 const llvm::StructType *ClassnfABITy;
570
Fariborz Jahanianaa23b572009-01-23 23:53:38 +0000571 // ClassnfABIPtrTy - LLVM for struct _class_t*
572 const llvm::Type *ClassnfABIPtrTy;
573
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000574 // IvarnfABITy - LLVM for struct _ivar_t
575 const llvm::StructType *IvarnfABITy;
576
577 // IvarListnfABITy - LLVM for struct _ivar_list_t
578 const llvm::StructType *IvarListnfABITy;
579
580 // IvarListnfABIPtrTy = LLVM for struct _ivar_list_t*
581 const llvm::Type *IvarListnfABIPtrTy;
582
583 // ClassRonfABITy - LLVM for struct _class_ro_t
584 const llvm::StructType *ClassRonfABITy;
585
586 // ImpnfABITy - LLVM for id (*)(id, SEL, ...)
587 const llvm::Type *ImpnfABITy;
588
589 // CategorynfABITy - LLVM for struct _category_t
590 const llvm::StructType *CategorynfABITy;
591
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000592 // New types for nonfragile abi messaging.
593
594 // MessageRefTy - LLVM for:
595 // struct _message_ref_t {
596 // IMP messenger;
597 // SEL name;
598 // };
599 const llvm::StructType *MessageRefTy;
Fariborz Jahanian83a8a752009-02-04 20:42:28 +0000600 // MessageRefCTy - clang type for struct _message_ref_t
601 QualType MessageRefCTy;
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000602
603 // MessageRefPtrTy - LLVM for struct _message_ref_t*
604 const llvm::Type *MessageRefPtrTy;
Fariborz Jahanian83a8a752009-02-04 20:42:28 +0000605 // MessageRefCPtrTy - clang type for struct _message_ref_t*
606 QualType MessageRefCPtrTy;
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000607
Fariborz Jahanianef163782009-02-05 01:13:09 +0000608 // MessengerTy - Type of the messenger (shown as IMP above)
609 const llvm::FunctionType *MessengerTy;
610
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000611 // SuperMessageRefTy - LLVM for:
612 // struct _super_message_ref_t {
613 // SUPER_IMP messenger;
614 // SEL name;
615 // };
616 const llvm::StructType *SuperMessageRefTy;
617
618 // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t*
619 const llvm::Type *SuperMessageRefPtrTy;
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +0000620
Chris Lattner1c02f862009-04-22 02:53:24 +0000621 llvm::Constant *getMessageSendFixupFn() {
622 // id objc_msgSend_fixup(id, struct message_ref_t*, ...)
623 std::vector<const llvm::Type*> Params;
624 Params.push_back(ObjectPtrTy);
625 Params.push_back(MessageRefPtrTy);
626 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
627 Params, true),
628 "objc_msgSend_fixup");
629 }
630
631 llvm::Constant *getMessageSendFpretFixupFn() {
632 // id objc_msgSend_fpret_fixup(id, struct message_ref_t*, ...)
633 std::vector<const llvm::Type*> Params;
634 Params.push_back(ObjectPtrTy);
635 Params.push_back(MessageRefPtrTy);
636 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
637 Params, true),
638 "objc_msgSend_fpret_fixup");
639 }
640
641 llvm::Constant *getMessageSendStretFixupFn() {
642 // id objc_msgSend_stret_fixup(id, struct message_ref_t*, ...)
643 std::vector<const llvm::Type*> Params;
644 Params.push_back(ObjectPtrTy);
645 Params.push_back(MessageRefPtrTy);
646 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
647 Params, true),
648 "objc_msgSend_stret_fixup");
649 }
650
651 llvm::Constant *getMessageSendIdFixupFn() {
652 // id objc_msgSendId_fixup(id, struct message_ref_t*, ...)
653 std::vector<const llvm::Type*> Params;
654 Params.push_back(ObjectPtrTy);
655 Params.push_back(MessageRefPtrTy);
656 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
657 Params, true),
658 "objc_msgSendId_fixup");
659 }
660
661 llvm::Constant *getMessageSendIdStretFixupFn() {
662 // id objc_msgSendId_stret_fixup(id, struct message_ref_t*, ...)
663 std::vector<const llvm::Type*> Params;
664 Params.push_back(ObjectPtrTy);
665 Params.push_back(MessageRefPtrTy);
666 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
667 Params, true),
668 "objc_msgSendId_stret_fixup");
669 }
670 llvm::Constant *getMessageSendSuper2FixupFn() {
671 // id objc_msgSendSuper2_fixup (struct objc_super *,
672 // struct _super_message_ref_t*, ...)
673 std::vector<const llvm::Type*> Params;
674 Params.push_back(SuperPtrTy);
675 Params.push_back(SuperMessageRefPtrTy);
676 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
677 Params, true),
678 "objc_msgSendSuper2_fixup");
679 }
680
681 llvm::Constant *getMessageSendSuper2StretFixupFn() {
682 // id objc_msgSendSuper2_stret_fixup(struct objc_super *,
683 // struct _super_message_ref_t*, ...)
684 std::vector<const llvm::Type*> Params;
685 Params.push_back(SuperPtrTy);
686 Params.push_back(SuperMessageRefPtrTy);
687 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
688 Params, true),
689 "objc_msgSendSuper2_stret_fixup");
690 }
691
692
693
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +0000694 /// EHPersonalityPtr - LLVM value for an i8* to the Objective-C
695 /// exception personality function.
Chris Lattnerb02e53b2009-04-06 16:53:45 +0000696 llvm::Value *getEHPersonalityPtr() {
697 llvm::Constant *Personality =
698 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::Int32Ty,
699 std::vector<const llvm::Type*>(),
700 true),
701 "__objc_personality_v0");
702 return llvm::ConstantExpr::getBitCast(Personality, Int8PtrTy);
703 }
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +0000704
Chris Lattner8a569112009-04-22 02:15:23 +0000705 llvm::Constant *getUnwindResumeOrRethrowFn() {
706 std::vector<const llvm::Type*> Params;
707 Params.push_back(Int8PtrTy);
708 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
709 Params, false),
710 "_Unwind_Resume_or_Rethrow");
711 }
712
713 llvm::Constant *getObjCEndCatchFn() {
714 std::vector<const llvm::Type*> Params;
715 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
716 Params, false),
717 "objc_end_catch");
718
719 }
720
721 llvm::Constant *getObjCBeginCatchFn() {
722 std::vector<const llvm::Type*> Params;
723 Params.push_back(Int8PtrTy);
724 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(Int8PtrTy,
725 Params, false),
726 "objc_begin_catch");
727 }
Daniel Dunbare588b992009-03-01 04:46:24 +0000728
729 const llvm::StructType *EHTypeTy;
730 const llvm::Type *EHTypePtrTy;
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +0000731
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000732 ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm);
733 ~ObjCNonFragileABITypesHelper(){}
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000734};
735
736class CGObjCCommonMac : public CodeGen::CGObjCRuntime {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000737public:
738 // FIXME - accessibility
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000739 class GC_IVAR {
Fariborz Jahanian820e0202009-03-11 00:07:04 +0000740 public:
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000741 unsigned ivar_bytepos;
742 unsigned ivar_size;
743 GC_IVAR(unsigned bytepos = 0, unsigned size = 0)
744 : ivar_bytepos(bytepos), ivar_size(size) {}
Daniel Dunbar0941b492009-04-23 01:29:05 +0000745
746 // Allow sorting based on byte pos.
747 bool operator<(const GC_IVAR &b) const {
748 return ivar_bytepos < b.ivar_bytepos;
749 }
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000750 };
751
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000752 class SKIP_SCAN {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000753 public:
754 unsigned skip;
755 unsigned scan;
756 SKIP_SCAN(unsigned _skip = 0, unsigned _scan = 0)
757 : skip(_skip), scan(_scan) {}
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000758 };
759
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000760protected:
761 CodeGen::CodeGenModule &CGM;
762 // FIXME! May not be needing this after all.
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000763 unsigned ObjCABI;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000764
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000765 // gc ivar layout bitmap calculation helper caches.
766 llvm::SmallVector<GC_IVAR, 16> SkipIvars;
767 llvm::SmallVector<GC_IVAR, 16> IvarsInfo;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000768
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000769 /// LazySymbols - Symbols to generate a lazy reference for. See
770 /// DefinedSymbols and FinishModule().
771 std::set<IdentifierInfo*> LazySymbols;
772
773 /// DefinedSymbols - External symbols which are defined by this
774 /// module. The symbols in this list and LazySymbols are used to add
775 /// special linker symbols which ensure that Objective-C modules are
776 /// linked properly.
777 std::set<IdentifierInfo*> DefinedSymbols;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000778
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000779 /// ClassNames - uniqued class names.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000780 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassNames;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000781
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000782 /// MethodVarNames - uniqued method variable names.
783 llvm::DenseMap<Selector, llvm::GlobalVariable*> MethodVarNames;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000784
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000785 /// MethodVarTypes - uniqued method type signatures. We have to use
786 /// a StringMap here because have no other unique reference.
787 llvm::StringMap<llvm::GlobalVariable*> MethodVarTypes;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000788
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000789 /// MethodDefinitions - map of methods which have been defined in
790 /// this translation unit.
791 llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*> MethodDefinitions;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000792
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000793 /// PropertyNames - uniqued method variable names.
794 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> PropertyNames;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000795
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000796 /// ClassReferences - uniqued class references.
797 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassReferences;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000798
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000799 /// SelectorReferences - uniqued selector references.
800 llvm::DenseMap<Selector, llvm::GlobalVariable*> SelectorReferences;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000801
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000802 /// Protocols - Protocols for which an objc_protocol structure has
803 /// been emitted. Forward declarations are handled by creating an
804 /// empty structure whose initializer is filled in when/if defined.
805 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000806
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000807 /// DefinedProtocols - Protocols which have actually been
808 /// defined. We should not need this, see FIXME in GenerateProtocol.
809 llvm::DenseSet<IdentifierInfo*> DefinedProtocols;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000810
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000811 /// DefinedClasses - List of defined classes.
812 std::vector<llvm::GlobalValue*> DefinedClasses;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000813
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000814 /// DefinedCategories - List of defined categories.
815 std::vector<llvm::GlobalValue*> DefinedCategories;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000816
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000817 /// UsedGlobals - List of globals to pack into the llvm.used metadata
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000818 /// to prevent them from being clobbered.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000819 std::vector<llvm::GlobalVariable*> UsedGlobals;
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000820
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000821 /// GetNameForMethod - Return a name for the given method.
822 /// \param[out] NameOut - The return value.
823 void GetNameForMethod(const ObjCMethodDecl *OMD,
824 const ObjCContainerDecl *CD,
825 std::string &NameOut);
826
827 /// GetMethodVarName - Return a unique constant for the given
828 /// selector's name. The return value has type char *.
829 llvm::Constant *GetMethodVarName(Selector Sel);
830 llvm::Constant *GetMethodVarName(IdentifierInfo *Ident);
831 llvm::Constant *GetMethodVarName(const std::string &Name);
832
833 /// GetMethodVarType - Return a unique constant for the given
834 /// selector's name. The return value has type char *.
835
836 // FIXME: This is a horrible name.
837 llvm::Constant *GetMethodVarType(const ObjCMethodDecl *D);
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +0000838 llvm::Constant *GetMethodVarType(const FieldDecl *D);
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000839
840 /// GetPropertyName - Return a unique constant for the given
841 /// name. The return value has type char *.
842 llvm::Constant *GetPropertyName(IdentifierInfo *Ident);
843
844 // FIXME: This can be dropped once string functions are unified.
845 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
846 const Decl *Container);
847
Fariborz Jahanian058a1b72009-01-24 20:21:50 +0000848 /// GetClassName - Return a unique constant for the given selector's
849 /// name. The return value has type char *.
850 llvm::Constant *GetClassName(IdentifierInfo *Ident);
851
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +0000852 /// BuildIvarLayout - Builds ivar layout bitmap for the class
853 /// implementation for the __strong or __weak case.
854 ///
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000855 llvm::Constant *BuildIvarLayout(const ObjCImplementationDecl *OI,
856 bool ForStrongLayout);
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +0000857
Daniel Dunbard58edcb2009-05-03 14:10:34 +0000858 void BuildAggrIvarRecordLayout(const RecordType *RT,
859 unsigned int BytePos, bool ForStrongLayout,
860 bool &HasUnion);
Daniel Dunbar5a5a8032009-05-03 21:05:10 +0000861 void BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000862 const llvm::StructLayout *Layout,
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000863 const RecordDecl *RD,
Chris Lattnerf1690852009-03-31 08:48:01 +0000864 const llvm::SmallVectorImpl<FieldDecl*> &RecFields,
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +0000865 unsigned int BytePos, bool ForStrongLayout,
Fariborz Jahanian81adc052009-04-24 16:17:09 +0000866 bool &HasUnion);
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000867
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +0000868 /// GetIvarLayoutName - Returns a unique constant for the given
869 /// ivar layout bitmap.
870 llvm::Constant *GetIvarLayoutName(IdentifierInfo *Ident,
871 const ObjCCommonTypesHelper &ObjCTypes);
872
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +0000873 /// EmitPropertyList - Emit the given property list. The return
874 /// value has type PropertyListPtrTy.
875 llvm::Constant *EmitPropertyList(const std::string &Name,
876 const Decl *Container,
877 const ObjCContainerDecl *OCD,
878 const ObjCCommonTypesHelper &ObjCTypes);
879
Fariborz Jahanianda320092009-01-29 19:24:30 +0000880 /// GetProtocolRef - Return a reference to the internal protocol
881 /// description, creating an empty one if it has not been
882 /// defined. The return value has type ProtocolPtrTy.
883 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
Fariborz Jahanianb21f07e2009-03-08 20:18:37 +0000884
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000885 /// CreateMetadataVar - Create a global variable with internal
886 /// linkage for use by the Objective-C runtime.
887 ///
888 /// This is a convenience wrapper which not only creates the
889 /// variable, but also sets the section and alignment and adds the
890 /// global to the UsedGlobals list.
Daniel Dunbar35bd7632009-03-09 20:50:13 +0000891 ///
892 /// \param Name - The variable name.
893 /// \param Init - The variable initializer; this is also used to
894 /// define the type of the variable.
895 /// \param Section - The section the variable should go into, or 0.
896 /// \param Align - The alignment for the variable, or 0.
897 /// \param AddToUsed - Whether the variable should be added to
Daniel Dunbarc1583062009-04-14 17:42:51 +0000898 /// "llvm.used".
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000899 llvm::GlobalVariable *CreateMetadataVar(const std::string &Name,
900 llvm::Constant *Init,
901 const char *Section,
Daniel Dunbar35bd7632009-03-09 20:50:13 +0000902 unsigned Align,
903 bool AddToUsed);
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000904
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +0000905 /// GetNamedIvarList - Return the list of ivars in the interface
906 /// itself (not including super classes and not including unnamed
907 /// bitfields).
908 ///
909 /// For the non-fragile ABI, this also includes synthesized property
910 /// ivars.
911 void GetNamedIvarList(const ObjCInterfaceDecl *OID,
912 llvm::SmallVector<ObjCIvarDecl*, 16> &Res) const;
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000913
914 CodeGen::RValue EmitLegacyMessageSend(CodeGen::CodeGenFunction &CGF,
915 QualType ResultType,
916 llvm::Value *Sel,
917 llvm::Value *Arg0,
918 QualType Arg0Ty,
919 bool IsSuper,
920 const CallArgList &CallArgs,
921 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +0000922
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000923public:
924 CGObjCCommonMac(CodeGen::CodeGenModule &cgm) : CGM(cgm)
925 { }
Fariborz Jahanianaa23b572009-01-23 23:53:38 +0000926
Steve Naroff33fdb732009-03-31 16:53:37 +0000927 virtual llvm::Constant *GenerateConstantString(const ObjCStringLiteral *SL);
Fariborz Jahanian493dab72009-01-26 21:38:32 +0000928
929 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
930 const ObjCContainerDecl *CD=0);
Fariborz Jahanianda320092009-01-29 19:24:30 +0000931
932 virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
933
934 /// GetOrEmitProtocol - Get the protocol object for the given
935 /// declaration, emitting it if necessary. The return value has type
936 /// ProtocolPtrTy.
937 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0;
938
939 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
940 /// object for the given declaration, emitting it if needed. These
941 /// forward references will be filled in with empty bodies if no
942 /// definition is seen. The return value has type ProtocolPtrTy.
943 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000944};
945
946class CGObjCMac : public CGObjCCommonMac {
947private:
948 ObjCTypesHelper ObjCTypes;
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000949 /// EmitImageInfo - Emit the image info marker used to encode some module
950 /// level information.
951 void EmitImageInfo();
952
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000953 /// EmitModuleInfo - Another marker encoding module level
954 /// information.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000955 void EmitModuleInfo();
956
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000957 /// EmitModuleSymols - Emit module symbols, the list of defined
958 /// classes and categories. The result has type SymtabPtrTy.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000959 llvm::Constant *EmitModuleSymbols();
960
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000961 /// FinishModule - Write out global data structures at the end of
962 /// processing a translation unit.
963 void FinishModule();
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000964
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000965 /// EmitClassExtension - Generate the class extension structure used
966 /// to store the weak ivar layout and properties. The return value
967 /// has type ClassExtensionPtrTy.
968 llvm::Constant *EmitClassExtension(const ObjCImplementationDecl *ID);
969
970 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
971 /// for the given class.
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000972 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000973 const ObjCInterfaceDecl *ID);
974
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000975 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000976 QualType ResultType,
977 Selector Sel,
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000978 llvm::Value *Arg0,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000979 QualType Arg0Ty,
980 bool IsSuper,
981 const CallArgList &CallArgs);
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000982
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000983 /// EmitIvarList - Emit the ivar list for the given
984 /// implementation. If ForClass is true the list of class ivars
985 /// (i.e. metaclass ivars) is emitted, otherwise the list of
986 /// interface ivars will be emitted. The return value has type
987 /// IvarListPtrTy.
988 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanian46b86c62009-01-28 19:12:34 +0000989 bool ForClass);
990
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000991 /// EmitMetaClass - Emit a forward reference to the class structure
992 /// for the metaclass of the given interface. The return value has
993 /// type ClassPtrTy.
994 llvm::Constant *EmitMetaClassRef(const ObjCInterfaceDecl *ID);
995
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000996 /// EmitMetaClass - Emit a class structure for the metaclass of the
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000997 /// given implementation. The return value has type ClassPtrTy.
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000998 llvm::Constant *EmitMetaClass(const ObjCImplementationDecl *ID,
999 llvm::Constant *Protocols,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001000 const ConstantVector &Methods);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001001
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001002 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001003
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001004 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001005
1006 /// EmitMethodList - Emit the method list for the given
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001007 /// implementation. The return value has type MethodListPtrTy.
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001008 llvm::Constant *EmitMethodList(const std::string &Name,
1009 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001010 const ConstantVector &Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001011
1012 /// EmitMethodDescList - Emit a method description list for a list of
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001013 /// method declarations.
1014 /// - TypeName: The name for the type containing the methods.
1015 /// - IsProtocol: True iff these methods are for a protocol.
1016 /// - ClassMethds: True iff these are class methods.
1017 /// - Required: When true, only "required" methods are
1018 /// listed. Similarly, when false only "optional" methods are
1019 /// listed. For classes this should always be true.
1020 /// - begin, end: The method list to output.
1021 ///
1022 /// The return value has type MethodDescriptionListPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001023 llvm::Constant *EmitMethodDescList(const std::string &Name,
1024 const char *Section,
1025 const ConstantVector &Methods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001026
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001027 /// GetOrEmitProtocol - Get the protocol object for the given
1028 /// declaration, emitting it if necessary. The return value has type
1029 /// ProtocolPtrTy.
Fariborz Jahanianda320092009-01-29 19:24:30 +00001030 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001031
1032 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1033 /// object for the given declaration, emitting it if needed. These
1034 /// forward references will be filled in with empty bodies if no
1035 /// definition is seen. The return value has type ProtocolPtrTy.
Fariborz Jahanianda320092009-01-29 19:24:30 +00001036 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001037
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001038 /// EmitProtocolExtension - Generate the protocol extension
1039 /// structure used to store optional instance and class methods, and
1040 /// protocol properties. The return value has type
1041 /// ProtocolExtensionPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001042 llvm::Constant *
1043 EmitProtocolExtension(const ObjCProtocolDecl *PD,
1044 const ConstantVector &OptInstanceMethods,
1045 const ConstantVector &OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001046
1047 /// EmitProtocolList - Generate the list of referenced
1048 /// protocols. The return value has type ProtocolListPtrTy.
Daniel Dunbardbc93372008-08-21 21:57:41 +00001049 llvm::Constant *EmitProtocolList(const std::string &Name,
1050 ObjCProtocolDecl::protocol_iterator begin,
1051 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001052
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001053 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1054 /// for the given selector.
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001055 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001056
Fariborz Jahanianda320092009-01-29 19:24:30 +00001057 public:
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001058 CGObjCMac(CodeGen::CodeGenModule &cgm);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001059
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001060 virtual llvm::Function *ModuleInitFunction();
1061
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001062 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001063 QualType ResultType,
1064 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001065 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001066 bool IsClassMessage,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001067 const CallArgList &CallArgs,
1068 const ObjCMethodDecl *Method);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001069
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001070 virtual CodeGen::RValue
1071 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001072 QualType ResultType,
1073 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001074 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001075 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001076 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001077 bool IsClassMessage,
1078 const CallArgList &CallArgs);
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +00001079
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001080 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001081 const ObjCInterfaceDecl *ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001082
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001083 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel);
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001084
1085 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1086 /// untyped one.
1087 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1088 const ObjCMethodDecl *Method);
1089
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001090 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001091
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001092 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001093
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001094 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001095 const ObjCProtocolDecl *PD);
Fariborz Jahanianda320092009-01-29 19:24:30 +00001096
Chris Lattner74391b42009-03-22 21:03:39 +00001097 virtual llvm::Constant *GetPropertyGetFunction();
1098 virtual llvm::Constant *GetPropertySetFunction();
1099 virtual llvm::Constant *EnumerationMutationFunction();
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001100
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00001101 virtual void EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1102 const Stmt &S);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001103 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
1104 const ObjCAtThrowStmt &S);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00001105 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00001106 llvm::Value *AddrWeakObj);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00001107 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
1108 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanian58626502008-11-19 00:59:10 +00001109 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
1110 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00001111 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
1112 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian58626502008-11-19 00:59:10 +00001113 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
1114 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00001115
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001116 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1117 QualType ObjectTy,
1118 llvm::Value *BaseValue,
1119 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001120 unsigned CVRQualifiers);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001121 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00001122 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001123 const ObjCIvarDecl *Ivar);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001124};
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001125
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001126class CGObjCNonFragileABIMac : public CGObjCCommonMac {
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001127private:
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001128 ObjCNonFragileABITypesHelper ObjCTypes;
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001129 llvm::GlobalVariable* ObjCEmptyCacheVar;
1130 llvm::GlobalVariable* ObjCEmptyVtableVar;
Daniel Dunbar4ff36842009-03-02 06:08:11 +00001131
Daniel Dunbar11394522009-04-18 08:51:00 +00001132 /// SuperClassReferences - uniqued super class references.
1133 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> SuperClassReferences;
1134
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001135 /// MetaClassReferences - uniqued meta class references.
1136 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> MetaClassReferences;
Daniel Dunbare588b992009-03-01 04:46:24 +00001137
1138 /// EHTypeReferences - uniqued class ehtype references.
1139 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> EHTypeReferences;
Daniel Dunbar4ff36842009-03-02 06:08:11 +00001140
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001141 /// NonLegacyDispatchMethods - List of methods for which we do *not* generate
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001142 /// legacy messaging dispatch.
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001143 llvm::DenseSet<Selector> NonLegacyDispatchMethods;
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001144
1145 /// LegacyDispatchedSelector - Returns true if SEL is not in the list of
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001146 /// NonLegacyDispatchMethods; false otherwise.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001147 bool LegacyDispatchedSelector(Selector Sel);
1148
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001149 /// FinishNonFragileABIModule - Write out global data structures at the end of
1150 /// processing a translation unit.
1151 void FinishNonFragileABIModule();
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001152
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00001153 llvm::GlobalVariable * BuildClassRoTInitializer(unsigned flags,
1154 unsigned InstanceStart,
1155 unsigned InstanceSize,
1156 const ObjCImplementationDecl *ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00001157 llvm::GlobalVariable * BuildClassMetaData(std::string &ClassName,
1158 llvm::Constant *IsAGV,
1159 llvm::Constant *SuperClassGV,
Fariborz Jahaniancf555162009-01-31 00:59:10 +00001160 llvm::Constant *ClassRoGV,
1161 bool HiddenVisibility);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001162
1163 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
1164
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00001165 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
1166
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001167 /// EmitMethodList - Emit the method list for the given
1168 /// implementation. The return value has type MethodListnfABITy.
1169 llvm::Constant *EmitMethodList(const std::string &Name,
1170 const char *Section,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00001171 const ConstantVector &Methods);
1172 /// EmitIvarList - Emit the ivar list for the given
1173 /// implementation. If ForClass is true the list of class ivars
1174 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1175 /// interface ivars will be emitted. The return value has type
1176 /// IvarListnfABIPtrTy.
1177 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00001178
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001179 llvm::Constant *EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00001180 const ObjCIvarDecl *Ivar,
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00001181 unsigned long int offset);
1182
Fariborz Jahanianda320092009-01-29 19:24:30 +00001183 /// GetOrEmitProtocol - Get the protocol object for the given
1184 /// declaration, emitting it if necessary. The return value has type
1185 /// ProtocolPtrTy.
1186 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
1187
1188 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1189 /// object for the given declaration, emitting it if needed. These
1190 /// forward references will be filled in with empty bodies if no
1191 /// definition is seen. The return value has type ProtocolPtrTy.
1192 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
1193
1194 /// EmitProtocolList - Generate the list of referenced
1195 /// protocols. The return value has type ProtocolListPtrTy.
1196 llvm::Constant *EmitProtocolList(const std::string &Name,
1197 ObjCProtocolDecl::protocol_iterator begin,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001198 ObjCProtocolDecl::protocol_iterator end);
1199
1200 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
1201 QualType ResultType,
1202 Selector Sel,
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00001203 llvm::Value *Receiver,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001204 QualType Arg0Ty,
1205 bool IsSuper,
1206 const CallArgList &CallArgs);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00001207
1208 /// GetClassGlobal - Return the global variable for the Objective-C
1209 /// class of the given name.
Fariborz Jahanian0f902942009-04-14 18:41:56 +00001210 llvm::GlobalVariable *GetClassGlobal(const std::string &Name);
1211
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001212 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
Daniel Dunbar11394522009-04-18 08:51:00 +00001213 /// for the given class reference.
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001214 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar11394522009-04-18 08:51:00 +00001215 const ObjCInterfaceDecl *ID);
1216
1217 /// EmitSuperClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
1218 /// for the given super class reference.
1219 llvm::Value *EmitSuperClassRef(CGBuilderTy &Builder,
1220 const ObjCInterfaceDecl *ID);
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001221
1222 /// EmitMetaClassRef - Return a Value * of the address of _class_t
1223 /// meta-data
1224 llvm::Value *EmitMetaClassRef(CGBuilderTy &Builder,
1225 const ObjCInterfaceDecl *ID);
1226
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001227 /// ObjCIvarOffsetVariable - Returns the ivar offset variable for
1228 /// the given ivar.
1229 ///
Daniel Dunbar5e88bea2009-04-19 00:31:15 +00001230 llvm::GlobalVariable * ObjCIvarOffsetVariable(
Fariborz Jahanian01a0c362009-02-12 18:51:23 +00001231 const ObjCInterfaceDecl *ID,
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001232 const ObjCIvarDecl *Ivar);
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001233
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00001234 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1235 /// for the given selector.
1236 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel);
Daniel Dunbare588b992009-03-01 04:46:24 +00001237
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001238 /// GetInterfaceEHType - Get the cached ehtype for the given Objective-C
Daniel Dunbare588b992009-03-01 04:46:24 +00001239 /// interface. The return value has type EHTypePtrTy.
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001240 llvm::Value *GetInterfaceEHType(const ObjCInterfaceDecl *ID,
1241 bool ForDefinition);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001242
1243 const char *getMetaclassSymbolPrefix() const {
1244 return "OBJC_METACLASS_$_";
1245 }
Daniel Dunbar4ff36842009-03-02 06:08:11 +00001246
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001247 const char *getClassSymbolPrefix() const {
1248 return "OBJC_CLASS_$_";
1249 }
1250
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00001251 void GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbarb02532a2009-04-19 23:41:48 +00001252 uint32_t &InstanceStart,
1253 uint32_t &InstanceSize);
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001254
1255 // Shamelessly stolen from Analysis/CFRefCount.cpp
1256 Selector GetNullarySelector(const char* name) {
1257 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1258 return CGM.getContext().Selectors.getSelector(0, &II);
1259 }
1260
1261 Selector GetUnarySelector(const char* name) {
1262 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1263 return CGM.getContext().Selectors.getSelector(1, &II);
1264 }
Daniel Dunbarb02532a2009-04-19 23:41:48 +00001265
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001266public:
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001267 CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001268 // FIXME. All stubs for now!
1269 virtual llvm::Function *ModuleInitFunction();
1270
1271 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
1272 QualType ResultType,
1273 Selector Sel,
1274 llvm::Value *Receiver,
1275 bool IsClassMessage,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001276 const CallArgList &CallArgs,
1277 const ObjCMethodDecl *Method);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001278
1279 virtual CodeGen::RValue
1280 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
1281 QualType ResultType,
1282 Selector Sel,
1283 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001284 bool isCategoryImpl,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001285 llvm::Value *Receiver,
1286 bool IsClassMessage,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001287 const CallArgList &CallArgs);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001288
1289 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001290 const ObjCInterfaceDecl *ID);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001291
1292 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel)
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00001293 { return EmitSelector(Builder, Sel); }
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001294
1295 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1296 /// untyped one.
1297 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1298 const ObjCMethodDecl *Method)
1299 { return EmitSelector(Builder, Method->getSelector()); }
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001300
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00001301 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001302
1303 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001304 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00001305 const ObjCProtocolDecl *PD);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001306
Chris Lattner74391b42009-03-22 21:03:39 +00001307 virtual llvm::Constant *GetPropertyGetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001308 return ObjCTypes.getGetPropertyFn();
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001309 }
Chris Lattner74391b42009-03-22 21:03:39 +00001310 virtual llvm::Constant *GetPropertySetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001311 return ObjCTypes.getSetPropertyFn();
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001312 }
Chris Lattner74391b42009-03-22 21:03:39 +00001313 virtual llvm::Constant *EnumerationMutationFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001314 return ObjCTypes.getEnumerationMutationFn();
Daniel Dunbar28ed0842009-02-16 18:48:45 +00001315 }
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001316
1317 virtual void EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00001318 const Stmt &S);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001319 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Anders Carlssonf57c5b22009-02-16 22:59:18 +00001320 const ObjCAtThrowStmt &S);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001321 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001322 llvm::Value *AddrWeakObj);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001323 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001324 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001325 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001326 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001327 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001328 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001329 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001330 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001331 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1332 QualType ObjectTy,
1333 llvm::Value *BaseValue,
1334 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001335 unsigned CVRQualifiers);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001336 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00001337 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001338 const ObjCIvarDecl *Ivar);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001339};
1340
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001341} // end anonymous namespace
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001342
1343/* *** Helper Functions *** */
1344
1345/// getConstantGEP() - Help routine to construct simple GEPs.
1346static llvm::Constant *getConstantGEP(llvm::Constant *C,
1347 unsigned idx0,
1348 unsigned idx1) {
1349 llvm::Value *Idxs[] = {
1350 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx0),
1351 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx1)
1352 };
1353 return llvm::ConstantExpr::getGetElementPtr(C, Idxs, 2);
1354}
1355
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001356/// hasObjCExceptionAttribute - Return true if this class or any super
1357/// class has the __objc_exception__ attribute.
1358static bool hasObjCExceptionAttribute(const ObjCInterfaceDecl *OID) {
Daniel Dunbarb11fa0d2009-04-13 21:08:27 +00001359 if (OID->hasAttr<ObjCExceptionAttr>())
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001360 return true;
1361 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())
1362 return hasObjCExceptionAttribute(Super);
1363 return false;
1364}
1365
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001366/* *** CGObjCMac Public Interface *** */
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001367
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001368CGObjCMac::CGObjCMac(CodeGen::CodeGenModule &cgm) : CGObjCCommonMac(cgm),
1369 ObjCTypes(cgm)
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001370{
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001371 ObjCABI = 1;
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001372 EmitImageInfo();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001373}
1374
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +00001375/// GetClass - Return a reference to the class for the given interface
1376/// decl.
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001377llvm::Value *CGObjCMac::GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001378 const ObjCInterfaceDecl *ID) {
1379 return EmitClassRef(Builder, ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001380}
1381
1382/// GetSelector - Return the pointer to the unique'd string for this selector.
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001383llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, Selector Sel) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00001384 return EmitSelector(Builder, Sel);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001385}
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001386llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, const ObjCMethodDecl
1387 *Method) {
1388 return EmitSelector(Builder, Method->getSelector());
1389}
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001390
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001391/// Generate a constant CFString object.
1392/*
1393 struct __builtin_CFString {
1394 const int *isa; // point to __CFConstantStringClassReference
1395 int flags;
1396 const char *str;
1397 long length;
1398 };
1399*/
1400
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001401llvm::Constant *CGObjCCommonMac::GenerateConstantString(
Steve Naroff33fdb732009-03-31 16:53:37 +00001402 const ObjCStringLiteral *SL) {
Steve Naroff8d4141f2009-04-01 13:55:36 +00001403 return CGM.GetAddrOfConstantCFString(SL->getString());
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001404}
1405
1406/// Generates a message send where the super is the receiver. This is
1407/// a message send to self with special delivery semantics indicating
1408/// which class's method should be called.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001409CodeGen::RValue
1410CGObjCMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001411 QualType ResultType,
1412 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001413 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001414 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001415 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001416 bool IsClassMessage,
Daniel Dunbar46f45b92008-09-09 01:06:48 +00001417 const CodeGen::CallArgList &CallArgs) {
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001418 // Create and init a super structure; this is a (receiver, class)
1419 // pair we will pass to objc_msgSendSuper.
1420 llvm::Value *ObjCSuper =
1421 CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super");
1422 llvm::Value *ReceiverAsObject =
1423 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
1424 CGF.Builder.CreateStore(ReceiverAsObject,
1425 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001426
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001427 // If this is a class message the metaclass is passed as the target.
1428 llvm::Value *Target;
1429 if (IsClassMessage) {
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001430 if (isCategoryImpl) {
1431 // Message sent to 'super' in a class method defined in a category
1432 // implementation requires an odd treatment.
1433 // If we are in a class method, we must retrieve the
1434 // _metaclass_ for the current class, pointed at by
1435 // the class's "isa" pointer. The following assumes that
1436 // isa" is the first ivar in a class (which it must be).
1437 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1438 Target = CGF.Builder.CreateStructGEP(Target, 0);
1439 Target = CGF.Builder.CreateLoad(Target);
1440 }
1441 else {
1442 llvm::Value *MetaClassPtr = EmitMetaClassRef(Class);
1443 llvm::Value *SuperPtr = CGF.Builder.CreateStructGEP(MetaClassPtr, 1);
1444 llvm::Value *Super = CGF.Builder.CreateLoad(SuperPtr);
1445 Target = Super;
1446 }
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001447 } else {
1448 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1449 }
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001450 // FIXME: We shouldn't need to do this cast, rectify the ASTContext
1451 // and ObjCTypes types.
1452 const llvm::Type *ClassTy =
1453 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001454 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001455 CGF.Builder.CreateStore(Target,
1456 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001457 return EmitLegacyMessageSend(CGF, ResultType,
1458 EmitSelector(CGF.Builder, Sel),
1459 ObjCSuper, ObjCTypes.SuperPtrCTy,
1460 true, CallArgs, ObjCTypes);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001461}
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001462
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001463/// Generate code for a message send expression.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001464CodeGen::RValue CGObjCMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001465 QualType ResultType,
1466 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001467 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001468 bool IsClassMessage,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001469 const CallArgList &CallArgs,
1470 const ObjCMethodDecl *Method) {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001471 return EmitLegacyMessageSend(CGF, ResultType,
1472 EmitSelector(CGF.Builder, Sel),
1473 Receiver, CGF.getContext().getObjCIdType(),
1474 false, CallArgs, ObjCTypes);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001475}
1476
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001477CodeGen::RValue CGObjCCommonMac::EmitLegacyMessageSend(
1478 CodeGen::CodeGenFunction &CGF,
1479 QualType ResultType,
1480 llvm::Value *Sel,
1481 llvm::Value *Arg0,
1482 QualType Arg0Ty,
1483 bool IsSuper,
1484 const CallArgList &CallArgs,
1485 const ObjCCommonTypesHelper &ObjCTypes) {
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001486 CallArgList ActualArgs;
Fariborz Jahaniand019d962009-04-24 21:07:43 +00001487 if (!IsSuper)
1488 Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy, "tmp");
Daniel Dunbar46f45b92008-09-09 01:06:48 +00001489 ActualArgs.push_back(std::make_pair(RValue::get(Arg0), Arg0Ty));
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001490 ActualArgs.push_back(std::make_pair(RValue::get(Sel),
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001491 CGF.getContext().getObjCSelType()));
1492 ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001493
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001494 CodeGenTypes &Types = CGM.getTypes();
1495 const CGFunctionInfo &FnInfo = Types.getFunctionInfo(ResultType, ActualArgs);
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001496 // In 64bit ABI, type must be assumed VARARG. In 32bit abi,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001497 // it seems not to matter.
1498 const llvm::FunctionType *FTy = Types.GetFunctionType(FnInfo, (ObjCABI == 2));
1499
1500 llvm::Constant *Fn = NULL;
Daniel Dunbar88b53962009-02-02 22:03:45 +00001501 if (CGM.ReturnTypeUsesSret(FnInfo)) {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001502 Fn = (ObjCABI == 2) ? ObjCTypes.getSendStretFn2(IsSuper)
1503 : ObjCTypes.getSendStretFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001504 } else if (ResultType->isFloatingType()) {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001505 if (ObjCABI == 2) {
1506 if (const BuiltinType *BT = ResultType->getAsBuiltinType()) {
1507 BuiltinType::Kind k = BT->getKind();
1508 Fn = (k == BuiltinType::LongDouble) ? ObjCTypes.getSendFpretFn2(IsSuper)
1509 : ObjCTypes.getSendFn2(IsSuper);
1510 }
1511 }
1512 else
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001513 // FIXME. This currently matches gcc's API for x86-32. May need
1514 // to change for others if we have their API.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001515 Fn = ObjCTypes.getSendFpretFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001516 } else {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001517 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFn2(IsSuper)
1518 : ObjCTypes.getSendFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001519 }
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001520 assert(Fn && "EmitLegacyMessageSend - unknown API");
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +00001521 Fn = llvm::ConstantExpr::getBitCast(Fn, llvm::PointerType::getUnqual(FTy));
Daniel Dunbar88b53962009-02-02 22:03:45 +00001522 return CGF.EmitCall(FnInfo, Fn, ActualArgs);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001523}
1524
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001525llvm::Value *CGObjCMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001526 const ObjCProtocolDecl *PD) {
Daniel Dunbarc67876d2008-09-04 04:33:15 +00001527 // FIXME: I don't understand why gcc generates this, or where it is
1528 // resolved. Investigate. Its also wasteful to look this up over and
1529 // over.
1530 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1531
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001532 return llvm::ConstantExpr::getBitCast(GetProtocolRef(PD),
1533 ObjCTypes.ExternalProtocolPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001534}
1535
Fariborz Jahanianda320092009-01-29 19:24:30 +00001536void CGObjCCommonMac::GenerateProtocol(const ObjCProtocolDecl *PD) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001537 // FIXME: We shouldn't need this, the protocol decl should contain
1538 // enough information to tell us whether this was a declaration or a
1539 // definition.
1540 DefinedProtocols.insert(PD->getIdentifier());
1541
1542 // If we have generated a forward reference to this protocol, emit
1543 // it now. Otherwise do nothing, the protocol objects are lazily
1544 // emitted.
1545 if (Protocols.count(PD->getIdentifier()))
1546 GetOrEmitProtocol(PD);
1547}
1548
Fariborz Jahanianda320092009-01-29 19:24:30 +00001549llvm::Constant *CGObjCCommonMac::GetProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001550 if (DefinedProtocols.count(PD->getIdentifier()))
1551 return GetOrEmitProtocol(PD);
1552 return GetOrEmitProtocolRef(PD);
1553}
1554
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001555/*
1556 // APPLE LOCAL radar 4585769 - Objective-C 1.0 extensions
1557 struct _objc_protocol {
1558 struct _objc_protocol_extension *isa;
1559 char *protocol_name;
1560 struct _objc_protocol_list *protocol_list;
1561 struct _objc__method_prototype_list *instance_methods;
1562 struct _objc__method_prototype_list *class_methods
1563 };
1564
1565 See EmitProtocolExtension().
1566*/
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001567llvm::Constant *CGObjCMac::GetOrEmitProtocol(const ObjCProtocolDecl *PD) {
1568 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1569
1570 // Early exit if a defining object has already been generated.
1571 if (Entry && Entry->hasInitializer())
1572 return Entry;
1573
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001574 // FIXME: I don't understand why gcc generates this, or where it is
1575 // resolved. Investigate. Its also wasteful to look this up over and
1576 // over.
1577 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1578
Chris Lattner8ec03f52008-11-24 03:54:41 +00001579 const char *ProtocolName = PD->getNameAsCString();
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001580
1581 // Construct method lists.
1582 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
1583 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Douglas Gregor6ab35242009-04-09 21:40:53 +00001584 for (ObjCProtocolDecl::instmeth_iterator
1585 i = PD->instmeth_begin(CGM.getContext()),
1586 e = PD->instmeth_end(CGM.getContext()); i != e; ++i) {
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001587 ObjCMethodDecl *MD = *i;
1588 llvm::Constant *C = GetMethodDescriptionConstant(MD);
1589 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1590 OptInstanceMethods.push_back(C);
1591 } else {
1592 InstanceMethods.push_back(C);
1593 }
1594 }
1595
Douglas Gregor6ab35242009-04-09 21:40:53 +00001596 for (ObjCProtocolDecl::classmeth_iterator
1597 i = PD->classmeth_begin(CGM.getContext()),
1598 e = PD->classmeth_end(CGM.getContext()); i != e; ++i) {
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001599 ObjCMethodDecl *MD = *i;
1600 llvm::Constant *C = GetMethodDescriptionConstant(MD);
1601 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1602 OptClassMethods.push_back(C);
1603 } else {
1604 ClassMethods.push_back(C);
1605 }
1606 }
1607
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001608 std::vector<llvm::Constant*> Values(5);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001609 Values[0] = EmitProtocolExtension(PD, OptInstanceMethods, OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001610 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbardbc93372008-08-21 21:57:41 +00001611 Values[2] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001612 EmitProtocolList("\01L_OBJC_PROTOCOL_REFS_" + PD->getNameAsString(),
Daniel Dunbardbc93372008-08-21 21:57:41 +00001613 PD->protocol_begin(),
1614 PD->protocol_end());
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001615 Values[3] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001616 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_"
1617 + PD->getNameAsString(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001618 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
1619 InstanceMethods);
1620 Values[4] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001621 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_"
1622 + PD->getNameAsString(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001623 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
1624 ClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001625 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
1626 Values);
1627
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001628 if (Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001629 // Already created, fix the linkage and update the initializer.
1630 Entry->setLinkage(llvm::GlobalValue::InternalLinkage);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001631 Entry->setInitializer(Init);
1632 } else {
1633 Entry =
1634 new llvm::GlobalVariable(ObjCTypes.ProtocolTy, false,
1635 llvm::GlobalValue::InternalLinkage,
1636 Init,
1637 std::string("\01L_OBJC_PROTOCOL_")+ProtocolName,
1638 &CGM.getModule());
1639 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbar58a29122009-03-09 22:18:41 +00001640 Entry->setAlignment(4);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001641 UsedGlobals.push_back(Entry);
1642 // FIXME: Is this necessary? Why only for protocol?
1643 Entry->setAlignment(4);
1644 }
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001645
1646 return Entry;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001647}
1648
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001649llvm::Constant *CGObjCMac::GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001650 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1651
1652 if (!Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001653 // We use the initializer as a marker of whether this is a forward
1654 // reference or not. At module finalization we add the empty
1655 // contents for protocols which were referenced but never defined.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001656 Entry =
1657 new llvm::GlobalVariable(ObjCTypes.ProtocolTy, false,
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001658 llvm::GlobalValue::ExternalLinkage,
1659 0,
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001660 "\01L_OBJC_PROTOCOL_" + PD->getNameAsString(),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001661 &CGM.getModule());
1662 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbar58a29122009-03-09 22:18:41 +00001663 Entry->setAlignment(4);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001664 UsedGlobals.push_back(Entry);
1665 // FIXME: Is this necessary? Why only for protocol?
1666 Entry->setAlignment(4);
1667 }
1668
1669 return Entry;
1670}
1671
1672/*
1673 struct _objc_protocol_extension {
1674 uint32_t size;
1675 struct objc_method_description_list *optional_instance_methods;
1676 struct objc_method_description_list *optional_class_methods;
1677 struct objc_property_list *instance_properties;
1678 };
1679*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001680llvm::Constant *
1681CGObjCMac::EmitProtocolExtension(const ObjCProtocolDecl *PD,
1682 const ConstantVector &OptInstanceMethods,
1683 const ConstantVector &OptClassMethods) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001684 uint64_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00001685 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolExtensionTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001686 std::vector<llvm::Constant*> Values(4);
1687 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001688 Values[1] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001689 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_OPT_"
1690 + PD->getNameAsString(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001691 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
1692 OptInstanceMethods);
1693 Values[2] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001694 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_OPT_"
1695 + PD->getNameAsString(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001696 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
1697 OptClassMethods);
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001698 Values[3] = EmitPropertyList("\01L_OBJC_$_PROP_PROTO_LIST_" +
1699 PD->getNameAsString(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00001700 0, PD, ObjCTypes);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001701
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001702 // Return null if no extension bits are used.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001703 if (Values[1]->isNullValue() && Values[2]->isNullValue() &&
1704 Values[3]->isNullValue())
1705 return llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
1706
1707 llvm::Constant *Init =
1708 llvm::ConstantStruct::get(ObjCTypes.ProtocolExtensionTy, Values);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001709
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001710 // No special section, but goes in llvm.used
1711 return CreateMetadataVar("\01L_OBJC_PROTOCOLEXT_" + PD->getNameAsString(),
1712 Init,
1713 0, 0, true);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001714}
1715
1716/*
1717 struct objc_protocol_list {
1718 struct objc_protocol_list *next;
1719 long count;
1720 Protocol *list[];
1721 };
1722*/
Daniel Dunbardbc93372008-08-21 21:57:41 +00001723llvm::Constant *
1724CGObjCMac::EmitProtocolList(const std::string &Name,
1725 ObjCProtocolDecl::protocol_iterator begin,
1726 ObjCProtocolDecl::protocol_iterator end) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001727 std::vector<llvm::Constant*> ProtocolRefs;
1728
Daniel Dunbardbc93372008-08-21 21:57:41 +00001729 for (; begin != end; ++begin)
1730 ProtocolRefs.push_back(GetProtocolRef(*begin));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001731
1732 // Just return null for empty protocol lists
1733 if (ProtocolRefs.empty())
1734 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
1735
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001736 // This list is null terminated.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001737 ProtocolRefs.push_back(llvm::Constant::getNullValue(ObjCTypes.ProtocolPtrTy));
1738
1739 std::vector<llvm::Constant*> Values(3);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001740 // This field is only used by the runtime.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001741 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
1742 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy, ProtocolRefs.size() - 1);
1743 Values[2] =
1744 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.ProtocolPtrTy,
1745 ProtocolRefs.size()),
1746 ProtocolRefs);
1747
1748 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
1749 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001750 CreateMetadataVar(Name, Init, "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00001751 4, false);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001752 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListPtrTy);
1753}
1754
1755/*
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001756 struct _objc_property {
1757 const char * const name;
1758 const char * const attributes;
1759 };
1760
1761 struct _objc_property_list {
1762 uint32_t entsize; // sizeof (struct _objc_property)
1763 uint32_t prop_count;
1764 struct _objc_property[prop_count];
1765 };
1766*/
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00001767llvm::Constant *CGObjCCommonMac::EmitPropertyList(const std::string &Name,
1768 const Decl *Container,
1769 const ObjCContainerDecl *OCD,
1770 const ObjCCommonTypesHelper &ObjCTypes) {
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001771 std::vector<llvm::Constant*> Properties, Prop(2);
Douglas Gregor6ab35242009-04-09 21:40:53 +00001772 for (ObjCContainerDecl::prop_iterator I = OCD->prop_begin(CGM.getContext()),
1773 E = OCD->prop_end(CGM.getContext()); I != E; ++I) {
Steve Naroff93983f82009-01-11 12:47:58 +00001774 const ObjCPropertyDecl *PD = *I;
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001775 Prop[0] = GetPropertyName(PD->getIdentifier());
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001776 Prop[1] = GetPropertyTypeString(PD, Container);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001777 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy,
1778 Prop));
1779 }
1780
1781 // Return null for empty list.
1782 if (Properties.empty())
1783 return llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
1784
1785 unsigned PropertySize =
Duncan Sands9408c452009-05-09 07:08:47 +00001786 CGM.getTargetData().getTypeAllocSize(ObjCTypes.PropertyTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001787 std::vector<llvm::Constant*> Values(3);
1788 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, PropertySize);
1789 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Properties.size());
1790 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.PropertyTy,
1791 Properties.size());
1792 Values[2] = llvm::ConstantArray::get(AT, Properties);
1793 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
1794
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001795 llvm::GlobalVariable *GV =
Daniel Dunbar0bf21992009-04-15 02:56:18 +00001796 CreateMetadataVar(Name, Init,
1797 (ObjCABI == 2) ? "__DATA, __objc_const" :
1798 "__OBJC,__property,regular,no_dead_strip",
1799 (ObjCABI == 2) ? 8 : 4,
1800 true);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001801 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.PropertyListPtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001802}
1803
1804/*
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001805 struct objc_method_description_list {
1806 int count;
1807 struct objc_method_description list[];
1808 };
1809*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001810llvm::Constant *
1811CGObjCMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
1812 std::vector<llvm::Constant*> Desc(2);
1813 Desc[0] = llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
1814 ObjCTypes.SelectorPtrTy);
1815 Desc[1] = GetMethodVarType(MD);
1816 return llvm::ConstantStruct::get(ObjCTypes.MethodDescriptionTy,
1817 Desc);
1818}
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001819
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001820llvm::Constant *CGObjCMac::EmitMethodDescList(const std::string &Name,
1821 const char *Section,
1822 const ConstantVector &Methods) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001823 // Return null for empty list.
1824 if (Methods.empty())
1825 return llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
1826
1827 std::vector<llvm::Constant*> Values(2);
1828 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
1829 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodDescriptionTy,
1830 Methods.size());
1831 Values[1] = llvm::ConstantArray::get(AT, Methods);
1832 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
1833
Daniel Dunbar0bf21992009-04-15 02:56:18 +00001834 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001835 return llvm::ConstantExpr::getBitCast(GV,
1836 ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001837}
1838
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001839/*
1840 struct _objc_category {
1841 char *category_name;
1842 char *class_name;
1843 struct _objc_method_list *instance_methods;
1844 struct _objc_method_list *class_methods;
1845 struct _objc_protocol_list *protocols;
1846 uint32_t size; // <rdar://4585769>
1847 struct _objc_property_list *instance_properties;
1848 };
1849 */
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001850void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Duncan Sands9408c452009-05-09 07:08:47 +00001851 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.CategoryTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001852
Daniel Dunbar86e2f402008-08-26 23:03:11 +00001853 // FIXME: This is poor design, the OCD should have a pointer to the
1854 // category decl. Additionally, note that Category can be null for
1855 // the @implementation w/o an @interface case. Sema should just
1856 // create one for us as it does for @implementation so everyone else
1857 // can live life under a clear blue sky.
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001858 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Daniel Dunbar86e2f402008-08-26 23:03:11 +00001859 const ObjCCategoryDecl *Category =
1860 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001861 std::string ExtName(Interface->getNameAsString() + "_" +
1862 OCD->getNameAsString());
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001863
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001864 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Douglas Gregor653f1b12009-04-23 01:02:12 +00001865 for (ObjCCategoryImplDecl::instmeth_iterator
1866 i = OCD->instmeth_begin(CGM.getContext()),
1867 e = OCD->instmeth_end(CGM.getContext()); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001868 // Instance methods should always be defined.
1869 InstanceMethods.push_back(GetMethodConstant(*i));
1870 }
Douglas Gregor653f1b12009-04-23 01:02:12 +00001871 for (ObjCCategoryImplDecl::classmeth_iterator
1872 i = OCD->classmeth_begin(CGM.getContext()),
1873 e = OCD->classmeth_end(CGM.getContext()); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001874 // Class methods should always be defined.
1875 ClassMethods.push_back(GetMethodConstant(*i));
1876 }
1877
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001878 std::vector<llvm::Constant*> Values(7);
1879 Values[0] = GetClassName(OCD->getIdentifier());
1880 Values[1] = GetClassName(Interface->getIdentifier());
Fariborz Jahanian679cd7f2009-04-29 20:40:05 +00001881 LazySymbols.insert(Interface->getIdentifier());
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001882 Values[2] =
1883 EmitMethodList(std::string("\01L_OBJC_CATEGORY_INSTANCE_METHODS_") +
1884 ExtName,
1885 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001886 InstanceMethods);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001887 Values[3] =
1888 EmitMethodList(std::string("\01L_OBJC_CATEGORY_CLASS_METHODS_") + ExtName,
Daniel Dunbar0bf21992009-04-15 02:56:18 +00001889 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001890 ClassMethods);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001891 if (Category) {
1892 Values[4] =
1893 EmitProtocolList(std::string("\01L_OBJC_CATEGORY_PROTOCOLS_") + ExtName,
1894 Category->protocol_begin(),
1895 Category->protocol_end());
1896 } else {
1897 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
1898 }
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001899 Values[5] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00001900
1901 // If there is no category @interface then there can be no properties.
1902 if (Category) {
Daniel Dunbar0bf21992009-04-15 02:56:18 +00001903 Values[6] = EmitPropertyList(std::string("\01l_OBJC_$_PROP_LIST_") + ExtName,
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00001904 OCD, Category, ObjCTypes);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00001905 } else {
1906 Values[6] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
1907 }
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001908
1909 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.CategoryTy,
1910 Values);
1911
1912 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001913 CreateMetadataVar(std::string("\01L_OBJC_CATEGORY_")+ExtName, Init,
1914 "__OBJC,__category,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00001915 4, true);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001916 DefinedCategories.push_back(GV);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001917}
1918
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001919// FIXME: Get from somewhere?
1920enum ClassFlags {
1921 eClassFlags_Factory = 0x00001,
1922 eClassFlags_Meta = 0x00002,
1923 // <rdr://5142207>
1924 eClassFlags_HasCXXStructors = 0x02000,
1925 eClassFlags_Hidden = 0x20000,
1926 eClassFlags_ABI2_Hidden = 0x00010,
1927 eClassFlags_ABI2_HasCXXStructors = 0x00004 // <rdr://4923634>
1928};
1929
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001930/*
1931 struct _objc_class {
1932 Class isa;
1933 Class super_class;
1934 const char *name;
1935 long version;
1936 long info;
1937 long instance_size;
1938 struct _objc_ivar_list *ivars;
1939 struct _objc_method_list *methods;
1940 struct _objc_cache *cache;
1941 struct _objc_protocol_list *protocols;
1942 // Objective-C 1.0 extensions (<rdr://4585769>)
1943 const char *ivar_layout;
1944 struct _objc_class_ext *ext;
1945 };
1946
1947 See EmitClassExtension();
1948 */
1949void CGObjCMac::GenerateClass(const ObjCImplementationDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001950 DefinedSymbols.insert(ID->getIdentifier());
1951
Chris Lattner8ec03f52008-11-24 03:54:41 +00001952 std::string ClassName = ID->getNameAsString();
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001953 // FIXME: Gross
1954 ObjCInterfaceDecl *Interface =
1955 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbardbc93372008-08-21 21:57:41 +00001956 llvm::Constant *Protocols =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001957 EmitProtocolList("\01L_OBJC_CLASS_PROTOCOLS_" + ID->getNameAsString(),
Daniel Dunbardbc93372008-08-21 21:57:41 +00001958 Interface->protocol_begin(),
1959 Interface->protocol_end());
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001960 unsigned Flags = eClassFlags_Factory;
Daniel Dunbar2bebbf02009-05-03 10:46:44 +00001961 unsigned Size =
1962 CGM.getContext().getASTObjCImplementationLayout(ID).getSize() / 8;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001963
1964 // FIXME: Set CXX-structors flag.
Daniel Dunbar04d40782009-04-14 06:00:08 +00001965 if (CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden)
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001966 Flags |= eClassFlags_Hidden;
1967
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001968 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Douglas Gregor653f1b12009-04-23 01:02:12 +00001969 for (ObjCImplementationDecl::instmeth_iterator
1970 i = ID->instmeth_begin(CGM.getContext()),
1971 e = ID->instmeth_end(CGM.getContext()); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001972 // Instance methods should always be defined.
1973 InstanceMethods.push_back(GetMethodConstant(*i));
1974 }
Douglas Gregor653f1b12009-04-23 01:02:12 +00001975 for (ObjCImplementationDecl::classmeth_iterator
1976 i = ID->classmeth_begin(CGM.getContext()),
1977 e = ID->classmeth_end(CGM.getContext()); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001978 // Class methods should always be defined.
1979 ClassMethods.push_back(GetMethodConstant(*i));
1980 }
1981
Douglas Gregor653f1b12009-04-23 01:02:12 +00001982 for (ObjCImplementationDecl::propimpl_iterator
1983 i = ID->propimpl_begin(CGM.getContext()),
1984 e = ID->propimpl_end(CGM.getContext()); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001985 ObjCPropertyImplDecl *PID = *i;
1986
1987 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
1988 ObjCPropertyDecl *PD = PID->getPropertyDecl();
1989
1990 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
1991 if (llvm::Constant *C = GetMethodConstant(MD))
1992 InstanceMethods.push_back(C);
1993 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
1994 if (llvm::Constant *C = GetMethodConstant(MD))
1995 InstanceMethods.push_back(C);
1996 }
1997 }
1998
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001999 std::vector<llvm::Constant*> Values(12);
Daniel Dunbar5384b092009-05-03 08:56:52 +00002000 Values[ 0] = EmitMetaClass(ID, Protocols, ClassMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002001 if (ObjCInterfaceDecl *Super = Interface->getSuperClass()) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002002 // Record a reference to the super class.
2003 LazySymbols.insert(Super->getIdentifier());
2004
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002005 Values[ 1] =
2006 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
2007 ObjCTypes.ClassPtrTy);
2008 } else {
2009 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
2010 }
2011 Values[ 2] = GetClassName(ID->getIdentifier());
2012 // Version is always 0.
2013 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2014 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2015 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002016 Values[ 6] = EmitIvarList(ID, false);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002017 Values[ 7] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002018 EmitMethodList("\01L_OBJC_INSTANCE_METHODS_" + ID->getNameAsString(),
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002019 "__OBJC,__inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002020 InstanceMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002021 // cache is always NULL.
2022 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
2023 Values[ 9] = Protocols;
Fariborz Jahanianc71303d2009-04-22 23:00:43 +00002024 Values[10] = BuildIvarLayout(ID, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002025 Values[11] = EmitClassExtension(ID);
2026 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
2027 Values);
2028
2029 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002030 CreateMetadataVar(std::string("\01L_OBJC_CLASS_")+ClassName, Init,
2031 "__OBJC,__class,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002032 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002033 DefinedClasses.push_back(GV);
2034}
2035
2036llvm::Constant *CGObjCMac::EmitMetaClass(const ObjCImplementationDecl *ID,
2037 llvm::Constant *Protocols,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002038 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002039 unsigned Flags = eClassFlags_Meta;
Duncan Sands9408c452009-05-09 07:08:47 +00002040 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002041
Daniel Dunbar04d40782009-04-14 06:00:08 +00002042 if (CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden)
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002043 Flags |= eClassFlags_Hidden;
2044
2045 std::vector<llvm::Constant*> Values(12);
2046 // The isa for the metaclass is the root of the hierarchy.
2047 const ObjCInterfaceDecl *Root = ID->getClassInterface();
2048 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
2049 Root = Super;
2050 Values[ 0] =
2051 llvm::ConstantExpr::getBitCast(GetClassName(Root->getIdentifier()),
2052 ObjCTypes.ClassPtrTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002053 // The super class for the metaclass is emitted as the name of the
2054 // super class. The runtime fixes this up to point to the
2055 // *metaclass* for the super class.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002056 if (ObjCInterfaceDecl *Super = ID->getClassInterface()->getSuperClass()) {
2057 Values[ 1] =
2058 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
2059 ObjCTypes.ClassPtrTy);
2060 } else {
2061 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
2062 }
2063 Values[ 2] = GetClassName(ID->getIdentifier());
2064 // Version is always 0.
2065 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2066 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2067 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002068 Values[ 6] = EmitIvarList(ID, true);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002069 Values[ 7] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002070 EmitMethodList("\01L_OBJC_CLASS_METHODS_" + ID->getNameAsString(),
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002071 "__OBJC,__cls_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002072 Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002073 // cache is always NULL.
2074 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
2075 Values[ 9] = Protocols;
2076 // ivar_layout for metaclass is always NULL.
2077 Values[10] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
2078 // The class extension is always unused for metaclasses.
2079 Values[11] = llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
2080 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
2081 Values);
2082
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002083 std::string Name("\01L_OBJC_METACLASS_");
Chris Lattner8ec03f52008-11-24 03:54:41 +00002084 Name += ID->getNameAsCString();
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002085
2086 // Check for a forward reference.
2087 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2088 if (GV) {
2089 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2090 "Forward metaclass reference has incorrect type.");
2091 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2092 GV->setInitializer(Init);
2093 } else {
2094 GV = new llvm::GlobalVariable(ObjCTypes.ClassTy, false,
2095 llvm::GlobalValue::InternalLinkage,
2096 Init, Name,
2097 &CGM.getModule());
2098 }
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002099 GV->setSection("__OBJC,__meta_class,regular,no_dead_strip");
Daniel Dunbar58a29122009-03-09 22:18:41 +00002100 GV->setAlignment(4);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002101 UsedGlobals.push_back(GV);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002102
2103 return GV;
2104}
2105
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002106llvm::Constant *CGObjCMac::EmitMetaClassRef(const ObjCInterfaceDecl *ID) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002107 std::string Name = "\01L_OBJC_METACLASS_" + ID->getNameAsString();
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002108
2109 // FIXME: Should we look these up somewhere other than the
2110 // module. Its a bit silly since we only generate these while
2111 // processing an implementation, so exactly one pointer would work
2112 // if know when we entered/exitted an implementation block.
2113
2114 // Check for an existing forward reference.
Fariborz Jahanianb0d27942009-01-07 20:11:22 +00002115 // Previously, metaclass with internal linkage may have been defined.
2116 // pass 'true' as 2nd argument so it is returned.
2117 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true)) {
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002118 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2119 "Forward metaclass reference has incorrect type.");
2120 return GV;
2121 } else {
2122 // Generate as an external reference to keep a consistent
2123 // module. This will be patched up when we emit the metaclass.
2124 return new llvm::GlobalVariable(ObjCTypes.ClassTy, false,
2125 llvm::GlobalValue::ExternalLinkage,
2126 0,
2127 Name,
2128 &CGM.getModule());
2129 }
2130}
2131
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002132/*
2133 struct objc_class_ext {
2134 uint32_t size;
2135 const char *weak_ivar_layout;
2136 struct _objc_property_list *properties;
2137 };
2138*/
2139llvm::Constant *
2140CGObjCMac::EmitClassExtension(const ObjCImplementationDecl *ID) {
2141 uint64_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00002142 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassExtensionTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002143
2144 std::vector<llvm::Constant*> Values(3);
2145 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanianc71303d2009-04-22 23:00:43 +00002146 Values[1] = BuildIvarLayout(ID, false);
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002147 Values[2] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getNameAsString(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00002148 ID, ID->getClassInterface(), ObjCTypes);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002149
2150 // Return null if no extension bits are used.
2151 if (Values[1]->isNullValue() && Values[2]->isNullValue())
2152 return llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
2153
2154 llvm::Constant *Init =
2155 llvm::ConstantStruct::get(ObjCTypes.ClassExtensionTy, Values);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002156 return CreateMetadataVar("\01L_OBJC_CLASSEXT_" + ID->getNameAsString(),
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002157 Init, "__OBJC,__class_ext,regular,no_dead_strip",
2158 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002159}
2160
2161/*
2162 struct objc_ivar {
2163 char *ivar_name;
2164 char *ivar_type;
2165 int ivar_offset;
2166 };
2167
2168 struct objc_ivar_list {
2169 int ivar_count;
2170 struct objc_ivar list[count];
2171 };
2172 */
2173llvm::Constant *CGObjCMac::EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002174 bool ForClass) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002175 std::vector<llvm::Constant*> Ivars, Ivar(3);
2176
2177 // When emitting the root class GCC emits ivar entries for the
2178 // actual class structure. It is not clear if we need to follow this
2179 // behavior; for now lets try and get away with not doing it. If so,
2180 // the cleanest solution would be to make up an ObjCInterfaceDecl
2181 // for the class.
2182 if (ForClass)
2183 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002184
2185 ObjCInterfaceDecl *OID =
2186 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002187
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00002188 llvm::SmallVector<ObjCIvarDecl*, 16> OIvars;
2189 GetNamedIvarList(OID, OIvars);
2190
2191 for (unsigned i = 0, e = OIvars.size(); i != e; ++i) {
2192 ObjCIvarDecl *IVD = OIvars[i];
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00002193 Ivar[0] = GetMethodVarName(IVD->getIdentifier());
2194 Ivar[1] = GetMethodVarType(IVD);
Daniel Dunbar6c1aac82009-04-20 20:18:54 +00002195 Ivar[2] = llvm::ConstantInt::get(ObjCTypes.IntTy,
Daniel Dunbar97776872009-04-22 07:32:20 +00002196 ComputeIvarBaseOffset(CGM, OID, IVD));
Daniel Dunbar0d504c12008-10-17 20:21:44 +00002197 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarTy, Ivar));
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002198 }
2199
2200 // Return null for empty list.
2201 if (Ivars.empty())
2202 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
2203
2204 std::vector<llvm::Constant*> Values(2);
2205 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
2206 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarTy,
2207 Ivars.size());
2208 Values[1] = llvm::ConstantArray::get(AT, Ivars);
2209 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
2210
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002211 llvm::GlobalVariable *GV;
2212 if (ForClass)
2213 GV = CreateMetadataVar("\01L_OBJC_CLASS_VARIABLES_" + ID->getNameAsString(),
Daniel Dunbar58a29122009-03-09 22:18:41 +00002214 Init, "__OBJC,__class_vars,regular,no_dead_strip",
2215 4, true);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002216 else
2217 GV = CreateMetadataVar("\01L_OBJC_INSTANCE_VARIABLES_"
2218 + ID->getNameAsString(),
2219 Init, "__OBJC,__instance_vars,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002220 4, true);
2221 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002222}
2223
2224/*
2225 struct objc_method {
2226 SEL method_name;
2227 char *method_types;
2228 void *method;
2229 };
2230
2231 struct objc_method_list {
2232 struct objc_method_list *obsolete;
2233 int count;
2234 struct objc_method methods_list[count];
2235 };
2236*/
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002237
2238/// GetMethodConstant - Return a struct objc_method constant for the
2239/// given method if it has been defined. The result is null if the
2240/// method has not been defined. The return value has type MethodPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002241llvm::Constant *CGObjCMac::GetMethodConstant(const ObjCMethodDecl *MD) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002242 // FIXME: Use DenseMap::lookup
2243 llvm::Function *Fn = MethodDefinitions[MD];
2244 if (!Fn)
2245 return 0;
2246
2247 std::vector<llvm::Constant*> Method(3);
2248 Method[0] =
2249 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
2250 ObjCTypes.SelectorPtrTy);
2251 Method[1] = GetMethodVarType(MD);
2252 Method[2] = llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy);
2253 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
2254}
2255
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002256llvm::Constant *CGObjCMac::EmitMethodList(const std::string &Name,
2257 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002258 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002259 // Return null for empty list.
2260 if (Methods.empty())
2261 return llvm::Constant::getNullValue(ObjCTypes.MethodListPtrTy);
2262
2263 std::vector<llvm::Constant*> Values(3);
2264 Values[0] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
2265 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
2266 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
2267 Methods.size());
2268 Values[2] = llvm::ConstantArray::get(AT, Methods);
2269 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
2270
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002271 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002272 return llvm::ConstantExpr::getBitCast(GV,
2273 ObjCTypes.MethodListPtrTy);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002274}
2275
Fariborz Jahanian493dab72009-01-26 21:38:32 +00002276llvm::Function *CGObjCCommonMac::GenerateMethod(const ObjCMethodDecl *OMD,
Daniel Dunbarbb36d332009-02-02 21:43:58 +00002277 const ObjCContainerDecl *CD) {
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002278 std::string Name;
Fariborz Jahanian679a5022009-01-10 21:06:09 +00002279 GetNameForMethod(OMD, CD, Name);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002280
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002281 CodeGenTypes &Types = CGM.getTypes();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00002282 const llvm::FunctionType *MethodTy =
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002283 Types.GetFunctionType(Types.getFunctionInfo(OMD), OMD->isVariadic());
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002284 llvm::Function *Method =
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00002285 llvm::Function::Create(MethodTy,
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002286 llvm::GlobalValue::InternalLinkage,
2287 Name,
2288 &CGM.getModule());
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002289 MethodDefinitions.insert(std::make_pair(OMD, Method));
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002290
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002291 return Method;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002292}
2293
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002294llvm::GlobalVariable *
2295CGObjCCommonMac::CreateMetadataVar(const std::string &Name,
2296 llvm::Constant *Init,
2297 const char *Section,
Daniel Dunbar35bd7632009-03-09 20:50:13 +00002298 unsigned Align,
2299 bool AddToUsed) {
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002300 const llvm::Type *Ty = Init->getType();
2301 llvm::GlobalVariable *GV =
2302 new llvm::GlobalVariable(Ty, false,
2303 llvm::GlobalValue::InternalLinkage,
2304 Init,
2305 Name,
2306 &CGM.getModule());
2307 if (Section)
2308 GV->setSection(Section);
Daniel Dunbar35bd7632009-03-09 20:50:13 +00002309 if (Align)
2310 GV->setAlignment(Align);
2311 if (AddToUsed)
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002312 UsedGlobals.push_back(GV);
2313 return GV;
2314}
2315
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002316llvm::Function *CGObjCMac::ModuleInitFunction() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002317 // Abuse this interface function as a place to finalize.
2318 FinishModule();
2319
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002320 return NULL;
2321}
2322
Chris Lattner74391b42009-03-22 21:03:39 +00002323llvm::Constant *CGObjCMac::GetPropertyGetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002324 return ObjCTypes.getGetPropertyFn();
Daniel Dunbar49f66022008-09-24 03:38:44 +00002325}
2326
Chris Lattner74391b42009-03-22 21:03:39 +00002327llvm::Constant *CGObjCMac::GetPropertySetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002328 return ObjCTypes.getSetPropertyFn();
Daniel Dunbar49f66022008-09-24 03:38:44 +00002329}
2330
Chris Lattner74391b42009-03-22 21:03:39 +00002331llvm::Constant *CGObjCMac::EnumerationMutationFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002332 return ObjCTypes.getEnumerationMutationFn();
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002333}
2334
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002335/*
2336
2337Objective-C setjmp-longjmp (sjlj) Exception Handling
2338--
2339
2340The basic framework for a @try-catch-finally is as follows:
2341{
2342 objc_exception_data d;
2343 id _rethrow = null;
Anders Carlsson190d00e2009-02-07 21:26:04 +00002344 bool _call_try_exit = true;
2345
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002346 objc_exception_try_enter(&d);
2347 if (!setjmp(d.jmp_buf)) {
2348 ... try body ...
2349 } else {
2350 // exception path
2351 id _caught = objc_exception_extract(&d);
2352
2353 // enter new try scope for handlers
2354 if (!setjmp(d.jmp_buf)) {
2355 ... match exception and execute catch blocks ...
2356
2357 // fell off end, rethrow.
2358 _rethrow = _caught;
Daniel Dunbar898d5082008-09-30 01:06:03 +00002359 ... jump-through-finally to finally_rethrow ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002360 } else {
2361 // exception in catch block
2362 _rethrow = objc_exception_extract(&d);
Anders Carlsson190d00e2009-02-07 21:26:04 +00002363 _call_try_exit = false;
2364 ... jump-through-finally to finally_rethrow ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002365 }
2366 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00002367 ... jump-through-finally to finally_end ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002368
2369finally:
Anders Carlsson190d00e2009-02-07 21:26:04 +00002370 if (_call_try_exit)
2371 objc_exception_try_exit(&d);
2372
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002373 ... finally block ....
Daniel Dunbar898d5082008-09-30 01:06:03 +00002374 ... dispatch to finally destination ...
2375
2376finally_rethrow:
2377 objc_exception_throw(_rethrow);
2378
2379finally_end:
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002380}
2381
2382This framework differs slightly from the one gcc uses, in that gcc
Daniel Dunbar898d5082008-09-30 01:06:03 +00002383uses _rethrow to determine if objc_exception_try_exit should be called
2384and if the object should be rethrown. This breaks in the face of
2385throwing nil and introduces unnecessary branches.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002386
2387We specialize this framework for a few particular circumstances:
2388
2389 - If there are no catch blocks, then we avoid emitting the second
2390 exception handling context.
2391
2392 - If there is a catch-all catch block (i.e. @catch(...) or @catch(id
2393 e)) we avoid emitting the code to rethrow an uncaught exception.
2394
2395 - FIXME: If there is no @finally block we can do a few more
2396 simplifications.
2397
2398Rethrows and Jumps-Through-Finally
2399--
2400
2401Support for implicit rethrows and jumping through the finally block is
2402handled by storing the current exception-handling context in
2403ObjCEHStack.
2404
Daniel Dunbar898d5082008-09-30 01:06:03 +00002405In order to implement proper @finally semantics, we support one basic
2406mechanism for jumping through the finally block to an arbitrary
2407destination. Constructs which generate exits from a @try or @catch
2408block use this mechanism to implement the proper semantics by chaining
2409jumps, as necessary.
2410
2411This mechanism works like the one used for indirect goto: we
2412arbitrarily assign an ID to each destination and store the ID for the
2413destination in a variable prior to entering the finally block. At the
2414end of the finally block we simply create a switch to the proper
2415destination.
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00002416
2417Code gen for @synchronized(expr) stmt;
2418Effectively generating code for:
2419objc_sync_enter(expr);
2420@try stmt @finally { objc_sync_exit(expr); }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002421*/
2422
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00002423void CGObjCMac::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
2424 const Stmt &S) {
2425 bool isTry = isa<ObjCAtTryStmt>(S);
Daniel Dunbar898d5082008-09-30 01:06:03 +00002426 // Create various blocks we refer to for handling @finally.
Daniel Dunbar55e87422008-11-11 02:29:29 +00002427 llvm::BasicBlock *FinallyBlock = CGF.createBasicBlock("finally");
Anders Carlsson190d00e2009-02-07 21:26:04 +00002428 llvm::BasicBlock *FinallyExit = CGF.createBasicBlock("finally.exit");
Daniel Dunbar55e87422008-11-11 02:29:29 +00002429 llvm::BasicBlock *FinallyNoExit = CGF.createBasicBlock("finally.noexit");
2430 llvm::BasicBlock *FinallyRethrow = CGF.createBasicBlock("finally.throw");
2431 llvm::BasicBlock *FinallyEnd = CGF.createBasicBlock("finally.end");
Daniel Dunbar1c566672009-02-24 01:43:46 +00002432
2433 // For @synchronized, call objc_sync_enter(sync.expr). The
2434 // evaluation of the expression must occur before we enter the
2435 // @synchronized. We can safely avoid a temp here because jumps into
2436 // @synchronized are illegal & this will dominate uses.
2437 llvm::Value *SyncArg = 0;
2438 if (!isTry) {
2439 SyncArg =
2440 CGF.EmitScalarExpr(cast<ObjCAtSynchronizedStmt>(S).getSynchExpr());
2441 SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy);
Chris Lattnerb02e53b2009-04-06 16:53:45 +00002442 CGF.Builder.CreateCall(ObjCTypes.getSyncEnterFn(), SyncArg);
Daniel Dunbar1c566672009-02-24 01:43:46 +00002443 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00002444
2445 // Push an EH context entry, used for handling rethrows and jumps
2446 // through finally.
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002447 CGF.PushCleanupBlock(FinallyBlock);
2448
Anders Carlsson273558f2009-02-07 21:37:21 +00002449 CGF.ObjCEHValueStack.push_back(0);
2450
Daniel Dunbar898d5082008-09-30 01:06:03 +00002451 // Allocate memory for the exception data and rethrow pointer.
Anders Carlsson80f25672008-09-09 17:59:25 +00002452 llvm::Value *ExceptionData = CGF.CreateTempAlloca(ObjCTypes.ExceptionDataTy,
2453 "exceptiondata.ptr");
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00002454 llvm::Value *RethrowPtr = CGF.CreateTempAlloca(ObjCTypes.ObjectPtrTy,
2455 "_rethrow");
Anders Carlsson190d00e2009-02-07 21:26:04 +00002456 llvm::Value *CallTryExitPtr = CGF.CreateTempAlloca(llvm::Type::Int1Ty,
2457 "_call_try_exit");
2458 CGF.Builder.CreateStore(llvm::ConstantInt::getTrue(), CallTryExitPtr);
2459
Anders Carlsson80f25672008-09-09 17:59:25 +00002460 // Enter a new try block and call setjmp.
Chris Lattner34b02a12009-04-22 02:26:14 +00002461 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData);
Anders Carlsson80f25672008-09-09 17:59:25 +00002462 llvm::Value *JmpBufPtr = CGF.Builder.CreateStructGEP(ExceptionData, 0,
2463 "jmpbufarray");
2464 JmpBufPtr = CGF.Builder.CreateStructGEP(JmpBufPtr, 0, "tmp");
Chris Lattner34b02a12009-04-22 02:26:14 +00002465 llvm::Value *SetJmpResult = CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(),
Anders Carlsson80f25672008-09-09 17:59:25 +00002466 JmpBufPtr, "result");
Daniel Dunbar898d5082008-09-30 01:06:03 +00002467
Daniel Dunbar55e87422008-11-11 02:29:29 +00002468 llvm::BasicBlock *TryBlock = CGF.createBasicBlock("try");
2469 llvm::BasicBlock *TryHandler = CGF.createBasicBlock("try.handler");
Daniel Dunbar91cd3202008-10-02 17:05:36 +00002470 CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(SetJmpResult, "threw"),
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00002471 TryHandler, TryBlock);
Anders Carlsson80f25672008-09-09 17:59:25 +00002472
2473 // Emit the @try block.
2474 CGF.EmitBlock(TryBlock);
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00002475 CGF.EmitStmt(isTry ? cast<ObjCAtTryStmt>(S).getTryBody()
2476 : cast<ObjCAtSynchronizedStmt>(S).getSynchBody());
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002477 CGF.EmitBranchThroughCleanup(FinallyEnd);
Anders Carlsson80f25672008-09-09 17:59:25 +00002478
2479 // Emit the "exception in @try" block.
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00002480 CGF.EmitBlock(TryHandler);
Daniel Dunbar55e40722008-09-27 07:03:52 +00002481
2482 // Retrieve the exception object. We may emit multiple blocks but
2483 // nothing can cross this so the value is already in SSA form.
Chris Lattner34b02a12009-04-22 02:26:14 +00002484 llvm::Value *Caught =
2485 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
2486 ExceptionData, "caught");
Anders Carlsson273558f2009-02-07 21:37:21 +00002487 CGF.ObjCEHValueStack.back() = Caught;
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00002488 if (!isTry)
2489 {
2490 CGF.Builder.CreateStore(Caught, RethrowPtr);
Anders Carlsson190d00e2009-02-07 21:26:04 +00002491 CGF.Builder.CreateStore(llvm::ConstantInt::getFalse(), CallTryExitPtr);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002492 CGF.EmitBranchThroughCleanup(FinallyRethrow);
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00002493 }
2494 else if (const ObjCAtCatchStmt* CatchStmt =
2495 cast<ObjCAtTryStmt>(S).getCatchStmts())
2496 {
Daniel Dunbar55e40722008-09-27 07:03:52 +00002497 // Enter a new exception try block (in case a @catch block throws
2498 // an exception).
Chris Lattner34b02a12009-04-22 02:26:14 +00002499 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData);
Daniel Dunbar55e40722008-09-27 07:03:52 +00002500
Chris Lattner34b02a12009-04-22 02:26:14 +00002501 llvm::Value *SetJmpResult = CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(),
Anders Carlsson80f25672008-09-09 17:59:25 +00002502 JmpBufPtr, "result");
Daniel Dunbar91cd3202008-10-02 17:05:36 +00002503 llvm::Value *Threw = CGF.Builder.CreateIsNotNull(SetJmpResult, "threw");
Anders Carlsson80f25672008-09-09 17:59:25 +00002504
Daniel Dunbar55e87422008-11-11 02:29:29 +00002505 llvm::BasicBlock *CatchBlock = CGF.createBasicBlock("catch");
2506 llvm::BasicBlock *CatchHandler = CGF.createBasicBlock("catch.handler");
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00002507 CGF.Builder.CreateCondBr(Threw, CatchHandler, CatchBlock);
Anders Carlsson80f25672008-09-09 17:59:25 +00002508
2509 CGF.EmitBlock(CatchBlock);
2510
Daniel Dunbar55e40722008-09-27 07:03:52 +00002511 // Handle catch list. As a special case we check if everything is
2512 // matched and avoid generating code for falling off the end if
2513 // so.
2514 bool AllMatched = false;
Anders Carlsson80f25672008-09-09 17:59:25 +00002515 for (; CatchStmt; CatchStmt = CatchStmt->getNextCatchStmt()) {
Daniel Dunbar55e87422008-11-11 02:29:29 +00002516 llvm::BasicBlock *NextCatchBlock = CGF.createBasicBlock("catch");
Anders Carlsson80f25672008-09-09 17:59:25 +00002517
Steve Naroff7ba138a2009-03-03 19:52:17 +00002518 const ParmVarDecl *CatchParam = CatchStmt->getCatchParamDecl();
Daniel Dunbar129271a2008-09-27 07:36:24 +00002519 const PointerType *PT = 0;
2520
Anders Carlsson80f25672008-09-09 17:59:25 +00002521 // catch(...) always matches.
Daniel Dunbar55e40722008-09-27 07:03:52 +00002522 if (!CatchParam) {
2523 AllMatched = true;
2524 } else {
Steve Naroff7ba138a2009-03-03 19:52:17 +00002525 PT = CatchParam->getType()->getAsPointerType();
Anders Carlsson80f25672008-09-09 17:59:25 +00002526
Daniel Dunbar97f61d12008-09-27 22:21:14 +00002527 // catch(id e) always matches.
2528 // FIXME: For the time being we also match id<X>; this should
2529 // be rejected by Sema instead.
Steve Naroff389bf462009-02-12 17:52:19 +00002530 if ((PT && CGF.getContext().isObjCIdStructType(PT->getPointeeType())) ||
Steve Naroff7ba138a2009-03-03 19:52:17 +00002531 CatchParam->getType()->isObjCQualifiedIdType())
Daniel Dunbar55e40722008-09-27 07:03:52 +00002532 AllMatched = true;
Anders Carlsson80f25672008-09-09 17:59:25 +00002533 }
2534
Daniel Dunbar55e40722008-09-27 07:03:52 +00002535 if (AllMatched) {
Anders Carlssondde0a942008-09-11 09:15:33 +00002536 if (CatchParam) {
Steve Naroff7ba138a2009-03-03 19:52:17 +00002537 CGF.EmitLocalBlockVarDecl(*CatchParam);
Daniel Dunbara448fb22008-11-11 23:11:34 +00002538 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
Steve Naroff7ba138a2009-03-03 19:52:17 +00002539 CGF.Builder.CreateStore(Caught, CGF.GetAddrOfLocalVar(CatchParam));
Anders Carlssondde0a942008-09-11 09:15:33 +00002540 }
Anders Carlsson1452f552008-09-11 08:21:54 +00002541
Anders Carlssondde0a942008-09-11 09:15:33 +00002542 CGF.EmitStmt(CatchStmt->getCatchBody());
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002543 CGF.EmitBranchThroughCleanup(FinallyEnd);
Anders Carlsson80f25672008-09-09 17:59:25 +00002544 break;
2545 }
2546
Daniel Dunbar129271a2008-09-27 07:36:24 +00002547 assert(PT && "Unexpected non-pointer type in @catch");
2548 QualType T = PT->getPointeeType();
Anders Carlsson4b7ff6e2008-09-11 06:35:14 +00002549 const ObjCInterfaceType *ObjCType = T->getAsObjCInterfaceType();
Anders Carlsson80f25672008-09-09 17:59:25 +00002550 assert(ObjCType && "Catch parameter must have Objective-C type!");
2551
2552 // Check if the @catch block matches the exception object.
2553 llvm::Value *Class = EmitClassRef(CGF.Builder, ObjCType->getDecl());
2554
Chris Lattner34b02a12009-04-22 02:26:14 +00002555 llvm::Value *Match =
2556 CGF.Builder.CreateCall2(ObjCTypes.getExceptionMatchFn(),
2557 Class, Caught, "match");
Anders Carlsson80f25672008-09-09 17:59:25 +00002558
Daniel Dunbar55e87422008-11-11 02:29:29 +00002559 llvm::BasicBlock *MatchedBlock = CGF.createBasicBlock("matched");
Anders Carlsson80f25672008-09-09 17:59:25 +00002560
Daniel Dunbar91cd3202008-10-02 17:05:36 +00002561 CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(Match, "matched"),
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00002562 MatchedBlock, NextCatchBlock);
Anders Carlsson80f25672008-09-09 17:59:25 +00002563
2564 // Emit the @catch block.
2565 CGF.EmitBlock(MatchedBlock);
Steve Naroff7ba138a2009-03-03 19:52:17 +00002566 CGF.EmitLocalBlockVarDecl(*CatchParam);
Daniel Dunbara448fb22008-11-11 23:11:34 +00002567 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002568
2569 llvm::Value *Tmp =
Steve Naroff7ba138a2009-03-03 19:52:17 +00002570 CGF.Builder.CreateBitCast(Caught, CGF.ConvertType(CatchParam->getType()),
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002571 "tmp");
Steve Naroff7ba138a2009-03-03 19:52:17 +00002572 CGF.Builder.CreateStore(Tmp, CGF.GetAddrOfLocalVar(CatchParam));
Anders Carlssondde0a942008-09-11 09:15:33 +00002573
2574 CGF.EmitStmt(CatchStmt->getCatchBody());
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002575 CGF.EmitBranchThroughCleanup(FinallyEnd);
Anders Carlsson80f25672008-09-09 17:59:25 +00002576
2577 CGF.EmitBlock(NextCatchBlock);
2578 }
2579
Daniel Dunbar55e40722008-09-27 07:03:52 +00002580 if (!AllMatched) {
2581 // None of the handlers caught the exception, so store it to be
2582 // rethrown at the end of the @finally block.
2583 CGF.Builder.CreateStore(Caught, RethrowPtr);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002584 CGF.EmitBranchThroughCleanup(FinallyRethrow);
Daniel Dunbar55e40722008-09-27 07:03:52 +00002585 }
2586
2587 // Emit the exception handler for the @catch blocks.
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00002588 CGF.EmitBlock(CatchHandler);
Chris Lattner34b02a12009-04-22 02:26:14 +00002589 CGF.Builder.CreateStore(
2590 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
2591 ExceptionData),
Daniel Dunbar55e40722008-09-27 07:03:52 +00002592 RethrowPtr);
Anders Carlsson190d00e2009-02-07 21:26:04 +00002593 CGF.Builder.CreateStore(llvm::ConstantInt::getFalse(), CallTryExitPtr);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002594 CGF.EmitBranchThroughCleanup(FinallyRethrow);
Daniel Dunbar55e40722008-09-27 07:03:52 +00002595 } else {
Anders Carlsson80f25672008-09-09 17:59:25 +00002596 CGF.Builder.CreateStore(Caught, RethrowPtr);
Anders Carlsson190d00e2009-02-07 21:26:04 +00002597 CGF.Builder.CreateStore(llvm::ConstantInt::getFalse(), CallTryExitPtr);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002598 CGF.EmitBranchThroughCleanup(FinallyRethrow);
Anders Carlsson80f25672008-09-09 17:59:25 +00002599 }
2600
Daniel Dunbar898d5082008-09-30 01:06:03 +00002601 // Pop the exception-handling stack entry. It is important to do
2602 // this now, because the code in the @finally block is not in this
2603 // context.
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002604 CodeGenFunction::CleanupBlockInfo Info = CGF.PopCleanupBlock();
2605
Anders Carlsson273558f2009-02-07 21:37:21 +00002606 CGF.ObjCEHValueStack.pop_back();
2607
Anders Carlsson80f25672008-09-09 17:59:25 +00002608 // Emit the @finally block.
2609 CGF.EmitBlock(FinallyBlock);
Anders Carlsson190d00e2009-02-07 21:26:04 +00002610 llvm::Value* CallTryExit = CGF.Builder.CreateLoad(CallTryExitPtr, "tmp");
2611
2612 CGF.Builder.CreateCondBr(CallTryExit, FinallyExit, FinallyNoExit);
2613
2614 CGF.EmitBlock(FinallyExit);
Chris Lattner34b02a12009-04-22 02:26:14 +00002615 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryExitFn(), ExceptionData);
Daniel Dunbar129271a2008-09-27 07:36:24 +00002616
2617 CGF.EmitBlock(FinallyNoExit);
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00002618 if (isTry) {
2619 if (const ObjCAtFinallyStmt* FinallyStmt =
2620 cast<ObjCAtTryStmt>(S).getFinallyStmt())
2621 CGF.EmitStmt(FinallyStmt->getFinallyBody());
Daniel Dunbar1c566672009-02-24 01:43:46 +00002622 } else {
2623 // Emit objc_sync_exit(expr); as finally's sole statement for
2624 // @synchronized.
Chris Lattnerbbccd612009-04-22 02:38:11 +00002625 CGF.Builder.CreateCall(ObjCTypes.getSyncExitFn(), SyncArg);
Fariborz Jahanianf2878e52008-11-21 19:21:53 +00002626 }
Anders Carlsson80f25672008-09-09 17:59:25 +00002627
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002628 // Emit the switch block
2629 if (Info.SwitchBlock)
2630 CGF.EmitBlock(Info.SwitchBlock);
2631 if (Info.EndBlock)
2632 CGF.EmitBlock(Info.EndBlock);
2633
Daniel Dunbar898d5082008-09-30 01:06:03 +00002634 CGF.EmitBlock(FinallyRethrow);
Chris Lattnerbbccd612009-04-22 02:38:11 +00002635 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(),
Daniel Dunbar898d5082008-09-30 01:06:03 +00002636 CGF.Builder.CreateLoad(RethrowPtr));
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00002637 CGF.Builder.CreateUnreachable();
Daniel Dunbar898d5082008-09-30 01:06:03 +00002638
2639 CGF.EmitBlock(FinallyEnd);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00002640}
2641
2642void CGObjCMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar898d5082008-09-30 01:06:03 +00002643 const ObjCAtThrowStmt &S) {
Anders Carlsson2b1e3112008-09-09 16:16:55 +00002644 llvm::Value *ExceptionAsObject;
2645
2646 if (const Expr *ThrowExpr = S.getThrowExpr()) {
2647 llvm::Value *Exception = CGF.EmitScalarExpr(ThrowExpr);
2648 ExceptionAsObject =
2649 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy, "tmp");
2650 } else {
Anders Carlsson273558f2009-02-07 21:37:21 +00002651 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002652 "Unexpected rethrow outside @catch block.");
Anders Carlsson273558f2009-02-07 21:37:21 +00002653 ExceptionAsObject = CGF.ObjCEHValueStack.back();
Anders Carlsson2b1e3112008-09-09 16:16:55 +00002654 }
2655
Chris Lattnerbbccd612009-04-22 02:38:11 +00002656 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), ExceptionAsObject);
Anders Carlsson80f25672008-09-09 17:59:25 +00002657 CGF.Builder.CreateUnreachable();
Daniel Dunbara448fb22008-11-11 23:11:34 +00002658
2659 // Clear the insertion point to indicate we are in unreachable code.
2660 CGF.Builder.ClearInsertionPoint();
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00002661}
2662
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00002663/// EmitObjCWeakRead - Code gen for loading value of a __weak
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00002664/// object: objc_read_weak (id *src)
2665///
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00002666llvm::Value * CGObjCMac::EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00002667 llvm::Value *AddrWeakObj)
2668{
Eli Friedman8339b352009-03-07 03:57:15 +00002669 const llvm::Type* DestTy =
2670 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00002671 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj, ObjCTypes.PtrObjectPtrTy);
Chris Lattner72db6c32009-04-22 02:44:54 +00002672 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00002673 AddrWeakObj, "weakread");
Eli Friedman8339b352009-03-07 03:57:15 +00002674 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00002675 return read_weak;
2676}
2677
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00002678/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
2679/// objc_assign_weak (id src, id *dst)
2680///
2681void CGObjCMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
2682 llvm::Value *src, llvm::Value *dst)
2683{
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00002684 const llvm::Type * SrcTy = src->getType();
2685 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00002686 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00002687 assert(Size <= 8 && "does not support size > 8");
2688 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
2689 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00002690 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
2691 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00002692 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
2693 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner96508e12009-04-17 22:12:36 +00002694 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00002695 src, dst, "weakassign");
2696 return;
2697}
2698
Fariborz Jahanian58626502008-11-19 00:59:10 +00002699/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
2700/// objc_assign_global (id src, id *dst)
2701///
2702void CGObjCMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
2703 llvm::Value *src, llvm::Value *dst)
2704{
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00002705 const llvm::Type * SrcTy = src->getType();
2706 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00002707 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00002708 assert(Size <= 8 && "does not support size > 8");
2709 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
2710 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00002711 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
2712 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00002713 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
2714 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00002715 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
Fariborz Jahanian58626502008-11-19 00:59:10 +00002716 src, dst, "globalassign");
2717 return;
2718}
2719
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00002720/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
2721/// objc_assign_ivar (id src, id *dst)
2722///
2723void CGObjCMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
2724 llvm::Value *src, llvm::Value *dst)
2725{
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00002726 const llvm::Type * SrcTy = src->getType();
2727 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00002728 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00002729 assert(Size <= 8 && "does not support size > 8");
2730 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
2731 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00002732 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
2733 }
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00002734 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
2735 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00002736 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignIvarFn(),
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00002737 src, dst, "assignivar");
2738 return;
2739}
2740
Fariborz Jahanian58626502008-11-19 00:59:10 +00002741/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
2742/// objc_assign_strongCast (id src, id *dst)
2743///
2744void CGObjCMac::EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
2745 llvm::Value *src, llvm::Value *dst)
2746{
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00002747 const llvm::Type * SrcTy = src->getType();
2748 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00002749 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00002750 assert(Size <= 8 && "does not support size > 8");
2751 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
2752 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00002753 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
2754 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00002755 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
2756 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00002757 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian58626502008-11-19 00:59:10 +00002758 src, dst, "weakassign");
2759 return;
2760}
2761
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00002762/// EmitObjCValueForIvar - Code Gen for ivar reference.
2763///
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00002764LValue CGObjCMac::EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
2765 QualType ObjectTy,
2766 llvm::Value *BaseValue,
2767 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00002768 unsigned CVRQualifiers) {
Daniel Dunbar525c9b72009-04-21 01:19:28 +00002769 const ObjCInterfaceDecl *ID = ObjectTy->getAsObjCInterfaceType()->getDecl();
Daniel Dunbar97776872009-04-22 07:32:20 +00002770 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
2771 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00002772}
2773
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00002774llvm::Value *CGObjCMac::EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00002775 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00002776 const ObjCIvarDecl *Ivar) {
Daniel Dunbar97776872009-04-22 07:32:20 +00002777 uint64_t Offset = ComputeIvarBaseOffset(CGM, Interface, Ivar);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00002778 return llvm::ConstantInt::get(
2779 CGM.getTypes().ConvertType(CGM.getContext().LongTy),
2780 Offset);
2781}
2782
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002783/* *** Private Interface *** */
2784
2785/// EmitImageInfo - Emit the image info marker used to encode some module
2786/// level information.
2787///
2788/// See: <rdr://4810609&4810587&4810587>
2789/// struct IMAGE_INFO {
2790/// unsigned version;
2791/// unsigned flags;
2792/// };
2793enum ImageInfoFlags {
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00002794 eImageInfo_FixAndContinue = (1 << 0), // FIXME: Not sure what
2795 // this implies.
2796 eImageInfo_GarbageCollected = (1 << 1),
2797 eImageInfo_GCOnly = (1 << 2),
2798 eImageInfo_OptimizedByDyld = (1 << 3), // FIXME: When is this set.
2799
2800 // A flag indicating that the module has no instances of an
2801 // @synthesize of a superclass variable. <rdar://problem/6803242>
2802 eImageInfo_CorrectedSynthesize = (1 << 4)
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002803};
2804
2805void CGObjCMac::EmitImageInfo() {
2806 unsigned version = 0; // Version is unused?
2807 unsigned flags = 0;
2808
2809 // FIXME: Fix and continue?
2810 if (CGM.getLangOptions().getGCMode() != LangOptions::NonGC)
2811 flags |= eImageInfo_GarbageCollected;
2812 if (CGM.getLangOptions().getGCMode() == LangOptions::GCOnly)
2813 flags |= eImageInfo_GCOnly;
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00002814
2815 // We never allow @synthesize of a superclass property.
2816 flags |= eImageInfo_CorrectedSynthesize;
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002817
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002818 // Emitted as int[2];
2819 llvm::Constant *values[2] = {
2820 llvm::ConstantInt::get(llvm::Type::Int32Ty, version),
2821 llvm::ConstantInt::get(llvm::Type::Int32Ty, flags)
2822 };
2823 llvm::ArrayType *AT = llvm::ArrayType::get(llvm::Type::Int32Ty, 2);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002824
2825 const char *Section;
2826 if (ObjCABI == 1)
2827 Section = "__OBJC, __image_info,regular";
2828 else
2829 Section = "__DATA, __objc_imageinfo, regular, no_dead_strip";
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002830 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002831 CreateMetadataVar("\01L_OBJC_IMAGE_INFO",
2832 llvm::ConstantArray::get(AT, values, 2),
2833 Section,
2834 0,
2835 true);
2836 GV->setConstant(true);
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002837}
2838
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002839
2840// struct objc_module {
2841// unsigned long version;
2842// unsigned long size;
2843// const char *name;
2844// Symtab symtab;
2845// };
2846
2847// FIXME: Get from somewhere
2848static const int ModuleVersion = 7;
2849
2850void CGObjCMac::EmitModuleInfo() {
Duncan Sands9408c452009-05-09 07:08:47 +00002851 uint64_t Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ModuleTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002852
2853 std::vector<llvm::Constant*> Values(4);
2854 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, ModuleVersion);
2855 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002856 // This used to be the filename, now it is unused. <rdr://4327263>
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002857 Values[2] = GetClassName(&CGM.getContext().Idents.get(""));
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002858 Values[3] = EmitModuleSymbols();
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002859 CreateMetadataVar("\01L_OBJC_MODULES",
2860 llvm::ConstantStruct::get(ObjCTypes.ModuleTy, Values),
2861 "__OBJC,__module_info,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002862 4, true);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002863}
2864
2865llvm::Constant *CGObjCMac::EmitModuleSymbols() {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002866 unsigned NumClasses = DefinedClasses.size();
2867 unsigned NumCategories = DefinedCategories.size();
2868
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002869 // Return null if no symbols were defined.
2870 if (!NumClasses && !NumCategories)
2871 return llvm::Constant::getNullValue(ObjCTypes.SymtabPtrTy);
2872
2873 std::vector<llvm::Constant*> Values(5);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002874 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2875 Values[1] = llvm::Constant::getNullValue(ObjCTypes.SelectorPtrTy);
2876 Values[2] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumClasses);
2877 Values[3] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumCategories);
2878
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002879 // The runtime expects exactly the list of defined classes followed
2880 // by the list of defined categories, in a single array.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002881 std::vector<llvm::Constant*> Symbols(NumClasses + NumCategories);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002882 for (unsigned i=0; i<NumClasses; i++)
2883 Symbols[i] = llvm::ConstantExpr::getBitCast(DefinedClasses[i],
2884 ObjCTypes.Int8PtrTy);
2885 for (unsigned i=0; i<NumCategories; i++)
2886 Symbols[NumClasses + i] =
2887 llvm::ConstantExpr::getBitCast(DefinedCategories[i],
2888 ObjCTypes.Int8PtrTy);
2889
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002890 Values[4] =
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002891 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002892 NumClasses + NumCategories),
2893 Symbols);
2894
2895 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
2896
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002897 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002898 CreateMetadataVar("\01L_OBJC_SYMBOLS", Init,
2899 "__OBJC,__symbols,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002900 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002901 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.SymtabPtrTy);
2902}
2903
Daniel Dunbar45d196b2008-11-01 01:53:16 +00002904llvm::Value *CGObjCMac::EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002905 const ObjCInterfaceDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002906 LazySymbols.insert(ID->getIdentifier());
2907
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002908 llvm::GlobalVariable *&Entry = ClassReferences[ID->getIdentifier()];
2909
2910 if (!Entry) {
2911 llvm::Constant *Casted =
2912 llvm::ConstantExpr::getBitCast(GetClassName(ID->getIdentifier()),
2913 ObjCTypes.ClassPtrTy);
2914 Entry =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002915 CreateMetadataVar("\01L_OBJC_CLASS_REFERENCES_", Casted,
2916 "__OBJC,__cls_refs,literal_pointers,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002917 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002918 }
2919
2920 return Builder.CreateLoad(Entry, false, "tmp");
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002921}
2922
Daniel Dunbar45d196b2008-11-01 01:53:16 +00002923llvm::Value *CGObjCMac::EmitSelector(CGBuilderTy &Builder, Selector Sel) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00002924 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
2925
2926 if (!Entry) {
2927 llvm::Constant *Casted =
2928 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
2929 ObjCTypes.SelectorPtrTy);
2930 Entry =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002931 CreateMetadataVar("\01L_OBJC_SELECTOR_REFERENCES_", Casted,
2932 "__OBJC,__message_refs,literal_pointers,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002933 4, true);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00002934 }
2935
2936 return Builder.CreateLoad(Entry, false, "tmp");
2937}
2938
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00002939llvm::Constant *CGObjCCommonMac::GetClassName(IdentifierInfo *Ident) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002940 llvm::GlobalVariable *&Entry = ClassNames[Ident];
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002941
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002942 if (!Entry)
2943 Entry = CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
2944 llvm::ConstantArray::get(Ident->getName()),
2945 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00002946 1, true);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002947
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002948 return getConstantGEP(Entry, 0, 0);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002949}
2950
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +00002951/// GetIvarLayoutName - Returns a unique constant for the given
2952/// ivar layout bitmap.
2953llvm::Constant *CGObjCCommonMac::GetIvarLayoutName(IdentifierInfo *Ident,
2954 const ObjCCommonTypesHelper &ObjCTypes) {
2955 return llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
2956}
2957
Daniel Dunbard58edcb2009-05-03 14:10:34 +00002958static QualType::GCAttrTypes GetGCAttrTypeForType(ASTContext &Ctx,
2959 QualType FQT) {
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00002960 if (FQT.isObjCGCStrong())
2961 return QualType::Strong;
2962
2963 if (FQT.isObjCGCWeak())
2964 return QualType::Weak;
2965
Daniel Dunbard58edcb2009-05-03 14:10:34 +00002966 if (Ctx.isObjCObjectPointerType(FQT))
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00002967 return QualType::Strong;
2968
2969 if (const PointerType *PT = FQT->getAsPointerType())
Daniel Dunbard58edcb2009-05-03 14:10:34 +00002970 return GetGCAttrTypeForType(Ctx, PT->getPointeeType());
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00002971
2972 return QualType::GCNone;
2973}
2974
Daniel Dunbard58edcb2009-05-03 14:10:34 +00002975void CGObjCCommonMac::BuildAggrIvarRecordLayout(const RecordType *RT,
2976 unsigned int BytePos,
2977 bool ForStrongLayout,
2978 bool &HasUnion) {
2979 const RecordDecl *RD = RT->getDecl();
2980 // FIXME - Use iterator.
2981 llvm::SmallVector<FieldDecl*, 16> Fields(RD->field_begin(CGM.getContext()),
2982 RD->field_end(CGM.getContext()));
2983 const llvm::Type *Ty = CGM.getTypes().ConvertType(QualType(RT, 0));
2984 const llvm::StructLayout *RecLayout =
2985 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(Ty));
2986
2987 BuildAggrIvarLayout(0, RecLayout, RD, Fields, BytePos,
2988 ForStrongLayout, HasUnion);
2989}
2990
Daniel Dunbar5a5a8032009-05-03 21:05:10 +00002991void CGObjCCommonMac::BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00002992 const llvm::StructLayout *Layout,
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00002993 const RecordDecl *RD,
Chris Lattnerf1690852009-03-31 08:48:01 +00002994 const llvm::SmallVectorImpl<FieldDecl*> &RecFields,
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00002995 unsigned int BytePos, bool ForStrongLayout,
Fariborz Jahanian81adc052009-04-24 16:17:09 +00002996 bool &HasUnion) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00002997 bool IsUnion = (RD && RD->isUnion());
2998 uint64_t MaxUnionIvarSize = 0;
2999 uint64_t MaxSkippedUnionIvarSize = 0;
3000 FieldDecl *MaxField = 0;
3001 FieldDecl *MaxSkippedField = 0;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003002 FieldDecl *LastFieldBitfield = 0;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003003 uint64_t MaxFieldOffset = 0;
3004 uint64_t MaxSkippedFieldOffset = 0;
3005 uint64_t LastBitfieldOffset = 0;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003006
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003007 if (RecFields.empty())
3008 return;
Chris Lattnerf1690852009-03-31 08:48:01 +00003009 unsigned WordSizeInBits = CGM.getContext().Target.getPointerWidth(0);
3010 unsigned ByteSizeInBits = CGM.getContext().Target.getCharWidth();
3011
Chris Lattnerf1690852009-03-31 08:48:01 +00003012 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003013 FieldDecl *Field = RecFields[i];
Daniel Dunbare05cc982009-05-03 23:35:23 +00003014 uint64_t FieldOffset;
3015 if (RD)
3016 FieldOffset =
3017 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(Field));
3018 else
3019 FieldOffset = ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(Field));
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003020
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003021 // Skip over unnamed or bitfields
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003022 if (!Field->getIdentifier() || Field->isBitField()) {
3023 LastFieldBitfield = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003024 LastBitfieldOffset = FieldOffset;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003025 continue;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003026 }
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003027
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003028 LastFieldBitfield = 0;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003029 QualType FQT = Field->getType();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003030 if (FQT->isRecordType() || FQT->isUnionType()) {
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003031 if (FQT->isUnionType())
3032 HasUnion = true;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003033
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003034 BuildAggrIvarRecordLayout(FQT->getAsRecordType(),
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003035 BytePos + FieldOffset,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003036 ForStrongLayout, HasUnion);
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003037 continue;
3038 }
Chris Lattnerf1690852009-03-31 08:48:01 +00003039
3040 if (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003041 const ConstantArrayType *CArray =
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003042 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003043 uint64_t ElCount = CArray->getSize().getZExtValue();
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003044 assert(CArray && "only array with known element size is supported");
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003045 FQT = CArray->getElementType();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003046 while (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
3047 const ConstantArrayType *CArray =
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003048 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003049 ElCount *= CArray->getSize().getZExtValue();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003050 FQT = CArray->getElementType();
3051 }
3052
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003053 assert(!FQT->isUnionType() &&
3054 "layout for array of unions not supported");
3055 if (FQT->isRecordType()) {
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003056 int OldIndex = IvarsInfo.size() - 1;
3057 int OldSkIndex = SkipIvars.size() -1;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003058
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003059 const RecordType *RT = FQT->getAsRecordType();
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003060 BuildAggrIvarRecordLayout(RT, BytePos + FieldOffset,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003061 ForStrongLayout, HasUnion);
3062
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003063 // Replicate layout information for each array element. Note that
3064 // one element is already done.
3065 uint64_t ElIx = 1;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003066 for (int FirstIndex = IvarsInfo.size() - 1,
3067 FirstSkIndex = SkipIvars.size() - 1 ;ElIx < ElCount; ElIx++) {
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003068 uint64_t Size = CGM.getContext().getTypeSize(RT)/ByteSizeInBits;
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003069 for (int i = OldIndex+1; i <= FirstIndex; ++i)
3070 IvarsInfo.push_back(GC_IVAR(IvarsInfo[i].ivar_bytepos + Size*ElIx,
3071 IvarsInfo[i].ivar_size));
3072 for (int i = OldSkIndex+1; i <= FirstSkIndex; ++i)
3073 SkipIvars.push_back(GC_IVAR(SkipIvars[i].ivar_bytepos + Size*ElIx,
3074 SkipIvars[i].ivar_size));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003075 }
3076 continue;
3077 }
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003078 }
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003079 // At this point, we are done with Record/Union and array there of.
3080 // For other arrays we are down to its element type.
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003081 QualType::GCAttrTypes GCAttr = GetGCAttrTypeForType(CGM.getContext(), FQT);
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003082
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003083 unsigned FieldSize = CGM.getContext().getTypeSize(Field->getType());
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003084 if ((ForStrongLayout && GCAttr == QualType::Strong)
3085 || (!ForStrongLayout && GCAttr == QualType::Weak)) {
Daniel Dunbar487993b2009-05-03 13:32:01 +00003086 if (IsUnion) {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003087 uint64_t UnionIvarSize = FieldSize / WordSizeInBits;
Daniel Dunbar487993b2009-05-03 13:32:01 +00003088 if (UnionIvarSize > MaxUnionIvarSize) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003089 MaxUnionIvarSize = UnionIvarSize;
3090 MaxField = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003091 MaxFieldOffset = FieldOffset;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003092 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003093 } else {
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003094 IvarsInfo.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003095 FieldSize / WordSizeInBits));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003096 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003097 } else if ((ForStrongLayout &&
3098 (GCAttr == QualType::GCNone || GCAttr == QualType::Weak))
3099 || (!ForStrongLayout && GCAttr != QualType::Weak)) {
3100 if (IsUnion) {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003101 // FIXME: Why the asymmetry? We divide by word size in bits on
3102 // other side.
3103 uint64_t UnionIvarSize = FieldSize;
Daniel Dunbar487993b2009-05-03 13:32:01 +00003104 if (UnionIvarSize > MaxSkippedUnionIvarSize) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003105 MaxSkippedUnionIvarSize = UnionIvarSize;
3106 MaxSkippedField = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003107 MaxSkippedFieldOffset = FieldOffset;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003108 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003109 } else {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003110 // FIXME: Why the asymmetry, we divide by byte size in bits here?
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003111 SkipIvars.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003112 FieldSize / ByteSizeInBits));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003113 }
3114 }
3115 }
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003116
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003117 if (LastFieldBitfield) {
3118 // Last field was a bitfield. Must update skip info.
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003119 Expr *BitWidth = LastFieldBitfield->getBitWidth();
3120 uint64_t BitFieldSize =
Eli Friedman9a901bb2009-04-26 19:19:15 +00003121 BitWidth->EvaluateAsInt(CGM.getContext()).getZExtValue();
Daniel Dunbar487993b2009-05-03 13:32:01 +00003122 GC_IVAR skivar;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003123 skivar.ivar_bytepos = BytePos + LastBitfieldOffset;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003124 skivar.ivar_size = (BitFieldSize / ByteSizeInBits)
3125 + ((BitFieldSize % ByteSizeInBits) != 0);
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003126 SkipIvars.push_back(skivar);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003127 }
3128
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003129 if (MaxField)
Daniel Dunbar900c1982009-05-03 23:31:46 +00003130 IvarsInfo.push_back(GC_IVAR(BytePos + MaxFieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003131 MaxUnionIvarSize));
3132 if (MaxSkippedField)
Daniel Dunbar900c1982009-05-03 23:31:46 +00003133 SkipIvars.push_back(GC_IVAR(BytePos + MaxSkippedFieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003134 MaxSkippedUnionIvarSize));
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003135}
3136
3137/// BuildIvarLayout - Builds ivar layout bitmap for the class
3138/// implementation for the __strong or __weak case.
3139/// The layout map displays which words in ivar list must be skipped
3140/// and which must be scanned by GC (see below). String is built of bytes.
3141/// Each byte is divided up in two nibbles (4-bit each). Left nibble is count
3142/// of words to skip and right nibble is count of words to scan. So, each
3143/// nibble represents up to 15 workds to skip or scan. Skipping the rest is
3144/// represented by a 0x00 byte which also ends the string.
3145/// 1. when ForStrongLayout is true, following ivars are scanned:
3146/// - id, Class
3147/// - object *
3148/// - __strong anything
3149///
3150/// 2. When ForStrongLayout is false, following ivars are scanned:
3151/// - __weak anything
3152///
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003153llvm::Constant *CGObjCCommonMac::BuildIvarLayout(
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003154 const ObjCImplementationDecl *OMD,
3155 bool ForStrongLayout) {
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003156 bool hasUnion = false;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003157
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003158 unsigned int WordsToScan, WordsToSkip;
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003159 const llvm::Type *PtrTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
3160 if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC)
3161 return llvm::Constant::getNullValue(PtrTy);
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003162
Chris Lattnerf1690852009-03-31 08:48:01 +00003163 llvm::SmallVector<FieldDecl*, 32> RecFields;
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003164 const ObjCInterfaceDecl *OI = OMD->getClassInterface();
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003165 CGM.getContext().CollectObjCIvars(OI, RecFields);
Fariborz Jahanian98200742009-05-12 18:14:29 +00003166
Daniel Dunbar37153282009-05-04 04:10:48 +00003167 // Add this implementations synthesized ivars.
Fariborz Jahanian98200742009-05-12 18:14:29 +00003168 llvm::SmallVector<ObjCIvarDecl*, 16> Ivars;
3169 CGM.getContext().CollectSynthesizedIvars(OI, Ivars);
3170 for (unsigned k = 0, e = Ivars.size(); k != e; ++k)
3171 RecFields.push_back(cast<FieldDecl>(Ivars[k]));
3172
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003173 if (RecFields.empty())
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003174 return llvm::Constant::getNullValue(PtrTy);
Chris Lattnerf1690852009-03-31 08:48:01 +00003175
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003176 SkipIvars.clear();
3177 IvarsInfo.clear();
Fariborz Jahanian21e6f172009-03-11 21:42:00 +00003178
Daniel Dunbar5a5a8032009-05-03 21:05:10 +00003179 BuildAggrIvarLayout(OMD, 0, 0, RecFields, 0, ForStrongLayout, hasUnion);
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003180 if (IvarsInfo.empty())
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003181 return llvm::Constant::getNullValue(PtrTy);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003182
3183 // Sort on byte position in case we encounterred a union nested in
3184 // the ivar list.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003185 if (hasUnion && !IvarsInfo.empty())
Daniel Dunbar0941b492009-04-23 01:29:05 +00003186 std::sort(IvarsInfo.begin(), IvarsInfo.end());
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003187 if (hasUnion && !SkipIvars.empty())
Daniel Dunbar0941b492009-04-23 01:29:05 +00003188 std::sort(SkipIvars.begin(), SkipIvars.end());
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003189
3190 // Build the string of skip/scan nibbles
Fariborz Jahanian8c2f2d12009-04-24 17:15:27 +00003191 llvm::SmallVector<SKIP_SCAN, 32> SkipScanIvars;
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003192 unsigned int WordSize =
Duncan Sands9408c452009-05-09 07:08:47 +00003193 CGM.getTypes().getTargetData().getTypeAllocSize(PtrTy);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003194 if (IvarsInfo[0].ivar_bytepos == 0) {
3195 WordsToSkip = 0;
3196 WordsToScan = IvarsInfo[0].ivar_size;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003197 } else {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003198 WordsToSkip = IvarsInfo[0].ivar_bytepos/WordSize;
3199 WordsToScan = IvarsInfo[0].ivar_size;
3200 }
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003201 for (unsigned int i=1, Last=IvarsInfo.size(); i != Last; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003202 unsigned int TailPrevGCObjC =
3203 IvarsInfo[i-1].ivar_bytepos + IvarsInfo[i-1].ivar_size * WordSize;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003204 if (IvarsInfo[i].ivar_bytepos == TailPrevGCObjC) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003205 // consecutive 'scanned' object pointers.
3206 WordsToScan += IvarsInfo[i].ivar_size;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003207 } else {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003208 // Skip over 'gc'able object pointer which lay over each other.
3209 if (TailPrevGCObjC > IvarsInfo[i].ivar_bytepos)
3210 continue;
3211 // Must skip over 1 or more words. We save current skip/scan values
3212 // and start a new pair.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003213 SKIP_SCAN SkScan;
3214 SkScan.skip = WordsToSkip;
3215 SkScan.scan = WordsToScan;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003216 SkipScanIvars.push_back(SkScan);
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003217
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003218 // Skip the hole.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003219 SkScan.skip = (IvarsInfo[i].ivar_bytepos - TailPrevGCObjC) / WordSize;
3220 SkScan.scan = 0;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003221 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003222 WordsToSkip = 0;
3223 WordsToScan = IvarsInfo[i].ivar_size;
3224 }
3225 }
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003226 if (WordsToScan > 0) {
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003227 SKIP_SCAN SkScan;
3228 SkScan.skip = WordsToSkip;
3229 SkScan.scan = WordsToScan;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003230 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003231 }
3232
3233 bool BytesSkipped = false;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003234 if (!SkipIvars.empty()) {
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003235 unsigned int LastIndex = SkipIvars.size()-1;
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003236 int LastByteSkipped =
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003237 SkipIvars[LastIndex].ivar_bytepos + SkipIvars[LastIndex].ivar_size;
3238 LastIndex = IvarsInfo.size()-1;
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003239 int LastByteScanned =
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003240 IvarsInfo[LastIndex].ivar_bytepos +
3241 IvarsInfo[LastIndex].ivar_size * WordSize;
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003242 BytesSkipped = (LastByteSkipped > LastByteScanned);
3243 // Compute number of bytes to skip at the tail end of the last ivar scanned.
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003244 if (BytesSkipped) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003245 unsigned int TotalWords = (LastByteSkipped + (WordSize -1)) / WordSize;
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003246 SKIP_SCAN SkScan;
3247 SkScan.skip = TotalWords - (LastByteScanned/WordSize);
3248 SkScan.scan = 0;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003249 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003250 }
3251 }
3252 // Mini optimization of nibbles such that an 0xM0 followed by 0x0N is produced
3253 // as 0xMN.
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003254 int SkipScan = SkipScanIvars.size()-1;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003255 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003256 if ((i < SkipScan) && SkipScanIvars[i].skip && SkipScanIvars[i].scan == 0
3257 && SkipScanIvars[i+1].skip == 0 && SkipScanIvars[i+1].scan) {
3258 // 0xM0 followed by 0x0N detected.
3259 SkipScanIvars[i].scan = SkipScanIvars[i+1].scan;
3260 for (int j = i+1; j < SkipScan; j++)
3261 SkipScanIvars[j] = SkipScanIvars[j+1];
3262 --SkipScan;
3263 }
3264 }
3265
3266 // Generate the string.
3267 std::string BitMap;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003268 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003269 unsigned char byte;
3270 unsigned int skip_small = SkipScanIvars[i].skip % 0xf;
3271 unsigned int scan_small = SkipScanIvars[i].scan % 0xf;
3272 unsigned int skip_big = SkipScanIvars[i].skip / 0xf;
3273 unsigned int scan_big = SkipScanIvars[i].scan / 0xf;
3274
3275 if (skip_small > 0 || skip_big > 0)
3276 BytesSkipped = true;
3277 // first skip big.
3278 for (unsigned int ix = 0; ix < skip_big; ix++)
3279 BitMap += (unsigned char)(0xf0);
3280
3281 // next (skip small, scan)
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003282 if (skip_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003283 byte = skip_small << 4;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003284 if (scan_big > 0) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003285 byte |= 0xf;
3286 --scan_big;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003287 } else if (scan_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003288 byte |= scan_small;
3289 scan_small = 0;
3290 }
3291 BitMap += byte;
3292 }
3293 // next scan big
3294 for (unsigned int ix = 0; ix < scan_big; ix++)
3295 BitMap += (unsigned char)(0x0f);
3296 // last scan small
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003297 if (scan_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003298 byte = scan_small;
3299 BitMap += byte;
3300 }
3301 }
3302 // null terminate string.
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003303 unsigned char zero = 0;
3304 BitMap += zero;
Fariborz Jahanian3d2ad662009-04-20 22:03:45 +00003305
3306 if (CGM.getLangOptions().ObjCGCBitmapPrint) {
3307 printf("\n%s ivar layout for class '%s': ",
3308 ForStrongLayout ? "strong" : "weak",
3309 OMD->getClassInterface()->getNameAsCString());
3310 const unsigned char *s = (unsigned char*)BitMap.c_str();
3311 for (unsigned i = 0; i < BitMap.size(); i++)
3312 if (!(s[i] & 0xf0))
3313 printf("0x0%x%s", s[i], s[i] != 0 ? ", " : "");
3314 else
3315 printf("0x%x%s", s[i], s[i] != 0 ? ", " : "");
3316 printf("\n");
3317 }
3318
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003319 // if ivar_layout bitmap is all 1 bits (nothing skipped) then use NULL as
3320 // final layout.
3321 if (ForStrongLayout && !BytesSkipped)
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003322 return llvm::Constant::getNullValue(PtrTy);
3323 llvm::GlobalVariable * Entry = CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
3324 llvm::ConstantArray::get(BitMap.c_str()),
3325 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003326 1, true);
Fariborz Jahanian3d2ad662009-04-20 22:03:45 +00003327 return getConstantGEP(Entry, 0, 0);
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003328}
3329
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003330llvm::Constant *CGObjCCommonMac::GetMethodVarName(Selector Sel) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003331 llvm::GlobalVariable *&Entry = MethodVarNames[Sel];
3332
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003333 // FIXME: Avoid std::string copying.
3334 if (!Entry)
3335 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_NAME_",
3336 llvm::ConstantArray::get(Sel.getAsString()),
3337 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003338 1, true);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003339
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003340 return getConstantGEP(Entry, 0, 0);
3341}
3342
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003343// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003344llvm::Constant *CGObjCCommonMac::GetMethodVarName(IdentifierInfo *ID) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003345 return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID));
3346}
3347
3348// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003349llvm::Constant *CGObjCCommonMac::GetMethodVarName(const std::string &Name) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003350 return GetMethodVarName(&CGM.getContext().Idents.get(Name));
3351}
3352
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00003353llvm::Constant *CGObjCCommonMac::GetMethodVarType(const FieldDecl *Field) {
Devang Patel7794bb82009-03-04 18:21:39 +00003354 std::string TypeStr;
3355 CGM.getContext().getObjCEncodingForType(Field->getType(), TypeStr, Field);
3356
3357 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003358
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003359 if (!Entry)
3360 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
3361 llvm::ConstantArray::get(TypeStr),
3362 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003363 1, true);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003364
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003365 return getConstantGEP(Entry, 0, 0);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003366}
3367
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003368llvm::Constant *CGObjCCommonMac::GetMethodVarType(const ObjCMethodDecl *D) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003369 std::string TypeStr;
Daniel Dunbarc45ef602008-08-26 21:51:14 +00003370 CGM.getContext().getObjCEncodingForMethodDecl(const_cast<ObjCMethodDecl*>(D),
3371 TypeStr);
Devang Patel7794bb82009-03-04 18:21:39 +00003372
3373 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
3374
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003375 if (!Entry)
3376 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
3377 llvm::ConstantArray::get(TypeStr),
3378 "__TEXT,__cstring,cstring_literals",
3379 1, true);
Devang Patel7794bb82009-03-04 18:21:39 +00003380
3381 return getConstantGEP(Entry, 0, 0);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003382}
3383
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003384// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003385llvm::Constant *CGObjCCommonMac::GetPropertyName(IdentifierInfo *Ident) {
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003386 llvm::GlobalVariable *&Entry = PropertyNames[Ident];
3387
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003388 if (!Entry)
3389 Entry = CreateMetadataVar("\01L_OBJC_PROP_NAME_ATTR_",
3390 llvm::ConstantArray::get(Ident->getName()),
3391 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003392 1, true);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003393
3394 return getConstantGEP(Entry, 0, 0);
3395}
3396
3397// FIXME: Merge into a single cstring creation function.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00003398// FIXME: This Decl should be more precise.
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003399llvm::Constant *
3400 CGObjCCommonMac::GetPropertyTypeString(const ObjCPropertyDecl *PD,
3401 const Decl *Container) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00003402 std::string TypeStr;
3403 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003404 return GetPropertyName(&CGM.getContext().Idents.get(TypeStr));
3405}
3406
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003407void CGObjCCommonMac::GetNameForMethod(const ObjCMethodDecl *D,
3408 const ObjCContainerDecl *CD,
3409 std::string &NameOut) {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00003410 NameOut = '\01';
3411 NameOut += (D->isInstanceMethod() ? '-' : '+');
Chris Lattner077bf5e2008-11-24 03:33:13 +00003412 NameOut += '[';
Fariborz Jahanian679a5022009-01-10 21:06:09 +00003413 assert (CD && "Missing container decl in GetNameForMethod");
3414 NameOut += CD->getNameAsString();
Fariborz Jahanian1e9aef32009-04-16 18:34:20 +00003415 if (const ObjCCategoryImplDecl *CID =
3416 dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext())) {
3417 NameOut += '(';
3418 NameOut += CID->getNameAsString();
3419 NameOut+= ')';
3420 }
Chris Lattner077bf5e2008-11-24 03:33:13 +00003421 NameOut += ' ';
3422 NameOut += D->getSelector().getAsString();
3423 NameOut += ']';
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00003424}
3425
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003426void CGObjCMac::FinishModule() {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003427 EmitModuleInfo();
3428
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00003429 // Emit the dummy bodies for any protocols which were referenced but
3430 // never defined.
3431 for (llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*>::iterator
3432 i = Protocols.begin(), e = Protocols.end(); i != e; ++i) {
3433 if (i->second->hasInitializer())
3434 continue;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003435
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00003436 std::vector<llvm::Constant*> Values(5);
3437 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
3438 Values[1] = GetClassName(i->first);
3439 Values[2] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
3440 Values[3] = Values[4] =
3441 llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
3442 i->second->setLinkage(llvm::GlobalValue::InternalLinkage);
3443 i->second->setInitializer(llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
3444 Values));
3445 }
3446
3447 std::vector<llvm::Constant*> Used;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003448 for (std::vector<llvm::GlobalVariable*>::iterator i = UsedGlobals.begin(),
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003449 e = UsedGlobals.end(); i != e; ++i) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003450 Used.push_back(llvm::ConstantExpr::getBitCast(*i, ObjCTypes.Int8PtrTy));
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003451 }
3452
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003453 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.Int8PtrTy, Used.size());
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003454 llvm::GlobalValue *GV =
3455 new llvm::GlobalVariable(AT, false,
3456 llvm::GlobalValue::AppendingLinkage,
3457 llvm::ConstantArray::get(AT, Used),
3458 "llvm.used",
3459 &CGM.getModule());
3460
3461 GV->setSection("llvm.metadata");
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003462
3463 // Add assembler directives to add lazy undefined symbol references
3464 // for classes which are referenced but not defined. This is
3465 // important for correct linker interaction.
3466
3467 // FIXME: Uh, this isn't particularly portable.
3468 std::stringstream s;
Anders Carlsson565c99f2008-12-10 02:21:04 +00003469
3470 if (!CGM.getModule().getModuleInlineAsm().empty())
3471 s << "\n";
3472
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003473 for (std::set<IdentifierInfo*>::iterator i = LazySymbols.begin(),
3474 e = LazySymbols.end(); i != e; ++i) {
3475 s << "\t.lazy_reference .objc_class_name_" << (*i)->getName() << "\n";
3476 }
3477 for (std::set<IdentifierInfo*>::iterator i = DefinedSymbols.begin(),
3478 e = DefinedSymbols.end(); i != e; ++i) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00003479 s << "\t.objc_class_name_" << (*i)->getName() << "=0\n"
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003480 << "\t.globl .objc_class_name_" << (*i)->getName() << "\n";
3481 }
Anders Carlsson565c99f2008-12-10 02:21:04 +00003482
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003483 CGM.getModule().appendModuleInlineAsm(s.str());
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003484}
3485
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003486CGObjCNonFragileABIMac::CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm)
Fariborz Jahanianee0af742009-01-21 22:04:16 +00003487 : CGObjCCommonMac(cgm),
3488 ObjCTypes(cgm)
3489{
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00003490 ObjCEmptyCacheVar = ObjCEmptyVtableVar = NULL;
Fariborz Jahanianee0af742009-01-21 22:04:16 +00003491 ObjCABI = 2;
3492}
3493
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003494/* *** */
3495
Fariborz Jahanianee0af742009-01-21 22:04:16 +00003496ObjCCommonTypesHelper::ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm)
3497: CGM(cgm)
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00003498{
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003499 CodeGen::CodeGenTypes &Types = CGM.getTypes();
3500 ASTContext &Ctx = CGM.getContext();
Fariborz Jahanianee0af742009-01-21 22:04:16 +00003501
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003502 ShortTy = Types.ConvertType(Ctx.ShortTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003503 IntTy = Types.ConvertType(Ctx.IntTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003504 LongTy = Types.ConvertType(Ctx.LongTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003505 LongLongTy = Types.ConvertType(Ctx.LongLongTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003506 Int8PtrTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
3507
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003508 ObjectPtrTy = Types.ConvertType(Ctx.getObjCIdType());
Fariborz Jahanian6d657c42008-11-18 20:18:11 +00003509 PtrObjectPtrTy = llvm::PointerType::getUnqual(ObjectPtrTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003510 SelectorPtrTy = Types.ConvertType(Ctx.getObjCSelType());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003511
3512 // FIXME: It would be nice to unify this with the opaque type, so
3513 // that the IR comes out a bit cleaner.
3514 const llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType());
3515 ExternalProtocolPtrTy = llvm::PointerType::getUnqual(T);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00003516
3517 // I'm not sure I like this. The implicit coordination is a bit
3518 // gross. We should solve this in a reasonable fashion because this
3519 // is a pretty common task (match some runtime data structure with
3520 // an LLVM data structure).
3521
3522 // FIXME: This is leaked.
3523 // FIXME: Merge with rewriter code?
3524
3525 // struct _objc_super {
3526 // id self;
3527 // Class cls;
3528 // }
3529 RecordDecl *RD = RecordDecl::Create(Ctx, TagDecl::TK_struct, 0,
3530 SourceLocation(),
3531 &Ctx.Idents.get("_objc_super"));
Douglas Gregor6ab35242009-04-09 21:40:53 +00003532 RD->addDecl(Ctx, FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
3533 Ctx.getObjCIdType(), 0, false));
3534 RD->addDecl(Ctx, FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
3535 Ctx.getObjCClassType(), 0, false));
Fariborz Jahanianee0af742009-01-21 22:04:16 +00003536 RD->completeDefinition(Ctx);
3537
3538 SuperCTy = Ctx.getTagDeclType(RD);
3539 SuperPtrCTy = Ctx.getPointerType(SuperCTy);
3540
3541 SuperTy = cast<llvm::StructType>(Types.ConvertType(SuperCTy));
Fariborz Jahaniandb286862009-01-22 00:37:21 +00003542 SuperPtrTy = llvm::PointerType::getUnqual(SuperTy);
3543
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003544 // struct _prop_t {
3545 // char *name;
3546 // char *attributes;
3547 // }
Chris Lattner1c02f862009-04-22 02:53:24 +00003548 PropertyTy = llvm::StructType::get(Int8PtrTy, Int8PtrTy, NULL);
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003549 CGM.getModule().addTypeName("struct._prop_t",
3550 PropertyTy);
3551
3552 // struct _prop_list_t {
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003553 // uint32_t entsize; // sizeof(struct _prop_t)
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003554 // uint32_t count_of_properties;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003555 // struct _prop_t prop_list[count_of_properties];
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003556 // }
3557 PropertyListTy = llvm::StructType::get(IntTy,
3558 IntTy,
3559 llvm::ArrayType::get(PropertyTy, 0),
3560 NULL);
3561 CGM.getModule().addTypeName("struct._prop_list_t",
3562 PropertyListTy);
3563 // struct _prop_list_t *
3564 PropertyListPtrTy = llvm::PointerType::getUnqual(PropertyListTy);
3565
3566 // struct _objc_method {
3567 // SEL _cmd;
3568 // char *method_type;
3569 // char *_imp;
3570 // }
3571 MethodTy = llvm::StructType::get(SelectorPtrTy,
3572 Int8PtrTy,
3573 Int8PtrTy,
3574 NULL);
3575 CGM.getModule().addTypeName("struct._objc_method", MethodTy);
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003576
3577 // struct _objc_cache *
3578 CacheTy = llvm::OpaqueType::get();
3579 CGM.getModule().addTypeName("struct._objc_cache", CacheTy);
3580 CachePtrTy = llvm::PointerType::getUnqual(CacheTy);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00003581}
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003582
Fariborz Jahanianee0af742009-01-21 22:04:16 +00003583ObjCTypesHelper::ObjCTypesHelper(CodeGen::CodeGenModule &cgm)
3584 : ObjCCommonTypesHelper(cgm)
3585{
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003586 // struct _objc_method_description {
3587 // SEL name;
3588 // char *types;
3589 // }
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003590 MethodDescriptionTy =
3591 llvm::StructType::get(SelectorPtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003592 Int8PtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003593 NULL);
3594 CGM.getModule().addTypeName("struct._objc_method_description",
3595 MethodDescriptionTy);
3596
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003597 // struct _objc_method_description_list {
3598 // int count;
3599 // struct _objc_method_description[1];
3600 // }
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003601 MethodDescriptionListTy =
3602 llvm::StructType::get(IntTy,
3603 llvm::ArrayType::get(MethodDescriptionTy, 0),
3604 NULL);
3605 CGM.getModule().addTypeName("struct._objc_method_description_list",
3606 MethodDescriptionListTy);
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003607
3608 // struct _objc_method_description_list *
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003609 MethodDescriptionListPtrTy =
3610 llvm::PointerType::getUnqual(MethodDescriptionListTy);
3611
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003612 // Protocol description structures
3613
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003614 // struct _objc_protocol_extension {
3615 // uint32_t size; // sizeof(struct _objc_protocol_extension)
3616 // struct _objc_method_description_list *optional_instance_methods;
3617 // struct _objc_method_description_list *optional_class_methods;
3618 // struct _objc_property_list *instance_properties;
3619 // }
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003620 ProtocolExtensionTy =
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003621 llvm::StructType::get(IntTy,
3622 MethodDescriptionListPtrTy,
3623 MethodDescriptionListPtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003624 PropertyListPtrTy,
3625 NULL);
3626 CGM.getModule().addTypeName("struct._objc_protocol_extension",
3627 ProtocolExtensionTy);
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003628
3629 // struct _objc_protocol_extension *
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003630 ProtocolExtensionPtrTy = llvm::PointerType::getUnqual(ProtocolExtensionTy);
3631
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00003632 // Handle recursive construction of Protocol and ProtocolList types
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003633
3634 llvm::PATypeHolder ProtocolTyHolder = llvm::OpaqueType::get();
3635 llvm::PATypeHolder ProtocolListTyHolder = llvm::OpaqueType::get();
3636
Fariborz Jahanianee0af742009-01-21 22:04:16 +00003637 const llvm::Type *T =
3638 llvm::StructType::get(llvm::PointerType::getUnqual(ProtocolListTyHolder),
3639 LongTy,
3640 llvm::ArrayType::get(ProtocolTyHolder, 0),
3641 NULL);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003642 cast<llvm::OpaqueType>(ProtocolListTyHolder.get())->refineAbstractTypeTo(T);
3643
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003644 // struct _objc_protocol {
3645 // struct _objc_protocol_extension *isa;
3646 // char *protocol_name;
3647 // struct _objc_protocol **_objc_protocol_list;
3648 // struct _objc_method_description_list *instance_methods;
3649 // struct _objc_method_description_list *class_methods;
3650 // }
3651 T = llvm::StructType::get(ProtocolExtensionPtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003652 Int8PtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003653 llvm::PointerType::getUnqual(ProtocolListTyHolder),
3654 MethodDescriptionListPtrTy,
3655 MethodDescriptionListPtrTy,
3656 NULL);
3657 cast<llvm::OpaqueType>(ProtocolTyHolder.get())->refineAbstractTypeTo(T);
3658
3659 ProtocolListTy = cast<llvm::StructType>(ProtocolListTyHolder.get());
3660 CGM.getModule().addTypeName("struct._objc_protocol_list",
3661 ProtocolListTy);
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003662 // struct _objc_protocol_list *
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003663 ProtocolListPtrTy = llvm::PointerType::getUnqual(ProtocolListTy);
3664
3665 ProtocolTy = cast<llvm::StructType>(ProtocolTyHolder.get());
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003666 CGM.getModule().addTypeName("struct._objc_protocol", ProtocolTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003667 ProtocolPtrTy = llvm::PointerType::getUnqual(ProtocolTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003668
3669 // Class description structures
3670
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003671 // struct _objc_ivar {
3672 // char *ivar_name;
3673 // char *ivar_type;
3674 // int ivar_offset;
3675 // }
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003676 IvarTy = llvm::StructType::get(Int8PtrTy,
3677 Int8PtrTy,
3678 IntTy,
3679 NULL);
3680 CGM.getModule().addTypeName("struct._objc_ivar", IvarTy);
3681
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003682 // struct _objc_ivar_list *
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003683 IvarListTy = llvm::OpaqueType::get();
3684 CGM.getModule().addTypeName("struct._objc_ivar_list", IvarListTy);
3685 IvarListPtrTy = llvm::PointerType::getUnqual(IvarListTy);
3686
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003687 // struct _objc_method_list *
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003688 MethodListTy = llvm::OpaqueType::get();
3689 CGM.getModule().addTypeName("struct._objc_method_list", MethodListTy);
3690 MethodListPtrTy = llvm::PointerType::getUnqual(MethodListTy);
3691
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003692 // struct _objc_class_extension *
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003693 ClassExtensionTy =
3694 llvm::StructType::get(IntTy,
3695 Int8PtrTy,
3696 PropertyListPtrTy,
3697 NULL);
3698 CGM.getModule().addTypeName("struct._objc_class_extension", ClassExtensionTy);
3699 ClassExtensionPtrTy = llvm::PointerType::getUnqual(ClassExtensionTy);
3700
3701 llvm::PATypeHolder ClassTyHolder = llvm::OpaqueType::get();
3702
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003703 // struct _objc_class {
3704 // Class isa;
3705 // Class super_class;
3706 // char *name;
3707 // long version;
3708 // long info;
3709 // long instance_size;
3710 // struct _objc_ivar_list *ivars;
3711 // struct _objc_method_list *methods;
3712 // struct _objc_cache *cache;
3713 // struct _objc_protocol_list *protocols;
3714 // char *ivar_layout;
3715 // struct _objc_class_ext *ext;
3716 // };
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003717 T = llvm::StructType::get(llvm::PointerType::getUnqual(ClassTyHolder),
3718 llvm::PointerType::getUnqual(ClassTyHolder),
3719 Int8PtrTy,
3720 LongTy,
3721 LongTy,
3722 LongTy,
3723 IvarListPtrTy,
3724 MethodListPtrTy,
3725 CachePtrTy,
3726 ProtocolListPtrTy,
3727 Int8PtrTy,
3728 ClassExtensionPtrTy,
3729 NULL);
3730 cast<llvm::OpaqueType>(ClassTyHolder.get())->refineAbstractTypeTo(T);
3731
3732 ClassTy = cast<llvm::StructType>(ClassTyHolder.get());
3733 CGM.getModule().addTypeName("struct._objc_class", ClassTy);
3734 ClassPtrTy = llvm::PointerType::getUnqual(ClassTy);
3735
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003736 // struct _objc_category {
3737 // char *category_name;
3738 // char *class_name;
3739 // struct _objc_method_list *instance_method;
3740 // struct _objc_method_list *class_method;
3741 // uint32_t size; // sizeof(struct _objc_category)
3742 // struct _objc_property_list *instance_properties;// category's @property
3743 // }
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003744 CategoryTy = llvm::StructType::get(Int8PtrTy,
3745 Int8PtrTy,
3746 MethodListPtrTy,
3747 MethodListPtrTy,
3748 ProtocolListPtrTy,
3749 IntTy,
3750 PropertyListPtrTy,
3751 NULL);
3752 CGM.getModule().addTypeName("struct._objc_category", CategoryTy);
3753
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003754 // Global metadata structures
3755
Fariborz Jahanian10a42312009-01-21 00:39:53 +00003756 // struct _objc_symtab {
3757 // long sel_ref_cnt;
3758 // SEL *refs;
3759 // short cls_def_cnt;
3760 // short cat_def_cnt;
3761 // char *defs[cls_def_cnt + cat_def_cnt];
3762 // }
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003763 SymtabTy = llvm::StructType::get(LongTy,
3764 SelectorPtrTy,
3765 ShortTy,
3766 ShortTy,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003767 llvm::ArrayType::get(Int8PtrTy, 0),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003768 NULL);
3769 CGM.getModule().addTypeName("struct._objc_symtab", SymtabTy);
3770 SymtabPtrTy = llvm::PointerType::getUnqual(SymtabTy);
3771
Fariborz Jahaniandb286862009-01-22 00:37:21 +00003772 // struct _objc_module {
3773 // long version;
3774 // long size; // sizeof(struct _objc_module)
3775 // char *name;
3776 // struct _objc_symtab* symtab;
3777 // }
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003778 ModuleTy =
3779 llvm::StructType::get(LongTy,
3780 LongTy,
3781 Int8PtrTy,
3782 SymtabPtrTy,
3783 NULL);
3784 CGM.getModule().addTypeName("struct._objc_module", ModuleTy);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00003785
Anders Carlsson2abd89c2008-08-31 04:05:03 +00003786
Anders Carlsson124526b2008-09-09 10:10:21 +00003787 // FIXME: This is the size of the setjmp buffer and should be
3788 // target specific. 18 is what's used on 32-bit X86.
3789 uint64_t SetJmpBufferSize = 18;
3790
3791 // Exceptions
3792 const llvm::Type *StackPtrTy =
Daniel Dunbar10004912008-09-27 06:32:25 +00003793 llvm::ArrayType::get(llvm::PointerType::getUnqual(llvm::Type::Int8Ty), 4);
Anders Carlsson124526b2008-09-09 10:10:21 +00003794
3795 ExceptionDataTy =
3796 llvm::StructType::get(llvm::ArrayType::get(llvm::Type::Int32Ty,
3797 SetJmpBufferSize),
3798 StackPtrTy, NULL);
3799 CGM.getModule().addTypeName("struct._objc_exception_data",
3800 ExceptionDataTy);
3801
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00003802}
3803
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003804ObjCNonFragileABITypesHelper::ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm)
Fariborz Jahanianee0af742009-01-21 22:04:16 +00003805: ObjCCommonTypesHelper(cgm)
3806{
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003807 // struct _method_list_t {
3808 // uint32_t entsize; // sizeof(struct _objc_method)
3809 // uint32_t method_count;
3810 // struct _objc_method method_list[method_count];
3811 // }
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003812 MethodListnfABITy = llvm::StructType::get(IntTy,
3813 IntTy,
3814 llvm::ArrayType::get(MethodTy, 0),
3815 NULL);
3816 CGM.getModule().addTypeName("struct.__method_list_t",
3817 MethodListnfABITy);
3818 // struct method_list_t *
3819 MethodListnfABIPtrTy = llvm::PointerType::getUnqual(MethodListnfABITy);
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003820
3821 // struct _protocol_t {
3822 // id isa; // NULL
3823 // const char * const protocol_name;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003824 // const struct _protocol_list_t * protocol_list; // super protocols
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003825 // const struct method_list_t * const instance_methods;
3826 // const struct method_list_t * const class_methods;
3827 // const struct method_list_t *optionalInstanceMethods;
3828 // const struct method_list_t *optionalClassMethods;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003829 // const struct _prop_list_t * properties;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003830 // const uint32_t size; // sizeof(struct _protocol_t)
3831 // const uint32_t flags; // = 0
3832 // }
3833
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003834 // Holder for struct _protocol_list_t *
3835 llvm::PATypeHolder ProtocolListTyHolder = llvm::OpaqueType::get();
3836
3837 ProtocolnfABITy = llvm::StructType::get(ObjectPtrTy,
3838 Int8PtrTy,
3839 llvm::PointerType::getUnqual(
3840 ProtocolListTyHolder),
3841 MethodListnfABIPtrTy,
3842 MethodListnfABIPtrTy,
3843 MethodListnfABIPtrTy,
3844 MethodListnfABIPtrTy,
3845 PropertyListPtrTy,
3846 IntTy,
3847 IntTy,
3848 NULL);
3849 CGM.getModule().addTypeName("struct._protocol_t",
3850 ProtocolnfABITy);
Daniel Dunbar948e2582009-02-15 07:36:20 +00003851
3852 // struct _protocol_t*
3853 ProtocolnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolnfABITy);
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003854
Fariborz Jahanianda320092009-01-29 19:24:30 +00003855 // struct _protocol_list_t {
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003856 // long protocol_count; // Note, this is 32/64 bit
Daniel Dunbar948e2582009-02-15 07:36:20 +00003857 // struct _protocol_t *[protocol_count];
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003858 // }
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003859 ProtocolListnfABITy = llvm::StructType::get(LongTy,
3860 llvm::ArrayType::get(
Daniel Dunbar948e2582009-02-15 07:36:20 +00003861 ProtocolnfABIPtrTy, 0),
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003862 NULL);
3863 CGM.getModule().addTypeName("struct._objc_protocol_list",
3864 ProtocolListnfABITy);
Daniel Dunbar948e2582009-02-15 07:36:20 +00003865 cast<llvm::OpaqueType>(ProtocolListTyHolder.get())->refineAbstractTypeTo(
3866 ProtocolListnfABITy);
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003867
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003868 // struct _objc_protocol_list*
3869 ProtocolListnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolListnfABITy);
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003870
3871 // struct _ivar_t {
3872 // unsigned long int *offset; // pointer to ivar offset location
3873 // char *name;
3874 // char *type;
3875 // uint32_t alignment;
3876 // uint32_t size;
3877 // }
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003878 IvarnfABITy = llvm::StructType::get(llvm::PointerType::getUnqual(LongTy),
3879 Int8PtrTy,
3880 Int8PtrTy,
3881 IntTy,
3882 IntTy,
3883 NULL);
3884 CGM.getModule().addTypeName("struct._ivar_t", IvarnfABITy);
3885
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003886 // struct _ivar_list_t {
3887 // uint32 entsize; // sizeof(struct _ivar_t)
3888 // uint32 count;
3889 // struct _iver_t list[count];
3890 // }
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00003891 IvarListnfABITy = llvm::StructType::get(IntTy,
3892 IntTy,
3893 llvm::ArrayType::get(
3894 IvarnfABITy, 0),
3895 NULL);
3896 CGM.getModule().addTypeName("struct._ivar_list_t", IvarListnfABITy);
3897
3898 IvarListnfABIPtrTy = llvm::PointerType::getUnqual(IvarListnfABITy);
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003899
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003900 // struct _class_ro_t {
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00003901 // uint32_t const flags;
3902 // uint32_t const instanceStart;
3903 // uint32_t const instanceSize;
3904 // uint32_t const reserved; // only when building for 64bit targets
3905 // const uint8_t * const ivarLayout;
3906 // const char *const name;
3907 // const struct _method_list_t * const baseMethods;
3908 // const struct _objc_protocol_list *const baseProtocols;
3909 // const struct _ivar_list_t *const ivars;
3910 // const uint8_t * const weakIvarLayout;
3911 // const struct _prop_list_t * const properties;
3912 // }
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003913
3914 // FIXME. Add 'reserved' field in 64bit abi mode!
3915 ClassRonfABITy = llvm::StructType::get(IntTy,
3916 IntTy,
3917 IntTy,
3918 Int8PtrTy,
3919 Int8PtrTy,
3920 MethodListnfABIPtrTy,
3921 ProtocolListnfABIPtrTy,
3922 IvarListnfABIPtrTy,
3923 Int8PtrTy,
3924 PropertyListPtrTy,
3925 NULL);
3926 CGM.getModule().addTypeName("struct._class_ro_t",
3927 ClassRonfABITy);
3928
3929 // ImpnfABITy - LLVM for id (*)(id, SEL, ...)
3930 std::vector<const llvm::Type*> Params;
3931 Params.push_back(ObjectPtrTy);
3932 Params.push_back(SelectorPtrTy);
3933 ImpnfABITy = llvm::PointerType::getUnqual(
3934 llvm::FunctionType::get(ObjectPtrTy, Params, false));
3935
3936 // struct _class_t {
3937 // struct _class_t *isa;
3938 // struct _class_t * const superclass;
3939 // void *cache;
3940 // IMP *vtable;
3941 // struct class_ro_t *ro;
3942 // }
3943
3944 llvm::PATypeHolder ClassTyHolder = llvm::OpaqueType::get();
3945 ClassnfABITy = llvm::StructType::get(llvm::PointerType::getUnqual(ClassTyHolder),
3946 llvm::PointerType::getUnqual(ClassTyHolder),
3947 CachePtrTy,
3948 llvm::PointerType::getUnqual(ImpnfABITy),
3949 llvm::PointerType::getUnqual(
3950 ClassRonfABITy),
3951 NULL);
3952 CGM.getModule().addTypeName("struct._class_t", ClassnfABITy);
3953
3954 cast<llvm::OpaqueType>(ClassTyHolder.get())->refineAbstractTypeTo(
3955 ClassnfABITy);
3956
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00003957 // LLVM for struct _class_t *
3958 ClassnfABIPtrTy = llvm::PointerType::getUnqual(ClassnfABITy);
3959
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00003960 // struct _category_t {
3961 // const char * const name;
3962 // struct _class_t *const cls;
3963 // const struct _method_list_t * const instance_methods;
3964 // const struct _method_list_t * const class_methods;
3965 // const struct _protocol_list_t * const protocols;
3966 // const struct _prop_list_t * const properties;
Fariborz Jahanian45c2ba02009-01-23 17:41:22 +00003967 // }
3968 CategorynfABITy = llvm::StructType::get(Int8PtrTy,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00003969 ClassnfABIPtrTy,
Fariborz Jahanian45c2ba02009-01-23 17:41:22 +00003970 MethodListnfABIPtrTy,
3971 MethodListnfABIPtrTy,
3972 ProtocolListnfABIPtrTy,
3973 PropertyListPtrTy,
3974 NULL);
3975 CGM.getModule().addTypeName("struct._category_t", CategorynfABITy);
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00003976
3977 // New types for nonfragile abi messaging.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00003978 CodeGen::CodeGenTypes &Types = CGM.getTypes();
3979 ASTContext &Ctx = CGM.getContext();
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00003980
3981 // MessageRefTy - LLVM for:
3982 // struct _message_ref_t {
3983 // IMP messenger;
3984 // SEL name;
3985 // };
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00003986
3987 // First the clang type for struct _message_ref_t
3988 RecordDecl *RD = RecordDecl::Create(Ctx, TagDecl::TK_struct, 0,
3989 SourceLocation(),
3990 &Ctx.Idents.get("_message_ref_t"));
Douglas Gregor6ab35242009-04-09 21:40:53 +00003991 RD->addDecl(Ctx, FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
3992 Ctx.VoidPtrTy, 0, false));
3993 RD->addDecl(Ctx, FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
3994 Ctx.getObjCSelType(), 0, false));
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00003995 RD->completeDefinition(Ctx);
3996
3997 MessageRefCTy = Ctx.getTagDeclType(RD);
3998 MessageRefCPtrTy = Ctx.getPointerType(MessageRefCTy);
3999 MessageRefTy = cast<llvm::StructType>(Types.ConvertType(MessageRefCTy));
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004000
4001 // MessageRefPtrTy - LLVM for struct _message_ref_t*
4002 MessageRefPtrTy = llvm::PointerType::getUnqual(MessageRefTy);
4003
4004 // SuperMessageRefTy - LLVM for:
4005 // struct _super_message_ref_t {
4006 // SUPER_IMP messenger;
4007 // SEL name;
4008 // };
4009 SuperMessageRefTy = llvm::StructType::get(ImpnfABITy,
4010 SelectorPtrTy,
4011 NULL);
4012 CGM.getModule().addTypeName("struct._super_message_ref_t", SuperMessageRefTy);
4013
4014 // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t*
4015 SuperMessageRefPtrTy = llvm::PointerType::getUnqual(SuperMessageRefTy);
4016
Daniel Dunbare588b992009-03-01 04:46:24 +00004017
4018 // struct objc_typeinfo {
4019 // const void** vtable; // objc_ehtype_vtable + 2
4020 // const char* name; // c++ typeinfo string
4021 // Class cls;
4022 // };
4023 EHTypeTy = llvm::StructType::get(llvm::PointerType::getUnqual(Int8PtrTy),
4024 Int8PtrTy,
4025 ClassnfABIPtrTy,
4026 NULL);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00004027 CGM.getModule().addTypeName("struct._objc_typeinfo", EHTypeTy);
Daniel Dunbare588b992009-03-01 04:46:24 +00004028 EHTypePtrTy = llvm::PointerType::getUnqual(EHTypeTy);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00004029}
4030
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004031llvm::Function *CGObjCNonFragileABIMac::ModuleInitFunction() {
4032 FinishNonFragileABIModule();
4033
4034 return NULL;
4035}
4036
4037void CGObjCNonFragileABIMac::FinishNonFragileABIModule() {
4038 // nonfragile abi has no module definition.
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004039
4040 // Build list of all implemented classe addresses in array
4041 // L_OBJC_LABEL_CLASS_$.
4042 // FIXME. Also generate in L_OBJC_LABEL_NONLAZY_CLASS_$
4043 // list of 'nonlazy' implementations (defined as those with a +load{}
4044 // method!!).
4045 unsigned NumClasses = DefinedClasses.size();
4046 if (NumClasses) {
4047 std::vector<llvm::Constant*> Symbols(NumClasses);
4048 for (unsigned i=0; i<NumClasses; i++)
4049 Symbols[i] = llvm::ConstantExpr::getBitCast(DefinedClasses[i],
4050 ObjCTypes.Int8PtrTy);
4051 llvm::Constant* Init =
4052 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
4053 NumClasses),
4054 Symbols);
4055
4056 llvm::GlobalVariable *GV =
4057 new llvm::GlobalVariable(Init->getType(), false,
4058 llvm::GlobalValue::InternalLinkage,
4059 Init,
4060 "\01L_OBJC_LABEL_CLASS_$",
4061 &CGM.getModule());
Daniel Dunbar58a29122009-03-09 22:18:41 +00004062 GV->setAlignment(8);
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004063 GV->setSection("__DATA, __objc_classlist, regular, no_dead_strip");
4064 UsedGlobals.push_back(GV);
4065 }
4066
4067 // Build list of all implemented category addresses in array
4068 // L_OBJC_LABEL_CATEGORY_$.
4069 // FIXME. Also generate in L_OBJC_LABEL_NONLAZY_CATEGORY_$
4070 // list of 'nonlazy' category implementations (defined as those with a +load{}
4071 // method!!).
4072 unsigned NumCategory = DefinedCategories.size();
4073 if (NumCategory) {
4074 std::vector<llvm::Constant*> Symbols(NumCategory);
4075 for (unsigned i=0; i<NumCategory; i++)
4076 Symbols[i] = llvm::ConstantExpr::getBitCast(DefinedCategories[i],
4077 ObjCTypes.Int8PtrTy);
4078 llvm::Constant* Init =
4079 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
4080 NumCategory),
4081 Symbols);
4082
4083 llvm::GlobalVariable *GV =
4084 new llvm::GlobalVariable(Init->getType(), false,
4085 llvm::GlobalValue::InternalLinkage,
4086 Init,
4087 "\01L_OBJC_LABEL_CATEGORY_$",
4088 &CGM.getModule());
Daniel Dunbar58a29122009-03-09 22:18:41 +00004089 GV->setAlignment(8);
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004090 GV->setSection("__DATA, __objc_catlist, regular, no_dead_strip");
4091 UsedGlobals.push_back(GV);
4092 }
4093
Fariborz Jahanian0f6610e2009-01-30 22:07:48 +00004094 // static int L_OBJC_IMAGE_INFO[2] = { 0, flags };
4095 // FIXME. flags can be 0 | 1 | 2 | 6. For now just use 0
4096 std::vector<llvm::Constant*> Values(2);
4097 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, 0);
Fariborz Jahanian067986e2009-02-24 21:08:09 +00004098 unsigned int flags = 0;
Fariborz Jahanian66a5c2c2009-02-24 23:34:44 +00004099 // FIXME: Fix and continue?
4100 if (CGM.getLangOptions().getGCMode() != LangOptions::NonGC)
4101 flags |= eImageInfo_GarbageCollected;
4102 if (CGM.getLangOptions().getGCMode() == LangOptions::GCOnly)
4103 flags |= eImageInfo_GCOnly;
Fariborz Jahanian067986e2009-02-24 21:08:09 +00004104 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, flags);
Fariborz Jahanian0f6610e2009-01-30 22:07:48 +00004105 llvm::Constant* Init = llvm::ConstantArray::get(
4106 llvm::ArrayType::get(ObjCTypes.IntTy, 2),
4107 Values);
4108 llvm::GlobalVariable *IMGV =
4109 new llvm::GlobalVariable(Init->getType(), false,
4110 llvm::GlobalValue::InternalLinkage,
4111 Init,
4112 "\01L_OBJC_IMAGE_INFO",
4113 &CGM.getModule());
4114 IMGV->setSection("__DATA, __objc_imageinfo, regular, no_dead_strip");
Daniel Dunbar325f7582009-04-23 08:03:21 +00004115 IMGV->setConstant(true);
Fariborz Jahanian0f6610e2009-01-30 22:07:48 +00004116 UsedGlobals.push_back(IMGV);
4117
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004118 std::vector<llvm::Constant*> Used;
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004119
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004120 for (std::vector<llvm::GlobalVariable*>::iterator i = UsedGlobals.begin(),
4121 e = UsedGlobals.end(); i != e; ++i) {
4122 Used.push_back(llvm::ConstantExpr::getBitCast(*i, ObjCTypes.Int8PtrTy));
4123 }
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004124
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004125 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.Int8PtrTy, Used.size());
4126 llvm::GlobalValue *GV =
4127 new llvm::GlobalVariable(AT, false,
4128 llvm::GlobalValue::AppendingLinkage,
4129 llvm::ConstantArray::get(AT, Used),
4130 "llvm.used",
4131 &CGM.getModule());
4132
4133 GV->setSection("llvm.metadata");
4134
4135}
4136
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004137/// LegacyDispatchedSelector - Returns true if SEL is not in the list of
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004138/// NonLegacyDispatchMethods; false otherwise. What this means is that
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004139/// except for the 19 selectors in the list, we generate 32bit-style
4140/// message dispatch call for all the rest.
4141///
4142bool CGObjCNonFragileABIMac::LegacyDispatchedSelector(Selector Sel) {
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004143 if (NonLegacyDispatchMethods.empty()) {
4144 NonLegacyDispatchMethods.insert(GetNullarySelector("alloc"));
4145 NonLegacyDispatchMethods.insert(GetNullarySelector("class"));
4146 NonLegacyDispatchMethods.insert(GetNullarySelector("self"));
4147 NonLegacyDispatchMethods.insert(GetNullarySelector("isFlipped"));
4148 NonLegacyDispatchMethods.insert(GetNullarySelector("length"));
4149 NonLegacyDispatchMethods.insert(GetNullarySelector("count"));
4150 NonLegacyDispatchMethods.insert(GetNullarySelector("retain"));
4151 NonLegacyDispatchMethods.insert(GetNullarySelector("release"));
4152 NonLegacyDispatchMethods.insert(GetNullarySelector("autorelease"));
4153 NonLegacyDispatchMethods.insert(GetNullarySelector("hash"));
4154
4155 NonLegacyDispatchMethods.insert(GetUnarySelector("allocWithZone"));
4156 NonLegacyDispatchMethods.insert(GetUnarySelector("isKindOfClass"));
4157 NonLegacyDispatchMethods.insert(GetUnarySelector("respondsToSelector"));
4158 NonLegacyDispatchMethods.insert(GetUnarySelector("objectForKey"));
4159 NonLegacyDispatchMethods.insert(GetUnarySelector("objectAtIndex"));
4160 NonLegacyDispatchMethods.insert(GetUnarySelector("isEqualToString"));
4161 NonLegacyDispatchMethods.insert(GetUnarySelector("isEqual"));
4162 NonLegacyDispatchMethods.insert(GetUnarySelector("addObject"));
Fariborz Jahanianbe53be42009-05-13 16:19:02 +00004163 // "countByEnumeratingWithState:objects:count"
4164 IdentifierInfo *KeyIdents[] = {
4165 &CGM.getContext().Idents.get("countByEnumeratingWithState"),
4166 &CGM.getContext().Idents.get("objects"),
4167 &CGM.getContext().Idents.get("count")
4168 };
4169 NonLegacyDispatchMethods.insert(
4170 CGM.getContext().Selectors.getSelector(3, KeyIdents));
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004171 }
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004172 return (NonLegacyDispatchMethods.count(Sel) == 0);
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004173}
4174
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004175// Metadata flags
4176enum MetaDataDlags {
4177 CLS = 0x0,
4178 CLS_META = 0x1,
4179 CLS_ROOT = 0x2,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004180 OBJC2_CLS_HIDDEN = 0x10,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004181 CLS_EXCEPTION = 0x20
4182};
4183/// BuildClassRoTInitializer - generate meta-data for:
4184/// struct _class_ro_t {
4185/// uint32_t const flags;
4186/// uint32_t const instanceStart;
4187/// uint32_t const instanceSize;
4188/// uint32_t const reserved; // only when building for 64bit targets
4189/// const uint8_t * const ivarLayout;
4190/// const char *const name;
4191/// const struct _method_list_t * const baseMethods;
Fariborz Jahanianda320092009-01-29 19:24:30 +00004192/// const struct _protocol_list_t *const baseProtocols;
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004193/// const struct _ivar_list_t *const ivars;
4194/// const uint8_t * const weakIvarLayout;
4195/// const struct _prop_list_t * const properties;
4196/// }
4197///
4198llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassRoTInitializer(
4199 unsigned flags,
4200 unsigned InstanceStart,
4201 unsigned InstanceSize,
4202 const ObjCImplementationDecl *ID) {
4203 std::string ClassName = ID->getNameAsString();
4204 std::vector<llvm::Constant*> Values(10); // 11 for 64bit targets!
4205 Values[ 0] = llvm::ConstantInt::get(ObjCTypes.IntTy, flags);
4206 Values[ 1] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceStart);
4207 Values[ 2] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceSize);
4208 // FIXME. For 64bit targets add 0 here.
Fariborz Jahanianc71303d2009-04-22 23:00:43 +00004209 Values[ 3] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4210 : BuildIvarLayout(ID, true);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004211 Values[ 4] = GetClassName(ID->getIdentifier());
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004212 // const struct _method_list_t * const baseMethods;
4213 std::vector<llvm::Constant*> Methods;
4214 std::string MethodListName("\01l_OBJC_$_");
4215 if (flags & CLS_META) {
4216 MethodListName += "CLASS_METHODS_" + ID->getNameAsString();
Douglas Gregor653f1b12009-04-23 01:02:12 +00004217 for (ObjCImplementationDecl::classmeth_iterator
4218 i = ID->classmeth_begin(CGM.getContext()),
4219 e = ID->classmeth_end(CGM.getContext()); i != e; ++i) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004220 // Class methods should always be defined.
4221 Methods.push_back(GetMethodConstant(*i));
4222 }
4223 } else {
4224 MethodListName += "INSTANCE_METHODS_" + ID->getNameAsString();
Douglas Gregor653f1b12009-04-23 01:02:12 +00004225 for (ObjCImplementationDecl::instmeth_iterator
4226 i = ID->instmeth_begin(CGM.getContext()),
4227 e = ID->instmeth_end(CGM.getContext()); i != e; ++i) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004228 // Instance methods should always be defined.
4229 Methods.push_back(GetMethodConstant(*i));
4230 }
Douglas Gregor653f1b12009-04-23 01:02:12 +00004231 for (ObjCImplementationDecl::propimpl_iterator
4232 i = ID->propimpl_begin(CGM.getContext()),
4233 e = ID->propimpl_end(CGM.getContext()); i != e; ++i) {
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004234 ObjCPropertyImplDecl *PID = *i;
4235
4236 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){
4237 ObjCPropertyDecl *PD = PID->getPropertyDecl();
4238
4239 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
4240 if (llvm::Constant *C = GetMethodConstant(MD))
4241 Methods.push_back(C);
4242 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
4243 if (llvm::Constant *C = GetMethodConstant(MD))
4244 Methods.push_back(C);
4245 }
4246 }
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004247 }
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004248 Values[ 5] = EmitMethodList(MethodListName,
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004249 "__DATA, __objc_const", Methods);
Fariborz Jahanianda320092009-01-29 19:24:30 +00004250
4251 const ObjCInterfaceDecl *OID = ID->getClassInterface();
4252 assert(OID && "CGObjCNonFragileABIMac::BuildClassRoTInitializer");
4253 Values[ 6] = EmitProtocolList("\01l_OBJC_CLASS_PROTOCOLS_$_"
4254 + OID->getNameAsString(),
4255 OID->protocol_begin(),
4256 OID->protocol_end());
4257
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004258 if (flags & CLS_META)
4259 Values[ 7] = llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
4260 else
4261 Values[ 7] = EmitIvarList(ID);
Fariborz Jahanianc71303d2009-04-22 23:00:43 +00004262 Values[ 8] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4263 : BuildIvarLayout(ID, false);
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00004264 if (flags & CLS_META)
4265 Values[ 9] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
4266 else
4267 Values[ 9] =
4268 EmitPropertyList(
4269 "\01l_OBJC_$_PROP_LIST_" + ID->getNameAsString(),
4270 ID, ID->getClassInterface(), ObjCTypes);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004271 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassRonfABITy,
4272 Values);
4273 llvm::GlobalVariable *CLASS_RO_GV =
4274 new llvm::GlobalVariable(ObjCTypes.ClassRonfABITy, false,
4275 llvm::GlobalValue::InternalLinkage,
4276 Init,
4277 (flags & CLS_META) ?
4278 std::string("\01l_OBJC_METACLASS_RO_$_")+ClassName :
4279 std::string("\01l_OBJC_CLASS_RO_$_")+ClassName,
4280 &CGM.getModule());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004281 CLASS_RO_GV->setAlignment(
4282 CGM.getTargetData().getPrefTypeAlignment(ObjCTypes.ClassRonfABITy));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004283 CLASS_RO_GV->setSection("__DATA, __objc_const");
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004284 return CLASS_RO_GV;
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004285
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004286}
4287
4288/// BuildClassMetaData - This routine defines that to-level meta-data
4289/// for the given ClassName for:
4290/// struct _class_t {
4291/// struct _class_t *isa;
4292/// struct _class_t * const superclass;
4293/// void *cache;
4294/// IMP *vtable;
4295/// struct class_ro_t *ro;
4296/// }
4297///
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004298llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassMetaData(
4299 std::string &ClassName,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004300 llvm::Constant *IsAGV,
4301 llvm::Constant *SuperClassGV,
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004302 llvm::Constant *ClassRoGV,
4303 bool HiddenVisibility) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004304 std::vector<llvm::Constant*> Values(5);
4305 Values[0] = IsAGV;
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004306 Values[1] = SuperClassGV
4307 ? SuperClassGV
4308 : llvm::Constant::getNullValue(ObjCTypes.ClassnfABIPtrTy);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004309 Values[2] = ObjCEmptyCacheVar; // &ObjCEmptyCacheVar
4310 Values[3] = ObjCEmptyVtableVar; // &ObjCEmptyVtableVar
4311 Values[4] = ClassRoGV; // &CLASS_RO_GV
4312 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassnfABITy,
4313 Values);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004314 llvm::GlobalVariable *GV = GetClassGlobal(ClassName);
4315 GV->setInitializer(Init);
Fariborz Jahaniandd0db2a2009-01-31 01:07:39 +00004316 GV->setSection("__DATA, __objc_data");
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004317 GV->setAlignment(
4318 CGM.getTargetData().getPrefTypeAlignment(ObjCTypes.ClassnfABITy));
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004319 if (HiddenVisibility)
4320 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004321 return GV;
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004322}
4323
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00004324void CGObjCNonFragileABIMac::GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbarb02532a2009-04-19 23:41:48 +00004325 uint32_t &InstanceStart,
4326 uint32_t &InstanceSize) {
Daniel Dunbarb4c79e02009-05-04 21:26:30 +00004327 const ASTRecordLayout &RL =
4328 CGM.getContext().getASTObjCImplementationLayout(OID);
4329
Daniel Dunbar6e8575b2009-05-04 23:23:09 +00004330 // InstanceSize is really instance end.
Daniel Dunbarb4c79e02009-05-04 21:26:30 +00004331 InstanceSize = llvm::RoundUpToAlignment(RL.getNextOffset(), 8) / 8;
Daniel Dunbar6e8575b2009-05-04 23:23:09 +00004332
4333 // If there are no fields, the start is the same as the end.
4334 if (!RL.getFieldCount())
4335 InstanceStart = InstanceSize;
4336 else
4337 InstanceStart = RL.getFieldOffset(0) / 8;
Daniel Dunbarb02532a2009-04-19 23:41:48 +00004338}
4339
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004340void CGObjCNonFragileABIMac::GenerateClass(const ObjCImplementationDecl *ID) {
4341 std::string ClassName = ID->getNameAsString();
4342 if (!ObjCEmptyCacheVar) {
4343 ObjCEmptyCacheVar = new llvm::GlobalVariable(
Daniel Dunbar948e2582009-02-15 07:36:20 +00004344 ObjCTypes.CacheTy,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004345 false,
4346 llvm::GlobalValue::ExternalLinkage,
4347 0,
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004348 "_objc_empty_cache",
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004349 &CGM.getModule());
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004350
4351 ObjCEmptyVtableVar = new llvm::GlobalVariable(
Daniel Dunbar948e2582009-02-15 07:36:20 +00004352 ObjCTypes.ImpnfABITy,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004353 false,
4354 llvm::GlobalValue::ExternalLinkage,
4355 0,
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004356 "_objc_empty_vtable",
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004357 &CGM.getModule());
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004358 }
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004359 assert(ID->getClassInterface() &&
4360 "CGObjCNonFragileABIMac::GenerateClass - class is 0");
Daniel Dunbar6c1aac82009-04-20 20:18:54 +00004361 // FIXME: Is this correct (that meta class size is never computed)?
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004362 uint32_t InstanceStart =
Duncan Sands9408c452009-05-09 07:08:47 +00004363 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassnfABITy);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004364 uint32_t InstanceSize = InstanceStart;
4365 uint32_t flags = CLS_META;
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004366 std::string ObjCMetaClassName(getMetaclassSymbolPrefix());
4367 std::string ObjCClassName(getClassSymbolPrefix());
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004368
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004369 llvm::GlobalVariable *SuperClassGV, *IsAGV;
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004370
Daniel Dunbar04d40782009-04-14 06:00:08 +00004371 bool classIsHidden =
4372 CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden;
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004373 if (classIsHidden)
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004374 flags |= OBJC2_CLS_HIDDEN;
4375 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004376 // class is root
4377 flags |= CLS_ROOT;
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004378 SuperClassGV = GetClassGlobal(ObjCClassName + ClassName);
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004379 IsAGV = GetClassGlobal(ObjCMetaClassName + ClassName);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004380 } else {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004381 // Has a root. Current class is not a root.
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004382 const ObjCInterfaceDecl *Root = ID->getClassInterface();
4383 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
4384 Root = Super;
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004385 IsAGV = GetClassGlobal(ObjCMetaClassName + Root->getNameAsString());
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004386 // work on super class metadata symbol.
4387 std::string SuperClassName =
4388 ObjCMetaClassName + ID->getClassInterface()->getSuperClass()->getNameAsString();
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004389 SuperClassGV = GetClassGlobal(SuperClassName);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004390 }
4391 llvm::GlobalVariable *CLASS_RO_GV = BuildClassRoTInitializer(flags,
4392 InstanceStart,
4393 InstanceSize,ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004394 std::string TClassName = ObjCMetaClassName + ClassName;
4395 llvm::GlobalVariable *MetaTClass =
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004396 BuildClassMetaData(TClassName, IsAGV, SuperClassGV, CLASS_RO_GV,
4397 classIsHidden);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004398
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004399 // Metadata for the class
4400 flags = CLS;
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004401 if (classIsHidden)
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004402 flags |= OBJC2_CLS_HIDDEN;
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00004403
4404 if (hasObjCExceptionAttribute(ID->getClassInterface()))
4405 flags |= CLS_EXCEPTION;
4406
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004407 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004408 flags |= CLS_ROOT;
4409 SuperClassGV = 0;
Chris Lattnerb7b58b12009-04-19 06:02:28 +00004410 } else {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004411 // Has a root. Current class is not a root.
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004412 std::string RootClassName =
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004413 ID->getClassInterface()->getSuperClass()->getNameAsString();
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004414 SuperClassGV = GetClassGlobal(ObjCClassName + RootClassName);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004415 }
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00004416 GetClassSizeInfo(ID, InstanceStart, InstanceSize);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004417 CLASS_RO_GV = BuildClassRoTInitializer(flags,
Fariborz Jahanianf6a077e2009-01-24 23:43:01 +00004418 InstanceStart,
4419 InstanceSize,
4420 ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004421
4422 TClassName = ObjCClassName + ClassName;
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004423 llvm::GlobalVariable *ClassMD =
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004424 BuildClassMetaData(TClassName, MetaTClass, SuperClassGV, CLASS_RO_GV,
4425 classIsHidden);
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004426 DefinedClasses.push_back(ClassMD);
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00004427
4428 // Force the definition of the EHType if necessary.
4429 if (flags & CLS_EXCEPTION)
4430 GetInterfaceEHType(ID->getClassInterface(), true);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004431}
4432
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00004433/// GenerateProtocolRef - This routine is called to generate code for
4434/// a protocol reference expression; as in:
4435/// @code
4436/// @protocol(Proto1);
4437/// @endcode
4438/// It generates a weak reference to l_OBJC_PROTOCOL_REFERENCE_$_Proto1
4439/// which will hold address of the protocol meta-data.
4440///
4441llvm::Value *CGObjCNonFragileABIMac::GenerateProtocolRef(CGBuilderTy &Builder,
4442 const ObjCProtocolDecl *PD) {
4443
Fariborz Jahanian960cd062009-04-10 18:47:34 +00004444 // This routine is called for @protocol only. So, we must build definition
4445 // of protocol's meta-data (not a reference to it!)
4446 //
4447 llvm::Constant *Init = llvm::ConstantExpr::getBitCast(GetOrEmitProtocol(PD),
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00004448 ObjCTypes.ExternalProtocolPtrTy);
4449
4450 std::string ProtocolName("\01l_OBJC_PROTOCOL_REFERENCE_$_");
4451 ProtocolName += PD->getNameAsCString();
4452
4453 llvm::GlobalVariable *PTGV = CGM.getModule().getGlobalVariable(ProtocolName);
4454 if (PTGV)
4455 return Builder.CreateLoad(PTGV, false, "tmp");
4456 PTGV = new llvm::GlobalVariable(
4457 Init->getType(), false,
Mike Stump286acbd2009-03-07 16:33:28 +00004458 llvm::GlobalValue::WeakAnyLinkage,
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00004459 Init,
4460 ProtocolName,
4461 &CGM.getModule());
4462 PTGV->setSection("__DATA, __objc_protorefs, coalesced, no_dead_strip");
4463 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
4464 UsedGlobals.push_back(PTGV);
4465 return Builder.CreateLoad(PTGV, false, "tmp");
4466}
4467
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00004468/// GenerateCategory - Build metadata for a category implementation.
4469/// struct _category_t {
4470/// const char * const name;
4471/// struct _class_t *const cls;
4472/// const struct _method_list_t * const instance_methods;
4473/// const struct _method_list_t * const class_methods;
4474/// const struct _protocol_list_t * const protocols;
4475/// const struct _prop_list_t * const properties;
4476/// }
4477///
4478void CGObjCNonFragileABIMac::GenerateCategory(const ObjCCategoryImplDecl *OCD)
4479{
4480 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004481 const char *Prefix = "\01l_OBJC_$_CATEGORY_";
4482 std::string ExtCatName(Prefix + Interface->getNameAsString()+
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00004483 "_$_" + OCD->getNameAsString());
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004484 std::string ExtClassName(getClassSymbolPrefix() +
4485 Interface->getNameAsString());
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00004486
4487 std::vector<llvm::Constant*> Values(6);
4488 Values[0] = GetClassName(OCD->getIdentifier());
4489 // meta-class entry symbol
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004490 llvm::GlobalVariable *ClassGV = GetClassGlobal(ExtClassName);
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00004491 Values[1] = ClassGV;
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004492 std::vector<llvm::Constant*> Methods;
4493 std::string MethodListName(Prefix);
4494 MethodListName += "INSTANCE_METHODS_" + Interface->getNameAsString() +
4495 "_$_" + OCD->getNameAsString();
4496
Douglas Gregor653f1b12009-04-23 01:02:12 +00004497 for (ObjCCategoryImplDecl::instmeth_iterator
4498 i = OCD->instmeth_begin(CGM.getContext()),
4499 e = OCD->instmeth_end(CGM.getContext()); i != e; ++i) {
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004500 // Instance methods should always be defined.
4501 Methods.push_back(GetMethodConstant(*i));
4502 }
4503
4504 Values[2] = EmitMethodList(MethodListName,
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004505 "__DATA, __objc_const",
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004506 Methods);
4507
4508 MethodListName = Prefix;
4509 MethodListName += "CLASS_METHODS_" + Interface->getNameAsString() + "_$_" +
4510 OCD->getNameAsString();
4511 Methods.clear();
Douglas Gregor653f1b12009-04-23 01:02:12 +00004512 for (ObjCCategoryImplDecl::classmeth_iterator
4513 i = OCD->classmeth_begin(CGM.getContext()),
4514 e = OCD->classmeth_end(CGM.getContext()); i != e; ++i) {
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004515 // Class methods should always be defined.
4516 Methods.push_back(GetMethodConstant(*i));
4517 }
4518
4519 Values[3] = EmitMethodList(MethodListName,
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004520 "__DATA, __objc_const",
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004521 Methods);
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00004522 const ObjCCategoryDecl *Category =
4523 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00004524 if (Category) {
4525 std::string ExtName(Interface->getNameAsString() + "_$_" +
4526 OCD->getNameAsString());
4527 Values[4] = EmitProtocolList("\01l_OBJC_CATEGORY_PROTOCOLS_$_"
4528 + Interface->getNameAsString() + "_$_"
4529 + Category->getNameAsString(),
4530 Category->protocol_begin(),
4531 Category->protocol_end());
4532 Values[5] =
4533 EmitPropertyList(std::string("\01l_OBJC_$_PROP_LIST_") + ExtName,
4534 OCD, Category, ObjCTypes);
4535 }
4536 else {
4537 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
4538 Values[5] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
4539 }
4540
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00004541 llvm::Constant *Init =
4542 llvm::ConstantStruct::get(ObjCTypes.CategorynfABITy,
4543 Values);
4544 llvm::GlobalVariable *GCATV
4545 = new llvm::GlobalVariable(ObjCTypes.CategorynfABITy,
4546 false,
4547 llvm::GlobalValue::InternalLinkage,
4548 Init,
4549 ExtCatName,
4550 &CGM.getModule());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004551 GCATV->setAlignment(
4552 CGM.getTargetData().getPrefTypeAlignment(ObjCTypes.CategorynfABITy));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004553 GCATV->setSection("__DATA, __objc_const");
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00004554 UsedGlobals.push_back(GCATV);
4555 DefinedCategories.push_back(GCATV);
4556}
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004557
4558/// GetMethodConstant - Return a struct objc_method constant for the
4559/// given method if it has been defined. The result is null if the
4560/// method has not been defined. The return value has type MethodPtrTy.
4561llvm::Constant *CGObjCNonFragileABIMac::GetMethodConstant(
4562 const ObjCMethodDecl *MD) {
4563 // FIXME: Use DenseMap::lookup
4564 llvm::Function *Fn = MethodDefinitions[MD];
4565 if (!Fn)
4566 return 0;
4567
4568 std::vector<llvm::Constant*> Method(3);
4569 Method[0] =
4570 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
4571 ObjCTypes.SelectorPtrTy);
4572 Method[1] = GetMethodVarType(MD);
4573 Method[2] = llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy);
4574 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
4575}
4576
4577/// EmitMethodList - Build meta-data for method declarations
4578/// struct _method_list_t {
4579/// uint32_t entsize; // sizeof(struct _objc_method)
4580/// uint32_t method_count;
4581/// struct _objc_method method_list[method_count];
4582/// }
4583///
4584llvm::Constant *CGObjCNonFragileABIMac::EmitMethodList(
4585 const std::string &Name,
4586 const char *Section,
4587 const ConstantVector &Methods) {
4588 // Return null for empty list.
4589 if (Methods.empty())
4590 return llvm::Constant::getNullValue(ObjCTypes.MethodListnfABIPtrTy);
4591
4592 std::vector<llvm::Constant*> Values(3);
4593 // sizeof(struct _objc_method)
Duncan Sands9408c452009-05-09 07:08:47 +00004594 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.MethodTy);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004595 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
4596 // method_count
4597 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
4598 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
4599 Methods.size());
4600 Values[2] = llvm::ConstantArray::get(AT, Methods);
4601 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
4602
4603 llvm::GlobalVariable *GV =
4604 new llvm::GlobalVariable(Init->getType(), false,
4605 llvm::GlobalValue::InternalLinkage,
4606 Init,
4607 Name,
4608 &CGM.getModule());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004609 GV->setAlignment(
4610 CGM.getTargetData().getPrefTypeAlignment(Init->getType()));
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004611 GV->setSection(Section);
4612 UsedGlobals.push_back(GV);
4613 return llvm::ConstantExpr::getBitCast(GV,
4614 ObjCTypes.MethodListnfABIPtrTy);
4615}
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004616
Fariborz Jahanianed157d32009-02-10 20:21:06 +00004617/// ObjCIvarOffsetVariable - Returns the ivar offset variable for
4618/// the given ivar.
Fariborz Jahanianed157d32009-02-10 20:21:06 +00004619llvm::GlobalVariable * CGObjCNonFragileABIMac::ObjCIvarOffsetVariable(
Fariborz Jahanian01a0c362009-02-12 18:51:23 +00004620 const ObjCInterfaceDecl *ID,
Fariborz Jahanianed157d32009-02-10 20:21:06 +00004621 const ObjCIvarDecl *Ivar) {
Daniel Dunbara81419d2009-05-05 00:36:57 +00004622 // FIXME: We shouldn't need to do this lookup.
4623 unsigned Index;
4624 const ObjCInterfaceDecl *Container =
4625 FindIvarInterface(CGM.getContext(), ID, Ivar, Index);
4626 assert(Container && "Unable to find ivar container!");
4627 std::string Name = "OBJC_IVAR_$_" + Container->getNameAsString() +
Douglas Gregor6ab35242009-04-09 21:40:53 +00004628 '.' + Ivar->getNameAsString();
Fariborz Jahanianed157d32009-02-10 20:21:06 +00004629 llvm::GlobalVariable *IvarOffsetGV =
4630 CGM.getModule().getGlobalVariable(Name);
4631 if (!IvarOffsetGV)
4632 IvarOffsetGV =
4633 new llvm::GlobalVariable(ObjCTypes.LongTy,
4634 false,
4635 llvm::GlobalValue::ExternalLinkage,
4636 0,
4637 Name,
4638 &CGM.getModule());
4639 return IvarOffsetGV;
4640}
4641
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004642llvm::Constant * CGObjCNonFragileABIMac::EmitIvarOffsetVar(
Fariborz Jahanianed157d32009-02-10 20:21:06 +00004643 const ObjCInterfaceDecl *ID,
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00004644 const ObjCIvarDecl *Ivar,
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004645 unsigned long int Offset) {
Daniel Dunbar737c5022009-04-19 00:44:02 +00004646 llvm::GlobalVariable *IvarOffsetGV = ObjCIvarOffsetVariable(ID, Ivar);
4647 IvarOffsetGV->setInitializer(llvm::ConstantInt::get(ObjCTypes.LongTy,
4648 Offset));
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004649 IvarOffsetGV->setAlignment(
Fariborz Jahanian45012a72009-02-03 00:09:52 +00004650 CGM.getTargetData().getPrefTypeAlignment(ObjCTypes.LongTy));
Daniel Dunbar737c5022009-04-19 00:44:02 +00004651
4652 // FIXME: This matches gcc, but shouldn't the visibility be set on
4653 // the use as well (i.e., in ObjCIvarOffsetVariable).
4654 if (Ivar->getAccessControl() == ObjCIvarDecl::Private ||
4655 Ivar->getAccessControl() == ObjCIvarDecl::Package ||
4656 CGM.getDeclVisibilityMode(ID) == LangOptions::Hidden)
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00004657 IvarOffsetGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar04d40782009-04-14 06:00:08 +00004658 else
Fariborz Jahanian77c9fd22009-04-06 18:30:00 +00004659 IvarOffsetGV->setVisibility(llvm::GlobalValue::DefaultVisibility);
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004660 IvarOffsetGV->setSection("__DATA, __objc_const");
Fariborz Jahanian45012a72009-02-03 00:09:52 +00004661 return IvarOffsetGV;
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004662}
4663
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004664/// EmitIvarList - Emit the ivar list for the given
Daniel Dunbar11394522009-04-18 08:51:00 +00004665/// implementation. The return value has type
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004666/// IvarListnfABIPtrTy.
4667/// struct _ivar_t {
4668/// unsigned long int *offset; // pointer to ivar offset location
4669/// char *name;
4670/// char *type;
4671/// uint32_t alignment;
4672/// uint32_t size;
4673/// }
4674/// struct _ivar_list_t {
4675/// uint32 entsize; // sizeof(struct _ivar_t)
4676/// uint32 count;
4677/// struct _iver_t list[count];
4678/// }
4679///
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00004680
4681void CGObjCCommonMac::GetNamedIvarList(const ObjCInterfaceDecl *OID,
4682 llvm::SmallVector<ObjCIvarDecl*, 16> &Res) const {
4683 for (ObjCInterfaceDecl::ivar_iterator I = OID->ivar_begin(),
4684 E = OID->ivar_end(); I != E; ++I) {
4685 // Ignore unnamed bit-fields.
4686 if (!(*I)->getDeclName())
4687 continue;
4688
4689 Res.push_back(*I);
4690 }
4691
Fariborz Jahanian98200742009-05-12 18:14:29 +00004692 // Also save synthesize ivars.
4693 // FIXME. Why can't we just use passed in Res small vector?
4694 llvm::SmallVector<ObjCIvarDecl*, 16> Ivars;
4695 CGM.getContext().CollectSynthesizedIvars(OID, Ivars);
4696 for (unsigned k = 0, e = Ivars.size(); k != e; ++k)
4697 Res.push_back(Ivars[k]);
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00004698}
4699
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004700llvm::Constant *CGObjCNonFragileABIMac::EmitIvarList(
4701 const ObjCImplementationDecl *ID) {
4702
4703 std::vector<llvm::Constant*> Ivars, Ivar(5);
4704
4705 const ObjCInterfaceDecl *OID = ID->getClassInterface();
4706 assert(OID && "CGObjCNonFragileABIMac::EmitIvarList - null interface");
4707
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004708 // FIXME. Consolidate this with similar code in GenerateClass.
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00004709
Daniel Dunbar91636d62009-04-20 00:33:43 +00004710 // Collect declared and synthesized ivars in a small vector.
Fariborz Jahanian18191882009-03-31 18:11:23 +00004711 llvm::SmallVector<ObjCIvarDecl*, 16> OIvars;
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00004712 GetNamedIvarList(OID, OIvars);
Fariborz Jahanian99eee362009-04-01 19:37:34 +00004713
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00004714 for (unsigned i = 0, e = OIvars.size(); i != e; ++i) {
4715 ObjCIvarDecl *IVD = OIvars[i];
Daniel Dunbar3eec8aa2009-04-20 05:53:40 +00004716 Ivar[0] = EmitIvarOffsetVar(ID->getClassInterface(), IVD,
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00004717 ComputeIvarBaseOffset(CGM, ID, IVD));
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00004718 Ivar[1] = GetMethodVarName(IVD->getIdentifier());
4719 Ivar[2] = GetMethodVarType(IVD);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004720 const llvm::Type *FieldTy =
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00004721 CGM.getTypes().ConvertTypeForMem(IVD->getType());
Duncan Sands9408c452009-05-09 07:08:47 +00004722 unsigned Size = CGM.getTargetData().getTypeAllocSize(FieldTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004723 unsigned Align = CGM.getContext().getPreferredTypeAlign(
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00004724 IVD->getType().getTypePtr()) >> 3;
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004725 Align = llvm::Log2_32(Align);
4726 Ivar[3] = llvm::ConstantInt::get(ObjCTypes.IntTy, Align);
Daniel Dunbar91636d62009-04-20 00:33:43 +00004727 // NOTE. Size of a bitfield does not match gcc's, because of the
4728 // way bitfields are treated special in each. But I am told that
4729 // 'size' for bitfield ivars is ignored by the runtime so it does
4730 // not matter. If it matters, there is enough info to get the
4731 // bitfield right!
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004732 Ivar[4] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
4733 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarnfABITy, Ivar));
4734 }
4735 // Return null for empty list.
4736 if (Ivars.empty())
4737 return llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
4738 std::vector<llvm::Constant*> Values(3);
Duncan Sands9408c452009-05-09 07:08:47 +00004739 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.IvarnfABITy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004740 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
4741 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
4742 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarnfABITy,
4743 Ivars.size());
4744 Values[2] = llvm::ConstantArray::get(AT, Ivars);
4745 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
4746 const char *Prefix = "\01l_OBJC_$_INSTANCE_VARIABLES_";
4747 llvm::GlobalVariable *GV =
4748 new llvm::GlobalVariable(Init->getType(), false,
4749 llvm::GlobalValue::InternalLinkage,
4750 Init,
4751 Prefix + OID->getNameAsString(),
4752 &CGM.getModule());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004753 GV->setAlignment(
4754 CGM.getTargetData().getPrefTypeAlignment(Init->getType()));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004755 GV->setSection("__DATA, __objc_const");
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004756
4757 UsedGlobals.push_back(GV);
4758 return llvm::ConstantExpr::getBitCast(GV,
4759 ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00004760}
4761
4762llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocolRef(
4763 const ObjCProtocolDecl *PD) {
4764 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
4765
4766 if (!Entry) {
4767 // We use the initializer as a marker of whether this is a forward
4768 // reference or not. At module finalization we add the empty
4769 // contents for protocols which were referenced but never defined.
4770 Entry =
4771 new llvm::GlobalVariable(ObjCTypes.ProtocolnfABITy, false,
4772 llvm::GlobalValue::ExternalLinkage,
4773 0,
4774 "\01l_OBJC_PROTOCOL_$_" + PD->getNameAsString(),
4775 &CGM.getModule());
4776 Entry->setSection("__DATA,__datacoal_nt,coalesced");
4777 UsedGlobals.push_back(Entry);
Fariborz Jahanianda320092009-01-29 19:24:30 +00004778 }
4779
4780 return Entry;
4781}
4782
4783/// GetOrEmitProtocol - Generate the protocol meta-data:
4784/// @code
4785/// struct _protocol_t {
4786/// id isa; // NULL
4787/// const char * const protocol_name;
4788/// const struct _protocol_list_t * protocol_list; // super protocols
4789/// const struct method_list_t * const instance_methods;
4790/// const struct method_list_t * const class_methods;
4791/// const struct method_list_t *optionalInstanceMethods;
4792/// const struct method_list_t *optionalClassMethods;
4793/// const struct _prop_list_t * properties;
4794/// const uint32_t size; // sizeof(struct _protocol_t)
4795/// const uint32_t flags; // = 0
4796/// }
4797/// @endcode
4798///
4799
4800llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocol(
4801 const ObjCProtocolDecl *PD) {
4802 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
4803
4804 // Early exit if a defining object has already been generated.
4805 if (Entry && Entry->hasInitializer())
4806 return Entry;
4807
4808 const char *ProtocolName = PD->getNameAsCString();
4809
4810 // Construct method lists.
4811 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
4812 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Douglas Gregor6ab35242009-04-09 21:40:53 +00004813 for (ObjCProtocolDecl::instmeth_iterator
4814 i = PD->instmeth_begin(CGM.getContext()),
4815 e = PD->instmeth_end(CGM.getContext());
4816 i != e; ++i) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00004817 ObjCMethodDecl *MD = *i;
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00004818 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Fariborz Jahanianda320092009-01-29 19:24:30 +00004819 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
4820 OptInstanceMethods.push_back(C);
4821 } else {
4822 InstanceMethods.push_back(C);
4823 }
4824 }
4825
Douglas Gregor6ab35242009-04-09 21:40:53 +00004826 for (ObjCProtocolDecl::classmeth_iterator
4827 i = PD->classmeth_begin(CGM.getContext()),
4828 e = PD->classmeth_end(CGM.getContext());
4829 i != e; ++i) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00004830 ObjCMethodDecl *MD = *i;
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00004831 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Fariborz Jahanianda320092009-01-29 19:24:30 +00004832 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
4833 OptClassMethods.push_back(C);
4834 } else {
4835 ClassMethods.push_back(C);
4836 }
4837 }
4838
4839 std::vector<llvm::Constant*> Values(10);
4840 // isa is NULL
4841 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ObjectPtrTy);
4842 Values[1] = GetClassName(PD->getIdentifier());
4843 Values[2] = EmitProtocolList(
4844 "\01l_OBJC_$_PROTOCOL_REFS_" + PD->getNameAsString(),
4845 PD->protocol_begin(),
4846 PD->protocol_end());
4847
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00004848 Values[3] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_"
Fariborz Jahanianda320092009-01-29 19:24:30 +00004849 + PD->getNameAsString(),
4850 "__DATA, __objc_const",
4851 InstanceMethods);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00004852 Values[4] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_"
Fariborz Jahanianda320092009-01-29 19:24:30 +00004853 + PD->getNameAsString(),
4854 "__DATA, __objc_const",
4855 ClassMethods);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00004856 Values[5] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_"
Fariborz Jahanianda320092009-01-29 19:24:30 +00004857 + PD->getNameAsString(),
4858 "__DATA, __objc_const",
4859 OptInstanceMethods);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00004860 Values[6] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_OPT_"
Fariborz Jahanianda320092009-01-29 19:24:30 +00004861 + PD->getNameAsString(),
4862 "__DATA, __objc_const",
4863 OptClassMethods);
4864 Values[7] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + PD->getNameAsString(),
4865 0, PD, ObjCTypes);
4866 uint32_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00004867 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolnfABITy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00004868 Values[8] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
4869 Values[9] = llvm::Constant::getNullValue(ObjCTypes.IntTy);
4870 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolnfABITy,
4871 Values);
4872
4873 if (Entry) {
4874 // Already created, fix the linkage and update the initializer.
Mike Stump286acbd2009-03-07 16:33:28 +00004875 Entry->setLinkage(llvm::GlobalValue::WeakAnyLinkage);
Fariborz Jahanianda320092009-01-29 19:24:30 +00004876 Entry->setInitializer(Init);
4877 } else {
4878 Entry =
4879 new llvm::GlobalVariable(ObjCTypes.ProtocolnfABITy, false,
Mike Stump286acbd2009-03-07 16:33:28 +00004880 llvm::GlobalValue::WeakAnyLinkage,
Fariborz Jahanianda320092009-01-29 19:24:30 +00004881 Init,
4882 std::string("\01l_OBJC_PROTOCOL_$_")+ProtocolName,
4883 &CGM.getModule());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004884 Entry->setAlignment(
4885 CGM.getTargetData().getPrefTypeAlignment(ObjCTypes.ProtocolnfABITy));
Fariborz Jahanianda320092009-01-29 19:24:30 +00004886 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanianda320092009-01-29 19:24:30 +00004887 }
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00004888 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
4889
4890 // Use this protocol meta-data to build protocol list table in section
4891 // __DATA, __objc_protolist
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00004892 llvm::GlobalVariable *PTGV = new llvm::GlobalVariable(
Daniel Dunbar948e2582009-02-15 07:36:20 +00004893 ObjCTypes.ProtocolnfABIPtrTy, false,
Mike Stump286acbd2009-03-07 16:33:28 +00004894 llvm::GlobalValue::WeakAnyLinkage,
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00004895 Entry,
4896 std::string("\01l_OBJC_LABEL_PROTOCOL_$_")
4897 +ProtocolName,
4898 &CGM.getModule());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004899 PTGV->setAlignment(
Daniel Dunbar948e2582009-02-15 07:36:20 +00004900 CGM.getTargetData().getPrefTypeAlignment(ObjCTypes.ProtocolnfABIPtrTy));
Daniel Dunbar0bf21992009-04-15 02:56:18 +00004901 PTGV->setSection("__DATA, __objc_protolist, coalesced, no_dead_strip");
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00004902 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
4903 UsedGlobals.push_back(PTGV);
Fariborz Jahanianda320092009-01-29 19:24:30 +00004904 return Entry;
4905}
4906
4907/// EmitProtocolList - Generate protocol list meta-data:
4908/// @code
4909/// struct _protocol_list_t {
4910/// long protocol_count; // Note, this is 32/64 bit
4911/// struct _protocol_t[protocol_count];
4912/// }
4913/// @endcode
4914///
4915llvm::Constant *
4916CGObjCNonFragileABIMac::EmitProtocolList(const std::string &Name,
4917 ObjCProtocolDecl::protocol_iterator begin,
4918 ObjCProtocolDecl::protocol_iterator end) {
4919 std::vector<llvm::Constant*> ProtocolRefs;
4920
Fariborz Jahanianda320092009-01-29 19:24:30 +00004921 // Just return null for empty protocol lists
Daniel Dunbar948e2582009-02-15 07:36:20 +00004922 if (begin == end)
Fariborz Jahanianda320092009-01-29 19:24:30 +00004923 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
4924
Daniel Dunbar948e2582009-02-15 07:36:20 +00004925 // FIXME: We shouldn't need to do this lookup here, should we?
Fariborz Jahanianda320092009-01-29 19:24:30 +00004926 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true);
4927 if (GV)
Daniel Dunbar948e2582009-02-15 07:36:20 +00004928 return llvm::ConstantExpr::getBitCast(GV,
4929 ObjCTypes.ProtocolListnfABIPtrTy);
4930
4931 for (; begin != end; ++begin)
4932 ProtocolRefs.push_back(GetProtocolRef(*begin)); // Implemented???
4933
Fariborz Jahanianda320092009-01-29 19:24:30 +00004934 // This list is null terminated.
4935 ProtocolRefs.push_back(llvm::Constant::getNullValue(
Daniel Dunbar948e2582009-02-15 07:36:20 +00004936 ObjCTypes.ProtocolnfABIPtrTy));
Fariborz Jahanianda320092009-01-29 19:24:30 +00004937
4938 std::vector<llvm::Constant*> Values(2);
4939 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, ProtocolRefs.size() - 1);
4940 Values[1] =
Daniel Dunbar948e2582009-02-15 07:36:20 +00004941 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.ProtocolnfABIPtrTy,
Fariborz Jahanianda320092009-01-29 19:24:30 +00004942 ProtocolRefs.size()),
4943 ProtocolRefs);
4944
4945 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
4946 GV = new llvm::GlobalVariable(Init->getType(), false,
4947 llvm::GlobalValue::InternalLinkage,
4948 Init,
4949 Name,
4950 &CGM.getModule());
4951 GV->setSection("__DATA, __objc_const");
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004952 GV->setAlignment(
4953 CGM.getTargetData().getPrefTypeAlignment(Init->getType()));
Fariborz Jahanianda320092009-01-29 19:24:30 +00004954 UsedGlobals.push_back(GV);
Daniel Dunbar948e2582009-02-15 07:36:20 +00004955 return llvm::ConstantExpr::getBitCast(GV,
4956 ObjCTypes.ProtocolListnfABIPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00004957}
4958
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00004959/// GetMethodDescriptionConstant - This routine build following meta-data:
4960/// struct _objc_method {
4961/// SEL _cmd;
4962/// char *method_type;
4963/// char *_imp;
4964/// }
4965
4966llvm::Constant *
4967CGObjCNonFragileABIMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
4968 std::vector<llvm::Constant*> Desc(3);
4969 Desc[0] = llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
4970 ObjCTypes.SelectorPtrTy);
4971 Desc[1] = GetMethodVarType(MD);
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00004972 // Protocol methods have no implementation. So, this entry is always NULL.
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00004973 Desc[2] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
4974 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Desc);
4975}
Fariborz Jahanian45012a72009-02-03 00:09:52 +00004976
4977/// EmitObjCValueForIvar - Code Gen for nonfragile ivar reference.
4978/// This code gen. amounts to generating code for:
4979/// @code
4980/// (type *)((char *)base + _OBJC_IVAR_$_.ivar;
4981/// @encode
4982///
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00004983LValue CGObjCNonFragileABIMac::EmitObjCValueForIvar(
Fariborz Jahanian45012a72009-02-03 00:09:52 +00004984 CodeGen::CodeGenFunction &CGF,
4985 QualType ObjectTy,
4986 llvm::Value *BaseValue,
4987 const ObjCIvarDecl *Ivar,
Fariborz Jahanian45012a72009-02-03 00:09:52 +00004988 unsigned CVRQualifiers) {
Daniel Dunbar525c9b72009-04-21 01:19:28 +00004989 const ObjCInterfaceDecl *ID = ObjectTy->getAsObjCInterfaceType()->getDecl();
Daniel Dunbar97776872009-04-22 07:32:20 +00004990 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
4991 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian45012a72009-02-03 00:09:52 +00004992}
4993
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00004994llvm::Value *CGObjCNonFragileABIMac::EmitIvarOffset(
4995 CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00004996 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00004997 const ObjCIvarDecl *Ivar) {
Daniel Dunbar5e88bea2009-04-19 00:31:15 +00004998 return CGF.Builder.CreateLoad(ObjCIvarOffsetVariable(Interface, Ivar),
4999 false, "ivar");
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00005000}
5001
Fariborz Jahanian46551122009-02-04 00:22:57 +00005002CodeGen::RValue CGObjCNonFragileABIMac::EmitMessageSend(
5003 CodeGen::CodeGenFunction &CGF,
5004 QualType ResultType,
5005 Selector Sel,
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005006 llvm::Value *Receiver,
Fariborz Jahanian46551122009-02-04 00:22:57 +00005007 QualType Arg0Ty,
5008 bool IsSuper,
5009 const CallArgList &CallArgs) {
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005010 // FIXME. Even though IsSuper is passes. This function doese not
5011 // handle calls to 'super' receivers.
5012 CodeGenTypes &Types = CGM.getTypes();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005013 llvm::Value *Arg0 = Receiver;
5014 if (!IsSuper)
5015 Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy, "tmp");
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005016
5017 // Find the message function name.
Fariborz Jahanianef163782009-02-05 01:13:09 +00005018 // FIXME. This is too much work to get the ABI-specific result type
5019 // needed to find the message name.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005020 const CGFunctionInfo &FnInfo = Types.getFunctionInfo(ResultType,
5021 llvm::SmallVector<QualType, 16>());
Fariborz Jahanian70b51c72009-04-30 23:08:58 +00005022 llvm::Constant *Fn = 0;
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005023 std::string Name("\01l_");
5024 if (CGM.ReturnTypeUsesSret(FnInfo)) {
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005025#if 0
5026 // unlike what is documented. gcc never generates this API!!
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005027 if (Receiver->getType() == ObjCTypes.ObjectPtrTy) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005028 Fn = ObjCTypes.getMessageSendIdStretFixupFn();
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005029 // FIXME. Is there a better way of getting these names.
5030 // They are available in RuntimeFunctions vector pair.
5031 Name += "objc_msgSendId_stret_fixup";
5032 }
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005033 else
5034#endif
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005035 if (IsSuper) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005036 Fn = ObjCTypes.getMessageSendSuper2StretFixupFn();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005037 Name += "objc_msgSendSuper2_stret_fixup";
5038 }
5039 else
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005040 {
Chris Lattner1c02f862009-04-22 02:53:24 +00005041 Fn = ObjCTypes.getMessageSendStretFixupFn();
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005042 Name += "objc_msgSend_stret_fixup";
5043 }
5044 }
Fariborz Jahanian5b2bad02009-04-30 16:31:11 +00005045 else if (!IsSuper && ResultType->isFloatingType()) {
5046 if (const BuiltinType *BT = ResultType->getAsBuiltinType()) {
5047 BuiltinType::Kind k = BT->getKind();
5048 if (k == BuiltinType::LongDouble) {
5049 Fn = ObjCTypes.getMessageSendFpretFixupFn();
5050 Name += "objc_msgSend_fpret_fixup";
5051 }
5052 else {
5053 Fn = ObjCTypes.getMessageSendFixupFn();
5054 Name += "objc_msgSend_fixup";
5055 }
5056 }
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005057 }
5058 else {
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005059#if 0
5060// unlike what is documented. gcc never generates this API!!
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005061 if (Receiver->getType() == ObjCTypes.ObjectPtrTy) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005062 Fn = ObjCTypes.getMessageSendIdFixupFn();
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005063 Name += "objc_msgSendId_fixup";
5064 }
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005065 else
5066#endif
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005067 if (IsSuper) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005068 Fn = ObjCTypes.getMessageSendSuper2FixupFn();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005069 Name += "objc_msgSendSuper2_fixup";
5070 }
5071 else
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005072 {
Chris Lattner1c02f862009-04-22 02:53:24 +00005073 Fn = ObjCTypes.getMessageSendFixupFn();
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005074 Name += "objc_msgSend_fixup";
5075 }
5076 }
Fariborz Jahanian70b51c72009-04-30 23:08:58 +00005077 assert(Fn && "CGObjCNonFragileABIMac::EmitMessageSend");
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005078 Name += '_';
5079 std::string SelName(Sel.getAsString());
5080 // Replace all ':' in selector name with '_' ouch!
5081 for(unsigned i = 0; i < SelName.size(); i++)
5082 if (SelName[i] == ':')
5083 SelName[i] = '_';
5084 Name += SelName;
5085 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
5086 if (!GV) {
Daniel Dunbar33af70f2009-04-15 19:03:14 +00005087 // Build message ref table entry.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005088 std::vector<llvm::Constant*> Values(2);
5089 Values[0] = Fn;
5090 Values[1] = GetMethodVarName(Sel);
5091 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
5092 GV = new llvm::GlobalVariable(Init->getType(), false,
Mike Stump286acbd2009-03-07 16:33:28 +00005093 llvm::GlobalValue::WeakAnyLinkage,
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005094 Init,
5095 Name,
5096 &CGM.getModule());
5097 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbarf59c1a62009-04-15 19:04:46 +00005098 GV->setAlignment(16);
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005099 GV->setSection("__DATA, __objc_msgrefs, coalesced");
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005100 }
5101 llvm::Value *Arg1 = CGF.Builder.CreateBitCast(GV, ObjCTypes.MessageRefPtrTy);
Fariborz Jahanianef163782009-02-05 01:13:09 +00005102
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005103 CallArgList ActualArgs;
5104 ActualArgs.push_back(std::make_pair(RValue::get(Arg0), Arg0Ty));
5105 ActualArgs.push_back(std::make_pair(RValue::get(Arg1),
5106 ObjCTypes.MessageRefCPtrTy));
5107 ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
Fariborz Jahanianef163782009-02-05 01:13:09 +00005108 const CGFunctionInfo &FnInfo1 = Types.getFunctionInfo(ResultType, ActualArgs);
5109 llvm::Value *Callee = CGF.Builder.CreateStructGEP(Arg1, 0);
5110 Callee = CGF.Builder.CreateLoad(Callee);
Fariborz Jahanian3ab75bd2009-02-14 21:25:36 +00005111 const llvm::FunctionType *FTy = Types.GetFunctionType(FnInfo1, true);
Fariborz Jahanianef163782009-02-05 01:13:09 +00005112 Callee = CGF.Builder.CreateBitCast(Callee,
5113 llvm::PointerType::getUnqual(FTy));
5114 return CGF.EmitCall(FnInfo1, Callee, ActualArgs);
Fariborz Jahanian46551122009-02-04 00:22:57 +00005115}
5116
5117/// Generate code for a message send expression in the nonfragile abi.
5118CodeGen::RValue CGObjCNonFragileABIMac::GenerateMessageSend(
5119 CodeGen::CodeGenFunction &CGF,
5120 QualType ResultType,
5121 Selector Sel,
5122 llvm::Value *Receiver,
5123 bool IsClassMessage,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00005124 const CallArgList &CallArgs,
5125 const ObjCMethodDecl *Method) {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005126 return LegacyDispatchedSelector(Sel)
5127 ? EmitLegacyMessageSend(CGF, ResultType, EmitSelector(CGF.Builder, Sel),
5128 Receiver, CGF.getContext().getObjCIdType(),
5129 false, CallArgs, ObjCTypes)
5130 : EmitMessageSend(CGF, ResultType, Sel,
5131 Receiver, CGF.getContext().getObjCIdType(),
5132 false, CallArgs);
Fariborz Jahanian46551122009-02-04 00:22:57 +00005133}
5134
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005135llvm::GlobalVariable *
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005136CGObjCNonFragileABIMac::GetClassGlobal(const std::string &Name) {
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005137 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
5138
Daniel Dunbardfff2302009-03-02 05:18:14 +00005139 if (!GV) {
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005140 GV = new llvm::GlobalVariable(ObjCTypes.ClassnfABITy, false,
5141 llvm::GlobalValue::ExternalLinkage,
5142 0, Name, &CGM.getModule());
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005143 }
5144
5145 return GV;
5146}
5147
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005148llvm::Value *CGObjCNonFragileABIMac::EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar11394522009-04-18 08:51:00 +00005149 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005150 llvm::GlobalVariable *&Entry = ClassReferences[ID->getIdentifier()];
5151
5152 if (!Entry) {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005153 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005154 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005155 Entry =
5156 new llvm::GlobalVariable(ObjCTypes.ClassnfABIPtrTy, false,
5157 llvm::GlobalValue::InternalLinkage,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005158 ClassGV,
Daniel Dunbar11394522009-04-18 08:51:00 +00005159 "\01L_OBJC_CLASSLIST_REFERENCES_$_",
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005160 &CGM.getModule());
5161 Entry->setAlignment(
5162 CGM.getTargetData().getPrefTypeAlignment(
5163 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar11394522009-04-18 08:51:00 +00005164 Entry->setSection("__DATA, __objc_classrefs, regular, no_dead_strip");
5165 UsedGlobals.push_back(Entry);
5166 }
5167
5168 return Builder.CreateLoad(Entry, false, "tmp");
5169}
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005170
Daniel Dunbar11394522009-04-18 08:51:00 +00005171llvm::Value *
5172CGObjCNonFragileABIMac::EmitSuperClassRef(CGBuilderTy &Builder,
5173 const ObjCInterfaceDecl *ID) {
5174 llvm::GlobalVariable *&Entry = SuperClassReferences[ID->getIdentifier()];
5175
5176 if (!Entry) {
5177 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5178 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
5179 Entry =
5180 new llvm::GlobalVariable(ObjCTypes.ClassnfABIPtrTy, false,
5181 llvm::GlobalValue::InternalLinkage,
5182 ClassGV,
5183 "\01L_OBJC_CLASSLIST_SUP_REFS_$_",
5184 &CGM.getModule());
5185 Entry->setAlignment(
5186 CGM.getTargetData().getPrefTypeAlignment(
5187 ObjCTypes.ClassnfABIPtrTy));
5188 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005189 UsedGlobals.push_back(Entry);
5190 }
5191
5192 return Builder.CreateLoad(Entry, false, "tmp");
5193}
5194
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005195/// EmitMetaClassRef - Return a Value * of the address of _class_t
5196/// meta-data
5197///
5198llvm::Value *CGObjCNonFragileABIMac::EmitMetaClassRef(CGBuilderTy &Builder,
5199 const ObjCInterfaceDecl *ID) {
5200 llvm::GlobalVariable * &Entry = MetaClassReferences[ID->getIdentifier()];
5201 if (Entry)
5202 return Builder.CreateLoad(Entry, false, "tmp");
5203
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005204 std::string MetaClassName(getMetaclassSymbolPrefix() + ID->getNameAsString());
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005205 llvm::GlobalVariable *MetaClassGV = GetClassGlobal(MetaClassName);
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005206 Entry =
5207 new llvm::GlobalVariable(ObjCTypes.ClassnfABIPtrTy, false,
5208 llvm::GlobalValue::InternalLinkage,
5209 MetaClassGV,
5210 "\01L_OBJC_CLASSLIST_SUP_REFS_$_",
5211 &CGM.getModule());
5212 Entry->setAlignment(
5213 CGM.getTargetData().getPrefTypeAlignment(
5214 ObjCTypes.ClassnfABIPtrTy));
5215
Daniel Dunbar33af70f2009-04-15 19:03:14 +00005216 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005217 UsedGlobals.push_back(Entry);
5218
5219 return Builder.CreateLoad(Entry, false, "tmp");
5220}
5221
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005222/// GetClass - Return a reference to the class for the given interface
5223/// decl.
5224llvm::Value *CGObjCNonFragileABIMac::GetClass(CGBuilderTy &Builder,
5225 const ObjCInterfaceDecl *ID) {
5226 return EmitClassRef(Builder, ID);
5227}
5228
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005229/// Generates a message send where the super is the receiver. This is
5230/// a message send to self with special delivery semantics indicating
5231/// which class's method should be called.
5232CodeGen::RValue
5233CGObjCNonFragileABIMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
5234 QualType ResultType,
5235 Selector Sel,
5236 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005237 bool isCategoryImpl,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005238 llvm::Value *Receiver,
5239 bool IsClassMessage,
5240 const CodeGen::CallArgList &CallArgs) {
5241 // ...
5242 // Create and init a super structure; this is a (receiver, class)
5243 // pair we will pass to objc_msgSendSuper.
5244 llvm::Value *ObjCSuper =
5245 CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super");
5246
5247 llvm::Value *ReceiverAsObject =
5248 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
5249 CGF.Builder.CreateStore(ReceiverAsObject,
5250 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
5251
5252 // If this is a class message the metaclass is passed as the target.
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005253 llvm::Value *Target;
5254 if (IsClassMessage) {
5255 if (isCategoryImpl) {
5256 // Message sent to "super' in a class method defined in
5257 // a category implementation.
Daniel Dunbar11394522009-04-18 08:51:00 +00005258 Target = EmitClassRef(CGF.Builder, Class);
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005259 Target = CGF.Builder.CreateStructGEP(Target, 0);
5260 Target = CGF.Builder.CreateLoad(Target);
5261 }
5262 else
5263 Target = EmitMetaClassRef(CGF.Builder, Class);
5264 }
5265 else
Daniel Dunbar11394522009-04-18 08:51:00 +00005266 Target = EmitSuperClassRef(CGF.Builder, Class);
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005267
5268 // FIXME: We shouldn't need to do this cast, rectify the ASTContext
5269 // and ObjCTypes types.
5270 const llvm::Type *ClassTy =
5271 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
5272 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
5273 CGF.Builder.CreateStore(Target,
5274 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
5275
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005276 return (LegacyDispatchedSelector(Sel))
5277 ? EmitLegacyMessageSend(CGF, ResultType,EmitSelector(CGF.Builder, Sel),
5278 ObjCSuper, ObjCTypes.SuperPtrCTy,
5279 true, CallArgs,
5280 ObjCTypes)
5281 : EmitMessageSend(CGF, ResultType, Sel,
5282 ObjCSuper, ObjCTypes.SuperPtrCTy,
5283 true, CallArgs);
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005284}
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005285
5286llvm::Value *CGObjCNonFragileABIMac::EmitSelector(CGBuilderTy &Builder,
5287 Selector Sel) {
5288 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
5289
5290 if (!Entry) {
5291 llvm::Constant *Casted =
5292 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
5293 ObjCTypes.SelectorPtrTy);
5294 Entry =
5295 new llvm::GlobalVariable(ObjCTypes.SelectorPtrTy, false,
5296 llvm::GlobalValue::InternalLinkage,
5297 Casted, "\01L_OBJC_SELECTOR_REFERENCES_",
5298 &CGM.getModule());
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005299 Entry->setSection("__DATA, __objc_selrefs, literal_pointers, no_dead_strip");
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005300 UsedGlobals.push_back(Entry);
5301 }
5302
5303 return Builder.CreateLoad(Entry, false, "tmp");
5304}
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005305/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
5306/// objc_assign_ivar (id src, id *dst)
5307///
5308void CGObjCNonFragileABIMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
5309 llvm::Value *src, llvm::Value *dst)
5310{
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005311 const llvm::Type * SrcTy = src->getType();
5312 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005313 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005314 assert(Size <= 8 && "does not support size > 8");
5315 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5316 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005317 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5318 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005319 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5320 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00005321 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignIvarFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005322 src, dst, "assignivar");
5323 return;
5324}
5325
5326/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
5327/// objc_assign_strongCast (id src, id *dst)
5328///
5329void CGObjCNonFragileABIMac::EmitObjCStrongCastAssign(
5330 CodeGen::CodeGenFunction &CGF,
5331 llvm::Value *src, llvm::Value *dst)
5332{
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005333 const llvm::Type * SrcTy = src->getType();
5334 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005335 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005336 assert(Size <= 8 && "does not support size > 8");
5337 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5338 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005339 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5340 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005341 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5342 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00005343 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005344 src, dst, "weakassign");
5345 return;
5346}
5347
5348/// EmitObjCWeakRead - Code gen for loading value of a __weak
5349/// object: objc_read_weak (id *src)
5350///
5351llvm::Value * CGObjCNonFragileABIMac::EmitObjCWeakRead(
5352 CodeGen::CodeGenFunction &CGF,
5353 llvm::Value *AddrWeakObj)
5354{
Eli Friedman8339b352009-03-07 03:57:15 +00005355 const llvm::Type* DestTy =
5356 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005357 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj, ObjCTypes.PtrObjectPtrTy);
Chris Lattner72db6c32009-04-22 02:44:54 +00005358 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005359 AddrWeakObj, "weakread");
Eli Friedman8339b352009-03-07 03:57:15 +00005360 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005361 return read_weak;
5362}
5363
5364/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
5365/// objc_assign_weak (id src, id *dst)
5366///
5367void CGObjCNonFragileABIMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
5368 llvm::Value *src, llvm::Value *dst)
5369{
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005370 const llvm::Type * SrcTy = src->getType();
5371 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005372 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005373 assert(Size <= 8 && "does not support size > 8");
5374 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5375 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005376 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5377 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005378 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5379 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner96508e12009-04-17 22:12:36 +00005380 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005381 src, dst, "weakassign");
5382 return;
5383}
5384
5385/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
5386/// objc_assign_global (id src, id *dst)
5387///
5388void CGObjCNonFragileABIMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
5389 llvm::Value *src, llvm::Value *dst)
5390{
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005391 const llvm::Type * SrcTy = src->getType();
5392 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005393 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005394 assert(Size <= 8 && "does not support size > 8");
5395 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5396 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005397 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5398 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005399 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5400 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00005401 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005402 src, dst, "globalassign");
5403 return;
5404}
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005405
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005406void
5407CGObjCNonFragileABIMac::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
5408 const Stmt &S) {
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005409 bool isTry = isa<ObjCAtTryStmt>(S);
5410 llvm::BasicBlock *TryBlock = CGF.createBasicBlock("try");
5411 llvm::BasicBlock *PrevLandingPad = CGF.getInvokeDest();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005412 llvm::BasicBlock *TryHandler = CGF.createBasicBlock("try.handler");
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005413 llvm::BasicBlock *FinallyBlock = CGF.createBasicBlock("finally");
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005414 llvm::BasicBlock *FinallyRethrow = CGF.createBasicBlock("finally.throw");
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005415 llvm::BasicBlock *FinallyEnd = CGF.createBasicBlock("finally.end");
5416
5417 // For @synchronized, call objc_sync_enter(sync.expr). The
5418 // evaluation of the expression must occur before we enter the
5419 // @synchronized. We can safely avoid a temp here because jumps into
5420 // @synchronized are illegal & this will dominate uses.
5421 llvm::Value *SyncArg = 0;
5422 if (!isTry) {
5423 SyncArg =
5424 CGF.EmitScalarExpr(cast<ObjCAtSynchronizedStmt>(S).getSynchExpr());
5425 SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy);
Chris Lattnerb02e53b2009-04-06 16:53:45 +00005426 CGF.Builder.CreateCall(ObjCTypes.getSyncEnterFn(), SyncArg);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005427 }
5428
5429 // Push an EH context entry, used for handling rethrows and jumps
5430 // through finally.
5431 CGF.PushCleanupBlock(FinallyBlock);
5432
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005433 CGF.setInvokeDest(TryHandler);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005434
5435 CGF.EmitBlock(TryBlock);
5436 CGF.EmitStmt(isTry ? cast<ObjCAtTryStmt>(S).getTryBody()
5437 : cast<ObjCAtSynchronizedStmt>(S).getSynchBody());
5438 CGF.EmitBranchThroughCleanup(FinallyEnd);
5439
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005440 // Emit the exception handler.
5441
5442 CGF.EmitBlock(TryHandler);
5443
5444 llvm::Value *llvm_eh_exception =
5445 CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_exception);
5446 llvm::Value *llvm_eh_selector_i64 =
5447 CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_selector_i64);
5448 llvm::Value *llvm_eh_typeid_for_i64 =
5449 CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for_i64);
5450 llvm::Value *Exc = CGF.Builder.CreateCall(llvm_eh_exception, "exc");
5451 llvm::Value *RethrowPtr = CGF.CreateTempAlloca(Exc->getType(), "_rethrow");
5452
5453 llvm::SmallVector<llvm::Value*, 8> SelectorArgs;
5454 SelectorArgs.push_back(Exc);
Chris Lattnerb02e53b2009-04-06 16:53:45 +00005455 SelectorArgs.push_back(ObjCTypes.getEHPersonalityPtr());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005456
5457 // Construct the lists of (type, catch body) to handle.
Daniel Dunbarede8de92009-03-06 00:01:21 +00005458 llvm::SmallVector<std::pair<const ParmVarDecl*, const Stmt*>, 8> Handlers;
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005459 bool HasCatchAll = false;
5460 if (isTry) {
5461 if (const ObjCAtCatchStmt* CatchStmt =
5462 cast<ObjCAtTryStmt>(S).getCatchStmts()) {
5463 for (; CatchStmt; CatchStmt = CatchStmt->getNextCatchStmt()) {
Daniel Dunbarede8de92009-03-06 00:01:21 +00005464 const ParmVarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
Steve Naroff7ba138a2009-03-03 19:52:17 +00005465 Handlers.push_back(std::make_pair(CatchDecl, CatchStmt->getCatchBody()));
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005466
5467 // catch(...) always matches.
Steve Naroff7ba138a2009-03-03 19:52:17 +00005468 if (!CatchDecl) {
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005469 // Use i8* null here to signal this is a catch all, not a cleanup.
5470 llvm::Value *Null = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
5471 SelectorArgs.push_back(Null);
5472 HasCatchAll = true;
5473 break;
5474 }
5475
Daniel Dunbarede8de92009-03-06 00:01:21 +00005476 if (CGF.getContext().isObjCIdType(CatchDecl->getType()) ||
5477 CatchDecl->getType()->isObjCQualifiedIdType()) {
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005478 llvm::Value *IDEHType =
5479 CGM.getModule().getGlobalVariable("OBJC_EHTYPE_id");
5480 if (!IDEHType)
5481 IDEHType =
5482 new llvm::GlobalVariable(ObjCTypes.EHTypeTy, false,
5483 llvm::GlobalValue::ExternalLinkage,
5484 0, "OBJC_EHTYPE_id", &CGM.getModule());
5485 SelectorArgs.push_back(IDEHType);
5486 HasCatchAll = true;
5487 break;
5488 }
5489
5490 // All other types should be Objective-C interface pointer types.
Daniel Dunbarede8de92009-03-06 00:01:21 +00005491 const PointerType *PT = CatchDecl->getType()->getAsPointerType();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005492 assert(PT && "Invalid @catch type.");
5493 const ObjCInterfaceType *IT =
5494 PT->getPointeeType()->getAsObjCInterfaceType();
5495 assert(IT && "Invalid @catch type.");
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005496 llvm::Value *EHType = GetInterfaceEHType(IT->getDecl(), false);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005497 SelectorArgs.push_back(EHType);
5498 }
5499 }
5500 }
5501
5502 // We use a cleanup unless there was already a catch all.
5503 if (!HasCatchAll) {
5504 SelectorArgs.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
Daniel Dunbarede8de92009-03-06 00:01:21 +00005505 Handlers.push_back(std::make_pair((const ParmVarDecl*) 0, (const Stmt*) 0));
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005506 }
5507
5508 llvm::Value *Selector =
5509 CGF.Builder.CreateCall(llvm_eh_selector_i64,
5510 SelectorArgs.begin(), SelectorArgs.end(),
5511 "selector");
5512 for (unsigned i = 0, e = Handlers.size(); i != e; ++i) {
Daniel Dunbarede8de92009-03-06 00:01:21 +00005513 const ParmVarDecl *CatchParam = Handlers[i].first;
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005514 const Stmt *CatchBody = Handlers[i].second;
5515
5516 llvm::BasicBlock *Next = 0;
5517
5518 // The last handler always matches.
5519 if (i + 1 != e) {
5520 assert(CatchParam && "Only last handler can be a catch all.");
5521
5522 llvm::BasicBlock *Match = CGF.createBasicBlock("match");
5523 Next = CGF.createBasicBlock("catch.next");
5524 llvm::Value *Id =
5525 CGF.Builder.CreateCall(llvm_eh_typeid_for_i64,
5526 CGF.Builder.CreateBitCast(SelectorArgs[i+2],
5527 ObjCTypes.Int8PtrTy));
5528 CGF.Builder.CreateCondBr(CGF.Builder.CreateICmpEQ(Selector, Id),
5529 Match, Next);
5530
5531 CGF.EmitBlock(Match);
5532 }
5533
5534 if (CatchBody) {
5535 llvm::BasicBlock *MatchEnd = CGF.createBasicBlock("match.end");
5536 llvm::BasicBlock *MatchHandler = CGF.createBasicBlock("match.handler");
5537
5538 // Cleanups must call objc_end_catch.
5539 //
5540 // FIXME: It seems incorrect for objc_begin_catch to be inside
5541 // this context, but this matches gcc.
5542 CGF.PushCleanupBlock(MatchEnd);
5543 CGF.setInvokeDest(MatchHandler);
5544
5545 llvm::Value *ExcObject =
Chris Lattner8a569112009-04-22 02:15:23 +00005546 CGF.Builder.CreateCall(ObjCTypes.getObjCBeginCatchFn(), Exc);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005547
5548 // Bind the catch parameter if it exists.
5549 if (CatchParam) {
Daniel Dunbarede8de92009-03-06 00:01:21 +00005550 ExcObject =
5551 CGF.Builder.CreateBitCast(ExcObject,
5552 CGF.ConvertType(CatchParam->getType()));
5553 // CatchParam is a ParmVarDecl because of the grammar
5554 // construction used to handle this, but for codegen purposes
5555 // we treat this as a local decl.
5556 CGF.EmitLocalBlockVarDecl(*CatchParam);
5557 CGF.Builder.CreateStore(ExcObject, CGF.GetAddrOfLocalVar(CatchParam));
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005558 }
5559
5560 CGF.ObjCEHValueStack.push_back(ExcObject);
5561 CGF.EmitStmt(CatchBody);
5562 CGF.ObjCEHValueStack.pop_back();
5563
5564 CGF.EmitBranchThroughCleanup(FinallyEnd);
5565
5566 CGF.EmitBlock(MatchHandler);
5567
5568 llvm::Value *Exc = CGF.Builder.CreateCall(llvm_eh_exception, "exc");
5569 // We are required to emit this call to satisfy LLVM, even
5570 // though we don't use the result.
5571 llvm::SmallVector<llvm::Value*, 8> Args;
5572 Args.push_back(Exc);
Chris Lattnerb02e53b2009-04-06 16:53:45 +00005573 Args.push_back(ObjCTypes.getEHPersonalityPtr());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005574 Args.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty,
5575 0));
5576 CGF.Builder.CreateCall(llvm_eh_selector_i64, Args.begin(), Args.end());
5577 CGF.Builder.CreateStore(Exc, RethrowPtr);
5578 CGF.EmitBranchThroughCleanup(FinallyRethrow);
5579
5580 CodeGenFunction::CleanupBlockInfo Info = CGF.PopCleanupBlock();
5581
5582 CGF.EmitBlock(MatchEnd);
5583
5584 // Unfortunately, we also have to generate another EH frame here
5585 // in case this throws.
5586 llvm::BasicBlock *MatchEndHandler =
5587 CGF.createBasicBlock("match.end.handler");
5588 llvm::BasicBlock *Cont = CGF.createBasicBlock("invoke.cont");
Chris Lattner8a569112009-04-22 02:15:23 +00005589 CGF.Builder.CreateInvoke(ObjCTypes.getObjCEndCatchFn(),
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005590 Cont, MatchEndHandler,
5591 Args.begin(), Args.begin());
5592
5593 CGF.EmitBlock(Cont);
5594 if (Info.SwitchBlock)
5595 CGF.EmitBlock(Info.SwitchBlock);
5596 if (Info.EndBlock)
5597 CGF.EmitBlock(Info.EndBlock);
5598
5599 CGF.EmitBlock(MatchEndHandler);
5600 Exc = CGF.Builder.CreateCall(llvm_eh_exception, "exc");
5601 // We are required to emit this call to satisfy LLVM, even
5602 // though we don't use the result.
5603 Args.clear();
5604 Args.push_back(Exc);
Chris Lattnerb02e53b2009-04-06 16:53:45 +00005605 Args.push_back(ObjCTypes.getEHPersonalityPtr());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005606 Args.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty,
5607 0));
5608 CGF.Builder.CreateCall(llvm_eh_selector_i64, Args.begin(), Args.end());
5609 CGF.Builder.CreateStore(Exc, RethrowPtr);
5610 CGF.EmitBranchThroughCleanup(FinallyRethrow);
5611
5612 if (Next)
5613 CGF.EmitBlock(Next);
5614 } else {
5615 assert(!Next && "catchup should be last handler.");
5616
5617 CGF.Builder.CreateStore(Exc, RethrowPtr);
5618 CGF.EmitBranchThroughCleanup(FinallyRethrow);
5619 }
5620 }
5621
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005622 // Pop the cleanup entry, the @finally is outside this cleanup
5623 // scope.
5624 CodeGenFunction::CleanupBlockInfo Info = CGF.PopCleanupBlock();
5625 CGF.setInvokeDest(PrevLandingPad);
5626
5627 CGF.EmitBlock(FinallyBlock);
5628
5629 if (isTry) {
5630 if (const ObjCAtFinallyStmt* FinallyStmt =
5631 cast<ObjCAtTryStmt>(S).getFinallyStmt())
5632 CGF.EmitStmt(FinallyStmt->getFinallyBody());
5633 } else {
5634 // Emit 'objc_sync_exit(expr)' as finally's sole statement for
5635 // @synchronized.
Chris Lattnerbbccd612009-04-22 02:38:11 +00005636 CGF.Builder.CreateCall(ObjCTypes.getSyncExitFn(), SyncArg);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005637 }
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005638
5639 if (Info.SwitchBlock)
5640 CGF.EmitBlock(Info.SwitchBlock);
5641 if (Info.EndBlock)
5642 CGF.EmitBlock(Info.EndBlock);
5643
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005644 // Branch around the rethrow code.
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005645 CGF.EmitBranch(FinallyEnd);
5646
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005647 CGF.EmitBlock(FinallyRethrow);
Chris Lattner8a569112009-04-22 02:15:23 +00005648 CGF.Builder.CreateCall(ObjCTypes.getUnwindResumeOrRethrowFn(),
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005649 CGF.Builder.CreateLoad(RethrowPtr));
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005650 CGF.Builder.CreateUnreachable();
5651
5652 CGF.EmitBlock(FinallyEnd);
5653}
5654
Anders Carlssonf57c5b22009-02-16 22:59:18 +00005655/// EmitThrowStmt - Generate code for a throw statement.
5656void CGObjCNonFragileABIMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
5657 const ObjCAtThrowStmt &S) {
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005658 llvm::Value *Exception;
Anders Carlssonf57c5b22009-02-16 22:59:18 +00005659 if (const Expr *ThrowExpr = S.getThrowExpr()) {
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005660 Exception = CGF.EmitScalarExpr(ThrowExpr);
Anders Carlssonf57c5b22009-02-16 22:59:18 +00005661 } else {
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005662 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
5663 "Unexpected rethrow outside @catch block.");
5664 Exception = CGF.ObjCEHValueStack.back();
Anders Carlssonf57c5b22009-02-16 22:59:18 +00005665 }
5666
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005667 llvm::Value *ExceptionAsObject =
5668 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy, "tmp");
5669 llvm::BasicBlock *InvokeDest = CGF.getInvokeDest();
5670 if (InvokeDest) {
5671 llvm::BasicBlock *Cont = CGF.createBasicBlock("invoke.cont");
Chris Lattnerbbccd612009-04-22 02:38:11 +00005672 CGF.Builder.CreateInvoke(ObjCTypes.getExceptionThrowFn(),
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005673 Cont, InvokeDest,
5674 &ExceptionAsObject, &ExceptionAsObject + 1);
5675 CGF.EmitBlock(Cont);
5676 } else
Chris Lattnerbbccd612009-04-22 02:38:11 +00005677 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), ExceptionAsObject);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005678 CGF.Builder.CreateUnreachable();
5679
Anders Carlssonf57c5b22009-02-16 22:59:18 +00005680 // Clear the insertion point to indicate we are in unreachable code.
5681 CGF.Builder.ClearInsertionPoint();
5682}
Daniel Dunbare588b992009-03-01 04:46:24 +00005683
5684llvm::Value *
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005685CGObjCNonFragileABIMac::GetInterfaceEHType(const ObjCInterfaceDecl *ID,
5686 bool ForDefinition) {
Daniel Dunbare588b992009-03-01 04:46:24 +00005687 llvm::GlobalVariable * &Entry = EHTypeReferences[ID->getIdentifier()];
Daniel Dunbare588b992009-03-01 04:46:24 +00005688
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005689 // If we don't need a definition, return the entry if found or check
5690 // if we use an external reference.
5691 if (!ForDefinition) {
5692 if (Entry)
5693 return Entry;
Daniel Dunbar7e075cb2009-04-07 06:43:45 +00005694
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005695 // If this type (or a super class) has the __objc_exception__
5696 // attribute, emit an external reference.
5697 if (hasObjCExceptionAttribute(ID))
5698 return Entry =
5699 new llvm::GlobalVariable(ObjCTypes.EHTypeTy, false,
5700 llvm::GlobalValue::ExternalLinkage,
5701 0,
5702 (std::string("OBJC_EHTYPE_$_") +
5703 ID->getIdentifier()->getName()),
5704 &CGM.getModule());
5705 }
5706
5707 // Otherwise we need to either make a new entry or fill in the
5708 // initializer.
5709 assert((!Entry || !Entry->hasInitializer()) && "Duplicate EHType definition");
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005710 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
Daniel Dunbare588b992009-03-01 04:46:24 +00005711 std::string VTableName = "objc_ehtype_vtable";
5712 llvm::GlobalVariable *VTableGV =
5713 CGM.getModule().getGlobalVariable(VTableName);
5714 if (!VTableGV)
5715 VTableGV = new llvm::GlobalVariable(ObjCTypes.Int8PtrTy, false,
5716 llvm::GlobalValue::ExternalLinkage,
5717 0, VTableName, &CGM.getModule());
5718
5719 llvm::Value *VTableIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, 2);
5720
5721 std::vector<llvm::Constant*> Values(3);
5722 Values[0] = llvm::ConstantExpr::getGetElementPtr(VTableGV, &VTableIdx, 1);
5723 Values[1] = GetClassName(ID->getIdentifier());
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005724 Values[2] = GetClassGlobal(ClassName);
Daniel Dunbare588b992009-03-01 04:46:24 +00005725 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.EHTypeTy, Values);
5726
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005727 if (Entry) {
5728 Entry->setInitializer(Init);
5729 } else {
5730 Entry = new llvm::GlobalVariable(ObjCTypes.EHTypeTy, false,
5731 llvm::GlobalValue::WeakAnyLinkage,
5732 Init,
5733 (std::string("OBJC_EHTYPE_$_") +
5734 ID->getIdentifier()->getName()),
5735 &CGM.getModule());
5736 }
5737
Daniel Dunbar04d40782009-04-14 06:00:08 +00005738 if (CGM.getLangOptions().getVisibilityMode() == LangOptions::Hidden)
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005739 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005740 Entry->setAlignment(8);
5741
5742 if (ForDefinition) {
5743 Entry->setSection("__DATA,__objc_const");
5744 Entry->setLinkage(llvm::GlobalValue::ExternalLinkage);
5745 } else {
5746 Entry->setSection("__DATA,__datacoal_nt,coalesced");
5747 }
Daniel Dunbare588b992009-03-01 04:46:24 +00005748
5749 return Entry;
5750}
Anders Carlssonf57c5b22009-02-16 22:59:18 +00005751
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00005752/* *** */
5753
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00005754CodeGen::CGObjCRuntime *
5755CodeGen::CreateMacObjCRuntime(CodeGen::CodeGenModule &CGM) {
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00005756 return new CGObjCMac(CGM);
5757}
Fariborz Jahanianee0af742009-01-21 22:04:16 +00005758
5759CodeGen::CGObjCRuntime *
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00005760CodeGen::CreateMacNonFragileABIObjCRuntime(CodeGen::CodeGenModule &CGM) {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00005761 return new CGObjCNonFragileABIMac(CGM);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00005762}