blob: 0bfc94eaaf5d4e49c896f4b8da0b13a97f5d713b [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
774
775
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +0000776 /// EHPersonalityPtr - LLVM value for an i8* to the Objective-C
777 /// exception personality function.
Chris Lattnerb02e53b2009-04-06 16:53:45 +0000778 llvm::Value *getEHPersonalityPtr() {
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000779 llvm::Constant *Personality =
Owen Anderson0032b272009-08-13 21:57:51 +0000780 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::getInt32Ty(VMContext),
Chris Lattnerb02e53b2009-04-06 16:53:45 +0000781 true),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000782 "__objc_personality_v0");
Owen Anderson3c4972d2009-07-29 18:54:39 +0000783 return llvm::ConstantExpr::getBitCast(Personality, Int8PtrTy);
Chris Lattnerb02e53b2009-04-06 16:53:45 +0000784 }
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +0000785
Chris Lattner8a569112009-04-22 02:15:23 +0000786 llvm::Constant *getUnwindResumeOrRethrowFn() {
787 std::vector<const llvm::Type*> Params;
788 Params.push_back(Int8PtrTy);
Owen Andersona1cf15f2009-07-14 23:10:40 +0000789 return CGM.CreateRuntimeFunction(
Owen Anderson0032b272009-08-13 21:57:51 +0000790 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000791 Params, false),
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000792 (CGM.getLangOptions().SjLjExceptions ? "_Unwind_SjLj_Resume" :
793 "_Unwind_Resume_or_Rethrow"));
Chris Lattner8a569112009-04-22 02:15:23 +0000794 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000795
Chris Lattner8a569112009-04-22 02:15:23 +0000796 llvm::Constant *getObjCEndCatchFn() {
Owen Anderson0032b272009-08-13 21:57:51 +0000797 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
Chris Lattnerb59761b2009-07-01 04:13:52 +0000798 false),
Chris Lattner8a569112009-04-22 02:15:23 +0000799 "objc_end_catch");
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000800
Chris Lattner8a569112009-04-22 02:15:23 +0000801 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000802
Chris Lattner8a569112009-04-22 02:15:23 +0000803 llvm::Constant *getObjCBeginCatchFn() {
804 std::vector<const llvm::Type*> Params;
805 Params.push_back(Int8PtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000806 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(Int8PtrTy,
Chris Lattner8a569112009-04-22 02:15:23 +0000807 Params, false),
808 "objc_begin_catch");
809 }
Daniel Dunbare588b992009-03-01 04:46:24 +0000810
811 const llvm::StructType *EHTypeTy;
812 const llvm::Type *EHTypePtrTy;
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +0000813
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000814 ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm);
815 ~ObjCNonFragileABITypesHelper(){}
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000816};
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000817
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000818class CGObjCCommonMac : public CodeGen::CGObjCRuntime {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000819public:
820 // FIXME - accessibility
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000821 class GC_IVAR {
Fariborz Jahanian820e0202009-03-11 00:07:04 +0000822 public:
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000823 unsigned ivar_bytepos;
824 unsigned ivar_size;
825 GC_IVAR(unsigned bytepos = 0, unsigned size = 0)
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000826 : ivar_bytepos(bytepos), ivar_size(size) {}
Daniel Dunbar0941b492009-04-23 01:29:05 +0000827
828 // Allow sorting based on byte pos.
829 bool operator<(const GC_IVAR &b) const {
830 return ivar_bytepos < b.ivar_bytepos;
831 }
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000832 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000833
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000834 class SKIP_SCAN {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000835 public:
836 unsigned skip;
837 unsigned scan;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000838 SKIP_SCAN(unsigned _skip = 0, unsigned _scan = 0)
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000839 : skip(_skip), scan(_scan) {}
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000840 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000841
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000842protected:
843 CodeGen::CodeGenModule &CGM;
Owen Anderson69243822009-07-13 04:10:07 +0000844 llvm::LLVMContext &VMContext;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000845 // FIXME! May not be needing this after all.
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000846 unsigned ObjCABI;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000847
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000848 // gc ivar layout bitmap calculation helper caches.
849 llvm::SmallVector<GC_IVAR, 16> SkipIvars;
850 llvm::SmallVector<GC_IVAR, 16> IvarsInfo;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000851
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000852 /// LazySymbols - Symbols to generate a lazy reference for. See
853 /// DefinedSymbols and FinishModule().
Daniel Dunbar33063492009-09-07 00:20:42 +0000854 llvm::SetVector<IdentifierInfo*> LazySymbols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000855
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000856 /// DefinedSymbols - External symbols which are defined by this
857 /// module. The symbols in this list and LazySymbols are used to add
858 /// special linker symbols which ensure that Objective-C modules are
859 /// linked properly.
Daniel Dunbar33063492009-09-07 00:20:42 +0000860 llvm::SetVector<IdentifierInfo*> DefinedSymbols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000861
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000862 /// ClassNames - uniqued class names.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000863 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassNames;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000864
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000865 /// MethodVarNames - uniqued method variable names.
866 llvm::DenseMap<Selector, llvm::GlobalVariable*> MethodVarNames;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000867
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +0000868 /// DefinedCategoryNames - list of category names in form Class_Category.
869 llvm::SetVector<std::string> DefinedCategoryNames;
870
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000871 /// MethodVarTypes - uniqued method type signatures. We have to use
872 /// a StringMap here because have no other unique reference.
873 llvm::StringMap<llvm::GlobalVariable*> MethodVarTypes;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000874
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000875 /// MethodDefinitions - map of methods which have been defined in
876 /// this translation unit.
877 llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*> MethodDefinitions;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000878
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000879 /// PropertyNames - uniqued method variable names.
880 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> PropertyNames;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000881
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000882 /// ClassReferences - uniqued class references.
883 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000884
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000885 /// SelectorReferences - uniqued selector references.
886 llvm::DenseMap<Selector, llvm::GlobalVariable*> SelectorReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000887
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000888 /// Protocols - Protocols for which an objc_protocol structure has
889 /// been emitted. Forward declarations are handled by creating an
890 /// empty structure whose initializer is filled in when/if defined.
891 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000892
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000893 /// DefinedProtocols - Protocols which have actually been
894 /// defined. We should not need this, see FIXME in GenerateProtocol.
895 llvm::DenseSet<IdentifierInfo*> DefinedProtocols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000896
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000897 /// DefinedClasses - List of defined classes.
898 std::vector<llvm::GlobalValue*> DefinedClasses;
Daniel Dunbar74d4b122009-05-15 22:33:15 +0000899
900 /// DefinedNonLazyClasses - List of defined "non-lazy" classes.
901 std::vector<llvm::GlobalValue*> DefinedNonLazyClasses;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000902
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000903 /// DefinedCategories - List of defined categories.
904 std::vector<llvm::GlobalValue*> DefinedCategories;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000905
Daniel Dunbar74d4b122009-05-15 22:33:15 +0000906 /// DefinedNonLazyCategories - List of defined "non-lazy" categories.
907 std::vector<llvm::GlobalValue*> DefinedNonLazyCategories;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000908
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000909 /// GetNameForMethod - Return a name for the given method.
910 /// \param[out] NameOut - The return value.
911 void GetNameForMethod(const ObjCMethodDecl *OMD,
912 const ObjCContainerDecl *CD,
Daniel Dunbarc575ce72009-10-19 01:21:19 +0000913 llvm::SmallVectorImpl<char> &NameOut);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000914
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000915 /// GetMethodVarName - Return a unique constant for the given
916 /// selector's name. The return value has type char *.
917 llvm::Constant *GetMethodVarName(Selector Sel);
918 llvm::Constant *GetMethodVarName(IdentifierInfo *Ident);
919 llvm::Constant *GetMethodVarName(const std::string &Name);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000920
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000921 /// GetMethodVarType - Return a unique constant for the given
922 /// selector's name. The return value has type char *.
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000923
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000924 // FIXME: This is a horrible name.
925 llvm::Constant *GetMethodVarType(const ObjCMethodDecl *D);
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +0000926 llvm::Constant *GetMethodVarType(const FieldDecl *D);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000927
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000928 /// GetPropertyName - Return a unique constant for the given
929 /// name. The return value has type char *.
930 llvm::Constant *GetPropertyName(IdentifierInfo *Ident);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000931
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000932 // FIXME: This can be dropped once string functions are unified.
933 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
934 const Decl *Container);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000935
Fariborz Jahanian058a1b72009-01-24 20:21:50 +0000936 /// GetClassName - Return a unique constant for the given selector's
937 /// name. The return value has type char *.
938 llvm::Constant *GetClassName(IdentifierInfo *Ident);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000939
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +0000940 /// BuildIvarLayout - Builds ivar layout bitmap for the class
941 /// implementation for the __strong or __weak case.
942 ///
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000943 llvm::Constant *BuildIvarLayout(const ObjCImplementationDecl *OI,
944 bool ForStrongLayout);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +0000945
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +0000946 llvm::Constant *BuildIvarLayoutBitmap(std::string &BitMap);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000947
Daniel Dunbard58edcb2009-05-03 14:10:34 +0000948 void BuildAggrIvarRecordLayout(const RecordType *RT,
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000949 unsigned int BytePos, bool ForStrongLayout,
950 bool &HasUnion);
Daniel Dunbar5a5a8032009-05-03 21:05:10 +0000951 void BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000952 const llvm::StructLayout *Layout,
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000953 const RecordDecl *RD,
Chris Lattnerf1690852009-03-31 08:48:01 +0000954 const llvm::SmallVectorImpl<FieldDecl*> &RecFields,
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +0000955 unsigned int BytePos, bool ForStrongLayout,
Fariborz Jahanian81adc052009-04-24 16:17:09 +0000956 bool &HasUnion);
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000957
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +0000958 /// GetIvarLayoutName - Returns a unique constant for the given
959 /// ivar layout bitmap.
960 llvm::Constant *GetIvarLayoutName(IdentifierInfo *Ident,
961 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000962
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +0000963 /// EmitPropertyList - Emit the given property list. The return
964 /// value has type PropertyListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +0000965 llvm::Constant *EmitPropertyList(llvm::Twine Name,
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000966 const Decl *Container,
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +0000967 const ObjCContainerDecl *OCD,
968 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000969
Fariborz Jahanian191dcd72009-12-12 21:26:21 +0000970 /// PushProtocolProperties - Push protocol's property on the input stack.
971 void PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*, 16> &PropertySet,
972 std::vector<llvm::Constant*> &Properties,
973 const Decl *Container,
974 const ObjCProtocolDecl *PROTO,
975 const ObjCCommonTypesHelper &ObjCTypes);
976
Fariborz Jahanianda320092009-01-29 19:24:30 +0000977 /// GetProtocolRef - Return a reference to the internal protocol
978 /// description, creating an empty one if it has not been
979 /// defined. The return value has type ProtocolPtrTy.
980 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
Fariborz Jahanianb21f07e2009-03-08 20:18:37 +0000981
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000982 /// CreateMetadataVar - Create a global variable with internal
983 /// linkage for use by the Objective-C runtime.
984 ///
985 /// This is a convenience wrapper which not only creates the
986 /// variable, but also sets the section and alignment and adds the
Chris Lattnerad64e022009-07-17 23:57:13 +0000987 /// global to the "llvm.used" list.
Daniel Dunbar35bd7632009-03-09 20:50:13 +0000988 ///
989 /// \param Name - The variable name.
990 /// \param Init - The variable initializer; this is also used to
991 /// define the type of the variable.
992 /// \param Section - The section the variable should go into, or 0.
993 /// \param Align - The alignment for the variable, or 0.
994 /// \param AddToUsed - Whether the variable should be added to
Daniel Dunbarc1583062009-04-14 17:42:51 +0000995 /// "llvm.used".
Daniel Dunbar9c29bf52009-10-18 20:48:59 +0000996 llvm::GlobalVariable *CreateMetadataVar(llvm::Twine Name,
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000997 llvm::Constant *Init,
998 const char *Section,
Daniel Dunbar35bd7632009-03-09 20:50:13 +0000999 unsigned Align,
1000 bool AddToUsed);
Daniel Dunbarfd65d372009-03-09 20:09:19 +00001001
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001002 CodeGen::RValue EmitLegacyMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001003 ReturnValueSlot Return,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001004 QualType ResultType,
1005 llvm::Value *Sel,
1006 llvm::Value *Arg0,
1007 QualType Arg0Ty,
1008 bool IsSuper,
1009 const CallArgList &CallArgs,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001010 const ObjCMethodDecl *OMD,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001011 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00001012
Daniel Dunbarfce176b2010-04-25 20:39:01 +00001013 /// EmitImageInfo - Emit the image info marker used to encode some module
1014 /// level information.
1015 void EmitImageInfo();
1016
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001017public:
Owen Anderson69243822009-07-13 04:10:07 +00001018 CGObjCCommonMac(CodeGen::CodeGenModule &cgm) :
Mike Stump1eb44332009-09-09 15:08:12 +00001019 CGM(cgm), VMContext(cgm.getLLVMContext()) { }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001020
David Chisnall0d13f6f2010-01-23 02:40:42 +00001021 virtual llvm::Constant *GenerateConstantString(const StringLiteral *SL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001022
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001023 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
1024 const ObjCContainerDecl *CD=0);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001025
Fariborz Jahanianda320092009-01-29 19:24:30 +00001026 virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001027
Fariborz Jahanianda320092009-01-29 19:24:30 +00001028 /// GetOrEmitProtocol - Get the protocol object for the given
1029 /// declaration, emitting it if necessary. The return value has type
1030 /// ProtocolPtrTy.
1031 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001032
Fariborz Jahanianda320092009-01-29 19:24:30 +00001033 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1034 /// object for the given declaration, emitting it if needed. These
1035 /// forward references will be filled in with empty bodies if no
1036 /// definition is seen. The return value has type ProtocolPtrTy.
1037 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0;
Fariborz Jahanian89ecd412010-08-04 16:57:49 +00001038 virtual llvm::Constant *GCBlockLayout(CodeGen::CodeGenFunction &CGF,
1039 const llvm::SmallVectorImpl<const BlockDeclRefExpr *> &);
1040
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001041};
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001042
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001043class CGObjCMac : public CGObjCCommonMac {
1044private:
1045 ObjCTypesHelper ObjCTypes;
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001046
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001047 /// EmitModuleInfo - Another marker encoding module level
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001048 /// information.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001049 void EmitModuleInfo();
1050
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001051 /// EmitModuleSymols - Emit module symbols, the list of defined
1052 /// classes and categories. The result has type SymtabPtrTy.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001053 llvm::Constant *EmitModuleSymbols();
1054
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001055 /// FinishModule - Write out global data structures at the end of
1056 /// processing a translation unit.
1057 void FinishModule();
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001058
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001059 /// EmitClassExtension - Generate the class extension structure used
1060 /// to store the weak ivar layout and properties. The return value
1061 /// has type ClassExtensionPtrTy.
1062 llvm::Constant *EmitClassExtension(const ObjCImplementationDecl *ID);
1063
1064 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
1065 /// for the given class.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001066 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001067 const ObjCInterfaceDecl *ID);
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00001068
1069 /// EmitSuperClassRef - Emits reference to class's main metadata class.
1070 llvm::Value *EmitSuperClassRef(const ObjCInterfaceDecl *ID);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001071
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001072 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001073 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001074 QualType ResultType,
1075 Selector Sel,
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001076 llvm::Value *Arg0,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001077 QualType Arg0Ty,
1078 bool IsSuper,
1079 const CallArgList &CallArgs);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001080
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001081 /// EmitIvarList - Emit the ivar list for the given
1082 /// implementation. If ForClass is true the list of class ivars
1083 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1084 /// interface ivars will be emitted. The return value has type
1085 /// IvarListPtrTy.
1086 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00001087 bool ForClass);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001088
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001089 /// EmitMetaClass - Emit a forward reference to the class structure
1090 /// for the metaclass of the given interface. The return value has
1091 /// type ClassPtrTy.
1092 llvm::Constant *EmitMetaClassRef(const ObjCInterfaceDecl *ID);
1093
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001094 /// EmitMetaClass - Emit a class structure for the metaclass of the
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001095 /// given implementation. The return value has type ClassPtrTy.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001096 llvm::Constant *EmitMetaClass(const ObjCImplementationDecl *ID,
1097 llvm::Constant *Protocols,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001098 const ConstantVector &Methods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001099
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001100 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001101
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001102 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001103
1104 /// EmitMethodList - Emit the method list for the given
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001105 /// implementation. The return value has type MethodListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001106 llvm::Constant *EmitMethodList(llvm::Twine Name,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001107 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001108 const ConstantVector &Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001109
1110 /// EmitMethodDescList - Emit a method description list for a list of
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001111 /// method declarations.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001112 /// - TypeName: The name for the type containing the methods.
1113 /// - IsProtocol: True iff these methods are for a protocol.
1114 /// - ClassMethds: True iff these are class methods.
1115 /// - Required: When true, only "required" methods are
1116 /// listed. Similarly, when false only "optional" methods are
1117 /// listed. For classes this should always be true.
1118 /// - begin, end: The method list to output.
1119 ///
1120 /// The return value has type MethodDescriptionListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001121 llvm::Constant *EmitMethodDescList(llvm::Twine Name,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001122 const char *Section,
1123 const ConstantVector &Methods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001124
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001125 /// GetOrEmitProtocol - Get the protocol object for the given
1126 /// declaration, emitting it if necessary. The return value has type
1127 /// ProtocolPtrTy.
Fariborz Jahanianda320092009-01-29 19:24:30 +00001128 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001129
1130 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1131 /// object for the given declaration, emitting it if needed. These
1132 /// forward references will be filled in with empty bodies if no
1133 /// definition is seen. The return value has type ProtocolPtrTy.
Fariborz Jahanianda320092009-01-29 19:24:30 +00001134 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001135
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001136 /// EmitProtocolExtension - Generate the protocol extension
1137 /// structure used to store optional instance and class methods, and
1138 /// protocol properties. The return value has type
1139 /// ProtocolExtensionPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001140 llvm::Constant *
1141 EmitProtocolExtension(const ObjCProtocolDecl *PD,
1142 const ConstantVector &OptInstanceMethods,
1143 const ConstantVector &OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001144
1145 /// EmitProtocolList - Generate the list of referenced
1146 /// protocols. The return value has type ProtocolListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001147 llvm::Constant *EmitProtocolList(llvm::Twine Name,
Daniel Dunbardbc93372008-08-21 21:57:41 +00001148 ObjCProtocolDecl::protocol_iterator begin,
1149 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001150
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001151 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1152 /// for the given selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001153 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel,
1154 bool lval=false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001155
1156public:
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001157 CGObjCMac(CodeGen::CodeGenModule &cgm);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001158
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001159 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001160
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001161 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001162 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001163 QualType ResultType,
1164 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001165 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001166 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001167 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001168 const ObjCMethodDecl *Method);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001169
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001170 virtual CodeGen::RValue
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001171 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001172 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001173 QualType ResultType,
1174 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001175 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001176 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001177 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001178 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001179 const CallArgList &CallArgs,
1180 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001181
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001182 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001183 const ObjCInterfaceDecl *ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001184
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001185 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
1186 bool lval = false);
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001187
1188 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1189 /// untyped one.
1190 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1191 const ObjCMethodDecl *Method);
1192
John McCall5a180392010-07-24 00:37:23 +00001193 virtual llvm::Constant *GetEHType(QualType T);
1194
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001195 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001196
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001197 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001198
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001199 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001200 const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001201
Chris Lattner74391b42009-03-22 21:03:39 +00001202 virtual llvm::Constant *GetPropertyGetFunction();
1203 virtual llvm::Constant *GetPropertySetFunction();
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00001204 virtual llvm::Constant *GetCopyStructFunction();
Chris Lattner74391b42009-03-22 21:03:39 +00001205 virtual llvm::Constant *EnumerationMutationFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001206
John McCallf1549f62010-07-06 01:34:17 +00001207 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1208 const ObjCAtTryStmt &S);
1209 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1210 const ObjCAtSynchronizedStmt &S);
1211 void EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF, const Stmt &S);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001212 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
1213 const ObjCAtThrowStmt &S);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00001214 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001215 llvm::Value *AddrWeakObj);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00001216 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001217 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanian58626502008-11-19 00:59:10 +00001218 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00001219 llvm::Value *src, llvm::Value *dest,
1220 bool threadlocal = false);
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00001221 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00001222 llvm::Value *src, llvm::Value *dest,
1223 llvm::Value *ivarOffset);
Fariborz Jahanian58626502008-11-19 00:59:10 +00001224 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
1225 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00001226 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
1227 llvm::Value *dest, llvm::Value *src,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001228 llvm::Value *size);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001229
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001230 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1231 QualType ObjectTy,
1232 llvm::Value *BaseValue,
1233 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001234 unsigned CVRQualifiers);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001235 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00001236 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001237 const ObjCIvarDecl *Ivar);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001238};
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001239
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001240class CGObjCNonFragileABIMac : public CGObjCCommonMac {
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001241private:
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001242 ObjCNonFragileABITypesHelper ObjCTypes;
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001243 llvm::GlobalVariable* ObjCEmptyCacheVar;
1244 llvm::GlobalVariable* ObjCEmptyVtableVar;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001245
Daniel Dunbar11394522009-04-18 08:51:00 +00001246 /// SuperClassReferences - uniqued super class references.
1247 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> SuperClassReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001248
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001249 /// MetaClassReferences - uniqued meta class references.
1250 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> MetaClassReferences;
Daniel Dunbare588b992009-03-01 04:46:24 +00001251
1252 /// EHTypeReferences - uniqued class ehtype references.
1253 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> EHTypeReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001254
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001255 /// NonLegacyDispatchMethods - List of methods for which we do *not* generate
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001256 /// legacy messaging dispatch.
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001257 llvm::DenseSet<Selector> NonLegacyDispatchMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001258
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00001259 /// DefinedMetaClasses - List of defined meta-classes.
1260 std::vector<llvm::GlobalValue*> DefinedMetaClasses;
1261
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001262 /// LegacyDispatchedSelector - Returns true if SEL is not in the list of
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001263 /// NonLegacyDispatchMethods; false otherwise.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001264 bool LegacyDispatchedSelector(Selector Sel);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001265
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001266 /// FinishNonFragileABIModule - Write out global data structures at the end of
1267 /// processing a translation unit.
1268 void FinishNonFragileABIModule();
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001269
Daniel Dunbar463b8762009-05-15 21:48:48 +00001270 /// AddModuleClassList - Add the given list of class pointers to the
1271 /// module with the provided symbol and section names.
1272 void AddModuleClassList(const std::vector<llvm::GlobalValue*> &Container,
1273 const char *SymbolName,
1274 const char *SectionName);
1275
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001276 llvm::GlobalVariable * BuildClassRoTInitializer(unsigned flags,
1277 unsigned InstanceStart,
1278 unsigned InstanceSize,
1279 const ObjCImplementationDecl *ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00001280 llvm::GlobalVariable * BuildClassMetaData(std::string &ClassName,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001281 llvm::Constant *IsAGV,
Fariborz Jahanian84394a52009-01-24 21:21:53 +00001282 llvm::Constant *SuperClassGV,
Fariborz Jahaniancf555162009-01-31 00:59:10 +00001283 llvm::Constant *ClassRoGV,
1284 bool HiddenVisibility);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001285
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001286 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001287
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00001288 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001289
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001290 /// EmitMethodList - Emit the method list for the given
1291 /// implementation. The return value has type MethodListnfABITy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001292 llvm::Constant *EmitMethodList(llvm::Twine Name,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001293 const char *Section,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00001294 const ConstantVector &Methods);
1295 /// EmitIvarList - Emit the ivar list for the given
1296 /// implementation. If ForClass is true the list of class ivars
1297 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1298 /// interface ivars will be emitted. The return value has type
1299 /// IvarListnfABIPtrTy.
1300 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001301
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001302 llvm::Constant *EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00001303 const ObjCIvarDecl *Ivar,
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00001304 unsigned long int offset);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001305
Fariborz Jahanianda320092009-01-29 19:24:30 +00001306 /// GetOrEmitProtocol - Get the protocol object for the given
1307 /// declaration, emitting it if necessary. The return value has type
1308 /// ProtocolPtrTy.
1309 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001310
Fariborz Jahanianda320092009-01-29 19:24:30 +00001311 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1312 /// object for the given declaration, emitting it if needed. These
1313 /// forward references will be filled in with empty bodies if no
1314 /// definition is seen. The return value has type ProtocolPtrTy.
1315 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001316
Fariborz Jahanianda320092009-01-29 19:24:30 +00001317 /// EmitProtocolList - Generate the list of referenced
1318 /// protocols. The return value has type ProtocolListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001319 llvm::Constant *EmitProtocolList(llvm::Twine Name,
Fariborz Jahanianda320092009-01-29 19:24:30 +00001320 ObjCProtocolDecl::protocol_iterator begin,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001321 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001322
Fariborz Jahanian46551122009-02-04 00:22:57 +00001323 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001324 ReturnValueSlot Return,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001325 QualType ResultType,
1326 Selector Sel,
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00001327 llvm::Value *Receiver,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001328 QualType Arg0Ty,
1329 bool IsSuper,
1330 const CallArgList &CallArgs);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00001331
1332 /// GetClassGlobal - Return the global variable for the Objective-C
1333 /// class of the given name.
Fariborz Jahanian0f902942009-04-14 18:41:56 +00001334 llvm::GlobalVariable *GetClassGlobal(const std::string &Name);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001335
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001336 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
Daniel Dunbar11394522009-04-18 08:51:00 +00001337 /// for the given class reference.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001338 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar11394522009-04-18 08:51:00 +00001339 const ObjCInterfaceDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001340
Daniel Dunbar11394522009-04-18 08:51:00 +00001341 /// EmitSuperClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
1342 /// for the given super class reference.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001343 llvm::Value *EmitSuperClassRef(CGBuilderTy &Builder,
1344 const ObjCInterfaceDecl *ID);
1345
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001346 /// EmitMetaClassRef - Return a Value * of the address of _class_t
1347 /// meta-data
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001348 llvm::Value *EmitMetaClassRef(CGBuilderTy &Builder,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001349 const ObjCInterfaceDecl *ID);
1350
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001351 /// ObjCIvarOffsetVariable - Returns the ivar offset variable for
1352 /// the given ivar.
1353 ///
Daniel Dunbar5e88bea2009-04-19 00:31:15 +00001354 llvm::GlobalVariable * ObjCIvarOffsetVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001355 const ObjCInterfaceDecl *ID,
1356 const ObjCIvarDecl *Ivar);
1357
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00001358 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1359 /// for the given selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001360 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel,
1361 bool lval=false);
Daniel Dunbare588b992009-03-01 04:46:24 +00001362
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001363 /// GetInterfaceEHType - Get the cached ehtype for the given Objective-C
Daniel Dunbare588b992009-03-01 04:46:24 +00001364 /// interface. The return value has type EHTypePtrTy.
John McCall5a180392010-07-24 00:37:23 +00001365 llvm::Constant *GetInterfaceEHType(const ObjCInterfaceDecl *ID,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001366 bool ForDefinition);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001367
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001368 const char *getMetaclassSymbolPrefix() const {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001369 return "OBJC_METACLASS_$_";
1370 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001371
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001372 const char *getClassSymbolPrefix() const {
1373 return "OBJC_CLASS_$_";
1374 }
1375
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00001376 void GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbarb02532a2009-04-19 23:41:48 +00001377 uint32_t &InstanceStart,
1378 uint32_t &InstanceSize);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001379
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001380 // Shamelessly stolen from Analysis/CFRefCount.cpp
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001381 Selector GetNullarySelector(const char* name) const {
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001382 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1383 return CGM.getContext().Selectors.getSelector(0, &II);
1384 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001385
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001386 Selector GetUnarySelector(const char* name) const {
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001387 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1388 return CGM.getContext().Selectors.getSelector(1, &II);
1389 }
Daniel Dunbarb02532a2009-04-19 23:41:48 +00001390
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001391 /// ImplementationIsNonLazy - Check whether the given category or
1392 /// class implementation is "non-lazy".
Fariborz Jahanianecfbdcb2009-05-21 01:03:45 +00001393 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const;
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001394
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001395public:
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001396 CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001397 // FIXME. All stubs for now!
1398 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001399
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001400 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001401 ReturnValueSlot Return,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001402 QualType ResultType,
1403 Selector Sel,
1404 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001405 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001406 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001407 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001408
1409 virtual CodeGen::RValue
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001410 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001411 ReturnValueSlot Return,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001412 QualType ResultType,
1413 Selector Sel,
1414 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001415 bool isCategoryImpl,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001416 llvm::Value *Receiver,
1417 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001418 const CallArgList &CallArgs,
1419 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001420
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001421 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001422 const ObjCInterfaceDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001423
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001424 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
1425 bool lvalue = false)
1426 { return EmitSelector(Builder, Sel, lvalue); }
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001427
1428 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1429 /// untyped one.
1430 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1431 const ObjCMethodDecl *Method)
1432 { return EmitSelector(Builder, Method->getSelector()); }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001433
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00001434 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001435
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001436 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001437 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00001438 const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001439
John McCall5a180392010-07-24 00:37:23 +00001440 virtual llvm::Constant *GetEHType(QualType T);
1441
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001442 virtual llvm::Constant *GetPropertyGetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001443 return ObjCTypes.getGetPropertyFn();
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001444 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001445 virtual llvm::Constant *GetPropertySetFunction() {
1446 return ObjCTypes.getSetPropertyFn();
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001447 }
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00001448
1449 virtual llvm::Constant *GetCopyStructFunction() {
1450 return ObjCTypes.getCopyStructFn();
1451 }
1452
Chris Lattner74391b42009-03-22 21:03:39 +00001453 virtual llvm::Constant *EnumerationMutationFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001454 return ObjCTypes.getEnumerationMutationFn();
Daniel Dunbar28ed0842009-02-16 18:48:45 +00001455 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001456
John McCallf1549f62010-07-06 01:34:17 +00001457 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1458 const ObjCAtTryStmt &S);
1459 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1460 const ObjCAtSynchronizedStmt &S);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001461 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Anders Carlssonf57c5b22009-02-16 22:59:18 +00001462 const ObjCAtThrowStmt &S);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001463 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001464 llvm::Value *AddrWeakObj);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001465 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001466 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001467 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00001468 llvm::Value *src, llvm::Value *dest,
1469 bool threadlocal = false);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001470 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00001471 llvm::Value *src, llvm::Value *dest,
1472 llvm::Value *ivarOffset);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001473 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001474 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00001475 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
1476 llvm::Value *dest, llvm::Value *src,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001477 llvm::Value *size);
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001478 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1479 QualType ObjectTy,
1480 llvm::Value *BaseValue,
1481 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001482 unsigned CVRQualifiers);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001483 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00001484 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001485 const ObjCIvarDecl *Ivar);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001486};
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001487
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001488} // end anonymous namespace
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001489
1490/* *** Helper Functions *** */
1491
1492/// getConstantGEP() - Help routine to construct simple GEPs.
Owen Andersona1cf15f2009-07-14 23:10:40 +00001493static llvm::Constant *getConstantGEP(llvm::LLVMContext &VMContext,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001494 llvm::Constant *C,
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001495 unsigned idx0,
1496 unsigned idx1) {
1497 llvm::Value *Idxs[] = {
Owen Anderson0032b272009-08-13 21:57:51 +00001498 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx0),
1499 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx1)
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001500 };
Owen Anderson3c4972d2009-07-29 18:54:39 +00001501 return llvm::ConstantExpr::getGetElementPtr(C, Idxs, 2);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001502}
1503
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001504/// hasObjCExceptionAttribute - Return true if this class or any super
1505/// class has the __objc_exception__ attribute.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001506static bool hasObjCExceptionAttribute(ASTContext &Context,
Douglas Gregor68584ed2009-06-18 16:11:24 +00001507 const ObjCInterfaceDecl *OID) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001508 if (OID->hasAttr<ObjCExceptionAttr>())
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001509 return true;
1510 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())
Douglas Gregor68584ed2009-06-18 16:11:24 +00001511 return hasObjCExceptionAttribute(Context, Super);
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001512 return false;
1513}
1514
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001515/* *** CGObjCMac Public Interface *** */
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001516
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001517CGObjCMac::CGObjCMac(CodeGen::CodeGenModule &cgm) : CGObjCCommonMac(cgm),
Mike Stump1eb44332009-09-09 15:08:12 +00001518 ObjCTypes(cgm) {
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001519 ObjCABI = 1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001520 EmitImageInfo();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001521}
1522
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +00001523/// GetClass - Return a reference to the class for the given interface
1524/// decl.
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001525llvm::Value *CGObjCMac::GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001526 const ObjCInterfaceDecl *ID) {
1527 return EmitClassRef(Builder, ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001528}
1529
1530/// GetSelector - Return the pointer to the unique'd string for this selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001531llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, Selector Sel,
1532 bool lval) {
1533 return EmitSelector(Builder, Sel, lval);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001534}
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001535llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, const ObjCMethodDecl
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001536 *Method) {
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001537 return EmitSelector(Builder, Method->getSelector());
1538}
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001539
John McCall5a180392010-07-24 00:37:23 +00001540llvm::Constant *CGObjCMac::GetEHType(QualType T) {
1541 llvm_unreachable("asking for catch type for ObjC type in fragile runtime");
1542 return 0;
1543}
1544
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001545/// Generate a constant CFString object.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001546/*
1547 struct __builtin_CFString {
1548 const int *isa; // point to __CFConstantStringClassReference
1549 int flags;
1550 const char *str;
1551 long length;
1552 };
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001553*/
1554
Fariborz Jahanian33e982b2010-04-22 20:26:39 +00001555/// or Generate a constant NSString object.
1556/*
1557 struct __builtin_NSString {
1558 const int *isa; // point to __NSConstantStringClassReference
1559 const char *str;
1560 unsigned int length;
1561 };
1562*/
1563
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001564llvm::Constant *CGObjCCommonMac::GenerateConstantString(
David Chisnall0d13f6f2010-01-23 02:40:42 +00001565 const StringLiteral *SL) {
Fariborz Jahanian33e982b2010-04-22 20:26:39 +00001566 return (CGM.getLangOptions().NoConstantCFStrings == 0 ?
1567 CGM.GetAddrOfConstantCFString(SL) :
1568 CGM.GetAddrOfConstantNSString(SL));
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001569}
1570
1571/// Generates a message send where the super is the receiver. This is
1572/// a message send to self with special delivery semantics indicating
1573/// which class's method should be called.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001574CodeGen::RValue
1575CGObjCMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001576 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001577 QualType ResultType,
1578 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001579 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001580 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001581 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001582 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001583 const CodeGen::CallArgList &CallArgs,
1584 const ObjCMethodDecl *Method) {
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001585 // Create and init a super structure; this is a (receiver, class)
1586 // pair we will pass to objc_msgSendSuper.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001587 llvm::Value *ObjCSuper =
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001588 CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001589 llvm::Value *ReceiverAsObject =
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001590 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001591 CGF.Builder.CreateStore(ReceiverAsObject,
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001592 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001593
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001594 // If this is a class message the metaclass is passed as the target.
1595 llvm::Value *Target;
1596 if (IsClassMessage) {
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001597 if (isCategoryImpl) {
1598 // Message sent to 'super' in a class method defined in a category
1599 // implementation requires an odd treatment.
1600 // If we are in a class method, we must retrieve the
1601 // _metaclass_ for the current class, pointed at by
1602 // the class's "isa" pointer. The following assumes that
1603 // isa" is the first ivar in a class (which it must be).
1604 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1605 Target = CGF.Builder.CreateStructGEP(Target, 0);
1606 Target = CGF.Builder.CreateLoad(Target);
Mike Stumpb3589f42009-07-30 22:28:39 +00001607 } else {
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001608 llvm::Value *MetaClassPtr = EmitMetaClassRef(Class);
1609 llvm::Value *SuperPtr = CGF.Builder.CreateStructGEP(MetaClassPtr, 1);
1610 llvm::Value *Super = CGF.Builder.CreateLoad(SuperPtr);
1611 Target = Super;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001612 }
Fariborz Jahanian182f2682009-11-14 02:18:31 +00001613 }
1614 else if (isCategoryImpl)
1615 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1616 else {
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00001617 llvm::Value *ClassPtr = EmitSuperClassRef(Class);
1618 ClassPtr = CGF.Builder.CreateStructGEP(ClassPtr, 1);
1619 Target = CGF.Builder.CreateLoad(ClassPtr);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001620 }
Mike Stumpf5408fe2009-05-16 07:57:57 +00001621 // FIXME: We shouldn't need to do this cast, rectify the ASTContext and
1622 // ObjCTypes types.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001623 const llvm::Type *ClassTy =
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001624 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001625 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001626 CGF.Builder.CreateStore(Target,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001627 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
John McCallef072fd2010-05-22 01:48:05 +00001628 return EmitLegacyMessageSend(CGF, Return, ResultType,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001629 EmitSelector(CGF.Builder, Sel),
1630 ObjCSuper, ObjCTypes.SuperPtrCTy,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001631 true, CallArgs, Method, ObjCTypes);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001632}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001633
1634/// Generate code for a message send expression.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001635CodeGen::RValue CGObjCMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001636 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001637 QualType ResultType,
1638 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001639 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001640 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001641 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001642 const ObjCMethodDecl *Method) {
John McCallef072fd2010-05-22 01:48:05 +00001643 return EmitLegacyMessageSend(CGF, Return, ResultType,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001644 EmitSelector(CGF.Builder, Sel),
1645 Receiver, CGF.getContext().getObjCIdType(),
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001646 false, CallArgs, Method, ObjCTypes);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001647}
1648
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001649CodeGen::RValue
1650CGObjCCommonMac::EmitLegacyMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001651 ReturnValueSlot Return,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001652 QualType ResultType,
1653 llvm::Value *Sel,
1654 llvm::Value *Arg0,
1655 QualType Arg0Ty,
1656 bool IsSuper,
1657 const CallArgList &CallArgs,
1658 const ObjCMethodDecl *Method,
1659 const ObjCCommonTypesHelper &ObjCTypes) {
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001660 CallArgList ActualArgs;
Fariborz Jahaniand019d962009-04-24 21:07:43 +00001661 if (!IsSuper)
1662 Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy, "tmp");
Daniel Dunbar46f45b92008-09-09 01:06:48 +00001663 ActualArgs.push_back(std::make_pair(RValue::get(Arg0), Arg0Ty));
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001664 ActualArgs.push_back(std::make_pair(RValue::get(Sel),
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001665 CGF.getContext().getObjCSelType()));
1666 ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001667
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001668 CodeGenTypes &Types = CGM.getTypes();
John McCall04a67a62010-02-05 21:31:56 +00001669 const CGFunctionInfo &FnInfo = Types.getFunctionInfo(ResultType, ActualArgs,
Rafael Espindola264ba482010-03-30 20:24:48 +00001670 FunctionType::ExtInfo());
Daniel Dunbar67939662009-09-17 04:01:40 +00001671 const llvm::FunctionType *FTy =
1672 Types.GetFunctionType(FnInfo, Method ? Method->isVariadic() : false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001673
Anders Carlsson7e70fb22010-06-21 20:59:55 +00001674 if (Method)
1675 assert(CGM.getContext().getCanonicalType(Method->getResultType()) ==
1676 CGM.getContext().getCanonicalType(ResultType) &&
1677 "Result type mismatch!");
1678
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001679 llvm::Constant *Fn = NULL;
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001680 if (CGM.ReturnTypeUsesSRet(FnInfo)) {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001681 Fn = (ObjCABI == 2) ? ObjCTypes.getSendStretFn2(IsSuper)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001682 : ObjCTypes.getSendStretFn(IsSuper);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001683 } else if (CGM.ReturnTypeUsesFPRet(ResultType)) {
1684 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFpretFn2(IsSuper)
1685 : ObjCTypes.getSendFpretFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001686 } else {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001687 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFn2(IsSuper)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001688 : ObjCTypes.getSendFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001689 }
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001690 Fn = llvm::ConstantExpr::getBitCast(Fn, llvm::PointerType::getUnqual(FTy));
John McCallef072fd2010-05-22 01:48:05 +00001691 return CGF.EmitCall(FnInfo, Fn, Return, ActualArgs);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001692}
1693
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001694static Qualifiers::GC GetGCAttrTypeForType(ASTContext &Ctx, QualType FQT) {
1695 if (FQT.isObjCGCStrong())
1696 return Qualifiers::Strong;
1697
1698 if (FQT.isObjCGCWeak())
1699 return Qualifiers::Weak;
1700
1701 if (FQT->isObjCObjectPointerType() || FQT->isBlockPointerType())
1702 return Qualifiers::Strong;
1703
1704 if (const PointerType *PT = FQT->getAs<PointerType>())
1705 return GetGCAttrTypeForType(Ctx, PT->getPointeeType());
1706
1707 return Qualifiers::GCNone;
1708}
1709
Fariborz Jahanian89ecd412010-08-04 16:57:49 +00001710llvm::Constant *CGObjCCommonMac::GCBlockLayout(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian44034db2010-08-04 18:44:59 +00001711 const llvm::SmallVectorImpl<const BlockDeclRefExpr *> &DeclRefs) {
1712 llvm::Constant *NullPtr =
1713 llvm::Constant::getNullValue(llvm::Type::getInt8PtrTy(VMContext));
1714 if (DeclRefs.empty())
1715 return NullPtr;
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001716 SkipIvars.clear();
1717 IvarsInfo.clear();
1718 unsigned WordSizeInBits = CGM.getContext().Target.getPointerWidth(0);
1719 unsigned ByteSizeInBits = CGM.getContext().Target.getCharWidth();
1720
1721 for (size_t i = 0; i < DeclRefs.size(); ++i) {
1722 const BlockDeclRefExpr *BDRE = DeclRefs[i];
1723 const ValueDecl *VD = BDRE->getDecl();
1724 CharUnits Offset = CGF.BlockDecls[VD];
1725 uint64_t FieldOffset = Offset.getQuantity();
1726 QualType Ty = VD->getType();
1727 assert(!Ty->isArrayType() &&
1728 "Array block variable should have been caught");
1729 if (Ty->isRecordType() || Ty->isUnionType())
1730 assert(false && "Aggregate block variable layout NYI");
1731 Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), Ty);
1732 unsigned FieldSize = CGM.getContext().getTypeSize(Ty);
1733 // __block variables are passed by their descriptior address. So, size
1734 // must reflect this.
1735 if (BDRE->isByRef())
1736 FieldSize = WordSizeInBits;
1737 if (GCAttr == Qualifiers::Strong || BDRE->isByRef())
1738 IvarsInfo.push_back(GC_IVAR(FieldOffset,
1739 FieldSize / WordSizeInBits));
1740 else if (GCAttr == Qualifiers::GCNone || GCAttr == Qualifiers::Weak)
1741 SkipIvars.push_back(GC_IVAR(FieldOffset,
1742 FieldSize / ByteSizeInBits));
1743 }
1744
1745 if (IvarsInfo.empty())
1746 return NullPtr;
1747
1748 std::string BitMap;
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00001749 llvm::Constant *C = BuildIvarLayoutBitmap(BitMap);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001750 if (CGM.getLangOptions().ObjCGCBitmapPrint) {
1751 printf("\n block variable layout for block: ");
1752 const unsigned char *s = (unsigned char*)BitMap.c_str();
1753 for (unsigned i = 0; i < BitMap.size(); i++)
1754 if (!(s[i] & 0xf0))
1755 printf("0x0%x%s", s[i], s[i] != 0 ? ", " : "");
1756 else
1757 printf("0x%x%s", s[i], s[i] != 0 ? ", " : "");
1758 printf("\n");
1759 }
1760
1761 return C;
Fariborz Jahanian89ecd412010-08-04 16:57:49 +00001762}
1763
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001764llvm::Value *CGObjCMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001765 const ObjCProtocolDecl *PD) {
Daniel Dunbarc67876d2008-09-04 04:33:15 +00001766 // FIXME: I don't understand why gcc generates this, or where it is
Mike Stumpf5408fe2009-05-16 07:57:57 +00001767 // resolved. Investigate. Its also wasteful to look this up over and over.
Daniel Dunbarc67876d2008-09-04 04:33:15 +00001768 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1769
Owen Anderson3c4972d2009-07-29 18:54:39 +00001770 return llvm::ConstantExpr::getBitCast(GetProtocolRef(PD),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001771 ObjCTypes.ExternalProtocolPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001772}
1773
Fariborz Jahanianda320092009-01-29 19:24:30 +00001774void CGObjCCommonMac::GenerateProtocol(const ObjCProtocolDecl *PD) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00001775 // FIXME: We shouldn't need this, the protocol decl should contain enough
1776 // information to tell us whether this was a declaration or a definition.
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001777 DefinedProtocols.insert(PD->getIdentifier());
1778
1779 // If we have generated a forward reference to this protocol, emit
1780 // it now. Otherwise do nothing, the protocol objects are lazily
1781 // emitted.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001782 if (Protocols.count(PD->getIdentifier()))
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001783 GetOrEmitProtocol(PD);
1784}
1785
Fariborz Jahanianda320092009-01-29 19:24:30 +00001786llvm::Constant *CGObjCCommonMac::GetProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001787 if (DefinedProtocols.count(PD->getIdentifier()))
1788 return GetOrEmitProtocol(PD);
1789 return GetOrEmitProtocolRef(PD);
1790}
1791
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001792/*
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001793// APPLE LOCAL radar 4585769 - Objective-C 1.0 extensions
1794struct _objc_protocol {
1795struct _objc_protocol_extension *isa;
1796char *protocol_name;
1797struct _objc_protocol_list *protocol_list;
1798struct _objc__method_prototype_list *instance_methods;
1799struct _objc__method_prototype_list *class_methods
1800};
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001801
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001802See EmitProtocolExtension().
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001803*/
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001804llvm::Constant *CGObjCMac::GetOrEmitProtocol(const ObjCProtocolDecl *PD) {
1805 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1806
1807 // Early exit if a defining object has already been generated.
1808 if (Entry && Entry->hasInitializer())
1809 return Entry;
1810
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001811 // FIXME: I don't understand why gcc generates this, or where it is
Mike Stumpf5408fe2009-05-16 07:57:57 +00001812 // resolved. Investigate. Its also wasteful to look this up over and over.
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001813 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1814
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001815 // Construct method lists.
1816 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
1817 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001818 for (ObjCProtocolDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001819 i = PD->instmeth_begin(), e = PD->instmeth_end(); i != e; ++i) {
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001820 ObjCMethodDecl *MD = *i;
1821 llvm::Constant *C = GetMethodDescriptionConstant(MD);
1822 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1823 OptInstanceMethods.push_back(C);
1824 } else {
1825 InstanceMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001826 }
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001827 }
1828
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001829 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001830 i = PD->classmeth_begin(), e = PD->classmeth_end(); i != e; ++i) {
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001831 ObjCMethodDecl *MD = *i;
1832 llvm::Constant *C = GetMethodDescriptionConstant(MD);
1833 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1834 OptClassMethods.push_back(C);
1835 } else {
1836 ClassMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001837 }
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001838 }
1839
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001840 std::vector<llvm::Constant*> Values(5);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001841 Values[0] = EmitProtocolExtension(PD, OptInstanceMethods, OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001842 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001843 Values[2] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001844 EmitProtocolList("\01L_OBJC_PROTOCOL_REFS_" + PD->getName(),
Daniel Dunbardbc93372008-08-21 21:57:41 +00001845 PD->protocol_begin(),
1846 PD->protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001847 Values[3] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001848 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001849 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
1850 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001851 Values[4] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001852 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001853 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
1854 ClassMethods);
Owen Anderson08e25242009-07-27 22:29:56 +00001855 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001856 Values);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001857
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001858 if (Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001859 // Already created, fix the linkage and update the initializer.
1860 Entry->setLinkage(llvm::GlobalValue::InternalLinkage);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001861 Entry->setInitializer(Init);
1862 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001863 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00001864 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001865 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001866 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001867 "\01L_OBJC_PROTOCOL_" + PD->getName());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001868 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001869 // FIXME: Is this necessary? Why only for protocol?
1870 Entry->setAlignment(4);
1871 }
Chris Lattnerad64e022009-07-17 23:57:13 +00001872 CGM.AddUsedGlobal(Entry);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001873
1874 return Entry;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001875}
1876
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001877llvm::Constant *CGObjCMac::GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001878 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1879
1880 if (!Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001881 // We use the initializer as a marker of whether this is a forward
1882 // reference or not. At module finalization we add the empty
1883 // contents for protocols which were referenced but never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001884 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00001885 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001886 llvm::GlobalValue::ExternalLinkage,
1887 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001888 "\01L_OBJC_PROTOCOL_" + PD->getName());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001889 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001890 // FIXME: Is this necessary? Why only for protocol?
1891 Entry->setAlignment(4);
1892 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001893
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001894 return Entry;
1895}
1896
1897/*
1898 struct _objc_protocol_extension {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001899 uint32_t size;
1900 struct objc_method_description_list *optional_instance_methods;
1901 struct objc_method_description_list *optional_class_methods;
1902 struct objc_property_list *instance_properties;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001903 };
1904*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001905llvm::Constant *
1906CGObjCMac::EmitProtocolExtension(const ObjCProtocolDecl *PD,
1907 const ConstantVector &OptInstanceMethods,
1908 const ConstantVector &OptClassMethods) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001909 uint64_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00001910 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolExtensionTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001911 std::vector<llvm::Constant*> Values(4);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001912 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001913 Values[1] =
1914 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001915 + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001916 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
1917 OptInstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001918 Values[2] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001919 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_OPT_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001920 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
1921 OptClassMethods);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001922 Values[3] = EmitPropertyList("\01L_OBJC_$_PROP_PROTO_LIST_" + PD->getName(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00001923 0, PD, ObjCTypes);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001924
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001925 // Return null if no extension bits are used.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001926 if (Values[1]->isNullValue() && Values[2]->isNullValue() &&
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001927 Values[3]->isNullValue())
Owen Andersonc9c88b42009-07-31 20:28:54 +00001928 return llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001929
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001930 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00001931 llvm::ConstantStruct::get(ObjCTypes.ProtocolExtensionTy, Values);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001932
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001933 // No special section, but goes in llvm.used
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001934 return CreateMetadataVar("\01L_OBJC_PROTOCOLEXT_" + PD->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001935 Init,
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001936 0, 0, true);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001937}
1938
1939/*
1940 struct objc_protocol_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001941 struct objc_protocol_list *next;
1942 long count;
1943 Protocol *list[];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001944 };
1945*/
Daniel Dunbardbc93372008-08-21 21:57:41 +00001946llvm::Constant *
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001947CGObjCMac::EmitProtocolList(llvm::Twine Name,
Daniel Dunbardbc93372008-08-21 21:57:41 +00001948 ObjCProtocolDecl::protocol_iterator begin,
1949 ObjCProtocolDecl::protocol_iterator end) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001950 std::vector<llvm::Constant*> ProtocolRefs;
1951
Daniel Dunbardbc93372008-08-21 21:57:41 +00001952 for (; begin != end; ++begin)
1953 ProtocolRefs.push_back(GetProtocolRef(*begin));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001954
1955 // Just return null for empty protocol lists
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001956 if (ProtocolRefs.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00001957 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001958
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001959 // This list is null terminated.
Owen Andersonc9c88b42009-07-31 20:28:54 +00001960 ProtocolRefs.push_back(llvm::Constant::getNullValue(ObjCTypes.ProtocolPtrTy));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001961
1962 std::vector<llvm::Constant*> Values(3);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001963 // This field is only used by the runtime.
Owen Andersonc9c88b42009-07-31 20:28:54 +00001964 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001965 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001966 ProtocolRefs.size() - 1);
1967 Values[2] =
1968 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.ProtocolPtrTy,
1969 ProtocolRefs.size()),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001970 ProtocolRefs);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001971
Nick Lewycky0d36dd22009-09-19 20:00:52 +00001972 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001973 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001974 CreateMetadataVar(Name, Init, "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00001975 4, false);
Owen Anderson3c4972d2009-07-29 18:54:39 +00001976 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001977}
1978
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00001979void CGObjCCommonMac::PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*, 16> &PropertySet,
1980 std::vector<llvm::Constant*> &Properties,
1981 const Decl *Container,
1982 const ObjCProtocolDecl *PROTO,
1983 const ObjCCommonTypesHelper &ObjCTypes) {
1984 std::vector<llvm::Constant*> Prop(2);
1985 for (ObjCProtocolDecl::protocol_iterator P = PROTO->protocol_begin(),
1986 E = PROTO->protocol_end(); P != E; ++P)
1987 PushProtocolProperties(PropertySet, Properties, Container, (*P), ObjCTypes);
1988 for (ObjCContainerDecl::prop_iterator I = PROTO->prop_begin(),
1989 E = PROTO->prop_end(); I != E; ++I) {
1990 const ObjCPropertyDecl *PD = *I;
1991 if (!PropertySet.insert(PD->getIdentifier()))
1992 continue;
1993 Prop[0] = GetPropertyName(PD->getIdentifier());
1994 Prop[1] = GetPropertyTypeString(PD, Container);
1995 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy, Prop));
1996 }
1997}
1998
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001999/*
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002000 struct _objc_property {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002001 const char * const name;
2002 const char * const attributes;
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002003 };
2004
2005 struct _objc_property_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002006 uint32_t entsize; // sizeof (struct _objc_property)
2007 uint32_t prop_count;
2008 struct _objc_property[prop_count];
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002009 };
2010*/
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002011llvm::Constant *CGObjCCommonMac::EmitPropertyList(llvm::Twine Name,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002012 const Decl *Container,
2013 const ObjCContainerDecl *OCD,
2014 const ObjCCommonTypesHelper &ObjCTypes) {
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002015 std::vector<llvm::Constant*> Properties, Prop(2);
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002016 llvm::SmallPtrSet<const IdentifierInfo*, 16> PropertySet;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002017 for (ObjCContainerDecl::prop_iterator I = OCD->prop_begin(),
2018 E = OCD->prop_end(); I != E; ++I) {
Steve Naroff93983f82009-01-11 12:47:58 +00002019 const ObjCPropertyDecl *PD = *I;
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002020 PropertySet.insert(PD->getIdentifier());
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002021 Prop[0] = GetPropertyName(PD->getIdentifier());
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002022 Prop[1] = GetPropertyTypeString(PD, Container);
Owen Anderson08e25242009-07-27 22:29:56 +00002023 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002024 Prop));
2025 }
Fariborz Jahanian6afbdf52010-06-22 16:33:55 +00002026 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) {
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002027 for (ObjCInterfaceDecl::protocol_iterator P = OID->protocol_begin(),
2028 E = OID->protocol_end(); P != E; ++P)
Fariborz Jahanian6afbdf52010-06-22 16:33:55 +00002029 PushProtocolProperties(PropertySet, Properties, Container, (*P),
2030 ObjCTypes);
2031 }
2032 else if (const ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(OCD)) {
2033 for (ObjCCategoryDecl::protocol_iterator P = CD->protocol_begin(),
2034 E = CD->protocol_end(); P != E; ++P)
2035 PushProtocolProperties(PropertySet, Properties, Container, (*P),
2036 ObjCTypes);
2037 }
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002038
2039 // Return null for empty list.
2040 if (Properties.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002041 return llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002042
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002043 unsigned PropertySize =
Duncan Sands9408c452009-05-09 07:08:47 +00002044 CGM.getTargetData().getTypeAllocSize(ObjCTypes.PropertyTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002045 std::vector<llvm::Constant*> Values(3);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002046 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, PropertySize);
2047 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Properties.size());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002048 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.PropertyTy,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002049 Properties.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002050 Values[2] = llvm::ConstantArray::get(AT, Properties);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002051 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002052
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002053 llvm::GlobalVariable *GV =
2054 CreateMetadataVar(Name, Init,
2055 (ObjCABI == 2) ? "__DATA, __objc_const" :
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002056 "__OBJC,__property,regular,no_dead_strip",
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002057 (ObjCABI == 2) ? 8 : 4,
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002058 true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002059 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.PropertyListPtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002060}
2061
2062/*
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002063 struct objc_method_description_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002064 int count;
2065 struct objc_method_description list[];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002066 };
2067*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002068llvm::Constant *
2069CGObjCMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
2070 std::vector<llvm::Constant*> Desc(2);
Owen Andersona1cf15f2009-07-14 23:10:40 +00002071 Desc[0] =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002072 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
2073 ObjCTypes.SelectorPtrTy);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002074 Desc[1] = GetMethodVarType(MD);
Owen Anderson08e25242009-07-27 22:29:56 +00002075 return llvm::ConstantStruct::get(ObjCTypes.MethodDescriptionTy,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002076 Desc);
2077}
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002078
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002079llvm::Constant *CGObjCMac::EmitMethodDescList(llvm::Twine Name,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002080 const char *Section,
2081 const ConstantVector &Methods) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002082 // Return null for empty list.
2083 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002084 return llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002085
2086 std::vector<llvm::Constant*> Values(2);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002087 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002088 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodDescriptionTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002089 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002090 Values[1] = llvm::ConstantArray::get(AT, Methods);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002091 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002092
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002093 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002094 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002095 ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002096}
2097
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002098/*
2099 struct _objc_category {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002100 char *category_name;
2101 char *class_name;
2102 struct _objc_method_list *instance_methods;
2103 struct _objc_method_list *class_methods;
2104 struct _objc_protocol_list *protocols;
2105 uint32_t size; // <rdar://4585769>
2106 struct _objc_property_list *instance_properties;
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002107 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002108*/
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002109void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Duncan Sands9408c452009-05-09 07:08:47 +00002110 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.CategoryTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002111
Mike Stumpf5408fe2009-05-16 07:57:57 +00002112 // FIXME: This is poor design, the OCD should have a pointer to the category
2113 // decl. Additionally, note that Category can be null for the @implementation
2114 // w/o an @interface case. Sema should just create one for us as it does for
2115 // @implementation so everyone else can live life under a clear blue sky.
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002116 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002117 const ObjCCategoryDecl *Category =
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002118 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002119
2120 llvm::SmallString<256> ExtName;
2121 llvm::raw_svector_ostream(ExtName) << Interface->getName() << '_'
2122 << OCD->getName();
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002123
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002124 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002125 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002126 i = OCD->instmeth_begin(), e = OCD->instmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002127 // Instance methods should always be defined.
2128 InstanceMethods.push_back(GetMethodConstant(*i));
2129 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002130 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002131 i = OCD->classmeth_begin(), e = OCD->classmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002132 // Class methods should always be defined.
2133 ClassMethods.push_back(GetMethodConstant(*i));
2134 }
2135
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002136 std::vector<llvm::Constant*> Values(7);
2137 Values[0] = GetClassName(OCD->getIdentifier());
2138 Values[1] = GetClassName(Interface->getIdentifier());
Fariborz Jahanian679cd7f2009-04-29 20:40:05 +00002139 LazySymbols.insert(Interface->getIdentifier());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002140 Values[2] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002141 EmitMethodList("\01L_OBJC_CATEGORY_INSTANCE_METHODS_" + ExtName.str(),
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002142 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002143 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002144 Values[3] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002145 EmitMethodList("\01L_OBJC_CATEGORY_CLASS_METHODS_" + ExtName.str(),
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002146 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002147 ClassMethods);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002148 if (Category) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002149 Values[4] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002150 EmitProtocolList("\01L_OBJC_CATEGORY_PROTOCOLS_" + ExtName.str(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002151 Category->protocol_begin(),
2152 Category->protocol_end());
2153 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002154 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002155 }
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002156 Values[5] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002157
2158 // If there is no category @interface then there can be no properties.
2159 if (Category) {
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002160 Values[6] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00002161 OCD, Category, ObjCTypes);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002162 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002163 Values[6] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002164 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002165
Owen Anderson08e25242009-07-27 22:29:56 +00002166 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.CategoryTy,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002167 Values);
2168
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002169 llvm::GlobalVariable *GV =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002170 CreateMetadataVar("\01L_OBJC_CATEGORY_" + ExtName.str(), Init,
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002171 "__OBJC,__category,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002172 4, true);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002173 DefinedCategories.push_back(GV);
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00002174 DefinedCategoryNames.insert(ExtName.str());
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002175}
2176
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002177// FIXME: Get from somewhere?
2178enum ClassFlags {
2179 eClassFlags_Factory = 0x00001,
2180 eClassFlags_Meta = 0x00002,
2181 // <rdr://5142207>
2182 eClassFlags_HasCXXStructors = 0x02000,
2183 eClassFlags_Hidden = 0x20000,
2184 eClassFlags_ABI2_Hidden = 0x00010,
2185 eClassFlags_ABI2_HasCXXStructors = 0x00004 // <rdr://4923634>
2186};
2187
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002188/*
2189 struct _objc_class {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002190 Class isa;
2191 Class super_class;
2192 const char *name;
2193 long version;
2194 long info;
2195 long instance_size;
2196 struct _objc_ivar_list *ivars;
2197 struct _objc_method_list *methods;
2198 struct _objc_cache *cache;
2199 struct _objc_protocol_list *protocols;
2200 // Objective-C 1.0 extensions (<rdr://4585769>)
2201 const char *ivar_layout;
2202 struct _objc_class_ext *ext;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002203 };
2204
2205 See EmitClassExtension();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002206*/
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002207void CGObjCMac::GenerateClass(const ObjCImplementationDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002208 DefinedSymbols.insert(ID->getIdentifier());
2209
Chris Lattner8ec03f52008-11-24 03:54:41 +00002210 std::string ClassName = ID->getNameAsString();
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002211 // FIXME: Gross
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002212 ObjCInterfaceDecl *Interface =
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002213 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002214 llvm::Constant *Protocols =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002215 EmitProtocolList("\01L_OBJC_CLASS_PROTOCOLS_" + ID->getName(),
Daniel Dunbardbc93372008-08-21 21:57:41 +00002216 Interface->protocol_begin(),
2217 Interface->protocol_end());
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002218 unsigned Flags = eClassFlags_Factory;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00002219 if (ID->getNumIvarInitializers())
2220 Flags |= eClassFlags_HasCXXStructors;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002221 unsigned Size =
Daniel Dunbar2bebbf02009-05-03 10:46:44 +00002222 CGM.getContext().getASTObjCImplementationLayout(ID).getSize() / 8;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002223
2224 // FIXME: Set CXX-structors flag.
Daniel Dunbar04d40782009-04-14 06:00:08 +00002225 if (CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden)
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002226 Flags |= eClassFlags_Hidden;
2227
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002228 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002229 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002230 i = ID->instmeth_begin(), e = ID->instmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002231 // Instance methods should always be defined.
2232 InstanceMethods.push_back(GetMethodConstant(*i));
2233 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002234 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002235 i = ID->classmeth_begin(), e = ID->classmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002236 // Class methods should always be defined.
2237 ClassMethods.push_back(GetMethodConstant(*i));
2238 }
2239
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002240 for (ObjCImplementationDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002241 i = ID->propimpl_begin(), e = ID->propimpl_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002242 ObjCPropertyImplDecl *PID = *i;
2243
2244 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
2245 ObjCPropertyDecl *PD = PID->getPropertyDecl();
2246
2247 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
2248 if (llvm::Constant *C = GetMethodConstant(MD))
2249 InstanceMethods.push_back(C);
2250 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
2251 if (llvm::Constant *C = GetMethodConstant(MD))
2252 InstanceMethods.push_back(C);
2253 }
2254 }
2255
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002256 std::vector<llvm::Constant*> Values(12);
Daniel Dunbar5384b092009-05-03 08:56:52 +00002257 Values[ 0] = EmitMetaClass(ID, Protocols, ClassMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002258 if (ObjCInterfaceDecl *Super = Interface->getSuperClass()) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002259 // Record a reference to the super class.
2260 LazySymbols.insert(Super->getIdentifier());
2261
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002262 Values[ 1] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002263 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002264 ObjCTypes.ClassPtrTy);
2265 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002266 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002267 }
2268 Values[ 2] = GetClassName(ID->getIdentifier());
2269 // Version is always 0.
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002270 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2271 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2272 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002273 Values[ 6] = EmitIvarList(ID, false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002274 Values[ 7] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002275 EmitMethodList("\01L_OBJC_INSTANCE_METHODS_" + ID->getName(),
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002276 "__OBJC,__inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002277 InstanceMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002278 // cache is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002279 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002280 Values[ 9] = Protocols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002281 Values[10] = BuildIvarLayout(ID, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002282 Values[11] = EmitClassExtension(ID);
Owen Anderson08e25242009-07-27 22:29:56 +00002283 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002284 Values);
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00002285 std::string Name("\01L_OBJC_CLASS_");
2286 Name += ClassName;
2287 const char *Section = "__OBJC,__class,regular,no_dead_strip";
2288 // Check for a forward reference.
2289 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2290 if (GV) {
2291 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2292 "Forward metaclass reference has incorrect type.");
2293 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2294 GV->setInitializer(Init);
2295 GV->setSection(Section);
2296 GV->setAlignment(4);
2297 CGM.AddUsedGlobal(GV);
2298 }
2299 else
2300 GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002301 DefinedClasses.push_back(GV);
2302}
2303
2304llvm::Constant *CGObjCMac::EmitMetaClass(const ObjCImplementationDecl *ID,
2305 llvm::Constant *Protocols,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002306 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002307 unsigned Flags = eClassFlags_Meta;
Duncan Sands9408c452009-05-09 07:08:47 +00002308 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002309
Daniel Dunbar04d40782009-04-14 06:00:08 +00002310 if (CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden)
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002311 Flags |= eClassFlags_Hidden;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002312
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002313 std::vector<llvm::Constant*> Values(12);
2314 // The isa for the metaclass is the root of the hierarchy.
2315 const ObjCInterfaceDecl *Root = ID->getClassInterface();
2316 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
2317 Root = Super;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002318 Values[ 0] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002319 llvm::ConstantExpr::getBitCast(GetClassName(Root->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002320 ObjCTypes.ClassPtrTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002321 // The super class for the metaclass is emitted as the name of the
2322 // super class. The runtime fixes this up to point to the
2323 // *metaclass* for the super class.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002324 if (ObjCInterfaceDecl *Super = ID->getClassInterface()->getSuperClass()) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002325 Values[ 1] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002326 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002327 ObjCTypes.ClassPtrTy);
2328 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002329 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002330 }
2331 Values[ 2] = GetClassName(ID->getIdentifier());
2332 // Version is always 0.
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002333 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2334 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2335 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002336 Values[ 6] = EmitIvarList(ID, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002337 Values[ 7] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002338 EmitMethodList("\01L_OBJC_CLASS_METHODS_" + ID->getNameAsString(),
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002339 "__OBJC,__cls_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002340 Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002341 // cache is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002342 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002343 Values[ 9] = Protocols;
2344 // ivar_layout for metaclass is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002345 Values[10] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002346 // The class extension is always unused for metaclasses.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002347 Values[11] = llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00002348 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002349 Values);
2350
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002351 std::string Name("\01L_OBJC_METACLASS_");
Chris Lattner8ec03f52008-11-24 03:54:41 +00002352 Name += ID->getNameAsCString();
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002353
2354 // Check for a forward reference.
2355 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2356 if (GV) {
2357 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2358 "Forward metaclass reference has incorrect type.");
2359 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2360 GV->setInitializer(Init);
2361 } else {
Owen Anderson1c431b32009-07-08 19:05:04 +00002362 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002363 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +00002364 Init, Name);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002365 }
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002366 GV->setSection("__OBJC,__meta_class,regular,no_dead_strip");
Daniel Dunbar58a29122009-03-09 22:18:41 +00002367 GV->setAlignment(4);
Chris Lattnerad64e022009-07-17 23:57:13 +00002368 CGM.AddUsedGlobal(GV);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002369
2370 return GV;
2371}
2372
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002373llvm::Constant *CGObjCMac::EmitMetaClassRef(const ObjCInterfaceDecl *ID) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002374 std::string Name = "\01L_OBJC_METACLASS_" + ID->getNameAsString();
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002375
Mike Stumpf5408fe2009-05-16 07:57:57 +00002376 // FIXME: Should we look these up somewhere other than the module. Its a bit
2377 // silly since we only generate these while processing an implementation, so
2378 // exactly one pointer would work if know when we entered/exitted an
2379 // implementation block.
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002380
2381 // Check for an existing forward reference.
Fariborz Jahanianb0d27942009-01-07 20:11:22 +00002382 // Previously, metaclass with internal linkage may have been defined.
2383 // pass 'true' as 2nd argument so it is returned.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002384 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
2385 true)) {
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002386 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2387 "Forward metaclass reference has incorrect type.");
2388 return GV;
2389 } else {
2390 // Generate as an external reference to keep a consistent
2391 // module. This will be patched up when we emit the metaclass.
Owen Anderson1c431b32009-07-08 19:05:04 +00002392 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002393 llvm::GlobalValue::ExternalLinkage,
2394 0,
Owen Anderson1c431b32009-07-08 19:05:04 +00002395 Name);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002396 }
2397}
2398
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00002399llvm::Value *CGObjCMac::EmitSuperClassRef(const ObjCInterfaceDecl *ID) {
2400 std::string Name = "\01L_OBJC_CLASS_" + ID->getNameAsString();
2401
2402 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
2403 true)) {
2404 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2405 "Forward class metadata reference has incorrect type.");
2406 return GV;
2407 } else {
2408 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
2409 llvm::GlobalValue::ExternalLinkage,
2410 0,
2411 Name);
2412 }
2413}
2414
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002415/*
2416 struct objc_class_ext {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002417 uint32_t size;
2418 const char *weak_ivar_layout;
2419 struct _objc_property_list *properties;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002420 };
2421*/
2422llvm::Constant *
2423CGObjCMac::EmitClassExtension(const ObjCImplementationDecl *ID) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002424 uint64_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00002425 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassExtensionTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002426
2427 std::vector<llvm::Constant*> Values(3);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002428 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanianc71303d2009-04-22 23:00:43 +00002429 Values[1] = BuildIvarLayout(ID, false);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002430 Values[2] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getName(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00002431 ID, ID->getClassInterface(), ObjCTypes);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002432
2433 // Return null if no extension bits are used.
2434 if (Values[1]->isNullValue() && Values[2]->isNullValue())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002435 return llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002436
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002437 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00002438 llvm::ConstantStruct::get(ObjCTypes.ClassExtensionTy, Values);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002439 return CreateMetadataVar("\01L_OBJC_CLASSEXT_" + ID->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002440 Init, "__OBJC,__class_ext,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002441 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002442}
2443
2444/*
2445 struct objc_ivar {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002446 char *ivar_name;
2447 char *ivar_type;
2448 int ivar_offset;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002449 };
2450
2451 struct objc_ivar_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002452 int ivar_count;
2453 struct objc_ivar list[count];
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002454 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002455*/
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002456llvm::Constant *CGObjCMac::EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002457 bool ForClass) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002458 std::vector<llvm::Constant*> Ivars, Ivar(3);
2459
2460 // When emitting the root class GCC emits ivar entries for the
2461 // actual class structure. It is not clear if we need to follow this
2462 // behavior; for now lets try and get away with not doing it. If so,
2463 // the cleanest solution would be to make up an ObjCInterfaceDecl
2464 // for the class.
2465 if (ForClass)
Owen Andersonc9c88b42009-07-31 20:28:54 +00002466 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002467
2468 ObjCInterfaceDecl *OID =
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002469 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002470
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00002471 llvm::SmallVector<ObjCIvarDecl*, 16> OIvars;
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00002472 CGM.getContext().ShallowCollectObjCIvars(OID, OIvars);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002473
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00002474 for (unsigned i = 0, e = OIvars.size(); i != e; ++i) {
2475 ObjCIvarDecl *IVD = OIvars[i];
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00002476 // Ignore unnamed bit-fields.
2477 if (!IVD->getDeclName())
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002478 continue;
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00002479 Ivar[0] = GetMethodVarName(IVD->getIdentifier());
2480 Ivar[1] = GetMethodVarType(IVD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002481 Ivar[2] = llvm::ConstantInt::get(ObjCTypes.IntTy,
Daniel Dunbar97776872009-04-22 07:32:20 +00002482 ComputeIvarBaseOffset(CGM, OID, IVD));
Owen Anderson08e25242009-07-27 22:29:56 +00002483 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarTy, Ivar));
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002484 }
2485
2486 // Return null for empty list.
2487 if (Ivars.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002488 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002489
2490 std::vector<llvm::Constant*> Values(2);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002491 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00002492 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002493 Ivars.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002494 Values[1] = llvm::ConstantArray::get(AT, Ivars);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002495 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002496
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002497 llvm::GlobalVariable *GV;
2498 if (ForClass)
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002499 GV = CreateMetadataVar("\01L_OBJC_CLASS_VARIABLES_" + ID->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002500 Init, "__OBJC,__class_vars,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002501 4, true);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002502 else
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002503 GV = CreateMetadataVar("\01L_OBJC_INSTANCE_VARIABLES_" + ID->getName(),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002504 Init, "__OBJC,__instance_vars,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002505 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002506 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002507}
2508
2509/*
2510 struct objc_method {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002511 SEL method_name;
2512 char *method_types;
2513 void *method;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002514 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002515
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002516 struct objc_method_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002517 struct objc_method_list *obsolete;
2518 int count;
2519 struct objc_method methods_list[count];
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002520 };
2521*/
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002522
2523/// GetMethodConstant - Return a struct objc_method constant for the
2524/// given method if it has been defined. The result is null if the
2525/// method has not been defined. The return value has type MethodPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002526llvm::Constant *CGObjCMac::GetMethodConstant(const ObjCMethodDecl *MD) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002527 // FIXME: Use DenseMap::lookup
2528 llvm::Function *Fn = MethodDefinitions[MD];
2529 if (!Fn)
2530 return 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002531
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002532 std::vector<llvm::Constant*> Method(3);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002533 Method[0] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002534 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002535 ObjCTypes.SelectorPtrTy);
2536 Method[1] = GetMethodVarType(MD);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002537 Method[2] = llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00002538 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002539}
2540
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002541llvm::Constant *CGObjCMac::EmitMethodList(llvm::Twine Name,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002542 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002543 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002544 // Return null for empty list.
2545 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002546 return llvm::Constant::getNullValue(ObjCTypes.MethodListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002547
2548 std::vector<llvm::Constant*> Values(3);
Owen Andersonc9c88b42009-07-31 20:28:54 +00002549 Values[0] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002550 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00002551 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002552 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002553 Values[2] = llvm::ConstantArray::get(AT, Methods);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002554 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002555
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002556 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002557 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002558 ObjCTypes.MethodListPtrTy);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002559}
2560
Fariborz Jahanian493dab72009-01-26 21:38:32 +00002561llvm::Function *CGObjCCommonMac::GenerateMethod(const ObjCMethodDecl *OMD,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002562 const ObjCContainerDecl *CD) {
Daniel Dunbarc575ce72009-10-19 01:21:19 +00002563 llvm::SmallString<256> Name;
Fariborz Jahanian679a5022009-01-10 21:06:09 +00002564 GetNameForMethod(OMD, CD, Name);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002565
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002566 CodeGenTypes &Types = CGM.getTypes();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00002567 const llvm::FunctionType *MethodTy =
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002568 Types.GetFunctionType(Types.getFunctionInfo(OMD), OMD->isVariadic());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002569 llvm::Function *Method =
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00002570 llvm::Function::Create(MethodTy,
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002571 llvm::GlobalValue::InternalLinkage,
Daniel Dunbarc575ce72009-10-19 01:21:19 +00002572 Name.str(),
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002573 &CGM.getModule());
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002574 MethodDefinitions.insert(std::make_pair(OMD, Method));
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002575
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002576 return Method;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002577}
2578
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002579llvm::GlobalVariable *
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002580CGObjCCommonMac::CreateMetadataVar(llvm::Twine Name,
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002581 llvm::Constant *Init,
2582 const char *Section,
Daniel Dunbar35bd7632009-03-09 20:50:13 +00002583 unsigned Align,
2584 bool AddToUsed) {
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002585 const llvm::Type *Ty = Init->getType();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002586 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00002587 new llvm::GlobalVariable(CGM.getModule(), Ty, false,
Chris Lattnerad64e022009-07-17 23:57:13 +00002588 llvm::GlobalValue::InternalLinkage, Init, Name);
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002589 if (Section)
2590 GV->setSection(Section);
Daniel Dunbar35bd7632009-03-09 20:50:13 +00002591 if (Align)
2592 GV->setAlignment(Align);
2593 if (AddToUsed)
Chris Lattnerad64e022009-07-17 23:57:13 +00002594 CGM.AddUsedGlobal(GV);
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002595 return GV;
2596}
2597
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002598llvm::Function *CGObjCMac::ModuleInitFunction() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002599 // Abuse this interface function as a place to finalize.
2600 FinishModule();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002601 return NULL;
2602}
2603
Chris Lattner74391b42009-03-22 21:03:39 +00002604llvm::Constant *CGObjCMac::GetPropertyGetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002605 return ObjCTypes.getGetPropertyFn();
Daniel Dunbar49f66022008-09-24 03:38:44 +00002606}
2607
Chris Lattner74391b42009-03-22 21:03:39 +00002608llvm::Constant *CGObjCMac::GetPropertySetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002609 return ObjCTypes.getSetPropertyFn();
Daniel Dunbar49f66022008-09-24 03:38:44 +00002610}
2611
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00002612llvm::Constant *CGObjCMac::GetCopyStructFunction() {
2613 return ObjCTypes.getCopyStructFn();
2614}
2615
Chris Lattner74391b42009-03-22 21:03:39 +00002616llvm::Constant *CGObjCMac::EnumerationMutationFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002617 return ObjCTypes.getEnumerationMutationFn();
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002618}
2619
John McCallf1549f62010-07-06 01:34:17 +00002620void CGObjCMac::EmitTryStmt(CodeGenFunction &CGF, const ObjCAtTryStmt &S) {
2621 return EmitTryOrSynchronizedStmt(CGF, S);
2622}
2623
2624void CGObjCMac::EmitSynchronizedStmt(CodeGenFunction &CGF,
2625 const ObjCAtSynchronizedStmt &S) {
2626 return EmitTryOrSynchronizedStmt(CGF, S);
2627}
2628
John McCallcc505292010-07-21 06:59:36 +00002629namespace {
John McCall1f0fca52010-07-21 07:22:38 +00002630 struct PerformFragileFinally : EHScopeStack::Cleanup {
John McCallcc505292010-07-21 06:59:36 +00002631 const Stmt &S;
John McCall0b251722010-08-04 05:59:32 +00002632 llvm::Value *SyncArgSlot;
John McCallcc505292010-07-21 06:59:36 +00002633 llvm::Value *CallTryExitVar;
2634 llvm::Value *ExceptionData;
2635 ObjCTypesHelper &ObjCTypes;
2636 PerformFragileFinally(const Stmt *S,
John McCall0b251722010-08-04 05:59:32 +00002637 llvm::Value *SyncArgSlot,
John McCallcc505292010-07-21 06:59:36 +00002638 llvm::Value *CallTryExitVar,
2639 llvm::Value *ExceptionData,
2640 ObjCTypesHelper *ObjCTypes)
John McCall0b251722010-08-04 05:59:32 +00002641 : S(*S), SyncArgSlot(SyncArgSlot), CallTryExitVar(CallTryExitVar),
John McCallcc505292010-07-21 06:59:36 +00002642 ExceptionData(ExceptionData), ObjCTypes(*ObjCTypes) {}
2643
2644 void Emit(CodeGenFunction &CGF, bool IsForEH) {
2645 // Check whether we need to call objc_exception_try_exit.
2646 // In optimized code, this branch will always be folded.
2647 llvm::BasicBlock *FinallyCallExit =
2648 CGF.createBasicBlock("finally.call_exit");
2649 llvm::BasicBlock *FinallyNoCallExit =
2650 CGF.createBasicBlock("finally.no_call_exit");
2651 CGF.Builder.CreateCondBr(CGF.Builder.CreateLoad(CallTryExitVar),
2652 FinallyCallExit, FinallyNoCallExit);
2653
2654 CGF.EmitBlock(FinallyCallExit);
2655 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryExitFn(), ExceptionData)
2656 ->setDoesNotThrow();
2657
2658 CGF.EmitBlock(FinallyNoCallExit);
2659
2660 if (isa<ObjCAtTryStmt>(S)) {
2661 if (const ObjCAtFinallyStmt* FinallyStmt =
2662 cast<ObjCAtTryStmt>(S).getFinallyStmt())
2663 CGF.EmitStmt(FinallyStmt->getFinallyBody());
2664
2665 // Currently, the end of the cleanup must always exist.
2666 CGF.EnsureInsertPoint();
2667 } else {
2668 // Emit objc_sync_exit(expr); as finally's sole statement for
2669 // @synchronized.
John McCall0b251722010-08-04 05:59:32 +00002670 llvm::Value *SyncArg = CGF.Builder.CreateLoad(SyncArgSlot);
John McCallcc505292010-07-21 06:59:36 +00002671 CGF.Builder.CreateCall(ObjCTypes.getSyncExitFn(), SyncArg)
2672 ->setDoesNotThrow();
2673 }
2674 }
2675 };
John McCall87bb5822010-07-31 23:20:56 +00002676
2677 class FragileHazards {
2678 CodeGenFunction &CGF;
2679 llvm::SmallVector<llvm::Value*, 20> Locals;
2680 llvm::DenseSet<llvm::BasicBlock*> BlocksBeforeTry;
2681
2682 llvm::InlineAsm *ReadHazard;
2683 llvm::InlineAsm *WriteHazard;
2684
2685 llvm::FunctionType *GetAsmFnType();
2686
2687 void collectLocals();
2688 void emitReadHazard(CGBuilderTy &Builder);
2689
2690 public:
2691 FragileHazards(CodeGenFunction &CGF);
John McCall0b251722010-08-04 05:59:32 +00002692
John McCall87bb5822010-07-31 23:20:56 +00002693 void emitWriteHazard();
John McCall0b251722010-08-04 05:59:32 +00002694 void emitHazardsInNewBlocks();
John McCall87bb5822010-07-31 23:20:56 +00002695 };
2696}
2697
2698/// Create the fragile-ABI read and write hazards based on the current
2699/// state of the function, which is presumed to be immediately prior
2700/// to a @try block. These hazards are used to maintain correct
2701/// semantics in the face of optimization and the fragile ABI's
2702/// cavalier use of setjmp/longjmp.
2703FragileHazards::FragileHazards(CodeGenFunction &CGF) : CGF(CGF) {
2704 collectLocals();
2705
2706 if (Locals.empty()) return;
2707
2708 // Collect all the blocks in the function.
2709 for (llvm::Function::iterator
2710 I = CGF.CurFn->begin(), E = CGF.CurFn->end(); I != E; ++I)
2711 BlocksBeforeTry.insert(&*I);
2712
2713 llvm::FunctionType *AsmFnTy = GetAsmFnType();
2714
2715 // Create a read hazard for the allocas. This inhibits dead-store
2716 // optimizations and forces the values to memory. This hazard is
2717 // inserted before any 'throwing' calls in the protected scope to
2718 // reflect the possibility that the variables might be read from the
2719 // catch block if the call throws.
2720 {
2721 std::string Constraint;
2722 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
2723 if (I) Constraint += ',';
2724 Constraint += "*m";
2725 }
2726
2727 ReadHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false);
2728 }
2729
2730 // Create a write hazard for the allocas. This inhibits folding
2731 // loads across the hazard. This hazard is inserted at the
2732 // beginning of the catch path to reflect the possibility that the
2733 // variables might have been written within the protected scope.
2734 {
2735 std::string Constraint;
2736 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
2737 if (I) Constraint += ',';
2738 Constraint += "=*m";
2739 }
2740
2741 WriteHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false);
2742 }
2743}
2744
2745/// Emit a write hazard at the current location.
2746void FragileHazards::emitWriteHazard() {
2747 if (Locals.empty()) return;
2748
2749 CGF.Builder.CreateCall(WriteHazard, Locals.begin(), Locals.end())
2750 ->setDoesNotThrow();
2751}
2752
John McCall87bb5822010-07-31 23:20:56 +00002753void FragileHazards::emitReadHazard(CGBuilderTy &Builder) {
2754 assert(!Locals.empty());
2755 Builder.CreateCall(ReadHazard, Locals.begin(), Locals.end())
2756 ->setDoesNotThrow();
2757}
2758
2759/// Emit read hazards in all the protected blocks, i.e. all the blocks
2760/// which have been inserted since the beginning of the try.
John McCall0b251722010-08-04 05:59:32 +00002761void FragileHazards::emitHazardsInNewBlocks() {
John McCall87bb5822010-07-31 23:20:56 +00002762 if (Locals.empty()) return;
2763
2764 CGBuilderTy Builder(CGF.getLLVMContext());
2765
2766 // Iterate through all blocks, skipping those prior to the try.
2767 for (llvm::Function::iterator
2768 FI = CGF.CurFn->begin(), FE = CGF.CurFn->end(); FI != FE; ++FI) {
2769 llvm::BasicBlock &BB = *FI;
2770 if (BlocksBeforeTry.count(&BB)) continue;
2771
2772 // Walk through all the calls in the block.
2773 for (llvm::BasicBlock::iterator
2774 BI = BB.begin(), BE = BB.end(); BI != BE; ++BI) {
2775 llvm::Instruction &I = *BI;
2776
2777 // Ignore instructions that aren't non-intrinsic calls.
2778 // These are the only calls that can possibly call longjmp.
2779 if (!isa<llvm::CallInst>(I) && !isa<llvm::InvokeInst>(I)) continue;
2780 if (isa<llvm::IntrinsicInst>(I))
2781 continue;
2782
2783 // Ignore call sites marked nounwind. This may be questionable,
2784 // since 'nounwind' doesn't necessarily mean 'does not call longjmp'.
2785 llvm::CallSite CS(&I);
2786 if (CS.doesNotThrow()) continue;
2787
John McCall0b251722010-08-04 05:59:32 +00002788 // Insert a read hazard before the call. This will ensure that
2789 // any writes to the locals are performed before making the
2790 // call. If the call throws, then this is sufficient to
2791 // guarantee correctness as long as it doesn't also write to any
2792 // locals.
John McCall87bb5822010-07-31 23:20:56 +00002793 Builder.SetInsertPoint(&BB, BI);
2794 emitReadHazard(Builder);
2795 }
2796 }
2797}
2798
2799static void addIfPresent(llvm::DenseSet<llvm::Value*> &S, llvm::Value *V) {
2800 if (V) S.insert(V);
2801}
2802
2803void FragileHazards::collectLocals() {
2804 // Compute a set of allocas to ignore.
2805 llvm::DenseSet<llvm::Value*> AllocasToIgnore;
2806 addIfPresent(AllocasToIgnore, CGF.ReturnValue);
2807 addIfPresent(AllocasToIgnore, CGF.NormalCleanupDest);
2808 addIfPresent(AllocasToIgnore, CGF.EHCleanupDest);
2809
2810 // Collect all the allocas currently in the function. This is
2811 // probably way too aggressive.
2812 llvm::BasicBlock &Entry = CGF.CurFn->getEntryBlock();
2813 for (llvm::BasicBlock::iterator
2814 I = Entry.begin(), E = Entry.end(); I != E; ++I)
2815 if (isa<llvm::AllocaInst>(*I) && !AllocasToIgnore.count(&*I))
2816 Locals.push_back(&*I);
2817}
2818
2819llvm::FunctionType *FragileHazards::GetAsmFnType() {
2820 std::vector<const llvm::Type *> Tys(Locals.size());
2821 for (unsigned I = 0, E = Locals.size(); I != E; ++I)
2822 Tys[I] = Locals[I]->getType();
2823 return llvm::FunctionType::get(CGF.Builder.getVoidTy(), Tys, false);
John McCallcc505292010-07-21 06:59:36 +00002824}
2825
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002826/*
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002827
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002828 Objective-C setjmp-longjmp (sjlj) Exception Handling
2829 --
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002830
John McCallf1549f62010-07-06 01:34:17 +00002831 A catch buffer is a setjmp buffer plus:
2832 - a pointer to the exception that was caught
2833 - a pointer to the previous exception data buffer
2834 - two pointers of reserved storage
2835 Therefore catch buffers form a stack, with a pointer to the top
2836 of the stack kept in thread-local storage.
2837
2838 objc_exception_try_enter pushes a catch buffer onto the EH stack.
2839 objc_exception_try_exit pops the given catch buffer, which is
2840 required to be the top of the EH stack.
2841 objc_exception_throw pops the top of the EH stack, writes the
2842 thrown exception into the appropriate field, and longjmps
2843 to the setjmp buffer. It crashes the process (with a printf
2844 and an abort()) if there are no catch buffers on the stack.
2845 objc_exception_extract just reads the exception pointer out of the
2846 catch buffer.
2847
2848 There's no reason an implementation couldn't use a light-weight
2849 setjmp here --- something like __builtin_setjmp, but API-compatible
2850 with the heavyweight setjmp. This will be more important if we ever
2851 want to implement correct ObjC/C++ exception interactions for the
2852 fragile ABI.
2853
2854 Note that for this use of setjmp/longjmp to be correct, we may need
2855 to mark some local variables volatile: if a non-volatile local
2856 variable is modified between the setjmp and the longjmp, it has
2857 indeterminate value. For the purposes of LLVM IR, it may be
2858 sufficient to make loads and stores within the @try (to variables
2859 declared outside the @try) volatile. This is necessary for
2860 optimized correctness, but is not currently being done; this is
2861 being tracked as rdar://problem/8160285
2862
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002863 The basic framework for a @try-catch-finally is as follows:
2864 {
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002865 objc_exception_data d;
2866 id _rethrow = null;
Anders Carlsson190d00e2009-02-07 21:26:04 +00002867 bool _call_try_exit = true;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002868
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002869 objc_exception_try_enter(&d);
2870 if (!setjmp(d.jmp_buf)) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002871 ... try body ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002872 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002873 // exception path
2874 id _caught = objc_exception_extract(&d);
2875
2876 // enter new try scope for handlers
2877 if (!setjmp(d.jmp_buf)) {
2878 ... match exception and execute catch blocks ...
2879
2880 // fell off end, rethrow.
2881 _rethrow = _caught;
2882 ... jump-through-finally to finally_rethrow ...
2883 } else {
2884 // exception in catch block
2885 _rethrow = objc_exception_extract(&d);
2886 _call_try_exit = false;
2887 ... jump-through-finally to finally_rethrow ...
2888 }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002889 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00002890 ... jump-through-finally to finally_end ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002891
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002892 finally:
Anders Carlsson190d00e2009-02-07 21:26:04 +00002893 if (_call_try_exit)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002894 objc_exception_try_exit(&d);
Anders Carlsson190d00e2009-02-07 21:26:04 +00002895
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002896 ... finally block ....
Daniel Dunbar898d5082008-09-30 01:06:03 +00002897 ... dispatch to finally destination ...
2898
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002899 finally_rethrow:
Daniel Dunbar898d5082008-09-30 01:06:03 +00002900 objc_exception_throw(_rethrow);
2901
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002902 finally_end:
2903 }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002904
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002905 This framework differs slightly from the one gcc uses, in that gcc
2906 uses _rethrow to determine if objc_exception_try_exit should be called
2907 and if the object should be rethrown. This breaks in the face of
2908 throwing nil and introduces unnecessary branches.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002909
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002910 We specialize this framework for a few particular circumstances:
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002911
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002912 - If there are no catch blocks, then we avoid emitting the second
2913 exception handling context.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002914
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002915 - If there is a catch-all catch block (i.e. @catch(...) or @catch(id
2916 e)) we avoid emitting the code to rethrow an uncaught exception.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002917
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002918 - FIXME: If there is no @finally block we can do a few more
2919 simplifications.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002920
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002921 Rethrows and Jumps-Through-Finally
2922 --
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002923
John McCallf1549f62010-07-06 01:34:17 +00002924 '@throw;' is supported by pushing the currently-caught exception
2925 onto ObjCEHStack while the @catch blocks are emitted.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002926
John McCallf1549f62010-07-06 01:34:17 +00002927 Branches through the @finally block are handled with an ordinary
2928 normal cleanup. We do not register an EH cleanup; fragile-ABI ObjC
2929 exceptions are not compatible with C++ exceptions, and this is
2930 hardly the only place where this will go wrong.
Daniel Dunbar898d5082008-09-30 01:06:03 +00002931
John McCallf1549f62010-07-06 01:34:17 +00002932 @synchronized(expr) { stmt; } is emitted as if it were:
2933 id synch_value = expr;
2934 objc_sync_enter(synch_value);
2935 @try { stmt; } @finally { objc_sync_exit(synch_value); }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002936*/
2937
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00002938void CGObjCMac::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
2939 const Stmt &S) {
2940 bool isTry = isa<ObjCAtTryStmt>(S);
John McCallf1549f62010-07-06 01:34:17 +00002941
2942 // A destination for the fall-through edges of the catch handlers to
2943 // jump to.
2944 CodeGenFunction::JumpDest FinallyEnd =
2945 CGF.getJumpDestInCurrentScope("finally.end");
2946
2947 // A destination for the rethrow edge of the catch handlers to jump
2948 // to.
2949 CodeGenFunction::JumpDest FinallyRethrow =
2950 CGF.getJumpDestInCurrentScope("finally.rethrow");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002951
Daniel Dunbar1c566672009-02-24 01:43:46 +00002952 // For @synchronized, call objc_sync_enter(sync.expr). The
2953 // evaluation of the expression must occur before we enter the
John McCall0b251722010-08-04 05:59:32 +00002954 // @synchronized. We can't avoid a temp here because we need the
2955 // value to be preserved. If the backend ever does liveness
2956 // correctly after setjmp, this will be unnecessary.
2957 llvm::Value *SyncArgSlot = 0;
Daniel Dunbar1c566672009-02-24 01:43:46 +00002958 if (!isTry) {
John McCall0b251722010-08-04 05:59:32 +00002959 llvm::Value *SyncArg =
Daniel Dunbar1c566672009-02-24 01:43:46 +00002960 CGF.EmitScalarExpr(cast<ObjCAtSynchronizedStmt>(S).getSynchExpr());
2961 SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy);
John McCallf1549f62010-07-06 01:34:17 +00002962 CGF.Builder.CreateCall(ObjCTypes.getSyncEnterFn(), SyncArg)
2963 ->setDoesNotThrow();
John McCall0b251722010-08-04 05:59:32 +00002964
2965 SyncArgSlot = CGF.CreateTempAlloca(SyncArg->getType(), "sync.arg");
2966 CGF.Builder.CreateStore(SyncArg, SyncArgSlot);
Daniel Dunbar1c566672009-02-24 01:43:46 +00002967 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00002968
John McCall0b251722010-08-04 05:59:32 +00002969 // Allocate memory for the setjmp buffer. This needs to be kept
2970 // live throughout the try and catch blocks.
2971 llvm::Value *ExceptionData = CGF.CreateTempAlloca(ObjCTypes.ExceptionDataTy,
2972 "exceptiondata.ptr");
2973
John McCall87bb5822010-07-31 23:20:56 +00002974 // Create the fragile hazards. Note that this will not capture any
2975 // of the allocas required for exception processing, but will
2976 // capture the current basic block (which extends all the way to the
2977 // setjmp call) as "before the @try".
2978 FragileHazards Hazards(CGF);
2979
John McCallf1549f62010-07-06 01:34:17 +00002980 // Create a flag indicating whether the cleanup needs to call
2981 // objc_exception_try_exit. This is true except when
2982 // - no catches match and we're branching through the cleanup
2983 // just to rethrow the exception, or
2984 // - a catch matched and we're falling out of the catch handler.
John McCall0b251722010-08-04 05:59:32 +00002985 // The setjmp-safety rule here is that we should always store to this
2986 // variable in a place that dominates the branch through the cleanup
2987 // without passing through any setjmps.
John McCallf1549f62010-07-06 01:34:17 +00002988 llvm::Value *CallTryExitVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(),
Anders Carlsson190d00e2009-02-07 21:26:04 +00002989 "_call_try_exit");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002990
John McCallf1549f62010-07-06 01:34:17 +00002991 // Push a normal cleanup to leave the try scope.
John McCall1f0fca52010-07-21 07:22:38 +00002992 CGF.EHStack.pushCleanup<PerformFragileFinally>(NormalCleanup, &S,
John McCall0b251722010-08-04 05:59:32 +00002993 SyncArgSlot,
John McCall1f0fca52010-07-21 07:22:38 +00002994 CallTryExitVar,
2995 ExceptionData,
2996 &ObjCTypes);
John McCallf1549f62010-07-06 01:34:17 +00002997
2998 // Enter a try block:
2999 // - Call objc_exception_try_enter to push ExceptionData on top of
3000 // the EH stack.
3001 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData)
3002 ->setDoesNotThrow();
3003
3004 // - Call setjmp on the exception data buffer.
3005 llvm::Constant *Zero = llvm::ConstantInt::get(CGF.Builder.getInt32Ty(), 0);
3006 llvm::Value *GEPIndexes[] = { Zero, Zero, Zero };
3007 llvm::Value *SetJmpBuffer =
3008 CGF.Builder.CreateGEP(ExceptionData, GEPIndexes, GEPIndexes+3, "setjmp_buffer");
3009 llvm::CallInst *SetJmpResult =
3010 CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer, "setjmp_result");
3011 SetJmpResult->setDoesNotThrow();
3012
3013 // If setjmp returned 0, enter the protected block; otherwise,
3014 // branch to the handler.
Daniel Dunbar55e87422008-11-11 02:29:29 +00003015 llvm::BasicBlock *TryBlock = CGF.createBasicBlock("try");
3016 llvm::BasicBlock *TryHandler = CGF.createBasicBlock("try.handler");
John McCallf1549f62010-07-06 01:34:17 +00003017 llvm::Value *DidCatch =
3018 CGF.Builder.CreateIsNull(SetJmpResult, "did_catch_exception");
3019 CGF.Builder.CreateCondBr(DidCatch, TryBlock, TryHandler);
Anders Carlsson80f25672008-09-09 17:59:25 +00003020
John McCallf1549f62010-07-06 01:34:17 +00003021 // Emit the protected block.
Anders Carlsson80f25672008-09-09 17:59:25 +00003022 CGF.EmitBlock(TryBlock);
John McCall0b251722010-08-04 05:59:32 +00003023 CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003024 CGF.EmitStmt(isTry ? cast<ObjCAtTryStmt>(S).getTryBody()
John McCallf1549f62010-07-06 01:34:17 +00003025 : cast<ObjCAtSynchronizedStmt>(S).getSynchBody());
John McCall0b251722010-08-04 05:59:32 +00003026
3027 CGBuilderTy::InsertPoint TryFallthroughIP = CGF.Builder.saveAndClearIP();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003028
John McCallf1549f62010-07-06 01:34:17 +00003029 // Emit the exception handler block.
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00003030 CGF.EmitBlock(TryHandler);
Daniel Dunbar55e40722008-09-27 07:03:52 +00003031
John McCall87bb5822010-07-31 23:20:56 +00003032 // Don't optimize loads of the in-scope locals across this point.
3033 Hazards.emitWriteHazard();
3034
John McCallf1549f62010-07-06 01:34:17 +00003035 // For a @synchronized (or a @try with no catches), just branch
3036 // through the cleanup to the rethrow block.
3037 if (!isTry || !cast<ObjCAtTryStmt>(S).getNumCatchStmts()) {
3038 // Tell the cleanup not to re-pop the exit.
John McCall0b251722010-08-04 05:59:32 +00003039 CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003040 CGF.EmitBranchThroughCleanup(FinallyRethrow);
John McCallf1549f62010-07-06 01:34:17 +00003041
3042 // Otherwise, we have to match against the caught exceptions.
3043 } else {
John McCall0b251722010-08-04 05:59:32 +00003044 // Retrieve the exception object. We may emit multiple blocks but
3045 // nothing can cross this so the value is already in SSA form.
3046 llvm::CallInst *Caught =
3047 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3048 ExceptionData, "caught");
3049 Caught->setDoesNotThrow();
3050
John McCallf1549f62010-07-06 01:34:17 +00003051 // Push the exception to rethrow onto the EH value stack for the
3052 // benefit of any @throws in the handlers.
3053 CGF.ObjCEHValueStack.push_back(Caught);
3054
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00003055 const ObjCAtTryStmt* AtTryStmt = cast<ObjCAtTryStmt>(&S);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003056
John McCall0b251722010-08-04 05:59:32 +00003057 bool HasFinally = (AtTryStmt->getFinallyStmt() != 0);
John McCallf1549f62010-07-06 01:34:17 +00003058
John McCall0b251722010-08-04 05:59:32 +00003059 llvm::BasicBlock *CatchBlock = 0;
3060 llvm::BasicBlock *CatchHandler = 0;
3061 if (HasFinally) {
3062 // Enter a new exception try block (in case a @catch block
3063 // throws an exception).
3064 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData)
3065 ->setDoesNotThrow();
Anders Carlsson80f25672008-09-09 17:59:25 +00003066
John McCall0b251722010-08-04 05:59:32 +00003067 llvm::CallInst *SetJmpResult =
3068 CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer,
3069 "setjmp.result");
3070 SetJmpResult->setDoesNotThrow();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003071
John McCall0b251722010-08-04 05:59:32 +00003072 llvm::Value *Threw =
3073 CGF.Builder.CreateIsNotNull(SetJmpResult, "did_catch_exception");
3074
3075 CatchBlock = CGF.createBasicBlock("catch");
3076 CatchHandler = CGF.createBasicBlock("catch_for_catch");
3077 CGF.Builder.CreateCondBr(Threw, CatchHandler, CatchBlock);
3078
3079 CGF.EmitBlock(CatchBlock);
3080 }
3081
3082 CGF.Builder.CreateStore(CGF.Builder.getInt1(HasFinally), CallTryExitVar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003083
Daniel Dunbar55e40722008-09-27 07:03:52 +00003084 // Handle catch list. As a special case we check if everything is
3085 // matched and avoid generating code for falling off the end if
3086 // so.
3087 bool AllMatched = false;
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00003088 for (unsigned I = 0, N = AtTryStmt->getNumCatchStmts(); I != N; ++I) {
3089 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I);
Anders Carlsson80f25672008-09-09 17:59:25 +00003090
Douglas Gregorc00d8e12010-04-26 16:46:50 +00003091 const VarDecl *CatchParam = CatchStmt->getCatchParamDecl();
Steve Naroff14108da2009-07-10 23:34:53 +00003092 const ObjCObjectPointerType *OPT = 0;
Daniel Dunbar129271a2008-09-27 07:36:24 +00003093
Anders Carlsson80f25672008-09-09 17:59:25 +00003094 // catch(...) always matches.
Daniel Dunbar55e40722008-09-27 07:03:52 +00003095 if (!CatchParam) {
3096 AllMatched = true;
3097 } else {
John McCall183700f2009-09-21 23:43:11 +00003098 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003099
John McCallf1549f62010-07-06 01:34:17 +00003100 // catch(id e) always matches under this ABI, since only
3101 // ObjC exceptions end up here in the first place.
Daniel Dunbar97f61d12008-09-27 22:21:14 +00003102 // FIXME: For the time being we also match id<X>; this should
3103 // be rejected by Sema instead.
Eli Friedman818e96f2009-07-11 00:57:02 +00003104 if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType()))
Daniel Dunbar55e40722008-09-27 07:03:52 +00003105 AllMatched = true;
Anders Carlsson80f25672008-09-09 17:59:25 +00003106 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003107
John McCallf1549f62010-07-06 01:34:17 +00003108 // If this is a catch-all, we don't need to test anything.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003109 if (AllMatched) {
John McCallf1549f62010-07-06 01:34:17 +00003110 CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF);
3111
Anders Carlssondde0a942008-09-11 09:15:33 +00003112 if (CatchParam) {
Steve Naroff7ba138a2009-03-03 19:52:17 +00003113 CGF.EmitLocalBlockVarDecl(*CatchParam);
Daniel Dunbara448fb22008-11-11 23:11:34 +00003114 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
John McCallf1549f62010-07-06 01:34:17 +00003115
3116 // These types work out because ConvertType(id) == i8*.
Steve Naroff7ba138a2009-03-03 19:52:17 +00003117 CGF.Builder.CreateStore(Caught, CGF.GetAddrOfLocalVar(CatchParam));
Anders Carlssondde0a942008-09-11 09:15:33 +00003118 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003119
Anders Carlssondde0a942008-09-11 09:15:33 +00003120 CGF.EmitStmt(CatchStmt->getCatchBody());
John McCallf1549f62010-07-06 01:34:17 +00003121
3122 // The scope of the catch variable ends right here.
3123 CatchVarCleanups.ForceCleanup();
3124
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003125 CGF.EmitBranchThroughCleanup(FinallyEnd);
Anders Carlsson80f25672008-09-09 17:59:25 +00003126 break;
3127 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003128
Steve Naroff14108da2009-07-10 23:34:53 +00003129 assert(OPT && "Unexpected non-object pointer type in @catch");
John McCall506b57e2010-05-17 21:00:27 +00003130 const ObjCObjectType *ObjTy = OPT->getObjectType();
John McCallf1549f62010-07-06 01:34:17 +00003131
3132 // FIXME: @catch (Class c) ?
John McCall506b57e2010-05-17 21:00:27 +00003133 ObjCInterfaceDecl *IDecl = ObjTy->getInterface();
3134 assert(IDecl && "Catch parameter must have Objective-C type!");
Anders Carlsson80f25672008-09-09 17:59:25 +00003135
3136 // Check if the @catch block matches the exception object.
John McCall506b57e2010-05-17 21:00:27 +00003137 llvm::Value *Class = EmitClassRef(CGF.Builder, IDecl);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003138
John McCallf1549f62010-07-06 01:34:17 +00003139 llvm::CallInst *Match =
Chris Lattner34b02a12009-04-22 02:26:14 +00003140 CGF.Builder.CreateCall2(ObjCTypes.getExceptionMatchFn(),
3141 Class, Caught, "match");
John McCallf1549f62010-07-06 01:34:17 +00003142 Match->setDoesNotThrow();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003143
John McCallf1549f62010-07-06 01:34:17 +00003144 llvm::BasicBlock *MatchedBlock = CGF.createBasicBlock("match");
3145 llvm::BasicBlock *NextCatchBlock = CGF.createBasicBlock("catch.next");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003146
3147 CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(Match, "matched"),
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00003148 MatchedBlock, NextCatchBlock);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003149
Anders Carlsson80f25672008-09-09 17:59:25 +00003150 // Emit the @catch block.
3151 CGF.EmitBlock(MatchedBlock);
John McCallf1549f62010-07-06 01:34:17 +00003152
3153 // Collect any cleanups for the catch variable. The scope lasts until
3154 // the end of the catch body.
John McCall0b251722010-08-04 05:59:32 +00003155 CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF);
John McCallf1549f62010-07-06 01:34:17 +00003156
Steve Naroff7ba138a2009-03-03 19:52:17 +00003157 CGF.EmitLocalBlockVarDecl(*CatchParam);
Daniel Dunbara448fb22008-11-11 23:11:34 +00003158 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003159
John McCallf1549f62010-07-06 01:34:17 +00003160 // Initialize the catch variable.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003161 llvm::Value *Tmp =
3162 CGF.Builder.CreateBitCast(Caught,
3163 CGF.ConvertType(CatchParam->getType()),
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003164 "tmp");
Steve Naroff7ba138a2009-03-03 19:52:17 +00003165 CGF.Builder.CreateStore(Tmp, CGF.GetAddrOfLocalVar(CatchParam));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003166
Anders Carlssondde0a942008-09-11 09:15:33 +00003167 CGF.EmitStmt(CatchStmt->getCatchBody());
John McCallf1549f62010-07-06 01:34:17 +00003168
3169 // We're done with the catch variable.
3170 CatchVarCleanups.ForceCleanup();
3171
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003172 CGF.EmitBranchThroughCleanup(FinallyEnd);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003173
Anders Carlsson80f25672008-09-09 17:59:25 +00003174 CGF.EmitBlock(NextCatchBlock);
3175 }
3176
John McCallf1549f62010-07-06 01:34:17 +00003177 CGF.ObjCEHValueStack.pop_back();
3178
John McCall0b251722010-08-04 05:59:32 +00003179 // If nothing wanted anything to do with the caught exception,
3180 // kill the extract call.
3181 if (Caught->use_empty())
3182 Caught->eraseFromParent();
3183
3184 if (!AllMatched)
3185 CGF.EmitBranchThroughCleanup(FinallyRethrow);
3186
3187 if (HasFinally) {
3188 // Emit the exception handler for the @catch blocks.
3189 CGF.EmitBlock(CatchHandler);
3190
3191 // In theory we might now need a write hazard, but actually it's
3192 // unnecessary because there's no local-accessing code between
3193 // the try's write hazard and here.
3194 //Hazards.emitWriteHazard();
3195
3196 // Don't pop the catch handler; the throw already did.
3197 CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003198 CGF.EmitBranchThroughCleanup(FinallyRethrow);
Daniel Dunbar55e40722008-09-27 07:03:52 +00003199 }
Anders Carlsson80f25672008-09-09 17:59:25 +00003200 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003201
John McCall87bb5822010-07-31 23:20:56 +00003202 // Insert read hazards as required in the new blocks.
John McCall0b251722010-08-04 05:59:32 +00003203 Hazards.emitHazardsInNewBlocks();
John McCall87bb5822010-07-31 23:20:56 +00003204
John McCallf1549f62010-07-06 01:34:17 +00003205 // Pop the cleanup.
John McCall0b251722010-08-04 05:59:32 +00003206 CGF.Builder.restoreIP(TryFallthroughIP);
3207 if (CGF.HaveInsertPoint())
3208 CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar);
John McCallf1549f62010-07-06 01:34:17 +00003209 CGF.PopCleanupBlock();
John McCall0b251722010-08-04 05:59:32 +00003210 CGF.EmitBlock(FinallyEnd.getBlock(), true);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003211
John McCallf1549f62010-07-06 01:34:17 +00003212 // Emit the rethrow block.
John McCall87bb5822010-07-31 23:20:56 +00003213 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
John McCallff8e1152010-07-23 21:56:41 +00003214 CGF.EmitBlock(FinallyRethrow.getBlock(), true);
John McCallf1549f62010-07-06 01:34:17 +00003215 if (CGF.HaveInsertPoint()) {
John McCall0b251722010-08-04 05:59:32 +00003216 // Just look in the buffer for the exception to throw.
3217 llvm::CallInst *Caught =
3218 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3219 ExceptionData);
3220 Caught->setDoesNotThrow();
3221
3222 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), Caught)
John McCallf1549f62010-07-06 01:34:17 +00003223 ->setDoesNotThrow();
3224 CGF.Builder.CreateUnreachable();
Fariborz Jahanianf2878e52008-11-21 19:21:53 +00003225 }
Anders Carlsson80f25672008-09-09 17:59:25 +00003226
John McCall87bb5822010-07-31 23:20:56 +00003227 CGF.Builder.restoreIP(SavedIP);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00003228}
3229
3230void CGObjCMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar898d5082008-09-30 01:06:03 +00003231 const ObjCAtThrowStmt &S) {
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003232 llvm::Value *ExceptionAsObject;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003233
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003234 if (const Expr *ThrowExpr = S.getThrowExpr()) {
3235 llvm::Value *Exception = CGF.EmitScalarExpr(ThrowExpr);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003236 ExceptionAsObject =
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003237 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy, "tmp");
3238 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003239 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003240 "Unexpected rethrow outside @catch block.");
Anders Carlsson273558f2009-02-07 21:37:21 +00003241 ExceptionAsObject = CGF.ObjCEHValueStack.back();
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003242 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003243
John McCallf1549f62010-07-06 01:34:17 +00003244 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), ExceptionAsObject)
3245 ->setDoesNotReturn();
Anders Carlsson80f25672008-09-09 17:59:25 +00003246 CGF.Builder.CreateUnreachable();
Daniel Dunbara448fb22008-11-11 23:11:34 +00003247
3248 // Clear the insertion point to indicate we are in unreachable code.
3249 CGF.Builder.ClearInsertionPoint();
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00003250}
3251
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003252/// EmitObjCWeakRead - Code gen for loading value of a __weak
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00003253/// object: objc_read_weak (id *src)
3254///
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003255llvm::Value * CGObjCMac::EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003256 llvm::Value *AddrWeakObj) {
Eli Friedman8339b352009-03-07 03:57:15 +00003257 const llvm::Type* DestTy =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003258 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
3259 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj,
3260 ObjCTypes.PtrObjectPtrTy);
Chris Lattner72db6c32009-04-22 02:44:54 +00003261 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003262 AddrWeakObj, "weakread");
Eli Friedman8339b352009-03-07 03:57:15 +00003263 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00003264 return read_weak;
3265}
3266
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003267/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
3268/// objc_assign_weak (id src, id *dst)
3269///
3270void CGObjCMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003271 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003272 const llvm::Type * SrcTy = src->getType();
3273 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003274 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003275 assert(Size <= 8 && "does not support size > 8");
3276 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003277 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003278 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3279 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003280 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3281 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner96508e12009-04-17 22:12:36 +00003282 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003283 src, dst, "weakassign");
3284 return;
3285}
3286
Fariborz Jahanian58626502008-11-19 00:59:10 +00003287/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
3288/// objc_assign_global (id src, id *dst)
3289///
3290void CGObjCMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00003291 llvm::Value *src, llvm::Value *dst,
3292 bool threadlocal) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003293 const llvm::Type * SrcTy = src->getType();
3294 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003295 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003296 assert(Size <= 8 && "does not support size > 8");
3297 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003298 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003299 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3300 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003301 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3302 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00003303 if (!threadlocal)
3304 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
3305 src, dst, "globalassign");
3306 else
3307 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignThreadLocalFn(),
3308 src, dst, "threadlocalassign");
Fariborz Jahanian58626502008-11-19 00:59:10 +00003309 return;
3310}
3311
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003312/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003313/// objc_assign_ivar (id src, id *dst, ptrdiff_t ivaroffset)
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003314///
3315void CGObjCMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003316 llvm::Value *src, llvm::Value *dst,
3317 llvm::Value *ivarOffset) {
3318 assert(ivarOffset && "EmitObjCIvarAssign - ivarOffset is NULL");
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003319 const llvm::Type * SrcTy = src->getType();
3320 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003321 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003322 assert(Size <= 8 && "does not support size > 8");
3323 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003324 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003325 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3326 }
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003327 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3328 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003329 CGF.Builder.CreateCall3(ObjCTypes.getGcAssignIvarFn(),
3330 src, dst, ivarOffset);
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003331 return;
3332}
3333
Fariborz Jahanian58626502008-11-19 00:59:10 +00003334/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
3335/// objc_assign_strongCast (id src, id *dst)
3336///
3337void CGObjCMac::EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003338 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003339 const llvm::Type * SrcTy = src->getType();
3340 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003341 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003342 assert(Size <= 8 && "does not support size > 8");
3343 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003344 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003345 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3346 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003347 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3348 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00003349 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian58626502008-11-19 00:59:10 +00003350 src, dst, "weakassign");
3351 return;
3352}
3353
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003354void CGObjCMac::EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003355 llvm::Value *DestPtr,
3356 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00003357 llvm::Value *size) {
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003358 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy);
3359 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003360 CGF.Builder.CreateCall3(ObjCTypes.GcMemmoveCollectableFn(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00003361 DestPtr, SrcPtr, size);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003362 return;
3363}
3364
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00003365/// EmitObjCValueForIvar - Code Gen for ivar reference.
3366///
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00003367LValue CGObjCMac::EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
3368 QualType ObjectTy,
3369 llvm::Value *BaseValue,
3370 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00003371 unsigned CVRQualifiers) {
John McCallc12c5bb2010-05-15 11:32:37 +00003372 const ObjCInterfaceDecl *ID =
3373 ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar97776872009-04-22 07:32:20 +00003374 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
3375 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00003376}
3377
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003378llvm::Value *CGObjCMac::EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00003379 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003380 const ObjCIvarDecl *Ivar) {
Daniel Dunbar97776872009-04-22 07:32:20 +00003381 uint64_t Offset = ComputeIvarBaseOffset(CGM, Interface, Ivar);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003382 return llvm::ConstantInt::get(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003383 CGM.getTypes().ConvertType(CGM.getContext().LongTy),
3384 Offset);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003385}
3386
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003387/* *** Private Interface *** */
3388
3389/// EmitImageInfo - Emit the image info marker used to encode some module
3390/// level information.
3391///
3392/// See: <rdr://4810609&4810587&4810587>
3393/// struct IMAGE_INFO {
3394/// unsigned version;
3395/// unsigned flags;
3396/// };
3397enum ImageInfoFlags {
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003398 eImageInfo_FixAndContinue = (1 << 0),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003399 eImageInfo_GarbageCollected = (1 << 1),
3400 eImageInfo_GCOnly = (1 << 2),
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003401 eImageInfo_OptimizedByDyld = (1 << 3), // FIXME: When is this set.
3402
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003403 // A flag indicating that the module has no instances of a @synthesize of a
3404 // superclass variable. <rdar://problem/6803242>
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003405 eImageInfo_CorrectedSynthesize = (1 << 4)
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003406};
3407
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003408void CGObjCCommonMac::EmitImageInfo() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003409 unsigned version = 0; // Version is unused?
3410 unsigned flags = 0;
3411
3412 // FIXME: Fix and continue?
3413 if (CGM.getLangOptions().getGCMode() != LangOptions::NonGC)
3414 flags |= eImageInfo_GarbageCollected;
3415 if (CGM.getLangOptions().getGCMode() == LangOptions::GCOnly)
3416 flags |= eImageInfo_GCOnly;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003417
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003418 // We never allow @synthesize of a superclass property.
3419 flags |= eImageInfo_CorrectedSynthesize;
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003420
Chris Lattner77b89b82010-06-27 07:15:29 +00003421 const llvm::Type *Int32Ty = llvm::Type::getInt32Ty(VMContext);
3422
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003423 // Emitted as int[2];
3424 llvm::Constant *values[2] = {
Chris Lattner77b89b82010-06-27 07:15:29 +00003425 llvm::ConstantInt::get(Int32Ty, version),
3426 llvm::ConstantInt::get(Int32Ty, flags)
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003427 };
Chris Lattner77b89b82010-06-27 07:15:29 +00003428 llvm::ArrayType *AT = llvm::ArrayType::get(Int32Ty, 2);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003429
3430 const char *Section;
3431 if (ObjCABI == 1)
3432 Section = "__OBJC, __image_info,regular";
3433 else
3434 Section = "__DATA, __objc_imageinfo, regular, no_dead_strip";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003435 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003436 CreateMetadataVar("\01L_OBJC_IMAGE_INFO",
Owen Anderson7db6d832009-07-28 18:33:04 +00003437 llvm::ConstantArray::get(AT, values, 2),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003438 Section,
3439 0,
3440 true);
3441 GV->setConstant(true);
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003442}
3443
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003444
3445// struct objc_module {
3446// unsigned long version;
3447// unsigned long size;
3448// const char *name;
3449// Symtab symtab;
3450// };
3451
3452// FIXME: Get from somewhere
3453static const int ModuleVersion = 7;
3454
3455void CGObjCMac::EmitModuleInfo() {
Duncan Sands9408c452009-05-09 07:08:47 +00003456 uint64_t Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ModuleTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003457
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003458 std::vector<llvm::Constant*> Values(4);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003459 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, ModuleVersion);
3460 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00003461 // This used to be the filename, now it is unused. <rdr://4327263>
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003462 Values[2] = GetClassName(&CGM.getContext().Idents.get(""));
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003463 Values[3] = EmitModuleSymbols();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003464 CreateMetadataVar("\01L_OBJC_MODULES",
Owen Anderson08e25242009-07-27 22:29:56 +00003465 llvm::ConstantStruct::get(ObjCTypes.ModuleTy, Values),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003466 "__OBJC,__module_info,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00003467 4, true);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003468}
3469
3470llvm::Constant *CGObjCMac::EmitModuleSymbols() {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003471 unsigned NumClasses = DefinedClasses.size();
3472 unsigned NumCategories = DefinedCategories.size();
3473
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003474 // Return null if no symbols were defined.
3475 if (!NumClasses && !NumCategories)
Owen Andersonc9c88b42009-07-31 20:28:54 +00003476 return llvm::Constant::getNullValue(ObjCTypes.SymtabPtrTy);
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003477
3478 std::vector<llvm::Constant*> Values(5);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003479 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
Owen Andersonc9c88b42009-07-31 20:28:54 +00003480 Values[1] = llvm::Constant::getNullValue(ObjCTypes.SelectorPtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003481 Values[2] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumClasses);
3482 Values[3] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumCategories);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003483
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003484 // The runtime expects exactly the list of defined classes followed
3485 // by the list of defined categories, in a single array.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003486 std::vector<llvm::Constant*> Symbols(NumClasses + NumCategories);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003487 for (unsigned i=0; i<NumClasses; i++)
Owen Anderson3c4972d2009-07-29 18:54:39 +00003488 Symbols[i] = llvm::ConstantExpr::getBitCast(DefinedClasses[i],
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003489 ObjCTypes.Int8PtrTy);
3490 for (unsigned i=0; i<NumCategories; i++)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003491 Symbols[NumClasses + i] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003492 llvm::ConstantExpr::getBitCast(DefinedCategories[i],
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003493 ObjCTypes.Int8PtrTy);
3494
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003495 Values[4] =
Owen Anderson96e0fc72009-07-29 22:16:19 +00003496 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003497 NumClasses + NumCategories),
3498 Symbols);
3499
Nick Lewycky0d36dd22009-09-19 20:00:52 +00003500 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003501
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003502 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003503 CreateMetadataVar("\01L_OBJC_SYMBOLS", Init,
3504 "__OBJC,__symbols,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003505 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00003506 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.SymtabPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003507}
3508
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003509llvm::Value *CGObjCMac::EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003510 const ObjCInterfaceDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003511 LazySymbols.insert(ID->getIdentifier());
3512
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003513 llvm::GlobalVariable *&Entry = ClassReferences[ID->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003514
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003515 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003516 llvm::Constant *Casted =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003517 llvm::ConstantExpr::getBitCast(GetClassName(ID->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003518 ObjCTypes.ClassPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003519 Entry =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003520 CreateMetadataVar("\01L_OBJC_CLASS_REFERENCES_", Casted,
3521 "__OBJC,__cls_refs,literal_pointers,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003522 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003523 }
3524
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00003525 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003526}
3527
Fariborz Jahanian03b29602010-06-17 19:56:20 +00003528llvm::Value *CGObjCMac::EmitSelector(CGBuilderTy &Builder, Selector Sel,
3529 bool lvalue) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003530 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003531
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003532 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003533 llvm::Constant *Casted =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003534 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003535 ObjCTypes.SelectorPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003536 Entry =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003537 CreateMetadataVar("\01L_OBJC_SELECTOR_REFERENCES_", Casted,
3538 "__OBJC,__message_refs,literal_pointers,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003539 4, true);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003540 }
3541
Fariborz Jahanian03b29602010-06-17 19:56:20 +00003542 if (lvalue)
3543 return Entry;
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00003544 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003545}
3546
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00003547llvm::Constant *CGObjCCommonMac::GetClassName(IdentifierInfo *Ident) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003548 llvm::GlobalVariable *&Entry = ClassNames[Ident];
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003549
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003550 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003551 Entry = CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00003552 llvm::ConstantArray::get(VMContext,
3553 Ident->getNameStart()),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003554 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003555 1, true);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003556
Owen Andersona1cf15f2009-07-14 23:10:40 +00003557 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003558}
3559
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +00003560/// GetIvarLayoutName - Returns a unique constant for the given
3561/// ivar layout bitmap.
3562llvm::Constant *CGObjCCommonMac::GetIvarLayoutName(IdentifierInfo *Ident,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003563 const ObjCCommonTypesHelper &ObjCTypes) {
Owen Andersonc9c88b42009-07-31 20:28:54 +00003564 return llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +00003565}
3566
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003567void CGObjCCommonMac::BuildAggrIvarRecordLayout(const RecordType *RT,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003568 unsigned int BytePos,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003569 bool ForStrongLayout,
3570 bool &HasUnion) {
3571 const RecordDecl *RD = RT->getDecl();
3572 // FIXME - Use iterator.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003573 llvm::SmallVector<FieldDecl*, 16> Fields(RD->field_begin(), RD->field_end());
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003574 const llvm::Type *Ty = CGM.getTypes().ConvertType(QualType(RT, 0));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003575 const llvm::StructLayout *RecLayout =
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003576 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(Ty));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003577
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003578 BuildAggrIvarLayout(0, RecLayout, RD, Fields, BytePos,
3579 ForStrongLayout, HasUnion);
3580}
3581
Daniel Dunbar5a5a8032009-05-03 21:05:10 +00003582void CGObjCCommonMac::BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003583 const llvm::StructLayout *Layout,
3584 const RecordDecl *RD,
Chris Lattnerf1690852009-03-31 08:48:01 +00003585 const llvm::SmallVectorImpl<FieldDecl*> &RecFields,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003586 unsigned int BytePos, bool ForStrongLayout,
3587 bool &HasUnion) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003588 bool IsUnion = (RD && RD->isUnion());
3589 uint64_t MaxUnionIvarSize = 0;
3590 uint64_t MaxSkippedUnionIvarSize = 0;
3591 FieldDecl *MaxField = 0;
3592 FieldDecl *MaxSkippedField = 0;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003593 FieldDecl *LastFieldBitfield = 0;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003594 uint64_t MaxFieldOffset = 0;
3595 uint64_t MaxSkippedFieldOffset = 0;
3596 uint64_t LastBitfieldOffset = 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003597
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003598 if (RecFields.empty())
3599 return;
Chris Lattnerf1690852009-03-31 08:48:01 +00003600 unsigned WordSizeInBits = CGM.getContext().Target.getPointerWidth(0);
3601 unsigned ByteSizeInBits = CGM.getContext().Target.getCharWidth();
3602
Chris Lattnerf1690852009-03-31 08:48:01 +00003603 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003604 FieldDecl *Field = RecFields[i];
Daniel Dunbare05cc982009-05-03 23:35:23 +00003605 uint64_t FieldOffset;
Anders Carlssonfc514ab2009-07-24 17:23:54 +00003606 if (RD) {
Daniel Dunbarf8f8eba2010-04-14 17:02:21 +00003607 // Note that 'i' here is actually the field index inside RD of Field,
3608 // although this dependency is hidden.
3609 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
3610 FieldOffset = RL.getFieldOffset(i) / 8;
Anders Carlssonfc514ab2009-07-24 17:23:54 +00003611 } else
Daniel Dunbare05cc982009-05-03 23:35:23 +00003612 FieldOffset = ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(Field));
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003613
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003614 // Skip over unnamed or bitfields
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003615 if (!Field->getIdentifier() || Field->isBitField()) {
3616 LastFieldBitfield = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003617 LastBitfieldOffset = FieldOffset;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003618 continue;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003619 }
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003620
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003621 LastFieldBitfield = 0;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003622 QualType FQT = Field->getType();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003623 if (FQT->isRecordType() || FQT->isUnionType()) {
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003624 if (FQT->isUnionType())
3625 HasUnion = true;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003626
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003627 BuildAggrIvarRecordLayout(FQT->getAs<RecordType>(),
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003628 BytePos + FieldOffset,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003629 ForStrongLayout, HasUnion);
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003630 continue;
3631 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003632
Chris Lattnerf1690852009-03-31 08:48:01 +00003633 if (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003634 const ConstantArrayType *CArray =
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003635 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003636 uint64_t ElCount = CArray->getSize().getZExtValue();
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003637 assert(CArray && "only array with known element size is supported");
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003638 FQT = CArray->getElementType();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003639 while (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
3640 const ConstantArrayType *CArray =
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003641 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003642 ElCount *= CArray->getSize().getZExtValue();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003643 FQT = CArray->getElementType();
3644 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003645
3646 assert(!FQT->isUnionType() &&
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003647 "layout for array of unions not supported");
3648 if (FQT->isRecordType()) {
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003649 int OldIndex = IvarsInfo.size() - 1;
3650 int OldSkIndex = SkipIvars.size() -1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003651
Ted Kremenek6217b802009-07-29 21:53:49 +00003652 const RecordType *RT = FQT->getAs<RecordType>();
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003653 BuildAggrIvarRecordLayout(RT, BytePos + FieldOffset,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003654 ForStrongLayout, HasUnion);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003655
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003656 // Replicate layout information for each array element. Note that
3657 // one element is already done.
3658 uint64_t ElIx = 1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003659 for (int FirstIndex = IvarsInfo.size() - 1,
3660 FirstSkIndex = SkipIvars.size() - 1 ;ElIx < ElCount; ElIx++) {
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003661 uint64_t Size = CGM.getContext().getTypeSize(RT)/ByteSizeInBits;
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003662 for (int i = OldIndex+1; i <= FirstIndex; ++i)
3663 IvarsInfo.push_back(GC_IVAR(IvarsInfo[i].ivar_bytepos + Size*ElIx,
3664 IvarsInfo[i].ivar_size));
3665 for (int i = OldSkIndex+1; i <= FirstSkIndex; ++i)
3666 SkipIvars.push_back(GC_IVAR(SkipIvars[i].ivar_bytepos + Size*ElIx,
3667 SkipIvars[i].ivar_size));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003668 }
3669 continue;
3670 }
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003671 }
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003672 // At this point, we are done with Record/Union and array there of.
3673 // For other arrays we are down to its element type.
John McCall0953e762009-09-24 19:53:00 +00003674 Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), FQT);
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003675
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003676 unsigned FieldSize = CGM.getContext().getTypeSize(Field->getType());
John McCall0953e762009-09-24 19:53:00 +00003677 if ((ForStrongLayout && GCAttr == Qualifiers::Strong)
3678 || (!ForStrongLayout && GCAttr == Qualifiers::Weak)) {
Daniel Dunbar487993b2009-05-03 13:32:01 +00003679 if (IsUnion) {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003680 uint64_t UnionIvarSize = FieldSize / WordSizeInBits;
Daniel Dunbar487993b2009-05-03 13:32:01 +00003681 if (UnionIvarSize > MaxUnionIvarSize) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003682 MaxUnionIvarSize = UnionIvarSize;
3683 MaxField = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003684 MaxFieldOffset = FieldOffset;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003685 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003686 } else {
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003687 IvarsInfo.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003688 FieldSize / WordSizeInBits));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003689 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003690 } else if ((ForStrongLayout &&
John McCall0953e762009-09-24 19:53:00 +00003691 (GCAttr == Qualifiers::GCNone || GCAttr == Qualifiers::Weak))
3692 || (!ForStrongLayout && GCAttr != Qualifiers::Weak)) {
Daniel Dunbar487993b2009-05-03 13:32:01 +00003693 if (IsUnion) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00003694 // FIXME: Why the asymmetry? We divide by word size in bits on other
3695 // side.
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003696 uint64_t UnionIvarSize = FieldSize;
Daniel Dunbar487993b2009-05-03 13:32:01 +00003697 if (UnionIvarSize > MaxSkippedUnionIvarSize) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003698 MaxSkippedUnionIvarSize = UnionIvarSize;
3699 MaxSkippedField = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003700 MaxSkippedFieldOffset = FieldOffset;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003701 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003702 } else {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003703 // FIXME: Why the asymmetry, we divide by byte size in bits here?
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003704 SkipIvars.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003705 FieldSize / ByteSizeInBits));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003706 }
3707 }
3708 }
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003709
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003710 if (LastFieldBitfield) {
3711 // Last field was a bitfield. Must update skip info.
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003712 Expr *BitWidth = LastFieldBitfield->getBitWidth();
3713 uint64_t BitFieldSize =
Eli Friedman9a901bb2009-04-26 19:19:15 +00003714 BitWidth->EvaluateAsInt(CGM.getContext()).getZExtValue();
Daniel Dunbar487993b2009-05-03 13:32:01 +00003715 GC_IVAR skivar;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003716 skivar.ivar_bytepos = BytePos + LastBitfieldOffset;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003717 skivar.ivar_size = (BitFieldSize / ByteSizeInBits)
3718 + ((BitFieldSize % ByteSizeInBits) != 0);
3719 SkipIvars.push_back(skivar);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003720 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003721
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003722 if (MaxField)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003723 IvarsInfo.push_back(GC_IVAR(BytePos + MaxFieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003724 MaxUnionIvarSize));
3725 if (MaxSkippedField)
Daniel Dunbar900c1982009-05-03 23:31:46 +00003726 SkipIvars.push_back(GC_IVAR(BytePos + MaxSkippedFieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003727 MaxSkippedUnionIvarSize));
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003728}
3729
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00003730/// BuildIvarLayoutBitmap - This routine is the horsework for doing all
3731/// the computations and returning the layout bitmap (for ivar or blocks) in
3732/// the given argument BitMap string container. Routine reads
3733/// two containers, IvarsInfo and SkipIvars which are assumed to be
3734/// filled already by the caller.
3735llvm::Constant *CGObjCCommonMac::BuildIvarLayoutBitmap(std::string& BitMap) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003736 unsigned int WordsToScan, WordsToSkip;
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00003737 const llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003738
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003739 // Build the string of skip/scan nibbles
Fariborz Jahanian8c2f2d12009-04-24 17:15:27 +00003740 llvm::SmallVector<SKIP_SCAN, 32> SkipScanIvars;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003741 unsigned int WordSize =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003742 CGM.getTypes().getTargetData().getTypeAllocSize(PtrTy);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003743 if (IvarsInfo[0].ivar_bytepos == 0) {
3744 WordsToSkip = 0;
3745 WordsToScan = IvarsInfo[0].ivar_size;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003746 } else {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003747 WordsToSkip = IvarsInfo[0].ivar_bytepos/WordSize;
3748 WordsToScan = IvarsInfo[0].ivar_size;
3749 }
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003750 for (unsigned int i=1, Last=IvarsInfo.size(); i != Last; i++) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003751 unsigned int TailPrevGCObjC =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003752 IvarsInfo[i-1].ivar_bytepos + IvarsInfo[i-1].ivar_size * WordSize;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003753 if (IvarsInfo[i].ivar_bytepos == TailPrevGCObjC) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003754 // consecutive 'scanned' object pointers.
3755 WordsToScan += IvarsInfo[i].ivar_size;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003756 } else {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003757 // Skip over 'gc'able object pointer which lay over each other.
3758 if (TailPrevGCObjC > IvarsInfo[i].ivar_bytepos)
3759 continue;
3760 // Must skip over 1 or more words. We save current skip/scan values
3761 // and start a new pair.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003762 SKIP_SCAN SkScan;
3763 SkScan.skip = WordsToSkip;
3764 SkScan.scan = WordsToScan;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003765 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003766
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003767 // Skip the hole.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003768 SkScan.skip = (IvarsInfo[i].ivar_bytepos - TailPrevGCObjC) / WordSize;
3769 SkScan.scan = 0;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003770 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003771 WordsToSkip = 0;
3772 WordsToScan = IvarsInfo[i].ivar_size;
3773 }
3774 }
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003775 if (WordsToScan > 0) {
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003776 SKIP_SCAN SkScan;
3777 SkScan.skip = WordsToSkip;
3778 SkScan.scan = WordsToScan;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003779 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003780 }
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003781
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003782 if (!SkipIvars.empty()) {
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003783 unsigned int LastIndex = SkipIvars.size()-1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003784 int LastByteSkipped =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003785 SkipIvars[LastIndex].ivar_bytepos + SkipIvars[LastIndex].ivar_size;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003786 LastIndex = IvarsInfo.size()-1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003787 int LastByteScanned =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003788 IvarsInfo[LastIndex].ivar_bytepos +
3789 IvarsInfo[LastIndex].ivar_size * WordSize;
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003790 // Compute number of bytes to skip at the tail end of the last ivar scanned.
Benjamin Kramer54d76db2009-12-25 15:43:36 +00003791 if (LastByteSkipped > LastByteScanned) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003792 unsigned int TotalWords = (LastByteSkipped + (WordSize -1)) / WordSize;
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003793 SKIP_SCAN SkScan;
3794 SkScan.skip = TotalWords - (LastByteScanned/WordSize);
3795 SkScan.scan = 0;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003796 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003797 }
3798 }
3799 // Mini optimization of nibbles such that an 0xM0 followed by 0x0N is produced
3800 // as 0xMN.
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003801 int SkipScan = SkipScanIvars.size()-1;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003802 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003803 if ((i < SkipScan) && SkipScanIvars[i].skip && SkipScanIvars[i].scan == 0
3804 && SkipScanIvars[i+1].skip == 0 && SkipScanIvars[i+1].scan) {
3805 // 0xM0 followed by 0x0N detected.
3806 SkipScanIvars[i].scan = SkipScanIvars[i+1].scan;
3807 for (int j = i+1; j < SkipScan; j++)
3808 SkipScanIvars[j] = SkipScanIvars[j+1];
3809 --SkipScan;
3810 }
3811 }
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003812
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003813 // Generate the string.
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003814 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003815 unsigned char byte;
3816 unsigned int skip_small = SkipScanIvars[i].skip % 0xf;
3817 unsigned int scan_small = SkipScanIvars[i].scan % 0xf;
3818 unsigned int skip_big = SkipScanIvars[i].skip / 0xf;
3819 unsigned int scan_big = SkipScanIvars[i].scan / 0xf;
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003820
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003821 // first skip big.
3822 for (unsigned int ix = 0; ix < skip_big; ix++)
3823 BitMap += (unsigned char)(0xf0);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003824
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003825 // next (skip small, scan)
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003826 if (skip_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003827 byte = skip_small << 4;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003828 if (scan_big > 0) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003829 byte |= 0xf;
3830 --scan_big;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003831 } else if (scan_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003832 byte |= scan_small;
3833 scan_small = 0;
3834 }
3835 BitMap += byte;
3836 }
3837 // next scan big
3838 for (unsigned int ix = 0; ix < scan_big; ix++)
3839 BitMap += (unsigned char)(0x0f);
3840 // last scan small
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003841 if (scan_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003842 byte = scan_small;
3843 BitMap += byte;
3844 }
3845 }
3846 // null terminate string.
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003847 unsigned char zero = 0;
3848 BitMap += zero;
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003849
3850 llvm::GlobalVariable * Entry =
3851 CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
3852 llvm::ConstantArray::get(VMContext, BitMap.c_str()),
3853 "__TEXT,__cstring,cstring_literals",
3854 1, true);
3855 return getConstantGEP(VMContext, Entry, 0, 0);
3856}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003857
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003858/// BuildIvarLayout - Builds ivar layout bitmap for the class
3859/// implementation for the __strong or __weak case.
3860/// The layout map displays which words in ivar list must be skipped
3861/// and which must be scanned by GC (see below). String is built of bytes.
3862/// Each byte is divided up in two nibbles (4-bit each). Left nibble is count
3863/// of words to skip and right nibble is count of words to scan. So, each
3864/// nibble represents up to 15 workds to skip or scan. Skipping the rest is
3865/// represented by a 0x00 byte which also ends the string.
3866/// 1. when ForStrongLayout is true, following ivars are scanned:
3867/// - id, Class
3868/// - object *
3869/// - __strong anything
3870///
3871/// 2. When ForStrongLayout is false, following ivars are scanned:
3872/// - __weak anything
3873///
3874llvm::Constant *CGObjCCommonMac::BuildIvarLayout(
3875 const ObjCImplementationDecl *OMD,
3876 bool ForStrongLayout) {
3877 bool hasUnion = false;
3878
3879 const llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(VMContext);
3880 if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC)
3881 return llvm::Constant::getNullValue(PtrTy);
3882
3883 llvm::SmallVector<FieldDecl*, 32> RecFields;
3884 const ObjCInterfaceDecl *OI = OMD->getClassInterface();
3885 CGM.getContext().CollectObjCIvars(OI, RecFields);
3886
3887 // Add this implementations synthesized ivars.
3888 llvm::SmallVector<ObjCIvarDecl*, 16> Ivars;
3889 CGM.getContext().CollectNonClassIvars(OI, Ivars);
3890 for (unsigned k = 0, e = Ivars.size(); k != e; ++k)
3891 RecFields.push_back(cast<FieldDecl>(Ivars[k]));
3892
3893 if (RecFields.empty())
3894 return llvm::Constant::getNullValue(PtrTy);
3895
3896 SkipIvars.clear();
3897 IvarsInfo.clear();
3898
3899 BuildAggrIvarLayout(OMD, 0, 0, RecFields, 0, ForStrongLayout, hasUnion);
3900 if (IvarsInfo.empty())
3901 return llvm::Constant::getNullValue(PtrTy);
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00003902 // Sort on byte position in case we encounterred a union nested in
3903 // the ivar list.
3904 if (hasUnion && !IvarsInfo.empty())
3905 std::sort(IvarsInfo.begin(), IvarsInfo.end());
3906 if (hasUnion && !SkipIvars.empty())
3907 std::sort(SkipIvars.begin(), SkipIvars.end());
3908
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003909 std::string BitMap;
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00003910 llvm::Constant *C = BuildIvarLayoutBitmap(BitMap);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003911
3912 if (CGM.getLangOptions().ObjCGCBitmapPrint) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003913 printf("\n%s ivar layout for class '%s': ",
Fariborz Jahanian3d2ad662009-04-20 22:03:45 +00003914 ForStrongLayout ? "strong" : "weak",
3915 OMD->getClassInterface()->getNameAsCString());
3916 const unsigned char *s = (unsigned char*)BitMap.c_str();
3917 for (unsigned i = 0; i < BitMap.size(); i++)
3918 if (!(s[i] & 0xf0))
3919 printf("0x0%x%s", s[i], s[i] != 0 ? ", " : "");
3920 else
3921 printf("0x%x%s", s[i], s[i] != 0 ? ", " : "");
3922 printf("\n");
3923 }
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003924 return C;
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003925}
3926
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003927llvm::Constant *CGObjCCommonMac::GetMethodVarName(Selector Sel) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003928 llvm::GlobalVariable *&Entry = MethodVarNames[Sel];
3929
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003930 // FIXME: Avoid std::string copying.
3931 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003932 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_NAME_",
Owen Anderson0032b272009-08-13 21:57:51 +00003933 llvm::ConstantArray::get(VMContext, Sel.getAsString()),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003934 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003935 1, true);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003936
Owen Andersona1cf15f2009-07-14 23:10:40 +00003937 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003938}
3939
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003940// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003941llvm::Constant *CGObjCCommonMac::GetMethodVarName(IdentifierInfo *ID) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003942 return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID));
3943}
3944
3945// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003946llvm::Constant *CGObjCCommonMac::GetMethodVarName(const std::string &Name) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003947 return GetMethodVarName(&CGM.getContext().Idents.get(Name));
3948}
3949
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00003950llvm::Constant *CGObjCCommonMac::GetMethodVarType(const FieldDecl *Field) {
Devang Patel7794bb82009-03-04 18:21:39 +00003951 std::string TypeStr;
3952 CGM.getContext().getObjCEncodingForType(Field->getType(), TypeStr, Field);
3953
3954 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003955
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003956 if (!Entry)
3957 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
Owen Anderson0032b272009-08-13 21:57:51 +00003958 llvm::ConstantArray::get(VMContext, TypeStr),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003959 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003960 1, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003961
Owen Andersona1cf15f2009-07-14 23:10:40 +00003962 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003963}
3964
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003965llvm::Constant *CGObjCCommonMac::GetMethodVarType(const ObjCMethodDecl *D) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003966 std::string TypeStr;
Daniel Dunbarc45ef602008-08-26 21:51:14 +00003967 CGM.getContext().getObjCEncodingForMethodDecl(const_cast<ObjCMethodDecl*>(D),
3968 TypeStr);
Devang Patel7794bb82009-03-04 18:21:39 +00003969
3970 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
3971
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003972 if (!Entry)
3973 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
Owen Anderson0032b272009-08-13 21:57:51 +00003974 llvm::ConstantArray::get(VMContext, TypeStr),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003975 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003976 1, true);
Devang Patel7794bb82009-03-04 18:21:39 +00003977
Owen Andersona1cf15f2009-07-14 23:10:40 +00003978 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003979}
3980
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003981// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003982llvm::Constant *CGObjCCommonMac::GetPropertyName(IdentifierInfo *Ident) {
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003983 llvm::GlobalVariable *&Entry = PropertyNames[Ident];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003984
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003985 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003986 Entry = CreateMetadataVar("\01L_OBJC_PROP_NAME_ATTR_",
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00003987 llvm::ConstantArray::get(VMContext,
3988 Ident->getNameStart()),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003989 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003990 1, true);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003991
Owen Andersona1cf15f2009-07-14 23:10:40 +00003992 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003993}
3994
3995// FIXME: Merge into a single cstring creation function.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00003996// FIXME: This Decl should be more precise.
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003997llvm::Constant *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003998CGObjCCommonMac::GetPropertyTypeString(const ObjCPropertyDecl *PD,
3999 const Decl *Container) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004000 std::string TypeStr;
4001 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00004002 return GetPropertyName(&CGM.getContext().Idents.get(TypeStr));
4003}
4004
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004005void CGObjCCommonMac::GetNameForMethod(const ObjCMethodDecl *D,
Fariborz Jahanian56210f72009-01-21 23:34:32 +00004006 const ObjCContainerDecl *CD,
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004007 llvm::SmallVectorImpl<char> &Name) {
4008 llvm::raw_svector_ostream OS(Name);
Fariborz Jahanian679a5022009-01-10 21:06:09 +00004009 assert (CD && "Missing container decl in GetNameForMethod");
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004010 OS << '\01' << (D->isInstanceMethod() ? '-' : '+')
4011 << '[' << CD->getName();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004012 if (const ObjCCategoryImplDecl *CID =
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004013 dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext()))
Benjamin Kramer900fc632010-04-17 09:33:03 +00004014 OS << '(' << CID << ')';
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004015 OS << ' ' << D->getSelector().getAsString() << ']';
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00004016}
4017
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004018void CGObjCMac::FinishModule() {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004019 EmitModuleInfo();
4020
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004021 // Emit the dummy bodies for any protocols which were referenced but
4022 // never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004023 for (llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*>::iterator
Chris Lattnerad64e022009-07-17 23:57:13 +00004024 I = Protocols.begin(), e = Protocols.end(); I != e; ++I) {
4025 if (I->second->hasInitializer())
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004026 continue;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004027
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004028 std::vector<llvm::Constant*> Values(5);
Owen Andersonc9c88b42009-07-31 20:28:54 +00004029 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
Chris Lattnerad64e022009-07-17 23:57:13 +00004030 Values[1] = GetClassName(I->first);
Owen Andersonc9c88b42009-07-31 20:28:54 +00004031 Values[2] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004032 Values[3] = Values[4] =
Owen Andersonc9c88b42009-07-31 20:28:54 +00004033 llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
Chris Lattnerad64e022009-07-17 23:57:13 +00004034 I->second->setLinkage(llvm::GlobalValue::InternalLinkage);
Owen Anderson08e25242009-07-27 22:29:56 +00004035 I->second->setInitializer(llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004036 Values));
Chris Lattnerad64e022009-07-17 23:57:13 +00004037 CGM.AddUsedGlobal(I->second);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004038 }
4039
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00004040 // Add assembler directives to add lazy undefined symbol references
4041 // for classes which are referenced but not defined. This is
4042 // important for correct linker interaction.
Daniel Dunbar33063492009-09-07 00:20:42 +00004043 //
4044 // FIXME: It would be nice if we had an LLVM construct for this.
4045 if (!LazySymbols.empty() || !DefinedSymbols.empty()) {
4046 llvm::SmallString<256> Asm;
4047 Asm += CGM.getModule().getModuleInlineAsm();
4048 if (!Asm.empty() && Asm.back() != '\n')
4049 Asm += '\n';
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00004050
Daniel Dunbar33063492009-09-07 00:20:42 +00004051 llvm::raw_svector_ostream OS(Asm);
Daniel Dunbar33063492009-09-07 00:20:42 +00004052 for (llvm::SetVector<IdentifierInfo*>::iterator I = DefinedSymbols.begin(),
4053 e = DefinedSymbols.end(); I != e; ++I)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00004054 OS << "\t.objc_class_name_" << (*I)->getName() << "=0\n"
4055 << "\t.globl .objc_class_name_" << (*I)->getName() << "\n";
Chris Lattnerafd5eda2010-04-17 18:26:20 +00004056 for (llvm::SetVector<IdentifierInfo*>::iterator I = LazySymbols.begin(),
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00004057 e = LazySymbols.end(); I != e; ++I) {
Chris Lattnerafd5eda2010-04-17 18:26:20 +00004058 OS << "\t.lazy_reference .objc_class_name_" << (*I)->getName() << "\n";
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00004059 }
4060
4061 for (size_t i = 0; i < DefinedCategoryNames.size(); ++i) {
4062 OS << "\t.objc_category_name_" << DefinedCategoryNames[i] << "=0\n"
4063 << "\t.globl .objc_category_name_" << DefinedCategoryNames[i] << "\n";
4064 }
Chris Lattnerafd5eda2010-04-17 18:26:20 +00004065
Daniel Dunbar33063492009-09-07 00:20:42 +00004066 CGM.getModule().setModuleInlineAsm(OS.str());
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00004067 }
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004068}
4069
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004070CGObjCNonFragileABIMac::CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm)
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004071 : CGObjCCommonMac(cgm),
Mike Stump1eb44332009-09-09 15:08:12 +00004072 ObjCTypes(cgm) {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004073 ObjCEmptyCacheVar = ObjCEmptyVtableVar = NULL;
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004074 ObjCABI = 2;
4075}
4076
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004077/* *** */
4078
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004079ObjCCommonTypesHelper::ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004080 : VMContext(cgm.getLLVMContext()), CGM(cgm) {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004081 CodeGen::CodeGenTypes &Types = CGM.getTypes();
4082 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004083
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004084 ShortTy = Types.ConvertType(Ctx.ShortTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004085 IntTy = Types.ConvertType(Ctx.IntTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004086 LongTy = Types.ConvertType(Ctx.LongTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00004087 LongLongTy = Types.ConvertType(Ctx.LongLongTy);
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00004088 Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004089
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004090 ObjectPtrTy = Types.ConvertType(Ctx.getObjCIdType());
Owen Anderson96e0fc72009-07-29 22:16:19 +00004091 PtrObjectPtrTy = llvm::PointerType::getUnqual(ObjectPtrTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004092 SelectorPtrTy = Types.ConvertType(Ctx.getObjCSelType());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004093
Mike Stumpf5408fe2009-05-16 07:57:57 +00004094 // FIXME: It would be nice to unify this with the opaque type, so that the IR
4095 // comes out a bit cleaner.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004096 const llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType());
Owen Anderson96e0fc72009-07-29 22:16:19 +00004097 ExternalProtocolPtrTy = llvm::PointerType::getUnqual(T);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004098
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004099 // I'm not sure I like this. The implicit coordination is a bit
4100 // gross. We should solve this in a reasonable fashion because this
4101 // is a pretty common task (match some runtime data structure with
4102 // an LLVM data structure).
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004103
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004104 // FIXME: This is leaked.
4105 // FIXME: Merge with rewriter code?
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004106
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004107 // struct _objc_super {
4108 // id self;
4109 // Class cls;
4110 // }
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004111 RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
Daniel Dunbardaa3ac52010-04-29 16:29:11 +00004112 Ctx.getTranslationUnitDecl(),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004113 SourceLocation(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004114 &Ctx.Idents.get("_objc_super"));
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004115 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004116 Ctx.getObjCIdType(), 0, 0, false));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004117 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004118 Ctx.getObjCClassType(), 0, 0, false));
Douglas Gregor838db382010-02-11 01:19:42 +00004119 RD->completeDefinition();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004120
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004121 SuperCTy = Ctx.getTagDeclType(RD);
4122 SuperPtrCTy = Ctx.getPointerType(SuperCTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004123
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004124 SuperTy = cast<llvm::StructType>(Types.ConvertType(SuperCTy));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004125 SuperPtrTy = llvm::PointerType::getUnqual(SuperTy);
4126
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004127 // struct _prop_t {
4128 // char *name;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004129 // char *attributes;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004130 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004131 PropertyTy = llvm::StructType::get(VMContext, Int8PtrTy, Int8PtrTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004132 CGM.getModule().addTypeName("struct._prop_t",
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004133 PropertyTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004134
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004135 // struct _prop_list_t {
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004136 // uint32_t entsize; // sizeof(struct _prop_t)
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004137 // uint32_t count_of_properties;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004138 // struct _prop_t prop_list[count_of_properties];
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004139 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004140 PropertyListTy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004141 IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004142 llvm::ArrayType::get(PropertyTy, 0),
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004143 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004144 CGM.getModule().addTypeName("struct._prop_list_t",
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004145 PropertyListTy);
4146 // struct _prop_list_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004147 PropertyListPtrTy = llvm::PointerType::getUnqual(PropertyListTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004148
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004149 // struct _objc_method {
4150 // SEL _cmd;
4151 // char *method_type;
4152 // char *_imp;
4153 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004154 MethodTy = llvm::StructType::get(VMContext, SelectorPtrTy,
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004155 Int8PtrTy,
4156 Int8PtrTy,
4157 NULL);
4158 CGM.getModule().addTypeName("struct._objc_method", MethodTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004159
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004160 // struct _objc_cache *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004161 CacheTy = llvm::OpaqueType::get(VMContext);
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004162 CGM.getModule().addTypeName("struct._objc_cache", CacheTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004163 CachePtrTy = llvm::PointerType::getUnqual(CacheTy);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004164}
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004165
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004166ObjCTypesHelper::ObjCTypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004167 : ObjCCommonTypesHelper(cgm) {
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004168 // struct _objc_method_description {
4169 // SEL name;
4170 // char *types;
4171 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004172 MethodDescriptionTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004173 llvm::StructType::get(VMContext, SelectorPtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004174 Int8PtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004175 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004176 CGM.getModule().addTypeName("struct._objc_method_description",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004177 MethodDescriptionTy);
4178
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004179 // struct _objc_method_description_list {
4180 // int count;
4181 // struct _objc_method_description[1];
4182 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004183 MethodDescriptionListTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004184 llvm::StructType::get(VMContext, IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004185 llvm::ArrayType::get(MethodDescriptionTy, 0),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004186 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004187 CGM.getModule().addTypeName("struct._objc_method_description_list",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004188 MethodDescriptionListTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004189
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004190 // struct _objc_method_description_list *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004191 MethodDescriptionListPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +00004192 llvm::PointerType::getUnqual(MethodDescriptionListTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004193
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004194 // Protocol description structures
4195
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004196 // struct _objc_protocol_extension {
4197 // uint32_t size; // sizeof(struct _objc_protocol_extension)
4198 // struct _objc_method_description_list *optional_instance_methods;
4199 // struct _objc_method_description_list *optional_class_methods;
4200 // struct _objc_property_list *instance_properties;
4201 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004202 ProtocolExtensionTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004203 llvm::StructType::get(VMContext, IntTy,
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004204 MethodDescriptionListPtrTy,
4205 MethodDescriptionListPtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004206 PropertyListPtrTy,
4207 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004208 CGM.getModule().addTypeName("struct._objc_protocol_extension",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004209 ProtocolExtensionTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004210
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004211 // struct _objc_protocol_extension *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004212 ProtocolExtensionPtrTy = llvm::PointerType::getUnqual(ProtocolExtensionTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004213
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004214 // Handle recursive construction of Protocol and ProtocolList types
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004215
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004216 llvm::PATypeHolder ProtocolTyHolder = llvm::OpaqueType::get(VMContext);
4217 llvm::PATypeHolder ProtocolListTyHolder = llvm::OpaqueType::get(VMContext);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004218
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004219 const llvm::Type *T =
Mike Stump1eb44332009-09-09 15:08:12 +00004220 llvm::StructType::get(VMContext,
Owen Anderson47a434f2009-08-05 23:18:46 +00004221 llvm::PointerType::getUnqual(ProtocolListTyHolder),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004222 LongTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004223 llvm::ArrayType::get(ProtocolTyHolder, 0),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004224 NULL);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004225 cast<llvm::OpaqueType>(ProtocolListTyHolder.get())->refineAbstractTypeTo(T);
4226
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004227 // struct _objc_protocol {
4228 // struct _objc_protocol_extension *isa;
4229 // char *protocol_name;
4230 // struct _objc_protocol **_objc_protocol_list;
4231 // struct _objc_method_description_list *instance_methods;
4232 // struct _objc_method_description_list *class_methods;
4233 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004234 T = llvm::StructType::get(VMContext, ProtocolExtensionPtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004235 Int8PtrTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004236 llvm::PointerType::getUnqual(ProtocolListTyHolder),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004237 MethodDescriptionListPtrTy,
4238 MethodDescriptionListPtrTy,
4239 NULL);
4240 cast<llvm::OpaqueType>(ProtocolTyHolder.get())->refineAbstractTypeTo(T);
4241
4242 ProtocolListTy = cast<llvm::StructType>(ProtocolListTyHolder.get());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004243 CGM.getModule().addTypeName("struct._objc_protocol_list",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004244 ProtocolListTy);
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004245 // struct _objc_protocol_list *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004246 ProtocolListPtrTy = llvm::PointerType::getUnqual(ProtocolListTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004247
4248 ProtocolTy = cast<llvm::StructType>(ProtocolTyHolder.get());
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004249 CGM.getModule().addTypeName("struct._objc_protocol", ProtocolTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004250 ProtocolPtrTy = llvm::PointerType::getUnqual(ProtocolTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004251
4252 // Class description structures
4253
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004254 // struct _objc_ivar {
4255 // char *ivar_name;
4256 // char *ivar_type;
4257 // int ivar_offset;
4258 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004259 IvarTy = llvm::StructType::get(VMContext, Int8PtrTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004260 Int8PtrTy,
4261 IntTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004262 NULL);
4263 CGM.getModule().addTypeName("struct._objc_ivar", IvarTy);
4264
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004265 // struct _objc_ivar_list *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004266 IvarListTy = llvm::OpaqueType::get(VMContext);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004267 CGM.getModule().addTypeName("struct._objc_ivar_list", IvarListTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004268 IvarListPtrTy = llvm::PointerType::getUnqual(IvarListTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004269
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004270 // struct _objc_method_list *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004271 MethodListTy = llvm::OpaqueType::get(VMContext);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004272 CGM.getModule().addTypeName("struct._objc_method_list", MethodListTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004273 MethodListPtrTy = llvm::PointerType::getUnqual(MethodListTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004274
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004275 // struct _objc_class_extension *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004276 ClassExtensionTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004277 llvm::StructType::get(VMContext, IntTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004278 Int8PtrTy,
4279 PropertyListPtrTy,
4280 NULL);
4281 CGM.getModule().addTypeName("struct._objc_class_extension", ClassExtensionTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004282 ClassExtensionPtrTy = llvm::PointerType::getUnqual(ClassExtensionTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004283
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004284 llvm::PATypeHolder ClassTyHolder = llvm::OpaqueType::get(VMContext);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004285
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004286 // struct _objc_class {
4287 // Class isa;
4288 // Class super_class;
4289 // char *name;
4290 // long version;
4291 // long info;
4292 // long instance_size;
4293 // struct _objc_ivar_list *ivars;
4294 // struct _objc_method_list *methods;
4295 // struct _objc_cache *cache;
4296 // struct _objc_protocol_list *protocols;
4297 // char *ivar_layout;
4298 // struct _objc_class_ext *ext;
4299 // };
Owen Anderson47a434f2009-08-05 23:18:46 +00004300 T = llvm::StructType::get(VMContext,
4301 llvm::PointerType::getUnqual(ClassTyHolder),
Owen Anderson96e0fc72009-07-29 22:16:19 +00004302 llvm::PointerType::getUnqual(ClassTyHolder),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004303 Int8PtrTy,
4304 LongTy,
4305 LongTy,
4306 LongTy,
4307 IvarListPtrTy,
4308 MethodListPtrTy,
4309 CachePtrTy,
4310 ProtocolListPtrTy,
4311 Int8PtrTy,
4312 ClassExtensionPtrTy,
4313 NULL);
4314 cast<llvm::OpaqueType>(ClassTyHolder.get())->refineAbstractTypeTo(T);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004315
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004316 ClassTy = cast<llvm::StructType>(ClassTyHolder.get());
4317 CGM.getModule().addTypeName("struct._objc_class", ClassTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004318 ClassPtrTy = llvm::PointerType::getUnqual(ClassTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004319
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004320 // struct _objc_category {
4321 // char *category_name;
4322 // char *class_name;
4323 // struct _objc_method_list *instance_method;
4324 // struct _objc_method_list *class_method;
4325 // uint32_t size; // sizeof(struct _objc_category)
4326 // struct _objc_property_list *instance_properties;// category's @property
4327 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004328 CategoryTy = llvm::StructType::get(VMContext, Int8PtrTy,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00004329 Int8PtrTy,
4330 MethodListPtrTy,
4331 MethodListPtrTy,
4332 ProtocolListPtrTy,
4333 IntTy,
4334 PropertyListPtrTy,
4335 NULL);
4336 CGM.getModule().addTypeName("struct._objc_category", CategoryTy);
4337
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004338 // Global metadata structures
4339
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004340 // struct _objc_symtab {
4341 // long sel_ref_cnt;
4342 // SEL *refs;
4343 // short cls_def_cnt;
4344 // short cat_def_cnt;
4345 // char *defs[cls_def_cnt + cat_def_cnt];
4346 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004347 SymtabTy = llvm::StructType::get(VMContext, LongTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004348 SelectorPtrTy,
4349 ShortTy,
4350 ShortTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004351 llvm::ArrayType::get(Int8PtrTy, 0),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004352 NULL);
4353 CGM.getModule().addTypeName("struct._objc_symtab", SymtabTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004354 SymtabPtrTy = llvm::PointerType::getUnqual(SymtabTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004355
Fariborz Jahaniandb286862009-01-22 00:37:21 +00004356 // struct _objc_module {
4357 // long version;
4358 // long size; // sizeof(struct _objc_module)
4359 // char *name;
4360 // struct _objc_symtab* symtab;
4361 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004362 ModuleTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004363 llvm::StructType::get(VMContext, LongTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004364 LongTy,
4365 Int8PtrTy,
4366 SymtabPtrTy,
4367 NULL);
4368 CGM.getModule().addTypeName("struct._objc_module", ModuleTy);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00004369
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004370
Mike Stumpf5408fe2009-05-16 07:57:57 +00004371 // FIXME: This is the size of the setjmp buffer and should be target
4372 // specific. 18 is what's used on 32-bit X86.
Anders Carlsson124526b2008-09-09 10:10:21 +00004373 uint64_t SetJmpBufferSize = 18;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004374
Anders Carlsson124526b2008-09-09 10:10:21 +00004375 // Exceptions
Owen Anderson96e0fc72009-07-29 22:16:19 +00004376 const llvm::Type *StackPtrTy = llvm::ArrayType::get(
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00004377 llvm::Type::getInt8PtrTy(VMContext), 4);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004378
4379 ExceptionDataTy =
Chris Lattner77b89b82010-06-27 07:15:29 +00004380 llvm::StructType::get(VMContext,
4381 llvm::ArrayType::get(llvm::Type::getInt32Ty(VMContext),
4382 SetJmpBufferSize),
Anders Carlsson124526b2008-09-09 10:10:21 +00004383 StackPtrTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004384 CGM.getModule().addTypeName("struct._objc_exception_data",
Anders Carlsson124526b2008-09-09 10:10:21 +00004385 ExceptionDataTy);
4386
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00004387}
4388
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004389ObjCNonFragileABITypesHelper::ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004390 : ObjCCommonTypesHelper(cgm) {
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004391 // struct _method_list_t {
4392 // uint32_t entsize; // sizeof(struct _objc_method)
4393 // uint32_t method_count;
4394 // struct _objc_method method_list[method_count];
4395 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004396 MethodListnfABITy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004397 IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004398 llvm::ArrayType::get(MethodTy, 0),
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004399 NULL);
4400 CGM.getModule().addTypeName("struct.__method_list_t",
4401 MethodListnfABITy);
4402 // struct method_list_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004403 MethodListnfABIPtrTy = llvm::PointerType::getUnqual(MethodListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004404
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004405 // struct _protocol_t {
4406 // id isa; // NULL
4407 // const char * const protocol_name;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004408 // const struct _protocol_list_t * protocol_list; // super protocols
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004409 // const struct method_list_t * const instance_methods;
4410 // const struct method_list_t * const class_methods;
4411 // const struct method_list_t *optionalInstanceMethods;
4412 // const struct method_list_t *optionalClassMethods;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004413 // const struct _prop_list_t * properties;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004414 // const uint32_t size; // sizeof(struct _protocol_t)
4415 // const uint32_t flags; // = 0
4416 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004417
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004418 // Holder for struct _protocol_list_t *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004419 llvm::PATypeHolder ProtocolListTyHolder = llvm::OpaqueType::get(VMContext);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004420
Owen Anderson47a434f2009-08-05 23:18:46 +00004421 ProtocolnfABITy = llvm::StructType::get(VMContext, ObjectPtrTy,
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004422 Int8PtrTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004423 llvm::PointerType::getUnqual(
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004424 ProtocolListTyHolder),
4425 MethodListnfABIPtrTy,
4426 MethodListnfABIPtrTy,
4427 MethodListnfABIPtrTy,
4428 MethodListnfABIPtrTy,
4429 PropertyListPtrTy,
4430 IntTy,
4431 IntTy,
4432 NULL);
4433 CGM.getModule().addTypeName("struct._protocol_t",
4434 ProtocolnfABITy);
Daniel Dunbar948e2582009-02-15 07:36:20 +00004435
4436 // struct _protocol_t*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004437 ProtocolnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004438
Fariborz Jahanianda320092009-01-29 19:24:30 +00004439 // struct _protocol_list_t {
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004440 // long protocol_count; // Note, this is 32/64 bit
Daniel Dunbar948e2582009-02-15 07:36:20 +00004441 // struct _protocol_t *[protocol_count];
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004442 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004443 ProtocolListnfABITy = llvm::StructType::get(VMContext, LongTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004444 llvm::ArrayType::get(
Daniel Dunbar948e2582009-02-15 07:36:20 +00004445 ProtocolnfABIPtrTy, 0),
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004446 NULL);
4447 CGM.getModule().addTypeName("struct._objc_protocol_list",
4448 ProtocolListnfABITy);
Daniel Dunbar948e2582009-02-15 07:36:20 +00004449 cast<llvm::OpaqueType>(ProtocolListTyHolder.get())->refineAbstractTypeTo(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004450 ProtocolListnfABITy);
4451
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004452 // struct _objc_protocol_list*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004453 ProtocolListnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004454
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004455 // struct _ivar_t {
4456 // unsigned long int *offset; // pointer to ivar offset location
4457 // char *name;
4458 // char *type;
4459 // uint32_t alignment;
4460 // uint32_t size;
4461 // }
Mike Stump1eb44332009-09-09 15:08:12 +00004462 IvarnfABITy = llvm::StructType::get(VMContext,
Owen Anderson47a434f2009-08-05 23:18:46 +00004463 llvm::PointerType::getUnqual(LongTy),
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004464 Int8PtrTy,
4465 Int8PtrTy,
4466 IntTy,
4467 IntTy,
4468 NULL);
4469 CGM.getModule().addTypeName("struct._ivar_t", IvarnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004470
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004471 // struct _ivar_list_t {
4472 // uint32 entsize; // sizeof(struct _ivar_t)
4473 // uint32 count;
4474 // struct _iver_t list[count];
4475 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004476 IvarListnfABITy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004477 IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004478 llvm::ArrayType::get(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004479 IvarnfABITy, 0),
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004480 NULL);
4481 CGM.getModule().addTypeName("struct._ivar_list_t", IvarListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004482
Owen Anderson96e0fc72009-07-29 22:16:19 +00004483 IvarListnfABIPtrTy = llvm::PointerType::getUnqual(IvarListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004484
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004485 // struct _class_ro_t {
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004486 // uint32_t const flags;
4487 // uint32_t const instanceStart;
4488 // uint32_t const instanceSize;
4489 // uint32_t const reserved; // only when building for 64bit targets
4490 // const uint8_t * const ivarLayout;
4491 // const char *const name;
4492 // const struct _method_list_t * const baseMethods;
4493 // const struct _objc_protocol_list *const baseProtocols;
4494 // const struct _ivar_list_t *const ivars;
4495 // const uint8_t * const weakIvarLayout;
4496 // const struct _prop_list_t * const properties;
4497 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004498
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004499 // FIXME. Add 'reserved' field in 64bit abi mode!
Owen Anderson47a434f2009-08-05 23:18:46 +00004500 ClassRonfABITy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004501 IntTy,
4502 IntTy,
4503 Int8PtrTy,
4504 Int8PtrTy,
4505 MethodListnfABIPtrTy,
4506 ProtocolListnfABIPtrTy,
4507 IvarListnfABIPtrTy,
4508 Int8PtrTy,
4509 PropertyListPtrTy,
4510 NULL);
4511 CGM.getModule().addTypeName("struct._class_ro_t",
4512 ClassRonfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004513
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004514 // ImpnfABITy - LLVM for id (*)(id, SEL, ...)
4515 std::vector<const llvm::Type*> Params;
4516 Params.push_back(ObjectPtrTy);
4517 Params.push_back(SelectorPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004518 ImpnfABITy = llvm::PointerType::getUnqual(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004519 llvm::FunctionType::get(ObjectPtrTy, Params, false));
4520
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004521 // struct _class_t {
4522 // struct _class_t *isa;
4523 // struct _class_t * const superclass;
4524 // void *cache;
4525 // IMP *vtable;
4526 // struct class_ro_t *ro;
4527 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004528
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004529 llvm::PATypeHolder ClassTyHolder = llvm::OpaqueType::get(VMContext);
Owen Andersona1cf15f2009-07-14 23:10:40 +00004530 ClassnfABITy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004531 llvm::StructType::get(VMContext,
4532 llvm::PointerType::getUnqual(ClassTyHolder),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004533 llvm::PointerType::getUnqual(ClassTyHolder),
4534 CachePtrTy,
4535 llvm::PointerType::getUnqual(ImpnfABITy),
4536 llvm::PointerType::getUnqual(ClassRonfABITy),
4537 NULL);
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004538 CGM.getModule().addTypeName("struct._class_t", ClassnfABITy);
4539
4540 cast<llvm::OpaqueType>(ClassTyHolder.get())->refineAbstractTypeTo(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004541 ClassnfABITy);
4542
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004543 // LLVM for struct _class_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004544 ClassnfABIPtrTy = llvm::PointerType::getUnqual(ClassnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004545
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004546 // struct _category_t {
4547 // const char * const name;
4548 // struct _class_t *const cls;
4549 // const struct _method_list_t * const instance_methods;
4550 // const struct _method_list_t * const class_methods;
4551 // const struct _protocol_list_t * const protocols;
4552 // const struct _prop_list_t * const properties;
Fariborz Jahanian45c2ba02009-01-23 17:41:22 +00004553 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004554 CategorynfABITy = llvm::StructType::get(VMContext, Int8PtrTy,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004555 ClassnfABIPtrTy,
Fariborz Jahanian45c2ba02009-01-23 17:41:22 +00004556 MethodListnfABIPtrTy,
4557 MethodListnfABIPtrTy,
4558 ProtocolListnfABIPtrTy,
4559 PropertyListPtrTy,
4560 NULL);
4561 CGM.getModule().addTypeName("struct._category_t", CategorynfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004562
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004563 // New types for nonfragile abi messaging.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004564 CodeGen::CodeGenTypes &Types = CGM.getTypes();
4565 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004566
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004567 // MessageRefTy - LLVM for:
4568 // struct _message_ref_t {
4569 // IMP messenger;
4570 // SEL name;
4571 // };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004572
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004573 // First the clang type for struct _message_ref_t
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004574 RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
Daniel Dunbardaa3ac52010-04-29 16:29:11 +00004575 Ctx.getTranslationUnitDecl(),
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004576 SourceLocation(),
4577 &Ctx.Idents.get("_message_ref_t"));
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004578 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004579 Ctx.VoidPtrTy, 0, 0, false));
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004580 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004581 Ctx.getObjCSelType(), 0, 0, false));
Douglas Gregor838db382010-02-11 01:19:42 +00004582 RD->completeDefinition();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004583
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004584 MessageRefCTy = Ctx.getTagDeclType(RD);
4585 MessageRefCPtrTy = Ctx.getPointerType(MessageRefCTy);
4586 MessageRefTy = cast<llvm::StructType>(Types.ConvertType(MessageRefCTy));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004587
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004588 // MessageRefPtrTy - LLVM for struct _message_ref_t*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004589 MessageRefPtrTy = llvm::PointerType::getUnqual(MessageRefTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004590
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004591 // SuperMessageRefTy - LLVM for:
4592 // struct _super_message_ref_t {
4593 // SUPER_IMP messenger;
4594 // SEL name;
4595 // };
Owen Anderson47a434f2009-08-05 23:18:46 +00004596 SuperMessageRefTy = llvm::StructType::get(VMContext, ImpnfABITy,
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004597 SelectorPtrTy,
4598 NULL);
4599 CGM.getModule().addTypeName("struct._super_message_ref_t", SuperMessageRefTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004600
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004601 // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t*
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004602 SuperMessageRefPtrTy = llvm::PointerType::getUnqual(SuperMessageRefTy);
4603
Daniel Dunbare588b992009-03-01 04:46:24 +00004604
4605 // struct objc_typeinfo {
4606 // const void** vtable; // objc_ehtype_vtable + 2
4607 // const char* name; // c++ typeinfo string
4608 // Class cls;
4609 // };
Owen Anderson47a434f2009-08-05 23:18:46 +00004610 EHTypeTy = llvm::StructType::get(VMContext,
4611 llvm::PointerType::getUnqual(Int8PtrTy),
Daniel Dunbare588b992009-03-01 04:46:24 +00004612 Int8PtrTy,
4613 ClassnfABIPtrTy,
4614 NULL);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00004615 CGM.getModule().addTypeName("struct._objc_typeinfo", EHTypeTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004616 EHTypePtrTy = llvm::PointerType::getUnqual(EHTypeTy);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00004617}
4618
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004619llvm::Function *CGObjCNonFragileABIMac::ModuleInitFunction() {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004620 FinishNonFragileABIModule();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004621
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004622 return NULL;
4623}
4624
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004625void CGObjCNonFragileABIMac::AddModuleClassList(const
4626 std::vector<llvm::GlobalValue*>
4627 &Container,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004628 const char *SymbolName,
4629 const char *SectionName) {
4630 unsigned NumClasses = Container.size();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004631
Daniel Dunbar463b8762009-05-15 21:48:48 +00004632 if (!NumClasses)
4633 return;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004634
Daniel Dunbar463b8762009-05-15 21:48:48 +00004635 std::vector<llvm::Constant*> Symbols(NumClasses);
4636 for (unsigned i=0; i<NumClasses; i++)
Owen Anderson3c4972d2009-07-29 18:54:39 +00004637 Symbols[i] = llvm::ConstantExpr::getBitCast(Container[i],
Daniel Dunbar463b8762009-05-15 21:48:48 +00004638 ObjCTypes.Int8PtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004639 llvm::Constant* Init =
Owen Anderson96e0fc72009-07-29 22:16:19 +00004640 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004641 NumClasses),
4642 Symbols);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004643
Daniel Dunbar463b8762009-05-15 21:48:48 +00004644 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00004645 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004646 llvm::GlobalValue::InternalLinkage,
4647 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00004648 SymbolName);
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004649 GV->setAlignment(CGM.getTargetData().getABITypeAlignment(Init->getType()));
Daniel Dunbar463b8762009-05-15 21:48:48 +00004650 GV->setSection(SectionName);
Chris Lattnerad64e022009-07-17 23:57:13 +00004651 CGM.AddUsedGlobal(GV);
Daniel Dunbar463b8762009-05-15 21:48:48 +00004652}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004653
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004654void CGObjCNonFragileABIMac::FinishNonFragileABIModule() {
4655 // nonfragile abi has no module definition.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004656
Daniel Dunbar463b8762009-05-15 21:48:48 +00004657 // Build list of all implemented class addresses in array
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004658 // L_OBJC_LABEL_CLASS_$.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004659 AddModuleClassList(DefinedClasses,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004660 "\01L_OBJC_LABEL_CLASS_$",
4661 "__DATA, __objc_classlist, regular, no_dead_strip");
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004662
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004663 for (unsigned i = 0; i < DefinedClasses.size(); i++) {
4664 llvm::GlobalValue *IMPLGV = DefinedClasses[i];
4665 if (IMPLGV->getLinkage() != llvm::GlobalValue::ExternalWeakLinkage)
4666 continue;
4667 IMPLGV->setLinkage(llvm::GlobalValue::ExternalLinkage);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004668 }
4669
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00004670 for (unsigned i = 0; i < DefinedMetaClasses.size(); i++) {
4671 llvm::GlobalValue *IMPLGV = DefinedMetaClasses[i];
4672 if (IMPLGV->getLinkage() != llvm::GlobalValue::ExternalWeakLinkage)
4673 continue;
4674 IMPLGV->setLinkage(llvm::GlobalValue::ExternalLinkage);
4675 }
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004676
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004677 AddModuleClassList(DefinedNonLazyClasses,
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004678 "\01L_OBJC_LABEL_NONLAZY_CLASS_$",
4679 "__DATA, __objc_nlclslist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004680
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004681 // Build list of all implemented category addresses in array
4682 // L_OBJC_LABEL_CATEGORY_$.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004683 AddModuleClassList(DefinedCategories,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004684 "\01L_OBJC_LABEL_CATEGORY_$",
4685 "__DATA, __objc_catlist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004686 AddModuleClassList(DefinedNonLazyCategories,
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004687 "\01L_OBJC_LABEL_NONLAZY_CATEGORY_$",
4688 "__DATA, __objc_nlcatlist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004689
Daniel Dunbarfce176b2010-04-25 20:39:01 +00004690 EmitImageInfo();
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004691}
4692
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004693/// LegacyDispatchedSelector - Returns true if SEL is not in the list of
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004694/// NonLegacyDispatchMethods; false otherwise. What this means is that
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004695/// except for the 19 selectors in the list, we generate 32bit-style
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004696/// message dispatch call for all the rest.
4697///
4698bool CGObjCNonFragileABIMac::LegacyDispatchedSelector(Selector Sel) {
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004699 switch (CGM.getCodeGenOpts().getObjCDispatchMethod()) {
4700 default:
4701 assert(0 && "Invalid dispatch method!");
4702 case CodeGenOptions::Legacy:
Daniel Dunbar2feefe82010-02-01 21:07:33 +00004703 return true;
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004704 case CodeGenOptions::NonLegacy:
Fariborz Jahanian776dbf92010-04-19 17:53:30 +00004705 return false;
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004706 case CodeGenOptions::Mixed:
4707 break;
4708 }
4709
4710 // If so, see whether this selector is in the white-list of things which must
4711 // use the new dispatch convention. We lazily build a dense set for this.
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004712 if (NonLegacyDispatchMethods.empty()) {
4713 NonLegacyDispatchMethods.insert(GetNullarySelector("alloc"));
4714 NonLegacyDispatchMethods.insert(GetNullarySelector("class"));
4715 NonLegacyDispatchMethods.insert(GetNullarySelector("self"));
4716 NonLegacyDispatchMethods.insert(GetNullarySelector("isFlipped"));
4717 NonLegacyDispatchMethods.insert(GetNullarySelector("length"));
4718 NonLegacyDispatchMethods.insert(GetNullarySelector("count"));
4719 NonLegacyDispatchMethods.insert(GetNullarySelector("retain"));
4720 NonLegacyDispatchMethods.insert(GetNullarySelector("release"));
4721 NonLegacyDispatchMethods.insert(GetNullarySelector("autorelease"));
4722 NonLegacyDispatchMethods.insert(GetNullarySelector("hash"));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004723
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004724 NonLegacyDispatchMethods.insert(GetUnarySelector("allocWithZone"));
4725 NonLegacyDispatchMethods.insert(GetUnarySelector("isKindOfClass"));
4726 NonLegacyDispatchMethods.insert(GetUnarySelector("respondsToSelector"));
4727 NonLegacyDispatchMethods.insert(GetUnarySelector("objectForKey"));
4728 NonLegacyDispatchMethods.insert(GetUnarySelector("objectAtIndex"));
4729 NonLegacyDispatchMethods.insert(GetUnarySelector("isEqualToString"));
4730 NonLegacyDispatchMethods.insert(GetUnarySelector("isEqual"));
4731 NonLegacyDispatchMethods.insert(GetUnarySelector("addObject"));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004732 // "countByEnumeratingWithState:objects:count"
Fariborz Jahanianbe53be42009-05-13 16:19:02 +00004733 IdentifierInfo *KeyIdents[] = {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004734 &CGM.getContext().Idents.get("countByEnumeratingWithState"),
4735 &CGM.getContext().Idents.get("objects"),
4736 &CGM.getContext().Idents.get("count")
Fariborz Jahanianbe53be42009-05-13 16:19:02 +00004737 };
4738 NonLegacyDispatchMethods.insert(
4739 CGM.getContext().Selectors.getSelector(3, KeyIdents));
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004740 }
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004741
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004742 return (NonLegacyDispatchMethods.count(Sel) == 0);
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004743}
4744
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004745// Metadata flags
4746enum MetaDataDlags {
4747 CLS = 0x0,
4748 CLS_META = 0x1,
4749 CLS_ROOT = 0x2,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004750 OBJC2_CLS_HIDDEN = 0x10,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004751 CLS_EXCEPTION = 0x20
4752};
4753/// BuildClassRoTInitializer - generate meta-data for:
4754/// struct _class_ro_t {
4755/// uint32_t const flags;
4756/// uint32_t const instanceStart;
4757/// uint32_t const instanceSize;
4758/// uint32_t const reserved; // only when building for 64bit targets
4759/// const uint8_t * const ivarLayout;
4760/// const char *const name;
4761/// const struct _method_list_t * const baseMethods;
Fariborz Jahanianda320092009-01-29 19:24:30 +00004762/// const struct _protocol_list_t *const baseProtocols;
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004763/// const struct _ivar_list_t *const ivars;
4764/// const uint8_t * const weakIvarLayout;
4765/// const struct _prop_list_t * const properties;
4766/// }
4767///
4768llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassRoTInitializer(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004769 unsigned flags,
4770 unsigned InstanceStart,
4771 unsigned InstanceSize,
4772 const ObjCImplementationDecl *ID) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004773 std::string ClassName = ID->getNameAsString();
4774 std::vector<llvm::Constant*> Values(10); // 11 for 64bit targets!
Owen Anderson4a28d5d2009-07-24 23:12:58 +00004775 Values[ 0] = llvm::ConstantInt::get(ObjCTypes.IntTy, flags);
4776 Values[ 1] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceStart);
4777 Values[ 2] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceSize);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004778 // FIXME. For 64bit targets add 0 here.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004779 Values[ 3] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4780 : BuildIvarLayout(ID, true);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004781 Values[ 4] = GetClassName(ID->getIdentifier());
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004782 // const struct _method_list_t * const baseMethods;
4783 std::vector<llvm::Constant*> Methods;
4784 std::string MethodListName("\01l_OBJC_$_");
4785 if (flags & CLS_META) {
4786 MethodListName += "CLASS_METHODS_" + ID->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004787 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004788 i = ID->classmeth_begin(), e = ID->classmeth_end(); i != e; ++i) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004789 // Class methods should always be defined.
4790 Methods.push_back(GetMethodConstant(*i));
4791 }
4792 } else {
4793 MethodListName += "INSTANCE_METHODS_" + ID->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004794 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004795 i = ID->instmeth_begin(), e = ID->instmeth_end(); i != e; ++i) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004796 // Instance methods should always be defined.
4797 Methods.push_back(GetMethodConstant(*i));
4798 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004799 for (ObjCImplementationDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004800 i = ID->propimpl_begin(), e = ID->propimpl_end(); i != e; ++i) {
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004801 ObjCPropertyImplDecl *PID = *i;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004802
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004803 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){
4804 ObjCPropertyDecl *PD = PID->getPropertyDecl();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004805
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004806 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
4807 if (llvm::Constant *C = GetMethodConstant(MD))
4808 Methods.push_back(C);
4809 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
4810 if (llvm::Constant *C = GetMethodConstant(MD))
4811 Methods.push_back(C);
4812 }
4813 }
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004814 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004815 Values[ 5] = EmitMethodList(MethodListName,
4816 "__DATA, __objc_const", Methods);
4817
Fariborz Jahanianda320092009-01-29 19:24:30 +00004818 const ObjCInterfaceDecl *OID = ID->getClassInterface();
4819 assert(OID && "CGObjCNonFragileABIMac::BuildClassRoTInitializer");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004820 Values[ 6] = EmitProtocolList("\01l_OBJC_CLASS_PROTOCOLS_$_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00004821 + OID->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00004822 OID->protocol_begin(),
4823 OID->protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004824
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004825 if (flags & CLS_META)
Owen Andersonc9c88b42009-07-31 20:28:54 +00004826 Values[ 7] = llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004827 else
4828 Values[ 7] = EmitIvarList(ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004829 Values[ 8] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4830 : BuildIvarLayout(ID, false);
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00004831 if (flags & CLS_META)
Owen Andersonc9c88b42009-07-31 20:28:54 +00004832 Values[ 9] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00004833 else
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00004834 Values[ 9] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getName(),
4835 ID, ID->getClassInterface(), ObjCTypes);
Owen Anderson08e25242009-07-27 22:29:56 +00004836 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassRonfABITy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004837 Values);
4838 llvm::GlobalVariable *CLASS_RO_GV =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004839 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassRonfABITy, false,
4840 llvm::GlobalValue::InternalLinkage,
4841 Init,
4842 (flags & CLS_META) ?
4843 std::string("\01l_OBJC_METACLASS_RO_$_")+ClassName :
4844 std::string("\01l_OBJC_CLASS_RO_$_")+ClassName);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004845 CLASS_RO_GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004846 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ClassRonfABITy));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004847 CLASS_RO_GV->setSection("__DATA, __objc_const");
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004848 return CLASS_RO_GV;
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004849
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004850}
4851
4852/// BuildClassMetaData - This routine defines that to-level meta-data
4853/// for the given ClassName for:
4854/// struct _class_t {
4855/// struct _class_t *isa;
4856/// struct _class_t * const superclass;
4857/// void *cache;
4858/// IMP *vtable;
4859/// struct class_ro_t *ro;
4860/// }
4861///
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004862llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassMetaData(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004863 std::string &ClassName,
4864 llvm::Constant *IsAGV,
4865 llvm::Constant *SuperClassGV,
4866 llvm::Constant *ClassRoGV,
4867 bool HiddenVisibility) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004868 std::vector<llvm::Constant*> Values(5);
4869 Values[0] = IsAGV;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004870 Values[1] = SuperClassGV;
4871 if (!Values[1])
4872 Values[1] = llvm::Constant::getNullValue(ObjCTypes.ClassnfABIPtrTy);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004873 Values[2] = ObjCEmptyCacheVar; // &ObjCEmptyCacheVar
4874 Values[3] = ObjCEmptyVtableVar; // &ObjCEmptyVtableVar
4875 Values[4] = ClassRoGV; // &CLASS_RO_GV
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004876 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassnfABITy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004877 Values);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004878 llvm::GlobalVariable *GV = GetClassGlobal(ClassName);
4879 GV->setInitializer(Init);
Fariborz Jahaniandd0db2a2009-01-31 01:07:39 +00004880 GV->setSection("__DATA, __objc_data");
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004881 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004882 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ClassnfABITy));
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004883 if (HiddenVisibility)
4884 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004885 return GV;
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004886}
4887
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004888bool
Fariborz Jahanianecfbdcb2009-05-21 01:03:45 +00004889CGObjCNonFragileABIMac::ImplementationIsNonLazy(const ObjCImplDecl *OD) const {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004890 return OD->getClassMethod(GetNullarySelector("load")) != 0;
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004891}
4892
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00004893void CGObjCNonFragileABIMac::GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbarb02532a2009-04-19 23:41:48 +00004894 uint32_t &InstanceStart,
4895 uint32_t &InstanceSize) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004896 const ASTRecordLayout &RL =
Daniel Dunbarb4c79e02009-05-04 21:26:30 +00004897 CGM.getContext().getASTObjCImplementationLayout(OID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004898
Daniel Dunbar6e8575b2009-05-04 23:23:09 +00004899 // InstanceSize is really instance end.
Anders Carlsson243a6852009-07-18 21:26:44 +00004900 InstanceSize = llvm::RoundUpToAlignment(RL.getDataSize(), 8) / 8;
Daniel Dunbar6e8575b2009-05-04 23:23:09 +00004901
4902 // If there are no fields, the start is the same as the end.
4903 if (!RL.getFieldCount())
4904 InstanceStart = InstanceSize;
4905 else
4906 InstanceStart = RL.getFieldOffset(0) / 8;
Daniel Dunbarb02532a2009-04-19 23:41:48 +00004907}
4908
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004909void CGObjCNonFragileABIMac::GenerateClass(const ObjCImplementationDecl *ID) {
4910 std::string ClassName = ID->getNameAsString();
4911 if (!ObjCEmptyCacheVar) {
4912 ObjCEmptyCacheVar = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004913 CGM.getModule(),
4914 ObjCTypes.CacheTy,
4915 false,
4916 llvm::GlobalValue::ExternalLinkage,
4917 0,
4918 "_objc_empty_cache");
4919
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004920 ObjCEmptyVtableVar = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004921 CGM.getModule(),
4922 ObjCTypes.ImpnfABITy,
4923 false,
4924 llvm::GlobalValue::ExternalLinkage,
4925 0,
4926 "_objc_empty_vtable");
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004927 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004928 assert(ID->getClassInterface() &&
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004929 "CGObjCNonFragileABIMac::GenerateClass - class is 0");
Daniel Dunbar6c1aac82009-04-20 20:18:54 +00004930 // FIXME: Is this correct (that meta class size is never computed)?
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004931 uint32_t InstanceStart =
Duncan Sands9408c452009-05-09 07:08:47 +00004932 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassnfABITy);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004933 uint32_t InstanceSize = InstanceStart;
4934 uint32_t flags = CLS_META;
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004935 std::string ObjCMetaClassName(getMetaclassSymbolPrefix());
4936 std::string ObjCClassName(getClassSymbolPrefix());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004937
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004938 llvm::GlobalVariable *SuperClassGV, *IsAGV;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004939
4940 bool classIsHidden =
Daniel Dunbar04d40782009-04-14 06:00:08 +00004941 CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden;
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004942 if (classIsHidden)
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004943 flags |= OBJC2_CLS_HIDDEN;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00004944 if (ID->getNumIvarInitializers())
4945 flags |= eClassFlags_ABI2_HasCXXStructors;
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004946 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004947 // class is root
4948 flags |= CLS_ROOT;
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004949 SuperClassGV = GetClassGlobal(ObjCClassName + ClassName);
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004950 IsAGV = GetClassGlobal(ObjCMetaClassName + ClassName);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004951 } else {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004952 // Has a root. Current class is not a root.
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004953 const ObjCInterfaceDecl *Root = ID->getClassInterface();
4954 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
4955 Root = Super;
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004956 IsAGV = GetClassGlobal(ObjCMetaClassName + Root->getNameAsString());
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00004957 if (Root->hasAttr<WeakImportAttr>())
4958 IsAGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004959 // work on super class metadata symbol.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004960 std::string SuperClassName =
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00004961 ObjCMetaClassName +
4962 ID->getClassInterface()->getSuperClass()->getNameAsString();
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004963 SuperClassGV = GetClassGlobal(SuperClassName);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004964 if (ID->getClassInterface()->getSuperClass()->hasAttr<WeakImportAttr>())
4965 SuperClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004966 }
4967 llvm::GlobalVariable *CLASS_RO_GV = BuildClassRoTInitializer(flags,
4968 InstanceStart,
4969 InstanceSize,ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004970 std::string TClassName = ObjCMetaClassName + ClassName;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004971 llvm::GlobalVariable *MetaTClass =
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004972 BuildClassMetaData(TClassName, IsAGV, SuperClassGV, CLASS_RO_GV,
4973 classIsHidden);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004974 DefinedMetaClasses.push_back(MetaTClass);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004975
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004976 // Metadata for the class
4977 flags = CLS;
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004978 if (classIsHidden)
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004979 flags |= OBJC2_CLS_HIDDEN;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00004980 if (ID->getNumIvarInitializers())
4981 flags |= eClassFlags_ABI2_HasCXXStructors;
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00004982
Douglas Gregor68584ed2009-06-18 16:11:24 +00004983 if (hasObjCExceptionAttribute(CGM.getContext(), ID->getClassInterface()))
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00004984 flags |= CLS_EXCEPTION;
4985
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004986 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004987 flags |= CLS_ROOT;
4988 SuperClassGV = 0;
Chris Lattnerb7b58b12009-04-19 06:02:28 +00004989 } else {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004990 // Has a root. Current class is not a root.
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004991 std::string RootClassName =
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004992 ID->getClassInterface()->getSuperClass()->getNameAsString();
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004993 SuperClassGV = GetClassGlobal(ObjCClassName + RootClassName);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004994 if (ID->getClassInterface()->getSuperClass()->hasAttr<WeakImportAttr>())
4995 SuperClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004996 }
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00004997 GetClassSizeInfo(ID, InstanceStart, InstanceSize);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004998 CLASS_RO_GV = BuildClassRoTInitializer(flags,
Fariborz Jahanianf6a077e2009-01-24 23:43:01 +00004999 InstanceStart,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005000 InstanceSize,
Fariborz Jahanianf6a077e2009-01-24 23:43:01 +00005001 ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005002
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005003 TClassName = ObjCClassName + ClassName;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005004 llvm::GlobalVariable *ClassMD =
Fariborz Jahaniancf555162009-01-31 00:59:10 +00005005 BuildClassMetaData(TClassName, MetaTClass, SuperClassGV, CLASS_RO_GV,
5006 classIsHidden);
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00005007 DefinedClasses.push_back(ClassMD);
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005008
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005009 // Determine if this class is also "non-lazy".
5010 if (ImplementationIsNonLazy(ID))
5011 DefinedNonLazyClasses.push_back(ClassMD);
5012
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005013 // Force the definition of the EHType if necessary.
5014 if (flags & CLS_EXCEPTION)
5015 GetInterfaceEHType(ID->getClassInterface(), true);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00005016}
5017
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005018/// GenerateProtocolRef - This routine is called to generate code for
5019/// a protocol reference expression; as in:
5020/// @code
5021/// @protocol(Proto1);
5022/// @endcode
5023/// It generates a weak reference to l_OBJC_PROTOCOL_REFERENCE_$_Proto1
5024/// which will hold address of the protocol meta-data.
5025///
5026llvm::Value *CGObjCNonFragileABIMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005027 const ObjCProtocolDecl *PD) {
5028
Fariborz Jahanian960cd062009-04-10 18:47:34 +00005029 // This routine is called for @protocol only. So, we must build definition
5030 // of protocol's meta-data (not a reference to it!)
5031 //
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005032 llvm::Constant *Init =
5033 llvm::ConstantExpr::getBitCast(GetOrEmitProtocol(PD),
5034 ObjCTypes.ExternalProtocolPtrTy);
5035
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005036 std::string ProtocolName("\01l_OBJC_PROTOCOL_REFERENCE_$_");
5037 ProtocolName += PD->getNameAsCString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005038
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005039 llvm::GlobalVariable *PTGV = CGM.getModule().getGlobalVariable(ProtocolName);
5040 if (PTGV)
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005041 return Builder.CreateLoad(PTGV, "tmp");
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005042 PTGV = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005043 CGM.getModule(),
5044 Init->getType(), false,
5045 llvm::GlobalValue::WeakAnyLinkage,
5046 Init,
5047 ProtocolName);
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005048 PTGV->setSection("__DATA, __objc_protorefs, coalesced, no_dead_strip");
5049 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005050 CGM.AddUsedGlobal(PTGV);
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005051 return Builder.CreateLoad(PTGV, "tmp");
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005052}
5053
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005054/// GenerateCategory - Build metadata for a category implementation.
5055/// struct _category_t {
5056/// const char * const name;
5057/// struct _class_t *const cls;
5058/// const struct _method_list_t * const instance_methods;
5059/// const struct _method_list_t * const class_methods;
5060/// const struct _protocol_list_t * const protocols;
5061/// const struct _prop_list_t * const properties;
5062/// }
5063///
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005064void CGObjCNonFragileABIMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005065 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005066 const char *Prefix = "\01l_OBJC_$_CATEGORY_";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005067 std::string ExtCatName(Prefix + Interface->getNameAsString()+
5068 "_$_" + OCD->getNameAsString());
5069 std::string ExtClassName(getClassSymbolPrefix() +
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005070 Interface->getNameAsString());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005071
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005072 std::vector<llvm::Constant*> Values(6);
5073 Values[0] = GetClassName(OCD->getIdentifier());
5074 // meta-class entry symbol
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005075 llvm::GlobalVariable *ClassGV = GetClassGlobal(ExtClassName);
Fariborz Jahanian2cdcc4c2009-11-17 22:02:21 +00005076 if (Interface->hasAttr<WeakImportAttr>())
5077 ClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
5078
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005079 Values[1] = ClassGV;
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005080 std::vector<llvm::Constant*> Methods;
5081 std::string MethodListName(Prefix);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005082 MethodListName += "INSTANCE_METHODS_" + Interface->getNameAsString() +
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005083 "_$_" + OCD->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005084
5085 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005086 i = OCD->instmeth_begin(), e = OCD->instmeth_end(); i != e; ++i) {
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005087 // Instance methods should always be defined.
5088 Methods.push_back(GetMethodConstant(*i));
5089 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005090
5091 Values[2] = EmitMethodList(MethodListName,
5092 "__DATA, __objc_const",
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005093 Methods);
5094
5095 MethodListName = Prefix;
5096 MethodListName += "CLASS_METHODS_" + Interface->getNameAsString() + "_$_" +
5097 OCD->getNameAsString();
5098 Methods.clear();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005099 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005100 i = OCD->classmeth_begin(), e = OCD->classmeth_end(); i != e; ++i) {
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005101 // Class methods should always be defined.
5102 Methods.push_back(GetMethodConstant(*i));
5103 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005104
5105 Values[3] = EmitMethodList(MethodListName,
5106 "__DATA, __objc_const",
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005107 Methods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005108 const ObjCCategoryDecl *Category =
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00005109 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005110 if (Category) {
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005111 llvm::SmallString<256> ExtName;
5112 llvm::raw_svector_ostream(ExtName) << Interface->getName() << "_$_"
5113 << OCD->getName();
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005114 Values[4] = EmitProtocolList("\01l_OBJC_CATEGORY_PROTOCOLS_$_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005115 + Interface->getName() + "_$_"
5116 + Category->getName(),
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005117 Category->protocol_begin(),
5118 Category->protocol_end());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005119 Values[5] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(),
5120 OCD, Category, ObjCTypes);
Mike Stumpb3589f42009-07-30 22:28:39 +00005121 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00005122 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
5123 Values[5] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005124 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005125
5126 llvm::Constant *Init =
5127 llvm::ConstantStruct::get(ObjCTypes.CategorynfABITy,
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005128 Values);
5129 llvm::GlobalVariable *GCATV
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005130 = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.CategorynfABITy,
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005131 false,
5132 llvm::GlobalValue::InternalLinkage,
5133 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005134 ExtCatName);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005135 GCATV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005136 CGM.getTargetData().getABITypeAlignment(ObjCTypes.CategorynfABITy));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005137 GCATV->setSection("__DATA, __objc_const");
Chris Lattnerad64e022009-07-17 23:57:13 +00005138 CGM.AddUsedGlobal(GCATV);
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005139 DefinedCategories.push_back(GCATV);
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005140
5141 // Determine if this category is also "non-lazy".
5142 if (ImplementationIsNonLazy(OCD))
5143 DefinedNonLazyCategories.push_back(GCATV);
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005144}
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005145
5146/// GetMethodConstant - Return a struct objc_method constant for the
5147/// given method if it has been defined. The result is null if the
5148/// method has not been defined. The return value has type MethodPtrTy.
5149llvm::Constant *CGObjCNonFragileABIMac::GetMethodConstant(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005150 const ObjCMethodDecl *MD) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005151 // FIXME: Use DenseMap::lookup
5152 llvm::Function *Fn = MethodDefinitions[MD];
5153 if (!Fn)
5154 return 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005155
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005156 std::vector<llvm::Constant*> Method(3);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005157 Method[0] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00005158 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005159 ObjCTypes.SelectorPtrTy);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005160 Method[1] = GetMethodVarType(MD);
Owen Anderson3c4972d2009-07-29 18:54:39 +00005161 Method[2] = llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00005162 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005163}
5164
5165/// EmitMethodList - Build meta-data for method declarations
5166/// struct _method_list_t {
5167/// uint32_t entsize; // sizeof(struct _objc_method)
5168/// uint32_t method_count;
5169/// struct _objc_method method_list[method_count];
5170/// }
5171///
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005172llvm::Constant *CGObjCNonFragileABIMac::EmitMethodList(llvm::Twine Name,
5173 const char *Section,
5174 const ConstantVector &Methods) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005175 // Return null for empty list.
5176 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00005177 return llvm::Constant::getNullValue(ObjCTypes.MethodListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005178
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005179 std::vector<llvm::Constant*> Values(3);
5180 // sizeof(struct _objc_method)
Duncan Sands9408c452009-05-09 07:08:47 +00005181 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.MethodTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005182 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005183 // method_count
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005184 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00005185 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005186 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00005187 Values[2] = llvm::ConstantArray::get(AT, Methods);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005188 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005189
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005190 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005191 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005192 llvm::GlobalValue::InternalLinkage,
5193 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005194 Name);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005195 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005196 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005197 GV->setSection(Section);
Chris Lattnerad64e022009-07-17 23:57:13 +00005198 CGM.AddUsedGlobal(GV);
Owen Anderson3c4972d2009-07-29 18:54:39 +00005199 return llvm::ConstantExpr::getBitCast(GV,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005200 ObjCTypes.MethodListnfABIPtrTy);
5201}
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005202
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005203/// ObjCIvarOffsetVariable - Returns the ivar offset variable for
5204/// the given ivar.
Daniel Dunbare83be122010-04-02 21:14:02 +00005205llvm::GlobalVariable *
5206CGObjCNonFragileABIMac::ObjCIvarOffsetVariable(const ObjCInterfaceDecl *ID,
5207 const ObjCIvarDecl *Ivar) {
5208 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
Daniel Dunbara81419d2009-05-05 00:36:57 +00005209 std::string Name = "OBJC_IVAR_$_" + Container->getNameAsString() +
Douglas Gregor6ab35242009-04-09 21:40:53 +00005210 '.' + Ivar->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005211 llvm::GlobalVariable *IvarOffsetGV =
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005212 CGM.getModule().getGlobalVariable(Name);
5213 if (!IvarOffsetGV)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005214 IvarOffsetGV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005215 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.LongTy,
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005216 false,
5217 llvm::GlobalValue::ExternalLinkage,
5218 0,
Owen Anderson1c431b32009-07-08 19:05:04 +00005219 Name);
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005220 return IvarOffsetGV;
5221}
5222
Daniel Dunbare83be122010-04-02 21:14:02 +00005223llvm::Constant *
5224CGObjCNonFragileABIMac::EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
5225 const ObjCIvarDecl *Ivar,
5226 unsigned long int Offset) {
Daniel Dunbar737c5022009-04-19 00:44:02 +00005227 llvm::GlobalVariable *IvarOffsetGV = ObjCIvarOffsetVariable(ID, Ivar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005228 IvarOffsetGV->setInitializer(llvm::ConstantInt::get(ObjCTypes.LongTy,
Daniel Dunbar737c5022009-04-19 00:44:02 +00005229 Offset));
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005230 IvarOffsetGV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005231 CGM.getTargetData().getABITypeAlignment(ObjCTypes.LongTy));
Daniel Dunbar737c5022009-04-19 00:44:02 +00005232
Mike Stumpf5408fe2009-05-16 07:57:57 +00005233 // FIXME: This matches gcc, but shouldn't the visibility be set on the use as
5234 // well (i.e., in ObjCIvarOffsetVariable).
Daniel Dunbar737c5022009-04-19 00:44:02 +00005235 if (Ivar->getAccessControl() == ObjCIvarDecl::Private ||
5236 Ivar->getAccessControl() == ObjCIvarDecl::Package ||
5237 CGM.getDeclVisibilityMode(ID) == LangOptions::Hidden)
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00005238 IvarOffsetGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar04d40782009-04-14 06:00:08 +00005239 else
Fariborz Jahanian77c9fd22009-04-06 18:30:00 +00005240 IvarOffsetGV->setVisibility(llvm::GlobalValue::DefaultVisibility);
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005241 IvarOffsetGV->setSection("__DATA, __objc_const");
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005242 return IvarOffsetGV;
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005243}
5244
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005245/// EmitIvarList - Emit the ivar list for the given
Daniel Dunbar11394522009-04-18 08:51:00 +00005246/// implementation. The return value has type
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005247/// IvarListnfABIPtrTy.
5248/// struct _ivar_t {
5249/// unsigned long int *offset; // pointer to ivar offset location
5250/// char *name;
5251/// char *type;
5252/// uint32_t alignment;
5253/// uint32_t size;
5254/// }
5255/// struct _ivar_list_t {
5256/// uint32 entsize; // sizeof(struct _ivar_t)
5257/// uint32 count;
5258/// struct _iver_t list[count];
5259/// }
5260///
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00005261
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005262llvm::Constant *CGObjCNonFragileABIMac::EmitIvarList(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005263 const ObjCImplementationDecl *ID) {
5264
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005265 std::vector<llvm::Constant*> Ivars, Ivar(5);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005266
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005267 const ObjCInterfaceDecl *OID = ID->getClassInterface();
5268 assert(OID && "CGObjCNonFragileABIMac::EmitIvarList - null interface");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005269
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005270 // FIXME. Consolidate this with similar code in GenerateClass.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005271
Daniel Dunbar91636d62009-04-20 00:33:43 +00005272 // Collect declared and synthesized ivars in a small vector.
Fariborz Jahanian18191882009-03-31 18:11:23 +00005273 llvm::SmallVector<ObjCIvarDecl*, 16> OIvars;
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00005274 CGM.getContext().ShallowCollectObjCIvars(OID, OIvars);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005275
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00005276 for (unsigned i = 0, e = OIvars.size(); i != e; ++i) {
5277 ObjCIvarDecl *IVD = OIvars[i];
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00005278 // Ignore unnamed bit-fields.
5279 if (!IVD->getDeclName())
5280 continue;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005281 Ivar[0] = EmitIvarOffsetVar(ID->getClassInterface(), IVD,
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00005282 ComputeIvarBaseOffset(CGM, ID, IVD));
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00005283 Ivar[1] = GetMethodVarName(IVD->getIdentifier());
5284 Ivar[2] = GetMethodVarType(IVD);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005285 const llvm::Type *FieldTy =
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00005286 CGM.getTypes().ConvertTypeForMem(IVD->getType());
Duncan Sands9408c452009-05-09 07:08:47 +00005287 unsigned Size = CGM.getTargetData().getTypeAllocSize(FieldTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005288 unsigned Align = CGM.getContext().getPreferredTypeAlign(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005289 IVD->getType().getTypePtr()) >> 3;
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005290 Align = llvm::Log2_32(Align);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005291 Ivar[3] = llvm::ConstantInt::get(ObjCTypes.IntTy, Align);
Daniel Dunbar91636d62009-04-20 00:33:43 +00005292 // NOTE. Size of a bitfield does not match gcc's, because of the
5293 // way bitfields are treated special in each. But I am told that
5294 // 'size' for bitfield ivars is ignored by the runtime so it does
5295 // not matter. If it matters, there is enough info to get the
5296 // bitfield right!
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005297 Ivar[4] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Owen Anderson08e25242009-07-27 22:29:56 +00005298 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarnfABITy, Ivar));
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005299 }
5300 // Return null for empty list.
5301 if (Ivars.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00005302 return llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005303 std::vector<llvm::Constant*> Values(3);
Duncan Sands9408c452009-05-09 07:08:47 +00005304 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.IvarnfABITy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005305 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
5306 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00005307 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarnfABITy,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005308 Ivars.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00005309 Values[2] = llvm::ConstantArray::get(AT, Ivars);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005310 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005311 const char *Prefix = "\01l_OBJC_$_INSTANCE_VARIABLES_";
5312 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005313 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005314 llvm::GlobalValue::InternalLinkage,
5315 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005316 Prefix + OID->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005317 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005318 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005319 GV->setSection("__DATA, __objc_const");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005320
Chris Lattnerad64e022009-07-17 23:57:13 +00005321 CGM.AddUsedGlobal(GV);
Owen Anderson3c4972d2009-07-29 18:54:39 +00005322 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005323}
5324
5325llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocolRef(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005326 const ObjCProtocolDecl *PD) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005327 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005328
Fariborz Jahanianda320092009-01-29 19:24:30 +00005329 if (!Entry) {
5330 // We use the initializer as a marker of whether this is a forward
5331 // reference or not. At module finalization we add the empty
5332 // contents for protocols which were referenced but never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005333 Entry =
5334 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy, false,
5335 llvm::GlobalValue::ExternalLinkage,
5336 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005337 "\01l_OBJC_PROTOCOL_$_" + PD->getName());
Fariborz Jahanianda320092009-01-29 19:24:30 +00005338 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanianda320092009-01-29 19:24:30 +00005339 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005340
Fariborz Jahanianda320092009-01-29 19:24:30 +00005341 return Entry;
5342}
5343
5344/// GetOrEmitProtocol - Generate the protocol meta-data:
5345/// @code
5346/// struct _protocol_t {
5347/// id isa; // NULL
5348/// const char * const protocol_name;
5349/// const struct _protocol_list_t * protocol_list; // super protocols
5350/// const struct method_list_t * const instance_methods;
5351/// const struct method_list_t * const class_methods;
5352/// const struct method_list_t *optionalInstanceMethods;
5353/// const struct method_list_t *optionalClassMethods;
5354/// const struct _prop_list_t * properties;
5355/// const uint32_t size; // sizeof(struct _protocol_t)
5356/// const uint32_t flags; // = 0
5357/// }
5358/// @endcode
5359///
5360
5361llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocol(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005362 const ObjCProtocolDecl *PD) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005363 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005364
Fariborz Jahanianda320092009-01-29 19:24:30 +00005365 // Early exit if a defining object has already been generated.
5366 if (Entry && Entry->hasInitializer())
5367 return Entry;
5368
Fariborz Jahanianda320092009-01-29 19:24:30 +00005369 // Construct method lists.
5370 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
5371 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005372 for (ObjCProtocolDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005373 i = PD->instmeth_begin(), e = PD->instmeth_end(); i != e; ++i) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005374 ObjCMethodDecl *MD = *i;
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005375 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005376 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
5377 OptInstanceMethods.push_back(C);
5378 } else {
5379 InstanceMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005380 }
Fariborz Jahanianda320092009-01-29 19:24:30 +00005381 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005382
5383 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005384 i = PD->classmeth_begin(), e = PD->classmeth_end(); i != e; ++i) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005385 ObjCMethodDecl *MD = *i;
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005386 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005387 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
5388 OptClassMethods.push_back(C);
5389 } else {
5390 ClassMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005391 }
Fariborz Jahanianda320092009-01-29 19:24:30 +00005392 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005393
Fariborz Jahanianda320092009-01-29 19:24:30 +00005394 std::vector<llvm::Constant*> Values(10);
5395 // isa is NULL
Owen Andersonc9c88b42009-07-31 20:28:54 +00005396 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ObjectPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005397 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005398 Values[2] = EmitProtocolList("\01l_OBJC_$_PROTOCOL_REFS_" + PD->getName(),
5399 PD->protocol_begin(),
5400 PD->protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005401
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005402 Values[3] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005403 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005404 "__DATA, __objc_const",
5405 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005406 Values[4] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005407 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005408 "__DATA, __objc_const",
5409 ClassMethods);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005410 Values[5] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005411 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005412 "__DATA, __objc_const",
5413 OptInstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005414 Values[6] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005415 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005416 "__DATA, __objc_const",
5417 OptClassMethods);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005418 Values[7] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005419 0, PD, ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005420 uint32_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00005421 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolnfABITy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005422 Values[8] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Owen Andersonc9c88b42009-07-31 20:28:54 +00005423 Values[9] = llvm::Constant::getNullValue(ObjCTypes.IntTy);
Owen Anderson08e25242009-07-27 22:29:56 +00005424 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolnfABITy,
Fariborz Jahanianda320092009-01-29 19:24:30 +00005425 Values);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005426
Fariborz Jahanianda320092009-01-29 19:24:30 +00005427 if (Entry) {
5428 // Already created, fix the linkage and update the initializer.
Mike Stump286acbd2009-03-07 16:33:28 +00005429 Entry->setLinkage(llvm::GlobalValue::WeakAnyLinkage);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005430 Entry->setInitializer(Init);
5431 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005432 Entry =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005433 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy,
5434 false, llvm::GlobalValue::WeakAnyLinkage, Init,
5435 "\01l_OBJC_PROTOCOL_$_" + PD->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005436 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005437 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ProtocolnfABITy));
Fariborz Jahanianda320092009-01-29 19:24:30 +00005438 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanianda320092009-01-29 19:24:30 +00005439 }
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005440 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005441 CGM.AddUsedGlobal(Entry);
5442
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005443 // Use this protocol meta-data to build protocol list table in section
5444 // __DATA, __objc_protolist
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005445 llvm::GlobalVariable *PTGV =
5446 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABIPtrTy,
5447 false, llvm::GlobalValue::WeakAnyLinkage, Entry,
5448 "\01l_OBJC_LABEL_PROTOCOL_$_" + PD->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005449 PTGV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005450 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ProtocolnfABIPtrTy));
Daniel Dunbar0bf21992009-04-15 02:56:18 +00005451 PTGV->setSection("__DATA, __objc_protolist, coalesced, no_dead_strip");
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005452 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005453 CGM.AddUsedGlobal(PTGV);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005454 return Entry;
5455}
5456
5457/// EmitProtocolList - Generate protocol list meta-data:
5458/// @code
5459/// struct _protocol_list_t {
5460/// long protocol_count; // Note, this is 32/64 bit
5461/// struct _protocol_t[protocol_count];
5462/// }
5463/// @endcode
5464///
5465llvm::Constant *
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005466CGObjCNonFragileABIMac::EmitProtocolList(llvm::Twine Name,
5467 ObjCProtocolDecl::protocol_iterator begin,
5468 ObjCProtocolDecl::protocol_iterator end) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005469 std::vector<llvm::Constant*> ProtocolRefs;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005470
Fariborz Jahanianda320092009-01-29 19:24:30 +00005471 // Just return null for empty protocol lists
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005472 if (begin == end)
Owen Andersonc9c88b42009-07-31 20:28:54 +00005473 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005474
Daniel Dunbar948e2582009-02-15 07:36:20 +00005475 // FIXME: We shouldn't need to do this lookup here, should we?
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005476 llvm::SmallString<256> TmpName;
5477 Name.toVector(TmpName);
5478 llvm::GlobalVariable *GV =
5479 CGM.getModule().getGlobalVariable(TmpName.str(), true);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005480 if (GV)
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005481 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005482
Daniel Dunbar948e2582009-02-15 07:36:20 +00005483 for (; begin != end; ++begin)
5484 ProtocolRefs.push_back(GetProtocolRef(*begin)); // Implemented???
5485
Fariborz Jahanianda320092009-01-29 19:24:30 +00005486 // This list is null terminated.
Owen Andersonc9c88b42009-07-31 20:28:54 +00005487 ProtocolRefs.push_back(llvm::Constant::getNullValue(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005488 ObjCTypes.ProtocolnfABIPtrTy));
5489
Fariborz Jahanianda320092009-01-29 19:24:30 +00005490 std::vector<llvm::Constant*> Values(2);
Owen Andersona1cf15f2009-07-14 23:10:40 +00005491 Values[0] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005492 llvm::ConstantInt::get(ObjCTypes.LongTy, ProtocolRefs.size() - 1);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005493 Values[1] =
Owen Anderson7db6d832009-07-28 18:33:04 +00005494 llvm::ConstantArray::get(
Owen Anderson96e0fc72009-07-29 22:16:19 +00005495 llvm::ArrayType::get(ObjCTypes.ProtocolnfABIPtrTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005496 ProtocolRefs.size()),
5497 ProtocolRefs);
5498
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005499 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Owen Anderson1c431b32009-07-08 19:05:04 +00005500 GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanianda320092009-01-29 19:24:30 +00005501 llvm::GlobalValue::InternalLinkage,
5502 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005503 Name);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005504 GV->setSection("__DATA, __objc_const");
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005505 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005506 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Chris Lattnerad64e022009-07-17 23:57:13 +00005507 CGM.AddUsedGlobal(GV);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005508 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar948e2582009-02-15 07:36:20 +00005509 ObjCTypes.ProtocolListnfABIPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005510}
5511
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005512/// GetMethodDescriptionConstant - This routine build following meta-data:
5513/// struct _objc_method {
5514/// SEL _cmd;
5515/// char *method_type;
5516/// char *_imp;
5517/// }
5518
5519llvm::Constant *
5520CGObjCNonFragileABIMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
5521 std::vector<llvm::Constant*> Desc(3);
Owen Andersona1cf15f2009-07-14 23:10:40 +00005522 Desc[0] =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005523 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
5524 ObjCTypes.SelectorPtrTy);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005525 Desc[1] = GetMethodVarType(MD);
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005526 // Protocol methods have no implementation. So, this entry is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00005527 Desc[2] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00005528 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Desc);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005529}
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005530
5531/// EmitObjCValueForIvar - Code Gen for nonfragile ivar reference.
5532/// This code gen. amounts to generating code for:
5533/// @code
5534/// (type *)((char *)base + _OBJC_IVAR_$_.ivar;
5535/// @encode
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005536///
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00005537LValue CGObjCNonFragileABIMac::EmitObjCValueForIvar(
John McCall506b57e2010-05-17 21:00:27 +00005538 CodeGen::CodeGenFunction &CGF,
5539 QualType ObjectTy,
5540 llvm::Value *BaseValue,
5541 const ObjCIvarDecl *Ivar,
5542 unsigned CVRQualifiers) {
5543 ObjCInterfaceDecl *ID = ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar97776872009-04-22 07:32:20 +00005544 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
5545 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005546}
5547
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00005548llvm::Value *CGObjCNonFragileABIMac::EmitIvarOffset(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005549 CodeGen::CodeGenFunction &CGF,
5550 const ObjCInterfaceDecl *Interface,
5551 const ObjCIvarDecl *Ivar) {
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005552 return CGF.Builder.CreateLoad(ObjCIvarOffsetVariable(Interface, Ivar),"ivar");
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00005553}
5554
Fariborz Jahanian46551122009-02-04 00:22:57 +00005555CodeGen::RValue CGObjCNonFragileABIMac::EmitMessageSend(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005556 CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005557 ReturnValueSlot Return,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005558 QualType ResultType,
5559 Selector Sel,
5560 llvm::Value *Receiver,
5561 QualType Arg0Ty,
5562 bool IsSuper,
5563 const CallArgList &CallArgs) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00005564 // FIXME. Even though IsSuper is passes. This function doese not handle calls
5565 // to 'super' receivers.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005566 CodeGenTypes &Types = CGM.getTypes();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005567 llvm::Value *Arg0 = Receiver;
5568 if (!IsSuper)
5569 Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy, "tmp");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005570
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005571 // Find the message function name.
Mike Stumpf5408fe2009-05-16 07:57:57 +00005572 // FIXME. This is too much work to get the ABI-specific result type needed to
5573 // find the message name.
John McCallead608a2010-02-26 00:48:12 +00005574 const CGFunctionInfo &FnInfo
Rafael Espindola264ba482010-03-30 20:24:48 +00005575 = Types.getFunctionInfo(ResultType, CallArgList(),
5576 FunctionType::ExtInfo());
Fariborz Jahanian70b51c72009-04-30 23:08:58 +00005577 llvm::Constant *Fn = 0;
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005578 std::string Name("\01l_");
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00005579 if (CGM.ReturnTypeUsesSRet(FnInfo)) {
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005580#if 0
5581 // unlike what is documented. gcc never generates this API!!
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005582 if (Receiver->getType() == ObjCTypes.ObjectPtrTy) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005583 Fn = ObjCTypes.getMessageSendIdStretFixupFn();
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005584 // FIXME. Is there a better way of getting these names.
5585 // They are available in RuntimeFunctions vector pair.
5586 Name += "objc_msgSendId_stret_fixup";
Mike Stumpb3589f42009-07-30 22:28:39 +00005587 } else
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005588#endif
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005589 if (IsSuper) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005590 Fn = ObjCTypes.getMessageSendSuper2StretFixupFn();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005591 Name += "objc_msgSendSuper2_stret_fixup";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005592 } else {
5593 Fn = ObjCTypes.getMessageSendStretFixupFn();
5594 Name += "objc_msgSend_stret_fixup";
5595 }
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00005596 } else if (!IsSuper && CGM.ReturnTypeUsesFPRet(ResultType)) {
5597 Fn = ObjCTypes.getMessageSendFpretFixupFn();
5598 Name += "objc_msgSend_fpret_fixup";
Mike Stumpb3589f42009-07-30 22:28:39 +00005599 } else {
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005600#if 0
5601// unlike what is documented. gcc never generates this API!!
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005602 if (Receiver->getType() == ObjCTypes.ObjectPtrTy) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005603 Fn = ObjCTypes.getMessageSendIdFixupFn();
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005604 Name += "objc_msgSendId_fixup";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005605 } else
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005606#endif
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005607 if (IsSuper) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005608 Fn = ObjCTypes.getMessageSendSuper2FixupFn();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005609 Name += "objc_msgSendSuper2_fixup";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005610 } else {
5611 Fn = ObjCTypes.getMessageSendFixupFn();
5612 Name += "objc_msgSend_fixup";
5613 }
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005614 }
Fariborz Jahanian70b51c72009-04-30 23:08:58 +00005615 assert(Fn && "CGObjCNonFragileABIMac::EmitMessageSend");
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005616 Name += '_';
5617 std::string SelName(Sel.getAsString());
5618 // Replace all ':' in selector name with '_' ouch!
Mike Stump1eb44332009-09-09 15:08:12 +00005619 for (unsigned i = 0; i < SelName.size(); i++)
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005620 if (SelName[i] == ':')
5621 SelName[i] = '_';
5622 Name += SelName;
5623 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
5624 if (!GV) {
Daniel Dunbar33af70f2009-04-15 19:03:14 +00005625 // Build message ref table entry.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005626 std::vector<llvm::Constant*> Values(2);
5627 Values[0] = Fn;
5628 Values[1] = GetMethodVarName(Sel);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005629 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Owen Anderson1c431b32009-07-08 19:05:04 +00005630 GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Mike Stump286acbd2009-03-07 16:33:28 +00005631 llvm::GlobalValue::WeakAnyLinkage,
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005632 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005633 Name);
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005634 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbarf59c1a62009-04-15 19:04:46 +00005635 GV->setAlignment(16);
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005636 GV->setSection("__DATA, __objc_msgrefs, coalesced");
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005637 }
5638 llvm::Value *Arg1 = CGF.Builder.CreateBitCast(GV, ObjCTypes.MessageRefPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005639
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005640 CallArgList ActualArgs;
5641 ActualArgs.push_back(std::make_pair(RValue::get(Arg0), Arg0Ty));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005642 ActualArgs.push_back(std::make_pair(RValue::get(Arg1),
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005643 ObjCTypes.MessageRefCPtrTy));
5644 ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
John McCall04a67a62010-02-05 21:31:56 +00005645 const CGFunctionInfo &FnInfo1 = Types.getFunctionInfo(ResultType, ActualArgs,
Rafael Espindola264ba482010-03-30 20:24:48 +00005646 FunctionType::ExtInfo());
Fariborz Jahanianef163782009-02-05 01:13:09 +00005647 llvm::Value *Callee = CGF.Builder.CreateStructGEP(Arg1, 0);
5648 Callee = CGF.Builder.CreateLoad(Callee);
Fariborz Jahanian3ab75bd2009-02-14 21:25:36 +00005649 const llvm::FunctionType *FTy = Types.GetFunctionType(FnInfo1, true);
Fariborz Jahanianef163782009-02-05 01:13:09 +00005650 Callee = CGF.Builder.CreateBitCast(Callee,
Owen Anderson96e0fc72009-07-29 22:16:19 +00005651 llvm::PointerType::getUnqual(FTy));
John McCallef072fd2010-05-22 01:48:05 +00005652 return CGF.EmitCall(FnInfo1, Callee, Return, ActualArgs);
Fariborz Jahanian46551122009-02-04 00:22:57 +00005653}
5654
5655/// Generate code for a message send expression in the nonfragile abi.
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005656CodeGen::RValue
5657CGObjCNonFragileABIMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005658 ReturnValueSlot Return,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005659 QualType ResultType,
5660 Selector Sel,
5661 llvm::Value *Receiver,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005662 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00005663 const ObjCInterfaceDecl *Class,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005664 const ObjCMethodDecl *Method) {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005665 return LegacyDispatchedSelector(Sel)
John McCallef072fd2010-05-22 01:48:05 +00005666 ? EmitLegacyMessageSend(CGF, Return, ResultType,
5667 EmitSelector(CGF.Builder, Sel),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005668 Receiver, CGF.getContext().getObjCIdType(),
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005669 false, CallArgs, Method, ObjCTypes)
John McCallef072fd2010-05-22 01:48:05 +00005670 : EmitMessageSend(CGF, Return, ResultType, Sel,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005671 Receiver, CGF.getContext().getObjCIdType(),
5672 false, CallArgs);
Fariborz Jahanian46551122009-02-04 00:22:57 +00005673}
5674
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005675llvm::GlobalVariable *
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005676CGObjCNonFragileABIMac::GetClassGlobal(const std::string &Name) {
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005677 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
5678
Daniel Dunbardfff2302009-03-02 05:18:14 +00005679 if (!GV) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005680 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABITy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005681 false, llvm::GlobalValue::ExternalLinkage,
5682 0, Name);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005683 }
5684
5685 return GV;
5686}
5687
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005688llvm::Value *CGObjCNonFragileABIMac::EmitClassRef(CGBuilderTy &Builder,
5689 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005690 llvm::GlobalVariable *&Entry = ClassReferences[ID->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005691
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005692 if (!Entry) {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005693 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005694 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005695 Entry =
5696 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005697 false, llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005698 ClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005699 "\01L_OBJC_CLASSLIST_REFERENCES_$_");
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005700 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005701 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005702 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar11394522009-04-18 08:51:00 +00005703 Entry->setSection("__DATA, __objc_classrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005704 CGM.AddUsedGlobal(Entry);
Daniel Dunbar11394522009-04-18 08:51:00 +00005705 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005706
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005707 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar11394522009-04-18 08:51:00 +00005708}
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005709
Daniel Dunbar11394522009-04-18 08:51:00 +00005710llvm::Value *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005711CGObjCNonFragileABIMac::EmitSuperClassRef(CGBuilderTy &Builder,
Daniel Dunbar11394522009-04-18 08:51:00 +00005712 const ObjCInterfaceDecl *ID) {
5713 llvm::GlobalVariable *&Entry = SuperClassReferences[ID->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005714
Daniel Dunbar11394522009-04-18 08:51:00 +00005715 if (!Entry) {
5716 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5717 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005718 Entry =
5719 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005720 false, llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005721 ClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005722 "\01L_OBJC_CLASSLIST_SUP_REFS_$_");
Daniel Dunbar11394522009-04-18 08:51:00 +00005723 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005724 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005725 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar11394522009-04-18 08:51:00 +00005726 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005727 CGM.AddUsedGlobal(Entry);
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005728 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005729
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005730 return Builder.CreateLoad(Entry, "tmp");
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005731}
5732
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005733/// EmitMetaClassRef - Return a Value * of the address of _class_t
5734/// meta-data
5735///
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005736llvm::Value *CGObjCNonFragileABIMac::EmitMetaClassRef(CGBuilderTy &Builder,
5737 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005738 llvm::GlobalVariable * &Entry = MetaClassReferences[ID->getIdentifier()];
5739 if (Entry)
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005740 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005741
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005742 std::string MetaClassName(getMetaclassSymbolPrefix() + ID->getNameAsString());
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005743 llvm::GlobalVariable *MetaClassGV = GetClassGlobal(MetaClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005744 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00005745 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy, false,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005746 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005747 MetaClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005748 "\01L_OBJC_CLASSLIST_SUP_REFS_$_");
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005749 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005750 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005751 ObjCTypes.ClassnfABIPtrTy));
5752
Daniel Dunbar33af70f2009-04-15 19:03:14 +00005753 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005754 CGM.AddUsedGlobal(Entry);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005755
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005756 return Builder.CreateLoad(Entry, "tmp");
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005757}
5758
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005759/// GetClass - Return a reference to the class for the given interface
5760/// decl.
5761llvm::Value *CGObjCNonFragileABIMac::GetClass(CGBuilderTy &Builder,
5762 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian269f8bc2009-11-17 22:42:00 +00005763 if (ID->hasAttr<WeakImportAttr>()) {
5764 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5765 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
5766 ClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
5767 }
5768
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005769 return EmitClassRef(Builder, ID);
5770}
5771
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005772/// Generates a message send where the super is the receiver. This is
5773/// a message send to self with special delivery semantics indicating
5774/// which class's method should be called.
5775CodeGen::RValue
5776CGObjCNonFragileABIMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005777 ReturnValueSlot Return,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005778 QualType ResultType,
5779 Selector Sel,
5780 const ObjCInterfaceDecl *Class,
5781 bool isCategoryImpl,
5782 llvm::Value *Receiver,
5783 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005784 const CodeGen::CallArgList &CallArgs,
5785 const ObjCMethodDecl *Method) {
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005786 // ...
5787 // Create and init a super structure; this is a (receiver, class)
5788 // pair we will pass to objc_msgSendSuper.
5789 llvm::Value *ObjCSuper =
5790 CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005791
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005792 llvm::Value *ReceiverAsObject =
5793 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
5794 CGF.Builder.CreateStore(ReceiverAsObject,
5795 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005796
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005797 // If this is a class message the metaclass is passed as the target.
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005798 llvm::Value *Target;
5799 if (IsClassMessage) {
5800 if (isCategoryImpl) {
5801 // Message sent to "super' in a class method defined in
5802 // a category implementation.
Daniel Dunbar11394522009-04-18 08:51:00 +00005803 Target = EmitClassRef(CGF.Builder, Class);
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005804 Target = CGF.Builder.CreateStructGEP(Target, 0);
5805 Target = CGF.Builder.CreateLoad(Target);
Mike Stumpb3589f42009-07-30 22:28:39 +00005806 } else
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005807 Target = EmitMetaClassRef(CGF.Builder, Class);
Mike Stumpb3589f42009-07-30 22:28:39 +00005808 } else
Daniel Dunbar11394522009-04-18 08:51:00 +00005809 Target = EmitSuperClassRef(CGF.Builder, Class);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005810
Mike Stumpf5408fe2009-05-16 07:57:57 +00005811 // FIXME: We shouldn't need to do this cast, rectify the ASTContext and
5812 // ObjCTypes types.
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005813 const llvm::Type *ClassTy =
5814 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
5815 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
5816 CGF.Builder.CreateStore(Target,
5817 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005818
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005819 return (LegacyDispatchedSelector(Sel))
John McCallef072fd2010-05-22 01:48:05 +00005820 ? EmitLegacyMessageSend(CGF, Return, ResultType,
5821 EmitSelector(CGF.Builder, Sel),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005822 ObjCSuper, ObjCTypes.SuperPtrCTy,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005823 true, CallArgs, Method, ObjCTypes)
John McCallef072fd2010-05-22 01:48:05 +00005824 : EmitMessageSend(CGF, Return, ResultType, Sel,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005825 ObjCSuper, ObjCTypes.SuperPtrCTy,
5826 true, CallArgs);
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005827}
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005828
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005829llvm::Value *CGObjCNonFragileABIMac::EmitSelector(CGBuilderTy &Builder,
Fariborz Jahanian03b29602010-06-17 19:56:20 +00005830 Selector Sel, bool lval) {
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005831 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005832
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005833 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005834 llvm::Constant *Casted =
5835 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
5836 ObjCTypes.SelectorPtrTy);
5837 Entry =
5838 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.SelectorPtrTy, false,
5839 llvm::GlobalValue::InternalLinkage,
5840 Casted, "\01L_OBJC_SELECTOR_REFERENCES_");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005841 Entry->setSection("__DATA, __objc_selrefs, literal_pointers, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005842 CGM.AddUsedGlobal(Entry);
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005843 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005844
Fariborz Jahanian03b29602010-06-17 19:56:20 +00005845 if (lval)
5846 return Entry;
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005847 return Builder.CreateLoad(Entry, "tmp");
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005848}
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005849/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00005850/// objc_assign_ivar (id src, id *dst, ptrdiff_t)
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005851///
5852void CGObjCNonFragileABIMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005853 llvm::Value *src,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00005854 llvm::Value *dst,
5855 llvm::Value *ivarOffset) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005856 const llvm::Type * SrcTy = src->getType();
5857 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005858 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005859 assert(Size <= 8 && "does not support size > 8");
5860 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5861 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005862 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5863 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005864 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5865 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00005866 CGF.Builder.CreateCall3(ObjCTypes.getGcAssignIvarFn(),
5867 src, dst, ivarOffset);
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005868 return;
5869}
5870
5871/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
5872/// objc_assign_strongCast (id src, id *dst)
5873///
5874void CGObjCNonFragileABIMac::EmitObjCStrongCastAssign(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005875 CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005876 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005877 const llvm::Type * SrcTy = src->getType();
5878 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005879 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005880 assert(Size <= 8 && "does not support size > 8");
5881 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005882 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005883 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5884 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005885 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5886 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00005887 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005888 src, dst, "weakassign");
5889 return;
5890}
5891
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005892void CGObjCNonFragileABIMac::EmitGCMemmoveCollectable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005893 CodeGen::CodeGenFunction &CGF,
5894 llvm::Value *DestPtr,
5895 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005896 llvm::Value *Size) {
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005897 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy);
5898 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005899 CGF.Builder.CreateCall3(ObjCTypes.GcMemmoveCollectableFn(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005900 DestPtr, SrcPtr, Size);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005901 return;
5902}
5903
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005904/// EmitObjCWeakRead - Code gen for loading value of a __weak
5905/// object: objc_read_weak (id *src)
5906///
5907llvm::Value * CGObjCNonFragileABIMac::EmitObjCWeakRead(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005908 CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005909 llvm::Value *AddrWeakObj) {
Eli Friedman8339b352009-03-07 03:57:15 +00005910 const llvm::Type* DestTy =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005911 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
5912 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj, ObjCTypes.PtrObjectPtrTy);
Chris Lattner72db6c32009-04-22 02:44:54 +00005913 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005914 AddrWeakObj, "weakread");
Eli Friedman8339b352009-03-07 03:57:15 +00005915 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005916 return read_weak;
5917}
5918
5919/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
5920/// objc_assign_weak (id src, id *dst)
5921///
5922void CGObjCNonFragileABIMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005923 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005924 const llvm::Type * SrcTy = src->getType();
5925 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005926 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005927 assert(Size <= 8 && "does not support size > 8");
5928 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5929 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005930 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5931 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005932 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5933 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner96508e12009-04-17 22:12:36 +00005934 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005935 src, dst, "weakassign");
5936 return;
5937}
5938
5939/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
5940/// objc_assign_global (id src, id *dst)
5941///
5942void CGObjCNonFragileABIMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00005943 llvm::Value *src, llvm::Value *dst,
5944 bool threadlocal) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005945 const llvm::Type * SrcTy = src->getType();
5946 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005947 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005948 assert(Size <= 8 && "does not support size > 8");
5949 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5950 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005951 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5952 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005953 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5954 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00005955 if (!threadlocal)
5956 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
5957 src, dst, "globalassign");
5958 else
5959 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignThreadLocalFn(),
5960 src, dst, "threadlocalassign");
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005961 return;
5962}
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005963
John McCall740e8072010-07-21 00:41:47 +00005964namespace {
John McCall1f0fca52010-07-21 07:22:38 +00005965 struct CallSyncExit : EHScopeStack::Cleanup {
John McCall740e8072010-07-21 00:41:47 +00005966 llvm::Value *SyncExitFn;
5967 llvm::Value *SyncArg;
5968 CallSyncExit(llvm::Value *SyncExitFn, llvm::Value *SyncArg)
5969 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {}
5970
5971 void Emit(CodeGenFunction &CGF, bool IsForEHCleanup) {
5972 CGF.Builder.CreateCall(SyncExitFn, SyncArg)->setDoesNotThrow();
5973 }
5974 };
5975}
5976
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005977void
John McCallf1549f62010-07-06 01:34:17 +00005978CGObjCNonFragileABIMac::EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
5979 const ObjCAtSynchronizedStmt &S) {
5980 // Evaluate the lock operand. This should dominate the cleanup.
5981 llvm::Value *SyncArg = CGF.EmitScalarExpr(S.getSynchExpr());
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005982
John McCallf1549f62010-07-06 01:34:17 +00005983 // Acquire the lock.
5984 SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy);
5985 CGF.Builder.CreateCall(ObjCTypes.getSyncEnterFn(), SyncArg)
5986 ->setDoesNotThrow();
5987
5988 // Register an all-paths cleanup to release the lock.
John McCall1f0fca52010-07-21 07:22:38 +00005989 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup,
5990 ObjCTypes.getSyncExitFn(),
5991 SyncArg);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005992
John McCallf1549f62010-07-06 01:34:17 +00005993 // Emit the body of the statement.
5994 CGF.EmitStmt(S.getSynchBody());
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005995
John McCallf1549f62010-07-06 01:34:17 +00005996 // Pop the lock-release cleanup.
5997 CGF.PopCleanupBlock();
5998}
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005999
John McCallf1549f62010-07-06 01:34:17 +00006000namespace {
6001 struct CatchHandler {
6002 const VarDecl *Variable;
6003 const Stmt *Body;
6004 llvm::BasicBlock *Block;
6005 llvm::Value *TypeInfo;
6006 };
John McCall8e3f8612010-07-13 22:12:14 +00006007
John McCall1f0fca52010-07-21 07:22:38 +00006008 struct CallObjCEndCatch : EHScopeStack::Cleanup {
John McCall8e3f8612010-07-13 22:12:14 +00006009 CallObjCEndCatch(bool MightThrow, llvm::Value *Fn) :
6010 MightThrow(MightThrow), Fn(Fn) {}
6011 bool MightThrow;
6012 llvm::Value *Fn;
6013
6014 void Emit(CodeGenFunction &CGF, bool IsForEH) {
6015 if (!MightThrow) {
6016 CGF.Builder.CreateCall(Fn)->setDoesNotThrow();
6017 return;
6018 }
6019
6020 CGF.EmitCallOrInvoke(Fn, 0, 0);
6021 }
6022 };
John McCallf1549f62010-07-06 01:34:17 +00006023}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006024
John McCall5a180392010-07-24 00:37:23 +00006025llvm::Constant *
6026CGObjCNonFragileABIMac::GetEHType(QualType T) {
6027 // There's a particular fixed type info for 'id'.
6028 if (T->isObjCIdType() ||
6029 T->isObjCQualifiedIdType()) {
6030 llvm::Constant *IDEHType =
6031 CGM.getModule().getGlobalVariable("OBJC_EHTYPE_id");
6032 if (!IDEHType)
6033 IDEHType =
6034 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy,
6035 false,
6036 llvm::GlobalValue::ExternalLinkage,
6037 0, "OBJC_EHTYPE_id");
6038 return IDEHType;
6039 }
6040
6041 // All other types should be Objective-C interface pointer types.
6042 const ObjCObjectPointerType *PT =
6043 T->getAs<ObjCObjectPointerType>();
6044 assert(PT && "Invalid @catch type.");
6045 const ObjCInterfaceType *IT = PT->getInterfaceType();
6046 assert(IT && "Invalid @catch type.");
6047 return GetInterfaceEHType(IT->getDecl(), false);
6048}
6049
John McCallf1549f62010-07-06 01:34:17 +00006050void CGObjCNonFragileABIMac::EmitTryStmt(CodeGen::CodeGenFunction &CGF,
6051 const ObjCAtTryStmt &S) {
6052 // Jump destination for falling out of catch bodies.
6053 CodeGenFunction::JumpDest Cont;
6054 if (S.getNumCatchStmts())
6055 Cont = CGF.getJumpDestInCurrentScope("eh.cont");
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006056
John McCallf1549f62010-07-06 01:34:17 +00006057 CodeGenFunction::FinallyInfo FinallyInfo;
6058 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt())
6059 FinallyInfo = CGF.EnterFinallyBlock(Finally->getFinallyBody(),
6060 ObjCTypes.getObjCBeginCatchFn(),
6061 ObjCTypes.getObjCEndCatchFn(),
6062 ObjCTypes.getExceptionRethrowFn());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006063
John McCallf1549f62010-07-06 01:34:17 +00006064 llvm::SmallVector<CatchHandler, 8> Handlers;
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006065
John McCallf1549f62010-07-06 01:34:17 +00006066 // Enter the catch, if there is one.
6067 if (S.getNumCatchStmts()) {
6068 for (unsigned I = 0, N = S.getNumCatchStmts(); I != N; ++I) {
6069 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I);
Douglas Gregorc00d8e12010-04-26 16:46:50 +00006070 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006071
John McCallf1549f62010-07-06 01:34:17 +00006072 Handlers.push_back(CatchHandler());
6073 CatchHandler &Handler = Handlers.back();
6074 Handler.Variable = CatchDecl;
6075 Handler.Body = CatchStmt->getCatchBody();
6076 Handler.Block = CGF.createBasicBlock("catch");
6077
6078 // @catch(...) always matches.
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00006079 if (!CatchDecl) {
John McCallf1549f62010-07-06 01:34:17 +00006080 Handler.TypeInfo = 0; // catch-all
6081 // Don't consider any other catches.
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00006082 break;
6083 }
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006084
John McCall5a180392010-07-24 00:37:23 +00006085 Handler.TypeInfo = GetEHType(CatchDecl->getType());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006086 }
John McCallf1549f62010-07-06 01:34:17 +00006087
6088 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
6089 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
6090 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006091 }
John McCallf1549f62010-07-06 01:34:17 +00006092
6093 // Emit the try body.
6094 CGF.EmitStmt(S.getTryBody());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006095
John McCallf1549f62010-07-06 01:34:17 +00006096 // Leave the try.
6097 if (S.getNumCatchStmts())
6098 CGF.EHStack.popCatch();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006099
John McCallf1549f62010-07-06 01:34:17 +00006100 // Remember where we were.
6101 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006102
John McCallf1549f62010-07-06 01:34:17 +00006103 // Emit the handlers.
6104 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
6105 CatchHandler &Handler = Handlers[I];
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006106
John McCallf1549f62010-07-06 01:34:17 +00006107 CGF.EmitBlock(Handler.Block);
6108 llvm::Value *RawExn = CGF.Builder.CreateLoad(CGF.getExceptionSlot());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006109
John McCallf1549f62010-07-06 01:34:17 +00006110 // Enter the catch.
6111 llvm::CallInst *Exn =
6112 CGF.Builder.CreateCall(ObjCTypes.getObjCBeginCatchFn(), RawExn,
6113 "exn.adjusted");
6114 Exn->setDoesNotThrow();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006115
John McCallf1549f62010-07-06 01:34:17 +00006116 // Add a cleanup to leave the catch.
John McCall8e3f8612010-07-13 22:12:14 +00006117 bool EndCatchMightThrow = (Handler.Variable == 0);
John McCall1f0fca52010-07-21 07:22:38 +00006118 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup,
6119 EndCatchMightThrow,
6120 ObjCTypes.getObjCEndCatchFn());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006121
John McCallf1549f62010-07-06 01:34:17 +00006122 // Bind the catch parameter if it exists.
6123 if (const VarDecl *CatchParam = Handler.Variable) {
6124 const llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType());
6125 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006126
John McCallf1549f62010-07-06 01:34:17 +00006127 CGF.EmitLocalBlockVarDecl(*CatchParam);
6128 CGF.Builder.CreateStore(CastExn, CGF.GetAddrOfLocalVar(CatchParam));
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006129 }
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006130
John McCallf1549f62010-07-06 01:34:17 +00006131 CGF.ObjCEHValueStack.push_back(Exn);
6132 CGF.EmitStmt(Handler.Body);
6133 CGF.ObjCEHValueStack.pop_back();
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006134
John McCallf1549f62010-07-06 01:34:17 +00006135 // Leave the earlier cleanup.
6136 CGF.PopCleanupBlock();
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006137
John McCallf1549f62010-07-06 01:34:17 +00006138 CGF.EmitBranchThroughCleanup(Cont);
6139 }
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006140
John McCallf1549f62010-07-06 01:34:17 +00006141 // Go back to the try-statement fallthrough.
6142 CGF.Builder.restoreIP(SavedIP);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006143
John McCallf1549f62010-07-06 01:34:17 +00006144 // Pop out of the normal cleanup on the finally.
6145 if (S.getFinallyStmt())
6146 CGF.ExitFinallyBlock(FinallyInfo);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006147
John McCallff8e1152010-07-23 21:56:41 +00006148 if (Cont.isValid())
6149 CGF.EmitBlock(Cont.getBlock());
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006150}
6151
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006152/// EmitThrowStmt - Generate code for a throw statement.
6153void CGObjCNonFragileABIMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
6154 const ObjCAtThrowStmt &S) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006155 llvm::Value *Exception;
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006156 llvm::Constant *FunctionThrowOrRethrow;
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006157 if (const Expr *ThrowExpr = S.getThrowExpr()) {
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006158 Exception = CGF.EmitScalarExpr(ThrowExpr);
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006159 FunctionThrowOrRethrow = ObjCTypes.getExceptionThrowFn();
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006160 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006161 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006162 "Unexpected rethrow outside @catch block.");
6163 Exception = CGF.ObjCEHValueStack.back();
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006164 FunctionThrowOrRethrow = ObjCTypes.getExceptionRethrowFn();
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006165 }
6166
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006167 llvm::Value *ExceptionAsObject =
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006168 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy, "tmp");
6169 llvm::BasicBlock *InvokeDest = CGF.getInvokeDest();
6170 if (InvokeDest) {
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006171 CGF.Builder.CreateInvoke(FunctionThrowOrRethrow,
John McCallf1549f62010-07-06 01:34:17 +00006172 CGF.getUnreachableBlock(), InvokeDest,
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006173 &ExceptionAsObject, &ExceptionAsObject + 1);
John McCallf1549f62010-07-06 01:34:17 +00006174 } else {
6175 CGF.Builder.CreateCall(FunctionThrowOrRethrow, ExceptionAsObject)
6176 ->setDoesNotReturn();
6177 CGF.Builder.CreateUnreachable();
6178 }
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006179
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006180 // Clear the insertion point to indicate we are in unreachable code.
6181 CGF.Builder.ClearInsertionPoint();
6182}
Daniel Dunbare588b992009-03-01 04:46:24 +00006183
John McCall5a180392010-07-24 00:37:23 +00006184llvm::Constant *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006185CGObjCNonFragileABIMac::GetInterfaceEHType(const ObjCInterfaceDecl *ID,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006186 bool ForDefinition) {
Daniel Dunbare588b992009-03-01 04:46:24 +00006187 llvm::GlobalVariable * &Entry = EHTypeReferences[ID->getIdentifier()];
Daniel Dunbare588b992009-03-01 04:46:24 +00006188
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006189 // If we don't need a definition, return the entry if found or check
6190 // if we use an external reference.
6191 if (!ForDefinition) {
6192 if (Entry)
6193 return Entry;
Daniel Dunbar7e075cb2009-04-07 06:43:45 +00006194
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006195 // If this type (or a super class) has the __objc_exception__
6196 // attribute, emit an external reference.
Douglas Gregor68584ed2009-06-18 16:11:24 +00006197 if (hasObjCExceptionAttribute(CGM.getContext(), ID))
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006198 return Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00006199 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006200 llvm::GlobalValue::ExternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006201 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00006202 ("OBJC_EHTYPE_$_" +
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00006203 ID->getIdentifier()->getName()));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006204 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006205
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006206 // Otherwise we need to either make a new entry or fill in the
6207 // initializer.
6208 assert((!Entry || !Entry->hasInitializer()) && "Duplicate EHType definition");
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00006209 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
Daniel Dunbare588b992009-03-01 04:46:24 +00006210 std::string VTableName = "objc_ehtype_vtable";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006211 llvm::GlobalVariable *VTableGV =
Daniel Dunbare588b992009-03-01 04:46:24 +00006212 CGM.getModule().getGlobalVariable(VTableName);
6213 if (!VTableGV)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006214 VTableGV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.Int8PtrTy,
6215 false,
Daniel Dunbare588b992009-03-01 04:46:24 +00006216 llvm::GlobalValue::ExternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +00006217 0, VTableName);
Daniel Dunbare588b992009-03-01 04:46:24 +00006218
Chris Lattner77b89b82010-06-27 07:15:29 +00006219 llvm::Value *VTableIdx =
6220 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 2);
Daniel Dunbare588b992009-03-01 04:46:24 +00006221
6222 std::vector<llvm::Constant*> Values(3);
Owen Anderson3c4972d2009-07-29 18:54:39 +00006223 Values[0] = llvm::ConstantExpr::getGetElementPtr(VTableGV, &VTableIdx, 1);
Daniel Dunbare588b992009-03-01 04:46:24 +00006224 Values[1] = GetClassName(ID->getIdentifier());
Fariborz Jahanian0f902942009-04-14 18:41:56 +00006225 Values[2] = GetClassGlobal(ClassName);
Owen Andersona1cf15f2009-07-14 23:10:40 +00006226 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00006227 llvm::ConstantStruct::get(ObjCTypes.EHTypeTy, Values);
Daniel Dunbare588b992009-03-01 04:46:24 +00006228
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006229 if (Entry) {
6230 Entry->setInitializer(Init);
6231 } else {
Owen Anderson1c431b32009-07-08 19:05:04 +00006232 Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006233 llvm::GlobalValue::WeakAnyLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006234 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00006235 ("OBJC_EHTYPE_$_" +
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00006236 ID->getIdentifier()->getName()));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006237 }
6238
Daniel Dunbar04d40782009-04-14 06:00:08 +00006239 if (CGM.getLangOptions().getVisibilityMode() == LangOptions::Hidden)
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00006240 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00006241 Entry->setAlignment(CGM.getTargetData().getABITypeAlignment(
6242 ObjCTypes.EHTypeTy));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006243
6244 if (ForDefinition) {
6245 Entry->setSection("__DATA,__objc_const");
6246 Entry->setLinkage(llvm::GlobalValue::ExternalLinkage);
6247 } else {
6248 Entry->setSection("__DATA,__datacoal_nt,coalesced");
6249 }
Daniel Dunbare588b992009-03-01 04:46:24 +00006250
6251 return Entry;
6252}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006253
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00006254/* *** */
6255
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00006256CodeGen::CGObjCRuntime *
6257CodeGen::CreateMacObjCRuntime(CodeGen::CodeGenModule &CGM) {
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00006258 return new CGObjCMac(CGM);
6259}
Fariborz Jahanianee0af742009-01-21 22:04:16 +00006260
6261CodeGen::CGObjCRuntime *
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00006262CodeGen::CreateMacNonFragileABIObjCRuntime(CodeGen::CodeGenModule &CGM) {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00006263 return new CGObjCNonFragileABIMac(CGM);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00006264}