blob: 46c04631a5bd0e4159a55f9a9e402deff5814a33 [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
Daniel Dunbar198bcb42010-03-31 01:09:11 +000016#include "CGRecordLayout.h"
Daniel Dunbarf77ac862008-08-11 21:35:06 +000017#include "CodeGenModule.h"
Daniel Dunbarb7ec2462008-08-16 03:19:19 +000018#include "CodeGenFunction.h"
John McCallf1549f62010-07-06 01:34:17 +000019#include "CGException.h"
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000020#include "clang/AST/ASTContext.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000021#include "clang/AST/Decl.h"
Daniel Dunbar6efc0c52008-08-13 03:21:16 +000022#include "clang/AST/DeclObjC.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000023#include "clang/AST/RecordLayout.h"
Chris Lattner16f00492009-04-26 01:32:48 +000024#include "clang/AST/StmtObjC.h"
Daniel Dunbarf77ac862008-08-11 21:35:06 +000025#include "clang/Basic/LangOptions.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000026#include "clang/Frontend/CodeGenOptions.h"
Daniel Dunbarf77ac862008-08-11 21:35:06 +000027
John McCall87bb5822010-07-31 23:20:56 +000028#include "llvm/InlineAsm.h"
29#include "llvm/IntrinsicInst.h"
Owen Anderson69243822009-07-13 04:10:07 +000030#include "llvm/LLVMContext.h"
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000031#include "llvm/Module.h"
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +000032#include "llvm/ADT/DenseSet.h"
Daniel Dunbar33063492009-09-07 00:20:42 +000033#include "llvm/ADT/SetVector.h"
34#include "llvm/ADT/SmallString.h"
Fariborz Jahanian191dcd72009-12-12 21:26:21 +000035#include "llvm/ADT/SmallPtrSet.h"
John McCall8e3f8612010-07-13 22:12:14 +000036#include "llvm/Support/CallSite.h"
Daniel Dunbar33063492009-09-07 00:20:42 +000037#include "llvm/Support/raw_ostream.h"
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000038#include "llvm/Target/TargetData.h"
Torok Edwinf42e4a62009-08-24 13:25:12 +000039#include <cstdio>
Daniel Dunbarc17a4d32008-08-11 02:45:11 +000040
41using namespace clang;
Daniel Dunbar46f45b92008-09-09 01:06:48 +000042using namespace CodeGen;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +000043
Daniel Dunbar97776872009-04-22 07:32:20 +000044// Common CGObjCRuntime functions, these don't belong here, but they
45// don't belong in CGObjCRuntime either so we will live with it for
46// now.
47
Daniel Dunbar1d7e5392009-05-03 08:55:17 +000048static uint64_t LookupFieldBitOffset(CodeGen::CodeGenModule &CGM,
49 const ObjCInterfaceDecl *OID,
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +000050 const ObjCImplementationDecl *ID,
Daniel Dunbar1d7e5392009-05-03 08:55:17 +000051 const ObjCIvarDecl *Ivar) {
Daniel Dunbare83be122010-04-02 21:14:02 +000052 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
Daniel Dunbar532d4da2009-05-03 13:15:50 +000053
Daniel Dunbar61ac1d22010-04-02 22:29:40 +000054 // FIXME: We should eliminate the need to have ObjCImplementationDecl passed
55 // in here; it should never be necessary because that should be the lexical
56 // decl context for the ivar.
Daniel Dunbar3a2c80f2010-04-02 15:43:29 +000057
Daniel Dunbar532d4da2009-05-03 13:15:50 +000058 // If we know have an implementation (and the ivar is in it) then
59 // look up in the implementation layout.
Daniel Dunbar6bff2512009-08-03 17:06:42 +000060 const ASTRecordLayout *RL;
Daniel Dunbar532d4da2009-05-03 13:15:50 +000061 if (ID && ID->getClassInterface() == Container)
62 RL = &CGM.getContext().getASTObjCImplementationLayout(ID);
63 else
64 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
Daniel Dunbare83be122010-04-02 21:14:02 +000065
66 // Compute field index.
67 //
68 // FIXME: The index here is closely tied to how ASTContext::getObjCLayout is
69 // implemented. This should be fixed to get the information from the layout
70 // directly.
71 unsigned Index = 0;
72 llvm::SmallVector<ObjCIvarDecl*, 16> Ivars;
73 CGM.getContext().ShallowCollectObjCIvars(Container, Ivars);
74 for (unsigned k = 0, e = Ivars.size(); k != e; ++k) {
75 if (Ivar == Ivars[k])
76 break;
77 ++Index;
78 }
79 assert(Index != Ivars.size() && "Ivar is not inside container!");
80
Daniel Dunbar532d4da2009-05-03 13:15:50 +000081 return RL->getFieldOffset(Index);
Daniel Dunbar1d7e5392009-05-03 08:55:17 +000082}
83
84uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
85 const ObjCInterfaceDecl *OID,
86 const ObjCIvarDecl *Ivar) {
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +000087 return LookupFieldBitOffset(CGM, OID, 0, Ivar) / 8;
88}
89
90uint64_t CGObjCRuntime::ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
91 const ObjCImplementationDecl *OID,
92 const ObjCIvarDecl *Ivar) {
93 return LookupFieldBitOffset(CGM, OID->getClassInterface(), OID, Ivar) / 8;
Daniel Dunbar97776872009-04-22 07:32:20 +000094}
95
96LValue CGObjCRuntime::EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF,
97 const ObjCInterfaceDecl *OID,
98 llvm::Value *BaseValue,
99 const ObjCIvarDecl *Ivar,
100 unsigned CVRQualifiers,
101 llvm::Value *Offset) {
Daniel Dunbar1d7e5392009-05-03 08:55:17 +0000102 // Compute (type*) ( (char *) BaseValue + Offset)
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +0000103 const llvm::Type *I8Ptr = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
Daniel Dunbar1d7e5392009-05-03 08:55:17 +0000104 QualType IvarTy = Ivar->getType();
105 const llvm::Type *LTy = CGF.CGM.getTypes().ConvertTypeForMem(IvarTy);
Daniel Dunbar97776872009-04-22 07:32:20 +0000106 llvm::Value *V = CGF.Builder.CreateBitCast(BaseValue, I8Ptr);
Daniel Dunbar97776872009-04-22 07:32:20 +0000107 V = CGF.Builder.CreateGEP(V, Offset, "add.ptr");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000108 V = CGF.Builder.CreateBitCast(V, llvm::PointerType::getUnqual(LTy));
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000109
John McCall0953e762009-09-24 19:53:00 +0000110 Qualifiers Quals = CGF.MakeQualifiers(IvarTy);
111 Quals.addCVRQualifiers(CVRQualifiers);
112
Daniel Dunbar56229f52010-04-05 16:20:33 +0000113 if (!Ivar->isBitField())
114 return LValue::MakeAddr(V, Quals);
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +0000115
Daniel Dunbar56229f52010-04-05 16:20:33 +0000116 // We need to compute the bit offset for the bit-field, the offset is to the
117 // byte. Note, there is a subtle invariant here: we can only call this routine
118 // on non-synthesized ivars but we may be called for synthesized ivars.
119 // However, a synthesized ivar can never be a bit-field, so this is safe.
120 uint64_t BitOffset = LookupFieldBitOffset(CGF.CGM, OID, 0, Ivar) % 8;
121 uint64_t BitFieldSize =
122 Ivar->getBitWidth()->EvaluateAsInt(CGF.getContext()).getZExtValue();
Daniel Dunbar97776872009-04-22 07:32:20 +0000123
Daniel Dunbarf0fe5bc2010-04-05 21:36:35 +0000124 // Allocate a new CGBitFieldInfo object to describe this access.
125 //
126 // FIXME: This is incredibly wasteful, these should be uniqued or part of some
127 // layout object. However, this is blocked on other cleanups to the
128 // Objective-C code, so for now we just live with allocating a bunch of these
129 // objects.
Daniel Dunbarf0fe5bc2010-04-05 21:36:35 +0000130
Daniel Dunbarab970f92010-04-13 20:58:55 +0000131 // We always construct a single, possibly unaligned, access for this case.
Daniel Dunbar2df25692010-04-15 05:09:32 +0000132 CGBitFieldInfo::AccessInfo AI;
Daniel Dunbarab970f92010-04-13 20:58:55 +0000133 AI.FieldIndex = 0;
134 AI.FieldByteOffset = 0;
135 AI.FieldBitStart = BitOffset;
136 AI.AccessWidth = CGF.CGM.getContext().getTypeSize(IvarTy);
137 AI.AccessAlignment = 0;
138 AI.TargetBitOffset = 0;
139 AI.TargetBitWidth = BitFieldSize;
140
Daniel Dunbar2df25692010-04-15 05:09:32 +0000141 CGBitFieldInfo *Info =
142 new (CGF.CGM.getContext()) CGBitFieldInfo(BitFieldSize, 1, &AI,
143 IvarTy->isSignedIntegerType());
144
Daniel Dunbar56229f52010-04-05 16:20:33 +0000145 // FIXME: We need to set a very conservative alignment on this, or make sure
146 // that the runtime is doing the right thing.
Daniel Dunbarefbf4872010-04-06 01:07:44 +0000147 return LValue::MakeBitfield(V, *Info, Quals.getCVRQualifiers());
Daniel Dunbar97776872009-04-22 07:32:20 +0000148}
149
150///
151
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000152namespace {
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000153
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000154typedef std::vector<llvm::Constant*> ConstantVector;
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000155
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000156// FIXME: We should find a nicer way to make the labels for metadata, string
157// concatenation is lame.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000158
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000159class ObjCCommonTypesHelper {
Owen Andersona1cf15f2009-07-14 23:10:40 +0000160protected:
161 llvm::LLVMContext &VMContext;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000162
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000163private:
164 llvm::Constant *getMessageSendFn() const {
165 // id objc_msgSend (id, SEL, ...)
166 std::vector<const llvm::Type*> Params;
167 Params.push_back(ObjectPtrTy);
168 Params.push_back(SelectorPtrTy);
169 return
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000170 CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
171 Params, true),
172 "objc_msgSend");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000173 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000174
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000175 llvm::Constant *getMessageSendStretFn() const {
176 // id objc_msgSend_stret (id, SEL, ...)
177 std::vector<const llvm::Type*> Params;
178 Params.push_back(ObjectPtrTy);
179 Params.push_back(SelectorPtrTy);
180 return
Owen Anderson0032b272009-08-13 21:57:51 +0000181 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000182 Params, true),
183 "objc_msgSend_stret");
184
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000185 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000186
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000187 llvm::Constant *getMessageSendFpretFn() const {
188 // FIXME: This should be long double on x86_64?
189 // [double | long double] objc_msgSend_fpret(id self, SEL op, ...)
190 std::vector<const llvm::Type*> Params;
191 Params.push_back(ObjectPtrTy);
192 Params.push_back(SelectorPtrTy);
193 return
Owen Anderson0032b272009-08-13 21:57:51 +0000194 CGM.CreateRuntimeFunction(llvm::FunctionType::get(
195 llvm::Type::getDoubleTy(VMContext),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000196 Params,
197 true),
198 "objc_msgSend_fpret");
199
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000200 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000201
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000202 llvm::Constant *getMessageSendSuperFn() const {
203 // id objc_msgSendSuper(struct objc_super *super, SEL op, ...)
204 const char *SuperName = "objc_msgSendSuper";
205 std::vector<const llvm::Type*> Params;
206 Params.push_back(SuperPtrTy);
207 Params.push_back(SelectorPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000208 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000209 Params, true),
210 SuperName);
211 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000212
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000213 llvm::Constant *getMessageSendSuperFn2() const {
214 // id objc_msgSendSuper2(struct objc_super *super, SEL op, ...)
215 const char *SuperName = "objc_msgSendSuper2";
216 std::vector<const llvm::Type*> Params;
217 Params.push_back(SuperPtrTy);
218 Params.push_back(SelectorPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000219 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000220 Params, true),
221 SuperName);
222 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000223
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000224 llvm::Constant *getMessageSendSuperStretFn() const {
225 // void objc_msgSendSuper_stret(void * stretAddr, struct objc_super *super,
226 // SEL op, ...)
227 std::vector<const llvm::Type*> Params;
228 Params.push_back(Int8PtrTy);
229 Params.push_back(SuperPtrTy);
230 Params.push_back(SelectorPtrTy);
Owen Andersona1cf15f2009-07-14 23:10:40 +0000231 return CGM.CreateRuntimeFunction(
Owen Anderson0032b272009-08-13 21:57:51 +0000232 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000233 Params, true),
234 "objc_msgSendSuper_stret");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000235 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000236
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000237 llvm::Constant *getMessageSendSuperStretFn2() const {
238 // void objc_msgSendSuper2_stret(void * stretAddr, struct objc_super *super,
239 // SEL op, ...)
240 std::vector<const llvm::Type*> Params;
241 Params.push_back(Int8PtrTy);
242 Params.push_back(SuperPtrTy);
243 Params.push_back(SelectorPtrTy);
Owen Andersona1cf15f2009-07-14 23:10:40 +0000244 return CGM.CreateRuntimeFunction(
Owen Anderson0032b272009-08-13 21:57:51 +0000245 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000246 Params, true),
247 "objc_msgSendSuper2_stret");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000248 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000249
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000250 llvm::Constant *getMessageSendSuperFpretFn() const {
251 // There is no objc_msgSendSuper_fpret? How can that work?
252 return getMessageSendSuperFn();
253 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000254
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000255 llvm::Constant *getMessageSendSuperFpretFn2() const {
256 // There is no objc_msgSendSuper_fpret? How can that work?
257 return getMessageSendSuperFn2();
258 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000259
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000260protected:
261 CodeGen::CodeGenModule &CGM;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000262
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000263public:
Fariborz Jahanian0a855d02009-03-23 19:10:40 +0000264 const llvm::Type *ShortTy, *IntTy, *LongTy, *LongLongTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000265 const llvm::Type *Int8PtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000266
Daniel Dunbar2bedbf82008-08-12 05:28:47 +0000267 /// ObjectPtrTy - LLVM type for object handles (typeof(id))
268 const llvm::Type *ObjectPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000269
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000270 /// PtrObjectPtrTy - LLVM type for id *
271 const llvm::Type *PtrObjectPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000272
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000273 /// SelectorPtrTy - LLVM type for selector handles (typeof(SEL))
Daniel Dunbar2bedbf82008-08-12 05:28:47 +0000274 const llvm::Type *SelectorPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000275 /// ProtocolPtrTy - LLVM type for external protocol handles
276 /// (typeof(Protocol))
277 const llvm::Type *ExternalProtocolPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000278
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000279 // SuperCTy - clang type for struct objc_super.
280 QualType SuperCTy;
281 // SuperPtrCTy - clang type for struct objc_super *.
282 QualType SuperPtrCTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000283
Daniel Dunbare8b470d2008-08-23 04:28:29 +0000284 /// SuperTy - LLVM type for struct objc_super.
285 const llvm::StructType *SuperTy;
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000286 /// SuperPtrTy - LLVM type for struct objc_super *.
287 const llvm::Type *SuperPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000288
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000289 /// PropertyTy - LLVM type for struct objc_property (struct _prop_t
290 /// in GCC parlance).
291 const llvm::StructType *PropertyTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000292
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000293 /// PropertyListTy - LLVM type for struct objc_property_list
294 /// (_prop_list_t in GCC parlance).
295 const llvm::StructType *PropertyListTy;
296 /// PropertyListPtrTy - LLVM type for struct objc_property_list*.
297 const llvm::Type *PropertyListPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000298
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000299 // MethodTy - LLVM type for struct objc_method.
300 const llvm::StructType *MethodTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000301
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000302 /// CacheTy - LLVM type for struct objc_cache.
303 const llvm::Type *CacheTy;
304 /// CachePtrTy - LLVM type for struct objc_cache *.
305 const llvm::Type *CachePtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000306
Chris Lattner72db6c32009-04-22 02:44:54 +0000307 llvm::Constant *getGetPropertyFn() {
308 CodeGen::CodeGenTypes &Types = CGM.getTypes();
309 ASTContext &Ctx = CGM.getContext();
310 // id objc_getProperty (id, SEL, ptrdiff_t, bool)
John McCallead608a2010-02-26 00:48:12 +0000311 llvm::SmallVector<CanQualType,4> Params;
312 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType());
313 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType());
Chris Lattner72db6c32009-04-22 02:44:54 +0000314 Params.push_back(IdType);
315 Params.push_back(SelType);
316 Params.push_back(Ctx.LongTy);
317 Params.push_back(Ctx.BoolTy);
318 const llvm::FunctionType *FTy =
John McCall04a67a62010-02-05 21:31:56 +0000319 Types.GetFunctionType(Types.getFunctionInfo(IdType, Params,
Rafael Espindola264ba482010-03-30 20:24:48 +0000320 FunctionType::ExtInfo()),
321 false);
Chris Lattner72db6c32009-04-22 02:44:54 +0000322 return CGM.CreateRuntimeFunction(FTy, "objc_getProperty");
323 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000324
Chris Lattner72db6c32009-04-22 02:44:54 +0000325 llvm::Constant *getSetPropertyFn() {
326 CodeGen::CodeGenTypes &Types = CGM.getTypes();
327 ASTContext &Ctx = CGM.getContext();
328 // void objc_setProperty (id, SEL, ptrdiff_t, id, bool, bool)
John McCallead608a2010-02-26 00:48:12 +0000329 llvm::SmallVector<CanQualType,6> Params;
330 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType());
331 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType());
Chris Lattner72db6c32009-04-22 02:44:54 +0000332 Params.push_back(IdType);
333 Params.push_back(SelType);
334 Params.push_back(Ctx.LongTy);
335 Params.push_back(IdType);
336 Params.push_back(Ctx.BoolTy);
337 Params.push_back(Ctx.BoolTy);
338 const llvm::FunctionType *FTy =
John McCall04a67a62010-02-05 21:31:56 +0000339 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
Rafael Espindola264ba482010-03-30 20:24:48 +0000340 FunctionType::ExtInfo()),
341 false);
Chris Lattner72db6c32009-04-22 02:44:54 +0000342 return CGM.CreateRuntimeFunction(FTy, "objc_setProperty");
343 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000344
Fariborz Jahanian6cc59062010-04-12 18:18:10 +0000345
346 llvm::Constant *getCopyStructFn() {
347 CodeGen::CodeGenTypes &Types = CGM.getTypes();
348 ASTContext &Ctx = CGM.getContext();
349 // void objc_copyStruct (void *, const void *, size_t, bool, bool)
350 llvm::SmallVector<CanQualType,5> Params;
351 Params.push_back(Ctx.VoidPtrTy);
352 Params.push_back(Ctx.VoidPtrTy);
353 Params.push_back(Ctx.LongTy);
354 Params.push_back(Ctx.BoolTy);
355 Params.push_back(Ctx.BoolTy);
356 const llvm::FunctionType *FTy =
357 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
358 FunctionType::ExtInfo()),
359 false);
360 return CGM.CreateRuntimeFunction(FTy, "objc_copyStruct");
361 }
362
Chris Lattner72db6c32009-04-22 02:44:54 +0000363 llvm::Constant *getEnumerationMutationFn() {
Daniel Dunbarc1ab9002009-07-11 20:32:50 +0000364 CodeGen::CodeGenTypes &Types = CGM.getTypes();
365 ASTContext &Ctx = CGM.getContext();
Chris Lattner72db6c32009-04-22 02:44:54 +0000366 // void objc_enumerationMutation (id)
John McCallead608a2010-02-26 00:48:12 +0000367 llvm::SmallVector<CanQualType,1> Params;
368 Params.push_back(Ctx.getCanonicalParamType(Ctx.getObjCIdType()));
Daniel Dunbarc1ab9002009-07-11 20:32:50 +0000369 const llvm::FunctionType *FTy =
John McCall04a67a62010-02-05 21:31:56 +0000370 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
Rafael Espindola264ba482010-03-30 20:24:48 +0000371 FunctionType::ExtInfo()),
372 false);
Chris Lattner72db6c32009-04-22 02:44:54 +0000373 return CGM.CreateRuntimeFunction(FTy, "objc_enumerationMutation");
374 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000375
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000376 /// GcReadWeakFn -- LLVM objc_read_weak (id *src) function.
Chris Lattner72db6c32009-04-22 02:44:54 +0000377 llvm::Constant *getGcReadWeakFn() {
378 // id objc_read_weak (id *)
379 std::vector<const llvm::Type*> Args;
380 Args.push_back(ObjectPtrTy->getPointerTo());
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000381 llvm::FunctionType *FTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000382 llvm::FunctionType::get(ObjectPtrTy, Args, false);
Chris Lattner72db6c32009-04-22 02:44:54 +0000383 return CGM.CreateRuntimeFunction(FTy, "objc_read_weak");
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000384 }
385
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000386 /// GcAssignWeakFn -- LLVM objc_assign_weak function.
Chris Lattner96508e12009-04-17 22:12:36 +0000387 llvm::Constant *getGcAssignWeakFn() {
388 // id objc_assign_weak (id, id *)
389 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
390 Args.push_back(ObjectPtrTy->getPointerTo());
391 llvm::FunctionType *FTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000392 llvm::FunctionType::get(ObjectPtrTy, Args, false);
Chris Lattner96508e12009-04-17 22:12:36 +0000393 return CGM.CreateRuntimeFunction(FTy, "objc_assign_weak");
394 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000395
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000396 /// GcAssignGlobalFn -- LLVM objc_assign_global function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000397 llvm::Constant *getGcAssignGlobalFn() {
398 // id objc_assign_global(id, id *)
399 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
400 Args.push_back(ObjectPtrTy->getPointerTo());
Owen Andersona1cf15f2009-07-14 23:10:40 +0000401 llvm::FunctionType *FTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000402 llvm::FunctionType::get(ObjectPtrTy, Args, false);
Chris Lattnerbbccd612009-04-22 02:38:11 +0000403 return CGM.CreateRuntimeFunction(FTy, "objc_assign_global");
404 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000405
Fariborz Jahanian021a7a62010-07-20 20:30:03 +0000406 /// GcAssignThreadLocalFn -- LLVM objc_assign_threadlocal function.
407 llvm::Constant *getGcAssignThreadLocalFn() {
408 // id objc_assign_threadlocal(id src, id * dest)
409 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
410 Args.push_back(ObjectPtrTy->getPointerTo());
411 llvm::FunctionType *FTy =
412 llvm::FunctionType::get(ObjectPtrTy, Args, false);
413 return CGM.CreateRuntimeFunction(FTy, "objc_assign_threadlocal");
414 }
415
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000416 /// GcAssignIvarFn -- LLVM objc_assign_ivar function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000417 llvm::Constant *getGcAssignIvarFn() {
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000418 // id objc_assign_ivar(id, id *, ptrdiff_t)
Chris Lattnerbbccd612009-04-22 02:38:11 +0000419 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
420 Args.push_back(ObjectPtrTy->getPointerTo());
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000421 Args.push_back(LongTy);
Owen Andersona1cf15f2009-07-14 23:10:40 +0000422 llvm::FunctionType *FTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000423 llvm::FunctionType::get(ObjectPtrTy, Args, false);
Chris Lattnerbbccd612009-04-22 02:38:11 +0000424 return CGM.CreateRuntimeFunction(FTy, "objc_assign_ivar");
425 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000426
Fariborz Jahanian082b02e2009-07-08 01:18:33 +0000427 /// GcMemmoveCollectableFn -- LLVM objc_memmove_collectable function.
428 llvm::Constant *GcMemmoveCollectableFn() {
429 // void *objc_memmove_collectable(void *dst, const void *src, size_t size)
430 std::vector<const llvm::Type*> Args(1, Int8PtrTy);
431 Args.push_back(Int8PtrTy);
432 Args.push_back(LongTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000433 llvm::FunctionType *FTy = llvm::FunctionType::get(Int8PtrTy, Args, false);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +0000434 return CGM.CreateRuntimeFunction(FTy, "objc_memmove_collectable");
435 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000436
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000437 /// GcAssignStrongCastFn -- LLVM objc_assign_strongCast function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000438 llvm::Constant *getGcAssignStrongCastFn() {
Fariborz Jahanian021a7a62010-07-20 20:30:03 +0000439 // id objc_assign_strongCast(id, id *)
Chris Lattnerbbccd612009-04-22 02:38:11 +0000440 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
441 Args.push_back(ObjectPtrTy->getPointerTo());
Owen Andersona1cf15f2009-07-14 23:10:40 +0000442 llvm::FunctionType *FTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000443 llvm::FunctionType::get(ObjectPtrTy, Args, false);
Chris Lattnerbbccd612009-04-22 02:38:11 +0000444 return CGM.CreateRuntimeFunction(FTy, "objc_assign_strongCast");
445 }
Anders Carlssonf57c5b22009-02-16 22:59:18 +0000446
447 /// ExceptionThrowFn - LLVM objc_exception_throw function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000448 llvm::Constant *getExceptionThrowFn() {
449 // void objc_exception_throw(id)
450 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
451 llvm::FunctionType *FTy =
Owen Anderson0032b272009-08-13 21:57:51 +0000452 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext), Args, false);
Chris Lattnerbbccd612009-04-22 02:38:11 +0000453 return CGM.CreateRuntimeFunction(FTy, "objc_exception_throw");
454 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000455
Fariborz Jahanian69677ea2010-05-28 17:34:43 +0000456 /// ExceptionRethrowFn - LLVM objc_exception_rethrow function.
457 llvm::Constant *getExceptionRethrowFn() {
458 // void objc_exception_rethrow(void)
459 std::vector<const llvm::Type*> Args;
460 llvm::FunctionType *FTy =
461 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext), Args, true);
462 return CGM.CreateRuntimeFunction(FTy, "objc_exception_rethrow");
463 }
464
Daniel Dunbar1c566672009-02-24 01:43:46 +0000465 /// SyncEnterFn - LLVM object_sync_enter function.
Chris Lattnerb02e53b2009-04-06 16:53:45 +0000466 llvm::Constant *getSyncEnterFn() {
467 // void objc_sync_enter (id)
468 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
469 llvm::FunctionType *FTy =
Owen Anderson0032b272009-08-13 21:57:51 +0000470 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext), Args, false);
Chris Lattnerb02e53b2009-04-06 16:53:45 +0000471 return CGM.CreateRuntimeFunction(FTy, "objc_sync_enter");
472 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000473
Daniel Dunbar1c566672009-02-24 01:43:46 +0000474 /// SyncExitFn - LLVM object_sync_exit function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000475 llvm::Constant *getSyncExitFn() {
476 // void objc_sync_exit (id)
477 std::vector<const llvm::Type*> Args(1, ObjectPtrTy);
478 llvm::FunctionType *FTy =
Owen Anderson0032b272009-08-13 21:57:51 +0000479 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext), Args, false);
Chris Lattnerbbccd612009-04-22 02:38:11 +0000480 return CGM.CreateRuntimeFunction(FTy, "objc_sync_exit");
481 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000482
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000483 llvm::Constant *getSendFn(bool IsSuper) const {
484 return IsSuper ? getMessageSendSuperFn() : getMessageSendFn();
485 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000486
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000487 llvm::Constant *getSendFn2(bool IsSuper) const {
488 return IsSuper ? getMessageSendSuperFn2() : getMessageSendFn();
489 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000490
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000491 llvm::Constant *getSendStretFn(bool IsSuper) const {
492 return IsSuper ? getMessageSendSuperStretFn() : getMessageSendStretFn();
493 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000494
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000495 llvm::Constant *getSendStretFn2(bool IsSuper) const {
496 return IsSuper ? getMessageSendSuperStretFn2() : getMessageSendStretFn();
497 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000498
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000499 llvm::Constant *getSendFpretFn(bool IsSuper) const {
500 return IsSuper ? getMessageSendSuperFpretFn() : getMessageSendFpretFn();
501 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000502
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000503 llvm::Constant *getSendFpretFn2(bool IsSuper) const {
504 return IsSuper ? getMessageSendSuperFpretFn2() : getMessageSendFpretFn();
505 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000506
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000507 ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm);
508 ~ObjCCommonTypesHelper(){}
509};
Daniel Dunbare8b470d2008-08-23 04:28:29 +0000510
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000511/// ObjCTypesHelper - Helper class that encapsulates lazy
512/// construction of varies types used during ObjC generation.
513class ObjCTypesHelper : public ObjCCommonTypesHelper {
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000514public:
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000515 /// SymtabTy - LLVM type for struct objc_symtab.
516 const llvm::StructType *SymtabTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000517 /// SymtabPtrTy - LLVM type for struct objc_symtab *.
518 const llvm::Type *SymtabPtrTy;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000519 /// ModuleTy - LLVM type for struct objc_module.
520 const llvm::StructType *ModuleTy;
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000521
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000522 /// ProtocolTy - LLVM type for struct objc_protocol.
523 const llvm::StructType *ProtocolTy;
524 /// ProtocolPtrTy - LLVM type for struct objc_protocol *.
525 const llvm::Type *ProtocolPtrTy;
526 /// ProtocolExtensionTy - LLVM type for struct
527 /// objc_protocol_extension.
528 const llvm::StructType *ProtocolExtensionTy;
529 /// ProtocolExtensionTy - LLVM type for struct
530 /// objc_protocol_extension *.
531 const llvm::Type *ProtocolExtensionPtrTy;
532 /// MethodDescriptionTy - LLVM type for struct
533 /// objc_method_description.
534 const llvm::StructType *MethodDescriptionTy;
535 /// MethodDescriptionListTy - LLVM type for struct
536 /// objc_method_description_list.
537 const llvm::StructType *MethodDescriptionListTy;
538 /// MethodDescriptionListPtrTy - LLVM type for struct
539 /// objc_method_description_list *.
540 const llvm::Type *MethodDescriptionListPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000541 /// ProtocolListTy - LLVM type for struct objc_property_list.
542 const llvm::Type *ProtocolListTy;
543 /// ProtocolListPtrTy - LLVM type for struct objc_property_list*.
544 const llvm::Type *ProtocolListPtrTy;
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000545 /// CategoryTy - LLVM type for struct objc_category.
546 const llvm::StructType *CategoryTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000547 /// ClassTy - LLVM type for struct objc_class.
548 const llvm::StructType *ClassTy;
549 /// ClassPtrTy - LLVM type for struct objc_class *.
550 const llvm::Type *ClassPtrTy;
551 /// ClassExtensionTy - LLVM type for struct objc_class_ext.
552 const llvm::StructType *ClassExtensionTy;
553 /// ClassExtensionPtrTy - LLVM type for struct objc_class_ext *.
554 const llvm::Type *ClassExtensionPtrTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000555 // IvarTy - LLVM type for struct objc_ivar.
556 const llvm::StructType *IvarTy;
557 /// IvarListTy - LLVM type for struct objc_ivar_list.
558 const llvm::Type *IvarListTy;
559 /// IvarListPtrTy - LLVM type for struct objc_ivar_list *.
560 const llvm::Type *IvarListPtrTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000561 /// MethodListTy - LLVM type for struct objc_method_list.
562 const llvm::Type *MethodListTy;
563 /// MethodListPtrTy - LLVM type for struct objc_method_list *.
564 const llvm::Type *MethodListPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000565
Anders Carlsson124526b2008-09-09 10:10:21 +0000566 /// ExceptionDataTy - LLVM type for struct _objc_exception_data.
567 const llvm::Type *ExceptionDataTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000568
Anders Carlsson124526b2008-09-09 10:10:21 +0000569 /// ExceptionTryEnterFn - LLVM objc_exception_try_enter function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000570 llvm::Constant *getExceptionTryEnterFn() {
571 std::vector<const llvm::Type*> Params;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000572 Params.push_back(llvm::PointerType::getUnqual(ExceptionDataTy));
Owen Andersona1cf15f2009-07-14 23:10:40 +0000573 return CGM.CreateRuntimeFunction(
Owen Anderson0032b272009-08-13 21:57:51 +0000574 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000575 Params, false),
576 "objc_exception_try_enter");
Chris Lattner34b02a12009-04-22 02:26:14 +0000577 }
Anders Carlsson124526b2008-09-09 10:10:21 +0000578
579 /// ExceptionTryExitFn - LLVM objc_exception_try_exit function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000580 llvm::Constant *getExceptionTryExitFn() {
581 std::vector<const llvm::Type*> Params;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000582 Params.push_back(llvm::PointerType::getUnqual(ExceptionDataTy));
Owen Andersona1cf15f2009-07-14 23:10:40 +0000583 return CGM.CreateRuntimeFunction(
Owen Anderson0032b272009-08-13 21:57:51 +0000584 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000585 Params, false),
586 "objc_exception_try_exit");
Chris Lattner34b02a12009-04-22 02:26:14 +0000587 }
Anders Carlsson124526b2008-09-09 10:10:21 +0000588
589 /// ExceptionExtractFn - LLVM objc_exception_extract function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000590 llvm::Constant *getExceptionExtractFn() {
591 std::vector<const llvm::Type*> Params;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000592 Params.push_back(llvm::PointerType::getUnqual(ExceptionDataTy));
593 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
Chris Lattner34b02a12009-04-22 02:26:14 +0000594 Params, false),
595 "objc_exception_extract");
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000596
Chris Lattner34b02a12009-04-22 02:26:14 +0000597 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000598
Anders Carlsson124526b2008-09-09 10:10:21 +0000599 /// ExceptionMatchFn - LLVM objc_exception_match function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000600 llvm::Constant *getExceptionMatchFn() {
601 std::vector<const llvm::Type*> Params;
602 Params.push_back(ClassPtrTy);
603 Params.push_back(ObjectPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000604 return CGM.CreateRuntimeFunction(
Owen Anderson0032b272009-08-13 21:57:51 +0000605 llvm::FunctionType::get(llvm::Type::getInt32Ty(VMContext),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000606 Params, false),
607 "objc_exception_match");
608
Chris Lattner34b02a12009-04-22 02:26:14 +0000609 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000610
Anders Carlsson124526b2008-09-09 10:10:21 +0000611 /// SetJmpFn - LLVM _setjmp function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000612 llvm::Constant *getSetJmpFn() {
613 std::vector<const llvm::Type*> Params;
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +0000614 Params.push_back(llvm::Type::getInt32PtrTy(VMContext));
Chris Lattner34b02a12009-04-22 02:26:14 +0000615 return
Owen Anderson0032b272009-08-13 21:57:51 +0000616 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::getInt32Ty(VMContext),
Chris Lattner34b02a12009-04-22 02:26:14 +0000617 Params, false),
618 "_setjmp");
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000619
Chris Lattner34b02a12009-04-22 02:26:14 +0000620 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000621
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000622public:
623 ObjCTypesHelper(CodeGen::CodeGenModule &cgm);
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000624 ~ObjCTypesHelper() {}
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000625};
626
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000627/// ObjCNonFragileABITypesHelper - will have all types needed by objective-c's
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000628/// modern abi
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000629class ObjCNonFragileABITypesHelper : public ObjCCommonTypesHelper {
Fariborz Jahanian83a8a752009-02-04 20:42:28 +0000630public:
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000631
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000632 // MethodListnfABITy - LLVM for struct _method_list_t
633 const llvm::StructType *MethodListnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000634
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000635 // MethodListnfABIPtrTy - LLVM for struct _method_list_t*
636 const llvm::Type *MethodListnfABIPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000637
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000638 // ProtocolnfABITy = LLVM for struct _protocol_t
639 const llvm::StructType *ProtocolnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000640
Daniel Dunbar948e2582009-02-15 07:36:20 +0000641 // ProtocolnfABIPtrTy = LLVM for struct _protocol_t*
642 const llvm::Type *ProtocolnfABIPtrTy;
643
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000644 // ProtocolListnfABITy - LLVM for struct _objc_protocol_list
645 const llvm::StructType *ProtocolListnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000646
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000647 // ProtocolListnfABIPtrTy - LLVM for struct _objc_protocol_list*
648 const llvm::Type *ProtocolListnfABIPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000649
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000650 // ClassnfABITy - LLVM for struct _class_t
651 const llvm::StructType *ClassnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000652
Fariborz Jahanianaa23b572009-01-23 23:53:38 +0000653 // ClassnfABIPtrTy - LLVM for struct _class_t*
654 const llvm::Type *ClassnfABIPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000655
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000656 // IvarnfABITy - LLVM for struct _ivar_t
657 const llvm::StructType *IvarnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000658
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000659 // IvarListnfABITy - LLVM for struct _ivar_list_t
660 const llvm::StructType *IvarListnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000661
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000662 // IvarListnfABIPtrTy = LLVM for struct _ivar_list_t*
663 const llvm::Type *IvarListnfABIPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000664
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000665 // ClassRonfABITy - LLVM for struct _class_ro_t
666 const llvm::StructType *ClassRonfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000667
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000668 // ImpnfABITy - LLVM for id (*)(id, SEL, ...)
669 const llvm::Type *ImpnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000670
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000671 // CategorynfABITy - LLVM for struct _category_t
672 const llvm::StructType *CategorynfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000673
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000674 // New types for nonfragile abi messaging.
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000675
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000676 // MessageRefTy - LLVM for:
677 // struct _message_ref_t {
678 // IMP messenger;
679 // SEL name;
680 // };
681 const llvm::StructType *MessageRefTy;
Fariborz Jahanian83a8a752009-02-04 20:42:28 +0000682 // MessageRefCTy - clang type for struct _message_ref_t
683 QualType MessageRefCTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000684
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000685 // MessageRefPtrTy - LLVM for struct _message_ref_t*
686 const llvm::Type *MessageRefPtrTy;
Fariborz Jahanian83a8a752009-02-04 20:42:28 +0000687 // MessageRefCPtrTy - clang type for struct _message_ref_t*
688 QualType MessageRefCPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000689
Fariborz Jahanianef163782009-02-05 01:13:09 +0000690 // MessengerTy - Type of the messenger (shown as IMP above)
691 const llvm::FunctionType *MessengerTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000692
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000693 // SuperMessageRefTy - LLVM for:
694 // struct _super_message_ref_t {
695 // SUPER_IMP messenger;
696 // SEL name;
697 // };
698 const llvm::StructType *SuperMessageRefTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000699
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000700 // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t*
701 const llvm::Type *SuperMessageRefPtrTy;
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +0000702
Chris Lattner1c02f862009-04-22 02:53:24 +0000703 llvm::Constant *getMessageSendFixupFn() {
704 // id objc_msgSend_fixup(id, struct message_ref_t*, ...)
705 std::vector<const llvm::Type*> Params;
706 Params.push_back(ObjectPtrTy);
707 Params.push_back(MessageRefPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000708 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
Chris Lattner1c02f862009-04-22 02:53:24 +0000709 Params, true),
710 "objc_msgSend_fixup");
711 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000712
Chris Lattner1c02f862009-04-22 02:53:24 +0000713 llvm::Constant *getMessageSendFpretFixupFn() {
714 // id objc_msgSend_fpret_fixup(id, struct message_ref_t*, ...)
715 std::vector<const llvm::Type*> Params;
716 Params.push_back(ObjectPtrTy);
717 Params.push_back(MessageRefPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000718 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
Chris Lattner1c02f862009-04-22 02:53:24 +0000719 Params, true),
720 "objc_msgSend_fpret_fixup");
721 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000722
Chris Lattner1c02f862009-04-22 02:53:24 +0000723 llvm::Constant *getMessageSendStretFixupFn() {
724 // id objc_msgSend_stret_fixup(id, struct message_ref_t*, ...)
725 std::vector<const llvm::Type*> Params;
726 Params.push_back(ObjectPtrTy);
727 Params.push_back(MessageRefPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000728 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
Chris Lattner1c02f862009-04-22 02:53:24 +0000729 Params, true),
730 "objc_msgSend_stret_fixup");
731 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000732
Chris Lattner1c02f862009-04-22 02:53:24 +0000733 llvm::Constant *getMessageSendIdFixupFn() {
734 // id objc_msgSendId_fixup(id, struct message_ref_t*, ...)
735 std::vector<const llvm::Type*> Params;
736 Params.push_back(ObjectPtrTy);
737 Params.push_back(MessageRefPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000738 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
Chris Lattner1c02f862009-04-22 02:53:24 +0000739 Params, true),
740 "objc_msgSendId_fixup");
741 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000742
Chris Lattner1c02f862009-04-22 02:53:24 +0000743 llvm::Constant *getMessageSendIdStretFixupFn() {
744 // id objc_msgSendId_stret_fixup(id, struct message_ref_t*, ...)
745 std::vector<const llvm::Type*> Params;
746 Params.push_back(ObjectPtrTy);
747 Params.push_back(MessageRefPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000748 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
Chris Lattner1c02f862009-04-22 02:53:24 +0000749 Params, true),
750 "objc_msgSendId_stret_fixup");
751 }
752 llvm::Constant *getMessageSendSuper2FixupFn() {
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000753 // id objc_msgSendSuper2_fixup (struct objc_super *,
Chris Lattner1c02f862009-04-22 02:53:24 +0000754 // struct _super_message_ref_t*, ...)
755 std::vector<const llvm::Type*> Params;
756 Params.push_back(SuperPtrTy);
757 Params.push_back(SuperMessageRefPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000758 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
Chris Lattner1c02f862009-04-22 02:53:24 +0000759 Params, true),
760 "objc_msgSendSuper2_fixup");
761 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000762
Chris Lattner1c02f862009-04-22 02:53:24 +0000763 llvm::Constant *getMessageSendSuper2StretFixupFn() {
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000764 // id objc_msgSendSuper2_stret_fixup(struct objc_super *,
Chris Lattner1c02f862009-04-22 02:53:24 +0000765 // struct _super_message_ref_t*, ...)
766 std::vector<const llvm::Type*> Params;
767 Params.push_back(SuperPtrTy);
768 Params.push_back(SuperMessageRefPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000769 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
Chris Lattner1c02f862009-04-22 02:53:24 +0000770 Params, true),
771 "objc_msgSendSuper2_stret_fixup");
772 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000773
Chris Lattner8a569112009-04-22 02:15:23 +0000774 llvm::Constant *getObjCEndCatchFn() {
Owen Anderson0032b272009-08-13 21:57:51 +0000775 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
Chris Lattnerb59761b2009-07-01 04:13:52 +0000776 false),
Chris Lattner8a569112009-04-22 02:15:23 +0000777 "objc_end_catch");
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000778
Chris Lattner8a569112009-04-22 02:15:23 +0000779 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000780
Chris Lattner8a569112009-04-22 02:15:23 +0000781 llvm::Constant *getObjCBeginCatchFn() {
782 std::vector<const llvm::Type*> Params;
783 Params.push_back(Int8PtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000784 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(Int8PtrTy,
Chris Lattner8a569112009-04-22 02:15:23 +0000785 Params, false),
786 "objc_begin_catch");
787 }
Daniel Dunbare588b992009-03-01 04:46:24 +0000788
789 const llvm::StructType *EHTypeTy;
790 const llvm::Type *EHTypePtrTy;
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +0000791
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000792 ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm);
793 ~ObjCNonFragileABITypesHelper(){}
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000794};
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000795
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000796class CGObjCCommonMac : public CodeGen::CGObjCRuntime {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000797public:
798 // FIXME - accessibility
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000799 class GC_IVAR {
Fariborz Jahanian820e0202009-03-11 00:07:04 +0000800 public:
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000801 unsigned ivar_bytepos;
802 unsigned ivar_size;
803 GC_IVAR(unsigned bytepos = 0, unsigned size = 0)
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000804 : ivar_bytepos(bytepos), ivar_size(size) {}
Daniel Dunbar0941b492009-04-23 01:29:05 +0000805
806 // Allow sorting based on byte pos.
807 bool operator<(const GC_IVAR &b) const {
808 return ivar_bytepos < b.ivar_bytepos;
809 }
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000810 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000811
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000812 class SKIP_SCAN {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000813 public:
814 unsigned skip;
815 unsigned scan;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000816 SKIP_SCAN(unsigned _skip = 0, unsigned _scan = 0)
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000817 : skip(_skip), scan(_scan) {}
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000818 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000819
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000820protected:
821 CodeGen::CodeGenModule &CGM;
Owen Anderson69243822009-07-13 04:10:07 +0000822 llvm::LLVMContext &VMContext;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000823 // FIXME! May not be needing this after all.
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000824 unsigned ObjCABI;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000825
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000826 // gc ivar layout bitmap calculation helper caches.
827 llvm::SmallVector<GC_IVAR, 16> SkipIvars;
828 llvm::SmallVector<GC_IVAR, 16> IvarsInfo;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000829
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000830 /// LazySymbols - Symbols to generate a lazy reference for. See
831 /// DefinedSymbols and FinishModule().
Daniel Dunbar33063492009-09-07 00:20:42 +0000832 llvm::SetVector<IdentifierInfo*> LazySymbols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000833
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000834 /// DefinedSymbols - External symbols which are defined by this
835 /// module. The symbols in this list and LazySymbols are used to add
836 /// special linker symbols which ensure that Objective-C modules are
837 /// linked properly.
Daniel Dunbar33063492009-09-07 00:20:42 +0000838 llvm::SetVector<IdentifierInfo*> DefinedSymbols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000839
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000840 /// ClassNames - uniqued class names.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000841 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassNames;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000842
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000843 /// MethodVarNames - uniqued method variable names.
844 llvm::DenseMap<Selector, llvm::GlobalVariable*> MethodVarNames;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000845
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +0000846 /// DefinedCategoryNames - list of category names in form Class_Category.
847 llvm::SetVector<std::string> DefinedCategoryNames;
848
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000849 /// MethodVarTypes - uniqued method type signatures. We have to use
850 /// a StringMap here because have no other unique reference.
851 llvm::StringMap<llvm::GlobalVariable*> MethodVarTypes;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000852
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000853 /// MethodDefinitions - map of methods which have been defined in
854 /// this translation unit.
855 llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*> MethodDefinitions;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000856
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000857 /// PropertyNames - uniqued method variable names.
858 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> PropertyNames;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000859
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000860 /// ClassReferences - uniqued class references.
861 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000862
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000863 /// SelectorReferences - uniqued selector references.
864 llvm::DenseMap<Selector, llvm::GlobalVariable*> SelectorReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000865
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000866 /// Protocols - Protocols for which an objc_protocol structure has
867 /// been emitted. Forward declarations are handled by creating an
868 /// empty structure whose initializer is filled in when/if defined.
869 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000870
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000871 /// DefinedProtocols - Protocols which have actually been
872 /// defined. We should not need this, see FIXME in GenerateProtocol.
873 llvm::DenseSet<IdentifierInfo*> DefinedProtocols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000874
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000875 /// DefinedClasses - List of defined classes.
876 std::vector<llvm::GlobalValue*> DefinedClasses;
Daniel Dunbar74d4b122009-05-15 22:33:15 +0000877
878 /// DefinedNonLazyClasses - List of defined "non-lazy" classes.
879 std::vector<llvm::GlobalValue*> DefinedNonLazyClasses;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000880
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000881 /// DefinedCategories - List of defined categories.
882 std::vector<llvm::GlobalValue*> DefinedCategories;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000883
Daniel Dunbar74d4b122009-05-15 22:33:15 +0000884 /// DefinedNonLazyCategories - List of defined "non-lazy" categories.
885 std::vector<llvm::GlobalValue*> DefinedNonLazyCategories;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000886
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000887 /// GetNameForMethod - Return a name for the given method.
888 /// \param[out] NameOut - The return value.
889 void GetNameForMethod(const ObjCMethodDecl *OMD,
890 const ObjCContainerDecl *CD,
Daniel Dunbarc575ce72009-10-19 01:21:19 +0000891 llvm::SmallVectorImpl<char> &NameOut);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000892
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000893 /// GetMethodVarName - Return a unique constant for the given
894 /// selector's name. The return value has type char *.
895 llvm::Constant *GetMethodVarName(Selector Sel);
896 llvm::Constant *GetMethodVarName(IdentifierInfo *Ident);
897 llvm::Constant *GetMethodVarName(const std::string &Name);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000898
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000899 /// GetMethodVarType - Return a unique constant for the given
900 /// selector's name. The return value has type char *.
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000901
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000902 // FIXME: This is a horrible name.
903 llvm::Constant *GetMethodVarType(const ObjCMethodDecl *D);
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +0000904 llvm::Constant *GetMethodVarType(const FieldDecl *D);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000905
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000906 /// GetPropertyName - Return a unique constant for the given
907 /// name. The return value has type char *.
908 llvm::Constant *GetPropertyName(IdentifierInfo *Ident);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000909
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000910 // FIXME: This can be dropped once string functions are unified.
911 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
912 const Decl *Container);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000913
Fariborz Jahanian058a1b72009-01-24 20:21:50 +0000914 /// GetClassName - Return a unique constant for the given selector's
915 /// name. The return value has type char *.
916 llvm::Constant *GetClassName(IdentifierInfo *Ident);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000917
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +0000918 llvm::Function *GetMethodDefinition(const ObjCMethodDecl *MD);
919
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +0000920 /// BuildIvarLayout - Builds ivar layout bitmap for the class
921 /// implementation for the __strong or __weak case.
922 ///
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000923 llvm::Constant *BuildIvarLayout(const ObjCImplementationDecl *OI,
924 bool ForStrongLayout);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +0000925
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +0000926 llvm::Constant *BuildIvarLayoutBitmap(std::string &BitMap);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000927
Daniel Dunbard58edcb2009-05-03 14:10:34 +0000928 void BuildAggrIvarRecordLayout(const RecordType *RT,
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000929 unsigned int BytePos, bool ForStrongLayout,
930 bool &HasUnion);
Daniel Dunbar5a5a8032009-05-03 21:05:10 +0000931 void BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000932 const llvm::StructLayout *Layout,
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000933 const RecordDecl *RD,
Chris Lattnerf1690852009-03-31 08:48:01 +0000934 const llvm::SmallVectorImpl<FieldDecl*> &RecFields,
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +0000935 unsigned int BytePos, bool ForStrongLayout,
Fariborz Jahanian81adc052009-04-24 16:17:09 +0000936 bool &HasUnion);
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000937
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +0000938 /// GetIvarLayoutName - Returns a unique constant for the given
939 /// ivar layout bitmap.
940 llvm::Constant *GetIvarLayoutName(IdentifierInfo *Ident,
941 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000942
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +0000943 /// EmitPropertyList - Emit the given property list. The return
944 /// value has type PropertyListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +0000945 llvm::Constant *EmitPropertyList(llvm::Twine Name,
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000946 const Decl *Container,
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +0000947 const ObjCContainerDecl *OCD,
948 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000949
Fariborz Jahanian191dcd72009-12-12 21:26:21 +0000950 /// PushProtocolProperties - Push protocol's property on the input stack.
951 void PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*, 16> &PropertySet,
952 std::vector<llvm::Constant*> &Properties,
953 const Decl *Container,
954 const ObjCProtocolDecl *PROTO,
955 const ObjCCommonTypesHelper &ObjCTypes);
956
Fariborz Jahanianda320092009-01-29 19:24:30 +0000957 /// GetProtocolRef - Return a reference to the internal protocol
958 /// description, creating an empty one if it has not been
959 /// defined. The return value has type ProtocolPtrTy.
960 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
Fariborz Jahanianb21f07e2009-03-08 20:18:37 +0000961
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000962 /// CreateMetadataVar - Create a global variable with internal
963 /// linkage for use by the Objective-C runtime.
964 ///
965 /// This is a convenience wrapper which not only creates the
966 /// variable, but also sets the section and alignment and adds the
Chris Lattnerad64e022009-07-17 23:57:13 +0000967 /// global to the "llvm.used" list.
Daniel Dunbar35bd7632009-03-09 20:50:13 +0000968 ///
969 /// \param Name - The variable name.
970 /// \param Init - The variable initializer; this is also used to
971 /// define the type of the variable.
972 /// \param Section - The section the variable should go into, or 0.
973 /// \param Align - The alignment for the variable, or 0.
974 /// \param AddToUsed - Whether the variable should be added to
Daniel Dunbarc1583062009-04-14 17:42:51 +0000975 /// "llvm.used".
Daniel Dunbar9c29bf52009-10-18 20:48:59 +0000976 llvm::GlobalVariable *CreateMetadataVar(llvm::Twine Name,
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000977 llvm::Constant *Init,
978 const char *Section,
Daniel Dunbar35bd7632009-03-09 20:50:13 +0000979 unsigned Align,
980 bool AddToUsed);
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000981
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000982 CodeGen::RValue EmitLegacyMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +0000983 ReturnValueSlot Return,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000984 QualType ResultType,
985 llvm::Value *Sel,
986 llvm::Value *Arg0,
987 QualType Arg0Ty,
988 bool IsSuper,
989 const CallArgList &CallArgs,
Daniel Dunbard6c93d72009-09-17 04:01:22 +0000990 const ObjCMethodDecl *OMD,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000991 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +0000992
Daniel Dunbarfce176b2010-04-25 20:39:01 +0000993 /// EmitImageInfo - Emit the image info marker used to encode some module
994 /// level information.
995 void EmitImageInfo();
996
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000997public:
Owen Anderson69243822009-07-13 04:10:07 +0000998 CGObjCCommonMac(CodeGen::CodeGenModule &cgm) :
Mike Stump1eb44332009-09-09 15:08:12 +0000999 CGM(cgm), VMContext(cgm.getLLVMContext()) { }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001000
David Chisnall0d13f6f2010-01-23 02:40:42 +00001001 virtual llvm::Constant *GenerateConstantString(const StringLiteral *SL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001002
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001003 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
1004 const ObjCContainerDecl *CD=0);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001005
Fariborz Jahanianda320092009-01-29 19:24:30 +00001006 virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001007
Fariborz Jahanianda320092009-01-29 19:24:30 +00001008 /// GetOrEmitProtocol - Get the protocol object for the given
1009 /// declaration, emitting it if necessary. The return value has type
1010 /// ProtocolPtrTy.
1011 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001012
Fariborz Jahanianda320092009-01-29 19:24:30 +00001013 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1014 /// object for the given declaration, emitting it if needed. These
1015 /// forward references will be filled in with empty bodies if no
1016 /// definition is seen. The return value has type ProtocolPtrTy.
1017 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0;
Fariborz Jahanian89ecd412010-08-04 16:57:49 +00001018 virtual llvm::Constant *GCBlockLayout(CodeGen::CodeGenFunction &CGF,
1019 const llvm::SmallVectorImpl<const BlockDeclRefExpr *> &);
1020
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001021};
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001022
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001023class CGObjCMac : public CGObjCCommonMac {
1024private:
1025 ObjCTypesHelper ObjCTypes;
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001026
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001027 /// EmitModuleInfo - Another marker encoding module level
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001028 /// information.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001029 void EmitModuleInfo();
1030
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001031 /// EmitModuleSymols - Emit module symbols, the list of defined
1032 /// classes and categories. The result has type SymtabPtrTy.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001033 llvm::Constant *EmitModuleSymbols();
1034
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001035 /// FinishModule - Write out global data structures at the end of
1036 /// processing a translation unit.
1037 void FinishModule();
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001038
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001039 /// EmitClassExtension - Generate the class extension structure used
1040 /// to store the weak ivar layout and properties. The return value
1041 /// has type ClassExtensionPtrTy.
1042 llvm::Constant *EmitClassExtension(const ObjCImplementationDecl *ID);
1043
1044 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
1045 /// for the given class.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001046 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001047 const ObjCInterfaceDecl *ID);
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00001048
1049 /// EmitSuperClassRef - Emits reference to class's main metadata class.
1050 llvm::Value *EmitSuperClassRef(const ObjCInterfaceDecl *ID);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001051
1052 /// EmitIvarList - Emit the ivar list for the given
1053 /// implementation. If ForClass is true the list of class ivars
1054 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1055 /// interface ivars will be emitted. The return value has type
1056 /// IvarListPtrTy.
1057 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00001058 bool ForClass);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001059
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001060 /// EmitMetaClass - Emit a forward reference to the class structure
1061 /// for the metaclass of the given interface. The return value has
1062 /// type ClassPtrTy.
1063 llvm::Constant *EmitMetaClassRef(const ObjCInterfaceDecl *ID);
1064
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001065 /// EmitMetaClass - Emit a class structure for the metaclass of the
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001066 /// given implementation. The return value has type ClassPtrTy.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001067 llvm::Constant *EmitMetaClass(const ObjCImplementationDecl *ID,
1068 llvm::Constant *Protocols,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001069 const ConstantVector &Methods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001070
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001071 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001072
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001073 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001074
1075 /// EmitMethodList - Emit the method list for the given
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001076 /// implementation. The return value has type MethodListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001077 llvm::Constant *EmitMethodList(llvm::Twine Name,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001078 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001079 const ConstantVector &Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001080
1081 /// EmitMethodDescList - Emit a method description list for a list of
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001082 /// method declarations.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001083 /// - TypeName: The name for the type containing the methods.
1084 /// - IsProtocol: True iff these methods are for a protocol.
1085 /// - ClassMethds: True iff these are class methods.
1086 /// - Required: When true, only "required" methods are
1087 /// listed. Similarly, when false only "optional" methods are
1088 /// listed. For classes this should always be true.
1089 /// - begin, end: The method list to output.
1090 ///
1091 /// The return value has type MethodDescriptionListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001092 llvm::Constant *EmitMethodDescList(llvm::Twine Name,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001093 const char *Section,
1094 const ConstantVector &Methods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001095
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001096 /// GetOrEmitProtocol - Get the protocol object for the given
1097 /// declaration, emitting it if necessary. The return value has type
1098 /// ProtocolPtrTy.
Fariborz Jahanianda320092009-01-29 19:24:30 +00001099 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001100
1101 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1102 /// object for the given declaration, emitting it if needed. These
1103 /// forward references will be filled in with empty bodies if no
1104 /// definition is seen. The return value has type ProtocolPtrTy.
Fariborz Jahanianda320092009-01-29 19:24:30 +00001105 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001106
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001107 /// EmitProtocolExtension - Generate the protocol extension
1108 /// structure used to store optional instance and class methods, and
1109 /// protocol properties. The return value has type
1110 /// ProtocolExtensionPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001111 llvm::Constant *
1112 EmitProtocolExtension(const ObjCProtocolDecl *PD,
1113 const ConstantVector &OptInstanceMethods,
1114 const ConstantVector &OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001115
1116 /// EmitProtocolList - Generate the list of referenced
1117 /// protocols. The return value has type ProtocolListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001118 llvm::Constant *EmitProtocolList(llvm::Twine Name,
Daniel Dunbardbc93372008-08-21 21:57:41 +00001119 ObjCProtocolDecl::protocol_iterator begin,
1120 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001121
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001122 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1123 /// for the given selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001124 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel,
1125 bool lval=false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001126
1127public:
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001128 CGObjCMac(CodeGen::CodeGenModule &cgm);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001129
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001130 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001131
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001132 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001133 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001134 QualType ResultType,
1135 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001136 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001137 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001138 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001139 const ObjCMethodDecl *Method);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001140
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001141 virtual CodeGen::RValue
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001142 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001143 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001144 QualType ResultType,
1145 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001146 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001147 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001148 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001149 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001150 const CallArgList &CallArgs,
1151 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001152
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001153 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001154 const ObjCInterfaceDecl *ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001155
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001156 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
1157 bool lval = false);
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001158
1159 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1160 /// untyped one.
1161 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1162 const ObjCMethodDecl *Method);
1163
John McCall5a180392010-07-24 00:37:23 +00001164 virtual llvm::Constant *GetEHType(QualType T);
1165
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001166 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001167
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001168 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001169
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001170 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001171 const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001172
Chris Lattner74391b42009-03-22 21:03:39 +00001173 virtual llvm::Constant *GetPropertyGetFunction();
1174 virtual llvm::Constant *GetPropertySetFunction();
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00001175 virtual llvm::Constant *GetCopyStructFunction();
Chris Lattner74391b42009-03-22 21:03:39 +00001176 virtual llvm::Constant *EnumerationMutationFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001177
John McCallf1549f62010-07-06 01:34:17 +00001178 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1179 const ObjCAtTryStmt &S);
1180 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1181 const ObjCAtSynchronizedStmt &S);
1182 void EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF, const Stmt &S);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001183 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
1184 const ObjCAtThrowStmt &S);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00001185 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001186 llvm::Value *AddrWeakObj);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00001187 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001188 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanian58626502008-11-19 00:59:10 +00001189 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00001190 llvm::Value *src, llvm::Value *dest,
1191 bool threadlocal = false);
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00001192 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00001193 llvm::Value *src, llvm::Value *dest,
1194 llvm::Value *ivarOffset);
Fariborz Jahanian58626502008-11-19 00:59:10 +00001195 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
1196 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00001197 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
1198 llvm::Value *dest, llvm::Value *src,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001199 llvm::Value *size);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001200
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001201 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1202 QualType ObjectTy,
1203 llvm::Value *BaseValue,
1204 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001205 unsigned CVRQualifiers);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001206 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00001207 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001208 const ObjCIvarDecl *Ivar);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001209};
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001210
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001211class CGObjCNonFragileABIMac : public CGObjCCommonMac {
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001212private:
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001213 ObjCNonFragileABITypesHelper ObjCTypes;
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001214 llvm::GlobalVariable* ObjCEmptyCacheVar;
1215 llvm::GlobalVariable* ObjCEmptyVtableVar;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001216
Daniel Dunbar11394522009-04-18 08:51:00 +00001217 /// SuperClassReferences - uniqued super class references.
1218 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> SuperClassReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001219
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001220 /// MetaClassReferences - uniqued meta class references.
1221 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> MetaClassReferences;
Daniel Dunbare588b992009-03-01 04:46:24 +00001222
1223 /// EHTypeReferences - uniqued class ehtype references.
1224 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> EHTypeReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001225
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001226 /// NonLegacyDispatchMethods - List of methods for which we do *not* generate
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001227 /// legacy messaging dispatch.
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001228 llvm::DenseSet<Selector> NonLegacyDispatchMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001229
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00001230 /// DefinedMetaClasses - List of defined meta-classes.
1231 std::vector<llvm::GlobalValue*> DefinedMetaClasses;
1232
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001233 /// LegacyDispatchedSelector - Returns true if SEL is not in the list of
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001234 /// NonLegacyDispatchMethods; false otherwise.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001235 bool LegacyDispatchedSelector(Selector Sel);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001236
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001237 /// FinishNonFragileABIModule - Write out global data structures at the end of
1238 /// processing a translation unit.
1239 void FinishNonFragileABIModule();
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001240
Daniel Dunbar463b8762009-05-15 21:48:48 +00001241 /// AddModuleClassList - Add the given list of class pointers to the
1242 /// module with the provided symbol and section names.
1243 void AddModuleClassList(const std::vector<llvm::GlobalValue*> &Container,
1244 const char *SymbolName,
1245 const char *SectionName);
1246
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001247 llvm::GlobalVariable * BuildClassRoTInitializer(unsigned flags,
1248 unsigned InstanceStart,
1249 unsigned InstanceSize,
1250 const ObjCImplementationDecl *ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00001251 llvm::GlobalVariable * BuildClassMetaData(std::string &ClassName,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001252 llvm::Constant *IsAGV,
Fariborz Jahanian84394a52009-01-24 21:21:53 +00001253 llvm::Constant *SuperClassGV,
Fariborz Jahaniancf555162009-01-31 00:59:10 +00001254 llvm::Constant *ClassRoGV,
1255 bool HiddenVisibility);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001256
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001257 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001258
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00001259 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001260
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001261 /// EmitMethodList - Emit the method list for the given
1262 /// implementation. The return value has type MethodListnfABITy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001263 llvm::Constant *EmitMethodList(llvm::Twine Name,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001264 const char *Section,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00001265 const ConstantVector &Methods);
1266 /// EmitIvarList - Emit the ivar list for the given
1267 /// implementation. If ForClass is true the list of class ivars
1268 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1269 /// interface ivars will be emitted. The return value has type
1270 /// IvarListnfABIPtrTy.
1271 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001272
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001273 llvm::Constant *EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00001274 const ObjCIvarDecl *Ivar,
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00001275 unsigned long int offset);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001276
Fariborz Jahanianda320092009-01-29 19:24:30 +00001277 /// GetOrEmitProtocol - Get the protocol object for the given
1278 /// declaration, emitting it if necessary. The return value has type
1279 /// ProtocolPtrTy.
1280 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001281
Fariborz Jahanianda320092009-01-29 19:24:30 +00001282 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1283 /// object for the given declaration, emitting it if needed. These
1284 /// forward references will be filled in with empty bodies if no
1285 /// definition is seen. The return value has type ProtocolPtrTy.
1286 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001287
Fariborz Jahanianda320092009-01-29 19:24:30 +00001288 /// EmitProtocolList - Generate the list of referenced
1289 /// protocols. The return value has type ProtocolListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001290 llvm::Constant *EmitProtocolList(llvm::Twine Name,
Fariborz Jahanianda320092009-01-29 19:24:30 +00001291 ObjCProtocolDecl::protocol_iterator begin,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001292 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001293
Fariborz Jahanian46551122009-02-04 00:22:57 +00001294 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001295 ReturnValueSlot Return,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001296 QualType ResultType,
1297 Selector Sel,
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00001298 llvm::Value *Receiver,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001299 QualType Arg0Ty,
1300 bool IsSuper,
1301 const CallArgList &CallArgs);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00001302
1303 /// GetClassGlobal - Return the global variable for the Objective-C
1304 /// class of the given name.
Fariborz Jahanian0f902942009-04-14 18:41:56 +00001305 llvm::GlobalVariable *GetClassGlobal(const std::string &Name);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001306
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001307 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
Daniel Dunbar11394522009-04-18 08:51:00 +00001308 /// for the given class reference.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001309 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar11394522009-04-18 08:51:00 +00001310 const ObjCInterfaceDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001311
Daniel Dunbar11394522009-04-18 08:51:00 +00001312 /// EmitSuperClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
1313 /// for the given super class reference.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001314 llvm::Value *EmitSuperClassRef(CGBuilderTy &Builder,
1315 const ObjCInterfaceDecl *ID);
1316
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001317 /// EmitMetaClassRef - Return a Value * of the address of _class_t
1318 /// meta-data
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001319 llvm::Value *EmitMetaClassRef(CGBuilderTy &Builder,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001320 const ObjCInterfaceDecl *ID);
1321
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001322 /// ObjCIvarOffsetVariable - Returns the ivar offset variable for
1323 /// the given ivar.
1324 ///
Daniel Dunbar5e88bea2009-04-19 00:31:15 +00001325 llvm::GlobalVariable * ObjCIvarOffsetVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001326 const ObjCInterfaceDecl *ID,
1327 const ObjCIvarDecl *Ivar);
1328
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00001329 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1330 /// for the given selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001331 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel,
1332 bool lval=false);
Daniel Dunbare588b992009-03-01 04:46:24 +00001333
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001334 /// GetInterfaceEHType - Get the cached ehtype for the given Objective-C
Daniel Dunbare588b992009-03-01 04:46:24 +00001335 /// interface. The return value has type EHTypePtrTy.
John McCall5a180392010-07-24 00:37:23 +00001336 llvm::Constant *GetInterfaceEHType(const ObjCInterfaceDecl *ID,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001337 bool ForDefinition);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001338
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001339 const char *getMetaclassSymbolPrefix() const {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001340 return "OBJC_METACLASS_$_";
1341 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001342
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001343 const char *getClassSymbolPrefix() const {
1344 return "OBJC_CLASS_$_";
1345 }
1346
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00001347 void GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbarb02532a2009-04-19 23:41:48 +00001348 uint32_t &InstanceStart,
1349 uint32_t &InstanceSize);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001350
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001351 // Shamelessly stolen from Analysis/CFRefCount.cpp
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001352 Selector GetNullarySelector(const char* name) const {
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001353 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1354 return CGM.getContext().Selectors.getSelector(0, &II);
1355 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001356
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001357 Selector GetUnarySelector(const char* name) const {
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001358 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1359 return CGM.getContext().Selectors.getSelector(1, &II);
1360 }
Daniel Dunbarb02532a2009-04-19 23:41:48 +00001361
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001362 /// ImplementationIsNonLazy - Check whether the given category or
1363 /// class implementation is "non-lazy".
Fariborz Jahanianecfbdcb2009-05-21 01:03:45 +00001364 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const;
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001365
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001366public:
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001367 CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001368 // FIXME. All stubs for now!
1369 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001370
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001371 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001372 ReturnValueSlot Return,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001373 QualType ResultType,
1374 Selector Sel,
1375 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001376 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001377 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001378 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001379
1380 virtual CodeGen::RValue
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001381 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001382 ReturnValueSlot Return,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001383 QualType ResultType,
1384 Selector Sel,
1385 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001386 bool isCategoryImpl,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001387 llvm::Value *Receiver,
1388 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001389 const CallArgList &CallArgs,
1390 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001391
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001392 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001393 const ObjCInterfaceDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001394
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001395 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
1396 bool lvalue = false)
1397 { return EmitSelector(Builder, Sel, lvalue); }
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001398
1399 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1400 /// untyped one.
1401 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1402 const ObjCMethodDecl *Method)
1403 { return EmitSelector(Builder, Method->getSelector()); }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001404
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00001405 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001406
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001407 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001408 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00001409 const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001410
John McCall5a180392010-07-24 00:37:23 +00001411 virtual llvm::Constant *GetEHType(QualType T);
1412
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001413 virtual llvm::Constant *GetPropertyGetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001414 return ObjCTypes.getGetPropertyFn();
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001415 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001416 virtual llvm::Constant *GetPropertySetFunction() {
1417 return ObjCTypes.getSetPropertyFn();
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001418 }
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00001419
1420 virtual llvm::Constant *GetCopyStructFunction() {
1421 return ObjCTypes.getCopyStructFn();
1422 }
1423
Chris Lattner74391b42009-03-22 21:03:39 +00001424 virtual llvm::Constant *EnumerationMutationFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001425 return ObjCTypes.getEnumerationMutationFn();
Daniel Dunbar28ed0842009-02-16 18:48:45 +00001426 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001427
John McCallf1549f62010-07-06 01:34:17 +00001428 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1429 const ObjCAtTryStmt &S);
1430 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1431 const ObjCAtSynchronizedStmt &S);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001432 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Anders Carlssonf57c5b22009-02-16 22:59:18 +00001433 const ObjCAtThrowStmt &S);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001434 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001435 llvm::Value *AddrWeakObj);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001436 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001437 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001438 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00001439 llvm::Value *src, llvm::Value *dest,
1440 bool threadlocal = false);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001441 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00001442 llvm::Value *src, llvm::Value *dest,
1443 llvm::Value *ivarOffset);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001444 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001445 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00001446 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
1447 llvm::Value *dest, llvm::Value *src,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001448 llvm::Value *size);
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001449 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1450 QualType ObjectTy,
1451 llvm::Value *BaseValue,
1452 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001453 unsigned CVRQualifiers);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001454 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00001455 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001456 const ObjCIvarDecl *Ivar);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001457};
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001458
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001459} // end anonymous namespace
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001460
1461/* *** Helper Functions *** */
1462
1463/// getConstantGEP() - Help routine to construct simple GEPs.
Owen Andersona1cf15f2009-07-14 23:10:40 +00001464static llvm::Constant *getConstantGEP(llvm::LLVMContext &VMContext,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001465 llvm::Constant *C,
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001466 unsigned idx0,
1467 unsigned idx1) {
1468 llvm::Value *Idxs[] = {
Owen Anderson0032b272009-08-13 21:57:51 +00001469 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx0),
1470 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx1)
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001471 };
Owen Anderson3c4972d2009-07-29 18:54:39 +00001472 return llvm::ConstantExpr::getGetElementPtr(C, Idxs, 2);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001473}
1474
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001475/// hasObjCExceptionAttribute - Return true if this class or any super
1476/// class has the __objc_exception__ attribute.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001477static bool hasObjCExceptionAttribute(ASTContext &Context,
Douglas Gregor68584ed2009-06-18 16:11:24 +00001478 const ObjCInterfaceDecl *OID) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001479 if (OID->hasAttr<ObjCExceptionAttr>())
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001480 return true;
1481 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())
Douglas Gregor68584ed2009-06-18 16:11:24 +00001482 return hasObjCExceptionAttribute(Context, Super);
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001483 return false;
1484}
1485
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001486/* *** CGObjCMac Public Interface *** */
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001487
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001488CGObjCMac::CGObjCMac(CodeGen::CodeGenModule &cgm) : CGObjCCommonMac(cgm),
Mike Stump1eb44332009-09-09 15:08:12 +00001489 ObjCTypes(cgm) {
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001490 ObjCABI = 1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001491 EmitImageInfo();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001492}
1493
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +00001494/// GetClass - Return a reference to the class for the given interface
1495/// decl.
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001496llvm::Value *CGObjCMac::GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001497 const ObjCInterfaceDecl *ID) {
1498 return EmitClassRef(Builder, ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001499}
1500
1501/// GetSelector - Return the pointer to the unique'd string for this selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001502llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, Selector Sel,
1503 bool lval) {
1504 return EmitSelector(Builder, Sel, lval);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001505}
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001506llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, const ObjCMethodDecl
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001507 *Method) {
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001508 return EmitSelector(Builder, Method->getSelector());
1509}
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001510
John McCall5a180392010-07-24 00:37:23 +00001511llvm::Constant *CGObjCMac::GetEHType(QualType T) {
1512 llvm_unreachable("asking for catch type for ObjC type in fragile runtime");
1513 return 0;
1514}
1515
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001516/// Generate a constant CFString object.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001517/*
1518 struct __builtin_CFString {
1519 const int *isa; // point to __CFConstantStringClassReference
1520 int flags;
1521 const char *str;
1522 long length;
1523 };
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001524*/
1525
Fariborz Jahanian33e982b2010-04-22 20:26:39 +00001526/// or Generate a constant NSString object.
1527/*
1528 struct __builtin_NSString {
1529 const int *isa; // point to __NSConstantStringClassReference
1530 const char *str;
1531 unsigned int length;
1532 };
1533*/
1534
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001535llvm::Constant *CGObjCCommonMac::GenerateConstantString(
David Chisnall0d13f6f2010-01-23 02:40:42 +00001536 const StringLiteral *SL) {
Fariborz Jahanian33e982b2010-04-22 20:26:39 +00001537 return (CGM.getLangOptions().NoConstantCFStrings == 0 ?
1538 CGM.GetAddrOfConstantCFString(SL) :
1539 CGM.GetAddrOfConstantNSString(SL));
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001540}
1541
1542/// Generates a message send where the super is the receiver. This is
1543/// a message send to self with special delivery semantics indicating
1544/// which class's method should be called.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001545CodeGen::RValue
1546CGObjCMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001547 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001548 QualType ResultType,
1549 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001550 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001551 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001552 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001553 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001554 const CodeGen::CallArgList &CallArgs,
1555 const ObjCMethodDecl *Method) {
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001556 // Create and init a super structure; this is a (receiver, class)
1557 // pair we will pass to objc_msgSendSuper.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001558 llvm::Value *ObjCSuper =
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001559 CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001560 llvm::Value *ReceiverAsObject =
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001561 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001562 CGF.Builder.CreateStore(ReceiverAsObject,
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001563 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001564
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001565 // If this is a class message the metaclass is passed as the target.
1566 llvm::Value *Target;
1567 if (IsClassMessage) {
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001568 if (isCategoryImpl) {
1569 // Message sent to 'super' in a class method defined in a category
1570 // implementation requires an odd treatment.
1571 // If we are in a class method, we must retrieve the
1572 // _metaclass_ for the current class, pointed at by
1573 // the class's "isa" pointer. The following assumes that
1574 // isa" is the first ivar in a class (which it must be).
1575 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1576 Target = CGF.Builder.CreateStructGEP(Target, 0);
1577 Target = CGF.Builder.CreateLoad(Target);
Mike Stumpb3589f42009-07-30 22:28:39 +00001578 } else {
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001579 llvm::Value *MetaClassPtr = EmitMetaClassRef(Class);
1580 llvm::Value *SuperPtr = CGF.Builder.CreateStructGEP(MetaClassPtr, 1);
1581 llvm::Value *Super = CGF.Builder.CreateLoad(SuperPtr);
1582 Target = Super;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001583 }
Fariborz Jahanian182f2682009-11-14 02:18:31 +00001584 }
1585 else if (isCategoryImpl)
1586 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1587 else {
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00001588 llvm::Value *ClassPtr = EmitSuperClassRef(Class);
1589 ClassPtr = CGF.Builder.CreateStructGEP(ClassPtr, 1);
1590 Target = CGF.Builder.CreateLoad(ClassPtr);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001591 }
Mike Stumpf5408fe2009-05-16 07:57:57 +00001592 // FIXME: We shouldn't need to do this cast, rectify the ASTContext and
1593 // ObjCTypes types.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001594 const llvm::Type *ClassTy =
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001595 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001596 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001597 CGF.Builder.CreateStore(Target,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001598 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
John McCallef072fd2010-05-22 01:48:05 +00001599 return EmitLegacyMessageSend(CGF, Return, ResultType,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001600 EmitSelector(CGF.Builder, Sel),
1601 ObjCSuper, ObjCTypes.SuperPtrCTy,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001602 true, CallArgs, Method, ObjCTypes);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001603}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001604
1605/// Generate code for a message send expression.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001606CodeGen::RValue CGObjCMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001607 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001608 QualType ResultType,
1609 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001610 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001611 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001612 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001613 const ObjCMethodDecl *Method) {
John McCallef072fd2010-05-22 01:48:05 +00001614 return EmitLegacyMessageSend(CGF, Return, ResultType,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001615 EmitSelector(CGF.Builder, Sel),
1616 Receiver, CGF.getContext().getObjCIdType(),
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001617 false, CallArgs, Method, ObjCTypes);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001618}
1619
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001620CodeGen::RValue
1621CGObjCCommonMac::EmitLegacyMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001622 ReturnValueSlot Return,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001623 QualType ResultType,
1624 llvm::Value *Sel,
1625 llvm::Value *Arg0,
1626 QualType Arg0Ty,
1627 bool IsSuper,
1628 const CallArgList &CallArgs,
1629 const ObjCMethodDecl *Method,
1630 const ObjCCommonTypesHelper &ObjCTypes) {
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001631 CallArgList ActualArgs;
Fariborz Jahaniand019d962009-04-24 21:07:43 +00001632 if (!IsSuper)
1633 Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy, "tmp");
Daniel Dunbar46f45b92008-09-09 01:06:48 +00001634 ActualArgs.push_back(std::make_pair(RValue::get(Arg0), Arg0Ty));
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001635 ActualArgs.push_back(std::make_pair(RValue::get(Sel),
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001636 CGF.getContext().getObjCSelType()));
1637 ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001638
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001639 CodeGenTypes &Types = CGM.getTypes();
John McCall04a67a62010-02-05 21:31:56 +00001640 const CGFunctionInfo &FnInfo = Types.getFunctionInfo(ResultType, ActualArgs,
Rafael Espindola264ba482010-03-30 20:24:48 +00001641 FunctionType::ExtInfo());
Daniel Dunbar67939662009-09-17 04:01:40 +00001642 const llvm::FunctionType *FTy =
1643 Types.GetFunctionType(FnInfo, Method ? Method->isVariadic() : false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001644
Anders Carlsson7e70fb22010-06-21 20:59:55 +00001645 if (Method)
1646 assert(CGM.getContext().getCanonicalType(Method->getResultType()) ==
1647 CGM.getContext().getCanonicalType(ResultType) &&
1648 "Result type mismatch!");
1649
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001650 llvm::Constant *Fn = NULL;
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001651 if (CGM.ReturnTypeUsesSRet(FnInfo)) {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001652 Fn = (ObjCABI == 2) ? ObjCTypes.getSendStretFn2(IsSuper)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001653 : ObjCTypes.getSendStretFn(IsSuper);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001654 } else if (CGM.ReturnTypeUsesFPRet(ResultType)) {
1655 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFpretFn2(IsSuper)
1656 : ObjCTypes.getSendFpretFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001657 } else {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001658 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFn2(IsSuper)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001659 : ObjCTypes.getSendFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001660 }
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001661 Fn = llvm::ConstantExpr::getBitCast(Fn, llvm::PointerType::getUnqual(FTy));
John McCallef072fd2010-05-22 01:48:05 +00001662 return CGF.EmitCall(FnInfo, Fn, Return, ActualArgs);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001663}
1664
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001665static Qualifiers::GC GetGCAttrTypeForType(ASTContext &Ctx, QualType FQT) {
1666 if (FQT.isObjCGCStrong())
1667 return Qualifiers::Strong;
1668
1669 if (FQT.isObjCGCWeak())
1670 return Qualifiers::Weak;
1671
1672 if (FQT->isObjCObjectPointerType() || FQT->isBlockPointerType())
1673 return Qualifiers::Strong;
1674
1675 if (const PointerType *PT = FQT->getAs<PointerType>())
1676 return GetGCAttrTypeForType(Ctx, PT->getPointeeType());
1677
1678 return Qualifiers::GCNone;
1679}
1680
Fariborz Jahanian89ecd412010-08-04 16:57:49 +00001681llvm::Constant *CGObjCCommonMac::GCBlockLayout(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian44034db2010-08-04 18:44:59 +00001682 const llvm::SmallVectorImpl<const BlockDeclRefExpr *> &DeclRefs) {
1683 llvm::Constant *NullPtr =
1684 llvm::Constant::getNullValue(llvm::Type::getInt8PtrTy(VMContext));
Fariborz Jahanian5af12352010-08-05 15:52:12 +00001685 if ((CGM.getLangOptions().getGCMode() == LangOptions::NonGC) ||
1686 DeclRefs.empty())
Fariborz Jahanian44034db2010-08-04 18:44:59 +00001687 return NullPtr;
Fariborz Jahaniana1f024c2010-08-06 16:28:55 +00001688 bool hasUnion = false;
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001689 SkipIvars.clear();
1690 IvarsInfo.clear();
1691 unsigned WordSizeInBits = CGM.getContext().Target.getPointerWidth(0);
1692 unsigned ByteSizeInBits = CGM.getContext().Target.getCharWidth();
1693
1694 for (size_t i = 0; i < DeclRefs.size(); ++i) {
1695 const BlockDeclRefExpr *BDRE = DeclRefs[i];
1696 const ValueDecl *VD = BDRE->getDecl();
1697 CharUnits Offset = CGF.BlockDecls[VD];
1698 uint64_t FieldOffset = Offset.getQuantity();
1699 QualType Ty = VD->getType();
1700 assert(!Ty->isArrayType() &&
1701 "Array block variable should have been caught");
Fariborz Jahaniana1f024c2010-08-06 16:28:55 +00001702 if ((Ty->isRecordType() || Ty->isUnionType()) && !BDRE->isByRef()) {
Fariborz Jahaniane1a48982010-08-05 21:00:25 +00001703 BuildAggrIvarRecordLayout(Ty->getAs<RecordType>(),
1704 FieldOffset,
1705 true,
Fariborz Jahaniana1f024c2010-08-06 16:28:55 +00001706 hasUnion);
Fariborz Jahaniane1a48982010-08-05 21:00:25 +00001707 continue;
1708 }
Fariborz Jahaniana1f024c2010-08-06 16:28:55 +00001709
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001710 Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), Ty);
1711 unsigned FieldSize = CGM.getContext().getTypeSize(Ty);
1712 // __block variables are passed by their descriptior address. So, size
1713 // must reflect this.
1714 if (BDRE->isByRef())
1715 FieldSize = WordSizeInBits;
1716 if (GCAttr == Qualifiers::Strong || BDRE->isByRef())
1717 IvarsInfo.push_back(GC_IVAR(FieldOffset,
1718 FieldSize / WordSizeInBits));
1719 else if (GCAttr == Qualifiers::GCNone || GCAttr == Qualifiers::Weak)
1720 SkipIvars.push_back(GC_IVAR(FieldOffset,
1721 FieldSize / ByteSizeInBits));
1722 }
1723
1724 if (IvarsInfo.empty())
1725 return NullPtr;
Fariborz Jahaniana1f024c2010-08-06 16:28:55 +00001726 // Sort on byte position in case we encounterred a union nested in
1727 // block variable type's aggregate type.
1728 if (hasUnion && !IvarsInfo.empty())
1729 std::sort(IvarsInfo.begin(), IvarsInfo.end());
1730 if (hasUnion && !SkipIvars.empty())
1731 std::sort(SkipIvars.begin(), SkipIvars.end());
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001732
1733 std::string BitMap;
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00001734 llvm::Constant *C = BuildIvarLayoutBitmap(BitMap);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001735 if (CGM.getLangOptions().ObjCGCBitmapPrint) {
1736 printf("\n block variable layout for block: ");
1737 const unsigned char *s = (unsigned char*)BitMap.c_str();
1738 for (unsigned i = 0; i < BitMap.size(); i++)
1739 if (!(s[i] & 0xf0))
1740 printf("0x0%x%s", s[i], s[i] != 0 ? ", " : "");
1741 else
1742 printf("0x%x%s", s[i], s[i] != 0 ? ", " : "");
1743 printf("\n");
1744 }
1745
1746 return C;
Fariborz Jahanian89ecd412010-08-04 16:57:49 +00001747}
1748
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001749llvm::Value *CGObjCMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001750 const ObjCProtocolDecl *PD) {
Daniel Dunbarc67876d2008-09-04 04:33:15 +00001751 // FIXME: I don't understand why gcc generates this, or where it is
Mike Stumpf5408fe2009-05-16 07:57:57 +00001752 // resolved. Investigate. Its also wasteful to look this up over and over.
Daniel Dunbarc67876d2008-09-04 04:33:15 +00001753 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1754
Owen Anderson3c4972d2009-07-29 18:54:39 +00001755 return llvm::ConstantExpr::getBitCast(GetProtocolRef(PD),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001756 ObjCTypes.ExternalProtocolPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001757}
1758
Fariborz Jahanianda320092009-01-29 19:24:30 +00001759void CGObjCCommonMac::GenerateProtocol(const ObjCProtocolDecl *PD) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00001760 // FIXME: We shouldn't need this, the protocol decl should contain enough
1761 // information to tell us whether this was a declaration or a definition.
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001762 DefinedProtocols.insert(PD->getIdentifier());
1763
1764 // If we have generated a forward reference to this protocol, emit
1765 // it now. Otherwise do nothing, the protocol objects are lazily
1766 // emitted.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001767 if (Protocols.count(PD->getIdentifier()))
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001768 GetOrEmitProtocol(PD);
1769}
1770
Fariborz Jahanianda320092009-01-29 19:24:30 +00001771llvm::Constant *CGObjCCommonMac::GetProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001772 if (DefinedProtocols.count(PD->getIdentifier()))
1773 return GetOrEmitProtocol(PD);
1774 return GetOrEmitProtocolRef(PD);
1775}
1776
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001777/*
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001778// APPLE LOCAL radar 4585769 - Objective-C 1.0 extensions
1779struct _objc_protocol {
1780struct _objc_protocol_extension *isa;
1781char *protocol_name;
1782struct _objc_protocol_list *protocol_list;
1783struct _objc__method_prototype_list *instance_methods;
1784struct _objc__method_prototype_list *class_methods
1785};
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001786
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001787See EmitProtocolExtension().
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001788*/
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001789llvm::Constant *CGObjCMac::GetOrEmitProtocol(const ObjCProtocolDecl *PD) {
1790 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1791
1792 // Early exit if a defining object has already been generated.
1793 if (Entry && Entry->hasInitializer())
1794 return Entry;
1795
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001796 // FIXME: I don't understand why gcc generates this, or where it is
Mike Stumpf5408fe2009-05-16 07:57:57 +00001797 // resolved. Investigate. Its also wasteful to look this up over and over.
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001798 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1799
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001800 // Construct method lists.
1801 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
1802 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001803 for (ObjCProtocolDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001804 i = PD->instmeth_begin(), e = PD->instmeth_end(); i != e; ++i) {
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001805 ObjCMethodDecl *MD = *i;
1806 llvm::Constant *C = GetMethodDescriptionConstant(MD);
1807 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1808 OptInstanceMethods.push_back(C);
1809 } else {
1810 InstanceMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001811 }
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001812 }
1813
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001814 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001815 i = PD->classmeth_begin(), e = PD->classmeth_end(); i != e; ++i) {
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001816 ObjCMethodDecl *MD = *i;
1817 llvm::Constant *C = GetMethodDescriptionConstant(MD);
1818 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1819 OptClassMethods.push_back(C);
1820 } else {
1821 ClassMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001822 }
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001823 }
1824
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001825 std::vector<llvm::Constant*> Values(5);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001826 Values[0] = EmitProtocolExtension(PD, OptInstanceMethods, OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001827 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001828 Values[2] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001829 EmitProtocolList("\01L_OBJC_PROTOCOL_REFS_" + PD->getName(),
Daniel Dunbardbc93372008-08-21 21:57:41 +00001830 PD->protocol_begin(),
1831 PD->protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001832 Values[3] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001833 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001834 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
1835 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001836 Values[4] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001837 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001838 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
1839 ClassMethods);
Owen Anderson08e25242009-07-27 22:29:56 +00001840 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001841 Values);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001842
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001843 if (Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001844 // Already created, fix the linkage and update the initializer.
1845 Entry->setLinkage(llvm::GlobalValue::InternalLinkage);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001846 Entry->setInitializer(Init);
1847 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001848 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00001849 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001850 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001851 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001852 "\01L_OBJC_PROTOCOL_" + PD->getName());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001853 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001854 // FIXME: Is this necessary? Why only for protocol?
1855 Entry->setAlignment(4);
1856 }
Chris Lattnerad64e022009-07-17 23:57:13 +00001857 CGM.AddUsedGlobal(Entry);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001858
1859 return Entry;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001860}
1861
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001862llvm::Constant *CGObjCMac::GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001863 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1864
1865 if (!Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001866 // We use the initializer as a marker of whether this is a forward
1867 // reference or not. At module finalization we add the empty
1868 // contents for protocols which were referenced but never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001869 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00001870 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001871 llvm::GlobalValue::ExternalLinkage,
1872 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001873 "\01L_OBJC_PROTOCOL_" + PD->getName());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001874 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001875 // FIXME: Is this necessary? Why only for protocol?
1876 Entry->setAlignment(4);
1877 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001878
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001879 return Entry;
1880}
1881
1882/*
1883 struct _objc_protocol_extension {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001884 uint32_t size;
1885 struct objc_method_description_list *optional_instance_methods;
1886 struct objc_method_description_list *optional_class_methods;
1887 struct objc_property_list *instance_properties;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001888 };
1889*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001890llvm::Constant *
1891CGObjCMac::EmitProtocolExtension(const ObjCProtocolDecl *PD,
1892 const ConstantVector &OptInstanceMethods,
1893 const ConstantVector &OptClassMethods) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001894 uint64_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00001895 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolExtensionTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001896 std::vector<llvm::Constant*> Values(4);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001897 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001898 Values[1] =
1899 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001900 + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001901 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
1902 OptInstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001903 Values[2] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001904 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_OPT_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001905 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
1906 OptClassMethods);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001907 Values[3] = EmitPropertyList("\01L_OBJC_$_PROP_PROTO_LIST_" + PD->getName(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00001908 0, PD, ObjCTypes);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001909
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001910 // Return null if no extension bits are used.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001911 if (Values[1]->isNullValue() && Values[2]->isNullValue() &&
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001912 Values[3]->isNullValue())
Owen Andersonc9c88b42009-07-31 20:28:54 +00001913 return llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001914
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001915 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00001916 llvm::ConstantStruct::get(ObjCTypes.ProtocolExtensionTy, Values);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001917
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001918 // No special section, but goes in llvm.used
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001919 return CreateMetadataVar("\01L_OBJC_PROTOCOLEXT_" + PD->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001920 Init,
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001921 0, 0, true);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001922}
1923
1924/*
1925 struct objc_protocol_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001926 struct objc_protocol_list *next;
1927 long count;
1928 Protocol *list[];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001929 };
1930*/
Daniel Dunbardbc93372008-08-21 21:57:41 +00001931llvm::Constant *
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001932CGObjCMac::EmitProtocolList(llvm::Twine Name,
Daniel Dunbardbc93372008-08-21 21:57:41 +00001933 ObjCProtocolDecl::protocol_iterator begin,
1934 ObjCProtocolDecl::protocol_iterator end) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001935 std::vector<llvm::Constant*> ProtocolRefs;
1936
Daniel Dunbardbc93372008-08-21 21:57:41 +00001937 for (; begin != end; ++begin)
1938 ProtocolRefs.push_back(GetProtocolRef(*begin));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001939
1940 // Just return null for empty protocol lists
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001941 if (ProtocolRefs.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00001942 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001943
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001944 // This list is null terminated.
Owen Andersonc9c88b42009-07-31 20:28:54 +00001945 ProtocolRefs.push_back(llvm::Constant::getNullValue(ObjCTypes.ProtocolPtrTy));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001946
1947 std::vector<llvm::Constant*> Values(3);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001948 // This field is only used by the runtime.
Owen Andersonc9c88b42009-07-31 20:28:54 +00001949 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001950 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001951 ProtocolRefs.size() - 1);
1952 Values[2] =
1953 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.ProtocolPtrTy,
1954 ProtocolRefs.size()),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001955 ProtocolRefs);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001956
Nick Lewycky0d36dd22009-09-19 20:00:52 +00001957 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001958 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001959 CreateMetadataVar(Name, Init, "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00001960 4, false);
Owen Anderson3c4972d2009-07-29 18:54:39 +00001961 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001962}
1963
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00001964void CGObjCCommonMac::PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*, 16> &PropertySet,
1965 std::vector<llvm::Constant*> &Properties,
1966 const Decl *Container,
1967 const ObjCProtocolDecl *PROTO,
1968 const ObjCCommonTypesHelper &ObjCTypes) {
1969 std::vector<llvm::Constant*> Prop(2);
1970 for (ObjCProtocolDecl::protocol_iterator P = PROTO->protocol_begin(),
1971 E = PROTO->protocol_end(); P != E; ++P)
1972 PushProtocolProperties(PropertySet, Properties, Container, (*P), ObjCTypes);
1973 for (ObjCContainerDecl::prop_iterator I = PROTO->prop_begin(),
1974 E = PROTO->prop_end(); I != E; ++I) {
1975 const ObjCPropertyDecl *PD = *I;
1976 if (!PropertySet.insert(PD->getIdentifier()))
1977 continue;
1978 Prop[0] = GetPropertyName(PD->getIdentifier());
1979 Prop[1] = GetPropertyTypeString(PD, Container);
1980 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy, Prop));
1981 }
1982}
1983
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001984/*
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001985 struct _objc_property {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001986 const char * const name;
1987 const char * const attributes;
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001988 };
1989
1990 struct _objc_property_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001991 uint32_t entsize; // sizeof (struct _objc_property)
1992 uint32_t prop_count;
1993 struct _objc_property[prop_count];
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001994 };
1995*/
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001996llvm::Constant *CGObjCCommonMac::EmitPropertyList(llvm::Twine Name,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001997 const Decl *Container,
1998 const ObjCContainerDecl *OCD,
1999 const ObjCCommonTypesHelper &ObjCTypes) {
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002000 std::vector<llvm::Constant*> Properties, Prop(2);
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002001 llvm::SmallPtrSet<const IdentifierInfo*, 16> PropertySet;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002002 for (ObjCContainerDecl::prop_iterator I = OCD->prop_begin(),
2003 E = OCD->prop_end(); I != E; ++I) {
Steve Naroff93983f82009-01-11 12:47:58 +00002004 const ObjCPropertyDecl *PD = *I;
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002005 PropertySet.insert(PD->getIdentifier());
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002006 Prop[0] = GetPropertyName(PD->getIdentifier());
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002007 Prop[1] = GetPropertyTypeString(PD, Container);
Owen Anderson08e25242009-07-27 22:29:56 +00002008 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002009 Prop));
2010 }
Fariborz Jahanian6afbdf52010-06-22 16:33:55 +00002011 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) {
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002012 for (ObjCInterfaceDecl::protocol_iterator P = OID->protocol_begin(),
2013 E = OID->protocol_end(); P != E; ++P)
Fariborz Jahanian6afbdf52010-06-22 16:33:55 +00002014 PushProtocolProperties(PropertySet, Properties, Container, (*P),
2015 ObjCTypes);
2016 }
2017 else if (const ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(OCD)) {
2018 for (ObjCCategoryDecl::protocol_iterator P = CD->protocol_begin(),
2019 E = CD->protocol_end(); P != E; ++P)
2020 PushProtocolProperties(PropertySet, Properties, Container, (*P),
2021 ObjCTypes);
2022 }
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002023
2024 // Return null for empty list.
2025 if (Properties.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002026 return llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002027
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002028 unsigned PropertySize =
Duncan Sands9408c452009-05-09 07:08:47 +00002029 CGM.getTargetData().getTypeAllocSize(ObjCTypes.PropertyTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002030 std::vector<llvm::Constant*> Values(3);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002031 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, PropertySize);
2032 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Properties.size());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002033 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.PropertyTy,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002034 Properties.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002035 Values[2] = llvm::ConstantArray::get(AT, Properties);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002036 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002037
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002038 llvm::GlobalVariable *GV =
2039 CreateMetadataVar(Name, Init,
2040 (ObjCABI == 2) ? "__DATA, __objc_const" :
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002041 "__OBJC,__property,regular,no_dead_strip",
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002042 (ObjCABI == 2) ? 8 : 4,
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002043 true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002044 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.PropertyListPtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002045}
2046
2047/*
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002048 struct objc_method_description_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002049 int count;
2050 struct objc_method_description list[];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002051 };
2052*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002053llvm::Constant *
2054CGObjCMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
2055 std::vector<llvm::Constant*> Desc(2);
Owen Andersona1cf15f2009-07-14 23:10:40 +00002056 Desc[0] =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002057 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
2058 ObjCTypes.SelectorPtrTy);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002059 Desc[1] = GetMethodVarType(MD);
Owen Anderson08e25242009-07-27 22:29:56 +00002060 return llvm::ConstantStruct::get(ObjCTypes.MethodDescriptionTy,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002061 Desc);
2062}
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002063
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002064llvm::Constant *CGObjCMac::EmitMethodDescList(llvm::Twine Name,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002065 const char *Section,
2066 const ConstantVector &Methods) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002067 // Return null for empty list.
2068 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002069 return llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002070
2071 std::vector<llvm::Constant*> Values(2);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002072 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002073 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodDescriptionTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002074 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002075 Values[1] = llvm::ConstantArray::get(AT, Methods);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002076 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002077
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002078 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002079 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002080 ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002081}
2082
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002083/*
2084 struct _objc_category {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002085 char *category_name;
2086 char *class_name;
2087 struct _objc_method_list *instance_methods;
2088 struct _objc_method_list *class_methods;
2089 struct _objc_protocol_list *protocols;
2090 uint32_t size; // <rdar://4585769>
2091 struct _objc_property_list *instance_properties;
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002092 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002093*/
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002094void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Duncan Sands9408c452009-05-09 07:08:47 +00002095 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.CategoryTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002096
Mike Stumpf5408fe2009-05-16 07:57:57 +00002097 // FIXME: This is poor design, the OCD should have a pointer to the category
2098 // decl. Additionally, note that Category can be null for the @implementation
2099 // w/o an @interface case. Sema should just create one for us as it does for
2100 // @implementation so everyone else can live life under a clear blue sky.
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002101 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002102 const ObjCCategoryDecl *Category =
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002103 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002104
2105 llvm::SmallString<256> ExtName;
2106 llvm::raw_svector_ostream(ExtName) << Interface->getName() << '_'
2107 << OCD->getName();
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002108
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002109 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002110 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002111 i = OCD->instmeth_begin(), e = OCD->instmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002112 // Instance methods should always be defined.
2113 InstanceMethods.push_back(GetMethodConstant(*i));
2114 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002115 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002116 i = OCD->classmeth_begin(), e = OCD->classmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002117 // Class methods should always be defined.
2118 ClassMethods.push_back(GetMethodConstant(*i));
2119 }
2120
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002121 std::vector<llvm::Constant*> Values(7);
2122 Values[0] = GetClassName(OCD->getIdentifier());
2123 Values[1] = GetClassName(Interface->getIdentifier());
Fariborz Jahanian679cd7f2009-04-29 20:40:05 +00002124 LazySymbols.insert(Interface->getIdentifier());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002125 Values[2] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002126 EmitMethodList("\01L_OBJC_CATEGORY_INSTANCE_METHODS_" + ExtName.str(),
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002127 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002128 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002129 Values[3] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002130 EmitMethodList("\01L_OBJC_CATEGORY_CLASS_METHODS_" + ExtName.str(),
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002131 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002132 ClassMethods);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002133 if (Category) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002134 Values[4] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002135 EmitProtocolList("\01L_OBJC_CATEGORY_PROTOCOLS_" + ExtName.str(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002136 Category->protocol_begin(),
2137 Category->protocol_end());
2138 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002139 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002140 }
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002141 Values[5] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002142
2143 // If there is no category @interface then there can be no properties.
2144 if (Category) {
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002145 Values[6] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00002146 OCD, Category, ObjCTypes);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002147 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002148 Values[6] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002149 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002150
Owen Anderson08e25242009-07-27 22:29:56 +00002151 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.CategoryTy,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002152 Values);
2153
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002154 llvm::GlobalVariable *GV =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002155 CreateMetadataVar("\01L_OBJC_CATEGORY_" + ExtName.str(), Init,
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002156 "__OBJC,__category,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002157 4, true);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002158 DefinedCategories.push_back(GV);
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00002159 DefinedCategoryNames.insert(ExtName.str());
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002160}
2161
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002162// FIXME: Get from somewhere?
2163enum ClassFlags {
2164 eClassFlags_Factory = 0x00001,
2165 eClassFlags_Meta = 0x00002,
2166 // <rdr://5142207>
2167 eClassFlags_HasCXXStructors = 0x02000,
2168 eClassFlags_Hidden = 0x20000,
2169 eClassFlags_ABI2_Hidden = 0x00010,
2170 eClassFlags_ABI2_HasCXXStructors = 0x00004 // <rdr://4923634>
2171};
2172
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002173/*
2174 struct _objc_class {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002175 Class isa;
2176 Class super_class;
2177 const char *name;
2178 long version;
2179 long info;
2180 long instance_size;
2181 struct _objc_ivar_list *ivars;
2182 struct _objc_method_list *methods;
2183 struct _objc_cache *cache;
2184 struct _objc_protocol_list *protocols;
2185 // Objective-C 1.0 extensions (<rdr://4585769>)
2186 const char *ivar_layout;
2187 struct _objc_class_ext *ext;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002188 };
2189
2190 See EmitClassExtension();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002191*/
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002192void CGObjCMac::GenerateClass(const ObjCImplementationDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002193 DefinedSymbols.insert(ID->getIdentifier());
2194
Chris Lattner8ec03f52008-11-24 03:54:41 +00002195 std::string ClassName = ID->getNameAsString();
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002196 // FIXME: Gross
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002197 ObjCInterfaceDecl *Interface =
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002198 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002199 llvm::Constant *Protocols =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002200 EmitProtocolList("\01L_OBJC_CLASS_PROTOCOLS_" + ID->getName(),
Daniel Dunbardbc93372008-08-21 21:57:41 +00002201 Interface->protocol_begin(),
2202 Interface->protocol_end());
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002203 unsigned Flags = eClassFlags_Factory;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00002204 if (ID->getNumIvarInitializers())
2205 Flags |= eClassFlags_HasCXXStructors;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002206 unsigned Size =
Daniel Dunbar2bebbf02009-05-03 10:46:44 +00002207 CGM.getContext().getASTObjCImplementationLayout(ID).getSize() / 8;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002208
2209 // FIXME: Set CXX-structors flag.
Daniel Dunbar04d40782009-04-14 06:00:08 +00002210 if (CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden)
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002211 Flags |= eClassFlags_Hidden;
2212
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002213 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002214 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002215 i = ID->instmeth_begin(), e = ID->instmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002216 // Instance methods should always be defined.
2217 InstanceMethods.push_back(GetMethodConstant(*i));
2218 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002219 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002220 i = ID->classmeth_begin(), e = ID->classmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002221 // Class methods should always be defined.
2222 ClassMethods.push_back(GetMethodConstant(*i));
2223 }
2224
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002225 for (ObjCImplementationDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002226 i = ID->propimpl_begin(), e = ID->propimpl_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002227 ObjCPropertyImplDecl *PID = *i;
2228
2229 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
2230 ObjCPropertyDecl *PD = PID->getPropertyDecl();
2231
2232 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
2233 if (llvm::Constant *C = GetMethodConstant(MD))
2234 InstanceMethods.push_back(C);
2235 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
2236 if (llvm::Constant *C = GetMethodConstant(MD))
2237 InstanceMethods.push_back(C);
2238 }
2239 }
2240
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002241 std::vector<llvm::Constant*> Values(12);
Daniel Dunbar5384b092009-05-03 08:56:52 +00002242 Values[ 0] = EmitMetaClass(ID, Protocols, ClassMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002243 if (ObjCInterfaceDecl *Super = Interface->getSuperClass()) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002244 // Record a reference to the super class.
2245 LazySymbols.insert(Super->getIdentifier());
2246
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002247 Values[ 1] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002248 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002249 ObjCTypes.ClassPtrTy);
2250 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002251 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002252 }
2253 Values[ 2] = GetClassName(ID->getIdentifier());
2254 // Version is always 0.
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002255 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2256 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2257 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002258 Values[ 6] = EmitIvarList(ID, false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002259 Values[ 7] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002260 EmitMethodList("\01L_OBJC_INSTANCE_METHODS_" + ID->getName(),
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002261 "__OBJC,__inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002262 InstanceMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002263 // cache is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002264 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002265 Values[ 9] = Protocols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002266 Values[10] = BuildIvarLayout(ID, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002267 Values[11] = EmitClassExtension(ID);
Owen Anderson08e25242009-07-27 22:29:56 +00002268 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002269 Values);
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00002270 std::string Name("\01L_OBJC_CLASS_");
2271 Name += ClassName;
2272 const char *Section = "__OBJC,__class,regular,no_dead_strip";
2273 // Check for a forward reference.
2274 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2275 if (GV) {
2276 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2277 "Forward metaclass reference has incorrect type.");
2278 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2279 GV->setInitializer(Init);
2280 GV->setSection(Section);
2281 GV->setAlignment(4);
2282 CGM.AddUsedGlobal(GV);
2283 }
2284 else
2285 GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002286 DefinedClasses.push_back(GV);
2287}
2288
2289llvm::Constant *CGObjCMac::EmitMetaClass(const ObjCImplementationDecl *ID,
2290 llvm::Constant *Protocols,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002291 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002292 unsigned Flags = eClassFlags_Meta;
Duncan Sands9408c452009-05-09 07:08:47 +00002293 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002294
Daniel Dunbar04d40782009-04-14 06:00:08 +00002295 if (CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden)
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002296 Flags |= eClassFlags_Hidden;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002297
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002298 std::vector<llvm::Constant*> Values(12);
2299 // The isa for the metaclass is the root of the hierarchy.
2300 const ObjCInterfaceDecl *Root = ID->getClassInterface();
2301 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
2302 Root = Super;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002303 Values[ 0] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002304 llvm::ConstantExpr::getBitCast(GetClassName(Root->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002305 ObjCTypes.ClassPtrTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002306 // The super class for the metaclass is emitted as the name of the
2307 // super class. The runtime fixes this up to point to the
2308 // *metaclass* for the super class.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002309 if (ObjCInterfaceDecl *Super = ID->getClassInterface()->getSuperClass()) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002310 Values[ 1] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002311 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002312 ObjCTypes.ClassPtrTy);
2313 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002314 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002315 }
2316 Values[ 2] = GetClassName(ID->getIdentifier());
2317 // Version is always 0.
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002318 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2319 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2320 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002321 Values[ 6] = EmitIvarList(ID, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002322 Values[ 7] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002323 EmitMethodList("\01L_OBJC_CLASS_METHODS_" + ID->getNameAsString(),
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002324 "__OBJC,__cls_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002325 Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002326 // cache is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002327 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002328 Values[ 9] = Protocols;
2329 // ivar_layout for metaclass is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002330 Values[10] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002331 // The class extension is always unused for metaclasses.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002332 Values[11] = llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00002333 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002334 Values);
2335
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002336 std::string Name("\01L_OBJC_METACLASS_");
Chris Lattner8ec03f52008-11-24 03:54:41 +00002337 Name += ID->getNameAsCString();
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002338
2339 // Check for a forward reference.
2340 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2341 if (GV) {
2342 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2343 "Forward metaclass reference has incorrect type.");
2344 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2345 GV->setInitializer(Init);
2346 } else {
Owen Anderson1c431b32009-07-08 19:05:04 +00002347 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002348 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +00002349 Init, Name);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002350 }
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002351 GV->setSection("__OBJC,__meta_class,regular,no_dead_strip");
Daniel Dunbar58a29122009-03-09 22:18:41 +00002352 GV->setAlignment(4);
Chris Lattnerad64e022009-07-17 23:57:13 +00002353 CGM.AddUsedGlobal(GV);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002354
2355 return GV;
2356}
2357
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002358llvm::Constant *CGObjCMac::EmitMetaClassRef(const ObjCInterfaceDecl *ID) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002359 std::string Name = "\01L_OBJC_METACLASS_" + ID->getNameAsString();
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002360
Mike Stumpf5408fe2009-05-16 07:57:57 +00002361 // FIXME: Should we look these up somewhere other than the module. Its a bit
2362 // silly since we only generate these while processing an implementation, so
2363 // exactly one pointer would work if know when we entered/exitted an
2364 // implementation block.
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002365
2366 // Check for an existing forward reference.
Fariborz Jahanianb0d27942009-01-07 20:11:22 +00002367 // Previously, metaclass with internal linkage may have been defined.
2368 // pass 'true' as 2nd argument so it is returned.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002369 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
2370 true)) {
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002371 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2372 "Forward metaclass reference has incorrect type.");
2373 return GV;
2374 } else {
2375 // Generate as an external reference to keep a consistent
2376 // module. This will be patched up when we emit the metaclass.
Owen Anderson1c431b32009-07-08 19:05:04 +00002377 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002378 llvm::GlobalValue::ExternalLinkage,
2379 0,
Owen Anderson1c431b32009-07-08 19:05:04 +00002380 Name);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002381 }
2382}
2383
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00002384llvm::Value *CGObjCMac::EmitSuperClassRef(const ObjCInterfaceDecl *ID) {
2385 std::string Name = "\01L_OBJC_CLASS_" + ID->getNameAsString();
2386
2387 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
2388 true)) {
2389 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2390 "Forward class metadata reference has incorrect type.");
2391 return GV;
2392 } else {
2393 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
2394 llvm::GlobalValue::ExternalLinkage,
2395 0,
2396 Name);
2397 }
2398}
2399
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002400/*
2401 struct objc_class_ext {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002402 uint32_t size;
2403 const char *weak_ivar_layout;
2404 struct _objc_property_list *properties;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002405 };
2406*/
2407llvm::Constant *
2408CGObjCMac::EmitClassExtension(const ObjCImplementationDecl *ID) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002409 uint64_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00002410 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassExtensionTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002411
2412 std::vector<llvm::Constant*> Values(3);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002413 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanianc71303d2009-04-22 23:00:43 +00002414 Values[1] = BuildIvarLayout(ID, false);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002415 Values[2] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getName(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00002416 ID, ID->getClassInterface(), ObjCTypes);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002417
2418 // Return null if no extension bits are used.
2419 if (Values[1]->isNullValue() && Values[2]->isNullValue())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002420 return llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002421
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002422 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00002423 llvm::ConstantStruct::get(ObjCTypes.ClassExtensionTy, Values);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002424 return CreateMetadataVar("\01L_OBJC_CLASSEXT_" + ID->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002425 Init, "__OBJC,__class_ext,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002426 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002427}
2428
2429/*
2430 struct objc_ivar {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002431 char *ivar_name;
2432 char *ivar_type;
2433 int ivar_offset;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002434 };
2435
2436 struct objc_ivar_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002437 int ivar_count;
2438 struct objc_ivar list[count];
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002439 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002440*/
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002441llvm::Constant *CGObjCMac::EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002442 bool ForClass) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002443 std::vector<llvm::Constant*> Ivars, Ivar(3);
2444
2445 // When emitting the root class GCC emits ivar entries for the
2446 // actual class structure. It is not clear if we need to follow this
2447 // behavior; for now lets try and get away with not doing it. If so,
2448 // the cleanest solution would be to make up an ObjCInterfaceDecl
2449 // for the class.
2450 if (ForClass)
Owen Andersonc9c88b42009-07-31 20:28:54 +00002451 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002452
2453 ObjCInterfaceDecl *OID =
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002454 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002455
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00002456 llvm::SmallVector<ObjCIvarDecl*, 16> OIvars;
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00002457 CGM.getContext().ShallowCollectObjCIvars(OID, OIvars);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002458
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00002459 for (unsigned i = 0, e = OIvars.size(); i != e; ++i) {
2460 ObjCIvarDecl *IVD = OIvars[i];
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00002461 // Ignore unnamed bit-fields.
2462 if (!IVD->getDeclName())
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002463 continue;
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00002464 Ivar[0] = GetMethodVarName(IVD->getIdentifier());
2465 Ivar[1] = GetMethodVarType(IVD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002466 Ivar[2] = llvm::ConstantInt::get(ObjCTypes.IntTy,
Daniel Dunbar97776872009-04-22 07:32:20 +00002467 ComputeIvarBaseOffset(CGM, OID, IVD));
Owen Anderson08e25242009-07-27 22:29:56 +00002468 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarTy, Ivar));
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002469 }
2470
2471 // Return null for empty list.
2472 if (Ivars.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002473 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002474
2475 std::vector<llvm::Constant*> Values(2);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002476 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00002477 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002478 Ivars.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002479 Values[1] = llvm::ConstantArray::get(AT, Ivars);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002480 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002481
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002482 llvm::GlobalVariable *GV;
2483 if (ForClass)
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002484 GV = CreateMetadataVar("\01L_OBJC_CLASS_VARIABLES_" + ID->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002485 Init, "__OBJC,__class_vars,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002486 4, true);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002487 else
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002488 GV = CreateMetadataVar("\01L_OBJC_INSTANCE_VARIABLES_" + ID->getName(),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002489 Init, "__OBJC,__instance_vars,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002490 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002491 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002492}
2493
2494/*
2495 struct objc_method {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002496 SEL method_name;
2497 char *method_types;
2498 void *method;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002499 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002500
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002501 struct objc_method_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002502 struct objc_method_list *obsolete;
2503 int count;
2504 struct objc_method methods_list[count];
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002505 };
2506*/
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002507
2508/// GetMethodConstant - Return a struct objc_method constant for the
2509/// given method if it has been defined. The result is null if the
2510/// method has not been defined. The return value has type MethodPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002511llvm::Constant *CGObjCMac::GetMethodConstant(const ObjCMethodDecl *MD) {
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +00002512 llvm::Function *Fn = GetMethodDefinition(MD);
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002513 if (!Fn)
2514 return 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002515
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002516 std::vector<llvm::Constant*> Method(3);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002517 Method[0] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002518 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002519 ObjCTypes.SelectorPtrTy);
2520 Method[1] = GetMethodVarType(MD);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002521 Method[2] = llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00002522 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002523}
2524
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002525llvm::Constant *CGObjCMac::EmitMethodList(llvm::Twine Name,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002526 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002527 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002528 // Return null for empty list.
2529 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002530 return llvm::Constant::getNullValue(ObjCTypes.MethodListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002531
2532 std::vector<llvm::Constant*> Values(3);
Owen Andersonc9c88b42009-07-31 20:28:54 +00002533 Values[0] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002534 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00002535 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002536 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002537 Values[2] = llvm::ConstantArray::get(AT, Methods);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002538 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002539
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002540 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002541 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002542 ObjCTypes.MethodListPtrTy);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002543}
2544
Fariborz Jahanian493dab72009-01-26 21:38:32 +00002545llvm::Function *CGObjCCommonMac::GenerateMethod(const ObjCMethodDecl *OMD,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002546 const ObjCContainerDecl *CD) {
Daniel Dunbarc575ce72009-10-19 01:21:19 +00002547 llvm::SmallString<256> Name;
Fariborz Jahanian679a5022009-01-10 21:06:09 +00002548 GetNameForMethod(OMD, CD, Name);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002549
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002550 CodeGenTypes &Types = CGM.getTypes();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00002551 const llvm::FunctionType *MethodTy =
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002552 Types.GetFunctionType(Types.getFunctionInfo(OMD), OMD->isVariadic());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002553 llvm::Function *Method =
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00002554 llvm::Function::Create(MethodTy,
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002555 llvm::GlobalValue::InternalLinkage,
Daniel Dunbarc575ce72009-10-19 01:21:19 +00002556 Name.str(),
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002557 &CGM.getModule());
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002558 MethodDefinitions.insert(std::make_pair(OMD, Method));
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002559
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002560 return Method;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002561}
2562
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002563llvm::GlobalVariable *
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002564CGObjCCommonMac::CreateMetadataVar(llvm::Twine Name,
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002565 llvm::Constant *Init,
2566 const char *Section,
Daniel Dunbar35bd7632009-03-09 20:50:13 +00002567 unsigned Align,
2568 bool AddToUsed) {
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002569 const llvm::Type *Ty = Init->getType();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002570 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00002571 new llvm::GlobalVariable(CGM.getModule(), Ty, false,
Chris Lattnerad64e022009-07-17 23:57:13 +00002572 llvm::GlobalValue::InternalLinkage, Init, Name);
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002573 if (Section)
2574 GV->setSection(Section);
Daniel Dunbar35bd7632009-03-09 20:50:13 +00002575 if (Align)
2576 GV->setAlignment(Align);
2577 if (AddToUsed)
Chris Lattnerad64e022009-07-17 23:57:13 +00002578 CGM.AddUsedGlobal(GV);
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002579 return GV;
2580}
2581
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002582llvm::Function *CGObjCMac::ModuleInitFunction() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002583 // Abuse this interface function as a place to finalize.
2584 FinishModule();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002585 return NULL;
2586}
2587
Chris Lattner74391b42009-03-22 21:03:39 +00002588llvm::Constant *CGObjCMac::GetPropertyGetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002589 return ObjCTypes.getGetPropertyFn();
Daniel Dunbar49f66022008-09-24 03:38:44 +00002590}
2591
Chris Lattner74391b42009-03-22 21:03:39 +00002592llvm::Constant *CGObjCMac::GetPropertySetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002593 return ObjCTypes.getSetPropertyFn();
Daniel Dunbar49f66022008-09-24 03:38:44 +00002594}
2595
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00002596llvm::Constant *CGObjCMac::GetCopyStructFunction() {
2597 return ObjCTypes.getCopyStructFn();
2598}
2599
Chris Lattner74391b42009-03-22 21:03:39 +00002600llvm::Constant *CGObjCMac::EnumerationMutationFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002601 return ObjCTypes.getEnumerationMutationFn();
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002602}
2603
John McCallf1549f62010-07-06 01:34:17 +00002604void CGObjCMac::EmitTryStmt(CodeGenFunction &CGF, const ObjCAtTryStmt &S) {
2605 return EmitTryOrSynchronizedStmt(CGF, S);
2606}
2607
2608void CGObjCMac::EmitSynchronizedStmt(CodeGenFunction &CGF,
2609 const ObjCAtSynchronizedStmt &S) {
2610 return EmitTryOrSynchronizedStmt(CGF, S);
2611}
2612
John McCallcc505292010-07-21 06:59:36 +00002613namespace {
John McCall1f0fca52010-07-21 07:22:38 +00002614 struct PerformFragileFinally : EHScopeStack::Cleanup {
John McCallcc505292010-07-21 06:59:36 +00002615 const Stmt &S;
John McCall0b251722010-08-04 05:59:32 +00002616 llvm::Value *SyncArgSlot;
John McCallcc505292010-07-21 06:59:36 +00002617 llvm::Value *CallTryExitVar;
2618 llvm::Value *ExceptionData;
2619 ObjCTypesHelper &ObjCTypes;
2620 PerformFragileFinally(const Stmt *S,
John McCall0b251722010-08-04 05:59:32 +00002621 llvm::Value *SyncArgSlot,
John McCallcc505292010-07-21 06:59:36 +00002622 llvm::Value *CallTryExitVar,
2623 llvm::Value *ExceptionData,
2624 ObjCTypesHelper *ObjCTypes)
John McCall0b251722010-08-04 05:59:32 +00002625 : S(*S), SyncArgSlot(SyncArgSlot), CallTryExitVar(CallTryExitVar),
John McCallcc505292010-07-21 06:59:36 +00002626 ExceptionData(ExceptionData), ObjCTypes(*ObjCTypes) {}
2627
2628 void Emit(CodeGenFunction &CGF, bool IsForEH) {
2629 // Check whether we need to call objc_exception_try_exit.
2630 // In optimized code, this branch will always be folded.
2631 llvm::BasicBlock *FinallyCallExit =
2632 CGF.createBasicBlock("finally.call_exit");
2633 llvm::BasicBlock *FinallyNoCallExit =
2634 CGF.createBasicBlock("finally.no_call_exit");
2635 CGF.Builder.CreateCondBr(CGF.Builder.CreateLoad(CallTryExitVar),
2636 FinallyCallExit, FinallyNoCallExit);
2637
2638 CGF.EmitBlock(FinallyCallExit);
2639 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryExitFn(), ExceptionData)
2640 ->setDoesNotThrow();
2641
2642 CGF.EmitBlock(FinallyNoCallExit);
2643
2644 if (isa<ObjCAtTryStmt>(S)) {
2645 if (const ObjCAtFinallyStmt* FinallyStmt =
John McCalld96a8e72010-08-11 00:16:14 +00002646 cast<ObjCAtTryStmt>(S).getFinallyStmt()) {
2647 // Save the current cleanup destination in case there's
2648 // control flow inside the finally statement.
2649 llvm::Value *CurCleanupDest =
2650 CGF.Builder.CreateLoad(CGF.getNormalCleanupDestSlot());
2651
John McCallcc505292010-07-21 06:59:36 +00002652 CGF.EmitStmt(FinallyStmt->getFinallyBody());
2653
John McCalld96a8e72010-08-11 00:16:14 +00002654 if (CGF.HaveInsertPoint()) {
2655 CGF.Builder.CreateStore(CurCleanupDest,
2656 CGF.getNormalCleanupDestSlot());
2657 } else {
2658 // Currently, the end of the cleanup must always exist.
2659 CGF.EnsureInsertPoint();
2660 }
2661 }
John McCallcc505292010-07-21 06:59:36 +00002662 } else {
2663 // Emit objc_sync_exit(expr); as finally's sole statement for
2664 // @synchronized.
John McCall0b251722010-08-04 05:59:32 +00002665 llvm::Value *SyncArg = CGF.Builder.CreateLoad(SyncArgSlot);
John McCallcc505292010-07-21 06:59:36 +00002666 CGF.Builder.CreateCall(ObjCTypes.getSyncExitFn(), SyncArg)
2667 ->setDoesNotThrow();
2668 }
2669 }
2670 };
John McCall87bb5822010-07-31 23:20:56 +00002671
2672 class FragileHazards {
2673 CodeGenFunction &CGF;
2674 llvm::SmallVector<llvm::Value*, 20> Locals;
2675 llvm::DenseSet<llvm::BasicBlock*> BlocksBeforeTry;
2676
2677 llvm::InlineAsm *ReadHazard;
2678 llvm::InlineAsm *WriteHazard;
2679
2680 llvm::FunctionType *GetAsmFnType();
2681
2682 void collectLocals();
2683 void emitReadHazard(CGBuilderTy &Builder);
2684
2685 public:
2686 FragileHazards(CodeGenFunction &CGF);
John McCall0b251722010-08-04 05:59:32 +00002687
John McCall87bb5822010-07-31 23:20:56 +00002688 void emitWriteHazard();
John McCall0b251722010-08-04 05:59:32 +00002689 void emitHazardsInNewBlocks();
John McCall87bb5822010-07-31 23:20:56 +00002690 };
2691}
2692
2693/// Create the fragile-ABI read and write hazards based on the current
2694/// state of the function, which is presumed to be immediately prior
2695/// to a @try block. These hazards are used to maintain correct
2696/// semantics in the face of optimization and the fragile ABI's
2697/// cavalier use of setjmp/longjmp.
2698FragileHazards::FragileHazards(CodeGenFunction &CGF) : CGF(CGF) {
2699 collectLocals();
2700
2701 if (Locals.empty()) return;
2702
2703 // Collect all the blocks in the function.
2704 for (llvm::Function::iterator
2705 I = CGF.CurFn->begin(), E = CGF.CurFn->end(); I != E; ++I)
2706 BlocksBeforeTry.insert(&*I);
2707
2708 llvm::FunctionType *AsmFnTy = GetAsmFnType();
2709
2710 // Create a read hazard for the allocas. This inhibits dead-store
2711 // optimizations and forces the values to memory. This hazard is
2712 // inserted before any 'throwing' calls in the protected scope to
2713 // reflect the possibility that the variables might be read from the
2714 // catch block if the call throws.
2715 {
2716 std::string Constraint;
2717 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
2718 if (I) Constraint += ',';
2719 Constraint += "*m";
2720 }
2721
2722 ReadHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false);
2723 }
2724
2725 // Create a write hazard for the allocas. This inhibits folding
2726 // loads across the hazard. This hazard is inserted at the
2727 // beginning of the catch path to reflect the possibility that the
2728 // variables might have been written within the protected scope.
2729 {
2730 std::string Constraint;
2731 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
2732 if (I) Constraint += ',';
2733 Constraint += "=*m";
2734 }
2735
2736 WriteHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false);
2737 }
2738}
2739
2740/// Emit a write hazard at the current location.
2741void FragileHazards::emitWriteHazard() {
2742 if (Locals.empty()) return;
2743
2744 CGF.Builder.CreateCall(WriteHazard, Locals.begin(), Locals.end())
2745 ->setDoesNotThrow();
2746}
2747
John McCall87bb5822010-07-31 23:20:56 +00002748void FragileHazards::emitReadHazard(CGBuilderTy &Builder) {
2749 assert(!Locals.empty());
2750 Builder.CreateCall(ReadHazard, Locals.begin(), Locals.end())
2751 ->setDoesNotThrow();
2752}
2753
2754/// Emit read hazards in all the protected blocks, i.e. all the blocks
2755/// which have been inserted since the beginning of the try.
John McCall0b251722010-08-04 05:59:32 +00002756void FragileHazards::emitHazardsInNewBlocks() {
John McCall87bb5822010-07-31 23:20:56 +00002757 if (Locals.empty()) return;
2758
2759 CGBuilderTy Builder(CGF.getLLVMContext());
2760
2761 // Iterate through all blocks, skipping those prior to the try.
2762 for (llvm::Function::iterator
2763 FI = CGF.CurFn->begin(), FE = CGF.CurFn->end(); FI != FE; ++FI) {
2764 llvm::BasicBlock &BB = *FI;
2765 if (BlocksBeforeTry.count(&BB)) continue;
2766
2767 // Walk through all the calls in the block.
2768 for (llvm::BasicBlock::iterator
2769 BI = BB.begin(), BE = BB.end(); BI != BE; ++BI) {
2770 llvm::Instruction &I = *BI;
2771
2772 // Ignore instructions that aren't non-intrinsic calls.
2773 // These are the only calls that can possibly call longjmp.
2774 if (!isa<llvm::CallInst>(I) && !isa<llvm::InvokeInst>(I)) continue;
2775 if (isa<llvm::IntrinsicInst>(I))
2776 continue;
2777
2778 // Ignore call sites marked nounwind. This may be questionable,
2779 // since 'nounwind' doesn't necessarily mean 'does not call longjmp'.
2780 llvm::CallSite CS(&I);
2781 if (CS.doesNotThrow()) continue;
2782
John McCall0b251722010-08-04 05:59:32 +00002783 // Insert a read hazard before the call. This will ensure that
2784 // any writes to the locals are performed before making the
2785 // call. If the call throws, then this is sufficient to
2786 // guarantee correctness as long as it doesn't also write to any
2787 // locals.
John McCall87bb5822010-07-31 23:20:56 +00002788 Builder.SetInsertPoint(&BB, BI);
2789 emitReadHazard(Builder);
2790 }
2791 }
2792}
2793
2794static void addIfPresent(llvm::DenseSet<llvm::Value*> &S, llvm::Value *V) {
2795 if (V) S.insert(V);
2796}
2797
2798void FragileHazards::collectLocals() {
2799 // Compute a set of allocas to ignore.
2800 llvm::DenseSet<llvm::Value*> AllocasToIgnore;
2801 addIfPresent(AllocasToIgnore, CGF.ReturnValue);
2802 addIfPresent(AllocasToIgnore, CGF.NormalCleanupDest);
2803 addIfPresent(AllocasToIgnore, CGF.EHCleanupDest);
2804
2805 // Collect all the allocas currently in the function. This is
2806 // probably way too aggressive.
2807 llvm::BasicBlock &Entry = CGF.CurFn->getEntryBlock();
2808 for (llvm::BasicBlock::iterator
2809 I = Entry.begin(), E = Entry.end(); I != E; ++I)
2810 if (isa<llvm::AllocaInst>(*I) && !AllocasToIgnore.count(&*I))
2811 Locals.push_back(&*I);
2812}
2813
2814llvm::FunctionType *FragileHazards::GetAsmFnType() {
2815 std::vector<const llvm::Type *> Tys(Locals.size());
2816 for (unsigned I = 0, E = Locals.size(); I != E; ++I)
2817 Tys[I] = Locals[I]->getType();
2818 return llvm::FunctionType::get(CGF.Builder.getVoidTy(), Tys, false);
John McCallcc505292010-07-21 06:59:36 +00002819}
2820
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002821/*
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002822
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002823 Objective-C setjmp-longjmp (sjlj) Exception Handling
2824 --
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002825
John McCallf1549f62010-07-06 01:34:17 +00002826 A catch buffer is a setjmp buffer plus:
2827 - a pointer to the exception that was caught
2828 - a pointer to the previous exception data buffer
2829 - two pointers of reserved storage
2830 Therefore catch buffers form a stack, with a pointer to the top
2831 of the stack kept in thread-local storage.
2832
2833 objc_exception_try_enter pushes a catch buffer onto the EH stack.
2834 objc_exception_try_exit pops the given catch buffer, which is
2835 required to be the top of the EH stack.
2836 objc_exception_throw pops the top of the EH stack, writes the
2837 thrown exception into the appropriate field, and longjmps
2838 to the setjmp buffer. It crashes the process (with a printf
2839 and an abort()) if there are no catch buffers on the stack.
2840 objc_exception_extract just reads the exception pointer out of the
2841 catch buffer.
2842
2843 There's no reason an implementation couldn't use a light-weight
2844 setjmp here --- something like __builtin_setjmp, but API-compatible
2845 with the heavyweight setjmp. This will be more important if we ever
2846 want to implement correct ObjC/C++ exception interactions for the
2847 fragile ABI.
2848
2849 Note that for this use of setjmp/longjmp to be correct, we may need
2850 to mark some local variables volatile: if a non-volatile local
2851 variable is modified between the setjmp and the longjmp, it has
2852 indeterminate value. For the purposes of LLVM IR, it may be
2853 sufficient to make loads and stores within the @try (to variables
2854 declared outside the @try) volatile. This is necessary for
2855 optimized correctness, but is not currently being done; this is
2856 being tracked as rdar://problem/8160285
2857
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002858 The basic framework for a @try-catch-finally is as follows:
2859 {
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002860 objc_exception_data d;
2861 id _rethrow = null;
Anders Carlsson190d00e2009-02-07 21:26:04 +00002862 bool _call_try_exit = true;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002863
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002864 objc_exception_try_enter(&d);
2865 if (!setjmp(d.jmp_buf)) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002866 ... try body ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002867 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002868 // exception path
2869 id _caught = objc_exception_extract(&d);
2870
2871 // enter new try scope for handlers
2872 if (!setjmp(d.jmp_buf)) {
2873 ... match exception and execute catch blocks ...
2874
2875 // fell off end, rethrow.
2876 _rethrow = _caught;
2877 ... jump-through-finally to finally_rethrow ...
2878 } else {
2879 // exception in catch block
2880 _rethrow = objc_exception_extract(&d);
2881 _call_try_exit = false;
2882 ... jump-through-finally to finally_rethrow ...
2883 }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002884 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00002885 ... jump-through-finally to finally_end ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002886
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002887 finally:
Anders Carlsson190d00e2009-02-07 21:26:04 +00002888 if (_call_try_exit)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002889 objc_exception_try_exit(&d);
Anders Carlsson190d00e2009-02-07 21:26:04 +00002890
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002891 ... finally block ....
Daniel Dunbar898d5082008-09-30 01:06:03 +00002892 ... dispatch to finally destination ...
2893
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002894 finally_rethrow:
Daniel Dunbar898d5082008-09-30 01:06:03 +00002895 objc_exception_throw(_rethrow);
2896
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002897 finally_end:
2898 }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002899
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002900 This framework differs slightly from the one gcc uses, in that gcc
2901 uses _rethrow to determine if objc_exception_try_exit should be called
2902 and if the object should be rethrown. This breaks in the face of
2903 throwing nil and introduces unnecessary branches.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002904
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002905 We specialize this framework for a few particular circumstances:
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002906
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002907 - If there are no catch blocks, then we avoid emitting the second
2908 exception handling context.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002909
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002910 - If there is a catch-all catch block (i.e. @catch(...) or @catch(id
2911 e)) we avoid emitting the code to rethrow an uncaught exception.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002912
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002913 - FIXME: If there is no @finally block we can do a few more
2914 simplifications.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002915
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002916 Rethrows and Jumps-Through-Finally
2917 --
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002918
John McCallf1549f62010-07-06 01:34:17 +00002919 '@throw;' is supported by pushing the currently-caught exception
2920 onto ObjCEHStack while the @catch blocks are emitted.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002921
John McCallf1549f62010-07-06 01:34:17 +00002922 Branches through the @finally block are handled with an ordinary
2923 normal cleanup. We do not register an EH cleanup; fragile-ABI ObjC
2924 exceptions are not compatible with C++ exceptions, and this is
2925 hardly the only place where this will go wrong.
Daniel Dunbar898d5082008-09-30 01:06:03 +00002926
John McCallf1549f62010-07-06 01:34:17 +00002927 @synchronized(expr) { stmt; } is emitted as if it were:
2928 id synch_value = expr;
2929 objc_sync_enter(synch_value);
2930 @try { stmt; } @finally { objc_sync_exit(synch_value); }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002931*/
2932
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00002933void CGObjCMac::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
2934 const Stmt &S) {
2935 bool isTry = isa<ObjCAtTryStmt>(S);
John McCallf1549f62010-07-06 01:34:17 +00002936
2937 // A destination for the fall-through edges of the catch handlers to
2938 // jump to.
2939 CodeGenFunction::JumpDest FinallyEnd =
2940 CGF.getJumpDestInCurrentScope("finally.end");
2941
2942 // A destination for the rethrow edge of the catch handlers to jump
2943 // to.
2944 CodeGenFunction::JumpDest FinallyRethrow =
2945 CGF.getJumpDestInCurrentScope("finally.rethrow");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002946
Daniel Dunbar1c566672009-02-24 01:43:46 +00002947 // For @synchronized, call objc_sync_enter(sync.expr). The
2948 // evaluation of the expression must occur before we enter the
John McCall0b251722010-08-04 05:59:32 +00002949 // @synchronized. We can't avoid a temp here because we need the
2950 // value to be preserved. If the backend ever does liveness
2951 // correctly after setjmp, this will be unnecessary.
2952 llvm::Value *SyncArgSlot = 0;
Daniel Dunbar1c566672009-02-24 01:43:46 +00002953 if (!isTry) {
John McCall0b251722010-08-04 05:59:32 +00002954 llvm::Value *SyncArg =
Daniel Dunbar1c566672009-02-24 01:43:46 +00002955 CGF.EmitScalarExpr(cast<ObjCAtSynchronizedStmt>(S).getSynchExpr());
2956 SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy);
John McCallf1549f62010-07-06 01:34:17 +00002957 CGF.Builder.CreateCall(ObjCTypes.getSyncEnterFn(), SyncArg)
2958 ->setDoesNotThrow();
John McCall0b251722010-08-04 05:59:32 +00002959
2960 SyncArgSlot = CGF.CreateTempAlloca(SyncArg->getType(), "sync.arg");
2961 CGF.Builder.CreateStore(SyncArg, SyncArgSlot);
Daniel Dunbar1c566672009-02-24 01:43:46 +00002962 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00002963
John McCall0b251722010-08-04 05:59:32 +00002964 // Allocate memory for the setjmp buffer. This needs to be kept
2965 // live throughout the try and catch blocks.
2966 llvm::Value *ExceptionData = CGF.CreateTempAlloca(ObjCTypes.ExceptionDataTy,
2967 "exceptiondata.ptr");
2968
John McCall87bb5822010-07-31 23:20:56 +00002969 // Create the fragile hazards. Note that this will not capture any
2970 // of the allocas required for exception processing, but will
2971 // capture the current basic block (which extends all the way to the
2972 // setjmp call) as "before the @try".
2973 FragileHazards Hazards(CGF);
2974
John McCallf1549f62010-07-06 01:34:17 +00002975 // Create a flag indicating whether the cleanup needs to call
2976 // objc_exception_try_exit. This is true except when
2977 // - no catches match and we're branching through the cleanup
2978 // just to rethrow the exception, or
2979 // - a catch matched and we're falling out of the catch handler.
John McCall0b251722010-08-04 05:59:32 +00002980 // The setjmp-safety rule here is that we should always store to this
2981 // variable in a place that dominates the branch through the cleanup
2982 // without passing through any setjmps.
John McCallf1549f62010-07-06 01:34:17 +00002983 llvm::Value *CallTryExitVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(),
Anders Carlsson190d00e2009-02-07 21:26:04 +00002984 "_call_try_exit");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002985
John McCallf1549f62010-07-06 01:34:17 +00002986 // Push a normal cleanup to leave the try scope.
John McCall1f0fca52010-07-21 07:22:38 +00002987 CGF.EHStack.pushCleanup<PerformFragileFinally>(NormalCleanup, &S,
John McCall0b251722010-08-04 05:59:32 +00002988 SyncArgSlot,
John McCall1f0fca52010-07-21 07:22:38 +00002989 CallTryExitVar,
2990 ExceptionData,
2991 &ObjCTypes);
John McCallf1549f62010-07-06 01:34:17 +00002992
2993 // Enter a try block:
2994 // - Call objc_exception_try_enter to push ExceptionData on top of
2995 // the EH stack.
2996 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData)
2997 ->setDoesNotThrow();
2998
2999 // - Call setjmp on the exception data buffer.
3000 llvm::Constant *Zero = llvm::ConstantInt::get(CGF.Builder.getInt32Ty(), 0);
3001 llvm::Value *GEPIndexes[] = { Zero, Zero, Zero };
3002 llvm::Value *SetJmpBuffer =
3003 CGF.Builder.CreateGEP(ExceptionData, GEPIndexes, GEPIndexes+3, "setjmp_buffer");
3004 llvm::CallInst *SetJmpResult =
3005 CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer, "setjmp_result");
3006 SetJmpResult->setDoesNotThrow();
3007
3008 // If setjmp returned 0, enter the protected block; otherwise,
3009 // branch to the handler.
Daniel Dunbar55e87422008-11-11 02:29:29 +00003010 llvm::BasicBlock *TryBlock = CGF.createBasicBlock("try");
3011 llvm::BasicBlock *TryHandler = CGF.createBasicBlock("try.handler");
John McCallf1549f62010-07-06 01:34:17 +00003012 llvm::Value *DidCatch =
John McCalld96a8e72010-08-11 00:16:14 +00003013 CGF.Builder.CreateIsNotNull(SetJmpResult, "did_catch_exception");
3014 CGF.Builder.CreateCondBr(DidCatch, TryHandler, TryBlock);
Anders Carlsson80f25672008-09-09 17:59:25 +00003015
John McCallf1549f62010-07-06 01:34:17 +00003016 // Emit the protected block.
Anders Carlsson80f25672008-09-09 17:59:25 +00003017 CGF.EmitBlock(TryBlock);
John McCall0b251722010-08-04 05:59:32 +00003018 CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003019 CGF.EmitStmt(isTry ? cast<ObjCAtTryStmt>(S).getTryBody()
John McCallf1549f62010-07-06 01:34:17 +00003020 : cast<ObjCAtSynchronizedStmt>(S).getSynchBody());
John McCall0b251722010-08-04 05:59:32 +00003021
3022 CGBuilderTy::InsertPoint TryFallthroughIP = CGF.Builder.saveAndClearIP();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003023
John McCallf1549f62010-07-06 01:34:17 +00003024 // Emit the exception handler block.
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00003025 CGF.EmitBlock(TryHandler);
Daniel Dunbar55e40722008-09-27 07:03:52 +00003026
John McCall87bb5822010-07-31 23:20:56 +00003027 // Don't optimize loads of the in-scope locals across this point.
3028 Hazards.emitWriteHazard();
3029
John McCallf1549f62010-07-06 01:34:17 +00003030 // For a @synchronized (or a @try with no catches), just branch
3031 // through the cleanup to the rethrow block.
3032 if (!isTry || !cast<ObjCAtTryStmt>(S).getNumCatchStmts()) {
3033 // Tell the cleanup not to re-pop the exit.
John McCall0b251722010-08-04 05:59:32 +00003034 CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003035 CGF.EmitBranchThroughCleanup(FinallyRethrow);
John McCallf1549f62010-07-06 01:34:17 +00003036
3037 // Otherwise, we have to match against the caught exceptions.
3038 } else {
John McCall0b251722010-08-04 05:59:32 +00003039 // Retrieve the exception object. We may emit multiple blocks but
3040 // nothing can cross this so the value is already in SSA form.
3041 llvm::CallInst *Caught =
3042 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3043 ExceptionData, "caught");
3044 Caught->setDoesNotThrow();
3045
John McCallf1549f62010-07-06 01:34:17 +00003046 // Push the exception to rethrow onto the EH value stack for the
3047 // benefit of any @throws in the handlers.
3048 CGF.ObjCEHValueStack.push_back(Caught);
3049
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00003050 const ObjCAtTryStmt* AtTryStmt = cast<ObjCAtTryStmt>(&S);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003051
John McCall0b251722010-08-04 05:59:32 +00003052 bool HasFinally = (AtTryStmt->getFinallyStmt() != 0);
John McCallf1549f62010-07-06 01:34:17 +00003053
John McCall0b251722010-08-04 05:59:32 +00003054 llvm::BasicBlock *CatchBlock = 0;
3055 llvm::BasicBlock *CatchHandler = 0;
3056 if (HasFinally) {
3057 // Enter a new exception try block (in case a @catch block
3058 // throws an exception).
3059 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData)
3060 ->setDoesNotThrow();
Anders Carlsson80f25672008-09-09 17:59:25 +00003061
John McCall0b251722010-08-04 05:59:32 +00003062 llvm::CallInst *SetJmpResult =
3063 CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer,
3064 "setjmp.result");
3065 SetJmpResult->setDoesNotThrow();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003066
John McCall0b251722010-08-04 05:59:32 +00003067 llvm::Value *Threw =
3068 CGF.Builder.CreateIsNotNull(SetJmpResult, "did_catch_exception");
3069
3070 CatchBlock = CGF.createBasicBlock("catch");
3071 CatchHandler = CGF.createBasicBlock("catch_for_catch");
3072 CGF.Builder.CreateCondBr(Threw, CatchHandler, CatchBlock);
3073
3074 CGF.EmitBlock(CatchBlock);
3075 }
3076
3077 CGF.Builder.CreateStore(CGF.Builder.getInt1(HasFinally), CallTryExitVar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003078
Daniel Dunbar55e40722008-09-27 07:03:52 +00003079 // Handle catch list. As a special case we check if everything is
3080 // matched and avoid generating code for falling off the end if
3081 // so.
3082 bool AllMatched = false;
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00003083 for (unsigned I = 0, N = AtTryStmt->getNumCatchStmts(); I != N; ++I) {
3084 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I);
Anders Carlsson80f25672008-09-09 17:59:25 +00003085
Douglas Gregorc00d8e12010-04-26 16:46:50 +00003086 const VarDecl *CatchParam = CatchStmt->getCatchParamDecl();
Steve Naroff14108da2009-07-10 23:34:53 +00003087 const ObjCObjectPointerType *OPT = 0;
Daniel Dunbar129271a2008-09-27 07:36:24 +00003088
Anders Carlsson80f25672008-09-09 17:59:25 +00003089 // catch(...) always matches.
Daniel Dunbar55e40722008-09-27 07:03:52 +00003090 if (!CatchParam) {
3091 AllMatched = true;
3092 } else {
John McCall183700f2009-09-21 23:43:11 +00003093 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003094
John McCallf1549f62010-07-06 01:34:17 +00003095 // catch(id e) always matches under this ABI, since only
3096 // ObjC exceptions end up here in the first place.
Daniel Dunbar97f61d12008-09-27 22:21:14 +00003097 // FIXME: For the time being we also match id<X>; this should
3098 // be rejected by Sema instead.
Eli Friedman818e96f2009-07-11 00:57:02 +00003099 if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType()))
Daniel Dunbar55e40722008-09-27 07:03:52 +00003100 AllMatched = true;
Anders Carlsson80f25672008-09-09 17:59:25 +00003101 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003102
John McCallf1549f62010-07-06 01:34:17 +00003103 // If this is a catch-all, we don't need to test anything.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003104 if (AllMatched) {
John McCallf1549f62010-07-06 01:34:17 +00003105 CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF);
3106
Anders Carlssondde0a942008-09-11 09:15:33 +00003107 if (CatchParam) {
Steve Naroff7ba138a2009-03-03 19:52:17 +00003108 CGF.EmitLocalBlockVarDecl(*CatchParam);
Daniel Dunbara448fb22008-11-11 23:11:34 +00003109 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
John McCallf1549f62010-07-06 01:34:17 +00003110
3111 // These types work out because ConvertType(id) == i8*.
Steve Naroff7ba138a2009-03-03 19:52:17 +00003112 CGF.Builder.CreateStore(Caught, CGF.GetAddrOfLocalVar(CatchParam));
Anders Carlssondde0a942008-09-11 09:15:33 +00003113 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003114
Anders Carlssondde0a942008-09-11 09:15:33 +00003115 CGF.EmitStmt(CatchStmt->getCatchBody());
John McCallf1549f62010-07-06 01:34:17 +00003116
3117 // The scope of the catch variable ends right here.
3118 CatchVarCleanups.ForceCleanup();
3119
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003120 CGF.EmitBranchThroughCleanup(FinallyEnd);
Anders Carlsson80f25672008-09-09 17:59:25 +00003121 break;
3122 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003123
Steve Naroff14108da2009-07-10 23:34:53 +00003124 assert(OPT && "Unexpected non-object pointer type in @catch");
John McCall506b57e2010-05-17 21:00:27 +00003125 const ObjCObjectType *ObjTy = OPT->getObjectType();
John McCallf1549f62010-07-06 01:34:17 +00003126
3127 // FIXME: @catch (Class c) ?
John McCall506b57e2010-05-17 21:00:27 +00003128 ObjCInterfaceDecl *IDecl = ObjTy->getInterface();
3129 assert(IDecl && "Catch parameter must have Objective-C type!");
Anders Carlsson80f25672008-09-09 17:59:25 +00003130
3131 // Check if the @catch block matches the exception object.
John McCall506b57e2010-05-17 21:00:27 +00003132 llvm::Value *Class = EmitClassRef(CGF.Builder, IDecl);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003133
John McCallf1549f62010-07-06 01:34:17 +00003134 llvm::CallInst *Match =
Chris Lattner34b02a12009-04-22 02:26:14 +00003135 CGF.Builder.CreateCall2(ObjCTypes.getExceptionMatchFn(),
3136 Class, Caught, "match");
John McCallf1549f62010-07-06 01:34:17 +00003137 Match->setDoesNotThrow();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003138
John McCallf1549f62010-07-06 01:34:17 +00003139 llvm::BasicBlock *MatchedBlock = CGF.createBasicBlock("match");
3140 llvm::BasicBlock *NextCatchBlock = CGF.createBasicBlock("catch.next");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003141
3142 CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(Match, "matched"),
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00003143 MatchedBlock, NextCatchBlock);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003144
Anders Carlsson80f25672008-09-09 17:59:25 +00003145 // Emit the @catch block.
3146 CGF.EmitBlock(MatchedBlock);
John McCallf1549f62010-07-06 01:34:17 +00003147
3148 // Collect any cleanups for the catch variable. The scope lasts until
3149 // the end of the catch body.
John McCall0b251722010-08-04 05:59:32 +00003150 CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF);
John McCallf1549f62010-07-06 01:34:17 +00003151
Steve Naroff7ba138a2009-03-03 19:52:17 +00003152 CGF.EmitLocalBlockVarDecl(*CatchParam);
Daniel Dunbara448fb22008-11-11 23:11:34 +00003153 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003154
John McCallf1549f62010-07-06 01:34:17 +00003155 // Initialize the catch variable.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003156 llvm::Value *Tmp =
3157 CGF.Builder.CreateBitCast(Caught,
3158 CGF.ConvertType(CatchParam->getType()),
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003159 "tmp");
Steve Naroff7ba138a2009-03-03 19:52:17 +00003160 CGF.Builder.CreateStore(Tmp, CGF.GetAddrOfLocalVar(CatchParam));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003161
Anders Carlssondde0a942008-09-11 09:15:33 +00003162 CGF.EmitStmt(CatchStmt->getCatchBody());
John McCallf1549f62010-07-06 01:34:17 +00003163
3164 // We're done with the catch variable.
3165 CatchVarCleanups.ForceCleanup();
3166
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003167 CGF.EmitBranchThroughCleanup(FinallyEnd);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003168
Anders Carlsson80f25672008-09-09 17:59:25 +00003169 CGF.EmitBlock(NextCatchBlock);
3170 }
3171
John McCallf1549f62010-07-06 01:34:17 +00003172 CGF.ObjCEHValueStack.pop_back();
3173
John McCall0b251722010-08-04 05:59:32 +00003174 // If nothing wanted anything to do with the caught exception,
3175 // kill the extract call.
3176 if (Caught->use_empty())
3177 Caught->eraseFromParent();
3178
3179 if (!AllMatched)
3180 CGF.EmitBranchThroughCleanup(FinallyRethrow);
3181
3182 if (HasFinally) {
3183 // Emit the exception handler for the @catch blocks.
3184 CGF.EmitBlock(CatchHandler);
3185
3186 // In theory we might now need a write hazard, but actually it's
3187 // unnecessary because there's no local-accessing code between
3188 // the try's write hazard and here.
3189 //Hazards.emitWriteHazard();
3190
3191 // Don't pop the catch handler; the throw already did.
3192 CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003193 CGF.EmitBranchThroughCleanup(FinallyRethrow);
Daniel Dunbar55e40722008-09-27 07:03:52 +00003194 }
Anders Carlsson80f25672008-09-09 17:59:25 +00003195 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003196
John McCall87bb5822010-07-31 23:20:56 +00003197 // Insert read hazards as required in the new blocks.
John McCall0b251722010-08-04 05:59:32 +00003198 Hazards.emitHazardsInNewBlocks();
John McCall87bb5822010-07-31 23:20:56 +00003199
John McCallf1549f62010-07-06 01:34:17 +00003200 // Pop the cleanup.
John McCall0b251722010-08-04 05:59:32 +00003201 CGF.Builder.restoreIP(TryFallthroughIP);
3202 if (CGF.HaveInsertPoint())
3203 CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar);
John McCallf1549f62010-07-06 01:34:17 +00003204 CGF.PopCleanupBlock();
John McCall0b251722010-08-04 05:59:32 +00003205 CGF.EmitBlock(FinallyEnd.getBlock(), true);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003206
John McCallf1549f62010-07-06 01:34:17 +00003207 // Emit the rethrow block.
John McCall87bb5822010-07-31 23:20:56 +00003208 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
John McCallff8e1152010-07-23 21:56:41 +00003209 CGF.EmitBlock(FinallyRethrow.getBlock(), true);
John McCallf1549f62010-07-06 01:34:17 +00003210 if (CGF.HaveInsertPoint()) {
John McCall0b251722010-08-04 05:59:32 +00003211 // Just look in the buffer for the exception to throw.
3212 llvm::CallInst *Caught =
3213 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3214 ExceptionData);
3215 Caught->setDoesNotThrow();
3216
3217 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), Caught)
John McCallf1549f62010-07-06 01:34:17 +00003218 ->setDoesNotThrow();
3219 CGF.Builder.CreateUnreachable();
Fariborz Jahanianf2878e52008-11-21 19:21:53 +00003220 }
Anders Carlsson80f25672008-09-09 17:59:25 +00003221
John McCall87bb5822010-07-31 23:20:56 +00003222 CGF.Builder.restoreIP(SavedIP);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00003223}
3224
3225void CGObjCMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar898d5082008-09-30 01:06:03 +00003226 const ObjCAtThrowStmt &S) {
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003227 llvm::Value *ExceptionAsObject;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003228
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003229 if (const Expr *ThrowExpr = S.getThrowExpr()) {
3230 llvm::Value *Exception = CGF.EmitScalarExpr(ThrowExpr);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003231 ExceptionAsObject =
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003232 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy, "tmp");
3233 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003234 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003235 "Unexpected rethrow outside @catch block.");
Anders Carlsson273558f2009-02-07 21:37:21 +00003236 ExceptionAsObject = CGF.ObjCEHValueStack.back();
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003237 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003238
John McCallf1549f62010-07-06 01:34:17 +00003239 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), ExceptionAsObject)
3240 ->setDoesNotReturn();
Anders Carlsson80f25672008-09-09 17:59:25 +00003241 CGF.Builder.CreateUnreachable();
Daniel Dunbara448fb22008-11-11 23:11:34 +00003242
3243 // Clear the insertion point to indicate we are in unreachable code.
3244 CGF.Builder.ClearInsertionPoint();
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00003245}
3246
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003247/// EmitObjCWeakRead - Code gen for loading value of a __weak
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00003248/// object: objc_read_weak (id *src)
3249///
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003250llvm::Value * CGObjCMac::EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003251 llvm::Value *AddrWeakObj) {
Eli Friedman8339b352009-03-07 03:57:15 +00003252 const llvm::Type* DestTy =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003253 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
3254 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj,
3255 ObjCTypes.PtrObjectPtrTy);
Chris Lattner72db6c32009-04-22 02:44:54 +00003256 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003257 AddrWeakObj, "weakread");
Eli Friedman8339b352009-03-07 03:57:15 +00003258 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00003259 return read_weak;
3260}
3261
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003262/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
3263/// objc_assign_weak (id src, id *dst)
3264///
3265void CGObjCMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003266 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003267 const llvm::Type * SrcTy = src->getType();
3268 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003269 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003270 assert(Size <= 8 && "does not support size > 8");
3271 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003272 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003273 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3274 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003275 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3276 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner96508e12009-04-17 22:12:36 +00003277 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003278 src, dst, "weakassign");
3279 return;
3280}
3281
Fariborz Jahanian58626502008-11-19 00:59:10 +00003282/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
3283/// objc_assign_global (id src, id *dst)
3284///
3285void CGObjCMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00003286 llvm::Value *src, llvm::Value *dst,
3287 bool threadlocal) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003288 const llvm::Type * SrcTy = src->getType();
3289 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003290 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003291 assert(Size <= 8 && "does not support size > 8");
3292 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003293 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003294 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3295 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003296 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3297 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00003298 if (!threadlocal)
3299 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
3300 src, dst, "globalassign");
3301 else
3302 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignThreadLocalFn(),
3303 src, dst, "threadlocalassign");
Fariborz Jahanian58626502008-11-19 00:59:10 +00003304 return;
3305}
3306
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003307/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003308/// objc_assign_ivar (id src, id *dst, ptrdiff_t ivaroffset)
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003309///
3310void CGObjCMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003311 llvm::Value *src, llvm::Value *dst,
3312 llvm::Value *ivarOffset) {
3313 assert(ivarOffset && "EmitObjCIvarAssign - ivarOffset is NULL");
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003314 const llvm::Type * SrcTy = src->getType();
3315 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003316 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003317 assert(Size <= 8 && "does not support size > 8");
3318 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003319 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003320 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3321 }
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003322 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3323 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003324 CGF.Builder.CreateCall3(ObjCTypes.getGcAssignIvarFn(),
3325 src, dst, ivarOffset);
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003326 return;
3327}
3328
Fariborz Jahanian58626502008-11-19 00:59:10 +00003329/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
3330/// objc_assign_strongCast (id src, id *dst)
3331///
3332void CGObjCMac::EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003333 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003334 const llvm::Type * SrcTy = src->getType();
3335 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003336 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003337 assert(Size <= 8 && "does not support size > 8");
3338 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003339 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003340 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3341 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003342 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3343 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00003344 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian58626502008-11-19 00:59:10 +00003345 src, dst, "weakassign");
3346 return;
3347}
3348
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003349void CGObjCMac::EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003350 llvm::Value *DestPtr,
3351 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00003352 llvm::Value *size) {
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003353 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy);
3354 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003355 CGF.Builder.CreateCall3(ObjCTypes.GcMemmoveCollectableFn(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00003356 DestPtr, SrcPtr, size);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003357 return;
3358}
3359
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00003360/// EmitObjCValueForIvar - Code Gen for ivar reference.
3361///
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00003362LValue CGObjCMac::EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
3363 QualType ObjectTy,
3364 llvm::Value *BaseValue,
3365 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00003366 unsigned CVRQualifiers) {
John McCallc12c5bb2010-05-15 11:32:37 +00003367 const ObjCInterfaceDecl *ID =
3368 ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar97776872009-04-22 07:32:20 +00003369 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
3370 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00003371}
3372
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003373llvm::Value *CGObjCMac::EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00003374 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003375 const ObjCIvarDecl *Ivar) {
Daniel Dunbar97776872009-04-22 07:32:20 +00003376 uint64_t Offset = ComputeIvarBaseOffset(CGM, Interface, Ivar);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003377 return llvm::ConstantInt::get(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003378 CGM.getTypes().ConvertType(CGM.getContext().LongTy),
3379 Offset);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003380}
3381
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003382/* *** Private Interface *** */
3383
3384/// EmitImageInfo - Emit the image info marker used to encode some module
3385/// level information.
3386///
3387/// See: <rdr://4810609&4810587&4810587>
3388/// struct IMAGE_INFO {
3389/// unsigned version;
3390/// unsigned flags;
3391/// };
3392enum ImageInfoFlags {
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003393 eImageInfo_FixAndContinue = (1 << 0),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003394 eImageInfo_GarbageCollected = (1 << 1),
3395 eImageInfo_GCOnly = (1 << 2),
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003396 eImageInfo_OptimizedByDyld = (1 << 3), // FIXME: When is this set.
3397
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003398 // A flag indicating that the module has no instances of a @synthesize of a
3399 // superclass variable. <rdar://problem/6803242>
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003400 eImageInfo_CorrectedSynthesize = (1 << 4)
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003401};
3402
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003403void CGObjCCommonMac::EmitImageInfo() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003404 unsigned version = 0; // Version is unused?
3405 unsigned flags = 0;
3406
3407 // FIXME: Fix and continue?
3408 if (CGM.getLangOptions().getGCMode() != LangOptions::NonGC)
3409 flags |= eImageInfo_GarbageCollected;
3410 if (CGM.getLangOptions().getGCMode() == LangOptions::GCOnly)
3411 flags |= eImageInfo_GCOnly;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003412
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003413 // We never allow @synthesize of a superclass property.
3414 flags |= eImageInfo_CorrectedSynthesize;
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003415
Chris Lattner77b89b82010-06-27 07:15:29 +00003416 const llvm::Type *Int32Ty = llvm::Type::getInt32Ty(VMContext);
3417
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003418 // Emitted as int[2];
3419 llvm::Constant *values[2] = {
Chris Lattner77b89b82010-06-27 07:15:29 +00003420 llvm::ConstantInt::get(Int32Ty, version),
3421 llvm::ConstantInt::get(Int32Ty, flags)
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003422 };
Chris Lattner77b89b82010-06-27 07:15:29 +00003423 llvm::ArrayType *AT = llvm::ArrayType::get(Int32Ty, 2);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003424
3425 const char *Section;
3426 if (ObjCABI == 1)
3427 Section = "__OBJC, __image_info,regular";
3428 else
3429 Section = "__DATA, __objc_imageinfo, regular, no_dead_strip";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003430 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003431 CreateMetadataVar("\01L_OBJC_IMAGE_INFO",
Owen Anderson7db6d832009-07-28 18:33:04 +00003432 llvm::ConstantArray::get(AT, values, 2),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003433 Section,
3434 0,
3435 true);
3436 GV->setConstant(true);
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003437}
3438
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003439
3440// struct objc_module {
3441// unsigned long version;
3442// unsigned long size;
3443// const char *name;
3444// Symtab symtab;
3445// };
3446
3447// FIXME: Get from somewhere
3448static const int ModuleVersion = 7;
3449
3450void CGObjCMac::EmitModuleInfo() {
Duncan Sands9408c452009-05-09 07:08:47 +00003451 uint64_t Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ModuleTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003452
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003453 std::vector<llvm::Constant*> Values(4);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003454 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, ModuleVersion);
3455 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00003456 // This used to be the filename, now it is unused. <rdr://4327263>
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003457 Values[2] = GetClassName(&CGM.getContext().Idents.get(""));
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003458 Values[3] = EmitModuleSymbols();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003459 CreateMetadataVar("\01L_OBJC_MODULES",
Owen Anderson08e25242009-07-27 22:29:56 +00003460 llvm::ConstantStruct::get(ObjCTypes.ModuleTy, Values),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003461 "__OBJC,__module_info,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00003462 4, true);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003463}
3464
3465llvm::Constant *CGObjCMac::EmitModuleSymbols() {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003466 unsigned NumClasses = DefinedClasses.size();
3467 unsigned NumCategories = DefinedCategories.size();
3468
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003469 // Return null if no symbols were defined.
3470 if (!NumClasses && !NumCategories)
Owen Andersonc9c88b42009-07-31 20:28:54 +00003471 return llvm::Constant::getNullValue(ObjCTypes.SymtabPtrTy);
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003472
3473 std::vector<llvm::Constant*> Values(5);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003474 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
Owen Andersonc9c88b42009-07-31 20:28:54 +00003475 Values[1] = llvm::Constant::getNullValue(ObjCTypes.SelectorPtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003476 Values[2] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumClasses);
3477 Values[3] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumCategories);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003478
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003479 // The runtime expects exactly the list of defined classes followed
3480 // by the list of defined categories, in a single array.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003481 std::vector<llvm::Constant*> Symbols(NumClasses + NumCategories);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003482 for (unsigned i=0; i<NumClasses; i++)
Owen Anderson3c4972d2009-07-29 18:54:39 +00003483 Symbols[i] = llvm::ConstantExpr::getBitCast(DefinedClasses[i],
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003484 ObjCTypes.Int8PtrTy);
3485 for (unsigned i=0; i<NumCategories; i++)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003486 Symbols[NumClasses + i] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003487 llvm::ConstantExpr::getBitCast(DefinedCategories[i],
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003488 ObjCTypes.Int8PtrTy);
3489
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003490 Values[4] =
Owen Anderson96e0fc72009-07-29 22:16:19 +00003491 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003492 NumClasses + NumCategories),
3493 Symbols);
3494
Nick Lewycky0d36dd22009-09-19 20:00:52 +00003495 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003496
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003497 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003498 CreateMetadataVar("\01L_OBJC_SYMBOLS", Init,
3499 "__OBJC,__symbols,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003500 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00003501 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.SymtabPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003502}
3503
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003504llvm::Value *CGObjCMac::EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003505 const ObjCInterfaceDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003506 LazySymbols.insert(ID->getIdentifier());
3507
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003508 llvm::GlobalVariable *&Entry = ClassReferences[ID->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003509
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003510 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003511 llvm::Constant *Casted =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003512 llvm::ConstantExpr::getBitCast(GetClassName(ID->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003513 ObjCTypes.ClassPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003514 Entry =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003515 CreateMetadataVar("\01L_OBJC_CLASS_REFERENCES_", Casted,
3516 "__OBJC,__cls_refs,literal_pointers,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003517 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003518 }
3519
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00003520 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003521}
3522
Fariborz Jahanian03b29602010-06-17 19:56:20 +00003523llvm::Value *CGObjCMac::EmitSelector(CGBuilderTy &Builder, Selector Sel,
3524 bool lvalue) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003525 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003526
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003527 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003528 llvm::Constant *Casted =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003529 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003530 ObjCTypes.SelectorPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003531 Entry =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003532 CreateMetadataVar("\01L_OBJC_SELECTOR_REFERENCES_", Casted,
3533 "__OBJC,__message_refs,literal_pointers,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003534 4, true);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003535 }
3536
Fariborz Jahanian03b29602010-06-17 19:56:20 +00003537 if (lvalue)
3538 return Entry;
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00003539 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003540}
3541
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00003542llvm::Constant *CGObjCCommonMac::GetClassName(IdentifierInfo *Ident) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003543 llvm::GlobalVariable *&Entry = ClassNames[Ident];
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003544
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003545 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003546 Entry = CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00003547 llvm::ConstantArray::get(VMContext,
3548 Ident->getNameStart()),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003549 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003550 1, true);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003551
Owen Andersona1cf15f2009-07-14 23:10:40 +00003552 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003553}
3554
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +00003555llvm::Function *CGObjCCommonMac::GetMethodDefinition(const ObjCMethodDecl *MD) {
3556 llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*>::iterator
3557 I = MethodDefinitions.find(MD);
3558 if (I != MethodDefinitions.end())
3559 return I->second;
3560
3561 if (MD->hasBody() && MD->getPCHLevel() > 0) {
3562 // MD isn't emitted yet because it comes from PCH.
3563 CGM.EmitTopLevelDecl(const_cast<ObjCMethodDecl*>(MD));
3564 assert(MethodDefinitions[MD] && "EmitTopLevelDecl didn't emit the method!");
3565 return MethodDefinitions[MD];
3566 }
3567
3568 return NULL;
3569}
3570
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +00003571/// GetIvarLayoutName - Returns a unique constant for the given
3572/// ivar layout bitmap.
3573llvm::Constant *CGObjCCommonMac::GetIvarLayoutName(IdentifierInfo *Ident,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003574 const ObjCCommonTypesHelper &ObjCTypes) {
Owen Andersonc9c88b42009-07-31 20:28:54 +00003575 return llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +00003576}
3577
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003578void CGObjCCommonMac::BuildAggrIvarRecordLayout(const RecordType *RT,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003579 unsigned int BytePos,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003580 bool ForStrongLayout,
3581 bool &HasUnion) {
3582 const RecordDecl *RD = RT->getDecl();
3583 // FIXME - Use iterator.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003584 llvm::SmallVector<FieldDecl*, 16> Fields(RD->field_begin(), RD->field_end());
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003585 const llvm::Type *Ty = CGM.getTypes().ConvertType(QualType(RT, 0));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003586 const llvm::StructLayout *RecLayout =
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003587 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(Ty));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003588
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003589 BuildAggrIvarLayout(0, RecLayout, RD, Fields, BytePos,
3590 ForStrongLayout, HasUnion);
3591}
3592
Daniel Dunbar5a5a8032009-05-03 21:05:10 +00003593void CGObjCCommonMac::BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003594 const llvm::StructLayout *Layout,
3595 const RecordDecl *RD,
Chris Lattnerf1690852009-03-31 08:48:01 +00003596 const llvm::SmallVectorImpl<FieldDecl*> &RecFields,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003597 unsigned int BytePos, bool ForStrongLayout,
3598 bool &HasUnion) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003599 bool IsUnion = (RD && RD->isUnion());
3600 uint64_t MaxUnionIvarSize = 0;
3601 uint64_t MaxSkippedUnionIvarSize = 0;
3602 FieldDecl *MaxField = 0;
3603 FieldDecl *MaxSkippedField = 0;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003604 FieldDecl *LastFieldBitfield = 0;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003605 uint64_t MaxFieldOffset = 0;
3606 uint64_t MaxSkippedFieldOffset = 0;
3607 uint64_t LastBitfieldOffset = 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003608
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003609 if (RecFields.empty())
3610 return;
Chris Lattnerf1690852009-03-31 08:48:01 +00003611 unsigned WordSizeInBits = CGM.getContext().Target.getPointerWidth(0);
3612 unsigned ByteSizeInBits = CGM.getContext().Target.getCharWidth();
3613
Chris Lattnerf1690852009-03-31 08:48:01 +00003614 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003615 FieldDecl *Field = RecFields[i];
Daniel Dunbare05cc982009-05-03 23:35:23 +00003616 uint64_t FieldOffset;
Anders Carlssonfc514ab2009-07-24 17:23:54 +00003617 if (RD) {
Daniel Dunbarf8f8eba2010-04-14 17:02:21 +00003618 // Note that 'i' here is actually the field index inside RD of Field,
3619 // although this dependency is hidden.
3620 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
3621 FieldOffset = RL.getFieldOffset(i) / 8;
Anders Carlssonfc514ab2009-07-24 17:23:54 +00003622 } else
Daniel Dunbare05cc982009-05-03 23:35:23 +00003623 FieldOffset = ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(Field));
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003624
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003625 // Skip over unnamed or bitfields
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003626 if (!Field->getIdentifier() || Field->isBitField()) {
3627 LastFieldBitfield = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003628 LastBitfieldOffset = FieldOffset;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003629 continue;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003630 }
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003631
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003632 LastFieldBitfield = 0;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003633 QualType FQT = Field->getType();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003634 if (FQT->isRecordType() || FQT->isUnionType()) {
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003635 if (FQT->isUnionType())
3636 HasUnion = true;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003637
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003638 BuildAggrIvarRecordLayout(FQT->getAs<RecordType>(),
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003639 BytePos + FieldOffset,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003640 ForStrongLayout, HasUnion);
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003641 continue;
3642 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003643
Chris Lattnerf1690852009-03-31 08:48:01 +00003644 if (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003645 const ConstantArrayType *CArray =
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003646 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003647 uint64_t ElCount = CArray->getSize().getZExtValue();
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003648 assert(CArray && "only array with known element size is supported");
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003649 FQT = CArray->getElementType();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003650 while (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
3651 const ConstantArrayType *CArray =
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003652 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003653 ElCount *= CArray->getSize().getZExtValue();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003654 FQT = CArray->getElementType();
3655 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003656
3657 assert(!FQT->isUnionType() &&
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003658 "layout for array of unions not supported");
3659 if (FQT->isRecordType()) {
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003660 int OldIndex = IvarsInfo.size() - 1;
3661 int OldSkIndex = SkipIvars.size() -1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003662
Ted Kremenek6217b802009-07-29 21:53:49 +00003663 const RecordType *RT = FQT->getAs<RecordType>();
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003664 BuildAggrIvarRecordLayout(RT, BytePos + FieldOffset,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003665 ForStrongLayout, HasUnion);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003666
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003667 // Replicate layout information for each array element. Note that
3668 // one element is already done.
3669 uint64_t ElIx = 1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003670 for (int FirstIndex = IvarsInfo.size() - 1,
3671 FirstSkIndex = SkipIvars.size() - 1 ;ElIx < ElCount; ElIx++) {
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003672 uint64_t Size = CGM.getContext().getTypeSize(RT)/ByteSizeInBits;
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003673 for (int i = OldIndex+1; i <= FirstIndex; ++i)
3674 IvarsInfo.push_back(GC_IVAR(IvarsInfo[i].ivar_bytepos + Size*ElIx,
3675 IvarsInfo[i].ivar_size));
3676 for (int i = OldSkIndex+1; i <= FirstSkIndex; ++i)
3677 SkipIvars.push_back(GC_IVAR(SkipIvars[i].ivar_bytepos + Size*ElIx,
3678 SkipIvars[i].ivar_size));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003679 }
3680 continue;
3681 }
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003682 }
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003683 // At this point, we are done with Record/Union and array there of.
3684 // For other arrays we are down to its element type.
John McCall0953e762009-09-24 19:53:00 +00003685 Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), FQT);
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003686
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003687 unsigned FieldSize = CGM.getContext().getTypeSize(Field->getType());
John McCall0953e762009-09-24 19:53:00 +00003688 if ((ForStrongLayout && GCAttr == Qualifiers::Strong)
3689 || (!ForStrongLayout && GCAttr == Qualifiers::Weak)) {
Daniel Dunbar487993b2009-05-03 13:32:01 +00003690 if (IsUnion) {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003691 uint64_t UnionIvarSize = FieldSize / WordSizeInBits;
Daniel Dunbar487993b2009-05-03 13:32:01 +00003692 if (UnionIvarSize > MaxUnionIvarSize) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003693 MaxUnionIvarSize = UnionIvarSize;
3694 MaxField = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003695 MaxFieldOffset = FieldOffset;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003696 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003697 } else {
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003698 IvarsInfo.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003699 FieldSize / WordSizeInBits));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003700 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003701 } else if ((ForStrongLayout &&
John McCall0953e762009-09-24 19:53:00 +00003702 (GCAttr == Qualifiers::GCNone || GCAttr == Qualifiers::Weak))
3703 || (!ForStrongLayout && GCAttr != Qualifiers::Weak)) {
Daniel Dunbar487993b2009-05-03 13:32:01 +00003704 if (IsUnion) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00003705 // FIXME: Why the asymmetry? We divide by word size in bits on other
3706 // side.
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003707 uint64_t UnionIvarSize = FieldSize;
Daniel Dunbar487993b2009-05-03 13:32:01 +00003708 if (UnionIvarSize > MaxSkippedUnionIvarSize) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003709 MaxSkippedUnionIvarSize = UnionIvarSize;
3710 MaxSkippedField = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003711 MaxSkippedFieldOffset = FieldOffset;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003712 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003713 } else {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003714 // FIXME: Why the asymmetry, we divide by byte size in bits here?
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003715 SkipIvars.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003716 FieldSize / ByteSizeInBits));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003717 }
3718 }
3719 }
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003720
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003721 if (LastFieldBitfield) {
3722 // Last field was a bitfield. Must update skip info.
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003723 Expr *BitWidth = LastFieldBitfield->getBitWidth();
3724 uint64_t BitFieldSize =
Eli Friedman9a901bb2009-04-26 19:19:15 +00003725 BitWidth->EvaluateAsInt(CGM.getContext()).getZExtValue();
Daniel Dunbar487993b2009-05-03 13:32:01 +00003726 GC_IVAR skivar;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003727 skivar.ivar_bytepos = BytePos + LastBitfieldOffset;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003728 skivar.ivar_size = (BitFieldSize / ByteSizeInBits)
3729 + ((BitFieldSize % ByteSizeInBits) != 0);
3730 SkipIvars.push_back(skivar);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003731 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003732
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003733 if (MaxField)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003734 IvarsInfo.push_back(GC_IVAR(BytePos + MaxFieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003735 MaxUnionIvarSize));
3736 if (MaxSkippedField)
Daniel Dunbar900c1982009-05-03 23:31:46 +00003737 SkipIvars.push_back(GC_IVAR(BytePos + MaxSkippedFieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003738 MaxSkippedUnionIvarSize));
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003739}
3740
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00003741/// BuildIvarLayoutBitmap - This routine is the horsework for doing all
3742/// the computations and returning the layout bitmap (for ivar or blocks) in
3743/// the given argument BitMap string container. Routine reads
3744/// two containers, IvarsInfo and SkipIvars which are assumed to be
3745/// filled already by the caller.
3746llvm::Constant *CGObjCCommonMac::BuildIvarLayoutBitmap(std::string& BitMap) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003747 unsigned int WordsToScan, WordsToSkip;
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00003748 const llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003749
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003750 // Build the string of skip/scan nibbles
Fariborz Jahanian8c2f2d12009-04-24 17:15:27 +00003751 llvm::SmallVector<SKIP_SCAN, 32> SkipScanIvars;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003752 unsigned int WordSize =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003753 CGM.getTypes().getTargetData().getTypeAllocSize(PtrTy);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003754 if (IvarsInfo[0].ivar_bytepos == 0) {
3755 WordsToSkip = 0;
3756 WordsToScan = IvarsInfo[0].ivar_size;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003757 } else {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003758 WordsToSkip = IvarsInfo[0].ivar_bytepos/WordSize;
3759 WordsToScan = IvarsInfo[0].ivar_size;
3760 }
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003761 for (unsigned int i=1, Last=IvarsInfo.size(); i != Last; i++) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003762 unsigned int TailPrevGCObjC =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003763 IvarsInfo[i-1].ivar_bytepos + IvarsInfo[i-1].ivar_size * WordSize;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003764 if (IvarsInfo[i].ivar_bytepos == TailPrevGCObjC) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003765 // consecutive 'scanned' object pointers.
3766 WordsToScan += IvarsInfo[i].ivar_size;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003767 } else {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003768 // Skip over 'gc'able object pointer which lay over each other.
3769 if (TailPrevGCObjC > IvarsInfo[i].ivar_bytepos)
3770 continue;
3771 // Must skip over 1 or more words. We save current skip/scan values
3772 // and start a new pair.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003773 SKIP_SCAN SkScan;
3774 SkScan.skip = WordsToSkip;
3775 SkScan.scan = WordsToScan;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003776 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003777
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003778 // Skip the hole.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003779 SkScan.skip = (IvarsInfo[i].ivar_bytepos - TailPrevGCObjC) / WordSize;
3780 SkScan.scan = 0;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003781 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003782 WordsToSkip = 0;
3783 WordsToScan = IvarsInfo[i].ivar_size;
3784 }
3785 }
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003786 if (WordsToScan > 0) {
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003787 SKIP_SCAN SkScan;
3788 SkScan.skip = WordsToSkip;
3789 SkScan.scan = WordsToScan;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003790 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003791 }
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003792
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003793 if (!SkipIvars.empty()) {
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003794 unsigned int LastIndex = SkipIvars.size()-1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003795 int LastByteSkipped =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003796 SkipIvars[LastIndex].ivar_bytepos + SkipIvars[LastIndex].ivar_size;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003797 LastIndex = IvarsInfo.size()-1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003798 int LastByteScanned =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003799 IvarsInfo[LastIndex].ivar_bytepos +
3800 IvarsInfo[LastIndex].ivar_size * WordSize;
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003801 // Compute number of bytes to skip at the tail end of the last ivar scanned.
Benjamin Kramer54d76db2009-12-25 15:43:36 +00003802 if (LastByteSkipped > LastByteScanned) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003803 unsigned int TotalWords = (LastByteSkipped + (WordSize -1)) / WordSize;
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003804 SKIP_SCAN SkScan;
3805 SkScan.skip = TotalWords - (LastByteScanned/WordSize);
3806 SkScan.scan = 0;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003807 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003808 }
3809 }
3810 // Mini optimization of nibbles such that an 0xM0 followed by 0x0N is produced
3811 // as 0xMN.
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003812 int SkipScan = SkipScanIvars.size()-1;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003813 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003814 if ((i < SkipScan) && SkipScanIvars[i].skip && SkipScanIvars[i].scan == 0
3815 && SkipScanIvars[i+1].skip == 0 && SkipScanIvars[i+1].scan) {
3816 // 0xM0 followed by 0x0N detected.
3817 SkipScanIvars[i].scan = SkipScanIvars[i+1].scan;
3818 for (int j = i+1; j < SkipScan; j++)
3819 SkipScanIvars[j] = SkipScanIvars[j+1];
3820 --SkipScan;
3821 }
3822 }
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003823
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003824 // Generate the string.
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003825 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003826 unsigned char byte;
3827 unsigned int skip_small = SkipScanIvars[i].skip % 0xf;
3828 unsigned int scan_small = SkipScanIvars[i].scan % 0xf;
3829 unsigned int skip_big = SkipScanIvars[i].skip / 0xf;
3830 unsigned int scan_big = SkipScanIvars[i].scan / 0xf;
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003831
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003832 // first skip big.
3833 for (unsigned int ix = 0; ix < skip_big; ix++)
3834 BitMap += (unsigned char)(0xf0);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003835
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003836 // next (skip small, scan)
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003837 if (skip_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003838 byte = skip_small << 4;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003839 if (scan_big > 0) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003840 byte |= 0xf;
3841 --scan_big;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003842 } else if (scan_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003843 byte |= scan_small;
3844 scan_small = 0;
3845 }
3846 BitMap += byte;
3847 }
3848 // next scan big
3849 for (unsigned int ix = 0; ix < scan_big; ix++)
3850 BitMap += (unsigned char)(0x0f);
3851 // last scan small
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003852 if (scan_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003853 byte = scan_small;
3854 BitMap += byte;
3855 }
3856 }
3857 // null terminate string.
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003858 unsigned char zero = 0;
3859 BitMap += zero;
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003860
3861 llvm::GlobalVariable * Entry =
3862 CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
3863 llvm::ConstantArray::get(VMContext, BitMap.c_str()),
3864 "__TEXT,__cstring,cstring_literals",
3865 1, true);
3866 return getConstantGEP(VMContext, Entry, 0, 0);
3867}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003868
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003869/// BuildIvarLayout - Builds ivar layout bitmap for the class
3870/// implementation for the __strong or __weak case.
3871/// The layout map displays which words in ivar list must be skipped
3872/// and which must be scanned by GC (see below). String is built of bytes.
3873/// Each byte is divided up in two nibbles (4-bit each). Left nibble is count
3874/// of words to skip and right nibble is count of words to scan. So, each
3875/// nibble represents up to 15 workds to skip or scan. Skipping the rest is
3876/// represented by a 0x00 byte which also ends the string.
3877/// 1. when ForStrongLayout is true, following ivars are scanned:
3878/// - id, Class
3879/// - object *
3880/// - __strong anything
3881///
3882/// 2. When ForStrongLayout is false, following ivars are scanned:
3883/// - __weak anything
3884///
3885llvm::Constant *CGObjCCommonMac::BuildIvarLayout(
3886 const ObjCImplementationDecl *OMD,
3887 bool ForStrongLayout) {
3888 bool hasUnion = false;
3889
3890 const llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(VMContext);
3891 if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC)
3892 return llvm::Constant::getNullValue(PtrTy);
3893
3894 llvm::SmallVector<FieldDecl*, 32> RecFields;
3895 const ObjCInterfaceDecl *OI = OMD->getClassInterface();
3896 CGM.getContext().CollectObjCIvars(OI, RecFields);
3897
3898 // Add this implementations synthesized ivars.
3899 llvm::SmallVector<ObjCIvarDecl*, 16> Ivars;
3900 CGM.getContext().CollectNonClassIvars(OI, Ivars);
3901 for (unsigned k = 0, e = Ivars.size(); k != e; ++k)
3902 RecFields.push_back(cast<FieldDecl>(Ivars[k]));
3903
3904 if (RecFields.empty())
3905 return llvm::Constant::getNullValue(PtrTy);
3906
3907 SkipIvars.clear();
3908 IvarsInfo.clear();
3909
3910 BuildAggrIvarLayout(OMD, 0, 0, RecFields, 0, ForStrongLayout, hasUnion);
3911 if (IvarsInfo.empty())
3912 return llvm::Constant::getNullValue(PtrTy);
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00003913 // Sort on byte position in case we encounterred a union nested in
3914 // the ivar list.
3915 if (hasUnion && !IvarsInfo.empty())
3916 std::sort(IvarsInfo.begin(), IvarsInfo.end());
3917 if (hasUnion && !SkipIvars.empty())
3918 std::sort(SkipIvars.begin(), SkipIvars.end());
3919
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003920 std::string BitMap;
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00003921 llvm::Constant *C = BuildIvarLayoutBitmap(BitMap);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003922
3923 if (CGM.getLangOptions().ObjCGCBitmapPrint) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003924 printf("\n%s ivar layout for class '%s': ",
Fariborz Jahanian3d2ad662009-04-20 22:03:45 +00003925 ForStrongLayout ? "strong" : "weak",
Daniel Dunbar4087f272010-08-17 22:39:59 +00003926 OMD->getClassInterface()->getName().data());
Fariborz Jahanian3d2ad662009-04-20 22:03:45 +00003927 const unsigned char *s = (unsigned char*)BitMap.c_str();
3928 for (unsigned i = 0; i < BitMap.size(); i++)
3929 if (!(s[i] & 0xf0))
3930 printf("0x0%x%s", s[i], s[i] != 0 ? ", " : "");
3931 else
3932 printf("0x%x%s", s[i], s[i] != 0 ? ", " : "");
3933 printf("\n");
3934 }
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003935 return C;
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003936}
3937
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003938llvm::Constant *CGObjCCommonMac::GetMethodVarName(Selector Sel) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003939 llvm::GlobalVariable *&Entry = MethodVarNames[Sel];
3940
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003941 // FIXME: Avoid std::string copying.
3942 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003943 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_NAME_",
Owen Anderson0032b272009-08-13 21:57:51 +00003944 llvm::ConstantArray::get(VMContext, Sel.getAsString()),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003945 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003946 1, true);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003947
Owen Andersona1cf15f2009-07-14 23:10:40 +00003948 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003949}
3950
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003951// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003952llvm::Constant *CGObjCCommonMac::GetMethodVarName(IdentifierInfo *ID) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003953 return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID));
3954}
3955
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00003956llvm::Constant *CGObjCCommonMac::GetMethodVarType(const FieldDecl *Field) {
Devang Patel7794bb82009-03-04 18:21:39 +00003957 std::string TypeStr;
3958 CGM.getContext().getObjCEncodingForType(Field->getType(), TypeStr, Field);
3959
3960 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003961
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003962 if (!Entry)
3963 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
Owen Anderson0032b272009-08-13 21:57:51 +00003964 llvm::ConstantArray::get(VMContext, TypeStr),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003965 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003966 1, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003967
Owen Andersona1cf15f2009-07-14 23:10:40 +00003968 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003969}
3970
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003971llvm::Constant *CGObjCCommonMac::GetMethodVarType(const ObjCMethodDecl *D) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003972 std::string TypeStr;
Daniel Dunbarc45ef602008-08-26 21:51:14 +00003973 CGM.getContext().getObjCEncodingForMethodDecl(const_cast<ObjCMethodDecl*>(D),
3974 TypeStr);
Devang Patel7794bb82009-03-04 18:21:39 +00003975
3976 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
3977
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003978 if (!Entry)
3979 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
Owen Anderson0032b272009-08-13 21:57:51 +00003980 llvm::ConstantArray::get(VMContext, TypeStr),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003981 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003982 1, true);
Devang Patel7794bb82009-03-04 18:21:39 +00003983
Owen Andersona1cf15f2009-07-14 23:10:40 +00003984 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003985}
3986
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003987// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003988llvm::Constant *CGObjCCommonMac::GetPropertyName(IdentifierInfo *Ident) {
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003989 llvm::GlobalVariable *&Entry = PropertyNames[Ident];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003990
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003991 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003992 Entry = CreateMetadataVar("\01L_OBJC_PROP_NAME_ATTR_",
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00003993 llvm::ConstantArray::get(VMContext,
3994 Ident->getNameStart()),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003995 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003996 1, true);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003997
Owen Andersona1cf15f2009-07-14 23:10:40 +00003998 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003999}
4000
4001// FIXME: Merge into a single cstring creation function.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004002// FIXME: This Decl should be more precise.
Daniel Dunbar63c5b502009-03-09 21:49:58 +00004003llvm::Constant *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004004CGObjCCommonMac::GetPropertyTypeString(const ObjCPropertyDecl *PD,
4005 const Decl *Container) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004006 std::string TypeStr;
4007 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00004008 return GetPropertyName(&CGM.getContext().Idents.get(TypeStr));
4009}
4010
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004011void CGObjCCommonMac::GetNameForMethod(const ObjCMethodDecl *D,
Fariborz Jahanian56210f72009-01-21 23:34:32 +00004012 const ObjCContainerDecl *CD,
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004013 llvm::SmallVectorImpl<char> &Name) {
4014 llvm::raw_svector_ostream OS(Name);
Fariborz Jahanian679a5022009-01-10 21:06:09 +00004015 assert (CD && "Missing container decl in GetNameForMethod");
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004016 OS << '\01' << (D->isInstanceMethod() ? '-' : '+')
4017 << '[' << CD->getName();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004018 if (const ObjCCategoryImplDecl *CID =
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004019 dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext()))
Benjamin Kramer900fc632010-04-17 09:33:03 +00004020 OS << '(' << CID << ')';
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004021 OS << ' ' << D->getSelector().getAsString() << ']';
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00004022}
4023
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004024void CGObjCMac::FinishModule() {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004025 EmitModuleInfo();
4026
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004027 // Emit the dummy bodies for any protocols which were referenced but
4028 // never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004029 for (llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*>::iterator
Chris Lattnerad64e022009-07-17 23:57:13 +00004030 I = Protocols.begin(), e = Protocols.end(); I != e; ++I) {
4031 if (I->second->hasInitializer())
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004032 continue;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004033
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004034 std::vector<llvm::Constant*> Values(5);
Owen Andersonc9c88b42009-07-31 20:28:54 +00004035 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
Chris Lattnerad64e022009-07-17 23:57:13 +00004036 Values[1] = GetClassName(I->first);
Owen Andersonc9c88b42009-07-31 20:28:54 +00004037 Values[2] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004038 Values[3] = Values[4] =
Owen Andersonc9c88b42009-07-31 20:28:54 +00004039 llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
Chris Lattnerad64e022009-07-17 23:57:13 +00004040 I->second->setLinkage(llvm::GlobalValue::InternalLinkage);
Owen Anderson08e25242009-07-27 22:29:56 +00004041 I->second->setInitializer(llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004042 Values));
Chris Lattnerad64e022009-07-17 23:57:13 +00004043 CGM.AddUsedGlobal(I->second);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004044 }
4045
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00004046 // Add assembler directives to add lazy undefined symbol references
4047 // for classes which are referenced but not defined. This is
4048 // important for correct linker interaction.
Daniel Dunbar33063492009-09-07 00:20:42 +00004049 //
4050 // FIXME: It would be nice if we had an LLVM construct for this.
4051 if (!LazySymbols.empty() || !DefinedSymbols.empty()) {
4052 llvm::SmallString<256> Asm;
4053 Asm += CGM.getModule().getModuleInlineAsm();
4054 if (!Asm.empty() && Asm.back() != '\n')
4055 Asm += '\n';
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00004056
Daniel Dunbar33063492009-09-07 00:20:42 +00004057 llvm::raw_svector_ostream OS(Asm);
Daniel Dunbar33063492009-09-07 00:20:42 +00004058 for (llvm::SetVector<IdentifierInfo*>::iterator I = DefinedSymbols.begin(),
4059 e = DefinedSymbols.end(); I != e; ++I)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00004060 OS << "\t.objc_class_name_" << (*I)->getName() << "=0\n"
4061 << "\t.globl .objc_class_name_" << (*I)->getName() << "\n";
Chris Lattnerafd5eda2010-04-17 18:26:20 +00004062 for (llvm::SetVector<IdentifierInfo*>::iterator I = LazySymbols.begin(),
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00004063 e = LazySymbols.end(); I != e; ++I) {
Chris Lattnerafd5eda2010-04-17 18:26:20 +00004064 OS << "\t.lazy_reference .objc_class_name_" << (*I)->getName() << "\n";
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00004065 }
4066
4067 for (size_t i = 0; i < DefinedCategoryNames.size(); ++i) {
4068 OS << "\t.objc_category_name_" << DefinedCategoryNames[i] << "=0\n"
4069 << "\t.globl .objc_category_name_" << DefinedCategoryNames[i] << "\n";
4070 }
Chris Lattnerafd5eda2010-04-17 18:26:20 +00004071
Daniel Dunbar33063492009-09-07 00:20:42 +00004072 CGM.getModule().setModuleInlineAsm(OS.str());
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00004073 }
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004074}
4075
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004076CGObjCNonFragileABIMac::CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm)
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004077 : CGObjCCommonMac(cgm),
Mike Stump1eb44332009-09-09 15:08:12 +00004078 ObjCTypes(cgm) {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004079 ObjCEmptyCacheVar = ObjCEmptyVtableVar = NULL;
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004080 ObjCABI = 2;
4081}
4082
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004083/* *** */
4084
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004085ObjCCommonTypesHelper::ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004086 : VMContext(cgm.getLLVMContext()), CGM(cgm) {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004087 CodeGen::CodeGenTypes &Types = CGM.getTypes();
4088 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004089
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004090 ShortTy = Types.ConvertType(Ctx.ShortTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004091 IntTy = Types.ConvertType(Ctx.IntTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004092 LongTy = Types.ConvertType(Ctx.LongTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00004093 LongLongTy = Types.ConvertType(Ctx.LongLongTy);
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00004094 Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004095
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004096 ObjectPtrTy = Types.ConvertType(Ctx.getObjCIdType());
Owen Anderson96e0fc72009-07-29 22:16:19 +00004097 PtrObjectPtrTy = llvm::PointerType::getUnqual(ObjectPtrTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004098 SelectorPtrTy = Types.ConvertType(Ctx.getObjCSelType());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004099
Mike Stumpf5408fe2009-05-16 07:57:57 +00004100 // FIXME: It would be nice to unify this with the opaque type, so that the IR
4101 // comes out a bit cleaner.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004102 const llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType());
Owen Anderson96e0fc72009-07-29 22:16:19 +00004103 ExternalProtocolPtrTy = llvm::PointerType::getUnqual(T);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004104
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004105 // I'm not sure I like this. The implicit coordination is a bit
4106 // gross. We should solve this in a reasonable fashion because this
4107 // is a pretty common task (match some runtime data structure with
4108 // an LLVM data structure).
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004109
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004110 // FIXME: This is leaked.
4111 // FIXME: Merge with rewriter code?
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004112
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004113 // struct _objc_super {
4114 // id self;
4115 // Class cls;
4116 // }
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004117 RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
Daniel Dunbardaa3ac52010-04-29 16:29:11 +00004118 Ctx.getTranslationUnitDecl(),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004119 SourceLocation(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004120 &Ctx.Idents.get("_objc_super"));
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004121 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004122 Ctx.getObjCIdType(), 0, 0, false));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004123 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004124 Ctx.getObjCClassType(), 0, 0, false));
Douglas Gregor838db382010-02-11 01:19:42 +00004125 RD->completeDefinition();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004126
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004127 SuperCTy = Ctx.getTagDeclType(RD);
4128 SuperPtrCTy = Ctx.getPointerType(SuperCTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004129
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004130 SuperTy = cast<llvm::StructType>(Types.ConvertType(SuperCTy));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004131 SuperPtrTy = llvm::PointerType::getUnqual(SuperTy);
4132
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004133 // struct _prop_t {
4134 // char *name;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004135 // char *attributes;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004136 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004137 PropertyTy = llvm::StructType::get(VMContext, Int8PtrTy, Int8PtrTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004138 CGM.getModule().addTypeName("struct._prop_t",
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004139 PropertyTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004140
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004141 // struct _prop_list_t {
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004142 // uint32_t entsize; // sizeof(struct _prop_t)
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004143 // uint32_t count_of_properties;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004144 // struct _prop_t prop_list[count_of_properties];
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004145 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004146 PropertyListTy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004147 IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004148 llvm::ArrayType::get(PropertyTy, 0),
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004149 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004150 CGM.getModule().addTypeName("struct._prop_list_t",
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004151 PropertyListTy);
4152 // struct _prop_list_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004153 PropertyListPtrTy = llvm::PointerType::getUnqual(PropertyListTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004154
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004155 // struct _objc_method {
4156 // SEL _cmd;
4157 // char *method_type;
4158 // char *_imp;
4159 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004160 MethodTy = llvm::StructType::get(VMContext, SelectorPtrTy,
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004161 Int8PtrTy,
4162 Int8PtrTy,
4163 NULL);
4164 CGM.getModule().addTypeName("struct._objc_method", MethodTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004165
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004166 // struct _objc_cache *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004167 CacheTy = llvm::OpaqueType::get(VMContext);
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004168 CGM.getModule().addTypeName("struct._objc_cache", CacheTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004169 CachePtrTy = llvm::PointerType::getUnqual(CacheTy);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004170}
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004171
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004172ObjCTypesHelper::ObjCTypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004173 : ObjCCommonTypesHelper(cgm) {
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004174 // struct _objc_method_description {
4175 // SEL name;
4176 // char *types;
4177 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004178 MethodDescriptionTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004179 llvm::StructType::get(VMContext, SelectorPtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004180 Int8PtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004181 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004182 CGM.getModule().addTypeName("struct._objc_method_description",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004183 MethodDescriptionTy);
4184
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004185 // struct _objc_method_description_list {
4186 // int count;
4187 // struct _objc_method_description[1];
4188 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004189 MethodDescriptionListTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004190 llvm::StructType::get(VMContext, IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004191 llvm::ArrayType::get(MethodDescriptionTy, 0),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004192 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004193 CGM.getModule().addTypeName("struct._objc_method_description_list",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004194 MethodDescriptionListTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004195
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004196 // struct _objc_method_description_list *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004197 MethodDescriptionListPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +00004198 llvm::PointerType::getUnqual(MethodDescriptionListTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004199
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004200 // Protocol description structures
4201
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004202 // struct _objc_protocol_extension {
4203 // uint32_t size; // sizeof(struct _objc_protocol_extension)
4204 // struct _objc_method_description_list *optional_instance_methods;
4205 // struct _objc_method_description_list *optional_class_methods;
4206 // struct _objc_property_list *instance_properties;
4207 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004208 ProtocolExtensionTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004209 llvm::StructType::get(VMContext, IntTy,
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004210 MethodDescriptionListPtrTy,
4211 MethodDescriptionListPtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004212 PropertyListPtrTy,
4213 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004214 CGM.getModule().addTypeName("struct._objc_protocol_extension",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004215 ProtocolExtensionTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004216
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004217 // struct _objc_protocol_extension *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004218 ProtocolExtensionPtrTy = llvm::PointerType::getUnqual(ProtocolExtensionTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004219
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004220 // Handle recursive construction of Protocol and ProtocolList types
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004221
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004222 llvm::PATypeHolder ProtocolTyHolder = llvm::OpaqueType::get(VMContext);
4223 llvm::PATypeHolder ProtocolListTyHolder = llvm::OpaqueType::get(VMContext);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004224
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004225 const llvm::Type *T =
Mike Stump1eb44332009-09-09 15:08:12 +00004226 llvm::StructType::get(VMContext,
Owen Anderson47a434f2009-08-05 23:18:46 +00004227 llvm::PointerType::getUnqual(ProtocolListTyHolder),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004228 LongTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004229 llvm::ArrayType::get(ProtocolTyHolder, 0),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004230 NULL);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004231 cast<llvm::OpaqueType>(ProtocolListTyHolder.get())->refineAbstractTypeTo(T);
4232
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004233 // struct _objc_protocol {
4234 // struct _objc_protocol_extension *isa;
4235 // char *protocol_name;
4236 // struct _objc_protocol **_objc_protocol_list;
4237 // struct _objc_method_description_list *instance_methods;
4238 // struct _objc_method_description_list *class_methods;
4239 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004240 T = llvm::StructType::get(VMContext, ProtocolExtensionPtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004241 Int8PtrTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004242 llvm::PointerType::getUnqual(ProtocolListTyHolder),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004243 MethodDescriptionListPtrTy,
4244 MethodDescriptionListPtrTy,
4245 NULL);
4246 cast<llvm::OpaqueType>(ProtocolTyHolder.get())->refineAbstractTypeTo(T);
4247
4248 ProtocolListTy = cast<llvm::StructType>(ProtocolListTyHolder.get());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004249 CGM.getModule().addTypeName("struct._objc_protocol_list",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004250 ProtocolListTy);
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004251 // struct _objc_protocol_list *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004252 ProtocolListPtrTy = llvm::PointerType::getUnqual(ProtocolListTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004253
4254 ProtocolTy = cast<llvm::StructType>(ProtocolTyHolder.get());
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004255 CGM.getModule().addTypeName("struct._objc_protocol", ProtocolTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004256 ProtocolPtrTy = llvm::PointerType::getUnqual(ProtocolTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004257
4258 // Class description structures
4259
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004260 // struct _objc_ivar {
4261 // char *ivar_name;
4262 // char *ivar_type;
4263 // int ivar_offset;
4264 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004265 IvarTy = llvm::StructType::get(VMContext, Int8PtrTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004266 Int8PtrTy,
4267 IntTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004268 NULL);
4269 CGM.getModule().addTypeName("struct._objc_ivar", IvarTy);
4270
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004271 // struct _objc_ivar_list *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004272 IvarListTy = llvm::OpaqueType::get(VMContext);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004273 CGM.getModule().addTypeName("struct._objc_ivar_list", IvarListTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004274 IvarListPtrTy = llvm::PointerType::getUnqual(IvarListTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004275
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004276 // struct _objc_method_list *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004277 MethodListTy = llvm::OpaqueType::get(VMContext);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004278 CGM.getModule().addTypeName("struct._objc_method_list", MethodListTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004279 MethodListPtrTy = llvm::PointerType::getUnqual(MethodListTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004280
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004281 // struct _objc_class_extension *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004282 ClassExtensionTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004283 llvm::StructType::get(VMContext, IntTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004284 Int8PtrTy,
4285 PropertyListPtrTy,
4286 NULL);
4287 CGM.getModule().addTypeName("struct._objc_class_extension", ClassExtensionTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004288 ClassExtensionPtrTy = llvm::PointerType::getUnqual(ClassExtensionTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004289
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004290 llvm::PATypeHolder ClassTyHolder = llvm::OpaqueType::get(VMContext);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004291
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004292 // struct _objc_class {
4293 // Class isa;
4294 // Class super_class;
4295 // char *name;
4296 // long version;
4297 // long info;
4298 // long instance_size;
4299 // struct _objc_ivar_list *ivars;
4300 // struct _objc_method_list *methods;
4301 // struct _objc_cache *cache;
4302 // struct _objc_protocol_list *protocols;
4303 // char *ivar_layout;
4304 // struct _objc_class_ext *ext;
4305 // };
Owen Anderson47a434f2009-08-05 23:18:46 +00004306 T = llvm::StructType::get(VMContext,
4307 llvm::PointerType::getUnqual(ClassTyHolder),
Owen Anderson96e0fc72009-07-29 22:16:19 +00004308 llvm::PointerType::getUnqual(ClassTyHolder),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004309 Int8PtrTy,
4310 LongTy,
4311 LongTy,
4312 LongTy,
4313 IvarListPtrTy,
4314 MethodListPtrTy,
4315 CachePtrTy,
4316 ProtocolListPtrTy,
4317 Int8PtrTy,
4318 ClassExtensionPtrTy,
4319 NULL);
4320 cast<llvm::OpaqueType>(ClassTyHolder.get())->refineAbstractTypeTo(T);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004321
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004322 ClassTy = cast<llvm::StructType>(ClassTyHolder.get());
4323 CGM.getModule().addTypeName("struct._objc_class", ClassTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004324 ClassPtrTy = llvm::PointerType::getUnqual(ClassTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004325
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004326 // struct _objc_category {
4327 // char *category_name;
4328 // char *class_name;
4329 // struct _objc_method_list *instance_method;
4330 // struct _objc_method_list *class_method;
4331 // uint32_t size; // sizeof(struct _objc_category)
4332 // struct _objc_property_list *instance_properties;// category's @property
4333 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004334 CategoryTy = llvm::StructType::get(VMContext, Int8PtrTy,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00004335 Int8PtrTy,
4336 MethodListPtrTy,
4337 MethodListPtrTy,
4338 ProtocolListPtrTy,
4339 IntTy,
4340 PropertyListPtrTy,
4341 NULL);
4342 CGM.getModule().addTypeName("struct._objc_category", CategoryTy);
4343
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004344 // Global metadata structures
4345
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004346 // struct _objc_symtab {
4347 // long sel_ref_cnt;
4348 // SEL *refs;
4349 // short cls_def_cnt;
4350 // short cat_def_cnt;
4351 // char *defs[cls_def_cnt + cat_def_cnt];
4352 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004353 SymtabTy = llvm::StructType::get(VMContext, LongTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004354 SelectorPtrTy,
4355 ShortTy,
4356 ShortTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004357 llvm::ArrayType::get(Int8PtrTy, 0),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004358 NULL);
4359 CGM.getModule().addTypeName("struct._objc_symtab", SymtabTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004360 SymtabPtrTy = llvm::PointerType::getUnqual(SymtabTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004361
Fariborz Jahaniandb286862009-01-22 00:37:21 +00004362 // struct _objc_module {
4363 // long version;
4364 // long size; // sizeof(struct _objc_module)
4365 // char *name;
4366 // struct _objc_symtab* symtab;
4367 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004368 ModuleTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004369 llvm::StructType::get(VMContext, LongTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004370 LongTy,
4371 Int8PtrTy,
4372 SymtabPtrTy,
4373 NULL);
4374 CGM.getModule().addTypeName("struct._objc_module", ModuleTy);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00004375
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004376
Mike Stumpf5408fe2009-05-16 07:57:57 +00004377 // FIXME: This is the size of the setjmp buffer and should be target
4378 // specific. 18 is what's used on 32-bit X86.
Anders Carlsson124526b2008-09-09 10:10:21 +00004379 uint64_t SetJmpBufferSize = 18;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004380
Anders Carlsson124526b2008-09-09 10:10:21 +00004381 // Exceptions
Owen Anderson96e0fc72009-07-29 22:16:19 +00004382 const llvm::Type *StackPtrTy = llvm::ArrayType::get(
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00004383 llvm::Type::getInt8PtrTy(VMContext), 4);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004384
4385 ExceptionDataTy =
Chris Lattner77b89b82010-06-27 07:15:29 +00004386 llvm::StructType::get(VMContext,
4387 llvm::ArrayType::get(llvm::Type::getInt32Ty(VMContext),
4388 SetJmpBufferSize),
Anders Carlsson124526b2008-09-09 10:10:21 +00004389 StackPtrTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004390 CGM.getModule().addTypeName("struct._objc_exception_data",
Anders Carlsson124526b2008-09-09 10:10:21 +00004391 ExceptionDataTy);
4392
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00004393}
4394
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004395ObjCNonFragileABITypesHelper::ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004396 : ObjCCommonTypesHelper(cgm) {
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004397 // struct _method_list_t {
4398 // uint32_t entsize; // sizeof(struct _objc_method)
4399 // uint32_t method_count;
4400 // struct _objc_method method_list[method_count];
4401 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004402 MethodListnfABITy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004403 IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004404 llvm::ArrayType::get(MethodTy, 0),
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004405 NULL);
4406 CGM.getModule().addTypeName("struct.__method_list_t",
4407 MethodListnfABITy);
4408 // struct method_list_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004409 MethodListnfABIPtrTy = llvm::PointerType::getUnqual(MethodListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004410
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004411 // struct _protocol_t {
4412 // id isa; // NULL
4413 // const char * const protocol_name;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004414 // const struct _protocol_list_t * protocol_list; // super protocols
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004415 // const struct method_list_t * const instance_methods;
4416 // const struct method_list_t * const class_methods;
4417 // const struct method_list_t *optionalInstanceMethods;
4418 // const struct method_list_t *optionalClassMethods;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004419 // const struct _prop_list_t * properties;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004420 // const uint32_t size; // sizeof(struct _protocol_t)
4421 // const uint32_t flags; // = 0
4422 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004423
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004424 // Holder for struct _protocol_list_t *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004425 llvm::PATypeHolder ProtocolListTyHolder = llvm::OpaqueType::get(VMContext);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004426
Owen Anderson47a434f2009-08-05 23:18:46 +00004427 ProtocolnfABITy = llvm::StructType::get(VMContext, ObjectPtrTy,
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004428 Int8PtrTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004429 llvm::PointerType::getUnqual(
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004430 ProtocolListTyHolder),
4431 MethodListnfABIPtrTy,
4432 MethodListnfABIPtrTy,
4433 MethodListnfABIPtrTy,
4434 MethodListnfABIPtrTy,
4435 PropertyListPtrTy,
4436 IntTy,
4437 IntTy,
4438 NULL);
4439 CGM.getModule().addTypeName("struct._protocol_t",
4440 ProtocolnfABITy);
Daniel Dunbar948e2582009-02-15 07:36:20 +00004441
4442 // struct _protocol_t*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004443 ProtocolnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004444
Fariborz Jahanianda320092009-01-29 19:24:30 +00004445 // struct _protocol_list_t {
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004446 // long protocol_count; // Note, this is 32/64 bit
Daniel Dunbar948e2582009-02-15 07:36:20 +00004447 // struct _protocol_t *[protocol_count];
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004448 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004449 ProtocolListnfABITy = llvm::StructType::get(VMContext, LongTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004450 llvm::ArrayType::get(
Daniel Dunbar948e2582009-02-15 07:36:20 +00004451 ProtocolnfABIPtrTy, 0),
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004452 NULL);
4453 CGM.getModule().addTypeName("struct._objc_protocol_list",
4454 ProtocolListnfABITy);
Daniel Dunbar948e2582009-02-15 07:36:20 +00004455 cast<llvm::OpaqueType>(ProtocolListTyHolder.get())->refineAbstractTypeTo(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004456 ProtocolListnfABITy);
4457
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004458 // struct _objc_protocol_list*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004459 ProtocolListnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004460
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004461 // struct _ivar_t {
4462 // unsigned long int *offset; // pointer to ivar offset location
4463 // char *name;
4464 // char *type;
4465 // uint32_t alignment;
4466 // uint32_t size;
4467 // }
Mike Stump1eb44332009-09-09 15:08:12 +00004468 IvarnfABITy = llvm::StructType::get(VMContext,
Owen Anderson47a434f2009-08-05 23:18:46 +00004469 llvm::PointerType::getUnqual(LongTy),
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004470 Int8PtrTy,
4471 Int8PtrTy,
4472 IntTy,
4473 IntTy,
4474 NULL);
4475 CGM.getModule().addTypeName("struct._ivar_t", IvarnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004476
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004477 // struct _ivar_list_t {
4478 // uint32 entsize; // sizeof(struct _ivar_t)
4479 // uint32 count;
4480 // struct _iver_t list[count];
4481 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004482 IvarListnfABITy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004483 IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004484 llvm::ArrayType::get(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004485 IvarnfABITy, 0),
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004486 NULL);
4487 CGM.getModule().addTypeName("struct._ivar_list_t", IvarListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004488
Owen Anderson96e0fc72009-07-29 22:16:19 +00004489 IvarListnfABIPtrTy = llvm::PointerType::getUnqual(IvarListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004490
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004491 // struct _class_ro_t {
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004492 // uint32_t const flags;
4493 // uint32_t const instanceStart;
4494 // uint32_t const instanceSize;
4495 // uint32_t const reserved; // only when building for 64bit targets
4496 // const uint8_t * const ivarLayout;
4497 // const char *const name;
4498 // const struct _method_list_t * const baseMethods;
4499 // const struct _objc_protocol_list *const baseProtocols;
4500 // const struct _ivar_list_t *const ivars;
4501 // const uint8_t * const weakIvarLayout;
4502 // const struct _prop_list_t * const properties;
4503 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004504
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004505 // FIXME. Add 'reserved' field in 64bit abi mode!
Owen Anderson47a434f2009-08-05 23:18:46 +00004506 ClassRonfABITy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004507 IntTy,
4508 IntTy,
4509 Int8PtrTy,
4510 Int8PtrTy,
4511 MethodListnfABIPtrTy,
4512 ProtocolListnfABIPtrTy,
4513 IvarListnfABIPtrTy,
4514 Int8PtrTy,
4515 PropertyListPtrTy,
4516 NULL);
4517 CGM.getModule().addTypeName("struct._class_ro_t",
4518 ClassRonfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004519
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004520 // ImpnfABITy - LLVM for id (*)(id, SEL, ...)
4521 std::vector<const llvm::Type*> Params;
4522 Params.push_back(ObjectPtrTy);
4523 Params.push_back(SelectorPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004524 ImpnfABITy = llvm::PointerType::getUnqual(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004525 llvm::FunctionType::get(ObjectPtrTy, Params, false));
4526
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004527 // struct _class_t {
4528 // struct _class_t *isa;
4529 // struct _class_t * const superclass;
4530 // void *cache;
4531 // IMP *vtable;
4532 // struct class_ro_t *ro;
4533 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004534
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004535 llvm::PATypeHolder ClassTyHolder = llvm::OpaqueType::get(VMContext);
Owen Andersona1cf15f2009-07-14 23:10:40 +00004536 ClassnfABITy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004537 llvm::StructType::get(VMContext,
4538 llvm::PointerType::getUnqual(ClassTyHolder),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004539 llvm::PointerType::getUnqual(ClassTyHolder),
4540 CachePtrTy,
4541 llvm::PointerType::getUnqual(ImpnfABITy),
4542 llvm::PointerType::getUnqual(ClassRonfABITy),
4543 NULL);
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004544 CGM.getModule().addTypeName("struct._class_t", ClassnfABITy);
4545
4546 cast<llvm::OpaqueType>(ClassTyHolder.get())->refineAbstractTypeTo(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004547 ClassnfABITy);
4548
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004549 // LLVM for struct _class_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004550 ClassnfABIPtrTy = llvm::PointerType::getUnqual(ClassnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004551
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004552 // struct _category_t {
4553 // const char * const name;
4554 // struct _class_t *const cls;
4555 // const struct _method_list_t * const instance_methods;
4556 // const struct _method_list_t * const class_methods;
4557 // const struct _protocol_list_t * const protocols;
4558 // const struct _prop_list_t * const properties;
Fariborz Jahanian45c2ba02009-01-23 17:41:22 +00004559 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004560 CategorynfABITy = llvm::StructType::get(VMContext, Int8PtrTy,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004561 ClassnfABIPtrTy,
Fariborz Jahanian45c2ba02009-01-23 17:41:22 +00004562 MethodListnfABIPtrTy,
4563 MethodListnfABIPtrTy,
4564 ProtocolListnfABIPtrTy,
4565 PropertyListPtrTy,
4566 NULL);
4567 CGM.getModule().addTypeName("struct._category_t", CategorynfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004568
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004569 // New types for nonfragile abi messaging.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004570 CodeGen::CodeGenTypes &Types = CGM.getTypes();
4571 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004572
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004573 // MessageRefTy - LLVM for:
4574 // struct _message_ref_t {
4575 // IMP messenger;
4576 // SEL name;
4577 // };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004578
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004579 // First the clang type for struct _message_ref_t
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004580 RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
Daniel Dunbardaa3ac52010-04-29 16:29:11 +00004581 Ctx.getTranslationUnitDecl(),
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004582 SourceLocation(),
4583 &Ctx.Idents.get("_message_ref_t"));
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004584 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004585 Ctx.VoidPtrTy, 0, 0, false));
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004586 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004587 Ctx.getObjCSelType(), 0, 0, false));
Douglas Gregor838db382010-02-11 01:19:42 +00004588 RD->completeDefinition();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004589
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004590 MessageRefCTy = Ctx.getTagDeclType(RD);
4591 MessageRefCPtrTy = Ctx.getPointerType(MessageRefCTy);
4592 MessageRefTy = cast<llvm::StructType>(Types.ConvertType(MessageRefCTy));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004593
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004594 // MessageRefPtrTy - LLVM for struct _message_ref_t*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004595 MessageRefPtrTy = llvm::PointerType::getUnqual(MessageRefTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004596
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004597 // SuperMessageRefTy - LLVM for:
4598 // struct _super_message_ref_t {
4599 // SUPER_IMP messenger;
4600 // SEL name;
4601 // };
Owen Anderson47a434f2009-08-05 23:18:46 +00004602 SuperMessageRefTy = llvm::StructType::get(VMContext, ImpnfABITy,
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004603 SelectorPtrTy,
4604 NULL);
4605 CGM.getModule().addTypeName("struct._super_message_ref_t", SuperMessageRefTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004606
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004607 // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t*
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004608 SuperMessageRefPtrTy = llvm::PointerType::getUnqual(SuperMessageRefTy);
4609
Daniel Dunbare588b992009-03-01 04:46:24 +00004610
4611 // struct objc_typeinfo {
4612 // const void** vtable; // objc_ehtype_vtable + 2
4613 // const char* name; // c++ typeinfo string
4614 // Class cls;
4615 // };
Owen Anderson47a434f2009-08-05 23:18:46 +00004616 EHTypeTy = llvm::StructType::get(VMContext,
4617 llvm::PointerType::getUnqual(Int8PtrTy),
Daniel Dunbare588b992009-03-01 04:46:24 +00004618 Int8PtrTy,
4619 ClassnfABIPtrTy,
4620 NULL);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00004621 CGM.getModule().addTypeName("struct._objc_typeinfo", EHTypeTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004622 EHTypePtrTy = llvm::PointerType::getUnqual(EHTypeTy);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00004623}
4624
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004625llvm::Function *CGObjCNonFragileABIMac::ModuleInitFunction() {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004626 FinishNonFragileABIModule();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004627
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004628 return NULL;
4629}
4630
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004631void CGObjCNonFragileABIMac::AddModuleClassList(const
4632 std::vector<llvm::GlobalValue*>
4633 &Container,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004634 const char *SymbolName,
4635 const char *SectionName) {
4636 unsigned NumClasses = Container.size();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004637
Daniel Dunbar463b8762009-05-15 21:48:48 +00004638 if (!NumClasses)
4639 return;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004640
Daniel Dunbar463b8762009-05-15 21:48:48 +00004641 std::vector<llvm::Constant*> Symbols(NumClasses);
4642 for (unsigned i=0; i<NumClasses; i++)
Owen Anderson3c4972d2009-07-29 18:54:39 +00004643 Symbols[i] = llvm::ConstantExpr::getBitCast(Container[i],
Daniel Dunbar463b8762009-05-15 21:48:48 +00004644 ObjCTypes.Int8PtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004645 llvm::Constant* Init =
Owen Anderson96e0fc72009-07-29 22:16:19 +00004646 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004647 NumClasses),
4648 Symbols);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004649
Daniel Dunbar463b8762009-05-15 21:48:48 +00004650 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00004651 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004652 llvm::GlobalValue::InternalLinkage,
4653 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00004654 SymbolName);
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004655 GV->setAlignment(CGM.getTargetData().getABITypeAlignment(Init->getType()));
Daniel Dunbar463b8762009-05-15 21:48:48 +00004656 GV->setSection(SectionName);
Chris Lattnerad64e022009-07-17 23:57:13 +00004657 CGM.AddUsedGlobal(GV);
Daniel Dunbar463b8762009-05-15 21:48:48 +00004658}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004659
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004660void CGObjCNonFragileABIMac::FinishNonFragileABIModule() {
4661 // nonfragile abi has no module definition.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004662
Daniel Dunbar463b8762009-05-15 21:48:48 +00004663 // Build list of all implemented class addresses in array
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004664 // L_OBJC_LABEL_CLASS_$.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004665 AddModuleClassList(DefinedClasses,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004666 "\01L_OBJC_LABEL_CLASS_$",
4667 "__DATA, __objc_classlist, regular, no_dead_strip");
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004668
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004669 for (unsigned i = 0; i < DefinedClasses.size(); i++) {
4670 llvm::GlobalValue *IMPLGV = DefinedClasses[i];
4671 if (IMPLGV->getLinkage() != llvm::GlobalValue::ExternalWeakLinkage)
4672 continue;
4673 IMPLGV->setLinkage(llvm::GlobalValue::ExternalLinkage);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004674 }
4675
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00004676 for (unsigned i = 0; i < DefinedMetaClasses.size(); i++) {
4677 llvm::GlobalValue *IMPLGV = DefinedMetaClasses[i];
4678 if (IMPLGV->getLinkage() != llvm::GlobalValue::ExternalWeakLinkage)
4679 continue;
4680 IMPLGV->setLinkage(llvm::GlobalValue::ExternalLinkage);
4681 }
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004682
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004683 AddModuleClassList(DefinedNonLazyClasses,
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004684 "\01L_OBJC_LABEL_NONLAZY_CLASS_$",
4685 "__DATA, __objc_nlclslist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004686
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004687 // Build list of all implemented category addresses in array
4688 // L_OBJC_LABEL_CATEGORY_$.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004689 AddModuleClassList(DefinedCategories,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004690 "\01L_OBJC_LABEL_CATEGORY_$",
4691 "__DATA, __objc_catlist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004692 AddModuleClassList(DefinedNonLazyCategories,
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004693 "\01L_OBJC_LABEL_NONLAZY_CATEGORY_$",
4694 "__DATA, __objc_nlcatlist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004695
Daniel Dunbarfce176b2010-04-25 20:39:01 +00004696 EmitImageInfo();
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004697}
4698
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004699/// LegacyDispatchedSelector - Returns true if SEL is not in the list of
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004700/// NonLegacyDispatchMethods; false otherwise. What this means is that
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004701/// except for the 19 selectors in the list, we generate 32bit-style
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004702/// message dispatch call for all the rest.
4703///
4704bool CGObjCNonFragileABIMac::LegacyDispatchedSelector(Selector Sel) {
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004705 switch (CGM.getCodeGenOpts().getObjCDispatchMethod()) {
4706 default:
4707 assert(0 && "Invalid dispatch method!");
4708 case CodeGenOptions::Legacy:
Daniel Dunbar2feefe82010-02-01 21:07:33 +00004709 return true;
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004710 case CodeGenOptions::NonLegacy:
Fariborz Jahanian776dbf92010-04-19 17:53:30 +00004711 return false;
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004712 case CodeGenOptions::Mixed:
4713 break;
4714 }
4715
4716 // If so, see whether this selector is in the white-list of things which must
4717 // use the new dispatch convention. We lazily build a dense set for this.
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004718 if (NonLegacyDispatchMethods.empty()) {
4719 NonLegacyDispatchMethods.insert(GetNullarySelector("alloc"));
4720 NonLegacyDispatchMethods.insert(GetNullarySelector("class"));
4721 NonLegacyDispatchMethods.insert(GetNullarySelector("self"));
4722 NonLegacyDispatchMethods.insert(GetNullarySelector("isFlipped"));
4723 NonLegacyDispatchMethods.insert(GetNullarySelector("length"));
4724 NonLegacyDispatchMethods.insert(GetNullarySelector("count"));
4725 NonLegacyDispatchMethods.insert(GetNullarySelector("retain"));
4726 NonLegacyDispatchMethods.insert(GetNullarySelector("release"));
4727 NonLegacyDispatchMethods.insert(GetNullarySelector("autorelease"));
4728 NonLegacyDispatchMethods.insert(GetNullarySelector("hash"));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004729
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004730 NonLegacyDispatchMethods.insert(GetUnarySelector("allocWithZone"));
4731 NonLegacyDispatchMethods.insert(GetUnarySelector("isKindOfClass"));
4732 NonLegacyDispatchMethods.insert(GetUnarySelector("respondsToSelector"));
4733 NonLegacyDispatchMethods.insert(GetUnarySelector("objectForKey"));
4734 NonLegacyDispatchMethods.insert(GetUnarySelector("objectAtIndex"));
4735 NonLegacyDispatchMethods.insert(GetUnarySelector("isEqualToString"));
4736 NonLegacyDispatchMethods.insert(GetUnarySelector("isEqual"));
4737 NonLegacyDispatchMethods.insert(GetUnarySelector("addObject"));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004738 // "countByEnumeratingWithState:objects:count"
Fariborz Jahanianbe53be42009-05-13 16:19:02 +00004739 IdentifierInfo *KeyIdents[] = {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004740 &CGM.getContext().Idents.get("countByEnumeratingWithState"),
4741 &CGM.getContext().Idents.get("objects"),
4742 &CGM.getContext().Idents.get("count")
Fariborz Jahanianbe53be42009-05-13 16:19:02 +00004743 };
4744 NonLegacyDispatchMethods.insert(
4745 CGM.getContext().Selectors.getSelector(3, KeyIdents));
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004746 }
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004747
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004748 return (NonLegacyDispatchMethods.count(Sel) == 0);
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004749}
4750
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004751// Metadata flags
4752enum MetaDataDlags {
4753 CLS = 0x0,
4754 CLS_META = 0x1,
4755 CLS_ROOT = 0x2,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004756 OBJC2_CLS_HIDDEN = 0x10,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004757 CLS_EXCEPTION = 0x20
4758};
4759/// BuildClassRoTInitializer - generate meta-data for:
4760/// struct _class_ro_t {
4761/// uint32_t const flags;
4762/// uint32_t const instanceStart;
4763/// uint32_t const instanceSize;
4764/// uint32_t const reserved; // only when building for 64bit targets
4765/// const uint8_t * const ivarLayout;
4766/// const char *const name;
4767/// const struct _method_list_t * const baseMethods;
Fariborz Jahanianda320092009-01-29 19:24:30 +00004768/// const struct _protocol_list_t *const baseProtocols;
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004769/// const struct _ivar_list_t *const ivars;
4770/// const uint8_t * const weakIvarLayout;
4771/// const struct _prop_list_t * const properties;
4772/// }
4773///
4774llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassRoTInitializer(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004775 unsigned flags,
4776 unsigned InstanceStart,
4777 unsigned InstanceSize,
4778 const ObjCImplementationDecl *ID) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004779 std::string ClassName = ID->getNameAsString();
4780 std::vector<llvm::Constant*> Values(10); // 11 for 64bit targets!
Owen Anderson4a28d5d2009-07-24 23:12:58 +00004781 Values[ 0] = llvm::ConstantInt::get(ObjCTypes.IntTy, flags);
4782 Values[ 1] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceStart);
4783 Values[ 2] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceSize);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004784 // FIXME. For 64bit targets add 0 here.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004785 Values[ 3] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4786 : BuildIvarLayout(ID, true);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004787 Values[ 4] = GetClassName(ID->getIdentifier());
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004788 // const struct _method_list_t * const baseMethods;
4789 std::vector<llvm::Constant*> Methods;
4790 std::string MethodListName("\01l_OBJC_$_");
4791 if (flags & CLS_META) {
4792 MethodListName += "CLASS_METHODS_" + ID->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004793 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004794 i = ID->classmeth_begin(), e = ID->classmeth_end(); i != e; ++i) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004795 // Class methods should always be defined.
4796 Methods.push_back(GetMethodConstant(*i));
4797 }
4798 } else {
4799 MethodListName += "INSTANCE_METHODS_" + ID->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004800 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004801 i = ID->instmeth_begin(), e = ID->instmeth_end(); i != e; ++i) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004802 // Instance methods should always be defined.
4803 Methods.push_back(GetMethodConstant(*i));
4804 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004805 for (ObjCImplementationDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004806 i = ID->propimpl_begin(), e = ID->propimpl_end(); i != e; ++i) {
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004807 ObjCPropertyImplDecl *PID = *i;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004808
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004809 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){
4810 ObjCPropertyDecl *PD = PID->getPropertyDecl();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004811
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004812 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
4813 if (llvm::Constant *C = GetMethodConstant(MD))
4814 Methods.push_back(C);
4815 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
4816 if (llvm::Constant *C = GetMethodConstant(MD))
4817 Methods.push_back(C);
4818 }
4819 }
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004820 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004821 Values[ 5] = EmitMethodList(MethodListName,
4822 "__DATA, __objc_const", Methods);
4823
Fariborz Jahanianda320092009-01-29 19:24:30 +00004824 const ObjCInterfaceDecl *OID = ID->getClassInterface();
4825 assert(OID && "CGObjCNonFragileABIMac::BuildClassRoTInitializer");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004826 Values[ 6] = EmitProtocolList("\01l_OBJC_CLASS_PROTOCOLS_$_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00004827 + OID->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00004828 OID->protocol_begin(),
4829 OID->protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004830
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004831 if (flags & CLS_META)
Owen Andersonc9c88b42009-07-31 20:28:54 +00004832 Values[ 7] = llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004833 else
4834 Values[ 7] = EmitIvarList(ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004835 Values[ 8] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4836 : BuildIvarLayout(ID, false);
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00004837 if (flags & CLS_META)
Owen Andersonc9c88b42009-07-31 20:28:54 +00004838 Values[ 9] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00004839 else
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00004840 Values[ 9] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getName(),
4841 ID, ID->getClassInterface(), ObjCTypes);
Owen Anderson08e25242009-07-27 22:29:56 +00004842 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassRonfABITy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004843 Values);
4844 llvm::GlobalVariable *CLASS_RO_GV =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004845 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassRonfABITy, false,
4846 llvm::GlobalValue::InternalLinkage,
4847 Init,
4848 (flags & CLS_META) ?
4849 std::string("\01l_OBJC_METACLASS_RO_$_")+ClassName :
4850 std::string("\01l_OBJC_CLASS_RO_$_")+ClassName);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004851 CLASS_RO_GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004852 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ClassRonfABITy));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004853 CLASS_RO_GV->setSection("__DATA, __objc_const");
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004854 return CLASS_RO_GV;
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004855
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004856}
4857
4858/// BuildClassMetaData - This routine defines that to-level meta-data
4859/// for the given ClassName for:
4860/// struct _class_t {
4861/// struct _class_t *isa;
4862/// struct _class_t * const superclass;
4863/// void *cache;
4864/// IMP *vtable;
4865/// struct class_ro_t *ro;
4866/// }
4867///
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004868llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassMetaData(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004869 std::string &ClassName,
4870 llvm::Constant *IsAGV,
4871 llvm::Constant *SuperClassGV,
4872 llvm::Constant *ClassRoGV,
4873 bool HiddenVisibility) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004874 std::vector<llvm::Constant*> Values(5);
4875 Values[0] = IsAGV;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004876 Values[1] = SuperClassGV;
4877 if (!Values[1])
4878 Values[1] = llvm::Constant::getNullValue(ObjCTypes.ClassnfABIPtrTy);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004879 Values[2] = ObjCEmptyCacheVar; // &ObjCEmptyCacheVar
4880 Values[3] = ObjCEmptyVtableVar; // &ObjCEmptyVtableVar
4881 Values[4] = ClassRoGV; // &CLASS_RO_GV
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004882 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassnfABITy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004883 Values);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004884 llvm::GlobalVariable *GV = GetClassGlobal(ClassName);
4885 GV->setInitializer(Init);
Fariborz Jahaniandd0db2a2009-01-31 01:07:39 +00004886 GV->setSection("__DATA, __objc_data");
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004887 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004888 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ClassnfABITy));
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004889 if (HiddenVisibility)
4890 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004891 return GV;
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004892}
4893
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004894bool
Fariborz Jahanianecfbdcb2009-05-21 01:03:45 +00004895CGObjCNonFragileABIMac::ImplementationIsNonLazy(const ObjCImplDecl *OD) const {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004896 return OD->getClassMethod(GetNullarySelector("load")) != 0;
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004897}
4898
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00004899void CGObjCNonFragileABIMac::GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbarb02532a2009-04-19 23:41:48 +00004900 uint32_t &InstanceStart,
4901 uint32_t &InstanceSize) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004902 const ASTRecordLayout &RL =
Daniel Dunbarb4c79e02009-05-04 21:26:30 +00004903 CGM.getContext().getASTObjCImplementationLayout(OID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004904
Daniel Dunbar6e8575b2009-05-04 23:23:09 +00004905 // InstanceSize is really instance end.
Anders Carlsson243a6852009-07-18 21:26:44 +00004906 InstanceSize = llvm::RoundUpToAlignment(RL.getDataSize(), 8) / 8;
Daniel Dunbar6e8575b2009-05-04 23:23:09 +00004907
4908 // If there are no fields, the start is the same as the end.
4909 if (!RL.getFieldCount())
4910 InstanceStart = InstanceSize;
4911 else
4912 InstanceStart = RL.getFieldOffset(0) / 8;
Daniel Dunbarb02532a2009-04-19 23:41:48 +00004913}
4914
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004915void CGObjCNonFragileABIMac::GenerateClass(const ObjCImplementationDecl *ID) {
4916 std::string ClassName = ID->getNameAsString();
4917 if (!ObjCEmptyCacheVar) {
4918 ObjCEmptyCacheVar = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004919 CGM.getModule(),
4920 ObjCTypes.CacheTy,
4921 false,
4922 llvm::GlobalValue::ExternalLinkage,
4923 0,
4924 "_objc_empty_cache");
4925
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004926 ObjCEmptyVtableVar = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004927 CGM.getModule(),
4928 ObjCTypes.ImpnfABITy,
4929 false,
4930 llvm::GlobalValue::ExternalLinkage,
4931 0,
4932 "_objc_empty_vtable");
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004933 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004934 assert(ID->getClassInterface() &&
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004935 "CGObjCNonFragileABIMac::GenerateClass - class is 0");
Daniel Dunbar6c1aac82009-04-20 20:18:54 +00004936 // FIXME: Is this correct (that meta class size is never computed)?
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004937 uint32_t InstanceStart =
Duncan Sands9408c452009-05-09 07:08:47 +00004938 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassnfABITy);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004939 uint32_t InstanceSize = InstanceStart;
4940 uint32_t flags = CLS_META;
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004941 std::string ObjCMetaClassName(getMetaclassSymbolPrefix());
4942 std::string ObjCClassName(getClassSymbolPrefix());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004943
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004944 llvm::GlobalVariable *SuperClassGV, *IsAGV;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004945
4946 bool classIsHidden =
Daniel Dunbar04d40782009-04-14 06:00:08 +00004947 CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden;
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004948 if (classIsHidden)
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004949 flags |= OBJC2_CLS_HIDDEN;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00004950 if (ID->getNumIvarInitializers())
4951 flags |= eClassFlags_ABI2_HasCXXStructors;
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004952 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004953 // class is root
4954 flags |= CLS_ROOT;
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004955 SuperClassGV = GetClassGlobal(ObjCClassName + ClassName);
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004956 IsAGV = GetClassGlobal(ObjCMetaClassName + ClassName);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004957 } else {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004958 // Has a root. Current class is not a root.
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004959 const ObjCInterfaceDecl *Root = ID->getClassInterface();
4960 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
4961 Root = Super;
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004962 IsAGV = GetClassGlobal(ObjCMetaClassName + Root->getNameAsString());
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00004963 if (Root->hasAttr<WeakImportAttr>())
4964 IsAGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004965 // work on super class metadata symbol.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004966 std::string SuperClassName =
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00004967 ObjCMetaClassName +
4968 ID->getClassInterface()->getSuperClass()->getNameAsString();
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004969 SuperClassGV = GetClassGlobal(SuperClassName);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004970 if (ID->getClassInterface()->getSuperClass()->hasAttr<WeakImportAttr>())
4971 SuperClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004972 }
4973 llvm::GlobalVariable *CLASS_RO_GV = BuildClassRoTInitializer(flags,
4974 InstanceStart,
4975 InstanceSize,ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004976 std::string TClassName = ObjCMetaClassName + ClassName;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004977 llvm::GlobalVariable *MetaTClass =
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004978 BuildClassMetaData(TClassName, IsAGV, SuperClassGV, CLASS_RO_GV,
4979 classIsHidden);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004980 DefinedMetaClasses.push_back(MetaTClass);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004981
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004982 // Metadata for the class
4983 flags = CLS;
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004984 if (classIsHidden)
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004985 flags |= OBJC2_CLS_HIDDEN;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00004986 if (ID->getNumIvarInitializers())
4987 flags |= eClassFlags_ABI2_HasCXXStructors;
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00004988
Douglas Gregor68584ed2009-06-18 16:11:24 +00004989 if (hasObjCExceptionAttribute(CGM.getContext(), ID->getClassInterface()))
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00004990 flags |= CLS_EXCEPTION;
4991
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004992 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004993 flags |= CLS_ROOT;
4994 SuperClassGV = 0;
Chris Lattnerb7b58b12009-04-19 06:02:28 +00004995 } else {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004996 // Has a root. Current class is not a root.
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004997 std::string RootClassName =
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004998 ID->getClassInterface()->getSuperClass()->getNameAsString();
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004999 SuperClassGV = GetClassGlobal(ObjCClassName + RootClassName);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00005000 if (ID->getClassInterface()->getSuperClass()->hasAttr<WeakImportAttr>())
5001 SuperClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005002 }
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00005003 GetClassSizeInfo(ID, InstanceStart, InstanceSize);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005004 CLASS_RO_GV = BuildClassRoTInitializer(flags,
Fariborz Jahanianf6a077e2009-01-24 23:43:01 +00005005 InstanceStart,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005006 InstanceSize,
Fariborz Jahanianf6a077e2009-01-24 23:43:01 +00005007 ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005008
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005009 TClassName = ObjCClassName + ClassName;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005010 llvm::GlobalVariable *ClassMD =
Fariborz Jahaniancf555162009-01-31 00:59:10 +00005011 BuildClassMetaData(TClassName, MetaTClass, SuperClassGV, CLASS_RO_GV,
5012 classIsHidden);
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00005013 DefinedClasses.push_back(ClassMD);
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005014
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005015 // Determine if this class is also "non-lazy".
5016 if (ImplementationIsNonLazy(ID))
5017 DefinedNonLazyClasses.push_back(ClassMD);
5018
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005019 // Force the definition of the EHType if necessary.
5020 if (flags & CLS_EXCEPTION)
5021 GetInterfaceEHType(ID->getClassInterface(), true);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00005022}
5023
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005024/// GenerateProtocolRef - This routine is called to generate code for
5025/// a protocol reference expression; as in:
5026/// @code
5027/// @protocol(Proto1);
5028/// @endcode
5029/// It generates a weak reference to l_OBJC_PROTOCOL_REFERENCE_$_Proto1
5030/// which will hold address of the protocol meta-data.
5031///
5032llvm::Value *CGObjCNonFragileABIMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005033 const ObjCProtocolDecl *PD) {
5034
Fariborz Jahanian960cd062009-04-10 18:47:34 +00005035 // This routine is called for @protocol only. So, we must build definition
5036 // of protocol's meta-data (not a reference to it!)
5037 //
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005038 llvm::Constant *Init =
5039 llvm::ConstantExpr::getBitCast(GetOrEmitProtocol(PD),
5040 ObjCTypes.ExternalProtocolPtrTy);
5041
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005042 std::string ProtocolName("\01l_OBJC_PROTOCOL_REFERENCE_$_");
Daniel Dunbar4087f272010-08-17 22:39:59 +00005043 ProtocolName += PD->getName();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005044
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005045 llvm::GlobalVariable *PTGV = CGM.getModule().getGlobalVariable(ProtocolName);
5046 if (PTGV)
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005047 return Builder.CreateLoad(PTGV, "tmp");
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005048 PTGV = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005049 CGM.getModule(),
5050 Init->getType(), false,
5051 llvm::GlobalValue::WeakAnyLinkage,
5052 Init,
5053 ProtocolName);
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005054 PTGV->setSection("__DATA, __objc_protorefs, coalesced, no_dead_strip");
5055 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005056 CGM.AddUsedGlobal(PTGV);
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005057 return Builder.CreateLoad(PTGV, "tmp");
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005058}
5059
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005060/// GenerateCategory - Build metadata for a category implementation.
5061/// struct _category_t {
5062/// const char * const name;
5063/// struct _class_t *const cls;
5064/// const struct _method_list_t * const instance_methods;
5065/// const struct _method_list_t * const class_methods;
5066/// const struct _protocol_list_t * const protocols;
5067/// const struct _prop_list_t * const properties;
5068/// }
5069///
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005070void CGObjCNonFragileABIMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005071 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005072 const char *Prefix = "\01l_OBJC_$_CATEGORY_";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005073 std::string ExtCatName(Prefix + Interface->getNameAsString()+
5074 "_$_" + OCD->getNameAsString());
5075 std::string ExtClassName(getClassSymbolPrefix() +
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005076 Interface->getNameAsString());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005077
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005078 std::vector<llvm::Constant*> Values(6);
5079 Values[0] = GetClassName(OCD->getIdentifier());
5080 // meta-class entry symbol
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005081 llvm::GlobalVariable *ClassGV = GetClassGlobal(ExtClassName);
Fariborz Jahanian2cdcc4c2009-11-17 22:02:21 +00005082 if (Interface->hasAttr<WeakImportAttr>())
5083 ClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
5084
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005085 Values[1] = ClassGV;
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005086 std::vector<llvm::Constant*> Methods;
5087 std::string MethodListName(Prefix);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005088 MethodListName += "INSTANCE_METHODS_" + Interface->getNameAsString() +
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005089 "_$_" + OCD->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005090
5091 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005092 i = OCD->instmeth_begin(), e = OCD->instmeth_end(); i != e; ++i) {
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005093 // Instance methods should always be defined.
5094 Methods.push_back(GetMethodConstant(*i));
5095 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005096
5097 Values[2] = EmitMethodList(MethodListName,
5098 "__DATA, __objc_const",
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005099 Methods);
5100
5101 MethodListName = Prefix;
5102 MethodListName += "CLASS_METHODS_" + Interface->getNameAsString() + "_$_" +
5103 OCD->getNameAsString();
5104 Methods.clear();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005105 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005106 i = OCD->classmeth_begin(), e = OCD->classmeth_end(); i != e; ++i) {
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005107 // Class methods should always be defined.
5108 Methods.push_back(GetMethodConstant(*i));
5109 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005110
5111 Values[3] = EmitMethodList(MethodListName,
5112 "__DATA, __objc_const",
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005113 Methods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005114 const ObjCCategoryDecl *Category =
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00005115 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005116 if (Category) {
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005117 llvm::SmallString<256> ExtName;
5118 llvm::raw_svector_ostream(ExtName) << Interface->getName() << "_$_"
5119 << OCD->getName();
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005120 Values[4] = EmitProtocolList("\01l_OBJC_CATEGORY_PROTOCOLS_$_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005121 + Interface->getName() + "_$_"
5122 + Category->getName(),
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005123 Category->protocol_begin(),
5124 Category->protocol_end());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005125 Values[5] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(),
5126 OCD, Category, ObjCTypes);
Mike Stumpb3589f42009-07-30 22:28:39 +00005127 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00005128 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
5129 Values[5] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005130 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005131
5132 llvm::Constant *Init =
5133 llvm::ConstantStruct::get(ObjCTypes.CategorynfABITy,
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005134 Values);
5135 llvm::GlobalVariable *GCATV
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005136 = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.CategorynfABITy,
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005137 false,
5138 llvm::GlobalValue::InternalLinkage,
5139 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005140 ExtCatName);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005141 GCATV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005142 CGM.getTargetData().getABITypeAlignment(ObjCTypes.CategorynfABITy));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005143 GCATV->setSection("__DATA, __objc_const");
Chris Lattnerad64e022009-07-17 23:57:13 +00005144 CGM.AddUsedGlobal(GCATV);
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005145 DefinedCategories.push_back(GCATV);
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005146
5147 // Determine if this category is also "non-lazy".
5148 if (ImplementationIsNonLazy(OCD))
5149 DefinedNonLazyCategories.push_back(GCATV);
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005150}
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005151
5152/// GetMethodConstant - Return a struct objc_method constant for the
5153/// given method if it has been defined. The result is null if the
5154/// method has not been defined. The return value has type MethodPtrTy.
5155llvm::Constant *CGObjCNonFragileABIMac::GetMethodConstant(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005156 const ObjCMethodDecl *MD) {
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +00005157 llvm::Function *Fn = GetMethodDefinition(MD);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005158 if (!Fn)
5159 return 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005160
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005161 std::vector<llvm::Constant*> Method(3);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005162 Method[0] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00005163 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005164 ObjCTypes.SelectorPtrTy);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005165 Method[1] = GetMethodVarType(MD);
Owen Anderson3c4972d2009-07-29 18:54:39 +00005166 Method[2] = llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00005167 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005168}
5169
5170/// EmitMethodList - Build meta-data for method declarations
5171/// struct _method_list_t {
5172/// uint32_t entsize; // sizeof(struct _objc_method)
5173/// uint32_t method_count;
5174/// struct _objc_method method_list[method_count];
5175/// }
5176///
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005177llvm::Constant *CGObjCNonFragileABIMac::EmitMethodList(llvm::Twine Name,
5178 const char *Section,
5179 const ConstantVector &Methods) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005180 // Return null for empty list.
5181 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00005182 return llvm::Constant::getNullValue(ObjCTypes.MethodListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005183
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005184 std::vector<llvm::Constant*> Values(3);
5185 // sizeof(struct _objc_method)
Duncan Sands9408c452009-05-09 07:08:47 +00005186 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.MethodTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005187 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005188 // method_count
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005189 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00005190 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005191 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00005192 Values[2] = llvm::ConstantArray::get(AT, Methods);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005193 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005194
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005195 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005196 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005197 llvm::GlobalValue::InternalLinkage,
5198 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005199 Name);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005200 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005201 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005202 GV->setSection(Section);
Chris Lattnerad64e022009-07-17 23:57:13 +00005203 CGM.AddUsedGlobal(GV);
Owen Anderson3c4972d2009-07-29 18:54:39 +00005204 return llvm::ConstantExpr::getBitCast(GV,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005205 ObjCTypes.MethodListnfABIPtrTy);
5206}
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005207
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005208/// ObjCIvarOffsetVariable - Returns the ivar offset variable for
5209/// the given ivar.
Daniel Dunbare83be122010-04-02 21:14:02 +00005210llvm::GlobalVariable *
5211CGObjCNonFragileABIMac::ObjCIvarOffsetVariable(const ObjCInterfaceDecl *ID,
5212 const ObjCIvarDecl *Ivar) {
5213 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
Daniel Dunbara81419d2009-05-05 00:36:57 +00005214 std::string Name = "OBJC_IVAR_$_" + Container->getNameAsString() +
Douglas Gregor6ab35242009-04-09 21:40:53 +00005215 '.' + Ivar->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005216 llvm::GlobalVariable *IvarOffsetGV =
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005217 CGM.getModule().getGlobalVariable(Name);
5218 if (!IvarOffsetGV)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005219 IvarOffsetGV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005220 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.LongTy,
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005221 false,
5222 llvm::GlobalValue::ExternalLinkage,
5223 0,
Owen Anderson1c431b32009-07-08 19:05:04 +00005224 Name);
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005225 return IvarOffsetGV;
5226}
5227
Daniel Dunbare83be122010-04-02 21:14:02 +00005228llvm::Constant *
5229CGObjCNonFragileABIMac::EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
5230 const ObjCIvarDecl *Ivar,
5231 unsigned long int Offset) {
Daniel Dunbar737c5022009-04-19 00:44:02 +00005232 llvm::GlobalVariable *IvarOffsetGV = ObjCIvarOffsetVariable(ID, Ivar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005233 IvarOffsetGV->setInitializer(llvm::ConstantInt::get(ObjCTypes.LongTy,
Daniel Dunbar737c5022009-04-19 00:44:02 +00005234 Offset));
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005235 IvarOffsetGV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005236 CGM.getTargetData().getABITypeAlignment(ObjCTypes.LongTy));
Daniel Dunbar737c5022009-04-19 00:44:02 +00005237
Mike Stumpf5408fe2009-05-16 07:57:57 +00005238 // FIXME: This matches gcc, but shouldn't the visibility be set on the use as
5239 // well (i.e., in ObjCIvarOffsetVariable).
Daniel Dunbar737c5022009-04-19 00:44:02 +00005240 if (Ivar->getAccessControl() == ObjCIvarDecl::Private ||
5241 Ivar->getAccessControl() == ObjCIvarDecl::Package ||
5242 CGM.getDeclVisibilityMode(ID) == LangOptions::Hidden)
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00005243 IvarOffsetGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar04d40782009-04-14 06:00:08 +00005244 else
Fariborz Jahanian77c9fd22009-04-06 18:30:00 +00005245 IvarOffsetGV->setVisibility(llvm::GlobalValue::DefaultVisibility);
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005246 IvarOffsetGV->setSection("__DATA, __objc_const");
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005247 return IvarOffsetGV;
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005248}
5249
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005250/// EmitIvarList - Emit the ivar list for the given
Daniel Dunbar11394522009-04-18 08:51:00 +00005251/// implementation. The return value has type
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005252/// IvarListnfABIPtrTy.
5253/// struct _ivar_t {
5254/// unsigned long int *offset; // pointer to ivar offset location
5255/// char *name;
5256/// char *type;
5257/// uint32_t alignment;
5258/// uint32_t size;
5259/// }
5260/// struct _ivar_list_t {
5261/// uint32 entsize; // sizeof(struct _ivar_t)
5262/// uint32 count;
5263/// struct _iver_t list[count];
5264/// }
5265///
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00005266
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005267llvm::Constant *CGObjCNonFragileABIMac::EmitIvarList(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005268 const ObjCImplementationDecl *ID) {
5269
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005270 std::vector<llvm::Constant*> Ivars, Ivar(5);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005271
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005272 const ObjCInterfaceDecl *OID = ID->getClassInterface();
5273 assert(OID && "CGObjCNonFragileABIMac::EmitIvarList - null interface");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005274
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005275 // FIXME. Consolidate this with similar code in GenerateClass.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005276
Daniel Dunbar91636d62009-04-20 00:33:43 +00005277 // Collect declared and synthesized ivars in a small vector.
Fariborz Jahanian18191882009-03-31 18:11:23 +00005278 llvm::SmallVector<ObjCIvarDecl*, 16> OIvars;
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00005279 CGM.getContext().ShallowCollectObjCIvars(OID, OIvars);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005280
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00005281 for (unsigned i = 0, e = OIvars.size(); i != e; ++i) {
5282 ObjCIvarDecl *IVD = OIvars[i];
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00005283 // Ignore unnamed bit-fields.
5284 if (!IVD->getDeclName())
5285 continue;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005286 Ivar[0] = EmitIvarOffsetVar(ID->getClassInterface(), IVD,
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00005287 ComputeIvarBaseOffset(CGM, ID, IVD));
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00005288 Ivar[1] = GetMethodVarName(IVD->getIdentifier());
5289 Ivar[2] = GetMethodVarType(IVD);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005290 const llvm::Type *FieldTy =
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00005291 CGM.getTypes().ConvertTypeForMem(IVD->getType());
Duncan Sands9408c452009-05-09 07:08:47 +00005292 unsigned Size = CGM.getTargetData().getTypeAllocSize(FieldTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005293 unsigned Align = CGM.getContext().getPreferredTypeAlign(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005294 IVD->getType().getTypePtr()) >> 3;
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005295 Align = llvm::Log2_32(Align);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005296 Ivar[3] = llvm::ConstantInt::get(ObjCTypes.IntTy, Align);
Daniel Dunbar91636d62009-04-20 00:33:43 +00005297 // NOTE. Size of a bitfield does not match gcc's, because of the
5298 // way bitfields are treated special in each. But I am told that
5299 // 'size' for bitfield ivars is ignored by the runtime so it does
5300 // not matter. If it matters, there is enough info to get the
5301 // bitfield right!
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005302 Ivar[4] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Owen Anderson08e25242009-07-27 22:29:56 +00005303 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarnfABITy, Ivar));
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005304 }
5305 // Return null for empty list.
5306 if (Ivars.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00005307 return llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005308 std::vector<llvm::Constant*> Values(3);
Duncan Sands9408c452009-05-09 07:08:47 +00005309 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.IvarnfABITy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005310 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
5311 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00005312 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarnfABITy,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005313 Ivars.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00005314 Values[2] = llvm::ConstantArray::get(AT, Ivars);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005315 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005316 const char *Prefix = "\01l_OBJC_$_INSTANCE_VARIABLES_";
5317 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005318 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005319 llvm::GlobalValue::InternalLinkage,
5320 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005321 Prefix + OID->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005322 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005323 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005324 GV->setSection("__DATA, __objc_const");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005325
Chris Lattnerad64e022009-07-17 23:57:13 +00005326 CGM.AddUsedGlobal(GV);
Owen Anderson3c4972d2009-07-29 18:54:39 +00005327 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005328}
5329
5330llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocolRef(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005331 const ObjCProtocolDecl *PD) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005332 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005333
Fariborz Jahanianda320092009-01-29 19:24:30 +00005334 if (!Entry) {
5335 // We use the initializer as a marker of whether this is a forward
5336 // reference or not. At module finalization we add the empty
5337 // contents for protocols which were referenced but never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005338 Entry =
5339 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy, false,
5340 llvm::GlobalValue::ExternalLinkage,
5341 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005342 "\01l_OBJC_PROTOCOL_$_" + PD->getName());
Fariborz Jahanianda320092009-01-29 19:24:30 +00005343 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanianda320092009-01-29 19:24:30 +00005344 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005345
Fariborz Jahanianda320092009-01-29 19:24:30 +00005346 return Entry;
5347}
5348
5349/// GetOrEmitProtocol - Generate the protocol meta-data:
5350/// @code
5351/// struct _protocol_t {
5352/// id isa; // NULL
5353/// const char * const protocol_name;
5354/// const struct _protocol_list_t * protocol_list; // super protocols
5355/// const struct method_list_t * const instance_methods;
5356/// const struct method_list_t * const class_methods;
5357/// const struct method_list_t *optionalInstanceMethods;
5358/// const struct method_list_t *optionalClassMethods;
5359/// const struct _prop_list_t * properties;
5360/// const uint32_t size; // sizeof(struct _protocol_t)
5361/// const uint32_t flags; // = 0
5362/// }
5363/// @endcode
5364///
5365
5366llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocol(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005367 const ObjCProtocolDecl *PD) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005368 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005369
Fariborz Jahanianda320092009-01-29 19:24:30 +00005370 // Early exit if a defining object has already been generated.
5371 if (Entry && Entry->hasInitializer())
5372 return Entry;
5373
Fariborz Jahanianda320092009-01-29 19:24:30 +00005374 // Construct method lists.
5375 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
5376 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005377 for (ObjCProtocolDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005378 i = PD->instmeth_begin(), e = PD->instmeth_end(); i != e; ++i) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005379 ObjCMethodDecl *MD = *i;
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005380 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005381 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
5382 OptInstanceMethods.push_back(C);
5383 } else {
5384 InstanceMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005385 }
Fariborz Jahanianda320092009-01-29 19:24:30 +00005386 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005387
5388 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005389 i = PD->classmeth_begin(), e = PD->classmeth_end(); i != e; ++i) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005390 ObjCMethodDecl *MD = *i;
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005391 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005392 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
5393 OptClassMethods.push_back(C);
5394 } else {
5395 ClassMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005396 }
Fariborz Jahanianda320092009-01-29 19:24:30 +00005397 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005398
Fariborz Jahanianda320092009-01-29 19:24:30 +00005399 std::vector<llvm::Constant*> Values(10);
5400 // isa is NULL
Owen Andersonc9c88b42009-07-31 20:28:54 +00005401 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ObjectPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005402 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005403 Values[2] = EmitProtocolList("\01l_OBJC_$_PROTOCOL_REFS_" + PD->getName(),
5404 PD->protocol_begin(),
5405 PD->protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005406
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005407 Values[3] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005408 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005409 "__DATA, __objc_const",
5410 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005411 Values[4] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005412 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005413 "__DATA, __objc_const",
5414 ClassMethods);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005415 Values[5] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005416 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005417 "__DATA, __objc_const",
5418 OptInstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005419 Values[6] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005420 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005421 "__DATA, __objc_const",
5422 OptClassMethods);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005423 Values[7] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005424 0, PD, ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005425 uint32_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00005426 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolnfABITy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005427 Values[8] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Owen Andersonc9c88b42009-07-31 20:28:54 +00005428 Values[9] = llvm::Constant::getNullValue(ObjCTypes.IntTy);
Owen Anderson08e25242009-07-27 22:29:56 +00005429 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolnfABITy,
Fariborz Jahanianda320092009-01-29 19:24:30 +00005430 Values);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005431
Fariborz Jahanianda320092009-01-29 19:24:30 +00005432 if (Entry) {
5433 // Already created, fix the linkage and update the initializer.
Mike Stump286acbd2009-03-07 16:33:28 +00005434 Entry->setLinkage(llvm::GlobalValue::WeakAnyLinkage);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005435 Entry->setInitializer(Init);
5436 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005437 Entry =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005438 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy,
5439 false, llvm::GlobalValue::WeakAnyLinkage, Init,
5440 "\01l_OBJC_PROTOCOL_$_" + PD->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005441 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005442 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ProtocolnfABITy));
Fariborz Jahanianda320092009-01-29 19:24:30 +00005443 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanianda320092009-01-29 19:24:30 +00005444 }
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005445 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005446 CGM.AddUsedGlobal(Entry);
5447
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005448 // Use this protocol meta-data to build protocol list table in section
5449 // __DATA, __objc_protolist
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005450 llvm::GlobalVariable *PTGV =
5451 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABIPtrTy,
5452 false, llvm::GlobalValue::WeakAnyLinkage, Entry,
5453 "\01l_OBJC_LABEL_PROTOCOL_$_" + PD->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005454 PTGV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005455 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ProtocolnfABIPtrTy));
Daniel Dunbar0bf21992009-04-15 02:56:18 +00005456 PTGV->setSection("__DATA, __objc_protolist, coalesced, no_dead_strip");
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005457 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005458 CGM.AddUsedGlobal(PTGV);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005459 return Entry;
5460}
5461
5462/// EmitProtocolList - Generate protocol list meta-data:
5463/// @code
5464/// struct _protocol_list_t {
5465/// long protocol_count; // Note, this is 32/64 bit
5466/// struct _protocol_t[protocol_count];
5467/// }
5468/// @endcode
5469///
5470llvm::Constant *
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005471CGObjCNonFragileABIMac::EmitProtocolList(llvm::Twine Name,
5472 ObjCProtocolDecl::protocol_iterator begin,
5473 ObjCProtocolDecl::protocol_iterator end) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005474 std::vector<llvm::Constant*> ProtocolRefs;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005475
Fariborz Jahanianda320092009-01-29 19:24:30 +00005476 // Just return null for empty protocol lists
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005477 if (begin == end)
Owen Andersonc9c88b42009-07-31 20:28:54 +00005478 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005479
Daniel Dunbar948e2582009-02-15 07:36:20 +00005480 // FIXME: We shouldn't need to do this lookup here, should we?
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005481 llvm::SmallString<256> TmpName;
5482 Name.toVector(TmpName);
5483 llvm::GlobalVariable *GV =
5484 CGM.getModule().getGlobalVariable(TmpName.str(), true);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005485 if (GV)
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005486 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005487
Daniel Dunbar948e2582009-02-15 07:36:20 +00005488 for (; begin != end; ++begin)
5489 ProtocolRefs.push_back(GetProtocolRef(*begin)); // Implemented???
5490
Fariborz Jahanianda320092009-01-29 19:24:30 +00005491 // This list is null terminated.
Owen Andersonc9c88b42009-07-31 20:28:54 +00005492 ProtocolRefs.push_back(llvm::Constant::getNullValue(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005493 ObjCTypes.ProtocolnfABIPtrTy));
5494
Fariborz Jahanianda320092009-01-29 19:24:30 +00005495 std::vector<llvm::Constant*> Values(2);
Owen Andersona1cf15f2009-07-14 23:10:40 +00005496 Values[0] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005497 llvm::ConstantInt::get(ObjCTypes.LongTy, ProtocolRefs.size() - 1);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005498 Values[1] =
Owen Anderson7db6d832009-07-28 18:33:04 +00005499 llvm::ConstantArray::get(
Owen Anderson96e0fc72009-07-29 22:16:19 +00005500 llvm::ArrayType::get(ObjCTypes.ProtocolnfABIPtrTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005501 ProtocolRefs.size()),
5502 ProtocolRefs);
5503
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005504 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Owen Anderson1c431b32009-07-08 19:05:04 +00005505 GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanianda320092009-01-29 19:24:30 +00005506 llvm::GlobalValue::InternalLinkage,
5507 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005508 Name);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005509 GV->setSection("__DATA, __objc_const");
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005510 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005511 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Chris Lattnerad64e022009-07-17 23:57:13 +00005512 CGM.AddUsedGlobal(GV);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005513 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar948e2582009-02-15 07:36:20 +00005514 ObjCTypes.ProtocolListnfABIPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005515}
5516
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005517/// GetMethodDescriptionConstant - This routine build following meta-data:
5518/// struct _objc_method {
5519/// SEL _cmd;
5520/// char *method_type;
5521/// char *_imp;
5522/// }
5523
5524llvm::Constant *
5525CGObjCNonFragileABIMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
5526 std::vector<llvm::Constant*> Desc(3);
Owen Andersona1cf15f2009-07-14 23:10:40 +00005527 Desc[0] =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005528 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
5529 ObjCTypes.SelectorPtrTy);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005530 Desc[1] = GetMethodVarType(MD);
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005531 // Protocol methods have no implementation. So, this entry is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00005532 Desc[2] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00005533 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Desc);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005534}
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005535
5536/// EmitObjCValueForIvar - Code Gen for nonfragile ivar reference.
5537/// This code gen. amounts to generating code for:
5538/// @code
5539/// (type *)((char *)base + _OBJC_IVAR_$_.ivar;
5540/// @encode
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005541///
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00005542LValue CGObjCNonFragileABIMac::EmitObjCValueForIvar(
John McCall506b57e2010-05-17 21:00:27 +00005543 CodeGen::CodeGenFunction &CGF,
5544 QualType ObjectTy,
5545 llvm::Value *BaseValue,
5546 const ObjCIvarDecl *Ivar,
5547 unsigned CVRQualifiers) {
5548 ObjCInterfaceDecl *ID = ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar97776872009-04-22 07:32:20 +00005549 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
5550 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005551}
5552
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00005553llvm::Value *CGObjCNonFragileABIMac::EmitIvarOffset(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005554 CodeGen::CodeGenFunction &CGF,
5555 const ObjCInterfaceDecl *Interface,
5556 const ObjCIvarDecl *Ivar) {
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005557 return CGF.Builder.CreateLoad(ObjCIvarOffsetVariable(Interface, Ivar),"ivar");
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00005558}
5559
Fariborz Jahanian46551122009-02-04 00:22:57 +00005560CodeGen::RValue CGObjCNonFragileABIMac::EmitMessageSend(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005561 CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005562 ReturnValueSlot Return,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005563 QualType ResultType,
5564 Selector Sel,
5565 llvm::Value *Receiver,
5566 QualType Arg0Ty,
5567 bool IsSuper,
5568 const CallArgList &CallArgs) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00005569 // FIXME. Even though IsSuper is passes. This function doese not handle calls
5570 // to 'super' receivers.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005571 CodeGenTypes &Types = CGM.getTypes();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005572 llvm::Value *Arg0 = Receiver;
5573 if (!IsSuper)
5574 Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy, "tmp");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005575
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005576 // Find the message function name.
Mike Stumpf5408fe2009-05-16 07:57:57 +00005577 // FIXME. This is too much work to get the ABI-specific result type needed to
5578 // find the message name.
John McCallead608a2010-02-26 00:48:12 +00005579 const CGFunctionInfo &FnInfo
Rafael Espindola264ba482010-03-30 20:24:48 +00005580 = Types.getFunctionInfo(ResultType, CallArgList(),
5581 FunctionType::ExtInfo());
Fariborz Jahanian70b51c72009-04-30 23:08:58 +00005582 llvm::Constant *Fn = 0;
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005583 std::string Name("\01l_");
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00005584 if (CGM.ReturnTypeUsesSRet(FnInfo)) {
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005585#if 0
5586 // unlike what is documented. gcc never generates this API!!
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005587 if (Receiver->getType() == ObjCTypes.ObjectPtrTy) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005588 Fn = ObjCTypes.getMessageSendIdStretFixupFn();
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005589 // FIXME. Is there a better way of getting these names.
5590 // They are available in RuntimeFunctions vector pair.
5591 Name += "objc_msgSendId_stret_fixup";
Mike Stumpb3589f42009-07-30 22:28:39 +00005592 } else
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005593#endif
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005594 if (IsSuper) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005595 Fn = ObjCTypes.getMessageSendSuper2StretFixupFn();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005596 Name += "objc_msgSendSuper2_stret_fixup";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005597 } else {
5598 Fn = ObjCTypes.getMessageSendStretFixupFn();
5599 Name += "objc_msgSend_stret_fixup";
5600 }
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00005601 } else if (!IsSuper && CGM.ReturnTypeUsesFPRet(ResultType)) {
5602 Fn = ObjCTypes.getMessageSendFpretFixupFn();
5603 Name += "objc_msgSend_fpret_fixup";
Mike Stumpb3589f42009-07-30 22:28:39 +00005604 } else {
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005605#if 0
5606// unlike what is documented. gcc never generates this API!!
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005607 if (Receiver->getType() == ObjCTypes.ObjectPtrTy) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005608 Fn = ObjCTypes.getMessageSendIdFixupFn();
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005609 Name += "objc_msgSendId_fixup";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005610 } else
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005611#endif
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005612 if (IsSuper) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005613 Fn = ObjCTypes.getMessageSendSuper2FixupFn();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005614 Name += "objc_msgSendSuper2_fixup";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005615 } else {
5616 Fn = ObjCTypes.getMessageSendFixupFn();
5617 Name += "objc_msgSend_fixup";
5618 }
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005619 }
Fariborz Jahanian70b51c72009-04-30 23:08:58 +00005620 assert(Fn && "CGObjCNonFragileABIMac::EmitMessageSend");
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005621 Name += '_';
5622 std::string SelName(Sel.getAsString());
5623 // Replace all ':' in selector name with '_' ouch!
Mike Stump1eb44332009-09-09 15:08:12 +00005624 for (unsigned i = 0; i < SelName.size(); i++)
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005625 if (SelName[i] == ':')
5626 SelName[i] = '_';
5627 Name += SelName;
5628 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
5629 if (!GV) {
Daniel Dunbar33af70f2009-04-15 19:03:14 +00005630 // Build message ref table entry.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005631 std::vector<llvm::Constant*> Values(2);
5632 Values[0] = Fn;
5633 Values[1] = GetMethodVarName(Sel);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005634 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Owen Anderson1c431b32009-07-08 19:05:04 +00005635 GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Mike Stump286acbd2009-03-07 16:33:28 +00005636 llvm::GlobalValue::WeakAnyLinkage,
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005637 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005638 Name);
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005639 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbarf59c1a62009-04-15 19:04:46 +00005640 GV->setAlignment(16);
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005641 GV->setSection("__DATA, __objc_msgrefs, coalesced");
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005642 }
5643 llvm::Value *Arg1 = CGF.Builder.CreateBitCast(GV, ObjCTypes.MessageRefPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005644
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005645 CallArgList ActualArgs;
5646 ActualArgs.push_back(std::make_pair(RValue::get(Arg0), Arg0Ty));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005647 ActualArgs.push_back(std::make_pair(RValue::get(Arg1),
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005648 ObjCTypes.MessageRefCPtrTy));
5649 ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
John McCall04a67a62010-02-05 21:31:56 +00005650 const CGFunctionInfo &FnInfo1 = Types.getFunctionInfo(ResultType, ActualArgs,
Rafael Espindola264ba482010-03-30 20:24:48 +00005651 FunctionType::ExtInfo());
Fariborz Jahanianef163782009-02-05 01:13:09 +00005652 llvm::Value *Callee = CGF.Builder.CreateStructGEP(Arg1, 0);
5653 Callee = CGF.Builder.CreateLoad(Callee);
Fariborz Jahanian3ab75bd2009-02-14 21:25:36 +00005654 const llvm::FunctionType *FTy = Types.GetFunctionType(FnInfo1, true);
Fariborz Jahanianef163782009-02-05 01:13:09 +00005655 Callee = CGF.Builder.CreateBitCast(Callee,
Owen Anderson96e0fc72009-07-29 22:16:19 +00005656 llvm::PointerType::getUnqual(FTy));
John McCallef072fd2010-05-22 01:48:05 +00005657 return CGF.EmitCall(FnInfo1, Callee, Return, ActualArgs);
Fariborz Jahanian46551122009-02-04 00:22:57 +00005658}
5659
5660/// Generate code for a message send expression in the nonfragile abi.
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005661CodeGen::RValue
5662CGObjCNonFragileABIMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005663 ReturnValueSlot Return,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005664 QualType ResultType,
5665 Selector Sel,
5666 llvm::Value *Receiver,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005667 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00005668 const ObjCInterfaceDecl *Class,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005669 const ObjCMethodDecl *Method) {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005670 return LegacyDispatchedSelector(Sel)
John McCallef072fd2010-05-22 01:48:05 +00005671 ? EmitLegacyMessageSend(CGF, Return, ResultType,
5672 EmitSelector(CGF.Builder, Sel),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005673 Receiver, CGF.getContext().getObjCIdType(),
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005674 false, CallArgs, Method, ObjCTypes)
John McCallef072fd2010-05-22 01:48:05 +00005675 : EmitMessageSend(CGF, Return, ResultType, Sel,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005676 Receiver, CGF.getContext().getObjCIdType(),
5677 false, CallArgs);
Fariborz Jahanian46551122009-02-04 00:22:57 +00005678}
5679
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005680llvm::GlobalVariable *
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005681CGObjCNonFragileABIMac::GetClassGlobal(const std::string &Name) {
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005682 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
5683
Daniel Dunbardfff2302009-03-02 05:18:14 +00005684 if (!GV) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005685 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABITy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005686 false, llvm::GlobalValue::ExternalLinkage,
5687 0, Name);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005688 }
5689
5690 return GV;
5691}
5692
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005693llvm::Value *CGObjCNonFragileABIMac::EmitClassRef(CGBuilderTy &Builder,
5694 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005695 llvm::GlobalVariable *&Entry = ClassReferences[ID->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005696
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005697 if (!Entry) {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005698 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005699 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005700 Entry =
5701 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005702 false, llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005703 ClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005704 "\01L_OBJC_CLASSLIST_REFERENCES_$_");
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005705 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005706 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005707 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar11394522009-04-18 08:51:00 +00005708 Entry->setSection("__DATA, __objc_classrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005709 CGM.AddUsedGlobal(Entry);
Daniel Dunbar11394522009-04-18 08:51:00 +00005710 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005711
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005712 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar11394522009-04-18 08:51:00 +00005713}
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005714
Daniel Dunbar11394522009-04-18 08:51:00 +00005715llvm::Value *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005716CGObjCNonFragileABIMac::EmitSuperClassRef(CGBuilderTy &Builder,
Daniel Dunbar11394522009-04-18 08:51:00 +00005717 const ObjCInterfaceDecl *ID) {
5718 llvm::GlobalVariable *&Entry = SuperClassReferences[ID->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005719
Daniel Dunbar11394522009-04-18 08:51:00 +00005720 if (!Entry) {
5721 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5722 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005723 Entry =
5724 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005725 false, llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005726 ClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005727 "\01L_OBJC_CLASSLIST_SUP_REFS_$_");
Daniel Dunbar11394522009-04-18 08:51:00 +00005728 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005729 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005730 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar11394522009-04-18 08:51:00 +00005731 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005732 CGM.AddUsedGlobal(Entry);
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005733 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005734
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005735 return Builder.CreateLoad(Entry, "tmp");
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005736}
5737
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005738/// EmitMetaClassRef - Return a Value * of the address of _class_t
5739/// meta-data
5740///
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005741llvm::Value *CGObjCNonFragileABIMac::EmitMetaClassRef(CGBuilderTy &Builder,
5742 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005743 llvm::GlobalVariable * &Entry = MetaClassReferences[ID->getIdentifier()];
5744 if (Entry)
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005745 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005746
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005747 std::string MetaClassName(getMetaclassSymbolPrefix() + ID->getNameAsString());
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005748 llvm::GlobalVariable *MetaClassGV = GetClassGlobal(MetaClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005749 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00005750 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy, false,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005751 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005752 MetaClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005753 "\01L_OBJC_CLASSLIST_SUP_REFS_$_");
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005754 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005755 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005756 ObjCTypes.ClassnfABIPtrTy));
5757
Daniel Dunbar33af70f2009-04-15 19:03:14 +00005758 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005759 CGM.AddUsedGlobal(Entry);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005760
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005761 return Builder.CreateLoad(Entry, "tmp");
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005762}
5763
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005764/// GetClass - Return a reference to the class for the given interface
5765/// decl.
5766llvm::Value *CGObjCNonFragileABIMac::GetClass(CGBuilderTy &Builder,
5767 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian269f8bc2009-11-17 22:42:00 +00005768 if (ID->hasAttr<WeakImportAttr>()) {
5769 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5770 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
5771 ClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
5772 }
5773
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005774 return EmitClassRef(Builder, ID);
5775}
5776
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005777/// Generates a message send where the super is the receiver. This is
5778/// a message send to self with special delivery semantics indicating
5779/// which class's method should be called.
5780CodeGen::RValue
5781CGObjCNonFragileABIMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005782 ReturnValueSlot Return,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005783 QualType ResultType,
5784 Selector Sel,
5785 const ObjCInterfaceDecl *Class,
5786 bool isCategoryImpl,
5787 llvm::Value *Receiver,
5788 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005789 const CodeGen::CallArgList &CallArgs,
5790 const ObjCMethodDecl *Method) {
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005791 // ...
5792 // Create and init a super structure; this is a (receiver, class)
5793 // pair we will pass to objc_msgSendSuper.
5794 llvm::Value *ObjCSuper =
5795 CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005796
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005797 llvm::Value *ReceiverAsObject =
5798 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
5799 CGF.Builder.CreateStore(ReceiverAsObject,
5800 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005801
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005802 // If this is a class message the metaclass is passed as the target.
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005803 llvm::Value *Target;
5804 if (IsClassMessage) {
5805 if (isCategoryImpl) {
5806 // Message sent to "super' in a class method defined in
5807 // a category implementation.
Daniel Dunbar11394522009-04-18 08:51:00 +00005808 Target = EmitClassRef(CGF.Builder, Class);
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005809 Target = CGF.Builder.CreateStructGEP(Target, 0);
5810 Target = CGF.Builder.CreateLoad(Target);
Mike Stumpb3589f42009-07-30 22:28:39 +00005811 } else
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005812 Target = EmitMetaClassRef(CGF.Builder, Class);
Mike Stumpb3589f42009-07-30 22:28:39 +00005813 } else
Daniel Dunbar11394522009-04-18 08:51:00 +00005814 Target = EmitSuperClassRef(CGF.Builder, Class);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005815
Mike Stumpf5408fe2009-05-16 07:57:57 +00005816 // FIXME: We shouldn't need to do this cast, rectify the ASTContext and
5817 // ObjCTypes types.
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005818 const llvm::Type *ClassTy =
5819 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
5820 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
5821 CGF.Builder.CreateStore(Target,
5822 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005823
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005824 return (LegacyDispatchedSelector(Sel))
John McCallef072fd2010-05-22 01:48:05 +00005825 ? EmitLegacyMessageSend(CGF, Return, ResultType,
5826 EmitSelector(CGF.Builder, Sel),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005827 ObjCSuper, ObjCTypes.SuperPtrCTy,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005828 true, CallArgs, Method, ObjCTypes)
John McCallef072fd2010-05-22 01:48:05 +00005829 : EmitMessageSend(CGF, Return, ResultType, Sel,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005830 ObjCSuper, ObjCTypes.SuperPtrCTy,
5831 true, CallArgs);
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005832}
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005833
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005834llvm::Value *CGObjCNonFragileABIMac::EmitSelector(CGBuilderTy &Builder,
Fariborz Jahanian03b29602010-06-17 19:56:20 +00005835 Selector Sel, bool lval) {
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005836 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005837
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005838 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005839 llvm::Constant *Casted =
5840 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
5841 ObjCTypes.SelectorPtrTy);
5842 Entry =
5843 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.SelectorPtrTy, false,
5844 llvm::GlobalValue::InternalLinkage,
5845 Casted, "\01L_OBJC_SELECTOR_REFERENCES_");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005846 Entry->setSection("__DATA, __objc_selrefs, literal_pointers, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005847 CGM.AddUsedGlobal(Entry);
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005848 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005849
Fariborz Jahanian03b29602010-06-17 19:56:20 +00005850 if (lval)
5851 return Entry;
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005852 return Builder.CreateLoad(Entry, "tmp");
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005853}
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005854/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00005855/// objc_assign_ivar (id src, id *dst, ptrdiff_t)
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005856///
5857void CGObjCNonFragileABIMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005858 llvm::Value *src,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00005859 llvm::Value *dst,
5860 llvm::Value *ivarOffset) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005861 const llvm::Type * SrcTy = src->getType();
5862 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005863 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005864 assert(Size <= 8 && "does not support size > 8");
5865 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5866 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005867 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5868 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005869 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5870 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00005871 CGF.Builder.CreateCall3(ObjCTypes.getGcAssignIvarFn(),
5872 src, dst, ivarOffset);
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005873 return;
5874}
5875
5876/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
5877/// objc_assign_strongCast (id src, id *dst)
5878///
5879void CGObjCNonFragileABIMac::EmitObjCStrongCastAssign(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005880 CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005881 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005882 const llvm::Type * SrcTy = src->getType();
5883 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005884 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005885 assert(Size <= 8 && "does not support size > 8");
5886 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005887 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005888 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5889 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005890 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5891 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00005892 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005893 src, dst, "weakassign");
5894 return;
5895}
5896
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005897void CGObjCNonFragileABIMac::EmitGCMemmoveCollectable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005898 CodeGen::CodeGenFunction &CGF,
5899 llvm::Value *DestPtr,
5900 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005901 llvm::Value *Size) {
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005902 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy);
5903 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005904 CGF.Builder.CreateCall3(ObjCTypes.GcMemmoveCollectableFn(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005905 DestPtr, SrcPtr, Size);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005906 return;
5907}
5908
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005909/// EmitObjCWeakRead - Code gen for loading value of a __weak
5910/// object: objc_read_weak (id *src)
5911///
5912llvm::Value * CGObjCNonFragileABIMac::EmitObjCWeakRead(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005913 CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005914 llvm::Value *AddrWeakObj) {
Eli Friedman8339b352009-03-07 03:57:15 +00005915 const llvm::Type* DestTy =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005916 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
5917 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj, ObjCTypes.PtrObjectPtrTy);
Chris Lattner72db6c32009-04-22 02:44:54 +00005918 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005919 AddrWeakObj, "weakread");
Eli Friedman8339b352009-03-07 03:57:15 +00005920 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005921 return read_weak;
5922}
5923
5924/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
5925/// objc_assign_weak (id src, id *dst)
5926///
5927void CGObjCNonFragileABIMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005928 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005929 const llvm::Type * SrcTy = src->getType();
5930 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005931 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005932 assert(Size <= 8 && "does not support size > 8");
5933 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5934 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005935 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5936 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005937 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5938 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner96508e12009-04-17 22:12:36 +00005939 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005940 src, dst, "weakassign");
5941 return;
5942}
5943
5944/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
5945/// objc_assign_global (id src, id *dst)
5946///
5947void CGObjCNonFragileABIMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00005948 llvm::Value *src, llvm::Value *dst,
5949 bool threadlocal) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005950 const llvm::Type * SrcTy = src->getType();
5951 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005952 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005953 assert(Size <= 8 && "does not support size > 8");
5954 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5955 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005956 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5957 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005958 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5959 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00005960 if (!threadlocal)
5961 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
5962 src, dst, "globalassign");
5963 else
5964 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignThreadLocalFn(),
5965 src, dst, "threadlocalassign");
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005966 return;
5967}
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005968
John McCall740e8072010-07-21 00:41:47 +00005969namespace {
John McCall1f0fca52010-07-21 07:22:38 +00005970 struct CallSyncExit : EHScopeStack::Cleanup {
John McCall740e8072010-07-21 00:41:47 +00005971 llvm::Value *SyncExitFn;
5972 llvm::Value *SyncArg;
5973 CallSyncExit(llvm::Value *SyncExitFn, llvm::Value *SyncArg)
5974 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {}
5975
5976 void Emit(CodeGenFunction &CGF, bool IsForEHCleanup) {
5977 CGF.Builder.CreateCall(SyncExitFn, SyncArg)->setDoesNotThrow();
5978 }
5979 };
5980}
5981
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005982void
John McCallf1549f62010-07-06 01:34:17 +00005983CGObjCNonFragileABIMac::EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
5984 const ObjCAtSynchronizedStmt &S) {
5985 // Evaluate the lock operand. This should dominate the cleanup.
5986 llvm::Value *SyncArg = CGF.EmitScalarExpr(S.getSynchExpr());
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005987
John McCallf1549f62010-07-06 01:34:17 +00005988 // Acquire the lock.
5989 SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy);
5990 CGF.Builder.CreateCall(ObjCTypes.getSyncEnterFn(), SyncArg)
5991 ->setDoesNotThrow();
5992
5993 // Register an all-paths cleanup to release the lock.
John McCall1f0fca52010-07-21 07:22:38 +00005994 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup,
5995 ObjCTypes.getSyncExitFn(),
5996 SyncArg);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005997
John McCallf1549f62010-07-06 01:34:17 +00005998 // Emit the body of the statement.
5999 CGF.EmitStmt(S.getSynchBody());
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006000
John McCallf1549f62010-07-06 01:34:17 +00006001 // Pop the lock-release cleanup.
6002 CGF.PopCleanupBlock();
6003}
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006004
John McCallf1549f62010-07-06 01:34:17 +00006005namespace {
6006 struct CatchHandler {
6007 const VarDecl *Variable;
6008 const Stmt *Body;
6009 llvm::BasicBlock *Block;
6010 llvm::Value *TypeInfo;
6011 };
John McCall8e3f8612010-07-13 22:12:14 +00006012
John McCall1f0fca52010-07-21 07:22:38 +00006013 struct CallObjCEndCatch : EHScopeStack::Cleanup {
John McCall8e3f8612010-07-13 22:12:14 +00006014 CallObjCEndCatch(bool MightThrow, llvm::Value *Fn) :
6015 MightThrow(MightThrow), Fn(Fn) {}
6016 bool MightThrow;
6017 llvm::Value *Fn;
6018
6019 void Emit(CodeGenFunction &CGF, bool IsForEH) {
6020 if (!MightThrow) {
6021 CGF.Builder.CreateCall(Fn)->setDoesNotThrow();
6022 return;
6023 }
6024
6025 CGF.EmitCallOrInvoke(Fn, 0, 0);
6026 }
6027 };
John McCallf1549f62010-07-06 01:34:17 +00006028}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006029
John McCall5a180392010-07-24 00:37:23 +00006030llvm::Constant *
6031CGObjCNonFragileABIMac::GetEHType(QualType T) {
6032 // There's a particular fixed type info for 'id'.
6033 if (T->isObjCIdType() ||
6034 T->isObjCQualifiedIdType()) {
6035 llvm::Constant *IDEHType =
6036 CGM.getModule().getGlobalVariable("OBJC_EHTYPE_id");
6037 if (!IDEHType)
6038 IDEHType =
6039 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy,
6040 false,
6041 llvm::GlobalValue::ExternalLinkage,
6042 0, "OBJC_EHTYPE_id");
6043 return IDEHType;
6044 }
6045
6046 // All other types should be Objective-C interface pointer types.
6047 const ObjCObjectPointerType *PT =
6048 T->getAs<ObjCObjectPointerType>();
6049 assert(PT && "Invalid @catch type.");
6050 const ObjCInterfaceType *IT = PT->getInterfaceType();
6051 assert(IT && "Invalid @catch type.");
6052 return GetInterfaceEHType(IT->getDecl(), false);
6053}
6054
John McCallf1549f62010-07-06 01:34:17 +00006055void CGObjCNonFragileABIMac::EmitTryStmt(CodeGen::CodeGenFunction &CGF,
6056 const ObjCAtTryStmt &S) {
6057 // Jump destination for falling out of catch bodies.
6058 CodeGenFunction::JumpDest Cont;
6059 if (S.getNumCatchStmts())
6060 Cont = CGF.getJumpDestInCurrentScope("eh.cont");
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006061
John McCallf1549f62010-07-06 01:34:17 +00006062 CodeGenFunction::FinallyInfo FinallyInfo;
6063 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt())
6064 FinallyInfo = CGF.EnterFinallyBlock(Finally->getFinallyBody(),
6065 ObjCTypes.getObjCBeginCatchFn(),
6066 ObjCTypes.getObjCEndCatchFn(),
6067 ObjCTypes.getExceptionRethrowFn());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006068
John McCallf1549f62010-07-06 01:34:17 +00006069 llvm::SmallVector<CatchHandler, 8> Handlers;
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006070
John McCallf1549f62010-07-06 01:34:17 +00006071 // Enter the catch, if there is one.
6072 if (S.getNumCatchStmts()) {
6073 for (unsigned I = 0, N = S.getNumCatchStmts(); I != N; ++I) {
6074 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I);
Douglas Gregorc00d8e12010-04-26 16:46:50 +00006075 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006076
John McCallf1549f62010-07-06 01:34:17 +00006077 Handlers.push_back(CatchHandler());
6078 CatchHandler &Handler = Handlers.back();
6079 Handler.Variable = CatchDecl;
6080 Handler.Body = CatchStmt->getCatchBody();
6081 Handler.Block = CGF.createBasicBlock("catch");
6082
6083 // @catch(...) always matches.
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00006084 if (!CatchDecl) {
John McCallf1549f62010-07-06 01:34:17 +00006085 Handler.TypeInfo = 0; // catch-all
6086 // Don't consider any other catches.
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00006087 break;
6088 }
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006089
John McCall5a180392010-07-24 00:37:23 +00006090 Handler.TypeInfo = GetEHType(CatchDecl->getType());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006091 }
John McCallf1549f62010-07-06 01:34:17 +00006092
6093 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
6094 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
6095 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006096 }
John McCallf1549f62010-07-06 01:34:17 +00006097
6098 // Emit the try body.
6099 CGF.EmitStmt(S.getTryBody());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006100
John McCallf1549f62010-07-06 01:34:17 +00006101 // Leave the try.
6102 if (S.getNumCatchStmts())
6103 CGF.EHStack.popCatch();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006104
John McCallf1549f62010-07-06 01:34:17 +00006105 // Remember where we were.
6106 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006107
John McCallf1549f62010-07-06 01:34:17 +00006108 // Emit the handlers.
6109 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
6110 CatchHandler &Handler = Handlers[I];
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006111
John McCallf1549f62010-07-06 01:34:17 +00006112 CGF.EmitBlock(Handler.Block);
6113 llvm::Value *RawExn = CGF.Builder.CreateLoad(CGF.getExceptionSlot());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006114
John McCallf1549f62010-07-06 01:34:17 +00006115 // Enter the catch.
6116 llvm::CallInst *Exn =
6117 CGF.Builder.CreateCall(ObjCTypes.getObjCBeginCatchFn(), RawExn,
6118 "exn.adjusted");
6119 Exn->setDoesNotThrow();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006120
John McCallf1549f62010-07-06 01:34:17 +00006121 // Add a cleanup to leave the catch.
John McCall8e3f8612010-07-13 22:12:14 +00006122 bool EndCatchMightThrow = (Handler.Variable == 0);
John McCall1f0fca52010-07-21 07:22:38 +00006123 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup,
6124 EndCatchMightThrow,
6125 ObjCTypes.getObjCEndCatchFn());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006126
John McCallf1549f62010-07-06 01:34:17 +00006127 // Bind the catch parameter if it exists.
6128 if (const VarDecl *CatchParam = Handler.Variable) {
6129 const llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType());
6130 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006131
John McCallf1549f62010-07-06 01:34:17 +00006132 CGF.EmitLocalBlockVarDecl(*CatchParam);
6133 CGF.Builder.CreateStore(CastExn, CGF.GetAddrOfLocalVar(CatchParam));
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006134 }
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006135
John McCallf1549f62010-07-06 01:34:17 +00006136 CGF.ObjCEHValueStack.push_back(Exn);
6137 CGF.EmitStmt(Handler.Body);
6138 CGF.ObjCEHValueStack.pop_back();
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006139
John McCallf1549f62010-07-06 01:34:17 +00006140 // Leave the earlier cleanup.
6141 CGF.PopCleanupBlock();
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006142
John McCallf1549f62010-07-06 01:34:17 +00006143 CGF.EmitBranchThroughCleanup(Cont);
6144 }
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006145
John McCallf1549f62010-07-06 01:34:17 +00006146 // Go back to the try-statement fallthrough.
6147 CGF.Builder.restoreIP(SavedIP);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006148
John McCallf1549f62010-07-06 01:34:17 +00006149 // Pop out of the normal cleanup on the finally.
6150 if (S.getFinallyStmt())
6151 CGF.ExitFinallyBlock(FinallyInfo);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006152
John McCallff8e1152010-07-23 21:56:41 +00006153 if (Cont.isValid())
6154 CGF.EmitBlock(Cont.getBlock());
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006155}
6156
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006157/// EmitThrowStmt - Generate code for a throw statement.
6158void CGObjCNonFragileABIMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
6159 const ObjCAtThrowStmt &S) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006160 llvm::Value *Exception;
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006161 llvm::Constant *FunctionThrowOrRethrow;
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006162 if (const Expr *ThrowExpr = S.getThrowExpr()) {
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006163 Exception = CGF.EmitScalarExpr(ThrowExpr);
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006164 FunctionThrowOrRethrow = ObjCTypes.getExceptionThrowFn();
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006165 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006166 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006167 "Unexpected rethrow outside @catch block.");
6168 Exception = CGF.ObjCEHValueStack.back();
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006169 FunctionThrowOrRethrow = ObjCTypes.getExceptionRethrowFn();
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006170 }
6171
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006172 llvm::Value *ExceptionAsObject =
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006173 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy, "tmp");
6174 llvm::BasicBlock *InvokeDest = CGF.getInvokeDest();
6175 if (InvokeDest) {
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006176 CGF.Builder.CreateInvoke(FunctionThrowOrRethrow,
John McCallf1549f62010-07-06 01:34:17 +00006177 CGF.getUnreachableBlock(), InvokeDest,
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006178 &ExceptionAsObject, &ExceptionAsObject + 1);
John McCallf1549f62010-07-06 01:34:17 +00006179 } else {
6180 CGF.Builder.CreateCall(FunctionThrowOrRethrow, ExceptionAsObject)
6181 ->setDoesNotReturn();
6182 CGF.Builder.CreateUnreachable();
6183 }
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006184
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006185 // Clear the insertion point to indicate we are in unreachable code.
6186 CGF.Builder.ClearInsertionPoint();
6187}
Daniel Dunbare588b992009-03-01 04:46:24 +00006188
John McCall5a180392010-07-24 00:37:23 +00006189llvm::Constant *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006190CGObjCNonFragileABIMac::GetInterfaceEHType(const ObjCInterfaceDecl *ID,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006191 bool ForDefinition) {
Daniel Dunbare588b992009-03-01 04:46:24 +00006192 llvm::GlobalVariable * &Entry = EHTypeReferences[ID->getIdentifier()];
Daniel Dunbare588b992009-03-01 04:46:24 +00006193
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006194 // If we don't need a definition, return the entry if found or check
6195 // if we use an external reference.
6196 if (!ForDefinition) {
6197 if (Entry)
6198 return Entry;
Daniel Dunbar7e075cb2009-04-07 06:43:45 +00006199
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006200 // If this type (or a super class) has the __objc_exception__
6201 // attribute, emit an external reference.
Douglas Gregor68584ed2009-06-18 16:11:24 +00006202 if (hasObjCExceptionAttribute(CGM.getContext(), ID))
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006203 return Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00006204 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006205 llvm::GlobalValue::ExternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006206 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00006207 ("OBJC_EHTYPE_$_" +
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00006208 ID->getIdentifier()->getName()));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006209 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006210
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006211 // Otherwise we need to either make a new entry or fill in the
6212 // initializer.
6213 assert((!Entry || !Entry->hasInitializer()) && "Duplicate EHType definition");
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00006214 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
Daniel Dunbare588b992009-03-01 04:46:24 +00006215 std::string VTableName = "objc_ehtype_vtable";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006216 llvm::GlobalVariable *VTableGV =
Daniel Dunbare588b992009-03-01 04:46:24 +00006217 CGM.getModule().getGlobalVariable(VTableName);
6218 if (!VTableGV)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006219 VTableGV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.Int8PtrTy,
6220 false,
Daniel Dunbare588b992009-03-01 04:46:24 +00006221 llvm::GlobalValue::ExternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +00006222 0, VTableName);
Daniel Dunbare588b992009-03-01 04:46:24 +00006223
Chris Lattner77b89b82010-06-27 07:15:29 +00006224 llvm::Value *VTableIdx =
6225 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 2);
Daniel Dunbare588b992009-03-01 04:46:24 +00006226
6227 std::vector<llvm::Constant*> Values(3);
Owen Anderson3c4972d2009-07-29 18:54:39 +00006228 Values[0] = llvm::ConstantExpr::getGetElementPtr(VTableGV, &VTableIdx, 1);
Daniel Dunbare588b992009-03-01 04:46:24 +00006229 Values[1] = GetClassName(ID->getIdentifier());
Fariborz Jahanian0f902942009-04-14 18:41:56 +00006230 Values[2] = GetClassGlobal(ClassName);
Owen Andersona1cf15f2009-07-14 23:10:40 +00006231 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00006232 llvm::ConstantStruct::get(ObjCTypes.EHTypeTy, Values);
Daniel Dunbare588b992009-03-01 04:46:24 +00006233
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006234 if (Entry) {
6235 Entry->setInitializer(Init);
6236 } else {
Owen Anderson1c431b32009-07-08 19:05:04 +00006237 Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006238 llvm::GlobalValue::WeakAnyLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006239 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00006240 ("OBJC_EHTYPE_$_" +
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00006241 ID->getIdentifier()->getName()));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006242 }
6243
Daniel Dunbar04d40782009-04-14 06:00:08 +00006244 if (CGM.getLangOptions().getVisibilityMode() == LangOptions::Hidden)
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00006245 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00006246 Entry->setAlignment(CGM.getTargetData().getABITypeAlignment(
6247 ObjCTypes.EHTypeTy));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006248
6249 if (ForDefinition) {
6250 Entry->setSection("__DATA,__objc_const");
6251 Entry->setLinkage(llvm::GlobalValue::ExternalLinkage);
6252 } else {
6253 Entry->setSection("__DATA,__datacoal_nt,coalesced");
6254 }
Daniel Dunbare588b992009-03-01 04:46:24 +00006255
6256 return Entry;
6257}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006258
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00006259/* *** */
6260
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00006261CodeGen::CGObjCRuntime *
6262CodeGen::CreateMacObjCRuntime(CodeGen::CodeGenModule &CGM) {
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00006263 return new CGObjCMac(CGM);
6264}
Fariborz Jahanianee0af742009-01-21 22:04:16 +00006265
6266CodeGen::CGObjCRuntime *
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00006267CodeGen::CreateMacNonFragileABIObjCRuntime(CodeGen::CodeGenModule &CGM) {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00006268 return new CGObjCNonFragileABIMac(CGM);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00006269}