blob: b30b44ba87e04277de4361bda9488012f0ae1811 [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);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000945
Daniel Dunbard58edcb2009-05-03 14:10:34 +0000946 void BuildAggrIvarRecordLayout(const RecordType *RT,
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000947 unsigned int BytePos, bool ForStrongLayout,
948 bool &HasUnion);
Daniel Dunbar5a5a8032009-05-03 21:05:10 +0000949 void BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000950 const llvm::StructLayout *Layout,
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000951 const RecordDecl *RD,
Chris Lattnerf1690852009-03-31 08:48:01 +0000952 const llvm::SmallVectorImpl<FieldDecl*> &RecFields,
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +0000953 unsigned int BytePos, bool ForStrongLayout,
Fariborz Jahanian81adc052009-04-24 16:17:09 +0000954 bool &HasUnion);
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000955
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +0000956 /// GetIvarLayoutName - Returns a unique constant for the given
957 /// ivar layout bitmap.
958 llvm::Constant *GetIvarLayoutName(IdentifierInfo *Ident,
959 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000960
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +0000961 /// EmitPropertyList - Emit the given property list. The return
962 /// value has type PropertyListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +0000963 llvm::Constant *EmitPropertyList(llvm::Twine Name,
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000964 const Decl *Container,
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +0000965 const ObjCContainerDecl *OCD,
966 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000967
Fariborz Jahanian191dcd72009-12-12 21:26:21 +0000968 /// PushProtocolProperties - Push protocol's property on the input stack.
969 void PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*, 16> &PropertySet,
970 std::vector<llvm::Constant*> &Properties,
971 const Decl *Container,
972 const ObjCProtocolDecl *PROTO,
973 const ObjCCommonTypesHelper &ObjCTypes);
974
Fariborz Jahanianda320092009-01-29 19:24:30 +0000975 /// GetProtocolRef - Return a reference to the internal protocol
976 /// description, creating an empty one if it has not been
977 /// defined. The return value has type ProtocolPtrTy.
978 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
Fariborz Jahanianb21f07e2009-03-08 20:18:37 +0000979
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000980 /// CreateMetadataVar - Create a global variable with internal
981 /// linkage for use by the Objective-C runtime.
982 ///
983 /// This is a convenience wrapper which not only creates the
984 /// variable, but also sets the section and alignment and adds the
Chris Lattnerad64e022009-07-17 23:57:13 +0000985 /// global to the "llvm.used" list.
Daniel Dunbar35bd7632009-03-09 20:50:13 +0000986 ///
987 /// \param Name - The variable name.
988 /// \param Init - The variable initializer; this is also used to
989 /// define the type of the variable.
990 /// \param Section - The section the variable should go into, or 0.
991 /// \param Align - The alignment for the variable, or 0.
992 /// \param AddToUsed - Whether the variable should be added to
Daniel Dunbarc1583062009-04-14 17:42:51 +0000993 /// "llvm.used".
Daniel Dunbar9c29bf52009-10-18 20:48:59 +0000994 llvm::GlobalVariable *CreateMetadataVar(llvm::Twine Name,
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000995 llvm::Constant *Init,
996 const char *Section,
Daniel Dunbar35bd7632009-03-09 20:50:13 +0000997 unsigned Align,
998 bool AddToUsed);
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000999
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001000 CodeGen::RValue EmitLegacyMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001001 ReturnValueSlot Return,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001002 QualType ResultType,
1003 llvm::Value *Sel,
1004 llvm::Value *Arg0,
1005 QualType Arg0Ty,
1006 bool IsSuper,
1007 const CallArgList &CallArgs,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001008 const ObjCMethodDecl *OMD,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001009 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00001010
Daniel Dunbarfce176b2010-04-25 20:39:01 +00001011 /// EmitImageInfo - Emit the image info marker used to encode some module
1012 /// level information.
1013 void EmitImageInfo();
1014
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001015public:
Owen Anderson69243822009-07-13 04:10:07 +00001016 CGObjCCommonMac(CodeGen::CodeGenModule &cgm) :
Mike Stump1eb44332009-09-09 15:08:12 +00001017 CGM(cgm), VMContext(cgm.getLLVMContext()) { }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001018
David Chisnall0d13f6f2010-01-23 02:40:42 +00001019 virtual llvm::Constant *GenerateConstantString(const StringLiteral *SL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001020
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001021 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
1022 const ObjCContainerDecl *CD=0);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001023
Fariborz Jahanianda320092009-01-29 19:24:30 +00001024 virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001025
Fariborz Jahanianda320092009-01-29 19:24:30 +00001026 /// GetOrEmitProtocol - Get the protocol object for the given
1027 /// declaration, emitting it if necessary. The return value has type
1028 /// ProtocolPtrTy.
1029 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001030
Fariborz Jahanianda320092009-01-29 19:24:30 +00001031 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1032 /// object for the given declaration, emitting it if needed. These
1033 /// forward references will be filled in with empty bodies if no
1034 /// definition is seen. The return value has type ProtocolPtrTy.
1035 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0;
Fariborz Jahanian89ecd412010-08-04 16:57:49 +00001036 virtual llvm::Constant *GCBlockLayout(CodeGen::CodeGenFunction &CGF,
1037 const llvm::SmallVectorImpl<const BlockDeclRefExpr *> &);
1038
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001039};
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001040
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001041class CGObjCMac : public CGObjCCommonMac {
1042private:
1043 ObjCTypesHelper ObjCTypes;
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001044
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001045 /// EmitModuleInfo - Another marker encoding module level
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001046 /// information.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001047 void EmitModuleInfo();
1048
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001049 /// EmitModuleSymols - Emit module symbols, the list of defined
1050 /// classes and categories. The result has type SymtabPtrTy.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001051 llvm::Constant *EmitModuleSymbols();
1052
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001053 /// FinishModule - Write out global data structures at the end of
1054 /// processing a translation unit.
1055 void FinishModule();
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001056
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001057 /// EmitClassExtension - Generate the class extension structure used
1058 /// to store the weak ivar layout and properties. The return value
1059 /// has type ClassExtensionPtrTy.
1060 llvm::Constant *EmitClassExtension(const ObjCImplementationDecl *ID);
1061
1062 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
1063 /// for the given class.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001064 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001065 const ObjCInterfaceDecl *ID);
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00001066
1067 /// EmitSuperClassRef - Emits reference to class's main metadata class.
1068 llvm::Value *EmitSuperClassRef(const ObjCInterfaceDecl *ID);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001069
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001070 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001071 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001072 QualType ResultType,
1073 Selector Sel,
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001074 llvm::Value *Arg0,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001075 QualType Arg0Ty,
1076 bool IsSuper,
1077 const CallArgList &CallArgs);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001078
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001079 /// EmitIvarList - Emit the ivar list for the given
1080 /// implementation. If ForClass is true the list of class ivars
1081 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1082 /// interface ivars will be emitted. The return value has type
1083 /// IvarListPtrTy.
1084 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00001085 bool ForClass);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001086
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001087 /// EmitMetaClass - Emit a forward reference to the class structure
1088 /// for the metaclass of the given interface. The return value has
1089 /// type ClassPtrTy.
1090 llvm::Constant *EmitMetaClassRef(const ObjCInterfaceDecl *ID);
1091
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001092 /// EmitMetaClass - Emit a class structure for the metaclass of the
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001093 /// given implementation. The return value has type ClassPtrTy.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001094 llvm::Constant *EmitMetaClass(const ObjCImplementationDecl *ID,
1095 llvm::Constant *Protocols,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001096 const ConstantVector &Methods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001097
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001098 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001099
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001100 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001101
1102 /// EmitMethodList - Emit the method list for the given
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001103 /// implementation. The return value has type MethodListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001104 llvm::Constant *EmitMethodList(llvm::Twine Name,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001105 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001106 const ConstantVector &Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001107
1108 /// EmitMethodDescList - Emit a method description list for a list of
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001109 /// method declarations.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001110 /// - TypeName: The name for the type containing the methods.
1111 /// - IsProtocol: True iff these methods are for a protocol.
1112 /// - ClassMethds: True iff these are class methods.
1113 /// - Required: When true, only "required" methods are
1114 /// listed. Similarly, when false only "optional" methods are
1115 /// listed. For classes this should always be true.
1116 /// - begin, end: The method list to output.
1117 ///
1118 /// The return value has type MethodDescriptionListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001119 llvm::Constant *EmitMethodDescList(llvm::Twine Name,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001120 const char *Section,
1121 const ConstantVector &Methods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001122
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001123 /// GetOrEmitProtocol - Get the protocol object for the given
1124 /// declaration, emitting it if necessary. The return value has type
1125 /// ProtocolPtrTy.
Fariborz Jahanianda320092009-01-29 19:24:30 +00001126 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001127
1128 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1129 /// object for the given declaration, emitting it if needed. These
1130 /// forward references will be filled in with empty bodies if no
1131 /// definition is seen. The return value has type ProtocolPtrTy.
Fariborz Jahanianda320092009-01-29 19:24:30 +00001132 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001133
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001134 /// EmitProtocolExtension - Generate the protocol extension
1135 /// structure used to store optional instance and class methods, and
1136 /// protocol properties. The return value has type
1137 /// ProtocolExtensionPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001138 llvm::Constant *
1139 EmitProtocolExtension(const ObjCProtocolDecl *PD,
1140 const ConstantVector &OptInstanceMethods,
1141 const ConstantVector &OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001142
1143 /// EmitProtocolList - Generate the list of referenced
1144 /// protocols. The return value has type ProtocolListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001145 llvm::Constant *EmitProtocolList(llvm::Twine Name,
Daniel Dunbardbc933702008-08-21 21:57:41 +00001146 ObjCProtocolDecl::protocol_iterator begin,
1147 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001148
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001149 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1150 /// for the given selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001151 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel,
1152 bool lval=false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001153
1154public:
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001155 CGObjCMac(CodeGen::CodeGenModule &cgm);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001156
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001157 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001158
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001159 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001160 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001161 QualType ResultType,
1162 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001163 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001164 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001165 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001166 const ObjCMethodDecl *Method);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001167
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001168 virtual CodeGen::RValue
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001169 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001170 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001171 QualType ResultType,
1172 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001173 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001174 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001175 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001176 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001177 const CallArgList &CallArgs,
1178 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001179
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001180 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001181 const ObjCInterfaceDecl *ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001182
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001183 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
1184 bool lval = false);
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001185
1186 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1187 /// untyped one.
1188 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1189 const ObjCMethodDecl *Method);
1190
John McCall5a180392010-07-24 00:37:23 +00001191 virtual llvm::Constant *GetEHType(QualType T);
1192
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001193 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001194
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001195 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001196
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001197 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001198 const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001199
Chris Lattner74391b42009-03-22 21:03:39 +00001200 virtual llvm::Constant *GetPropertyGetFunction();
1201 virtual llvm::Constant *GetPropertySetFunction();
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00001202 virtual llvm::Constant *GetCopyStructFunction();
Chris Lattner74391b42009-03-22 21:03:39 +00001203 virtual llvm::Constant *EnumerationMutationFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001204
John McCallf1549f62010-07-06 01:34:17 +00001205 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1206 const ObjCAtTryStmt &S);
1207 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1208 const ObjCAtSynchronizedStmt &S);
1209 void EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF, const Stmt &S);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001210 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
1211 const ObjCAtThrowStmt &S);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00001212 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001213 llvm::Value *AddrWeakObj);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00001214 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001215 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanian58626502008-11-19 00:59:10 +00001216 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00001217 llvm::Value *src, llvm::Value *dest,
1218 bool threadlocal = false);
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00001219 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00001220 llvm::Value *src, llvm::Value *dest,
1221 llvm::Value *ivarOffset);
Fariborz Jahanian58626502008-11-19 00:59:10 +00001222 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
1223 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00001224 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
1225 llvm::Value *dest, llvm::Value *src,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001226 llvm::Value *size);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001227
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001228 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1229 QualType ObjectTy,
1230 llvm::Value *BaseValue,
1231 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001232 unsigned CVRQualifiers);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001233 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00001234 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001235 const ObjCIvarDecl *Ivar);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001236};
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001237
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001238class CGObjCNonFragileABIMac : public CGObjCCommonMac {
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001239private:
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001240 ObjCNonFragileABITypesHelper ObjCTypes;
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001241 llvm::GlobalVariable* ObjCEmptyCacheVar;
1242 llvm::GlobalVariable* ObjCEmptyVtableVar;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001243
Daniel Dunbar11394522009-04-18 08:51:00 +00001244 /// SuperClassReferences - uniqued super class references.
1245 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> SuperClassReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001246
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001247 /// MetaClassReferences - uniqued meta class references.
1248 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> MetaClassReferences;
Daniel Dunbare588b992009-03-01 04:46:24 +00001249
1250 /// EHTypeReferences - uniqued class ehtype references.
1251 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> EHTypeReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001252
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001253 /// NonLegacyDispatchMethods - List of methods for which we do *not* generate
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001254 /// legacy messaging dispatch.
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001255 llvm::DenseSet<Selector> NonLegacyDispatchMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001256
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00001257 /// DefinedMetaClasses - List of defined meta-classes.
1258 std::vector<llvm::GlobalValue*> DefinedMetaClasses;
1259
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001260 /// LegacyDispatchedSelector - Returns true if SEL is not in the list of
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001261 /// NonLegacyDispatchMethods; false otherwise.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001262 bool LegacyDispatchedSelector(Selector Sel);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001263
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001264 /// FinishNonFragileABIModule - Write out global data structures at the end of
1265 /// processing a translation unit.
1266 void FinishNonFragileABIModule();
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001267
Daniel Dunbar463b8762009-05-15 21:48:48 +00001268 /// AddModuleClassList - Add the given list of class pointers to the
1269 /// module with the provided symbol and section names.
1270 void AddModuleClassList(const std::vector<llvm::GlobalValue*> &Container,
1271 const char *SymbolName,
1272 const char *SectionName);
1273
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001274 llvm::GlobalVariable * BuildClassRoTInitializer(unsigned flags,
1275 unsigned InstanceStart,
1276 unsigned InstanceSize,
1277 const ObjCImplementationDecl *ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00001278 llvm::GlobalVariable * BuildClassMetaData(std::string &ClassName,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001279 llvm::Constant *IsAGV,
Fariborz Jahanian84394a52009-01-24 21:21:53 +00001280 llvm::Constant *SuperClassGV,
Fariborz Jahaniancf555162009-01-31 00:59:10 +00001281 llvm::Constant *ClassRoGV,
1282 bool HiddenVisibility);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001283
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001284 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001285
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00001286 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001287
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001288 /// EmitMethodList - Emit the method list for the given
1289 /// implementation. The return value has type MethodListnfABITy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001290 llvm::Constant *EmitMethodList(llvm::Twine Name,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001291 const char *Section,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00001292 const ConstantVector &Methods);
1293 /// EmitIvarList - Emit the ivar list for the given
1294 /// implementation. If ForClass is true the list of class ivars
1295 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1296 /// interface ivars will be emitted. The return value has type
1297 /// IvarListnfABIPtrTy.
1298 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001299
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001300 llvm::Constant *EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00001301 const ObjCIvarDecl *Ivar,
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00001302 unsigned long int offset);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001303
Fariborz Jahanianda320092009-01-29 19:24:30 +00001304 /// GetOrEmitProtocol - Get the protocol object for the given
1305 /// declaration, emitting it if necessary. The return value has type
1306 /// ProtocolPtrTy.
1307 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001308
Fariborz Jahanianda320092009-01-29 19:24:30 +00001309 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1310 /// object for the given declaration, emitting it if needed. These
1311 /// forward references will be filled in with empty bodies if no
1312 /// definition is seen. The return value has type ProtocolPtrTy.
1313 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001314
Fariborz Jahanianda320092009-01-29 19:24:30 +00001315 /// EmitProtocolList - Generate the list of referenced
1316 /// protocols. The return value has type ProtocolListPtrTy.
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001317 llvm::Constant *EmitProtocolList(llvm::Twine Name,
Fariborz Jahanianda320092009-01-29 19:24:30 +00001318 ObjCProtocolDecl::protocol_iterator begin,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001319 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001320
Fariborz Jahanian46551122009-02-04 00:22:57 +00001321 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001322 ReturnValueSlot Return,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001323 QualType ResultType,
1324 Selector Sel,
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00001325 llvm::Value *Receiver,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001326 QualType Arg0Ty,
1327 bool IsSuper,
1328 const CallArgList &CallArgs);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00001329
1330 /// GetClassGlobal - Return the global variable for the Objective-C
1331 /// class of the given name.
Fariborz Jahanian0f902942009-04-14 18:41:56 +00001332 llvm::GlobalVariable *GetClassGlobal(const std::string &Name);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001333
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001334 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
Daniel Dunbar11394522009-04-18 08:51:00 +00001335 /// for the given class reference.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001336 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar11394522009-04-18 08:51:00 +00001337 const ObjCInterfaceDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001338
Daniel Dunbar11394522009-04-18 08:51:00 +00001339 /// EmitSuperClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
1340 /// for the given super class reference.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001341 llvm::Value *EmitSuperClassRef(CGBuilderTy &Builder,
1342 const ObjCInterfaceDecl *ID);
1343
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001344 /// EmitMetaClassRef - Return a Value * of the address of _class_t
1345 /// meta-data
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001346 llvm::Value *EmitMetaClassRef(CGBuilderTy &Builder,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001347 const ObjCInterfaceDecl *ID);
1348
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001349 /// ObjCIvarOffsetVariable - Returns the ivar offset variable for
1350 /// the given ivar.
1351 ///
Daniel Dunbar5e88bea2009-04-19 00:31:15 +00001352 llvm::GlobalVariable * ObjCIvarOffsetVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001353 const ObjCInterfaceDecl *ID,
1354 const ObjCIvarDecl *Ivar);
1355
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00001356 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1357 /// for the given selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001358 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel,
1359 bool lval=false);
Daniel Dunbare588b992009-03-01 04:46:24 +00001360
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001361 /// GetInterfaceEHType - Get the cached ehtype for the given Objective-C
Daniel Dunbare588b992009-03-01 04:46:24 +00001362 /// interface. The return value has type EHTypePtrTy.
John McCall5a180392010-07-24 00:37:23 +00001363 llvm::Constant *GetInterfaceEHType(const ObjCInterfaceDecl *ID,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001364 bool ForDefinition);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001365
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001366 const char *getMetaclassSymbolPrefix() const {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001367 return "OBJC_METACLASS_$_";
1368 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001369
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001370 const char *getClassSymbolPrefix() const {
1371 return "OBJC_CLASS_$_";
1372 }
1373
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00001374 void GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbarb02532a2009-04-19 23:41:48 +00001375 uint32_t &InstanceStart,
1376 uint32_t &InstanceSize);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001377
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001378 // Shamelessly stolen from Analysis/CFRefCount.cpp
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001379 Selector GetNullarySelector(const char* name) const {
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001380 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1381 return CGM.getContext().Selectors.getSelector(0, &II);
1382 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001383
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001384 Selector GetUnarySelector(const char* name) const {
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001385 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1386 return CGM.getContext().Selectors.getSelector(1, &II);
1387 }
Daniel Dunbarb02532a2009-04-19 23:41:48 +00001388
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001389 /// ImplementationIsNonLazy - Check whether the given category or
1390 /// class implementation is "non-lazy".
Fariborz Jahanianecfbdcb2009-05-21 01:03:45 +00001391 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const;
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001392
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001393public:
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001394 CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001395 // FIXME. All stubs for now!
1396 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001397
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001398 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001399 ReturnValueSlot Return,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001400 QualType ResultType,
1401 Selector Sel,
1402 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001403 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001404 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001405 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001406
1407 virtual CodeGen::RValue
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001408 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001409 ReturnValueSlot Return,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001410 QualType ResultType,
1411 Selector Sel,
1412 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001413 bool isCategoryImpl,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001414 llvm::Value *Receiver,
1415 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001416 const CallArgList &CallArgs,
1417 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001418
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001419 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001420 const ObjCInterfaceDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001421
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001422 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
1423 bool lvalue = false)
1424 { return EmitSelector(Builder, Sel, lvalue); }
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001425
1426 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1427 /// untyped one.
1428 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1429 const ObjCMethodDecl *Method)
1430 { return EmitSelector(Builder, Method->getSelector()); }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001431
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00001432 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001433
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001434 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001435 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00001436 const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001437
John McCall5a180392010-07-24 00:37:23 +00001438 virtual llvm::Constant *GetEHType(QualType T);
1439
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001440 virtual llvm::Constant *GetPropertyGetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001441 return ObjCTypes.getGetPropertyFn();
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001442 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001443 virtual llvm::Constant *GetPropertySetFunction() {
1444 return ObjCTypes.getSetPropertyFn();
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001445 }
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00001446
1447 virtual llvm::Constant *GetCopyStructFunction() {
1448 return ObjCTypes.getCopyStructFn();
1449 }
1450
Chris Lattner74391b42009-03-22 21:03:39 +00001451 virtual llvm::Constant *EnumerationMutationFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001452 return ObjCTypes.getEnumerationMutationFn();
Daniel Dunbar28ed0842009-02-16 18:48:45 +00001453 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001454
John McCallf1549f62010-07-06 01:34:17 +00001455 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1456 const ObjCAtTryStmt &S);
1457 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1458 const ObjCAtSynchronizedStmt &S);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001459 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Anders Carlssonf57c5b22009-02-16 22:59:18 +00001460 const ObjCAtThrowStmt &S);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001461 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001462 llvm::Value *AddrWeakObj);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001463 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001464 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001465 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00001466 llvm::Value *src, llvm::Value *dest,
1467 bool threadlocal = false);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001468 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00001469 llvm::Value *src, llvm::Value *dest,
1470 llvm::Value *ivarOffset);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001471 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001472 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00001473 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
1474 llvm::Value *dest, llvm::Value *src,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001475 llvm::Value *size);
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001476 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1477 QualType ObjectTy,
1478 llvm::Value *BaseValue,
1479 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001480 unsigned CVRQualifiers);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001481 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00001482 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001483 const ObjCIvarDecl *Ivar);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001484};
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001485
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001486} // end anonymous namespace
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001487
1488/* *** Helper Functions *** */
1489
1490/// getConstantGEP() - Help routine to construct simple GEPs.
Owen Andersona1cf15f2009-07-14 23:10:40 +00001491static llvm::Constant *getConstantGEP(llvm::LLVMContext &VMContext,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001492 llvm::Constant *C,
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001493 unsigned idx0,
1494 unsigned idx1) {
1495 llvm::Value *Idxs[] = {
Owen Anderson0032b272009-08-13 21:57:51 +00001496 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx0),
1497 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx1)
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001498 };
Owen Anderson3c4972d2009-07-29 18:54:39 +00001499 return llvm::ConstantExpr::getGetElementPtr(C, Idxs, 2);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001500}
1501
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001502/// hasObjCExceptionAttribute - Return true if this class or any super
1503/// class has the __objc_exception__ attribute.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001504static bool hasObjCExceptionAttribute(ASTContext &Context,
Douglas Gregor68584ed2009-06-18 16:11:24 +00001505 const ObjCInterfaceDecl *OID) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001506 if (OID->hasAttr<ObjCExceptionAttr>())
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001507 return true;
1508 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())
Douglas Gregor68584ed2009-06-18 16:11:24 +00001509 return hasObjCExceptionAttribute(Context, Super);
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001510 return false;
1511}
1512
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001513/* *** CGObjCMac Public Interface *** */
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001514
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001515CGObjCMac::CGObjCMac(CodeGen::CodeGenModule &cgm) : CGObjCCommonMac(cgm),
Mike Stump1eb44332009-09-09 15:08:12 +00001516 ObjCTypes(cgm) {
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001517 ObjCABI = 1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001518 EmitImageInfo();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001519}
1520
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +00001521/// GetClass - Return a reference to the class for the given interface
1522/// decl.
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001523llvm::Value *CGObjCMac::GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001524 const ObjCInterfaceDecl *ID) {
1525 return EmitClassRef(Builder, ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001526}
1527
1528/// GetSelector - Return the pointer to the unique'd string for this selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001529llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, Selector Sel,
1530 bool lval) {
1531 return EmitSelector(Builder, Sel, lval);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001532}
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001533llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, const ObjCMethodDecl
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001534 *Method) {
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001535 return EmitSelector(Builder, Method->getSelector());
1536}
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001537
John McCall5a180392010-07-24 00:37:23 +00001538llvm::Constant *CGObjCMac::GetEHType(QualType T) {
1539 llvm_unreachable("asking for catch type for ObjC type in fragile runtime");
1540 return 0;
1541}
1542
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001543/// Generate a constant CFString object.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001544/*
1545 struct __builtin_CFString {
1546 const int *isa; // point to __CFConstantStringClassReference
1547 int flags;
1548 const char *str;
1549 long length;
1550 };
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001551*/
1552
Fariborz Jahanian33e982b2010-04-22 20:26:39 +00001553/// or Generate a constant NSString object.
1554/*
1555 struct __builtin_NSString {
1556 const int *isa; // point to __NSConstantStringClassReference
1557 const char *str;
1558 unsigned int length;
1559 };
1560*/
1561
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001562llvm::Constant *CGObjCCommonMac::GenerateConstantString(
David Chisnall0d13f6f2010-01-23 02:40:42 +00001563 const StringLiteral *SL) {
Fariborz Jahanian33e982b2010-04-22 20:26:39 +00001564 return (CGM.getLangOptions().NoConstantCFStrings == 0 ?
1565 CGM.GetAddrOfConstantCFString(SL) :
1566 CGM.GetAddrOfConstantNSString(SL));
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001567}
1568
1569/// Generates a message send where the super is the receiver. This is
1570/// a message send to self with special delivery semantics indicating
1571/// which class's method should be called.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001572CodeGen::RValue
1573CGObjCMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001574 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001575 QualType ResultType,
1576 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001577 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001578 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001579 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001580 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001581 const CodeGen::CallArgList &CallArgs,
1582 const ObjCMethodDecl *Method) {
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001583 // Create and init a super structure; this is a (receiver, class)
1584 // pair we will pass to objc_msgSendSuper.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001585 llvm::Value *ObjCSuper =
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001586 CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001587 llvm::Value *ReceiverAsObject =
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001588 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001589 CGF.Builder.CreateStore(ReceiverAsObject,
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001590 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001591
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001592 // If this is a class message the metaclass is passed as the target.
1593 llvm::Value *Target;
1594 if (IsClassMessage) {
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001595 if (isCategoryImpl) {
1596 // Message sent to 'super' in a class method defined in a category
1597 // implementation requires an odd treatment.
1598 // If we are in a class method, we must retrieve the
1599 // _metaclass_ for the current class, pointed at by
1600 // the class's "isa" pointer. The following assumes that
1601 // isa" is the first ivar in a class (which it must be).
1602 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1603 Target = CGF.Builder.CreateStructGEP(Target, 0);
1604 Target = CGF.Builder.CreateLoad(Target);
Mike Stumpb3589f42009-07-30 22:28:39 +00001605 } else {
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001606 llvm::Value *MetaClassPtr = EmitMetaClassRef(Class);
1607 llvm::Value *SuperPtr = CGF.Builder.CreateStructGEP(MetaClassPtr, 1);
1608 llvm::Value *Super = CGF.Builder.CreateLoad(SuperPtr);
1609 Target = Super;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001610 }
Fariborz Jahanian182f2682009-11-14 02:18:31 +00001611 }
1612 else if (isCategoryImpl)
1613 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1614 else {
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00001615 llvm::Value *ClassPtr = EmitSuperClassRef(Class);
1616 ClassPtr = CGF.Builder.CreateStructGEP(ClassPtr, 1);
1617 Target = CGF.Builder.CreateLoad(ClassPtr);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001618 }
Mike Stumpf5408fe2009-05-16 07:57:57 +00001619 // FIXME: We shouldn't need to do this cast, rectify the ASTContext and
1620 // ObjCTypes types.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001621 const llvm::Type *ClassTy =
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001622 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001623 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001624 CGF.Builder.CreateStore(Target,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001625 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
John McCallef072fd2010-05-22 01:48:05 +00001626 return EmitLegacyMessageSend(CGF, Return, ResultType,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001627 EmitSelector(CGF.Builder, Sel),
1628 ObjCSuper, ObjCTypes.SuperPtrCTy,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001629 true, CallArgs, Method, ObjCTypes);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001630}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001631
1632/// Generate code for a message send expression.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001633CodeGen::RValue CGObjCMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001634 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001635 QualType ResultType,
1636 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001637 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001638 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001639 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001640 const ObjCMethodDecl *Method) {
John McCallef072fd2010-05-22 01:48:05 +00001641 return EmitLegacyMessageSend(CGF, Return, ResultType,
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001642 EmitSelector(CGF.Builder, Sel),
1643 Receiver, CGF.getContext().getObjCIdType(),
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001644 false, CallArgs, Method, ObjCTypes);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001645}
1646
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001647CodeGen::RValue
1648CGObjCCommonMac::EmitLegacyMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001649 ReturnValueSlot Return,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001650 QualType ResultType,
1651 llvm::Value *Sel,
1652 llvm::Value *Arg0,
1653 QualType Arg0Ty,
1654 bool IsSuper,
1655 const CallArgList &CallArgs,
1656 const ObjCMethodDecl *Method,
1657 const ObjCCommonTypesHelper &ObjCTypes) {
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001658 CallArgList ActualArgs;
Fariborz Jahaniand019d962009-04-24 21:07:43 +00001659 if (!IsSuper)
1660 Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy, "tmp");
Daniel Dunbar46f45b92008-09-09 01:06:48 +00001661 ActualArgs.push_back(std::make_pair(RValue::get(Arg0), Arg0Ty));
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001662 ActualArgs.push_back(std::make_pair(RValue::get(Sel),
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001663 CGF.getContext().getObjCSelType()));
1664 ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001665
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001666 CodeGenTypes &Types = CGM.getTypes();
John McCall04a67a62010-02-05 21:31:56 +00001667 const CGFunctionInfo &FnInfo = Types.getFunctionInfo(ResultType, ActualArgs,
Rafael Espindola264ba482010-03-30 20:24:48 +00001668 FunctionType::ExtInfo());
Daniel Dunbar67939662009-09-17 04:01:40 +00001669 const llvm::FunctionType *FTy =
1670 Types.GetFunctionType(FnInfo, Method ? Method->isVariadic() : false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001671
Anders Carlsson7e70fb22010-06-21 20:59:55 +00001672 if (Method)
1673 assert(CGM.getContext().getCanonicalType(Method->getResultType()) ==
1674 CGM.getContext().getCanonicalType(ResultType) &&
1675 "Result type mismatch!");
1676
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001677 llvm::Constant *Fn = NULL;
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001678 if (CGM.ReturnTypeUsesSRet(FnInfo)) {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001679 Fn = (ObjCABI == 2) ? ObjCTypes.getSendStretFn2(IsSuper)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001680 : ObjCTypes.getSendStretFn(IsSuper);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001681 } else if (CGM.ReturnTypeUsesFPRet(ResultType)) {
1682 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFpretFn2(IsSuper)
1683 : ObjCTypes.getSendFpretFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001684 } else {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001685 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFn2(IsSuper)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001686 : ObjCTypes.getSendFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001687 }
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001688 Fn = llvm::ConstantExpr::getBitCast(Fn, llvm::PointerType::getUnqual(FTy));
John McCallef072fd2010-05-22 01:48:05 +00001689 return CGF.EmitCall(FnInfo, Fn, Return, ActualArgs);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001690}
1691
Fariborz Jahanian89ecd412010-08-04 16:57:49 +00001692llvm::Constant *CGObjCCommonMac::GCBlockLayout(CodeGen::CodeGenFunction &CGF,
1693 const llvm::SmallVectorImpl<const BlockDeclRefExpr *> &BDRE) {
1694 return llvm::Constant::getNullValue(llvm::Type::getInt8PtrTy(VMContext));
1695}
1696
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001697llvm::Value *CGObjCMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001698 const ObjCProtocolDecl *PD) {
Daniel Dunbarc67876d2008-09-04 04:33:15 +00001699 // FIXME: I don't understand why gcc generates this, or where it is
Mike Stumpf5408fe2009-05-16 07:57:57 +00001700 // resolved. Investigate. Its also wasteful to look this up over and over.
Daniel Dunbarc67876d2008-09-04 04:33:15 +00001701 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1702
Owen Anderson3c4972d2009-07-29 18:54:39 +00001703 return llvm::ConstantExpr::getBitCast(GetProtocolRef(PD),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001704 ObjCTypes.ExternalProtocolPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001705}
1706
Fariborz Jahanianda320092009-01-29 19:24:30 +00001707void CGObjCCommonMac::GenerateProtocol(const ObjCProtocolDecl *PD) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00001708 // FIXME: We shouldn't need this, the protocol decl should contain enough
1709 // information to tell us whether this was a declaration or a definition.
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001710 DefinedProtocols.insert(PD->getIdentifier());
1711
1712 // If we have generated a forward reference to this protocol, emit
1713 // it now. Otherwise do nothing, the protocol objects are lazily
1714 // emitted.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001715 if (Protocols.count(PD->getIdentifier()))
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001716 GetOrEmitProtocol(PD);
1717}
1718
Fariborz Jahanianda320092009-01-29 19:24:30 +00001719llvm::Constant *CGObjCCommonMac::GetProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001720 if (DefinedProtocols.count(PD->getIdentifier()))
1721 return GetOrEmitProtocol(PD);
1722 return GetOrEmitProtocolRef(PD);
1723}
1724
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001725/*
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001726// APPLE LOCAL radar 4585769 - Objective-C 1.0 extensions
1727struct _objc_protocol {
1728struct _objc_protocol_extension *isa;
1729char *protocol_name;
1730struct _objc_protocol_list *protocol_list;
1731struct _objc__method_prototype_list *instance_methods;
1732struct _objc__method_prototype_list *class_methods
1733};
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001734
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001735See EmitProtocolExtension().
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001736*/
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001737llvm::Constant *CGObjCMac::GetOrEmitProtocol(const ObjCProtocolDecl *PD) {
1738 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1739
1740 // Early exit if a defining object has already been generated.
1741 if (Entry && Entry->hasInitializer())
1742 return Entry;
1743
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001744 // FIXME: I don't understand why gcc generates this, or where it is
Mike Stumpf5408fe2009-05-16 07:57:57 +00001745 // resolved. Investigate. Its also wasteful to look this up over and over.
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001746 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1747
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001748 // Construct method lists.
1749 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
1750 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001751 for (ObjCProtocolDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001752 i = PD->instmeth_begin(), e = PD->instmeth_end(); i != e; ++i) {
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001753 ObjCMethodDecl *MD = *i;
1754 llvm::Constant *C = GetMethodDescriptionConstant(MD);
1755 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1756 OptInstanceMethods.push_back(C);
1757 } else {
1758 InstanceMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001759 }
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001760 }
1761
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001762 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001763 i = PD->classmeth_begin(), e = PD->classmeth_end(); i != e; ++i) {
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001764 ObjCMethodDecl *MD = *i;
1765 llvm::Constant *C = GetMethodDescriptionConstant(MD);
1766 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1767 OptClassMethods.push_back(C);
1768 } else {
1769 ClassMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001770 }
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001771 }
1772
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001773 std::vector<llvm::Constant*> Values(5);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001774 Values[0] = EmitProtocolExtension(PD, OptInstanceMethods, OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001775 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001776 Values[2] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001777 EmitProtocolList("\01L_OBJC_PROTOCOL_REFS_" + PD->getName(),
Daniel Dunbardbc933702008-08-21 21:57:41 +00001778 PD->protocol_begin(),
1779 PD->protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001780 Values[3] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001781 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001782 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
1783 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001784 Values[4] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001785 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001786 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
1787 ClassMethods);
Owen Anderson08e25242009-07-27 22:29:56 +00001788 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001789 Values);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001790
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001791 if (Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001792 // Already created, fix the linkage and update the initializer.
1793 Entry->setLinkage(llvm::GlobalValue::InternalLinkage);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001794 Entry->setInitializer(Init);
1795 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001796 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00001797 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001798 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001799 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001800 "\01L_OBJC_PROTOCOL_" + PD->getName());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001801 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001802 // FIXME: Is this necessary? Why only for protocol?
1803 Entry->setAlignment(4);
1804 }
Chris Lattnerad64e022009-07-17 23:57:13 +00001805 CGM.AddUsedGlobal(Entry);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001806
1807 return Entry;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001808}
1809
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001810llvm::Constant *CGObjCMac::GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001811 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1812
1813 if (!Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001814 // We use the initializer as a marker of whether this is a forward
1815 // reference or not. At module finalization we add the empty
1816 // contents for protocols which were referenced but never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001817 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00001818 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001819 llvm::GlobalValue::ExternalLinkage,
1820 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001821 "\01L_OBJC_PROTOCOL_" + PD->getName());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001822 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001823 // FIXME: Is this necessary? Why only for protocol?
1824 Entry->setAlignment(4);
1825 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001826
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001827 return Entry;
1828}
1829
1830/*
1831 struct _objc_protocol_extension {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001832 uint32_t size;
1833 struct objc_method_description_list *optional_instance_methods;
1834 struct objc_method_description_list *optional_class_methods;
1835 struct objc_property_list *instance_properties;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001836 };
1837*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001838llvm::Constant *
1839CGObjCMac::EmitProtocolExtension(const ObjCProtocolDecl *PD,
1840 const ConstantVector &OptInstanceMethods,
1841 const ConstantVector &OptClassMethods) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001842 uint64_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00001843 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolExtensionTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001844 std::vector<llvm::Constant*> Values(4);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001845 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001846 Values[1] =
1847 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001848 + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001849 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
1850 OptInstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001851 Values[2] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001852 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_OPT_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001853 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
1854 OptClassMethods);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001855 Values[3] = EmitPropertyList("\01L_OBJC_$_PROP_PROTO_LIST_" + PD->getName(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00001856 0, PD, ObjCTypes);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001857
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001858 // Return null if no extension bits are used.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001859 if (Values[1]->isNullValue() && Values[2]->isNullValue() &&
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001860 Values[3]->isNullValue())
Owen Andersonc9c88b42009-07-31 20:28:54 +00001861 return llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001862
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001863 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00001864 llvm::ConstantStruct::get(ObjCTypes.ProtocolExtensionTy, Values);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001865
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001866 // No special section, but goes in llvm.used
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001867 return CreateMetadataVar("\01L_OBJC_PROTOCOLEXT_" + PD->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001868 Init,
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001869 0, 0, true);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001870}
1871
1872/*
1873 struct objc_protocol_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001874 struct objc_protocol_list *next;
1875 long count;
1876 Protocol *list[];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001877 };
1878*/
Daniel Dunbardbc933702008-08-21 21:57:41 +00001879llvm::Constant *
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001880CGObjCMac::EmitProtocolList(llvm::Twine Name,
Daniel Dunbardbc933702008-08-21 21:57:41 +00001881 ObjCProtocolDecl::protocol_iterator begin,
1882 ObjCProtocolDecl::protocol_iterator end) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001883 std::vector<llvm::Constant*> ProtocolRefs;
1884
Daniel Dunbardbc933702008-08-21 21:57:41 +00001885 for (; begin != end; ++begin)
1886 ProtocolRefs.push_back(GetProtocolRef(*begin));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001887
1888 // Just return null for empty protocol lists
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001889 if (ProtocolRefs.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00001890 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001891
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001892 // This list is null terminated.
Owen Andersonc9c88b42009-07-31 20:28:54 +00001893 ProtocolRefs.push_back(llvm::Constant::getNullValue(ObjCTypes.ProtocolPtrTy));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001894
1895 std::vector<llvm::Constant*> Values(3);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001896 // This field is only used by the runtime.
Owen Andersonc9c88b42009-07-31 20:28:54 +00001897 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001898 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001899 ProtocolRefs.size() - 1);
1900 Values[2] =
1901 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.ProtocolPtrTy,
1902 ProtocolRefs.size()),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001903 ProtocolRefs);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001904
Nick Lewycky0d36dd22009-09-19 20:00:52 +00001905 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001906 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00001907 CreateMetadataVar(Name, Init, "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00001908 4, false);
Owen Anderson3c4972d2009-07-29 18:54:39 +00001909 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001910}
1911
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00001912void CGObjCCommonMac::PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*, 16> &PropertySet,
1913 std::vector<llvm::Constant*> &Properties,
1914 const Decl *Container,
1915 const ObjCProtocolDecl *PROTO,
1916 const ObjCCommonTypesHelper &ObjCTypes) {
1917 std::vector<llvm::Constant*> Prop(2);
1918 for (ObjCProtocolDecl::protocol_iterator P = PROTO->protocol_begin(),
1919 E = PROTO->protocol_end(); P != E; ++P)
1920 PushProtocolProperties(PropertySet, Properties, Container, (*P), ObjCTypes);
1921 for (ObjCContainerDecl::prop_iterator I = PROTO->prop_begin(),
1922 E = PROTO->prop_end(); I != E; ++I) {
1923 const ObjCPropertyDecl *PD = *I;
1924 if (!PropertySet.insert(PD->getIdentifier()))
1925 continue;
1926 Prop[0] = GetPropertyName(PD->getIdentifier());
1927 Prop[1] = GetPropertyTypeString(PD, Container);
1928 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy, Prop));
1929 }
1930}
1931
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001932/*
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001933 struct _objc_property {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001934 const char * const name;
1935 const char * const attributes;
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001936 };
1937
1938 struct _objc_property_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001939 uint32_t entsize; // sizeof (struct _objc_property)
1940 uint32_t prop_count;
1941 struct _objc_property[prop_count];
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001942 };
1943*/
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001944llvm::Constant *CGObjCCommonMac::EmitPropertyList(llvm::Twine Name,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001945 const Decl *Container,
1946 const ObjCContainerDecl *OCD,
1947 const ObjCCommonTypesHelper &ObjCTypes) {
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001948 std::vector<llvm::Constant*> Properties, Prop(2);
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00001949 llvm::SmallPtrSet<const IdentifierInfo*, 16> PropertySet;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001950 for (ObjCContainerDecl::prop_iterator I = OCD->prop_begin(),
1951 E = OCD->prop_end(); I != E; ++I) {
Steve Naroff93983f82009-01-11 12:47:58 +00001952 const ObjCPropertyDecl *PD = *I;
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00001953 PropertySet.insert(PD->getIdentifier());
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001954 Prop[0] = GetPropertyName(PD->getIdentifier());
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001955 Prop[1] = GetPropertyTypeString(PD, Container);
Owen Anderson08e25242009-07-27 22:29:56 +00001956 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001957 Prop));
1958 }
Fariborz Jahanian6afbdf52010-06-22 16:33:55 +00001959 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) {
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00001960 for (ObjCInterfaceDecl::protocol_iterator P = OID->protocol_begin(),
1961 E = OID->protocol_end(); P != E; ++P)
Fariborz Jahanian6afbdf52010-06-22 16:33:55 +00001962 PushProtocolProperties(PropertySet, Properties, Container, (*P),
1963 ObjCTypes);
1964 }
1965 else if (const ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(OCD)) {
1966 for (ObjCCategoryDecl::protocol_iterator P = CD->protocol_begin(),
1967 E = CD->protocol_end(); P != E; ++P)
1968 PushProtocolProperties(PropertySet, Properties, Container, (*P),
1969 ObjCTypes);
1970 }
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001971
1972 // Return null for empty list.
1973 if (Properties.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00001974 return llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001975
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001976 unsigned PropertySize =
Duncan Sands9408c452009-05-09 07:08:47 +00001977 CGM.getTargetData().getTypeAllocSize(ObjCTypes.PropertyTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001978 std::vector<llvm::Constant*> Values(3);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001979 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, PropertySize);
1980 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Properties.size());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001981 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.PropertyTy,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001982 Properties.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00001983 Values[2] = llvm::ConstantArray::get(AT, Properties);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00001984 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001985
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001986 llvm::GlobalVariable *GV =
1987 CreateMetadataVar(Name, Init,
1988 (ObjCABI == 2) ? "__DATA, __objc_const" :
Daniel Dunbar0bf21992009-04-15 02:56:18 +00001989 "__OBJC,__property,regular,no_dead_strip",
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001990 (ObjCABI == 2) ? 8 : 4,
Daniel Dunbar0bf21992009-04-15 02:56:18 +00001991 true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00001992 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.PropertyListPtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001993}
1994
1995/*
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001996 struct objc_method_description_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001997 int count;
1998 struct objc_method_description list[];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001999 };
2000*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002001llvm::Constant *
2002CGObjCMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
2003 std::vector<llvm::Constant*> Desc(2);
Owen Andersona1cf15f2009-07-14 23:10:40 +00002004 Desc[0] =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002005 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
2006 ObjCTypes.SelectorPtrTy);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002007 Desc[1] = GetMethodVarType(MD);
Owen Anderson08e25242009-07-27 22:29:56 +00002008 return llvm::ConstantStruct::get(ObjCTypes.MethodDescriptionTy,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002009 Desc);
2010}
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002011
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002012llvm::Constant *CGObjCMac::EmitMethodDescList(llvm::Twine Name,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002013 const char *Section,
2014 const ConstantVector &Methods) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002015 // Return null for empty list.
2016 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002017 return llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002018
2019 std::vector<llvm::Constant*> Values(2);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002020 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002021 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodDescriptionTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002022 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002023 Values[1] = llvm::ConstantArray::get(AT, Methods);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002024 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002025
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002026 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002027 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002028 ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002029}
2030
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002031/*
2032 struct _objc_category {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002033 char *category_name;
2034 char *class_name;
2035 struct _objc_method_list *instance_methods;
2036 struct _objc_method_list *class_methods;
2037 struct _objc_protocol_list *protocols;
2038 uint32_t size; // <rdar://4585769>
2039 struct _objc_property_list *instance_properties;
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002040 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002041*/
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002042void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Duncan Sands9408c452009-05-09 07:08:47 +00002043 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.CategoryTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002044
Mike Stumpf5408fe2009-05-16 07:57:57 +00002045 // FIXME: This is poor design, the OCD should have a pointer to the category
2046 // decl. Additionally, note that Category can be null for the @implementation
2047 // w/o an @interface case. Sema should just create one for us as it does for
2048 // @implementation so everyone else can live life under a clear blue sky.
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002049 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002050 const ObjCCategoryDecl *Category =
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002051 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002052
2053 llvm::SmallString<256> ExtName;
2054 llvm::raw_svector_ostream(ExtName) << Interface->getName() << '_'
2055 << OCD->getName();
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002056
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002057 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002058 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002059 i = OCD->instmeth_begin(), e = OCD->instmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002060 // Instance methods should always be defined.
2061 InstanceMethods.push_back(GetMethodConstant(*i));
2062 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002063 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002064 i = OCD->classmeth_begin(), e = OCD->classmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002065 // Class methods should always be defined.
2066 ClassMethods.push_back(GetMethodConstant(*i));
2067 }
2068
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002069 std::vector<llvm::Constant*> Values(7);
2070 Values[0] = GetClassName(OCD->getIdentifier());
2071 Values[1] = GetClassName(Interface->getIdentifier());
Fariborz Jahanian679cd7f2009-04-29 20:40:05 +00002072 LazySymbols.insert(Interface->getIdentifier());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002073 Values[2] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002074 EmitMethodList("\01L_OBJC_CATEGORY_INSTANCE_METHODS_" + ExtName.str(),
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002075 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002076 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002077 Values[3] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002078 EmitMethodList("\01L_OBJC_CATEGORY_CLASS_METHODS_" + ExtName.str(),
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002079 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002080 ClassMethods);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002081 if (Category) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002082 Values[4] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002083 EmitProtocolList("\01L_OBJC_CATEGORY_PROTOCOLS_" + ExtName.str(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002084 Category->protocol_begin(),
2085 Category->protocol_end());
2086 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002087 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002088 }
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002089 Values[5] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002090
2091 // If there is no category @interface then there can be no properties.
2092 if (Category) {
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002093 Values[6] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00002094 OCD, Category, ObjCTypes);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002095 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002096 Values[6] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002097 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002098
Owen Anderson08e25242009-07-27 22:29:56 +00002099 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.CategoryTy,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002100 Values);
2101
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002102 llvm::GlobalVariable *GV =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002103 CreateMetadataVar("\01L_OBJC_CATEGORY_" + ExtName.str(), Init,
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002104 "__OBJC,__category,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002105 4, true);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002106 DefinedCategories.push_back(GV);
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00002107 DefinedCategoryNames.insert(ExtName.str());
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002108}
2109
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002110// FIXME: Get from somewhere?
2111enum ClassFlags {
2112 eClassFlags_Factory = 0x00001,
2113 eClassFlags_Meta = 0x00002,
2114 // <rdr://5142207>
2115 eClassFlags_HasCXXStructors = 0x02000,
2116 eClassFlags_Hidden = 0x20000,
2117 eClassFlags_ABI2_Hidden = 0x00010,
2118 eClassFlags_ABI2_HasCXXStructors = 0x00004 // <rdr://4923634>
2119};
2120
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002121/*
2122 struct _objc_class {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002123 Class isa;
2124 Class super_class;
2125 const char *name;
2126 long version;
2127 long info;
2128 long instance_size;
2129 struct _objc_ivar_list *ivars;
2130 struct _objc_method_list *methods;
2131 struct _objc_cache *cache;
2132 struct _objc_protocol_list *protocols;
2133 // Objective-C 1.0 extensions (<rdr://4585769>)
2134 const char *ivar_layout;
2135 struct _objc_class_ext *ext;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002136 };
2137
2138 See EmitClassExtension();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002139*/
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002140void CGObjCMac::GenerateClass(const ObjCImplementationDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002141 DefinedSymbols.insert(ID->getIdentifier());
2142
Chris Lattner8ec03f52008-11-24 03:54:41 +00002143 std::string ClassName = ID->getNameAsString();
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002144 // FIXME: Gross
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002145 ObjCInterfaceDecl *Interface =
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002146 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002147 llvm::Constant *Protocols =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002148 EmitProtocolList("\01L_OBJC_CLASS_PROTOCOLS_" + ID->getName(),
Daniel Dunbardbc933702008-08-21 21:57:41 +00002149 Interface->protocol_begin(),
2150 Interface->protocol_end());
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002151 unsigned Flags = eClassFlags_Factory;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00002152 if (ID->getNumIvarInitializers())
2153 Flags |= eClassFlags_HasCXXStructors;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002154 unsigned Size =
Daniel Dunbar2bebbf02009-05-03 10:46:44 +00002155 CGM.getContext().getASTObjCImplementationLayout(ID).getSize() / 8;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002156
2157 // FIXME: Set CXX-structors flag.
Daniel Dunbar04d40782009-04-14 06:00:08 +00002158 if (CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden)
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002159 Flags |= eClassFlags_Hidden;
2160
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002161 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002162 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002163 i = ID->instmeth_begin(), e = ID->instmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002164 // Instance methods should always be defined.
2165 InstanceMethods.push_back(GetMethodConstant(*i));
2166 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002167 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002168 i = ID->classmeth_begin(), e = ID->classmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002169 // Class methods should always be defined.
2170 ClassMethods.push_back(GetMethodConstant(*i));
2171 }
2172
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002173 for (ObjCImplementationDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002174 i = ID->propimpl_begin(), e = ID->propimpl_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002175 ObjCPropertyImplDecl *PID = *i;
2176
2177 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
2178 ObjCPropertyDecl *PD = PID->getPropertyDecl();
2179
2180 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
2181 if (llvm::Constant *C = GetMethodConstant(MD))
2182 InstanceMethods.push_back(C);
2183 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
2184 if (llvm::Constant *C = GetMethodConstant(MD))
2185 InstanceMethods.push_back(C);
2186 }
2187 }
2188
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002189 std::vector<llvm::Constant*> Values(12);
Daniel Dunbar5384b092009-05-03 08:56:52 +00002190 Values[ 0] = EmitMetaClass(ID, Protocols, ClassMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002191 if (ObjCInterfaceDecl *Super = Interface->getSuperClass()) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002192 // Record a reference to the super class.
2193 LazySymbols.insert(Super->getIdentifier());
2194
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002195 Values[ 1] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002196 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002197 ObjCTypes.ClassPtrTy);
2198 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002199 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002200 }
2201 Values[ 2] = GetClassName(ID->getIdentifier());
2202 // Version is always 0.
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002203 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2204 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2205 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002206 Values[ 6] = EmitIvarList(ID, false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002207 Values[ 7] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002208 EmitMethodList("\01L_OBJC_INSTANCE_METHODS_" + ID->getName(),
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002209 "__OBJC,__inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002210 InstanceMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002211 // cache is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002212 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002213 Values[ 9] = Protocols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002214 Values[10] = BuildIvarLayout(ID, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002215 Values[11] = EmitClassExtension(ID);
Owen Anderson08e25242009-07-27 22:29:56 +00002216 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002217 Values);
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00002218 std::string Name("\01L_OBJC_CLASS_");
2219 Name += ClassName;
2220 const char *Section = "__OBJC,__class,regular,no_dead_strip";
2221 // Check for a forward reference.
2222 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2223 if (GV) {
2224 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2225 "Forward metaclass reference has incorrect type.");
2226 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2227 GV->setInitializer(Init);
2228 GV->setSection(Section);
2229 GV->setAlignment(4);
2230 CGM.AddUsedGlobal(GV);
2231 }
2232 else
2233 GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002234 DefinedClasses.push_back(GV);
2235}
2236
2237llvm::Constant *CGObjCMac::EmitMetaClass(const ObjCImplementationDecl *ID,
2238 llvm::Constant *Protocols,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002239 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002240 unsigned Flags = eClassFlags_Meta;
Duncan Sands9408c452009-05-09 07:08:47 +00002241 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002242
Daniel Dunbar04d40782009-04-14 06:00:08 +00002243 if (CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden)
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002244 Flags |= eClassFlags_Hidden;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002245
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002246 std::vector<llvm::Constant*> Values(12);
2247 // The isa for the metaclass is the root of the hierarchy.
2248 const ObjCInterfaceDecl *Root = ID->getClassInterface();
2249 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
2250 Root = Super;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002251 Values[ 0] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002252 llvm::ConstantExpr::getBitCast(GetClassName(Root->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002253 ObjCTypes.ClassPtrTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002254 // The super class for the metaclass is emitted as the name of the
2255 // super class. The runtime fixes this up to point to the
2256 // *metaclass* for the super class.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002257 if (ObjCInterfaceDecl *Super = ID->getClassInterface()->getSuperClass()) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002258 Values[ 1] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002259 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002260 ObjCTypes.ClassPtrTy);
2261 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002262 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002263 }
2264 Values[ 2] = GetClassName(ID->getIdentifier());
2265 // Version is always 0.
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002266 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2267 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2268 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002269 Values[ 6] = EmitIvarList(ID, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002270 Values[ 7] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002271 EmitMethodList("\01L_OBJC_CLASS_METHODS_" + ID->getNameAsString(),
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002272 "__OBJC,__cls_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002273 Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002274 // cache is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002275 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002276 Values[ 9] = Protocols;
2277 // ivar_layout for metaclass is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002278 Values[10] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002279 // The class extension is always unused for metaclasses.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002280 Values[11] = llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00002281 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002282 Values);
2283
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002284 std::string Name("\01L_OBJC_METACLASS_");
Chris Lattner8ec03f52008-11-24 03:54:41 +00002285 Name += ID->getNameAsCString();
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002286
2287 // Check for a forward reference.
2288 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2289 if (GV) {
2290 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2291 "Forward metaclass reference has incorrect type.");
2292 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2293 GV->setInitializer(Init);
2294 } else {
Owen Anderson1c431b32009-07-08 19:05:04 +00002295 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002296 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +00002297 Init, Name);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002298 }
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002299 GV->setSection("__OBJC,__meta_class,regular,no_dead_strip");
Daniel Dunbar58a29122009-03-09 22:18:41 +00002300 GV->setAlignment(4);
Chris Lattnerad64e022009-07-17 23:57:13 +00002301 CGM.AddUsedGlobal(GV);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002302
2303 return GV;
2304}
2305
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002306llvm::Constant *CGObjCMac::EmitMetaClassRef(const ObjCInterfaceDecl *ID) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002307 std::string Name = "\01L_OBJC_METACLASS_" + ID->getNameAsString();
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002308
Mike Stumpf5408fe2009-05-16 07:57:57 +00002309 // FIXME: Should we look these up somewhere other than the module. Its a bit
2310 // silly since we only generate these while processing an implementation, so
2311 // exactly one pointer would work if know when we entered/exitted an
2312 // implementation block.
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002313
2314 // Check for an existing forward reference.
Fariborz Jahanianb0d27942009-01-07 20:11:22 +00002315 // Previously, metaclass with internal linkage may have been defined.
2316 // pass 'true' as 2nd argument so it is returned.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002317 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
2318 true)) {
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002319 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2320 "Forward metaclass reference has incorrect type.");
2321 return GV;
2322 } else {
2323 // Generate as an external reference to keep a consistent
2324 // module. This will be patched up when we emit the metaclass.
Owen Anderson1c431b32009-07-08 19:05:04 +00002325 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002326 llvm::GlobalValue::ExternalLinkage,
2327 0,
Owen Anderson1c431b32009-07-08 19:05:04 +00002328 Name);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002329 }
2330}
2331
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00002332llvm::Value *CGObjCMac::EmitSuperClassRef(const ObjCInterfaceDecl *ID) {
2333 std::string Name = "\01L_OBJC_CLASS_" + ID->getNameAsString();
2334
2335 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
2336 true)) {
2337 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2338 "Forward class metadata reference has incorrect type.");
2339 return GV;
2340 } else {
2341 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
2342 llvm::GlobalValue::ExternalLinkage,
2343 0,
2344 Name);
2345 }
2346}
2347
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002348/*
2349 struct objc_class_ext {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002350 uint32_t size;
2351 const char *weak_ivar_layout;
2352 struct _objc_property_list *properties;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002353 };
2354*/
2355llvm::Constant *
2356CGObjCMac::EmitClassExtension(const ObjCImplementationDecl *ID) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002357 uint64_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00002358 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassExtensionTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002359
2360 std::vector<llvm::Constant*> Values(3);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002361 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanianc71303d2009-04-22 23:00:43 +00002362 Values[1] = BuildIvarLayout(ID, false);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002363 Values[2] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getName(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00002364 ID, ID->getClassInterface(), ObjCTypes);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002365
2366 // Return null if no extension bits are used.
2367 if (Values[1]->isNullValue() && Values[2]->isNullValue())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002368 return llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002369
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002370 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00002371 llvm::ConstantStruct::get(ObjCTypes.ClassExtensionTy, Values);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002372 return CreateMetadataVar("\01L_OBJC_CLASSEXT_" + ID->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002373 Init, "__OBJC,__class_ext,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002374 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002375}
2376
2377/*
2378 struct objc_ivar {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002379 char *ivar_name;
2380 char *ivar_type;
2381 int ivar_offset;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002382 };
2383
2384 struct objc_ivar_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002385 int ivar_count;
2386 struct objc_ivar list[count];
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002387 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002388*/
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002389llvm::Constant *CGObjCMac::EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002390 bool ForClass) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002391 std::vector<llvm::Constant*> Ivars, Ivar(3);
2392
2393 // When emitting the root class GCC emits ivar entries for the
2394 // actual class structure. It is not clear if we need to follow this
2395 // behavior; for now lets try and get away with not doing it. If so,
2396 // the cleanest solution would be to make up an ObjCInterfaceDecl
2397 // for the class.
2398 if (ForClass)
Owen Andersonc9c88b42009-07-31 20:28:54 +00002399 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002400
2401 ObjCInterfaceDecl *OID =
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002402 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002403
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00002404 llvm::SmallVector<ObjCIvarDecl*, 16> OIvars;
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00002405 CGM.getContext().ShallowCollectObjCIvars(OID, OIvars);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002406
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00002407 for (unsigned i = 0, e = OIvars.size(); i != e; ++i) {
2408 ObjCIvarDecl *IVD = OIvars[i];
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00002409 // Ignore unnamed bit-fields.
2410 if (!IVD->getDeclName())
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002411 continue;
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00002412 Ivar[0] = GetMethodVarName(IVD->getIdentifier());
2413 Ivar[1] = GetMethodVarType(IVD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002414 Ivar[2] = llvm::ConstantInt::get(ObjCTypes.IntTy,
Daniel Dunbar97776872009-04-22 07:32:20 +00002415 ComputeIvarBaseOffset(CGM, OID, IVD));
Owen Anderson08e25242009-07-27 22:29:56 +00002416 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarTy, Ivar));
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002417 }
2418
2419 // Return null for empty list.
2420 if (Ivars.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002421 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002422
2423 std::vector<llvm::Constant*> Values(2);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002424 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00002425 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002426 Ivars.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002427 Values[1] = llvm::ConstantArray::get(AT, Ivars);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002428 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002429
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002430 llvm::GlobalVariable *GV;
2431 if (ForClass)
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002432 GV = CreateMetadataVar("\01L_OBJC_CLASS_VARIABLES_" + ID->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002433 Init, "__OBJC,__class_vars,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002434 4, true);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002435 else
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002436 GV = CreateMetadataVar("\01L_OBJC_INSTANCE_VARIABLES_" + ID->getName(),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002437 Init, "__OBJC,__instance_vars,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002438 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002439 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002440}
2441
2442/*
2443 struct objc_method {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002444 SEL method_name;
2445 char *method_types;
2446 void *method;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002447 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002448
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002449 struct objc_method_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002450 struct objc_method_list *obsolete;
2451 int count;
2452 struct objc_method methods_list[count];
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002453 };
2454*/
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002455
2456/// GetMethodConstant - Return a struct objc_method constant for the
2457/// given method if it has been defined. The result is null if the
2458/// method has not been defined. The return value has type MethodPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002459llvm::Constant *CGObjCMac::GetMethodConstant(const ObjCMethodDecl *MD) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002460 // FIXME: Use DenseMap::lookup
2461 llvm::Function *Fn = MethodDefinitions[MD];
2462 if (!Fn)
2463 return 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002464
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002465 std::vector<llvm::Constant*> Method(3);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002466 Method[0] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002467 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002468 ObjCTypes.SelectorPtrTy);
2469 Method[1] = GetMethodVarType(MD);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002470 Method[2] = llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00002471 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002472}
2473
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002474llvm::Constant *CGObjCMac::EmitMethodList(llvm::Twine Name,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002475 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002476 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002477 // Return null for empty list.
2478 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002479 return llvm::Constant::getNullValue(ObjCTypes.MethodListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002480
2481 std::vector<llvm::Constant*> Values(3);
Owen Andersonc9c88b42009-07-31 20:28:54 +00002482 Values[0] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002483 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00002484 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002485 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002486 Values[2] = llvm::ConstantArray::get(AT, Methods);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00002487 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002488
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002489 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002490 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002491 ObjCTypes.MethodListPtrTy);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002492}
2493
Fariborz Jahanian493dab72009-01-26 21:38:32 +00002494llvm::Function *CGObjCCommonMac::GenerateMethod(const ObjCMethodDecl *OMD,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002495 const ObjCContainerDecl *CD) {
Daniel Dunbarc575ce72009-10-19 01:21:19 +00002496 llvm::SmallString<256> Name;
Fariborz Jahanian679a5022009-01-10 21:06:09 +00002497 GetNameForMethod(OMD, CD, Name);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002498
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002499 CodeGenTypes &Types = CGM.getTypes();
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00002500 const llvm::FunctionType *MethodTy =
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002501 Types.GetFunctionType(Types.getFunctionInfo(OMD), OMD->isVariadic());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002502 llvm::Function *Method =
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00002503 llvm::Function::Create(MethodTy,
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002504 llvm::GlobalValue::InternalLinkage,
Daniel Dunbarc575ce72009-10-19 01:21:19 +00002505 Name.str(),
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002506 &CGM.getModule());
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002507 MethodDefinitions.insert(std::make_pair(OMD, Method));
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002508
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002509 return Method;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002510}
2511
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002512llvm::GlobalVariable *
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002513CGObjCCommonMac::CreateMetadataVar(llvm::Twine Name,
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002514 llvm::Constant *Init,
2515 const char *Section,
Daniel Dunbar35bd7632009-03-09 20:50:13 +00002516 unsigned Align,
2517 bool AddToUsed) {
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002518 const llvm::Type *Ty = Init->getType();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002519 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00002520 new llvm::GlobalVariable(CGM.getModule(), Ty, false,
Chris Lattnerad64e022009-07-17 23:57:13 +00002521 llvm::GlobalValue::InternalLinkage, Init, Name);
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002522 if (Section)
2523 GV->setSection(Section);
Daniel Dunbar35bd7632009-03-09 20:50:13 +00002524 if (Align)
2525 GV->setAlignment(Align);
2526 if (AddToUsed)
Chris Lattnerad64e022009-07-17 23:57:13 +00002527 CGM.AddUsedGlobal(GV);
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002528 return GV;
2529}
2530
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002531llvm::Function *CGObjCMac::ModuleInitFunction() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002532 // Abuse this interface function as a place to finalize.
2533 FinishModule();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002534 return NULL;
2535}
2536
Chris Lattner74391b42009-03-22 21:03:39 +00002537llvm::Constant *CGObjCMac::GetPropertyGetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002538 return ObjCTypes.getGetPropertyFn();
Daniel Dunbar49f66022008-09-24 03:38:44 +00002539}
2540
Chris Lattner74391b42009-03-22 21:03:39 +00002541llvm::Constant *CGObjCMac::GetPropertySetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002542 return ObjCTypes.getSetPropertyFn();
Daniel Dunbar49f66022008-09-24 03:38:44 +00002543}
2544
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00002545llvm::Constant *CGObjCMac::GetCopyStructFunction() {
2546 return ObjCTypes.getCopyStructFn();
2547}
2548
Chris Lattner74391b42009-03-22 21:03:39 +00002549llvm::Constant *CGObjCMac::EnumerationMutationFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002550 return ObjCTypes.getEnumerationMutationFn();
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002551}
2552
John McCallf1549f62010-07-06 01:34:17 +00002553void CGObjCMac::EmitTryStmt(CodeGenFunction &CGF, const ObjCAtTryStmt &S) {
2554 return EmitTryOrSynchronizedStmt(CGF, S);
2555}
2556
2557void CGObjCMac::EmitSynchronizedStmt(CodeGenFunction &CGF,
2558 const ObjCAtSynchronizedStmt &S) {
2559 return EmitTryOrSynchronizedStmt(CGF, S);
2560}
2561
John McCallcc505292010-07-21 06:59:36 +00002562namespace {
John McCall1f0fca52010-07-21 07:22:38 +00002563 struct PerformFragileFinally : EHScopeStack::Cleanup {
John McCallcc505292010-07-21 06:59:36 +00002564 const Stmt &S;
John McCall0b251722010-08-04 05:59:32 +00002565 llvm::Value *SyncArgSlot;
John McCallcc505292010-07-21 06:59:36 +00002566 llvm::Value *CallTryExitVar;
2567 llvm::Value *ExceptionData;
2568 ObjCTypesHelper &ObjCTypes;
2569 PerformFragileFinally(const Stmt *S,
John McCall0b251722010-08-04 05:59:32 +00002570 llvm::Value *SyncArgSlot,
John McCallcc505292010-07-21 06:59:36 +00002571 llvm::Value *CallTryExitVar,
2572 llvm::Value *ExceptionData,
2573 ObjCTypesHelper *ObjCTypes)
John McCall0b251722010-08-04 05:59:32 +00002574 : S(*S), SyncArgSlot(SyncArgSlot), CallTryExitVar(CallTryExitVar),
John McCallcc505292010-07-21 06:59:36 +00002575 ExceptionData(ExceptionData), ObjCTypes(*ObjCTypes) {}
2576
2577 void Emit(CodeGenFunction &CGF, bool IsForEH) {
2578 // Check whether we need to call objc_exception_try_exit.
2579 // In optimized code, this branch will always be folded.
2580 llvm::BasicBlock *FinallyCallExit =
2581 CGF.createBasicBlock("finally.call_exit");
2582 llvm::BasicBlock *FinallyNoCallExit =
2583 CGF.createBasicBlock("finally.no_call_exit");
2584 CGF.Builder.CreateCondBr(CGF.Builder.CreateLoad(CallTryExitVar),
2585 FinallyCallExit, FinallyNoCallExit);
2586
2587 CGF.EmitBlock(FinallyCallExit);
2588 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryExitFn(), ExceptionData)
2589 ->setDoesNotThrow();
2590
2591 CGF.EmitBlock(FinallyNoCallExit);
2592
2593 if (isa<ObjCAtTryStmt>(S)) {
2594 if (const ObjCAtFinallyStmt* FinallyStmt =
2595 cast<ObjCAtTryStmt>(S).getFinallyStmt())
2596 CGF.EmitStmt(FinallyStmt->getFinallyBody());
2597
2598 // Currently, the end of the cleanup must always exist.
2599 CGF.EnsureInsertPoint();
2600 } else {
2601 // Emit objc_sync_exit(expr); as finally's sole statement for
2602 // @synchronized.
John McCall0b251722010-08-04 05:59:32 +00002603 llvm::Value *SyncArg = CGF.Builder.CreateLoad(SyncArgSlot);
John McCallcc505292010-07-21 06:59:36 +00002604 CGF.Builder.CreateCall(ObjCTypes.getSyncExitFn(), SyncArg)
2605 ->setDoesNotThrow();
2606 }
2607 }
2608 };
John McCall87bb5822010-07-31 23:20:56 +00002609
2610 class FragileHazards {
2611 CodeGenFunction &CGF;
2612 llvm::SmallVector<llvm::Value*, 20> Locals;
2613 llvm::DenseSet<llvm::BasicBlock*> BlocksBeforeTry;
2614
2615 llvm::InlineAsm *ReadHazard;
2616 llvm::InlineAsm *WriteHazard;
2617
2618 llvm::FunctionType *GetAsmFnType();
2619
2620 void collectLocals();
2621 void emitReadHazard(CGBuilderTy &Builder);
2622
2623 public:
2624 FragileHazards(CodeGenFunction &CGF);
John McCall0b251722010-08-04 05:59:32 +00002625
John McCall87bb5822010-07-31 23:20:56 +00002626 void emitWriteHazard();
John McCall0b251722010-08-04 05:59:32 +00002627 void emitHazardsInNewBlocks();
John McCall87bb5822010-07-31 23:20:56 +00002628 };
2629}
2630
2631/// Create the fragile-ABI read and write hazards based on the current
2632/// state of the function, which is presumed to be immediately prior
2633/// to a @try block. These hazards are used to maintain correct
2634/// semantics in the face of optimization and the fragile ABI's
2635/// cavalier use of setjmp/longjmp.
2636FragileHazards::FragileHazards(CodeGenFunction &CGF) : CGF(CGF) {
2637 collectLocals();
2638
2639 if (Locals.empty()) return;
2640
2641 // Collect all the blocks in the function.
2642 for (llvm::Function::iterator
2643 I = CGF.CurFn->begin(), E = CGF.CurFn->end(); I != E; ++I)
2644 BlocksBeforeTry.insert(&*I);
2645
2646 llvm::FunctionType *AsmFnTy = GetAsmFnType();
2647
2648 // Create a read hazard for the allocas. This inhibits dead-store
2649 // optimizations and forces the values to memory. This hazard is
2650 // inserted before any 'throwing' calls in the protected scope to
2651 // reflect the possibility that the variables might be read from the
2652 // catch block if the call throws.
2653 {
2654 std::string Constraint;
2655 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
2656 if (I) Constraint += ',';
2657 Constraint += "*m";
2658 }
2659
2660 ReadHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false);
2661 }
2662
2663 // Create a write hazard for the allocas. This inhibits folding
2664 // loads across the hazard. This hazard is inserted at the
2665 // beginning of the catch path to reflect the possibility that the
2666 // variables might have been written within the protected scope.
2667 {
2668 std::string Constraint;
2669 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
2670 if (I) Constraint += ',';
2671 Constraint += "=*m";
2672 }
2673
2674 WriteHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false);
2675 }
2676}
2677
2678/// Emit a write hazard at the current location.
2679void FragileHazards::emitWriteHazard() {
2680 if (Locals.empty()) return;
2681
2682 CGF.Builder.CreateCall(WriteHazard, Locals.begin(), Locals.end())
2683 ->setDoesNotThrow();
2684}
2685
John McCall87bb5822010-07-31 23:20:56 +00002686void FragileHazards::emitReadHazard(CGBuilderTy &Builder) {
2687 assert(!Locals.empty());
2688 Builder.CreateCall(ReadHazard, Locals.begin(), Locals.end())
2689 ->setDoesNotThrow();
2690}
2691
2692/// Emit read hazards in all the protected blocks, i.e. all the blocks
2693/// which have been inserted since the beginning of the try.
John McCall0b251722010-08-04 05:59:32 +00002694void FragileHazards::emitHazardsInNewBlocks() {
John McCall87bb5822010-07-31 23:20:56 +00002695 if (Locals.empty()) return;
2696
2697 CGBuilderTy Builder(CGF.getLLVMContext());
2698
2699 // Iterate through all blocks, skipping those prior to the try.
2700 for (llvm::Function::iterator
2701 FI = CGF.CurFn->begin(), FE = CGF.CurFn->end(); FI != FE; ++FI) {
2702 llvm::BasicBlock &BB = *FI;
2703 if (BlocksBeforeTry.count(&BB)) continue;
2704
2705 // Walk through all the calls in the block.
2706 for (llvm::BasicBlock::iterator
2707 BI = BB.begin(), BE = BB.end(); BI != BE; ++BI) {
2708 llvm::Instruction &I = *BI;
2709
2710 // Ignore instructions that aren't non-intrinsic calls.
2711 // These are the only calls that can possibly call longjmp.
2712 if (!isa<llvm::CallInst>(I) && !isa<llvm::InvokeInst>(I)) continue;
2713 if (isa<llvm::IntrinsicInst>(I))
2714 continue;
2715
2716 // Ignore call sites marked nounwind. This may be questionable,
2717 // since 'nounwind' doesn't necessarily mean 'does not call longjmp'.
2718 llvm::CallSite CS(&I);
2719 if (CS.doesNotThrow()) continue;
2720
John McCall0b251722010-08-04 05:59:32 +00002721 // Insert a read hazard before the call. This will ensure that
2722 // any writes to the locals are performed before making the
2723 // call. If the call throws, then this is sufficient to
2724 // guarantee correctness as long as it doesn't also write to any
2725 // locals.
John McCall87bb5822010-07-31 23:20:56 +00002726 Builder.SetInsertPoint(&BB, BI);
2727 emitReadHazard(Builder);
2728 }
2729 }
2730}
2731
2732static void addIfPresent(llvm::DenseSet<llvm::Value*> &S, llvm::Value *V) {
2733 if (V) S.insert(V);
2734}
2735
2736void FragileHazards::collectLocals() {
2737 // Compute a set of allocas to ignore.
2738 llvm::DenseSet<llvm::Value*> AllocasToIgnore;
2739 addIfPresent(AllocasToIgnore, CGF.ReturnValue);
2740 addIfPresent(AllocasToIgnore, CGF.NormalCleanupDest);
2741 addIfPresent(AllocasToIgnore, CGF.EHCleanupDest);
2742
2743 // Collect all the allocas currently in the function. This is
2744 // probably way too aggressive.
2745 llvm::BasicBlock &Entry = CGF.CurFn->getEntryBlock();
2746 for (llvm::BasicBlock::iterator
2747 I = Entry.begin(), E = Entry.end(); I != E; ++I)
2748 if (isa<llvm::AllocaInst>(*I) && !AllocasToIgnore.count(&*I))
2749 Locals.push_back(&*I);
2750}
2751
2752llvm::FunctionType *FragileHazards::GetAsmFnType() {
2753 std::vector<const llvm::Type *> Tys(Locals.size());
2754 for (unsigned I = 0, E = Locals.size(); I != E; ++I)
2755 Tys[I] = Locals[I]->getType();
2756 return llvm::FunctionType::get(CGF.Builder.getVoidTy(), Tys, false);
John McCallcc505292010-07-21 06:59:36 +00002757}
2758
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002759/*
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002760
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002761 Objective-C setjmp-longjmp (sjlj) Exception Handling
2762 --
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002763
John McCallf1549f62010-07-06 01:34:17 +00002764 A catch buffer is a setjmp buffer plus:
2765 - a pointer to the exception that was caught
2766 - a pointer to the previous exception data buffer
2767 - two pointers of reserved storage
2768 Therefore catch buffers form a stack, with a pointer to the top
2769 of the stack kept in thread-local storage.
2770
2771 objc_exception_try_enter pushes a catch buffer onto the EH stack.
2772 objc_exception_try_exit pops the given catch buffer, which is
2773 required to be the top of the EH stack.
2774 objc_exception_throw pops the top of the EH stack, writes the
2775 thrown exception into the appropriate field, and longjmps
2776 to the setjmp buffer. It crashes the process (with a printf
2777 and an abort()) if there are no catch buffers on the stack.
2778 objc_exception_extract just reads the exception pointer out of the
2779 catch buffer.
2780
2781 There's no reason an implementation couldn't use a light-weight
2782 setjmp here --- something like __builtin_setjmp, but API-compatible
2783 with the heavyweight setjmp. This will be more important if we ever
2784 want to implement correct ObjC/C++ exception interactions for the
2785 fragile ABI.
2786
2787 Note that for this use of setjmp/longjmp to be correct, we may need
2788 to mark some local variables volatile: if a non-volatile local
2789 variable is modified between the setjmp and the longjmp, it has
2790 indeterminate value. For the purposes of LLVM IR, it may be
2791 sufficient to make loads and stores within the @try (to variables
2792 declared outside the @try) volatile. This is necessary for
2793 optimized correctness, but is not currently being done; this is
2794 being tracked as rdar://problem/8160285
2795
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002796 The basic framework for a @try-catch-finally is as follows:
2797 {
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002798 objc_exception_data d;
2799 id _rethrow = null;
Anders Carlsson190d00e2009-02-07 21:26:04 +00002800 bool _call_try_exit = true;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002801
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002802 objc_exception_try_enter(&d);
2803 if (!setjmp(d.jmp_buf)) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002804 ... try body ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002805 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002806 // exception path
2807 id _caught = objc_exception_extract(&d);
2808
2809 // enter new try scope for handlers
2810 if (!setjmp(d.jmp_buf)) {
2811 ... match exception and execute catch blocks ...
2812
2813 // fell off end, rethrow.
2814 _rethrow = _caught;
2815 ... jump-through-finally to finally_rethrow ...
2816 } else {
2817 // exception in catch block
2818 _rethrow = objc_exception_extract(&d);
2819 _call_try_exit = false;
2820 ... jump-through-finally to finally_rethrow ...
2821 }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002822 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00002823 ... jump-through-finally to finally_end ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002824
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002825 finally:
Anders Carlsson190d00e2009-02-07 21:26:04 +00002826 if (_call_try_exit)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002827 objc_exception_try_exit(&d);
Anders Carlsson190d00e2009-02-07 21:26:04 +00002828
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002829 ... finally block ....
Daniel Dunbar898d5082008-09-30 01:06:03 +00002830 ... dispatch to finally destination ...
2831
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002832 finally_rethrow:
Daniel Dunbar898d5082008-09-30 01:06:03 +00002833 objc_exception_throw(_rethrow);
2834
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002835 finally_end:
2836 }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002837
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002838 This framework differs slightly from the one gcc uses, in that gcc
2839 uses _rethrow to determine if objc_exception_try_exit should be called
2840 and if the object should be rethrown. This breaks in the face of
2841 throwing nil and introduces unnecessary branches.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002842
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002843 We specialize this framework for a few particular circumstances:
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002844
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002845 - If there are no catch blocks, then we avoid emitting the second
2846 exception handling context.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002847
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002848 - If there is a catch-all catch block (i.e. @catch(...) or @catch(id
2849 e)) we avoid emitting the code to rethrow an uncaught exception.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002850
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002851 - FIXME: If there is no @finally block we can do a few more
2852 simplifications.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002853
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002854 Rethrows and Jumps-Through-Finally
2855 --
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002856
John McCallf1549f62010-07-06 01:34:17 +00002857 '@throw;' is supported by pushing the currently-caught exception
2858 onto ObjCEHStack while the @catch blocks are emitted.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002859
John McCallf1549f62010-07-06 01:34:17 +00002860 Branches through the @finally block are handled with an ordinary
2861 normal cleanup. We do not register an EH cleanup; fragile-ABI ObjC
2862 exceptions are not compatible with C++ exceptions, and this is
2863 hardly the only place where this will go wrong.
Daniel Dunbar898d5082008-09-30 01:06:03 +00002864
John McCallf1549f62010-07-06 01:34:17 +00002865 @synchronized(expr) { stmt; } is emitted as if it were:
2866 id synch_value = expr;
2867 objc_sync_enter(synch_value);
2868 @try { stmt; } @finally { objc_sync_exit(synch_value); }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002869*/
2870
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00002871void CGObjCMac::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
2872 const Stmt &S) {
2873 bool isTry = isa<ObjCAtTryStmt>(S);
John McCallf1549f62010-07-06 01:34:17 +00002874
2875 // A destination for the fall-through edges of the catch handlers to
2876 // jump to.
2877 CodeGenFunction::JumpDest FinallyEnd =
2878 CGF.getJumpDestInCurrentScope("finally.end");
2879
2880 // A destination for the rethrow edge of the catch handlers to jump
2881 // to.
2882 CodeGenFunction::JumpDest FinallyRethrow =
2883 CGF.getJumpDestInCurrentScope("finally.rethrow");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002884
Daniel Dunbar1c566672009-02-24 01:43:46 +00002885 // For @synchronized, call objc_sync_enter(sync.expr). The
2886 // evaluation of the expression must occur before we enter the
John McCall0b251722010-08-04 05:59:32 +00002887 // @synchronized. We can't avoid a temp here because we need the
2888 // value to be preserved. If the backend ever does liveness
2889 // correctly after setjmp, this will be unnecessary.
2890 llvm::Value *SyncArgSlot = 0;
Daniel Dunbar1c566672009-02-24 01:43:46 +00002891 if (!isTry) {
John McCall0b251722010-08-04 05:59:32 +00002892 llvm::Value *SyncArg =
Daniel Dunbar1c566672009-02-24 01:43:46 +00002893 CGF.EmitScalarExpr(cast<ObjCAtSynchronizedStmt>(S).getSynchExpr());
2894 SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy);
John McCallf1549f62010-07-06 01:34:17 +00002895 CGF.Builder.CreateCall(ObjCTypes.getSyncEnterFn(), SyncArg)
2896 ->setDoesNotThrow();
John McCall0b251722010-08-04 05:59:32 +00002897
2898 SyncArgSlot = CGF.CreateTempAlloca(SyncArg->getType(), "sync.arg");
2899 CGF.Builder.CreateStore(SyncArg, SyncArgSlot);
Daniel Dunbar1c566672009-02-24 01:43:46 +00002900 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00002901
John McCall0b251722010-08-04 05:59:32 +00002902 // Allocate memory for the setjmp buffer. This needs to be kept
2903 // live throughout the try and catch blocks.
2904 llvm::Value *ExceptionData = CGF.CreateTempAlloca(ObjCTypes.ExceptionDataTy,
2905 "exceptiondata.ptr");
2906
John McCall87bb5822010-07-31 23:20:56 +00002907 // Create the fragile hazards. Note that this will not capture any
2908 // of the allocas required for exception processing, but will
2909 // capture the current basic block (which extends all the way to the
2910 // setjmp call) as "before the @try".
2911 FragileHazards Hazards(CGF);
2912
John McCallf1549f62010-07-06 01:34:17 +00002913 // Create a flag indicating whether the cleanup needs to call
2914 // objc_exception_try_exit. This is true except when
2915 // - no catches match and we're branching through the cleanup
2916 // just to rethrow the exception, or
2917 // - a catch matched and we're falling out of the catch handler.
John McCall0b251722010-08-04 05:59:32 +00002918 // The setjmp-safety rule here is that we should always store to this
2919 // variable in a place that dominates the branch through the cleanup
2920 // without passing through any setjmps.
John McCallf1549f62010-07-06 01:34:17 +00002921 llvm::Value *CallTryExitVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(),
Anders Carlsson190d00e2009-02-07 21:26:04 +00002922 "_call_try_exit");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002923
John McCallf1549f62010-07-06 01:34:17 +00002924 // Push a normal cleanup to leave the try scope.
John McCall1f0fca52010-07-21 07:22:38 +00002925 CGF.EHStack.pushCleanup<PerformFragileFinally>(NormalCleanup, &S,
John McCall0b251722010-08-04 05:59:32 +00002926 SyncArgSlot,
John McCall1f0fca52010-07-21 07:22:38 +00002927 CallTryExitVar,
2928 ExceptionData,
2929 &ObjCTypes);
John McCallf1549f62010-07-06 01:34:17 +00002930
2931 // Enter a try block:
2932 // - Call objc_exception_try_enter to push ExceptionData on top of
2933 // the EH stack.
2934 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData)
2935 ->setDoesNotThrow();
2936
2937 // - Call setjmp on the exception data buffer.
2938 llvm::Constant *Zero = llvm::ConstantInt::get(CGF.Builder.getInt32Ty(), 0);
2939 llvm::Value *GEPIndexes[] = { Zero, Zero, Zero };
2940 llvm::Value *SetJmpBuffer =
2941 CGF.Builder.CreateGEP(ExceptionData, GEPIndexes, GEPIndexes+3, "setjmp_buffer");
2942 llvm::CallInst *SetJmpResult =
2943 CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer, "setjmp_result");
2944 SetJmpResult->setDoesNotThrow();
2945
2946 // If setjmp returned 0, enter the protected block; otherwise,
2947 // branch to the handler.
Daniel Dunbar55e87422008-11-11 02:29:29 +00002948 llvm::BasicBlock *TryBlock = CGF.createBasicBlock("try");
2949 llvm::BasicBlock *TryHandler = CGF.createBasicBlock("try.handler");
John McCallf1549f62010-07-06 01:34:17 +00002950 llvm::Value *DidCatch =
2951 CGF.Builder.CreateIsNull(SetJmpResult, "did_catch_exception");
2952 CGF.Builder.CreateCondBr(DidCatch, TryBlock, TryHandler);
Anders Carlsson80f25672008-09-09 17:59:25 +00002953
John McCallf1549f62010-07-06 01:34:17 +00002954 // Emit the protected block.
Anders Carlsson80f25672008-09-09 17:59:25 +00002955 CGF.EmitBlock(TryBlock);
John McCall0b251722010-08-04 05:59:32 +00002956 CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002957 CGF.EmitStmt(isTry ? cast<ObjCAtTryStmt>(S).getTryBody()
John McCallf1549f62010-07-06 01:34:17 +00002958 : cast<ObjCAtSynchronizedStmt>(S).getSynchBody());
John McCall0b251722010-08-04 05:59:32 +00002959
2960 CGBuilderTy::InsertPoint TryFallthroughIP = CGF.Builder.saveAndClearIP();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002961
John McCallf1549f62010-07-06 01:34:17 +00002962 // Emit the exception handler block.
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00002963 CGF.EmitBlock(TryHandler);
Daniel Dunbar55e40722008-09-27 07:03:52 +00002964
John McCall87bb5822010-07-31 23:20:56 +00002965 // Don't optimize loads of the in-scope locals across this point.
2966 Hazards.emitWriteHazard();
2967
John McCallf1549f62010-07-06 01:34:17 +00002968 // For a @synchronized (or a @try with no catches), just branch
2969 // through the cleanup to the rethrow block.
2970 if (!isTry || !cast<ObjCAtTryStmt>(S).getNumCatchStmts()) {
2971 // Tell the cleanup not to re-pop the exit.
John McCall0b251722010-08-04 05:59:32 +00002972 CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00002973 CGF.EmitBranchThroughCleanup(FinallyRethrow);
John McCallf1549f62010-07-06 01:34:17 +00002974
2975 // Otherwise, we have to match against the caught exceptions.
2976 } else {
John McCall0b251722010-08-04 05:59:32 +00002977 // Retrieve the exception object. We may emit multiple blocks but
2978 // nothing can cross this so the value is already in SSA form.
2979 llvm::CallInst *Caught =
2980 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
2981 ExceptionData, "caught");
2982 Caught->setDoesNotThrow();
2983
John McCallf1549f62010-07-06 01:34:17 +00002984 // Push the exception to rethrow onto the EH value stack for the
2985 // benefit of any @throws in the handlers.
2986 CGF.ObjCEHValueStack.push_back(Caught);
2987
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00002988 const ObjCAtTryStmt* AtTryStmt = cast<ObjCAtTryStmt>(&S);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002989
John McCall0b251722010-08-04 05:59:32 +00002990 bool HasFinally = (AtTryStmt->getFinallyStmt() != 0);
John McCallf1549f62010-07-06 01:34:17 +00002991
John McCall0b251722010-08-04 05:59:32 +00002992 llvm::BasicBlock *CatchBlock = 0;
2993 llvm::BasicBlock *CatchHandler = 0;
2994 if (HasFinally) {
2995 // Enter a new exception try block (in case a @catch block
2996 // throws an exception).
2997 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData)
2998 ->setDoesNotThrow();
Anders Carlsson80f25672008-09-09 17:59:25 +00002999
John McCall0b251722010-08-04 05:59:32 +00003000 llvm::CallInst *SetJmpResult =
3001 CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer,
3002 "setjmp.result");
3003 SetJmpResult->setDoesNotThrow();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003004
John McCall0b251722010-08-04 05:59:32 +00003005 llvm::Value *Threw =
3006 CGF.Builder.CreateIsNotNull(SetJmpResult, "did_catch_exception");
3007
3008 CatchBlock = CGF.createBasicBlock("catch");
3009 CatchHandler = CGF.createBasicBlock("catch_for_catch");
3010 CGF.Builder.CreateCondBr(Threw, CatchHandler, CatchBlock);
3011
3012 CGF.EmitBlock(CatchBlock);
3013 }
3014
3015 CGF.Builder.CreateStore(CGF.Builder.getInt1(HasFinally), CallTryExitVar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003016
Daniel Dunbar55e40722008-09-27 07:03:52 +00003017 // Handle catch list. As a special case we check if everything is
3018 // matched and avoid generating code for falling off the end if
3019 // so.
3020 bool AllMatched = false;
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00003021 for (unsigned I = 0, N = AtTryStmt->getNumCatchStmts(); I != N; ++I) {
3022 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I);
Anders Carlsson80f25672008-09-09 17:59:25 +00003023
Douglas Gregorc00d8e12010-04-26 16:46:50 +00003024 const VarDecl *CatchParam = CatchStmt->getCatchParamDecl();
Steve Naroff14108da2009-07-10 23:34:53 +00003025 const ObjCObjectPointerType *OPT = 0;
Daniel Dunbar129271a2008-09-27 07:36:24 +00003026
Anders Carlsson80f25672008-09-09 17:59:25 +00003027 // catch(...) always matches.
Daniel Dunbar55e40722008-09-27 07:03:52 +00003028 if (!CatchParam) {
3029 AllMatched = true;
3030 } else {
John McCall183700f2009-09-21 23:43:11 +00003031 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003032
John McCallf1549f62010-07-06 01:34:17 +00003033 // catch(id e) always matches under this ABI, since only
3034 // ObjC exceptions end up here in the first place.
Daniel Dunbar97f61d12008-09-27 22:21:14 +00003035 // FIXME: For the time being we also match id<X>; this should
3036 // be rejected by Sema instead.
Eli Friedman818e96f2009-07-11 00:57:02 +00003037 if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType()))
Daniel Dunbar55e40722008-09-27 07:03:52 +00003038 AllMatched = true;
Anders Carlsson80f25672008-09-09 17:59:25 +00003039 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003040
John McCallf1549f62010-07-06 01:34:17 +00003041 // If this is a catch-all, we don't need to test anything.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003042 if (AllMatched) {
John McCallf1549f62010-07-06 01:34:17 +00003043 CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF);
3044
Anders Carlssondde0a942008-09-11 09:15:33 +00003045 if (CatchParam) {
Steve Naroff7ba138a2009-03-03 19:52:17 +00003046 CGF.EmitLocalBlockVarDecl(*CatchParam);
Daniel Dunbara448fb22008-11-11 23:11:34 +00003047 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
John McCallf1549f62010-07-06 01:34:17 +00003048
3049 // These types work out because ConvertType(id) == i8*.
Steve Naroff7ba138a2009-03-03 19:52:17 +00003050 CGF.Builder.CreateStore(Caught, CGF.GetAddrOfLocalVar(CatchParam));
Anders Carlssondde0a942008-09-11 09:15:33 +00003051 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003052
Anders Carlssondde0a942008-09-11 09:15:33 +00003053 CGF.EmitStmt(CatchStmt->getCatchBody());
John McCallf1549f62010-07-06 01:34:17 +00003054
3055 // The scope of the catch variable ends right here.
3056 CatchVarCleanups.ForceCleanup();
3057
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003058 CGF.EmitBranchThroughCleanup(FinallyEnd);
Anders Carlsson80f25672008-09-09 17:59:25 +00003059 break;
3060 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003061
Steve Naroff14108da2009-07-10 23:34:53 +00003062 assert(OPT && "Unexpected non-object pointer type in @catch");
John McCall506b57e2010-05-17 21:00:27 +00003063 const ObjCObjectType *ObjTy = OPT->getObjectType();
John McCallf1549f62010-07-06 01:34:17 +00003064
3065 // FIXME: @catch (Class c) ?
John McCall506b57e2010-05-17 21:00:27 +00003066 ObjCInterfaceDecl *IDecl = ObjTy->getInterface();
3067 assert(IDecl && "Catch parameter must have Objective-C type!");
Anders Carlsson80f25672008-09-09 17:59:25 +00003068
3069 // Check if the @catch block matches the exception object.
John McCall506b57e2010-05-17 21:00:27 +00003070 llvm::Value *Class = EmitClassRef(CGF.Builder, IDecl);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003071
John McCallf1549f62010-07-06 01:34:17 +00003072 llvm::CallInst *Match =
Chris Lattner34b02a12009-04-22 02:26:14 +00003073 CGF.Builder.CreateCall2(ObjCTypes.getExceptionMatchFn(),
3074 Class, Caught, "match");
John McCallf1549f62010-07-06 01:34:17 +00003075 Match->setDoesNotThrow();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003076
John McCallf1549f62010-07-06 01:34:17 +00003077 llvm::BasicBlock *MatchedBlock = CGF.createBasicBlock("match");
3078 llvm::BasicBlock *NextCatchBlock = CGF.createBasicBlock("catch.next");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003079
3080 CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(Match, "matched"),
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00003081 MatchedBlock, NextCatchBlock);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003082
Anders Carlsson80f25672008-09-09 17:59:25 +00003083 // Emit the @catch block.
3084 CGF.EmitBlock(MatchedBlock);
John McCallf1549f62010-07-06 01:34:17 +00003085
3086 // Collect any cleanups for the catch variable. The scope lasts until
3087 // the end of the catch body.
John McCall0b251722010-08-04 05:59:32 +00003088 CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF);
John McCallf1549f62010-07-06 01:34:17 +00003089
Steve Naroff7ba138a2009-03-03 19:52:17 +00003090 CGF.EmitLocalBlockVarDecl(*CatchParam);
Daniel Dunbara448fb22008-11-11 23:11:34 +00003091 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003092
John McCallf1549f62010-07-06 01:34:17 +00003093 // Initialize the catch variable.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003094 llvm::Value *Tmp =
3095 CGF.Builder.CreateBitCast(Caught,
3096 CGF.ConvertType(CatchParam->getType()),
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003097 "tmp");
Steve Naroff7ba138a2009-03-03 19:52:17 +00003098 CGF.Builder.CreateStore(Tmp, CGF.GetAddrOfLocalVar(CatchParam));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003099
Anders Carlssondde0a942008-09-11 09:15:33 +00003100 CGF.EmitStmt(CatchStmt->getCatchBody());
John McCallf1549f62010-07-06 01:34:17 +00003101
3102 // We're done with the catch variable.
3103 CatchVarCleanups.ForceCleanup();
3104
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003105 CGF.EmitBranchThroughCleanup(FinallyEnd);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003106
Anders Carlsson80f25672008-09-09 17:59:25 +00003107 CGF.EmitBlock(NextCatchBlock);
3108 }
3109
John McCallf1549f62010-07-06 01:34:17 +00003110 CGF.ObjCEHValueStack.pop_back();
3111
John McCall0b251722010-08-04 05:59:32 +00003112 // If nothing wanted anything to do with the caught exception,
3113 // kill the extract call.
3114 if (Caught->use_empty())
3115 Caught->eraseFromParent();
3116
3117 if (!AllMatched)
3118 CGF.EmitBranchThroughCleanup(FinallyRethrow);
3119
3120 if (HasFinally) {
3121 // Emit the exception handler for the @catch blocks.
3122 CGF.EmitBlock(CatchHandler);
3123
3124 // In theory we might now need a write hazard, but actually it's
3125 // unnecessary because there's no local-accessing code between
3126 // the try's write hazard and here.
3127 //Hazards.emitWriteHazard();
3128
3129 // Don't pop the catch handler; the throw already did.
3130 CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003131 CGF.EmitBranchThroughCleanup(FinallyRethrow);
Daniel Dunbar55e40722008-09-27 07:03:52 +00003132 }
Anders Carlsson80f25672008-09-09 17:59:25 +00003133 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003134
John McCall87bb5822010-07-31 23:20:56 +00003135 // Insert read hazards as required in the new blocks.
John McCall0b251722010-08-04 05:59:32 +00003136 Hazards.emitHazardsInNewBlocks();
John McCall87bb5822010-07-31 23:20:56 +00003137
John McCallf1549f62010-07-06 01:34:17 +00003138 // Pop the cleanup.
John McCall0b251722010-08-04 05:59:32 +00003139 CGF.Builder.restoreIP(TryFallthroughIP);
3140 if (CGF.HaveInsertPoint())
3141 CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar);
John McCallf1549f62010-07-06 01:34:17 +00003142 CGF.PopCleanupBlock();
John McCall0b251722010-08-04 05:59:32 +00003143 CGF.EmitBlock(FinallyEnd.getBlock(), true);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003144
John McCallf1549f62010-07-06 01:34:17 +00003145 // Emit the rethrow block.
John McCall87bb5822010-07-31 23:20:56 +00003146 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
John McCallff8e1152010-07-23 21:56:41 +00003147 CGF.EmitBlock(FinallyRethrow.getBlock(), true);
John McCallf1549f62010-07-06 01:34:17 +00003148 if (CGF.HaveInsertPoint()) {
John McCall0b251722010-08-04 05:59:32 +00003149 // Just look in the buffer for the exception to throw.
3150 llvm::CallInst *Caught =
3151 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3152 ExceptionData);
3153 Caught->setDoesNotThrow();
3154
3155 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), Caught)
John McCallf1549f62010-07-06 01:34:17 +00003156 ->setDoesNotThrow();
3157 CGF.Builder.CreateUnreachable();
Fariborz Jahanianf2878e52008-11-21 19:21:53 +00003158 }
Anders Carlsson80f25672008-09-09 17:59:25 +00003159
John McCall87bb5822010-07-31 23:20:56 +00003160 CGF.Builder.restoreIP(SavedIP);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00003161}
3162
3163void CGObjCMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar898d5082008-09-30 01:06:03 +00003164 const ObjCAtThrowStmt &S) {
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003165 llvm::Value *ExceptionAsObject;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003166
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003167 if (const Expr *ThrowExpr = S.getThrowExpr()) {
3168 llvm::Value *Exception = CGF.EmitScalarExpr(ThrowExpr);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003169 ExceptionAsObject =
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003170 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy, "tmp");
3171 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003172 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003173 "Unexpected rethrow outside @catch block.");
Anders Carlsson273558f2009-02-07 21:37:21 +00003174 ExceptionAsObject = CGF.ObjCEHValueStack.back();
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003175 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003176
John McCallf1549f62010-07-06 01:34:17 +00003177 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), ExceptionAsObject)
3178 ->setDoesNotReturn();
Anders Carlsson80f25672008-09-09 17:59:25 +00003179 CGF.Builder.CreateUnreachable();
Daniel Dunbara448fb22008-11-11 23:11:34 +00003180
3181 // Clear the insertion point to indicate we are in unreachable code.
3182 CGF.Builder.ClearInsertionPoint();
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00003183}
3184
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003185/// EmitObjCWeakRead - Code gen for loading value of a __weak
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00003186/// object: objc_read_weak (id *src)
3187///
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003188llvm::Value * CGObjCMac::EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003189 llvm::Value *AddrWeakObj) {
Eli Friedman8339b352009-03-07 03:57:15 +00003190 const llvm::Type* DestTy =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003191 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
3192 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj,
3193 ObjCTypes.PtrObjectPtrTy);
Chris Lattner72db6c32009-04-22 02:44:54 +00003194 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003195 AddrWeakObj, "weakread");
Eli Friedman8339b352009-03-07 03:57:15 +00003196 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00003197 return read_weak;
3198}
3199
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003200/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
3201/// objc_assign_weak (id src, id *dst)
3202///
3203void CGObjCMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003204 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003205 const llvm::Type * SrcTy = src->getType();
3206 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003207 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003208 assert(Size <= 8 && "does not support size > 8");
3209 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003210 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003211 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3212 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003213 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3214 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner96508e12009-04-17 22:12:36 +00003215 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003216 src, dst, "weakassign");
3217 return;
3218}
3219
Fariborz Jahanian58626502008-11-19 00:59:10 +00003220/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
3221/// objc_assign_global (id src, id *dst)
3222///
3223void CGObjCMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00003224 llvm::Value *src, llvm::Value *dst,
3225 bool threadlocal) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003226 const llvm::Type * SrcTy = src->getType();
3227 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003228 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003229 assert(Size <= 8 && "does not support size > 8");
3230 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003231 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003232 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3233 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003234 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3235 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00003236 if (!threadlocal)
3237 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
3238 src, dst, "globalassign");
3239 else
3240 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignThreadLocalFn(),
3241 src, dst, "threadlocalassign");
Fariborz Jahanian58626502008-11-19 00:59:10 +00003242 return;
3243}
3244
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003245/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003246/// objc_assign_ivar (id src, id *dst, ptrdiff_t ivaroffset)
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003247///
3248void CGObjCMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003249 llvm::Value *src, llvm::Value *dst,
3250 llvm::Value *ivarOffset) {
3251 assert(ivarOffset && "EmitObjCIvarAssign - ivarOffset is NULL");
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003252 const llvm::Type * SrcTy = src->getType();
3253 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003254 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003255 assert(Size <= 8 && "does not support size > 8");
3256 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003257 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003258 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3259 }
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003260 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3261 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003262 CGF.Builder.CreateCall3(ObjCTypes.getGcAssignIvarFn(),
3263 src, dst, ivarOffset);
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003264 return;
3265}
3266
Fariborz Jahanian58626502008-11-19 00:59:10 +00003267/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
3268/// objc_assign_strongCast (id src, id *dst)
3269///
3270void CGObjCMac::EmitObjCStrongCastAssign(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 Lattnerbbccd612009-04-22 02:38:11 +00003282 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian58626502008-11-19 00:59:10 +00003283 src, dst, "weakassign");
3284 return;
3285}
3286
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003287void CGObjCMac::EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003288 llvm::Value *DestPtr,
3289 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00003290 llvm::Value *size) {
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003291 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy);
3292 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003293 CGF.Builder.CreateCall3(ObjCTypes.GcMemmoveCollectableFn(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00003294 DestPtr, SrcPtr, size);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003295 return;
3296}
3297
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00003298/// EmitObjCValueForIvar - Code Gen for ivar reference.
3299///
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00003300LValue CGObjCMac::EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
3301 QualType ObjectTy,
3302 llvm::Value *BaseValue,
3303 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00003304 unsigned CVRQualifiers) {
John McCallc12c5bb2010-05-15 11:32:37 +00003305 const ObjCInterfaceDecl *ID =
3306 ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar97776872009-04-22 07:32:20 +00003307 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
3308 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00003309}
3310
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003311llvm::Value *CGObjCMac::EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00003312 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003313 const ObjCIvarDecl *Ivar) {
Daniel Dunbar97776872009-04-22 07:32:20 +00003314 uint64_t Offset = ComputeIvarBaseOffset(CGM, Interface, Ivar);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003315 return llvm::ConstantInt::get(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003316 CGM.getTypes().ConvertType(CGM.getContext().LongTy),
3317 Offset);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003318}
3319
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003320/* *** Private Interface *** */
3321
3322/// EmitImageInfo - Emit the image info marker used to encode some module
3323/// level information.
3324///
3325/// See: <rdr://4810609&4810587&4810587>
3326/// struct IMAGE_INFO {
3327/// unsigned version;
3328/// unsigned flags;
3329/// };
3330enum ImageInfoFlags {
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003331 eImageInfo_FixAndContinue = (1 << 0),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003332 eImageInfo_GarbageCollected = (1 << 1),
3333 eImageInfo_GCOnly = (1 << 2),
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003334 eImageInfo_OptimizedByDyld = (1 << 3), // FIXME: When is this set.
3335
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003336 // A flag indicating that the module has no instances of a @synthesize of a
3337 // superclass variable. <rdar://problem/6803242>
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003338 eImageInfo_CorrectedSynthesize = (1 << 4)
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003339};
3340
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003341void CGObjCCommonMac::EmitImageInfo() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003342 unsigned version = 0; // Version is unused?
3343 unsigned flags = 0;
3344
3345 // FIXME: Fix and continue?
3346 if (CGM.getLangOptions().getGCMode() != LangOptions::NonGC)
3347 flags |= eImageInfo_GarbageCollected;
3348 if (CGM.getLangOptions().getGCMode() == LangOptions::GCOnly)
3349 flags |= eImageInfo_GCOnly;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003350
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003351 // We never allow @synthesize of a superclass property.
3352 flags |= eImageInfo_CorrectedSynthesize;
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003353
Chris Lattner77b89b82010-06-27 07:15:29 +00003354 const llvm::Type *Int32Ty = llvm::Type::getInt32Ty(VMContext);
3355
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003356 // Emitted as int[2];
3357 llvm::Constant *values[2] = {
Chris Lattner77b89b82010-06-27 07:15:29 +00003358 llvm::ConstantInt::get(Int32Ty, version),
3359 llvm::ConstantInt::get(Int32Ty, flags)
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003360 };
Chris Lattner77b89b82010-06-27 07:15:29 +00003361 llvm::ArrayType *AT = llvm::ArrayType::get(Int32Ty, 2);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003362
3363 const char *Section;
3364 if (ObjCABI == 1)
3365 Section = "__OBJC, __image_info,regular";
3366 else
3367 Section = "__DATA, __objc_imageinfo, regular, no_dead_strip";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003368 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003369 CreateMetadataVar("\01L_OBJC_IMAGE_INFO",
Owen Anderson7db6d832009-07-28 18:33:04 +00003370 llvm::ConstantArray::get(AT, values, 2),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003371 Section,
3372 0,
3373 true);
3374 GV->setConstant(true);
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003375}
3376
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003377
3378// struct objc_module {
3379// unsigned long version;
3380// unsigned long size;
3381// const char *name;
3382// Symtab symtab;
3383// };
3384
3385// FIXME: Get from somewhere
3386static const int ModuleVersion = 7;
3387
3388void CGObjCMac::EmitModuleInfo() {
Duncan Sands9408c452009-05-09 07:08:47 +00003389 uint64_t Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ModuleTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003390
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003391 std::vector<llvm::Constant*> Values(4);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003392 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, ModuleVersion);
3393 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00003394 // This used to be the filename, now it is unused. <rdr://4327263>
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003395 Values[2] = GetClassName(&CGM.getContext().Idents.get(""));
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003396 Values[3] = EmitModuleSymbols();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003397 CreateMetadataVar("\01L_OBJC_MODULES",
Owen Anderson08e25242009-07-27 22:29:56 +00003398 llvm::ConstantStruct::get(ObjCTypes.ModuleTy, Values),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003399 "__OBJC,__module_info,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00003400 4, true);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003401}
3402
3403llvm::Constant *CGObjCMac::EmitModuleSymbols() {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003404 unsigned NumClasses = DefinedClasses.size();
3405 unsigned NumCategories = DefinedCategories.size();
3406
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003407 // Return null if no symbols were defined.
3408 if (!NumClasses && !NumCategories)
Owen Andersonc9c88b42009-07-31 20:28:54 +00003409 return llvm::Constant::getNullValue(ObjCTypes.SymtabPtrTy);
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003410
3411 std::vector<llvm::Constant*> Values(5);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003412 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
Owen Andersonc9c88b42009-07-31 20:28:54 +00003413 Values[1] = llvm::Constant::getNullValue(ObjCTypes.SelectorPtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003414 Values[2] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumClasses);
3415 Values[3] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumCategories);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003416
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003417 // The runtime expects exactly the list of defined classes followed
3418 // by the list of defined categories, in a single array.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003419 std::vector<llvm::Constant*> Symbols(NumClasses + NumCategories);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003420 for (unsigned i=0; i<NumClasses; i++)
Owen Anderson3c4972d2009-07-29 18:54:39 +00003421 Symbols[i] = llvm::ConstantExpr::getBitCast(DefinedClasses[i],
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003422 ObjCTypes.Int8PtrTy);
3423 for (unsigned i=0; i<NumCategories; i++)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003424 Symbols[NumClasses + i] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003425 llvm::ConstantExpr::getBitCast(DefinedCategories[i],
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003426 ObjCTypes.Int8PtrTy);
3427
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003428 Values[4] =
Owen Anderson96e0fc72009-07-29 22:16:19 +00003429 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003430 NumClasses + NumCategories),
3431 Symbols);
3432
Nick Lewycky0d36dd22009-09-19 20:00:52 +00003433 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003434
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003435 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003436 CreateMetadataVar("\01L_OBJC_SYMBOLS", Init,
3437 "__OBJC,__symbols,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003438 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00003439 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.SymtabPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003440}
3441
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003442llvm::Value *CGObjCMac::EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003443 const ObjCInterfaceDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003444 LazySymbols.insert(ID->getIdentifier());
3445
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003446 llvm::GlobalVariable *&Entry = ClassReferences[ID->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003447
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003448 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003449 llvm::Constant *Casted =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003450 llvm::ConstantExpr::getBitCast(GetClassName(ID->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003451 ObjCTypes.ClassPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003452 Entry =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003453 CreateMetadataVar("\01L_OBJC_CLASS_REFERENCES_", Casted,
3454 "__OBJC,__cls_refs,literal_pointers,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003455 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003456 }
3457
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00003458 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003459}
3460
Fariborz Jahanian03b29602010-06-17 19:56:20 +00003461llvm::Value *CGObjCMac::EmitSelector(CGBuilderTy &Builder, Selector Sel,
3462 bool lvalue) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003463 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003464
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003465 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003466 llvm::Constant *Casted =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003467 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003468 ObjCTypes.SelectorPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003469 Entry =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003470 CreateMetadataVar("\01L_OBJC_SELECTOR_REFERENCES_", Casted,
3471 "__OBJC,__message_refs,literal_pointers,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003472 4, true);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003473 }
3474
Fariborz Jahanian03b29602010-06-17 19:56:20 +00003475 if (lvalue)
3476 return Entry;
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00003477 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003478}
3479
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00003480llvm::Constant *CGObjCCommonMac::GetClassName(IdentifierInfo *Ident) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003481 llvm::GlobalVariable *&Entry = ClassNames[Ident];
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003482
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003483 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003484 Entry = CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00003485 llvm::ConstantArray::get(VMContext,
3486 Ident->getNameStart()),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003487 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003488 1, true);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003489
Owen Andersona1cf15f2009-07-14 23:10:40 +00003490 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003491}
3492
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +00003493/// GetIvarLayoutName - Returns a unique constant for the given
3494/// ivar layout bitmap.
3495llvm::Constant *CGObjCCommonMac::GetIvarLayoutName(IdentifierInfo *Ident,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003496 const ObjCCommonTypesHelper &ObjCTypes) {
Owen Andersonc9c88b42009-07-31 20:28:54 +00003497 return llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +00003498}
3499
John McCall0953e762009-09-24 19:53:00 +00003500static Qualifiers::GC GetGCAttrTypeForType(ASTContext &Ctx, QualType FQT) {
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003501 if (FQT.isObjCGCStrong())
John McCall0953e762009-09-24 19:53:00 +00003502 return Qualifiers::Strong;
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003503
3504 if (FQT.isObjCGCWeak())
John McCall0953e762009-09-24 19:53:00 +00003505 return Qualifiers::Weak;
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003506
Fariborz Jahanian039e6a12009-09-11 17:39:05 +00003507 if (FQT->isObjCObjectPointerType() || FQT->isBlockPointerType())
John McCall0953e762009-09-24 19:53:00 +00003508 return Qualifiers::Strong;
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003509
Ted Kremenek6217b802009-07-29 21:53:49 +00003510 if (const PointerType *PT = FQT->getAs<PointerType>())
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003511 return GetGCAttrTypeForType(Ctx, PT->getPointeeType());
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003512
John McCall0953e762009-09-24 19:53:00 +00003513 return Qualifiers::GCNone;
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003514}
3515
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003516void CGObjCCommonMac::BuildAggrIvarRecordLayout(const RecordType *RT,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003517 unsigned int BytePos,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003518 bool ForStrongLayout,
3519 bool &HasUnion) {
3520 const RecordDecl *RD = RT->getDecl();
3521 // FIXME - Use iterator.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003522 llvm::SmallVector<FieldDecl*, 16> Fields(RD->field_begin(), RD->field_end());
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003523 const llvm::Type *Ty = CGM.getTypes().ConvertType(QualType(RT, 0));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003524 const llvm::StructLayout *RecLayout =
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003525 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(Ty));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003526
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003527 BuildAggrIvarLayout(0, RecLayout, RD, Fields, BytePos,
3528 ForStrongLayout, HasUnion);
3529}
3530
Daniel Dunbar5a5a8032009-05-03 21:05:10 +00003531void CGObjCCommonMac::BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003532 const llvm::StructLayout *Layout,
3533 const RecordDecl *RD,
Chris Lattnerf1690852009-03-31 08:48:01 +00003534 const llvm::SmallVectorImpl<FieldDecl*> &RecFields,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003535 unsigned int BytePos, bool ForStrongLayout,
3536 bool &HasUnion) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003537 bool IsUnion = (RD && RD->isUnion());
3538 uint64_t MaxUnionIvarSize = 0;
3539 uint64_t MaxSkippedUnionIvarSize = 0;
3540 FieldDecl *MaxField = 0;
3541 FieldDecl *MaxSkippedField = 0;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003542 FieldDecl *LastFieldBitfield = 0;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003543 uint64_t MaxFieldOffset = 0;
3544 uint64_t MaxSkippedFieldOffset = 0;
3545 uint64_t LastBitfieldOffset = 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003546
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003547 if (RecFields.empty())
3548 return;
Chris Lattnerf1690852009-03-31 08:48:01 +00003549 unsigned WordSizeInBits = CGM.getContext().Target.getPointerWidth(0);
3550 unsigned ByteSizeInBits = CGM.getContext().Target.getCharWidth();
3551
Chris Lattnerf1690852009-03-31 08:48:01 +00003552 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003553 FieldDecl *Field = RecFields[i];
Daniel Dunbare05cc982009-05-03 23:35:23 +00003554 uint64_t FieldOffset;
Anders Carlssonfc514ab2009-07-24 17:23:54 +00003555 if (RD) {
Daniel Dunbarf8f8eba2010-04-14 17:02:21 +00003556 // Note that 'i' here is actually the field index inside RD of Field,
3557 // although this dependency is hidden.
3558 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
3559 FieldOffset = RL.getFieldOffset(i) / 8;
Anders Carlssonfc514ab2009-07-24 17:23:54 +00003560 } else
Daniel Dunbare05cc982009-05-03 23:35:23 +00003561 FieldOffset = ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(Field));
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003562
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003563 // Skip over unnamed or bitfields
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003564 if (!Field->getIdentifier() || Field->isBitField()) {
3565 LastFieldBitfield = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003566 LastBitfieldOffset = FieldOffset;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003567 continue;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003568 }
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003569
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003570 LastFieldBitfield = 0;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003571 QualType FQT = Field->getType();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003572 if (FQT->isRecordType() || FQT->isUnionType()) {
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003573 if (FQT->isUnionType())
3574 HasUnion = true;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003575
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003576 BuildAggrIvarRecordLayout(FQT->getAs<RecordType>(),
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003577 BytePos + FieldOffset,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003578 ForStrongLayout, HasUnion);
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003579 continue;
3580 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003581
Chris Lattnerf1690852009-03-31 08:48:01 +00003582 if (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003583 const ConstantArrayType *CArray =
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003584 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003585 uint64_t ElCount = CArray->getSize().getZExtValue();
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003586 assert(CArray && "only array with known element size is supported");
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003587 FQT = CArray->getElementType();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003588 while (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
3589 const ConstantArrayType *CArray =
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003590 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003591 ElCount *= CArray->getSize().getZExtValue();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003592 FQT = CArray->getElementType();
3593 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003594
3595 assert(!FQT->isUnionType() &&
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003596 "layout for array of unions not supported");
3597 if (FQT->isRecordType()) {
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003598 int OldIndex = IvarsInfo.size() - 1;
3599 int OldSkIndex = SkipIvars.size() -1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003600
Ted Kremenek6217b802009-07-29 21:53:49 +00003601 const RecordType *RT = FQT->getAs<RecordType>();
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003602 BuildAggrIvarRecordLayout(RT, BytePos + FieldOffset,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003603 ForStrongLayout, HasUnion);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003604
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003605 // Replicate layout information for each array element. Note that
3606 // one element is already done.
3607 uint64_t ElIx = 1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003608 for (int FirstIndex = IvarsInfo.size() - 1,
3609 FirstSkIndex = SkipIvars.size() - 1 ;ElIx < ElCount; ElIx++) {
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003610 uint64_t Size = CGM.getContext().getTypeSize(RT)/ByteSizeInBits;
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003611 for (int i = OldIndex+1; i <= FirstIndex; ++i)
3612 IvarsInfo.push_back(GC_IVAR(IvarsInfo[i].ivar_bytepos + Size*ElIx,
3613 IvarsInfo[i].ivar_size));
3614 for (int i = OldSkIndex+1; i <= FirstSkIndex; ++i)
3615 SkipIvars.push_back(GC_IVAR(SkipIvars[i].ivar_bytepos + Size*ElIx,
3616 SkipIvars[i].ivar_size));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003617 }
3618 continue;
3619 }
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003620 }
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003621 // At this point, we are done with Record/Union and array there of.
3622 // For other arrays we are down to its element type.
John McCall0953e762009-09-24 19:53:00 +00003623 Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), FQT);
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003624
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003625 unsigned FieldSize = CGM.getContext().getTypeSize(Field->getType());
John McCall0953e762009-09-24 19:53:00 +00003626 if ((ForStrongLayout && GCAttr == Qualifiers::Strong)
3627 || (!ForStrongLayout && GCAttr == Qualifiers::Weak)) {
Daniel Dunbar487993b2009-05-03 13:32:01 +00003628 if (IsUnion) {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003629 uint64_t UnionIvarSize = FieldSize / WordSizeInBits;
Daniel Dunbar487993b2009-05-03 13:32:01 +00003630 if (UnionIvarSize > MaxUnionIvarSize) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003631 MaxUnionIvarSize = UnionIvarSize;
3632 MaxField = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003633 MaxFieldOffset = FieldOffset;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003634 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003635 } else {
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003636 IvarsInfo.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003637 FieldSize / WordSizeInBits));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003638 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003639 } else if ((ForStrongLayout &&
John McCall0953e762009-09-24 19:53:00 +00003640 (GCAttr == Qualifiers::GCNone || GCAttr == Qualifiers::Weak))
3641 || (!ForStrongLayout && GCAttr != Qualifiers::Weak)) {
Daniel Dunbar487993b2009-05-03 13:32:01 +00003642 if (IsUnion) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00003643 // FIXME: Why the asymmetry? We divide by word size in bits on other
3644 // side.
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003645 uint64_t UnionIvarSize = FieldSize;
Daniel Dunbar487993b2009-05-03 13:32:01 +00003646 if (UnionIvarSize > MaxSkippedUnionIvarSize) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003647 MaxSkippedUnionIvarSize = UnionIvarSize;
3648 MaxSkippedField = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003649 MaxSkippedFieldOffset = FieldOffset;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003650 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003651 } else {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003652 // FIXME: Why the asymmetry, we divide by byte size in bits here?
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003653 SkipIvars.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003654 FieldSize / ByteSizeInBits));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003655 }
3656 }
3657 }
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003658
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003659 if (LastFieldBitfield) {
3660 // Last field was a bitfield. Must update skip info.
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003661 Expr *BitWidth = LastFieldBitfield->getBitWidth();
3662 uint64_t BitFieldSize =
Eli Friedman9a901bb2009-04-26 19:19:15 +00003663 BitWidth->EvaluateAsInt(CGM.getContext()).getZExtValue();
Daniel Dunbar487993b2009-05-03 13:32:01 +00003664 GC_IVAR skivar;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003665 skivar.ivar_bytepos = BytePos + LastBitfieldOffset;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003666 skivar.ivar_size = (BitFieldSize / ByteSizeInBits)
3667 + ((BitFieldSize % ByteSizeInBits) != 0);
3668 SkipIvars.push_back(skivar);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003669 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003670
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003671 if (MaxField)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003672 IvarsInfo.push_back(GC_IVAR(BytePos + MaxFieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003673 MaxUnionIvarSize));
3674 if (MaxSkippedField)
Daniel Dunbar900c1982009-05-03 23:31:46 +00003675 SkipIvars.push_back(GC_IVAR(BytePos + MaxSkippedFieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003676 MaxSkippedUnionIvarSize));
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003677}
3678
3679/// BuildIvarLayout - Builds ivar layout bitmap for the class
3680/// implementation for the __strong or __weak case.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003681/// The layout map displays which words in ivar list must be skipped
3682/// and which must be scanned by GC (see below). String is built of bytes.
3683/// Each byte is divided up in two nibbles (4-bit each). Left nibble is count
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003684/// of words to skip and right nibble is count of words to scan. So, each
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003685/// nibble represents up to 15 workds to skip or scan. Skipping the rest is
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003686/// represented by a 0x00 byte which also ends the string.
3687/// 1. when ForStrongLayout is true, following ivars are scanned:
3688/// - id, Class
3689/// - object *
3690/// - __strong anything
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003691///
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003692/// 2. When ForStrongLayout is false, following ivars are scanned:
3693/// - __weak anything
3694///
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003695llvm::Constant *CGObjCCommonMac::BuildIvarLayout(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003696 const ObjCImplementationDecl *OMD,
3697 bool ForStrongLayout) {
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003698 bool hasUnion = false;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003699
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003700 unsigned int WordsToScan, WordsToSkip;
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00003701 const llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003702 if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC)
Owen Andersonc9c88b42009-07-31 20:28:54 +00003703 return llvm::Constant::getNullValue(PtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003704
Chris Lattnerf1690852009-03-31 08:48:01 +00003705 llvm::SmallVector<FieldDecl*, 32> RecFields;
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003706 const ObjCInterfaceDecl *OI = OMD->getClassInterface();
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003707 CGM.getContext().CollectObjCIvars(OI, RecFields);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003708
Daniel Dunbar37153282009-05-04 04:10:48 +00003709 // Add this implementations synthesized ivars.
Fariborz Jahanian98200742009-05-12 18:14:29 +00003710 llvm::SmallVector<ObjCIvarDecl*, 16> Ivars;
Fariborz Jahanian11062e12010-02-19 00:31:17 +00003711 CGM.getContext().CollectNonClassIvars(OI, Ivars);
Fariborz Jahanian98200742009-05-12 18:14:29 +00003712 for (unsigned k = 0, e = Ivars.size(); k != e; ++k)
3713 RecFields.push_back(cast<FieldDecl>(Ivars[k]));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003714
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003715 if (RecFields.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00003716 return llvm::Constant::getNullValue(PtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003717
3718 SkipIvars.clear();
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003719 IvarsInfo.clear();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003720
Daniel Dunbar5a5a8032009-05-03 21:05:10 +00003721 BuildAggrIvarLayout(OMD, 0, 0, RecFields, 0, ForStrongLayout, hasUnion);
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003722 if (IvarsInfo.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00003723 return llvm::Constant::getNullValue(PtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003724
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003725 // Sort on byte position in case we encounterred a union nested in
3726 // the ivar list.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003727 if (hasUnion && !IvarsInfo.empty())
Daniel Dunbar0941b492009-04-23 01:29:05 +00003728 std::sort(IvarsInfo.begin(), IvarsInfo.end());
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003729 if (hasUnion && !SkipIvars.empty())
Daniel Dunbar0941b492009-04-23 01:29:05 +00003730 std::sort(SkipIvars.begin(), SkipIvars.end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003731
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003732 // Build the string of skip/scan nibbles
Fariborz Jahanian8c2f2d12009-04-24 17:15:27 +00003733 llvm::SmallVector<SKIP_SCAN, 32> SkipScanIvars;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003734 unsigned int WordSize =
Duncan Sands9408c452009-05-09 07:08:47 +00003735 CGM.getTypes().getTargetData().getTypeAllocSize(PtrTy);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003736 if (IvarsInfo[0].ivar_bytepos == 0) {
3737 WordsToSkip = 0;
3738 WordsToScan = IvarsInfo[0].ivar_size;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003739 } else {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003740 WordsToSkip = IvarsInfo[0].ivar_bytepos/WordSize;
3741 WordsToScan = IvarsInfo[0].ivar_size;
3742 }
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003743 for (unsigned int i=1, Last=IvarsInfo.size(); i != Last; i++) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003744 unsigned int TailPrevGCObjC =
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003745 IvarsInfo[i-1].ivar_bytepos + IvarsInfo[i-1].ivar_size * WordSize;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003746 if (IvarsInfo[i].ivar_bytepos == TailPrevGCObjC) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003747 // consecutive 'scanned' object pointers.
3748 WordsToScan += IvarsInfo[i].ivar_size;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003749 } else {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003750 // Skip over 'gc'able object pointer which lay over each other.
3751 if (TailPrevGCObjC > IvarsInfo[i].ivar_bytepos)
3752 continue;
3753 // Must skip over 1 or more words. We save current skip/scan values
3754 // and start a new pair.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003755 SKIP_SCAN SkScan;
3756 SkScan.skip = WordsToSkip;
3757 SkScan.scan = WordsToScan;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003758 SkipScanIvars.push_back(SkScan);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003759
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003760 // Skip the hole.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003761 SkScan.skip = (IvarsInfo[i].ivar_bytepos - TailPrevGCObjC) / WordSize;
3762 SkScan.scan = 0;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003763 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003764 WordsToSkip = 0;
3765 WordsToScan = IvarsInfo[i].ivar_size;
3766 }
3767 }
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003768 if (WordsToScan > 0) {
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003769 SKIP_SCAN SkScan;
3770 SkScan.skip = WordsToSkip;
3771 SkScan.scan = WordsToScan;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003772 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003773 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003774
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003775 if (!SkipIvars.empty()) {
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003776 unsigned int LastIndex = SkipIvars.size()-1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003777 int LastByteSkipped =
3778 SkipIvars[LastIndex].ivar_bytepos + SkipIvars[LastIndex].ivar_size;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003779 LastIndex = IvarsInfo.size()-1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003780 int LastByteScanned =
3781 IvarsInfo[LastIndex].ivar_bytepos +
3782 IvarsInfo[LastIndex].ivar_size * WordSize;
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003783 // Compute number of bytes to skip at the tail end of the last ivar scanned.
Benjamin Kramer54d76db2009-12-25 15:43:36 +00003784 if (LastByteSkipped > LastByteScanned) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003785 unsigned int TotalWords = (LastByteSkipped + (WordSize -1)) / WordSize;
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003786 SKIP_SCAN SkScan;
3787 SkScan.skip = TotalWords - (LastByteScanned/WordSize);
3788 SkScan.scan = 0;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003789 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003790 }
3791 }
3792 // Mini optimization of nibbles such that an 0xM0 followed by 0x0N is produced
3793 // as 0xMN.
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003794 int SkipScan = SkipScanIvars.size()-1;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003795 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003796 if ((i < SkipScan) && SkipScanIvars[i].skip && SkipScanIvars[i].scan == 0
3797 && SkipScanIvars[i+1].skip == 0 && SkipScanIvars[i+1].scan) {
3798 // 0xM0 followed by 0x0N detected.
3799 SkipScanIvars[i].scan = SkipScanIvars[i+1].scan;
3800 for (int j = i+1; j < SkipScan; j++)
3801 SkipScanIvars[j] = SkipScanIvars[j+1];
3802 --SkipScan;
3803 }
3804 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003805
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003806 // Generate the string.
3807 std::string BitMap;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003808 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003809 unsigned char byte;
3810 unsigned int skip_small = SkipScanIvars[i].skip % 0xf;
3811 unsigned int scan_small = SkipScanIvars[i].scan % 0xf;
3812 unsigned int skip_big = SkipScanIvars[i].skip / 0xf;
3813 unsigned int scan_big = SkipScanIvars[i].scan / 0xf;
3814
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003815 // first skip big.
3816 for (unsigned int ix = 0; ix < skip_big; ix++)
3817 BitMap += (unsigned char)(0xf0);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003818
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003819 // next (skip small, scan)
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003820 if (skip_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003821 byte = skip_small << 4;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003822 if (scan_big > 0) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003823 byte |= 0xf;
3824 --scan_big;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003825 } else if (scan_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003826 byte |= scan_small;
3827 scan_small = 0;
3828 }
3829 BitMap += byte;
3830 }
3831 // next scan big
3832 for (unsigned int ix = 0; ix < scan_big; ix++)
3833 BitMap += (unsigned char)(0x0f);
3834 // last scan small
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003835 if (scan_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003836 byte = scan_small;
3837 BitMap += byte;
3838 }
3839 }
3840 // null terminate string.
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003841 unsigned char zero = 0;
3842 BitMap += zero;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003843
Fariborz Jahanian3d2ad662009-04-20 22:03:45 +00003844 if (CGM.getLangOptions().ObjCGCBitmapPrint) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003845 printf("\n%s ivar layout for class '%s': ",
Fariborz Jahanian3d2ad662009-04-20 22:03:45 +00003846 ForStrongLayout ? "strong" : "weak",
3847 OMD->getClassInterface()->getNameAsCString());
3848 const unsigned char *s = (unsigned char*)BitMap.c_str();
3849 for (unsigned i = 0; i < BitMap.size(); i++)
3850 if (!(s[i] & 0xf0))
3851 printf("0x0%x%s", s[i], s[i] != 0 ? ", " : "");
3852 else
3853 printf("0x%x%s", s[i], s[i] != 0 ? ", " : "");
3854 printf("\n");
3855 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003856 llvm::GlobalVariable * Entry =
3857 CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
Owen Anderson0032b272009-08-13 21:57:51 +00003858 llvm::ConstantArray::get(VMContext, BitMap.c_str()),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003859 "__TEXT,__cstring,cstring_literals",
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003860 1, true);
3861 return getConstantGEP(VMContext, Entry, 0, 0);
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003862}
3863
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003864llvm::Constant *CGObjCCommonMac::GetMethodVarName(Selector Sel) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003865 llvm::GlobalVariable *&Entry = MethodVarNames[Sel];
3866
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003867 // FIXME: Avoid std::string copying.
3868 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003869 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_NAME_",
Owen Anderson0032b272009-08-13 21:57:51 +00003870 llvm::ConstantArray::get(VMContext, Sel.getAsString()),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003871 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003872 1, true);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003873
Owen Andersona1cf15f2009-07-14 23:10:40 +00003874 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003875}
3876
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003877// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003878llvm::Constant *CGObjCCommonMac::GetMethodVarName(IdentifierInfo *ID) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003879 return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID));
3880}
3881
3882// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003883llvm::Constant *CGObjCCommonMac::GetMethodVarName(const std::string &Name) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003884 return GetMethodVarName(&CGM.getContext().Idents.get(Name));
3885}
3886
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00003887llvm::Constant *CGObjCCommonMac::GetMethodVarType(const FieldDecl *Field) {
Devang Patel7794bb82009-03-04 18:21:39 +00003888 std::string TypeStr;
3889 CGM.getContext().getObjCEncodingForType(Field->getType(), TypeStr, Field);
3890
3891 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003892
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003893 if (!Entry)
3894 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
Owen Anderson0032b272009-08-13 21:57:51 +00003895 llvm::ConstantArray::get(VMContext, TypeStr),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003896 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003897 1, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003898
Owen Andersona1cf15f2009-07-14 23:10:40 +00003899 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003900}
3901
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003902llvm::Constant *CGObjCCommonMac::GetMethodVarType(const ObjCMethodDecl *D) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003903 std::string TypeStr;
Daniel Dunbarc45ef602008-08-26 21:51:14 +00003904 CGM.getContext().getObjCEncodingForMethodDecl(const_cast<ObjCMethodDecl*>(D),
3905 TypeStr);
Devang Patel7794bb82009-03-04 18:21:39 +00003906
3907 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
3908
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003909 if (!Entry)
3910 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
Owen Anderson0032b272009-08-13 21:57:51 +00003911 llvm::ConstantArray::get(VMContext, TypeStr),
Daniel Dunbar6633e3c2010-07-29 22:57:21 +00003912 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003913 1, true);
Devang Patel7794bb82009-03-04 18:21:39 +00003914
Owen Andersona1cf15f2009-07-14 23:10:40 +00003915 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003916}
3917
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003918// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003919llvm::Constant *CGObjCCommonMac::GetPropertyName(IdentifierInfo *Ident) {
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003920 llvm::GlobalVariable *&Entry = PropertyNames[Ident];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003921
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003922 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003923 Entry = CreateMetadataVar("\01L_OBJC_PROP_NAME_ATTR_",
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00003924 llvm::ConstantArray::get(VMContext,
3925 Ident->getNameStart()),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003926 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003927 1, true);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003928
Owen Andersona1cf15f2009-07-14 23:10:40 +00003929 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003930}
3931
3932// FIXME: Merge into a single cstring creation function.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00003933// FIXME: This Decl should be more precise.
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003934llvm::Constant *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003935CGObjCCommonMac::GetPropertyTypeString(const ObjCPropertyDecl *PD,
3936 const Decl *Container) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00003937 std::string TypeStr;
3938 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00003939 return GetPropertyName(&CGM.getContext().Idents.get(TypeStr));
3940}
3941
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003942void CGObjCCommonMac::GetNameForMethod(const ObjCMethodDecl *D,
Fariborz Jahanian56210f72009-01-21 23:34:32 +00003943 const ObjCContainerDecl *CD,
Daniel Dunbarc575ce72009-10-19 01:21:19 +00003944 llvm::SmallVectorImpl<char> &Name) {
3945 llvm::raw_svector_ostream OS(Name);
Fariborz Jahanian679a5022009-01-10 21:06:09 +00003946 assert (CD && "Missing container decl in GetNameForMethod");
Daniel Dunbarc575ce72009-10-19 01:21:19 +00003947 OS << '\01' << (D->isInstanceMethod() ? '-' : '+')
3948 << '[' << CD->getName();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003949 if (const ObjCCategoryImplDecl *CID =
Daniel Dunbarc575ce72009-10-19 01:21:19 +00003950 dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext()))
Benjamin Kramer900fc632010-04-17 09:33:03 +00003951 OS << '(' << CID << ')';
Daniel Dunbarc575ce72009-10-19 01:21:19 +00003952 OS << ' ' << D->getSelector().getAsString() << ']';
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00003953}
3954
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003955void CGObjCMac::FinishModule() {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003956 EmitModuleInfo();
3957
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00003958 // Emit the dummy bodies for any protocols which were referenced but
3959 // never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003960 for (llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*>::iterator
Chris Lattnerad64e022009-07-17 23:57:13 +00003961 I = Protocols.begin(), e = Protocols.end(); I != e; ++I) {
3962 if (I->second->hasInitializer())
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00003963 continue;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003964
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00003965 std::vector<llvm::Constant*> Values(5);
Owen Andersonc9c88b42009-07-31 20:28:54 +00003966 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
Chris Lattnerad64e022009-07-17 23:57:13 +00003967 Values[1] = GetClassName(I->first);
Owen Andersonc9c88b42009-07-31 20:28:54 +00003968 Values[2] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00003969 Values[3] = Values[4] =
Owen Andersonc9c88b42009-07-31 20:28:54 +00003970 llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
Chris Lattnerad64e022009-07-17 23:57:13 +00003971 I->second->setLinkage(llvm::GlobalValue::InternalLinkage);
Owen Anderson08e25242009-07-27 22:29:56 +00003972 I->second->setInitializer(llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00003973 Values));
Chris Lattnerad64e022009-07-17 23:57:13 +00003974 CGM.AddUsedGlobal(I->second);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00003975 }
3976
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003977 // Add assembler directives to add lazy undefined symbol references
3978 // for classes which are referenced but not defined. This is
3979 // important for correct linker interaction.
Daniel Dunbar33063492009-09-07 00:20:42 +00003980 //
3981 // FIXME: It would be nice if we had an LLVM construct for this.
3982 if (!LazySymbols.empty() || !DefinedSymbols.empty()) {
3983 llvm::SmallString<256> Asm;
3984 Asm += CGM.getModule().getModuleInlineAsm();
3985 if (!Asm.empty() && Asm.back() != '\n')
3986 Asm += '\n';
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003987
Daniel Dunbar33063492009-09-07 00:20:42 +00003988 llvm::raw_svector_ostream OS(Asm);
Daniel Dunbar33063492009-09-07 00:20:42 +00003989 for (llvm::SetVector<IdentifierInfo*>::iterator I = DefinedSymbols.begin(),
3990 e = DefinedSymbols.end(); I != e; ++I)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00003991 OS << "\t.objc_class_name_" << (*I)->getName() << "=0\n"
3992 << "\t.globl .objc_class_name_" << (*I)->getName() << "\n";
Chris Lattnerafd5eda2010-04-17 18:26:20 +00003993 for (llvm::SetVector<IdentifierInfo*>::iterator I = LazySymbols.begin(),
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00003994 e = LazySymbols.end(); I != e; ++I) {
Chris Lattnerafd5eda2010-04-17 18:26:20 +00003995 OS << "\t.lazy_reference .objc_class_name_" << (*I)->getName() << "\n";
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00003996 }
3997
3998 for (size_t i = 0; i < DefinedCategoryNames.size(); ++i) {
3999 OS << "\t.objc_category_name_" << DefinedCategoryNames[i] << "=0\n"
4000 << "\t.globl .objc_category_name_" << DefinedCategoryNames[i] << "\n";
4001 }
Chris Lattnerafd5eda2010-04-17 18:26:20 +00004002
Daniel Dunbar33063492009-09-07 00:20:42 +00004003 CGM.getModule().setModuleInlineAsm(OS.str());
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00004004 }
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004005}
4006
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004007CGObjCNonFragileABIMac::CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm)
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004008 : CGObjCCommonMac(cgm),
Mike Stump1eb44332009-09-09 15:08:12 +00004009 ObjCTypes(cgm) {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004010 ObjCEmptyCacheVar = ObjCEmptyVtableVar = NULL;
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004011 ObjCABI = 2;
4012}
4013
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004014/* *** */
4015
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004016ObjCCommonTypesHelper::ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004017 : VMContext(cgm.getLLVMContext()), CGM(cgm) {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004018 CodeGen::CodeGenTypes &Types = CGM.getTypes();
4019 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004020
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004021 ShortTy = Types.ConvertType(Ctx.ShortTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004022 IntTy = Types.ConvertType(Ctx.IntTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004023 LongTy = Types.ConvertType(Ctx.LongTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00004024 LongLongTy = Types.ConvertType(Ctx.LongLongTy);
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00004025 Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004026
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004027 ObjectPtrTy = Types.ConvertType(Ctx.getObjCIdType());
Owen Anderson96e0fc72009-07-29 22:16:19 +00004028 PtrObjectPtrTy = llvm::PointerType::getUnqual(ObjectPtrTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004029 SelectorPtrTy = Types.ConvertType(Ctx.getObjCSelType());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004030
Mike Stumpf5408fe2009-05-16 07:57:57 +00004031 // FIXME: It would be nice to unify this with the opaque type, so that the IR
4032 // comes out a bit cleaner.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004033 const llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType());
Owen Anderson96e0fc72009-07-29 22:16:19 +00004034 ExternalProtocolPtrTy = llvm::PointerType::getUnqual(T);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004035
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004036 // I'm not sure I like this. The implicit coordination is a bit
4037 // gross. We should solve this in a reasonable fashion because this
4038 // is a pretty common task (match some runtime data structure with
4039 // an LLVM data structure).
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004040
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004041 // FIXME: This is leaked.
4042 // FIXME: Merge with rewriter code?
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004043
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004044 // struct _objc_super {
4045 // id self;
4046 // Class cls;
4047 // }
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004048 RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
Daniel Dunbardaa3ac52010-04-29 16:29:11 +00004049 Ctx.getTranslationUnitDecl(),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004050 SourceLocation(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004051 &Ctx.Idents.get("_objc_super"));
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004052 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004053 Ctx.getObjCIdType(), 0, 0, false));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004054 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004055 Ctx.getObjCClassType(), 0, 0, false));
Douglas Gregor838db382010-02-11 01:19:42 +00004056 RD->completeDefinition();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004057
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004058 SuperCTy = Ctx.getTagDeclType(RD);
4059 SuperPtrCTy = Ctx.getPointerType(SuperCTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004060
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004061 SuperTy = cast<llvm::StructType>(Types.ConvertType(SuperCTy));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004062 SuperPtrTy = llvm::PointerType::getUnqual(SuperTy);
4063
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004064 // struct _prop_t {
4065 // char *name;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004066 // char *attributes;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004067 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004068 PropertyTy = llvm::StructType::get(VMContext, Int8PtrTy, Int8PtrTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004069 CGM.getModule().addTypeName("struct._prop_t",
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004070 PropertyTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004071
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004072 // struct _prop_list_t {
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004073 // uint32_t entsize; // sizeof(struct _prop_t)
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004074 // uint32_t count_of_properties;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004075 // struct _prop_t prop_list[count_of_properties];
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004076 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004077 PropertyListTy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004078 IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004079 llvm::ArrayType::get(PropertyTy, 0),
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004080 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004081 CGM.getModule().addTypeName("struct._prop_list_t",
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004082 PropertyListTy);
4083 // struct _prop_list_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004084 PropertyListPtrTy = llvm::PointerType::getUnqual(PropertyListTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004085
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004086 // struct _objc_method {
4087 // SEL _cmd;
4088 // char *method_type;
4089 // char *_imp;
4090 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004091 MethodTy = llvm::StructType::get(VMContext, SelectorPtrTy,
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004092 Int8PtrTy,
4093 Int8PtrTy,
4094 NULL);
4095 CGM.getModule().addTypeName("struct._objc_method", MethodTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004096
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004097 // struct _objc_cache *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004098 CacheTy = llvm::OpaqueType::get(VMContext);
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004099 CGM.getModule().addTypeName("struct._objc_cache", CacheTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004100 CachePtrTy = llvm::PointerType::getUnqual(CacheTy);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004101}
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004102
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004103ObjCTypesHelper::ObjCTypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004104 : ObjCCommonTypesHelper(cgm) {
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004105 // struct _objc_method_description {
4106 // SEL name;
4107 // char *types;
4108 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004109 MethodDescriptionTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004110 llvm::StructType::get(VMContext, SelectorPtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004111 Int8PtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004112 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004113 CGM.getModule().addTypeName("struct._objc_method_description",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004114 MethodDescriptionTy);
4115
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004116 // struct _objc_method_description_list {
4117 // int count;
4118 // struct _objc_method_description[1];
4119 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004120 MethodDescriptionListTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004121 llvm::StructType::get(VMContext, IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004122 llvm::ArrayType::get(MethodDescriptionTy, 0),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004123 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004124 CGM.getModule().addTypeName("struct._objc_method_description_list",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004125 MethodDescriptionListTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004126
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004127 // struct _objc_method_description_list *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004128 MethodDescriptionListPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +00004129 llvm::PointerType::getUnqual(MethodDescriptionListTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004130
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004131 // Protocol description structures
4132
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004133 // struct _objc_protocol_extension {
4134 // uint32_t size; // sizeof(struct _objc_protocol_extension)
4135 // struct _objc_method_description_list *optional_instance_methods;
4136 // struct _objc_method_description_list *optional_class_methods;
4137 // struct _objc_property_list *instance_properties;
4138 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004139 ProtocolExtensionTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004140 llvm::StructType::get(VMContext, IntTy,
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004141 MethodDescriptionListPtrTy,
4142 MethodDescriptionListPtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004143 PropertyListPtrTy,
4144 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004145 CGM.getModule().addTypeName("struct._objc_protocol_extension",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004146 ProtocolExtensionTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004147
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004148 // struct _objc_protocol_extension *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004149 ProtocolExtensionPtrTy = llvm::PointerType::getUnqual(ProtocolExtensionTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004150
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004151 // Handle recursive construction of Protocol and ProtocolList types
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004152
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004153 llvm::PATypeHolder ProtocolTyHolder = llvm::OpaqueType::get(VMContext);
4154 llvm::PATypeHolder ProtocolListTyHolder = llvm::OpaqueType::get(VMContext);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004155
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004156 const llvm::Type *T =
Mike Stump1eb44332009-09-09 15:08:12 +00004157 llvm::StructType::get(VMContext,
Owen Anderson47a434f2009-08-05 23:18:46 +00004158 llvm::PointerType::getUnqual(ProtocolListTyHolder),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004159 LongTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004160 llvm::ArrayType::get(ProtocolTyHolder, 0),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004161 NULL);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004162 cast<llvm::OpaqueType>(ProtocolListTyHolder.get())->refineAbstractTypeTo(T);
4163
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004164 // struct _objc_protocol {
4165 // struct _objc_protocol_extension *isa;
4166 // char *protocol_name;
4167 // struct _objc_protocol **_objc_protocol_list;
4168 // struct _objc_method_description_list *instance_methods;
4169 // struct _objc_method_description_list *class_methods;
4170 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004171 T = llvm::StructType::get(VMContext, ProtocolExtensionPtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004172 Int8PtrTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004173 llvm::PointerType::getUnqual(ProtocolListTyHolder),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004174 MethodDescriptionListPtrTy,
4175 MethodDescriptionListPtrTy,
4176 NULL);
4177 cast<llvm::OpaqueType>(ProtocolTyHolder.get())->refineAbstractTypeTo(T);
4178
4179 ProtocolListTy = cast<llvm::StructType>(ProtocolListTyHolder.get());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004180 CGM.getModule().addTypeName("struct._objc_protocol_list",
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004181 ProtocolListTy);
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004182 // struct _objc_protocol_list *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004183 ProtocolListPtrTy = llvm::PointerType::getUnqual(ProtocolListTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004184
4185 ProtocolTy = cast<llvm::StructType>(ProtocolTyHolder.get());
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004186 CGM.getModule().addTypeName("struct._objc_protocol", ProtocolTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004187 ProtocolPtrTy = llvm::PointerType::getUnqual(ProtocolTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004188
4189 // Class description structures
4190
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004191 // struct _objc_ivar {
4192 // char *ivar_name;
4193 // char *ivar_type;
4194 // int ivar_offset;
4195 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004196 IvarTy = llvm::StructType::get(VMContext, Int8PtrTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004197 Int8PtrTy,
4198 IntTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004199 NULL);
4200 CGM.getModule().addTypeName("struct._objc_ivar", IvarTy);
4201
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004202 // struct _objc_ivar_list *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004203 IvarListTy = llvm::OpaqueType::get(VMContext);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004204 CGM.getModule().addTypeName("struct._objc_ivar_list", IvarListTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004205 IvarListPtrTy = llvm::PointerType::getUnqual(IvarListTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004206
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004207 // struct _objc_method_list *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004208 MethodListTy = llvm::OpaqueType::get(VMContext);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004209 CGM.getModule().addTypeName("struct._objc_method_list", MethodListTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004210 MethodListPtrTy = llvm::PointerType::getUnqual(MethodListTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004211
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004212 // struct _objc_class_extension *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004213 ClassExtensionTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004214 llvm::StructType::get(VMContext, IntTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004215 Int8PtrTy,
4216 PropertyListPtrTy,
4217 NULL);
4218 CGM.getModule().addTypeName("struct._objc_class_extension", ClassExtensionTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004219 ClassExtensionPtrTy = llvm::PointerType::getUnqual(ClassExtensionTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004220
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004221 llvm::PATypeHolder ClassTyHolder = llvm::OpaqueType::get(VMContext);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004222
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004223 // struct _objc_class {
4224 // Class isa;
4225 // Class super_class;
4226 // char *name;
4227 // long version;
4228 // long info;
4229 // long instance_size;
4230 // struct _objc_ivar_list *ivars;
4231 // struct _objc_method_list *methods;
4232 // struct _objc_cache *cache;
4233 // struct _objc_protocol_list *protocols;
4234 // char *ivar_layout;
4235 // struct _objc_class_ext *ext;
4236 // };
Owen Anderson47a434f2009-08-05 23:18:46 +00004237 T = llvm::StructType::get(VMContext,
4238 llvm::PointerType::getUnqual(ClassTyHolder),
Owen Anderson96e0fc72009-07-29 22:16:19 +00004239 llvm::PointerType::getUnqual(ClassTyHolder),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004240 Int8PtrTy,
4241 LongTy,
4242 LongTy,
4243 LongTy,
4244 IvarListPtrTy,
4245 MethodListPtrTy,
4246 CachePtrTy,
4247 ProtocolListPtrTy,
4248 Int8PtrTy,
4249 ClassExtensionPtrTy,
4250 NULL);
4251 cast<llvm::OpaqueType>(ClassTyHolder.get())->refineAbstractTypeTo(T);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004252
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004253 ClassTy = cast<llvm::StructType>(ClassTyHolder.get());
4254 CGM.getModule().addTypeName("struct._objc_class", ClassTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004255 ClassPtrTy = llvm::PointerType::getUnqual(ClassTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004256
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004257 // struct _objc_category {
4258 // char *category_name;
4259 // char *class_name;
4260 // struct _objc_method_list *instance_method;
4261 // struct _objc_method_list *class_method;
4262 // uint32_t size; // sizeof(struct _objc_category)
4263 // struct _objc_property_list *instance_properties;// category's @property
4264 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004265 CategoryTy = llvm::StructType::get(VMContext, Int8PtrTy,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00004266 Int8PtrTy,
4267 MethodListPtrTy,
4268 MethodListPtrTy,
4269 ProtocolListPtrTy,
4270 IntTy,
4271 PropertyListPtrTy,
4272 NULL);
4273 CGM.getModule().addTypeName("struct._objc_category", CategoryTy);
4274
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004275 // Global metadata structures
4276
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004277 // struct _objc_symtab {
4278 // long sel_ref_cnt;
4279 // SEL *refs;
4280 // short cls_def_cnt;
4281 // short cat_def_cnt;
4282 // char *defs[cls_def_cnt + cat_def_cnt];
4283 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004284 SymtabTy = llvm::StructType::get(VMContext, LongTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004285 SelectorPtrTy,
4286 ShortTy,
4287 ShortTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004288 llvm::ArrayType::get(Int8PtrTy, 0),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004289 NULL);
4290 CGM.getModule().addTypeName("struct._objc_symtab", SymtabTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004291 SymtabPtrTy = llvm::PointerType::getUnqual(SymtabTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004292
Fariborz Jahaniandb286862009-01-22 00:37:21 +00004293 // struct _objc_module {
4294 // long version;
4295 // long size; // sizeof(struct _objc_module)
4296 // char *name;
4297 // struct _objc_symtab* symtab;
4298 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004299 ModuleTy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004300 llvm::StructType::get(VMContext, LongTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004301 LongTy,
4302 Int8PtrTy,
4303 SymtabPtrTy,
4304 NULL);
4305 CGM.getModule().addTypeName("struct._objc_module", ModuleTy);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00004306
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004307
Mike Stumpf5408fe2009-05-16 07:57:57 +00004308 // FIXME: This is the size of the setjmp buffer and should be target
4309 // specific. 18 is what's used on 32-bit X86.
Anders Carlsson124526b2008-09-09 10:10:21 +00004310 uint64_t SetJmpBufferSize = 18;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004311
Anders Carlsson124526b2008-09-09 10:10:21 +00004312 // Exceptions
Owen Anderson96e0fc72009-07-29 22:16:19 +00004313 const llvm::Type *StackPtrTy = llvm::ArrayType::get(
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00004314 llvm::Type::getInt8PtrTy(VMContext), 4);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004315
4316 ExceptionDataTy =
Chris Lattner77b89b82010-06-27 07:15:29 +00004317 llvm::StructType::get(VMContext,
4318 llvm::ArrayType::get(llvm::Type::getInt32Ty(VMContext),
4319 SetJmpBufferSize),
Anders Carlsson124526b2008-09-09 10:10:21 +00004320 StackPtrTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004321 CGM.getModule().addTypeName("struct._objc_exception_data",
Anders Carlsson124526b2008-09-09 10:10:21 +00004322 ExceptionDataTy);
4323
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00004324}
4325
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004326ObjCNonFragileABITypesHelper::ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004327 : ObjCCommonTypesHelper(cgm) {
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004328 // struct _method_list_t {
4329 // uint32_t entsize; // sizeof(struct _objc_method)
4330 // uint32_t method_count;
4331 // struct _objc_method method_list[method_count];
4332 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004333 MethodListnfABITy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004334 IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004335 llvm::ArrayType::get(MethodTy, 0),
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004336 NULL);
4337 CGM.getModule().addTypeName("struct.__method_list_t",
4338 MethodListnfABITy);
4339 // struct method_list_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004340 MethodListnfABIPtrTy = llvm::PointerType::getUnqual(MethodListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004341
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004342 // struct _protocol_t {
4343 // id isa; // NULL
4344 // const char * const protocol_name;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004345 // const struct _protocol_list_t * protocol_list; // super protocols
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004346 // const struct method_list_t * const instance_methods;
4347 // const struct method_list_t * const class_methods;
4348 // const struct method_list_t *optionalInstanceMethods;
4349 // const struct method_list_t *optionalClassMethods;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004350 // const struct _prop_list_t * properties;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004351 // const uint32_t size; // sizeof(struct _protocol_t)
4352 // const uint32_t flags; // = 0
4353 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004354
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004355 // Holder for struct _protocol_list_t *
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004356 llvm::PATypeHolder ProtocolListTyHolder = llvm::OpaqueType::get(VMContext);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004357
Owen Anderson47a434f2009-08-05 23:18:46 +00004358 ProtocolnfABITy = llvm::StructType::get(VMContext, ObjectPtrTy,
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004359 Int8PtrTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004360 llvm::PointerType::getUnqual(
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004361 ProtocolListTyHolder),
4362 MethodListnfABIPtrTy,
4363 MethodListnfABIPtrTy,
4364 MethodListnfABIPtrTy,
4365 MethodListnfABIPtrTy,
4366 PropertyListPtrTy,
4367 IntTy,
4368 IntTy,
4369 NULL);
4370 CGM.getModule().addTypeName("struct._protocol_t",
4371 ProtocolnfABITy);
Daniel Dunbar948e2582009-02-15 07:36:20 +00004372
4373 // struct _protocol_t*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004374 ProtocolnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004375
Fariborz Jahanianda320092009-01-29 19:24:30 +00004376 // struct _protocol_list_t {
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004377 // long protocol_count; // Note, this is 32/64 bit
Daniel Dunbar948e2582009-02-15 07:36:20 +00004378 // struct _protocol_t *[protocol_count];
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004379 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004380 ProtocolListnfABITy = llvm::StructType::get(VMContext, LongTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004381 llvm::ArrayType::get(
Daniel Dunbar948e2582009-02-15 07:36:20 +00004382 ProtocolnfABIPtrTy, 0),
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004383 NULL);
4384 CGM.getModule().addTypeName("struct._objc_protocol_list",
4385 ProtocolListnfABITy);
Daniel Dunbar948e2582009-02-15 07:36:20 +00004386 cast<llvm::OpaqueType>(ProtocolListTyHolder.get())->refineAbstractTypeTo(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004387 ProtocolListnfABITy);
4388
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004389 // struct _objc_protocol_list*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004390 ProtocolListnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004391
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004392 // struct _ivar_t {
4393 // unsigned long int *offset; // pointer to ivar offset location
4394 // char *name;
4395 // char *type;
4396 // uint32_t alignment;
4397 // uint32_t size;
4398 // }
Mike Stump1eb44332009-09-09 15:08:12 +00004399 IvarnfABITy = llvm::StructType::get(VMContext,
Owen Anderson47a434f2009-08-05 23:18:46 +00004400 llvm::PointerType::getUnqual(LongTy),
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004401 Int8PtrTy,
4402 Int8PtrTy,
4403 IntTy,
4404 IntTy,
4405 NULL);
4406 CGM.getModule().addTypeName("struct._ivar_t", IvarnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004407
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004408 // struct _ivar_list_t {
4409 // uint32 entsize; // sizeof(struct _ivar_t)
4410 // uint32 count;
4411 // struct _iver_t list[count];
4412 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004413 IvarListnfABITy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004414 IntTy,
Owen Anderson96e0fc72009-07-29 22:16:19 +00004415 llvm::ArrayType::get(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004416 IvarnfABITy, 0),
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004417 NULL);
4418 CGM.getModule().addTypeName("struct._ivar_list_t", IvarListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004419
Owen Anderson96e0fc72009-07-29 22:16:19 +00004420 IvarListnfABIPtrTy = llvm::PointerType::getUnqual(IvarListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004421
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004422 // struct _class_ro_t {
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004423 // uint32_t const flags;
4424 // uint32_t const instanceStart;
4425 // uint32_t const instanceSize;
4426 // uint32_t const reserved; // only when building for 64bit targets
4427 // const uint8_t * const ivarLayout;
4428 // const char *const name;
4429 // const struct _method_list_t * const baseMethods;
4430 // const struct _objc_protocol_list *const baseProtocols;
4431 // const struct _ivar_list_t *const ivars;
4432 // const uint8_t * const weakIvarLayout;
4433 // const struct _prop_list_t * const properties;
4434 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004435
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004436 // FIXME. Add 'reserved' field in 64bit abi mode!
Owen Anderson47a434f2009-08-05 23:18:46 +00004437 ClassRonfABITy = llvm::StructType::get(VMContext, IntTy,
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004438 IntTy,
4439 IntTy,
4440 Int8PtrTy,
4441 Int8PtrTy,
4442 MethodListnfABIPtrTy,
4443 ProtocolListnfABIPtrTy,
4444 IvarListnfABIPtrTy,
4445 Int8PtrTy,
4446 PropertyListPtrTy,
4447 NULL);
4448 CGM.getModule().addTypeName("struct._class_ro_t",
4449 ClassRonfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004450
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004451 // ImpnfABITy - LLVM for id (*)(id, SEL, ...)
4452 std::vector<const llvm::Type*> Params;
4453 Params.push_back(ObjectPtrTy);
4454 Params.push_back(SelectorPtrTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004455 ImpnfABITy = llvm::PointerType::getUnqual(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004456 llvm::FunctionType::get(ObjectPtrTy, Params, false));
4457
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004458 // struct _class_t {
4459 // struct _class_t *isa;
4460 // struct _class_t * const superclass;
4461 // void *cache;
4462 // IMP *vtable;
4463 // struct class_ro_t *ro;
4464 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004465
Owen Anderson8c8f69e2009-08-13 23:27:53 +00004466 llvm::PATypeHolder ClassTyHolder = llvm::OpaqueType::get(VMContext);
Owen Andersona1cf15f2009-07-14 23:10:40 +00004467 ClassnfABITy =
Owen Anderson47a434f2009-08-05 23:18:46 +00004468 llvm::StructType::get(VMContext,
4469 llvm::PointerType::getUnqual(ClassTyHolder),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004470 llvm::PointerType::getUnqual(ClassTyHolder),
4471 CachePtrTy,
4472 llvm::PointerType::getUnqual(ImpnfABITy),
4473 llvm::PointerType::getUnqual(ClassRonfABITy),
4474 NULL);
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004475 CGM.getModule().addTypeName("struct._class_t", ClassnfABITy);
4476
4477 cast<llvm::OpaqueType>(ClassTyHolder.get())->refineAbstractTypeTo(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004478 ClassnfABITy);
4479
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004480 // LLVM for struct _class_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004481 ClassnfABIPtrTy = llvm::PointerType::getUnqual(ClassnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004482
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004483 // struct _category_t {
4484 // const char * const name;
4485 // struct _class_t *const cls;
4486 // const struct _method_list_t * const instance_methods;
4487 // const struct _method_list_t * const class_methods;
4488 // const struct _protocol_list_t * const protocols;
4489 // const struct _prop_list_t * const properties;
Fariborz Jahanian45c2ba02009-01-23 17:41:22 +00004490 // }
Owen Anderson47a434f2009-08-05 23:18:46 +00004491 CategorynfABITy = llvm::StructType::get(VMContext, Int8PtrTy,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004492 ClassnfABIPtrTy,
Fariborz Jahanian45c2ba02009-01-23 17:41:22 +00004493 MethodListnfABIPtrTy,
4494 MethodListnfABIPtrTy,
4495 ProtocolListnfABIPtrTy,
4496 PropertyListPtrTy,
4497 NULL);
4498 CGM.getModule().addTypeName("struct._category_t", CategorynfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004499
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004500 // New types for nonfragile abi messaging.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004501 CodeGen::CodeGenTypes &Types = CGM.getTypes();
4502 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004503
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004504 // MessageRefTy - LLVM for:
4505 // struct _message_ref_t {
4506 // IMP messenger;
4507 // SEL name;
4508 // };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004509
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004510 // First the clang type for struct _message_ref_t
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004511 RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
Daniel Dunbardaa3ac52010-04-29 16:29:11 +00004512 Ctx.getTranslationUnitDecl(),
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004513 SourceLocation(),
4514 &Ctx.Idents.get("_message_ref_t"));
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004515 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004516 Ctx.VoidPtrTy, 0, 0, false));
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004517 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), 0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004518 Ctx.getObjCSelType(), 0, 0, false));
Douglas Gregor838db382010-02-11 01:19:42 +00004519 RD->completeDefinition();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004520
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004521 MessageRefCTy = Ctx.getTagDeclType(RD);
4522 MessageRefCPtrTy = Ctx.getPointerType(MessageRefCTy);
4523 MessageRefTy = cast<llvm::StructType>(Types.ConvertType(MessageRefCTy));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004524
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004525 // MessageRefPtrTy - LLVM for struct _message_ref_t*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004526 MessageRefPtrTy = llvm::PointerType::getUnqual(MessageRefTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004527
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004528 // SuperMessageRefTy - LLVM for:
4529 // struct _super_message_ref_t {
4530 // SUPER_IMP messenger;
4531 // SEL name;
4532 // };
Owen Anderson47a434f2009-08-05 23:18:46 +00004533 SuperMessageRefTy = llvm::StructType::get(VMContext, ImpnfABITy,
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004534 SelectorPtrTy,
4535 NULL);
4536 CGM.getModule().addTypeName("struct._super_message_ref_t", SuperMessageRefTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004537
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004538 // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t*
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004539 SuperMessageRefPtrTy = llvm::PointerType::getUnqual(SuperMessageRefTy);
4540
Daniel Dunbare588b992009-03-01 04:46:24 +00004541
4542 // struct objc_typeinfo {
4543 // const void** vtable; // objc_ehtype_vtable + 2
4544 // const char* name; // c++ typeinfo string
4545 // Class cls;
4546 // };
Owen Anderson47a434f2009-08-05 23:18:46 +00004547 EHTypeTy = llvm::StructType::get(VMContext,
4548 llvm::PointerType::getUnqual(Int8PtrTy),
Daniel Dunbare588b992009-03-01 04:46:24 +00004549 Int8PtrTy,
4550 ClassnfABIPtrTy,
4551 NULL);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00004552 CGM.getModule().addTypeName("struct._objc_typeinfo", EHTypeTy);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004553 EHTypePtrTy = llvm::PointerType::getUnqual(EHTypeTy);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00004554}
4555
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004556llvm::Function *CGObjCNonFragileABIMac::ModuleInitFunction() {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004557 FinishNonFragileABIModule();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004558
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004559 return NULL;
4560}
4561
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004562void CGObjCNonFragileABIMac::AddModuleClassList(const
4563 std::vector<llvm::GlobalValue*>
4564 &Container,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004565 const char *SymbolName,
4566 const char *SectionName) {
4567 unsigned NumClasses = Container.size();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004568
Daniel Dunbar463b8762009-05-15 21:48:48 +00004569 if (!NumClasses)
4570 return;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004571
Daniel Dunbar463b8762009-05-15 21:48:48 +00004572 std::vector<llvm::Constant*> Symbols(NumClasses);
4573 for (unsigned i=0; i<NumClasses; i++)
Owen Anderson3c4972d2009-07-29 18:54:39 +00004574 Symbols[i] = llvm::ConstantExpr::getBitCast(Container[i],
Daniel Dunbar463b8762009-05-15 21:48:48 +00004575 ObjCTypes.Int8PtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004576 llvm::Constant* Init =
Owen Anderson96e0fc72009-07-29 22:16:19 +00004577 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004578 NumClasses),
4579 Symbols);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004580
Daniel Dunbar463b8762009-05-15 21:48:48 +00004581 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00004582 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004583 llvm::GlobalValue::InternalLinkage,
4584 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00004585 SymbolName);
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004586 GV->setAlignment(CGM.getTargetData().getABITypeAlignment(Init->getType()));
Daniel Dunbar463b8762009-05-15 21:48:48 +00004587 GV->setSection(SectionName);
Chris Lattnerad64e022009-07-17 23:57:13 +00004588 CGM.AddUsedGlobal(GV);
Daniel Dunbar463b8762009-05-15 21:48:48 +00004589}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004590
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004591void CGObjCNonFragileABIMac::FinishNonFragileABIModule() {
4592 // nonfragile abi has no module definition.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004593
Daniel Dunbar463b8762009-05-15 21:48:48 +00004594 // Build list of all implemented class addresses in array
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004595 // L_OBJC_LABEL_CLASS_$.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004596 AddModuleClassList(DefinedClasses,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004597 "\01L_OBJC_LABEL_CLASS_$",
4598 "__DATA, __objc_classlist, regular, no_dead_strip");
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004599
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004600 for (unsigned i = 0; i < DefinedClasses.size(); i++) {
4601 llvm::GlobalValue *IMPLGV = DefinedClasses[i];
4602 if (IMPLGV->getLinkage() != llvm::GlobalValue::ExternalWeakLinkage)
4603 continue;
4604 IMPLGV->setLinkage(llvm::GlobalValue::ExternalLinkage);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004605 }
4606
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00004607 for (unsigned i = 0; i < DefinedMetaClasses.size(); i++) {
4608 llvm::GlobalValue *IMPLGV = DefinedMetaClasses[i];
4609 if (IMPLGV->getLinkage() != llvm::GlobalValue::ExternalWeakLinkage)
4610 continue;
4611 IMPLGV->setLinkage(llvm::GlobalValue::ExternalLinkage);
4612 }
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004613
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004614 AddModuleClassList(DefinedNonLazyClasses,
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004615 "\01L_OBJC_LABEL_NONLAZY_CLASS_$",
4616 "__DATA, __objc_nlclslist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004617
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004618 // Build list of all implemented category addresses in array
4619 // L_OBJC_LABEL_CATEGORY_$.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004620 AddModuleClassList(DefinedCategories,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004621 "\01L_OBJC_LABEL_CATEGORY_$",
4622 "__DATA, __objc_catlist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004623 AddModuleClassList(DefinedNonLazyCategories,
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004624 "\01L_OBJC_LABEL_NONLAZY_CATEGORY_$",
4625 "__DATA, __objc_nlcatlist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004626
Daniel Dunbarfce176b2010-04-25 20:39:01 +00004627 EmitImageInfo();
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004628}
4629
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004630/// LegacyDispatchedSelector - Returns true if SEL is not in the list of
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004631/// NonLegacyDispatchMethods; false otherwise. What this means is that
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004632/// except for the 19 selectors in the list, we generate 32bit-style
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004633/// message dispatch call for all the rest.
4634///
4635bool CGObjCNonFragileABIMac::LegacyDispatchedSelector(Selector Sel) {
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004636 switch (CGM.getCodeGenOpts().getObjCDispatchMethod()) {
4637 default:
4638 assert(0 && "Invalid dispatch method!");
4639 case CodeGenOptions::Legacy:
Daniel Dunbar2feefe82010-02-01 21:07:33 +00004640 return true;
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004641 case CodeGenOptions::NonLegacy:
Fariborz Jahanian776dbf92010-04-19 17:53:30 +00004642 return false;
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004643 case CodeGenOptions::Mixed:
4644 break;
4645 }
4646
4647 // If so, see whether this selector is in the white-list of things which must
4648 // use the new dispatch convention. We lazily build a dense set for this.
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004649 if (NonLegacyDispatchMethods.empty()) {
4650 NonLegacyDispatchMethods.insert(GetNullarySelector("alloc"));
4651 NonLegacyDispatchMethods.insert(GetNullarySelector("class"));
4652 NonLegacyDispatchMethods.insert(GetNullarySelector("self"));
4653 NonLegacyDispatchMethods.insert(GetNullarySelector("isFlipped"));
4654 NonLegacyDispatchMethods.insert(GetNullarySelector("length"));
4655 NonLegacyDispatchMethods.insert(GetNullarySelector("count"));
4656 NonLegacyDispatchMethods.insert(GetNullarySelector("retain"));
4657 NonLegacyDispatchMethods.insert(GetNullarySelector("release"));
4658 NonLegacyDispatchMethods.insert(GetNullarySelector("autorelease"));
4659 NonLegacyDispatchMethods.insert(GetNullarySelector("hash"));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004660
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004661 NonLegacyDispatchMethods.insert(GetUnarySelector("allocWithZone"));
4662 NonLegacyDispatchMethods.insert(GetUnarySelector("isKindOfClass"));
4663 NonLegacyDispatchMethods.insert(GetUnarySelector("respondsToSelector"));
4664 NonLegacyDispatchMethods.insert(GetUnarySelector("objectForKey"));
4665 NonLegacyDispatchMethods.insert(GetUnarySelector("objectAtIndex"));
4666 NonLegacyDispatchMethods.insert(GetUnarySelector("isEqualToString"));
4667 NonLegacyDispatchMethods.insert(GetUnarySelector("isEqual"));
4668 NonLegacyDispatchMethods.insert(GetUnarySelector("addObject"));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004669 // "countByEnumeratingWithState:objects:count"
Fariborz Jahanianbe53be42009-05-13 16:19:02 +00004670 IdentifierInfo *KeyIdents[] = {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004671 &CGM.getContext().Idents.get("countByEnumeratingWithState"),
4672 &CGM.getContext().Idents.get("objects"),
4673 &CGM.getContext().Idents.get("count")
Fariborz Jahanianbe53be42009-05-13 16:19:02 +00004674 };
4675 NonLegacyDispatchMethods.insert(
4676 CGM.getContext().Selectors.getSelector(3, KeyIdents));
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004677 }
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004678
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00004679 return (NonLegacyDispatchMethods.count(Sel) == 0);
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004680}
4681
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004682// Metadata flags
4683enum MetaDataDlags {
4684 CLS = 0x0,
4685 CLS_META = 0x1,
4686 CLS_ROOT = 0x2,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004687 OBJC2_CLS_HIDDEN = 0x10,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004688 CLS_EXCEPTION = 0x20
4689};
4690/// BuildClassRoTInitializer - generate meta-data for:
4691/// struct _class_ro_t {
4692/// uint32_t const flags;
4693/// uint32_t const instanceStart;
4694/// uint32_t const instanceSize;
4695/// uint32_t const reserved; // only when building for 64bit targets
4696/// const uint8_t * const ivarLayout;
4697/// const char *const name;
4698/// const struct _method_list_t * const baseMethods;
Fariborz Jahanianda320092009-01-29 19:24:30 +00004699/// const struct _protocol_list_t *const baseProtocols;
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004700/// const struct _ivar_list_t *const ivars;
4701/// const uint8_t * const weakIvarLayout;
4702/// const struct _prop_list_t * const properties;
4703/// }
4704///
4705llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassRoTInitializer(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004706 unsigned flags,
4707 unsigned InstanceStart,
4708 unsigned InstanceSize,
4709 const ObjCImplementationDecl *ID) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004710 std::string ClassName = ID->getNameAsString();
4711 std::vector<llvm::Constant*> Values(10); // 11 for 64bit targets!
Owen Anderson4a28d5d2009-07-24 23:12:58 +00004712 Values[ 0] = llvm::ConstantInt::get(ObjCTypes.IntTy, flags);
4713 Values[ 1] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceStart);
4714 Values[ 2] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceSize);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004715 // FIXME. For 64bit targets add 0 here.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004716 Values[ 3] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4717 : BuildIvarLayout(ID, true);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004718 Values[ 4] = GetClassName(ID->getIdentifier());
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004719 // const struct _method_list_t * const baseMethods;
4720 std::vector<llvm::Constant*> Methods;
4721 std::string MethodListName("\01l_OBJC_$_");
4722 if (flags & CLS_META) {
4723 MethodListName += "CLASS_METHODS_" + ID->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004724 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004725 i = ID->classmeth_begin(), e = ID->classmeth_end(); i != e; ++i) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004726 // Class methods should always be defined.
4727 Methods.push_back(GetMethodConstant(*i));
4728 }
4729 } else {
4730 MethodListName += "INSTANCE_METHODS_" + ID->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004731 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004732 i = ID->instmeth_begin(), e = ID->instmeth_end(); i != e; ++i) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004733 // Instance methods should always be defined.
4734 Methods.push_back(GetMethodConstant(*i));
4735 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004736 for (ObjCImplementationDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004737 i = ID->propimpl_begin(), e = ID->propimpl_end(); i != e; ++i) {
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004738 ObjCPropertyImplDecl *PID = *i;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004739
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004740 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){
4741 ObjCPropertyDecl *PD = PID->getPropertyDecl();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004742
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004743 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
4744 if (llvm::Constant *C = GetMethodConstant(MD))
4745 Methods.push_back(C);
4746 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
4747 if (llvm::Constant *C = GetMethodConstant(MD))
4748 Methods.push_back(C);
4749 }
4750 }
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004751 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004752 Values[ 5] = EmitMethodList(MethodListName,
4753 "__DATA, __objc_const", Methods);
4754
Fariborz Jahanianda320092009-01-29 19:24:30 +00004755 const ObjCInterfaceDecl *OID = ID->getClassInterface();
4756 assert(OID && "CGObjCNonFragileABIMac::BuildClassRoTInitializer");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004757 Values[ 6] = EmitProtocolList("\01l_OBJC_CLASS_PROTOCOLS_$_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00004758 + OID->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00004759 OID->protocol_begin(),
4760 OID->protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004761
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004762 if (flags & CLS_META)
Owen Andersonc9c88b42009-07-31 20:28:54 +00004763 Values[ 7] = llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004764 else
4765 Values[ 7] = EmitIvarList(ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004766 Values[ 8] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4767 : BuildIvarLayout(ID, false);
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00004768 if (flags & CLS_META)
Owen Andersonc9c88b42009-07-31 20:28:54 +00004769 Values[ 9] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00004770 else
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00004771 Values[ 9] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getName(),
4772 ID, ID->getClassInterface(), ObjCTypes);
Owen Anderson08e25242009-07-27 22:29:56 +00004773 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassRonfABITy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004774 Values);
4775 llvm::GlobalVariable *CLASS_RO_GV =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004776 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassRonfABITy, false,
4777 llvm::GlobalValue::InternalLinkage,
4778 Init,
4779 (flags & CLS_META) ?
4780 std::string("\01l_OBJC_METACLASS_RO_$_")+ClassName :
4781 std::string("\01l_OBJC_CLASS_RO_$_")+ClassName);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004782 CLASS_RO_GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004783 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ClassRonfABITy));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004784 CLASS_RO_GV->setSection("__DATA, __objc_const");
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004785 return CLASS_RO_GV;
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004786
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004787}
4788
4789/// BuildClassMetaData - This routine defines that to-level meta-data
4790/// for the given ClassName for:
4791/// struct _class_t {
4792/// struct _class_t *isa;
4793/// struct _class_t * const superclass;
4794/// void *cache;
4795/// IMP *vtable;
4796/// struct class_ro_t *ro;
4797/// }
4798///
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004799llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassMetaData(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004800 std::string &ClassName,
4801 llvm::Constant *IsAGV,
4802 llvm::Constant *SuperClassGV,
4803 llvm::Constant *ClassRoGV,
4804 bool HiddenVisibility) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004805 std::vector<llvm::Constant*> Values(5);
4806 Values[0] = IsAGV;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004807 Values[1] = SuperClassGV;
4808 if (!Values[1])
4809 Values[1] = llvm::Constant::getNullValue(ObjCTypes.ClassnfABIPtrTy);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004810 Values[2] = ObjCEmptyCacheVar; // &ObjCEmptyCacheVar
4811 Values[3] = ObjCEmptyVtableVar; // &ObjCEmptyVtableVar
4812 Values[4] = ClassRoGV; // &CLASS_RO_GV
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004813 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassnfABITy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004814 Values);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004815 llvm::GlobalVariable *GV = GetClassGlobal(ClassName);
4816 GV->setInitializer(Init);
Fariborz Jahaniandd0db2a2009-01-31 01:07:39 +00004817 GV->setSection("__DATA, __objc_data");
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004818 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004819 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ClassnfABITy));
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004820 if (HiddenVisibility)
4821 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004822 return GV;
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004823}
4824
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004825bool
Fariborz Jahanianecfbdcb2009-05-21 01:03:45 +00004826CGObjCNonFragileABIMac::ImplementationIsNonLazy(const ObjCImplDecl *OD) const {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004827 return OD->getClassMethod(GetNullarySelector("load")) != 0;
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004828}
4829
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00004830void CGObjCNonFragileABIMac::GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbarb02532a2009-04-19 23:41:48 +00004831 uint32_t &InstanceStart,
4832 uint32_t &InstanceSize) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004833 const ASTRecordLayout &RL =
Daniel Dunbarb4c79e02009-05-04 21:26:30 +00004834 CGM.getContext().getASTObjCImplementationLayout(OID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004835
Daniel Dunbar6e8575b2009-05-04 23:23:09 +00004836 // InstanceSize is really instance end.
Anders Carlsson243a6852009-07-18 21:26:44 +00004837 InstanceSize = llvm::RoundUpToAlignment(RL.getDataSize(), 8) / 8;
Daniel Dunbar6e8575b2009-05-04 23:23:09 +00004838
4839 // If there are no fields, the start is the same as the end.
4840 if (!RL.getFieldCount())
4841 InstanceStart = InstanceSize;
4842 else
4843 InstanceStart = RL.getFieldOffset(0) / 8;
Daniel Dunbarb02532a2009-04-19 23:41:48 +00004844}
4845
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004846void CGObjCNonFragileABIMac::GenerateClass(const ObjCImplementationDecl *ID) {
4847 std::string ClassName = ID->getNameAsString();
4848 if (!ObjCEmptyCacheVar) {
4849 ObjCEmptyCacheVar = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004850 CGM.getModule(),
4851 ObjCTypes.CacheTy,
4852 false,
4853 llvm::GlobalValue::ExternalLinkage,
4854 0,
4855 "_objc_empty_cache");
4856
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004857 ObjCEmptyVtableVar = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004858 CGM.getModule(),
4859 ObjCTypes.ImpnfABITy,
4860 false,
4861 llvm::GlobalValue::ExternalLinkage,
4862 0,
4863 "_objc_empty_vtable");
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004864 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004865 assert(ID->getClassInterface() &&
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004866 "CGObjCNonFragileABIMac::GenerateClass - class is 0");
Daniel Dunbar6c1aac82009-04-20 20:18:54 +00004867 // FIXME: Is this correct (that meta class size is never computed)?
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004868 uint32_t InstanceStart =
Duncan Sands9408c452009-05-09 07:08:47 +00004869 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassnfABITy);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004870 uint32_t InstanceSize = InstanceStart;
4871 uint32_t flags = CLS_META;
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004872 std::string ObjCMetaClassName(getMetaclassSymbolPrefix());
4873 std::string ObjCClassName(getClassSymbolPrefix());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004874
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004875 llvm::GlobalVariable *SuperClassGV, *IsAGV;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004876
4877 bool classIsHidden =
Daniel Dunbar04d40782009-04-14 06:00:08 +00004878 CGM.getDeclVisibilityMode(ID->getClassInterface()) == LangOptions::Hidden;
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004879 if (classIsHidden)
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004880 flags |= OBJC2_CLS_HIDDEN;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00004881 if (ID->getNumIvarInitializers())
4882 flags |= eClassFlags_ABI2_HasCXXStructors;
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004883 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004884 // class is root
4885 flags |= CLS_ROOT;
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004886 SuperClassGV = GetClassGlobal(ObjCClassName + ClassName);
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004887 IsAGV = GetClassGlobal(ObjCMetaClassName + ClassName);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004888 } else {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004889 // Has a root. Current class is not a root.
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004890 const ObjCInterfaceDecl *Root = ID->getClassInterface();
4891 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
4892 Root = Super;
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004893 IsAGV = GetClassGlobal(ObjCMetaClassName + Root->getNameAsString());
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00004894 if (Root->hasAttr<WeakImportAttr>())
4895 IsAGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004896 // work on super class metadata symbol.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004897 std::string SuperClassName =
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00004898 ObjCMetaClassName +
4899 ID->getClassInterface()->getSuperClass()->getNameAsString();
Fariborz Jahanian0f902942009-04-14 18:41:56 +00004900 SuperClassGV = GetClassGlobal(SuperClassName);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004901 if (ID->getClassInterface()->getSuperClass()->hasAttr<WeakImportAttr>())
4902 SuperClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004903 }
4904 llvm::GlobalVariable *CLASS_RO_GV = BuildClassRoTInitializer(flags,
4905 InstanceStart,
4906 InstanceSize,ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004907 std::string TClassName = ObjCMetaClassName + ClassName;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004908 llvm::GlobalVariable *MetaTClass =
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004909 BuildClassMetaData(TClassName, IsAGV, SuperClassGV, CLASS_RO_GV,
4910 classIsHidden);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004911 DefinedMetaClasses.push_back(MetaTClass);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00004912
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004913 // Metadata for the class
4914 flags = CLS;
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004915 if (classIsHidden)
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004916 flags |= OBJC2_CLS_HIDDEN;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00004917 if (ID->getNumIvarInitializers())
4918 flags |= eClassFlags_ABI2_HasCXXStructors;
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00004919
Douglas Gregor68584ed2009-06-18 16:11:24 +00004920 if (hasObjCExceptionAttribute(CGM.getContext(), ID->getClassInterface()))
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00004921 flags |= CLS_EXCEPTION;
4922
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004923 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004924 flags |= CLS_ROOT;
4925 SuperClassGV = 0;
Chris Lattnerb7b58b12009-04-19 06:02:28 +00004926 } else {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004927 // Has a root. Current class is not a root.
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00004928 std::string RootClassName =
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004929 ID->getClassInterface()->getSuperClass()->getNameAsString();
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00004930 SuperClassGV = GetClassGlobal(ObjCClassName + RootClassName);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004931 if (ID->getClassInterface()->getSuperClass()->hasAttr<WeakImportAttr>())
4932 SuperClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004933 }
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00004934 GetClassSizeInfo(ID, InstanceStart, InstanceSize);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004935 CLASS_RO_GV = BuildClassRoTInitializer(flags,
Fariborz Jahanianf6a077e2009-01-24 23:43:01 +00004936 InstanceStart,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004937 InstanceSize,
Fariborz Jahanianf6a077e2009-01-24 23:43:01 +00004938 ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004939
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004940 TClassName = ObjCClassName + ClassName;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004941 llvm::GlobalVariable *ClassMD =
Fariborz Jahaniancf555162009-01-31 00:59:10 +00004942 BuildClassMetaData(TClassName, MetaTClass, SuperClassGV, CLASS_RO_GV,
4943 classIsHidden);
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004944 DefinedClasses.push_back(ClassMD);
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00004945
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004946 // Determine if this class is also "non-lazy".
4947 if (ImplementationIsNonLazy(ID))
4948 DefinedNonLazyClasses.push_back(ClassMD);
4949
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00004950 // Force the definition of the EHType if necessary.
4951 if (flags & CLS_EXCEPTION)
4952 GetInterfaceEHType(ID->getClassInterface(), true);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004953}
4954
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00004955/// GenerateProtocolRef - This routine is called to generate code for
4956/// a protocol reference expression; as in:
4957/// @code
4958/// @protocol(Proto1);
4959/// @endcode
4960/// It generates a weak reference to l_OBJC_PROTOCOL_REFERENCE_$_Proto1
4961/// which will hold address of the protocol meta-data.
4962///
4963llvm::Value *CGObjCNonFragileABIMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004964 const ObjCProtocolDecl *PD) {
4965
Fariborz Jahanian960cd062009-04-10 18:47:34 +00004966 // This routine is called for @protocol only. So, we must build definition
4967 // of protocol's meta-data (not a reference to it!)
4968 //
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004969 llvm::Constant *Init =
4970 llvm::ConstantExpr::getBitCast(GetOrEmitProtocol(PD),
4971 ObjCTypes.ExternalProtocolPtrTy);
4972
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00004973 std::string ProtocolName("\01l_OBJC_PROTOCOL_REFERENCE_$_");
4974 ProtocolName += PD->getNameAsCString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004975
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00004976 llvm::GlobalVariable *PTGV = CGM.getModule().getGlobalVariable(ProtocolName);
4977 if (PTGV)
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00004978 return Builder.CreateLoad(PTGV, "tmp");
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00004979 PTGV = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004980 CGM.getModule(),
4981 Init->getType(), false,
4982 llvm::GlobalValue::WeakAnyLinkage,
4983 Init,
4984 ProtocolName);
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00004985 PTGV->setSection("__DATA, __objc_protorefs, coalesced, no_dead_strip");
4986 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00004987 CGM.AddUsedGlobal(PTGV);
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00004988 return Builder.CreateLoad(PTGV, "tmp");
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00004989}
4990
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00004991/// GenerateCategory - Build metadata for a category implementation.
4992/// struct _category_t {
4993/// const char * const name;
4994/// struct _class_t *const cls;
4995/// const struct _method_list_t * const instance_methods;
4996/// const struct _method_list_t * const class_methods;
4997/// const struct _protocol_list_t * const protocols;
4998/// const struct _prop_list_t * const properties;
4999/// }
5000///
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005001void CGObjCNonFragileABIMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005002 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005003 const char *Prefix = "\01l_OBJC_$_CATEGORY_";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005004 std::string ExtCatName(Prefix + Interface->getNameAsString()+
5005 "_$_" + OCD->getNameAsString());
5006 std::string ExtClassName(getClassSymbolPrefix() +
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005007 Interface->getNameAsString());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005008
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005009 std::vector<llvm::Constant*> Values(6);
5010 Values[0] = GetClassName(OCD->getIdentifier());
5011 // meta-class entry symbol
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005012 llvm::GlobalVariable *ClassGV = GetClassGlobal(ExtClassName);
Fariborz Jahanian2cdcc4c2009-11-17 22:02:21 +00005013 if (Interface->hasAttr<WeakImportAttr>())
5014 ClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
5015
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005016 Values[1] = ClassGV;
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005017 std::vector<llvm::Constant*> Methods;
5018 std::string MethodListName(Prefix);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005019 MethodListName += "INSTANCE_METHODS_" + Interface->getNameAsString() +
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005020 "_$_" + OCD->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005021
5022 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005023 i = OCD->instmeth_begin(), e = OCD->instmeth_end(); i != e; ++i) {
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005024 // Instance methods should always be defined.
5025 Methods.push_back(GetMethodConstant(*i));
5026 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005027
5028 Values[2] = EmitMethodList(MethodListName,
5029 "__DATA, __objc_const",
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005030 Methods);
5031
5032 MethodListName = Prefix;
5033 MethodListName += "CLASS_METHODS_" + Interface->getNameAsString() + "_$_" +
5034 OCD->getNameAsString();
5035 Methods.clear();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005036 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005037 i = OCD->classmeth_begin(), e = OCD->classmeth_end(); i != e; ++i) {
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005038 // Class methods should always be defined.
5039 Methods.push_back(GetMethodConstant(*i));
5040 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005041
5042 Values[3] = EmitMethodList(MethodListName,
5043 "__DATA, __objc_const",
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005044 Methods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005045 const ObjCCategoryDecl *Category =
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00005046 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005047 if (Category) {
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005048 llvm::SmallString<256> ExtName;
5049 llvm::raw_svector_ostream(ExtName) << Interface->getName() << "_$_"
5050 << OCD->getName();
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005051 Values[4] = EmitProtocolList("\01l_OBJC_CATEGORY_PROTOCOLS_$_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005052 + Interface->getName() + "_$_"
5053 + Category->getName(),
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005054 Category->protocol_begin(),
5055 Category->protocol_end());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005056 Values[5] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(),
5057 OCD, Category, ObjCTypes);
Mike Stumpb3589f42009-07-30 22:28:39 +00005058 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00005059 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
5060 Values[5] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005061 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005062
5063 llvm::Constant *Init =
5064 llvm::ConstantStruct::get(ObjCTypes.CategorynfABITy,
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005065 Values);
5066 llvm::GlobalVariable *GCATV
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005067 = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.CategorynfABITy,
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005068 false,
5069 llvm::GlobalValue::InternalLinkage,
5070 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005071 ExtCatName);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005072 GCATV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005073 CGM.getTargetData().getABITypeAlignment(ObjCTypes.CategorynfABITy));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005074 GCATV->setSection("__DATA, __objc_const");
Chris Lattnerad64e022009-07-17 23:57:13 +00005075 CGM.AddUsedGlobal(GCATV);
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005076 DefinedCategories.push_back(GCATV);
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005077
5078 // Determine if this category is also "non-lazy".
5079 if (ImplementationIsNonLazy(OCD))
5080 DefinedNonLazyCategories.push_back(GCATV);
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005081}
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005082
5083/// GetMethodConstant - Return a struct objc_method constant for the
5084/// given method if it has been defined. The result is null if the
5085/// method has not been defined. The return value has type MethodPtrTy.
5086llvm::Constant *CGObjCNonFragileABIMac::GetMethodConstant(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005087 const ObjCMethodDecl *MD) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005088 // FIXME: Use DenseMap::lookup
5089 llvm::Function *Fn = MethodDefinitions[MD];
5090 if (!Fn)
5091 return 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005092
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005093 std::vector<llvm::Constant*> Method(3);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005094 Method[0] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00005095 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005096 ObjCTypes.SelectorPtrTy);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005097 Method[1] = GetMethodVarType(MD);
Owen Anderson3c4972d2009-07-29 18:54:39 +00005098 Method[2] = llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00005099 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005100}
5101
5102/// EmitMethodList - Build meta-data for method declarations
5103/// struct _method_list_t {
5104/// uint32_t entsize; // sizeof(struct _objc_method)
5105/// uint32_t method_count;
5106/// struct _objc_method method_list[method_count];
5107/// }
5108///
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005109llvm::Constant *CGObjCNonFragileABIMac::EmitMethodList(llvm::Twine Name,
5110 const char *Section,
5111 const ConstantVector &Methods) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005112 // Return null for empty list.
5113 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00005114 return llvm::Constant::getNullValue(ObjCTypes.MethodListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005115
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005116 std::vector<llvm::Constant*> Values(3);
5117 // sizeof(struct _objc_method)
Duncan Sands9408c452009-05-09 07:08:47 +00005118 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.MethodTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005119 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005120 // method_count
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005121 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00005122 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005123 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00005124 Values[2] = llvm::ConstantArray::get(AT, Methods);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005125 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005126
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005127 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005128 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005129 llvm::GlobalValue::InternalLinkage,
5130 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005131 Name);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005132 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005133 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005134 GV->setSection(Section);
Chris Lattnerad64e022009-07-17 23:57:13 +00005135 CGM.AddUsedGlobal(GV);
Owen Anderson3c4972d2009-07-29 18:54:39 +00005136 return llvm::ConstantExpr::getBitCast(GV,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005137 ObjCTypes.MethodListnfABIPtrTy);
5138}
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005139
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005140/// ObjCIvarOffsetVariable - Returns the ivar offset variable for
5141/// the given ivar.
Daniel Dunbare83be122010-04-02 21:14:02 +00005142llvm::GlobalVariable *
5143CGObjCNonFragileABIMac::ObjCIvarOffsetVariable(const ObjCInterfaceDecl *ID,
5144 const ObjCIvarDecl *Ivar) {
5145 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
Daniel Dunbara81419d2009-05-05 00:36:57 +00005146 std::string Name = "OBJC_IVAR_$_" + Container->getNameAsString() +
Douglas Gregor6ab35242009-04-09 21:40:53 +00005147 '.' + Ivar->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005148 llvm::GlobalVariable *IvarOffsetGV =
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005149 CGM.getModule().getGlobalVariable(Name);
5150 if (!IvarOffsetGV)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005151 IvarOffsetGV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005152 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.LongTy,
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005153 false,
5154 llvm::GlobalValue::ExternalLinkage,
5155 0,
Owen Anderson1c431b32009-07-08 19:05:04 +00005156 Name);
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005157 return IvarOffsetGV;
5158}
5159
Daniel Dunbare83be122010-04-02 21:14:02 +00005160llvm::Constant *
5161CGObjCNonFragileABIMac::EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
5162 const ObjCIvarDecl *Ivar,
5163 unsigned long int Offset) {
Daniel Dunbar737c5022009-04-19 00:44:02 +00005164 llvm::GlobalVariable *IvarOffsetGV = ObjCIvarOffsetVariable(ID, Ivar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005165 IvarOffsetGV->setInitializer(llvm::ConstantInt::get(ObjCTypes.LongTy,
Daniel Dunbar737c5022009-04-19 00:44:02 +00005166 Offset));
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005167 IvarOffsetGV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005168 CGM.getTargetData().getABITypeAlignment(ObjCTypes.LongTy));
Daniel Dunbar737c5022009-04-19 00:44:02 +00005169
Mike Stumpf5408fe2009-05-16 07:57:57 +00005170 // FIXME: This matches gcc, but shouldn't the visibility be set on the use as
5171 // well (i.e., in ObjCIvarOffsetVariable).
Daniel Dunbar737c5022009-04-19 00:44:02 +00005172 if (Ivar->getAccessControl() == ObjCIvarDecl::Private ||
5173 Ivar->getAccessControl() == ObjCIvarDecl::Package ||
5174 CGM.getDeclVisibilityMode(ID) == LangOptions::Hidden)
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00005175 IvarOffsetGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar04d40782009-04-14 06:00:08 +00005176 else
Fariborz Jahanian77c9fd22009-04-06 18:30:00 +00005177 IvarOffsetGV->setVisibility(llvm::GlobalValue::DefaultVisibility);
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005178 IvarOffsetGV->setSection("__DATA, __objc_const");
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005179 return IvarOffsetGV;
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005180}
5181
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005182/// EmitIvarList - Emit the ivar list for the given
Daniel Dunbar11394522009-04-18 08:51:00 +00005183/// implementation. The return value has type
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005184/// IvarListnfABIPtrTy.
5185/// struct _ivar_t {
5186/// unsigned long int *offset; // pointer to ivar offset location
5187/// char *name;
5188/// char *type;
5189/// uint32_t alignment;
5190/// uint32_t size;
5191/// }
5192/// struct _ivar_list_t {
5193/// uint32 entsize; // sizeof(struct _ivar_t)
5194/// uint32 count;
5195/// struct _iver_t list[count];
5196/// }
5197///
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00005198
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005199llvm::Constant *CGObjCNonFragileABIMac::EmitIvarList(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005200 const ObjCImplementationDecl *ID) {
5201
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005202 std::vector<llvm::Constant*> Ivars, Ivar(5);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005203
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005204 const ObjCInterfaceDecl *OID = ID->getClassInterface();
5205 assert(OID && "CGObjCNonFragileABIMac::EmitIvarList - null interface");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005206
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005207 // FIXME. Consolidate this with similar code in GenerateClass.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005208
Daniel Dunbar91636d62009-04-20 00:33:43 +00005209 // Collect declared and synthesized ivars in a small vector.
Fariborz Jahanian18191882009-03-31 18:11:23 +00005210 llvm::SmallVector<ObjCIvarDecl*, 16> OIvars;
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00005211 CGM.getContext().ShallowCollectObjCIvars(OID, OIvars);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005212
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00005213 for (unsigned i = 0, e = OIvars.size(); i != e; ++i) {
5214 ObjCIvarDecl *IVD = OIvars[i];
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00005215 // Ignore unnamed bit-fields.
5216 if (!IVD->getDeclName())
5217 continue;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005218 Ivar[0] = EmitIvarOffsetVar(ID->getClassInterface(), IVD,
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00005219 ComputeIvarBaseOffset(CGM, ID, IVD));
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00005220 Ivar[1] = GetMethodVarName(IVD->getIdentifier());
5221 Ivar[2] = GetMethodVarType(IVD);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005222 const llvm::Type *FieldTy =
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00005223 CGM.getTypes().ConvertTypeForMem(IVD->getType());
Duncan Sands9408c452009-05-09 07:08:47 +00005224 unsigned Size = CGM.getTargetData().getTypeAllocSize(FieldTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005225 unsigned Align = CGM.getContext().getPreferredTypeAlign(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005226 IVD->getType().getTypePtr()) >> 3;
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005227 Align = llvm::Log2_32(Align);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005228 Ivar[3] = llvm::ConstantInt::get(ObjCTypes.IntTy, Align);
Daniel Dunbar91636d62009-04-20 00:33:43 +00005229 // NOTE. Size of a bitfield does not match gcc's, because of the
5230 // way bitfields are treated special in each. But I am told that
5231 // 'size' for bitfield ivars is ignored by the runtime so it does
5232 // not matter. If it matters, there is enough info to get the
5233 // bitfield right!
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005234 Ivar[4] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Owen Anderson08e25242009-07-27 22:29:56 +00005235 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarnfABITy, Ivar));
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005236 }
5237 // Return null for empty list.
5238 if (Ivars.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00005239 return llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005240 std::vector<llvm::Constant*> Values(3);
Duncan Sands9408c452009-05-09 07:08:47 +00005241 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.IvarnfABITy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005242 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
5243 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00005244 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarnfABITy,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005245 Ivars.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00005246 Values[2] = llvm::ConstantArray::get(AT, Ivars);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005247 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005248 const char *Prefix = "\01l_OBJC_$_INSTANCE_VARIABLES_";
5249 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005250 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005251 llvm::GlobalValue::InternalLinkage,
5252 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005253 Prefix + OID->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005254 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005255 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005256 GV->setSection("__DATA, __objc_const");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005257
Chris Lattnerad64e022009-07-17 23:57:13 +00005258 CGM.AddUsedGlobal(GV);
Owen Anderson3c4972d2009-07-29 18:54:39 +00005259 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005260}
5261
5262llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocolRef(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005263 const ObjCProtocolDecl *PD) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005264 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005265
Fariborz Jahanianda320092009-01-29 19:24:30 +00005266 if (!Entry) {
5267 // We use the initializer as a marker of whether this is a forward
5268 // reference or not. At module finalization we add the empty
5269 // contents for protocols which were referenced but never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005270 Entry =
5271 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy, false,
5272 llvm::GlobalValue::ExternalLinkage,
5273 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005274 "\01l_OBJC_PROTOCOL_$_" + PD->getName());
Fariborz Jahanianda320092009-01-29 19:24:30 +00005275 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanianda320092009-01-29 19:24:30 +00005276 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005277
Fariborz Jahanianda320092009-01-29 19:24:30 +00005278 return Entry;
5279}
5280
5281/// GetOrEmitProtocol - Generate the protocol meta-data:
5282/// @code
5283/// struct _protocol_t {
5284/// id isa; // NULL
5285/// const char * const protocol_name;
5286/// const struct _protocol_list_t * protocol_list; // super protocols
5287/// const struct method_list_t * const instance_methods;
5288/// const struct method_list_t * const class_methods;
5289/// const struct method_list_t *optionalInstanceMethods;
5290/// const struct method_list_t *optionalClassMethods;
5291/// const struct _prop_list_t * properties;
5292/// const uint32_t size; // sizeof(struct _protocol_t)
5293/// const uint32_t flags; // = 0
5294/// }
5295/// @endcode
5296///
5297
5298llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocol(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005299 const ObjCProtocolDecl *PD) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005300 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005301
Fariborz Jahanianda320092009-01-29 19:24:30 +00005302 // Early exit if a defining object has already been generated.
5303 if (Entry && Entry->hasInitializer())
5304 return Entry;
5305
Fariborz Jahanianda320092009-01-29 19:24:30 +00005306 // Construct method lists.
5307 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
5308 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005309 for (ObjCProtocolDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005310 i = PD->instmeth_begin(), e = PD->instmeth_end(); i != e; ++i) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005311 ObjCMethodDecl *MD = *i;
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005312 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005313 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
5314 OptInstanceMethods.push_back(C);
5315 } else {
5316 InstanceMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005317 }
Fariborz Jahanianda320092009-01-29 19:24:30 +00005318 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005319
5320 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005321 i = PD->classmeth_begin(), e = PD->classmeth_end(); i != e; ++i) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005322 ObjCMethodDecl *MD = *i;
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005323 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005324 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
5325 OptClassMethods.push_back(C);
5326 } else {
5327 ClassMethods.push_back(C);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005328 }
Fariborz Jahanianda320092009-01-29 19:24:30 +00005329 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005330
Fariborz Jahanianda320092009-01-29 19:24:30 +00005331 std::vector<llvm::Constant*> Values(10);
5332 // isa is NULL
Owen Andersonc9c88b42009-07-31 20:28:54 +00005333 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ObjectPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005334 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005335 Values[2] = EmitProtocolList("\01l_OBJC_$_PROTOCOL_REFS_" + PD->getName(),
5336 PD->protocol_begin(),
5337 PD->protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005338
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005339 Values[3] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005340 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005341 "__DATA, __objc_const",
5342 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005343 Values[4] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005344 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005345 "__DATA, __objc_const",
5346 ClassMethods);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005347 Values[5] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005348 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005349 "__DATA, __objc_const",
5350 OptInstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005351 Values[6] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005352 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005353 "__DATA, __objc_const",
5354 OptClassMethods);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005355 Values[7] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005356 0, PD, ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005357 uint32_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00005358 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolnfABITy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005359 Values[8] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Owen Andersonc9c88b42009-07-31 20:28:54 +00005360 Values[9] = llvm::Constant::getNullValue(ObjCTypes.IntTy);
Owen Anderson08e25242009-07-27 22:29:56 +00005361 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolnfABITy,
Fariborz Jahanianda320092009-01-29 19:24:30 +00005362 Values);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005363
Fariborz Jahanianda320092009-01-29 19:24:30 +00005364 if (Entry) {
5365 // Already created, fix the linkage and update the initializer.
Mike Stump286acbd2009-03-07 16:33:28 +00005366 Entry->setLinkage(llvm::GlobalValue::WeakAnyLinkage);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005367 Entry->setInitializer(Init);
5368 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005369 Entry =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005370 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy,
5371 false, llvm::GlobalValue::WeakAnyLinkage, Init,
5372 "\01l_OBJC_PROTOCOL_$_" + PD->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005373 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005374 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ProtocolnfABITy));
Fariborz Jahanianda320092009-01-29 19:24:30 +00005375 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanianda320092009-01-29 19:24:30 +00005376 }
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005377 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005378 CGM.AddUsedGlobal(Entry);
5379
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005380 // Use this protocol meta-data to build protocol list table in section
5381 // __DATA, __objc_protolist
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005382 llvm::GlobalVariable *PTGV =
5383 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABIPtrTy,
5384 false, llvm::GlobalValue::WeakAnyLinkage, Entry,
5385 "\01l_OBJC_LABEL_PROTOCOL_$_" + PD->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005386 PTGV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005387 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ProtocolnfABIPtrTy));
Daniel Dunbar0bf21992009-04-15 02:56:18 +00005388 PTGV->setSection("__DATA, __objc_protolist, coalesced, no_dead_strip");
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005389 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005390 CGM.AddUsedGlobal(PTGV);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005391 return Entry;
5392}
5393
5394/// EmitProtocolList - Generate protocol list meta-data:
5395/// @code
5396/// struct _protocol_list_t {
5397/// long protocol_count; // Note, this is 32/64 bit
5398/// struct _protocol_t[protocol_count];
5399/// }
5400/// @endcode
5401///
5402llvm::Constant *
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005403CGObjCNonFragileABIMac::EmitProtocolList(llvm::Twine Name,
5404 ObjCProtocolDecl::protocol_iterator begin,
5405 ObjCProtocolDecl::protocol_iterator end) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005406 std::vector<llvm::Constant*> ProtocolRefs;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005407
Fariborz Jahanianda320092009-01-29 19:24:30 +00005408 // Just return null for empty protocol lists
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005409 if (begin == end)
Owen Andersonc9c88b42009-07-31 20:28:54 +00005410 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005411
Daniel Dunbar948e2582009-02-15 07:36:20 +00005412 // FIXME: We shouldn't need to do this lookup here, should we?
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005413 llvm::SmallString<256> TmpName;
5414 Name.toVector(TmpName);
5415 llvm::GlobalVariable *GV =
5416 CGM.getModule().getGlobalVariable(TmpName.str(), true);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005417 if (GV)
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005418 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005419
Daniel Dunbar948e2582009-02-15 07:36:20 +00005420 for (; begin != end; ++begin)
5421 ProtocolRefs.push_back(GetProtocolRef(*begin)); // Implemented???
5422
Fariborz Jahanianda320092009-01-29 19:24:30 +00005423 // This list is null terminated.
Owen Andersonc9c88b42009-07-31 20:28:54 +00005424 ProtocolRefs.push_back(llvm::Constant::getNullValue(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005425 ObjCTypes.ProtocolnfABIPtrTy));
5426
Fariborz Jahanianda320092009-01-29 19:24:30 +00005427 std::vector<llvm::Constant*> Values(2);
Owen Andersona1cf15f2009-07-14 23:10:40 +00005428 Values[0] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005429 llvm::ConstantInt::get(ObjCTypes.LongTy, ProtocolRefs.size() - 1);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005430 Values[1] =
Owen Anderson7db6d832009-07-28 18:33:04 +00005431 llvm::ConstantArray::get(
Owen Anderson96e0fc72009-07-29 22:16:19 +00005432 llvm::ArrayType::get(ObjCTypes.ProtocolnfABIPtrTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005433 ProtocolRefs.size()),
5434 ProtocolRefs);
5435
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005436 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Owen Anderson1c431b32009-07-08 19:05:04 +00005437 GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanianda320092009-01-29 19:24:30 +00005438 llvm::GlobalValue::InternalLinkage,
5439 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005440 Name);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005441 GV->setSection("__DATA, __objc_const");
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005442 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005443 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Chris Lattnerad64e022009-07-17 23:57:13 +00005444 CGM.AddUsedGlobal(GV);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005445 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar948e2582009-02-15 07:36:20 +00005446 ObjCTypes.ProtocolListnfABIPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005447}
5448
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005449/// GetMethodDescriptionConstant - This routine build following meta-data:
5450/// struct _objc_method {
5451/// SEL _cmd;
5452/// char *method_type;
5453/// char *_imp;
5454/// }
5455
5456llvm::Constant *
5457CGObjCNonFragileABIMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
5458 std::vector<llvm::Constant*> Desc(3);
Owen Andersona1cf15f2009-07-14 23:10:40 +00005459 Desc[0] =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005460 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
5461 ObjCTypes.SelectorPtrTy);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005462 Desc[1] = GetMethodVarType(MD);
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005463 // Protocol methods have no implementation. So, this entry is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00005464 Desc[2] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00005465 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Desc);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005466}
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005467
5468/// EmitObjCValueForIvar - Code Gen for nonfragile ivar reference.
5469/// This code gen. amounts to generating code for:
5470/// @code
5471/// (type *)((char *)base + _OBJC_IVAR_$_.ivar;
5472/// @encode
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005473///
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00005474LValue CGObjCNonFragileABIMac::EmitObjCValueForIvar(
John McCall506b57e2010-05-17 21:00:27 +00005475 CodeGen::CodeGenFunction &CGF,
5476 QualType ObjectTy,
5477 llvm::Value *BaseValue,
5478 const ObjCIvarDecl *Ivar,
5479 unsigned CVRQualifiers) {
5480 ObjCInterfaceDecl *ID = ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar97776872009-04-22 07:32:20 +00005481 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
5482 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005483}
5484
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00005485llvm::Value *CGObjCNonFragileABIMac::EmitIvarOffset(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005486 CodeGen::CodeGenFunction &CGF,
5487 const ObjCInterfaceDecl *Interface,
5488 const ObjCIvarDecl *Ivar) {
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005489 return CGF.Builder.CreateLoad(ObjCIvarOffsetVariable(Interface, Ivar),"ivar");
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00005490}
5491
Fariborz Jahanian46551122009-02-04 00:22:57 +00005492CodeGen::RValue CGObjCNonFragileABIMac::EmitMessageSend(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005493 CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005494 ReturnValueSlot Return,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005495 QualType ResultType,
5496 Selector Sel,
5497 llvm::Value *Receiver,
5498 QualType Arg0Ty,
5499 bool IsSuper,
5500 const CallArgList &CallArgs) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00005501 // FIXME. Even though IsSuper is passes. This function doese not handle calls
5502 // to 'super' receivers.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005503 CodeGenTypes &Types = CGM.getTypes();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005504 llvm::Value *Arg0 = Receiver;
5505 if (!IsSuper)
5506 Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy, "tmp");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005507
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005508 // Find the message function name.
Mike Stumpf5408fe2009-05-16 07:57:57 +00005509 // FIXME. This is too much work to get the ABI-specific result type needed to
5510 // find the message name.
John McCallead608a2010-02-26 00:48:12 +00005511 const CGFunctionInfo &FnInfo
Rafael Espindola264ba482010-03-30 20:24:48 +00005512 = Types.getFunctionInfo(ResultType, CallArgList(),
5513 FunctionType::ExtInfo());
Fariborz Jahanian70b51c72009-04-30 23:08:58 +00005514 llvm::Constant *Fn = 0;
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005515 std::string Name("\01l_");
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00005516 if (CGM.ReturnTypeUsesSRet(FnInfo)) {
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005517#if 0
5518 // unlike what is documented. gcc never generates this API!!
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005519 if (Receiver->getType() == ObjCTypes.ObjectPtrTy) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005520 Fn = ObjCTypes.getMessageSendIdStretFixupFn();
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005521 // FIXME. Is there a better way of getting these names.
5522 // They are available in RuntimeFunctions vector pair.
5523 Name += "objc_msgSendId_stret_fixup";
Mike Stumpb3589f42009-07-30 22:28:39 +00005524 } else
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005525#endif
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005526 if (IsSuper) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005527 Fn = ObjCTypes.getMessageSendSuper2StretFixupFn();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005528 Name += "objc_msgSendSuper2_stret_fixup";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005529 } else {
5530 Fn = ObjCTypes.getMessageSendStretFixupFn();
5531 Name += "objc_msgSend_stret_fixup";
5532 }
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00005533 } else if (!IsSuper && CGM.ReturnTypeUsesFPRet(ResultType)) {
5534 Fn = ObjCTypes.getMessageSendFpretFixupFn();
5535 Name += "objc_msgSend_fpret_fixup";
Mike Stumpb3589f42009-07-30 22:28:39 +00005536 } else {
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005537#if 0
5538// unlike what is documented. gcc never generates this API!!
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005539 if (Receiver->getType() == ObjCTypes.ObjectPtrTy) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005540 Fn = ObjCTypes.getMessageSendIdFixupFn();
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005541 Name += "objc_msgSendId_fixup";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005542 } else
Fariborz Jahanianc1708522009-02-05 18:00:27 +00005543#endif
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005544 if (IsSuper) {
Chris Lattner1c02f862009-04-22 02:53:24 +00005545 Fn = ObjCTypes.getMessageSendSuper2FixupFn();
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005546 Name += "objc_msgSendSuper2_fixup";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005547 } else {
5548 Fn = ObjCTypes.getMessageSendFixupFn();
5549 Name += "objc_msgSend_fixup";
5550 }
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005551 }
Fariborz Jahanian70b51c72009-04-30 23:08:58 +00005552 assert(Fn && "CGObjCNonFragileABIMac::EmitMessageSend");
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005553 Name += '_';
5554 std::string SelName(Sel.getAsString());
5555 // Replace all ':' in selector name with '_' ouch!
Mike Stump1eb44332009-09-09 15:08:12 +00005556 for (unsigned i = 0; i < SelName.size(); i++)
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005557 if (SelName[i] == ':')
5558 SelName[i] = '_';
5559 Name += SelName;
5560 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
5561 if (!GV) {
Daniel Dunbar33af70f2009-04-15 19:03:14 +00005562 // Build message ref table entry.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005563 std::vector<llvm::Constant*> Values(2);
5564 Values[0] = Fn;
5565 Values[1] = GetMethodVarName(Sel);
Nick Lewycky0d36dd22009-09-19 20:00:52 +00005566 llvm::Constant *Init = llvm::ConstantStruct::get(VMContext, Values, false);
Owen Anderson1c431b32009-07-08 19:05:04 +00005567 GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Mike Stump286acbd2009-03-07 16:33:28 +00005568 llvm::GlobalValue::WeakAnyLinkage,
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005569 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005570 Name);
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005571 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbarf59c1a62009-04-15 19:04:46 +00005572 GV->setAlignment(16);
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005573 GV->setSection("__DATA, __objc_msgrefs, coalesced");
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005574 }
5575 llvm::Value *Arg1 = CGF.Builder.CreateBitCast(GV, ObjCTypes.MessageRefPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005576
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005577 CallArgList ActualArgs;
5578 ActualArgs.push_back(std::make_pair(RValue::get(Arg0), Arg0Ty));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005579 ActualArgs.push_back(std::make_pair(RValue::get(Arg1),
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005580 ObjCTypes.MessageRefCPtrTy));
5581 ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
John McCall04a67a62010-02-05 21:31:56 +00005582 const CGFunctionInfo &FnInfo1 = Types.getFunctionInfo(ResultType, ActualArgs,
Rafael Espindola264ba482010-03-30 20:24:48 +00005583 FunctionType::ExtInfo());
Fariborz Jahanianef163782009-02-05 01:13:09 +00005584 llvm::Value *Callee = CGF.Builder.CreateStructGEP(Arg1, 0);
5585 Callee = CGF.Builder.CreateLoad(Callee);
Fariborz Jahanian3ab75bd2009-02-14 21:25:36 +00005586 const llvm::FunctionType *FTy = Types.GetFunctionType(FnInfo1, true);
Fariborz Jahanianef163782009-02-05 01:13:09 +00005587 Callee = CGF.Builder.CreateBitCast(Callee,
Owen Anderson96e0fc72009-07-29 22:16:19 +00005588 llvm::PointerType::getUnqual(FTy));
John McCallef072fd2010-05-22 01:48:05 +00005589 return CGF.EmitCall(FnInfo1, Callee, Return, ActualArgs);
Fariborz Jahanian46551122009-02-04 00:22:57 +00005590}
5591
5592/// Generate code for a message send expression in the nonfragile abi.
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005593CodeGen::RValue
5594CGObjCNonFragileABIMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005595 ReturnValueSlot Return,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005596 QualType ResultType,
5597 Selector Sel,
5598 llvm::Value *Receiver,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005599 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00005600 const ObjCInterfaceDecl *Class,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005601 const ObjCMethodDecl *Method) {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005602 return LegacyDispatchedSelector(Sel)
John McCallef072fd2010-05-22 01:48:05 +00005603 ? EmitLegacyMessageSend(CGF, Return, ResultType,
5604 EmitSelector(CGF.Builder, Sel),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005605 Receiver, CGF.getContext().getObjCIdType(),
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005606 false, CallArgs, Method, ObjCTypes)
John McCallef072fd2010-05-22 01:48:05 +00005607 : EmitMessageSend(CGF, Return, ResultType, Sel,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005608 Receiver, CGF.getContext().getObjCIdType(),
5609 false, CallArgs);
Fariborz Jahanian46551122009-02-04 00:22:57 +00005610}
5611
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005612llvm::GlobalVariable *
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005613CGObjCNonFragileABIMac::GetClassGlobal(const std::string &Name) {
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005614 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
5615
Daniel Dunbardfff2302009-03-02 05:18:14 +00005616 if (!GV) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005617 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABITy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005618 false, llvm::GlobalValue::ExternalLinkage,
5619 0, Name);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005620 }
5621
5622 return GV;
5623}
5624
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005625llvm::Value *CGObjCNonFragileABIMac::EmitClassRef(CGBuilderTy &Builder,
5626 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005627 llvm::GlobalVariable *&Entry = ClassReferences[ID->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005628
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005629 if (!Entry) {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005630 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005631 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005632 Entry =
5633 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005634 false, llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005635 ClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005636 "\01L_OBJC_CLASSLIST_REFERENCES_$_");
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005637 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005638 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005639 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar11394522009-04-18 08:51:00 +00005640 Entry->setSection("__DATA, __objc_classrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005641 CGM.AddUsedGlobal(Entry);
Daniel Dunbar11394522009-04-18 08:51:00 +00005642 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005643
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005644 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar11394522009-04-18 08:51:00 +00005645}
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005646
Daniel Dunbar11394522009-04-18 08:51:00 +00005647llvm::Value *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005648CGObjCNonFragileABIMac::EmitSuperClassRef(CGBuilderTy &Builder,
Daniel Dunbar11394522009-04-18 08:51:00 +00005649 const ObjCInterfaceDecl *ID) {
5650 llvm::GlobalVariable *&Entry = SuperClassReferences[ID->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005651
Daniel Dunbar11394522009-04-18 08:51:00 +00005652 if (!Entry) {
5653 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5654 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005655 Entry =
5656 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005657 false, llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005658 ClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005659 "\01L_OBJC_CLASSLIST_SUP_REFS_$_");
Daniel Dunbar11394522009-04-18 08:51:00 +00005660 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005661 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005662 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar11394522009-04-18 08:51:00 +00005663 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005664 CGM.AddUsedGlobal(Entry);
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005665 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005666
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005667 return Builder.CreateLoad(Entry, "tmp");
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005668}
5669
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005670/// EmitMetaClassRef - Return a Value * of the address of _class_t
5671/// meta-data
5672///
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005673llvm::Value *CGObjCNonFragileABIMac::EmitMetaClassRef(CGBuilderTy &Builder,
5674 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005675 llvm::GlobalVariable * &Entry = MetaClassReferences[ID->getIdentifier()];
5676 if (Entry)
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005677 return Builder.CreateLoad(Entry, "tmp");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005678
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005679 std::string MetaClassName(getMetaclassSymbolPrefix() + ID->getNameAsString());
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005680 llvm::GlobalVariable *MetaClassGV = GetClassGlobal(MetaClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005681 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00005682 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy, false,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005683 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005684 MetaClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005685 "\01L_OBJC_CLASSLIST_SUP_REFS_$_");
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005686 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005687 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005688 ObjCTypes.ClassnfABIPtrTy));
5689
Daniel Dunbar33af70f2009-04-15 19:03:14 +00005690 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005691 CGM.AddUsedGlobal(Entry);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005692
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005693 return Builder.CreateLoad(Entry, "tmp");
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005694}
5695
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005696/// GetClass - Return a reference to the class for the given interface
5697/// decl.
5698llvm::Value *CGObjCNonFragileABIMac::GetClass(CGBuilderTy &Builder,
5699 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian269f8bc2009-11-17 22:42:00 +00005700 if (ID->hasAttr<WeakImportAttr>()) {
5701 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5702 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
5703 ClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
5704 }
5705
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005706 return EmitClassRef(Builder, ID);
5707}
5708
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005709/// Generates a message send where the super is the receiver. This is
5710/// a message send to self with special delivery semantics indicating
5711/// which class's method should be called.
5712CodeGen::RValue
5713CGObjCNonFragileABIMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005714 ReturnValueSlot Return,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005715 QualType ResultType,
5716 Selector Sel,
5717 const ObjCInterfaceDecl *Class,
5718 bool isCategoryImpl,
5719 llvm::Value *Receiver,
5720 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005721 const CodeGen::CallArgList &CallArgs,
5722 const ObjCMethodDecl *Method) {
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005723 // ...
5724 // Create and init a super structure; this is a (receiver, class)
5725 // pair we will pass to objc_msgSendSuper.
5726 llvm::Value *ObjCSuper =
5727 CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005728
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005729 llvm::Value *ReceiverAsObject =
5730 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
5731 CGF.Builder.CreateStore(ReceiverAsObject,
5732 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005733
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005734 // If this is a class message the metaclass is passed as the target.
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005735 llvm::Value *Target;
5736 if (IsClassMessage) {
5737 if (isCategoryImpl) {
5738 // Message sent to "super' in a class method defined in
5739 // a category implementation.
Daniel Dunbar11394522009-04-18 08:51:00 +00005740 Target = EmitClassRef(CGF.Builder, Class);
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005741 Target = CGF.Builder.CreateStructGEP(Target, 0);
5742 Target = CGF.Builder.CreateLoad(Target);
Mike Stumpb3589f42009-07-30 22:28:39 +00005743 } else
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00005744 Target = EmitMetaClassRef(CGF.Builder, Class);
Mike Stumpb3589f42009-07-30 22:28:39 +00005745 } else
Daniel Dunbar11394522009-04-18 08:51:00 +00005746 Target = EmitSuperClassRef(CGF.Builder, Class);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005747
Mike Stumpf5408fe2009-05-16 07:57:57 +00005748 // FIXME: We shouldn't need to do this cast, rectify the ASTContext and
5749 // ObjCTypes types.
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005750 const llvm::Type *ClassTy =
5751 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
5752 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
5753 CGF.Builder.CreateStore(Target,
5754 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005755
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005756 return (LegacyDispatchedSelector(Sel))
John McCallef072fd2010-05-22 01:48:05 +00005757 ? EmitLegacyMessageSend(CGF, Return, ResultType,
5758 EmitSelector(CGF.Builder, Sel),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005759 ObjCSuper, ObjCTypes.SuperPtrCTy,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005760 true, CallArgs, Method, ObjCTypes)
John McCallef072fd2010-05-22 01:48:05 +00005761 : EmitMessageSend(CGF, Return, ResultType, Sel,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005762 ObjCSuper, ObjCTypes.SuperPtrCTy,
5763 true, CallArgs);
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005764}
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005765
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005766llvm::Value *CGObjCNonFragileABIMac::EmitSelector(CGBuilderTy &Builder,
Fariborz Jahanian03b29602010-06-17 19:56:20 +00005767 Selector Sel, bool lval) {
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005768 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005769
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005770 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005771 llvm::Constant *Casted =
5772 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
5773 ObjCTypes.SelectorPtrTy);
5774 Entry =
5775 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.SelectorPtrTy, false,
5776 llvm::GlobalValue::InternalLinkage,
5777 Casted, "\01L_OBJC_SELECTOR_REFERENCES_");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00005778 Entry->setSection("__DATA, __objc_selrefs, literal_pointers, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005779 CGM.AddUsedGlobal(Entry);
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005780 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005781
Fariborz Jahanian03b29602010-06-17 19:56:20 +00005782 if (lval)
5783 return Entry;
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005784 return Builder.CreateLoad(Entry, "tmp");
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005785}
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005786/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00005787/// objc_assign_ivar (id src, id *dst, ptrdiff_t)
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005788///
5789void CGObjCNonFragileABIMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005790 llvm::Value *src,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00005791 llvm::Value *dst,
5792 llvm::Value *ivarOffset) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005793 const llvm::Type * SrcTy = src->getType();
5794 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005795 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005796 assert(Size <= 8 && "does not support size > 8");
5797 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5798 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005799 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5800 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005801 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5802 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00005803 CGF.Builder.CreateCall3(ObjCTypes.getGcAssignIvarFn(),
5804 src, dst, ivarOffset);
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005805 return;
5806}
5807
5808/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
5809/// objc_assign_strongCast (id src, id *dst)
5810///
5811void CGObjCNonFragileABIMac::EmitObjCStrongCastAssign(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005812 CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005813 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005814 const llvm::Type * SrcTy = src->getType();
5815 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005816 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005817 assert(Size <= 8 && "does not support size > 8");
5818 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005819 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005820 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5821 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005822 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5823 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00005824 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005825 src, dst, "weakassign");
5826 return;
5827}
5828
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005829void CGObjCNonFragileABIMac::EmitGCMemmoveCollectable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005830 CodeGen::CodeGenFunction &CGF,
5831 llvm::Value *DestPtr,
5832 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005833 llvm::Value *Size) {
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005834 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy);
5835 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005836 CGF.Builder.CreateCall3(ObjCTypes.GcMemmoveCollectableFn(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005837 DestPtr, SrcPtr, Size);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00005838 return;
5839}
5840
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005841/// EmitObjCWeakRead - Code gen for loading value of a __weak
5842/// object: objc_read_weak (id *src)
5843///
5844llvm::Value * CGObjCNonFragileABIMac::EmitObjCWeakRead(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005845 CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005846 llvm::Value *AddrWeakObj) {
Eli Friedman8339b352009-03-07 03:57:15 +00005847 const llvm::Type* DestTy =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005848 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
5849 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj, ObjCTypes.PtrObjectPtrTy);
Chris Lattner72db6c32009-04-22 02:44:54 +00005850 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005851 AddrWeakObj, "weakread");
Eli Friedman8339b352009-03-07 03:57:15 +00005852 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005853 return read_weak;
5854}
5855
5856/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
5857/// objc_assign_weak (id src, id *dst)
5858///
5859void CGObjCNonFragileABIMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00005860 llvm::Value *src, llvm::Value *dst) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005861 const llvm::Type * SrcTy = src->getType();
5862 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005863 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005864 assert(Size <= 8 && "does not support size > 8");
5865 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5866 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005867 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5868 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005869 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5870 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner96508e12009-04-17 22:12:36 +00005871 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005872 src, dst, "weakassign");
5873 return;
5874}
5875
5876/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
5877/// objc_assign_global (id src, id *dst)
5878///
5879void CGObjCNonFragileABIMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00005880 llvm::Value *src, llvm::Value *dst,
5881 bool threadlocal) {
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005882 const llvm::Type * SrcTy = src->getType();
5883 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00005884 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00005885 assert(Size <= 8 && "does not support size > 8");
5886 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
5887 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00005888 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
5889 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005890 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
5891 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00005892 if (!threadlocal)
5893 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
5894 src, dst, "globalassign");
5895 else
5896 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignThreadLocalFn(),
5897 src, dst, "threadlocalassign");
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00005898 return;
5899}
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00005900
John McCall740e8072010-07-21 00:41:47 +00005901namespace {
John McCall1f0fca52010-07-21 07:22:38 +00005902 struct CallSyncExit : EHScopeStack::Cleanup {
John McCall740e8072010-07-21 00:41:47 +00005903 llvm::Value *SyncExitFn;
5904 llvm::Value *SyncArg;
5905 CallSyncExit(llvm::Value *SyncExitFn, llvm::Value *SyncArg)
5906 : SyncExitFn(SyncExitFn), SyncArg(SyncArg) {}
5907
5908 void Emit(CodeGenFunction &CGF, bool IsForEHCleanup) {
5909 CGF.Builder.CreateCall(SyncExitFn, SyncArg)->setDoesNotThrow();
5910 }
5911 };
5912}
5913
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005914void
John McCallf1549f62010-07-06 01:34:17 +00005915CGObjCNonFragileABIMac::EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
5916 const ObjCAtSynchronizedStmt &S) {
5917 // Evaluate the lock operand. This should dominate the cleanup.
5918 llvm::Value *SyncArg = CGF.EmitScalarExpr(S.getSynchExpr());
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005919
John McCallf1549f62010-07-06 01:34:17 +00005920 // Acquire the lock.
5921 SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy);
5922 CGF.Builder.CreateCall(ObjCTypes.getSyncEnterFn(), SyncArg)
5923 ->setDoesNotThrow();
5924
5925 // Register an all-paths cleanup to release the lock.
John McCall1f0fca52010-07-21 07:22:38 +00005926 CGF.EHStack.pushCleanup<CallSyncExit>(NormalAndEHCleanup,
5927 ObjCTypes.getSyncExitFn(),
5928 SyncArg);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005929
John McCallf1549f62010-07-06 01:34:17 +00005930 // Emit the body of the statement.
5931 CGF.EmitStmt(S.getSynchBody());
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005932
John McCallf1549f62010-07-06 01:34:17 +00005933 // Pop the lock-release cleanup.
5934 CGF.PopCleanupBlock();
5935}
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00005936
John McCallf1549f62010-07-06 01:34:17 +00005937namespace {
5938 struct CatchHandler {
5939 const VarDecl *Variable;
5940 const Stmt *Body;
5941 llvm::BasicBlock *Block;
5942 llvm::Value *TypeInfo;
5943 };
John McCall8e3f8612010-07-13 22:12:14 +00005944
John McCall1f0fca52010-07-21 07:22:38 +00005945 struct CallObjCEndCatch : EHScopeStack::Cleanup {
John McCall8e3f8612010-07-13 22:12:14 +00005946 CallObjCEndCatch(bool MightThrow, llvm::Value *Fn) :
5947 MightThrow(MightThrow), Fn(Fn) {}
5948 bool MightThrow;
5949 llvm::Value *Fn;
5950
5951 void Emit(CodeGenFunction &CGF, bool IsForEH) {
5952 if (!MightThrow) {
5953 CGF.Builder.CreateCall(Fn)->setDoesNotThrow();
5954 return;
5955 }
5956
5957 CGF.EmitCallOrInvoke(Fn, 0, 0);
5958 }
5959 };
John McCallf1549f62010-07-06 01:34:17 +00005960}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005961
John McCall5a180392010-07-24 00:37:23 +00005962llvm::Constant *
5963CGObjCNonFragileABIMac::GetEHType(QualType T) {
5964 // There's a particular fixed type info for 'id'.
5965 if (T->isObjCIdType() ||
5966 T->isObjCQualifiedIdType()) {
5967 llvm::Constant *IDEHType =
5968 CGM.getModule().getGlobalVariable("OBJC_EHTYPE_id");
5969 if (!IDEHType)
5970 IDEHType =
5971 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy,
5972 false,
5973 llvm::GlobalValue::ExternalLinkage,
5974 0, "OBJC_EHTYPE_id");
5975 return IDEHType;
5976 }
5977
5978 // All other types should be Objective-C interface pointer types.
5979 const ObjCObjectPointerType *PT =
5980 T->getAs<ObjCObjectPointerType>();
5981 assert(PT && "Invalid @catch type.");
5982 const ObjCInterfaceType *IT = PT->getInterfaceType();
5983 assert(IT && "Invalid @catch type.");
5984 return GetInterfaceEHType(IT->getDecl(), false);
5985}
5986
John McCallf1549f62010-07-06 01:34:17 +00005987void CGObjCNonFragileABIMac::EmitTryStmt(CodeGen::CodeGenFunction &CGF,
5988 const ObjCAtTryStmt &S) {
5989 // Jump destination for falling out of catch bodies.
5990 CodeGenFunction::JumpDest Cont;
5991 if (S.getNumCatchStmts())
5992 Cont = CGF.getJumpDestInCurrentScope("eh.cont");
Daniel Dunbar4ff36842009-03-02 06:08:11 +00005993
John McCallf1549f62010-07-06 01:34:17 +00005994 CodeGenFunction::FinallyInfo FinallyInfo;
5995 if (const ObjCAtFinallyStmt *Finally = S.getFinallyStmt())
5996 FinallyInfo = CGF.EnterFinallyBlock(Finally->getFinallyBody(),
5997 ObjCTypes.getObjCBeginCatchFn(),
5998 ObjCTypes.getObjCEndCatchFn(),
5999 ObjCTypes.getExceptionRethrowFn());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006000
John McCallf1549f62010-07-06 01:34:17 +00006001 llvm::SmallVector<CatchHandler, 8> Handlers;
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006002
John McCallf1549f62010-07-06 01:34:17 +00006003 // Enter the catch, if there is one.
6004 if (S.getNumCatchStmts()) {
6005 for (unsigned I = 0, N = S.getNumCatchStmts(); I != N; ++I) {
6006 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I);
Douglas Gregorc00d8e12010-04-26 16:46:50 +00006007 const VarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006008
John McCallf1549f62010-07-06 01:34:17 +00006009 Handlers.push_back(CatchHandler());
6010 CatchHandler &Handler = Handlers.back();
6011 Handler.Variable = CatchDecl;
6012 Handler.Body = CatchStmt->getCatchBody();
6013 Handler.Block = CGF.createBasicBlock("catch");
6014
6015 // @catch(...) always matches.
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00006016 if (!CatchDecl) {
John McCallf1549f62010-07-06 01:34:17 +00006017 Handler.TypeInfo = 0; // catch-all
6018 // Don't consider any other catches.
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00006019 break;
6020 }
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006021
John McCall5a180392010-07-24 00:37:23 +00006022 Handler.TypeInfo = GetEHType(CatchDecl->getType());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006023 }
John McCallf1549f62010-07-06 01:34:17 +00006024
6025 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
6026 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
6027 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006028 }
John McCallf1549f62010-07-06 01:34:17 +00006029
6030 // Emit the try body.
6031 CGF.EmitStmt(S.getTryBody());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006032
John McCallf1549f62010-07-06 01:34:17 +00006033 // Leave the try.
6034 if (S.getNumCatchStmts())
6035 CGF.EHStack.popCatch();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006036
John McCallf1549f62010-07-06 01:34:17 +00006037 // Remember where we were.
6038 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006039
John McCallf1549f62010-07-06 01:34:17 +00006040 // Emit the handlers.
6041 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
6042 CatchHandler &Handler = Handlers[I];
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006043
John McCallf1549f62010-07-06 01:34:17 +00006044 CGF.EmitBlock(Handler.Block);
6045 llvm::Value *RawExn = CGF.Builder.CreateLoad(CGF.getExceptionSlot());
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006046
John McCallf1549f62010-07-06 01:34:17 +00006047 // Enter the catch.
6048 llvm::CallInst *Exn =
6049 CGF.Builder.CreateCall(ObjCTypes.getObjCBeginCatchFn(), RawExn,
6050 "exn.adjusted");
6051 Exn->setDoesNotThrow();
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006052
John McCallf1549f62010-07-06 01:34:17 +00006053 // Add a cleanup to leave the catch.
John McCall8e3f8612010-07-13 22:12:14 +00006054 bool EndCatchMightThrow = (Handler.Variable == 0);
John McCall1f0fca52010-07-21 07:22:38 +00006055 CGF.EHStack.pushCleanup<CallObjCEndCatch>(NormalAndEHCleanup,
6056 EndCatchMightThrow,
6057 ObjCTypes.getObjCEndCatchFn());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006058
John McCallf1549f62010-07-06 01:34:17 +00006059 // Bind the catch parameter if it exists.
6060 if (const VarDecl *CatchParam = Handler.Variable) {
6061 const llvm::Type *CatchType = CGF.ConvertType(CatchParam->getType());
6062 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006063
John McCallf1549f62010-07-06 01:34:17 +00006064 CGF.EmitLocalBlockVarDecl(*CatchParam);
6065 CGF.Builder.CreateStore(CastExn, CGF.GetAddrOfLocalVar(CatchParam));
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006066 }
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006067
John McCallf1549f62010-07-06 01:34:17 +00006068 CGF.ObjCEHValueStack.push_back(Exn);
6069 CGF.EmitStmt(Handler.Body);
6070 CGF.ObjCEHValueStack.pop_back();
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006071
John McCallf1549f62010-07-06 01:34:17 +00006072 // Leave the earlier cleanup.
6073 CGF.PopCleanupBlock();
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006074
John McCallf1549f62010-07-06 01:34:17 +00006075 CGF.EmitBranchThroughCleanup(Cont);
6076 }
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006077
John McCallf1549f62010-07-06 01:34:17 +00006078 // Go back to the try-statement fallthrough.
6079 CGF.Builder.restoreIP(SavedIP);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006080
John McCallf1549f62010-07-06 01:34:17 +00006081 // Pop out of the normal cleanup on the finally.
6082 if (S.getFinallyStmt())
6083 CGF.ExitFinallyBlock(FinallyInfo);
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006084
John McCallff8e1152010-07-23 21:56:41 +00006085 if (Cont.isValid())
6086 CGF.EmitBlock(Cont.getBlock());
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006087}
6088
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006089/// EmitThrowStmt - Generate code for a throw statement.
6090void CGObjCNonFragileABIMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
6091 const ObjCAtThrowStmt &S) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006092 llvm::Value *Exception;
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006093 llvm::Constant *FunctionThrowOrRethrow;
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006094 if (const Expr *ThrowExpr = S.getThrowExpr()) {
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006095 Exception = CGF.EmitScalarExpr(ThrowExpr);
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006096 FunctionThrowOrRethrow = ObjCTypes.getExceptionThrowFn();
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006097 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006098 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006099 "Unexpected rethrow outside @catch block.");
6100 Exception = CGF.ObjCEHValueStack.back();
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006101 FunctionThrowOrRethrow = ObjCTypes.getExceptionRethrowFn();
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006102 }
6103
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006104 llvm::Value *ExceptionAsObject =
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006105 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy, "tmp");
6106 llvm::BasicBlock *InvokeDest = CGF.getInvokeDest();
6107 if (InvokeDest) {
Fariborz Jahanian69677ea2010-05-28 17:34:43 +00006108 CGF.Builder.CreateInvoke(FunctionThrowOrRethrow,
John McCallf1549f62010-07-06 01:34:17 +00006109 CGF.getUnreachableBlock(), InvokeDest,
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006110 &ExceptionAsObject, &ExceptionAsObject + 1);
John McCallf1549f62010-07-06 01:34:17 +00006111 } else {
6112 CGF.Builder.CreateCall(FunctionThrowOrRethrow, ExceptionAsObject)
6113 ->setDoesNotReturn();
6114 CGF.Builder.CreateUnreachable();
6115 }
Daniel Dunbar4ff36842009-03-02 06:08:11 +00006116
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006117 // Clear the insertion point to indicate we are in unreachable code.
6118 CGF.Builder.ClearInsertionPoint();
6119}
Daniel Dunbare588b992009-03-01 04:46:24 +00006120
John McCall5a180392010-07-24 00:37:23 +00006121llvm::Constant *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006122CGObjCNonFragileABIMac::GetInterfaceEHType(const ObjCInterfaceDecl *ID,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006123 bool ForDefinition) {
Daniel Dunbare588b992009-03-01 04:46:24 +00006124 llvm::GlobalVariable * &Entry = EHTypeReferences[ID->getIdentifier()];
Daniel Dunbare588b992009-03-01 04:46:24 +00006125
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006126 // If we don't need a definition, return the entry if found or check
6127 // if we use an external reference.
6128 if (!ForDefinition) {
6129 if (Entry)
6130 return Entry;
Daniel Dunbar7e075cb2009-04-07 06:43:45 +00006131
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006132 // If this type (or a super class) has the __objc_exception__
6133 // attribute, emit an external reference.
Douglas Gregor68584ed2009-06-18 16:11:24 +00006134 if (hasObjCExceptionAttribute(CGM.getContext(), ID))
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006135 return Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00006136 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006137 llvm::GlobalValue::ExternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006138 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00006139 ("OBJC_EHTYPE_$_" +
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00006140 ID->getIdentifier()->getName()));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006141 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006142
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006143 // Otherwise we need to either make a new entry or fill in the
6144 // initializer.
6145 assert((!Entry || !Entry->hasInitializer()) && "Duplicate EHType definition");
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00006146 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
Daniel Dunbare588b992009-03-01 04:46:24 +00006147 std::string VTableName = "objc_ehtype_vtable";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006148 llvm::GlobalVariable *VTableGV =
Daniel Dunbare588b992009-03-01 04:46:24 +00006149 CGM.getModule().getGlobalVariable(VTableName);
6150 if (!VTableGV)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006151 VTableGV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.Int8PtrTy,
6152 false,
Daniel Dunbare588b992009-03-01 04:46:24 +00006153 llvm::GlobalValue::ExternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +00006154 0, VTableName);
Daniel Dunbare588b992009-03-01 04:46:24 +00006155
Chris Lattner77b89b82010-06-27 07:15:29 +00006156 llvm::Value *VTableIdx =
6157 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 2);
Daniel Dunbare588b992009-03-01 04:46:24 +00006158
6159 std::vector<llvm::Constant*> Values(3);
Owen Anderson3c4972d2009-07-29 18:54:39 +00006160 Values[0] = llvm::ConstantExpr::getGetElementPtr(VTableGV, &VTableIdx, 1);
Daniel Dunbare588b992009-03-01 04:46:24 +00006161 Values[1] = GetClassName(ID->getIdentifier());
Fariborz Jahanian0f902942009-04-14 18:41:56 +00006162 Values[2] = GetClassGlobal(ClassName);
Owen Andersona1cf15f2009-07-14 23:10:40 +00006163 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00006164 llvm::ConstantStruct::get(ObjCTypes.EHTypeTy, Values);
Daniel Dunbare588b992009-03-01 04:46:24 +00006165
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006166 if (Entry) {
6167 Entry->setInitializer(Init);
6168 } else {
Owen Anderson1c431b32009-07-08 19:05:04 +00006169 Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006170 llvm::GlobalValue::WeakAnyLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006171 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00006172 ("OBJC_EHTYPE_$_" +
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00006173 ID->getIdentifier()->getName()));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006174 }
6175
Daniel Dunbar04d40782009-04-14 06:00:08 +00006176 if (CGM.getLangOptions().getVisibilityMode() == LangOptions::Hidden)
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00006177 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00006178 Entry->setAlignment(CGM.getTargetData().getABITypeAlignment(
6179 ObjCTypes.EHTypeTy));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006180
6181 if (ForDefinition) {
6182 Entry->setSection("__DATA,__objc_const");
6183 Entry->setLinkage(llvm::GlobalValue::ExternalLinkage);
6184 } else {
6185 Entry->setSection("__DATA,__datacoal_nt,coalesced");
6186 }
Daniel Dunbare588b992009-03-01 04:46:24 +00006187
6188 return Entry;
6189}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006190
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00006191/* *** */
6192
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00006193CodeGen::CGObjCRuntime *
6194CodeGen::CreateMacObjCRuntime(CodeGen::CodeGenModule &CGM) {
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00006195 return new CGObjCMac(CGM);
6196}
Fariborz Jahanianee0af742009-01-21 22:04:16 +00006197
6198CodeGen::CGObjCRuntime *
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00006199CodeGen::CreateMacNonFragileABIObjCRuntime(CodeGen::CodeGenModule &CGM) {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00006200 return new CGObjCNonFragileABIMac(CGM);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00006201}