blob: 947bdc023a735bf3b44ec28e9968d18578f9951f [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//
Chris Lattnerfc8f0e12011-04-15 05:22:18 +000010// This provides Objective-C code generation targeting the Apple runtime.
Daniel Dunbarc17a4d32008-08-11 02:45:11 +000011//
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 McCalld16c2cf2011-02-08 08:22:06 +000019#include "CGBlocks.h"
John McCall36f893c2011-01-28 11:13:47 +000020#include "CGCleanup.h"
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000021#include "clang/AST/ASTContext.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000022#include "clang/AST/Decl.h"
Daniel Dunbar6efc0c52008-08-13 03:21:16 +000023#include "clang/AST/DeclObjC.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000024#include "clang/AST/RecordLayout.h"
Chris Lattner16f00492009-04-26 01:32:48 +000025#include "clang/AST/StmtObjC.h"
Daniel Dunbarf77ac862008-08-11 21:35:06 +000026#include "clang/Basic/LangOptions.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000027#include "clang/Frontend/CodeGenOptions.h"
Daniel Dunbarf77ac862008-08-11 21:35:06 +000028
John McCall87bb5822010-07-31 23:20:56 +000029#include "llvm/InlineAsm.h"
30#include "llvm/IntrinsicInst.h"
Owen Anderson69243822009-07-13 04:10:07 +000031#include "llvm/LLVMContext.h"
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000032#include "llvm/Module.h"
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +000033#include "llvm/ADT/DenseSet.h"
Daniel Dunbar33063492009-09-07 00:20:42 +000034#include "llvm/ADT/SetVector.h"
35#include "llvm/ADT/SmallString.h"
Fariborz Jahanian191dcd72009-12-12 21:26:21 +000036#include "llvm/ADT/SmallPtrSet.h"
John McCall8e3f8612010-07-13 22:12:14 +000037#include "llvm/Support/CallSite.h"
Daniel Dunbar33063492009-09-07 00:20:42 +000038#include "llvm/Support/raw_ostream.h"
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000039#include "llvm/Target/TargetData.h"
Torok Edwinf42e4a62009-08-24 13:25:12 +000040#include <cstdio>
Daniel Dunbarc17a4d32008-08-11 02:45:11 +000041
42using namespace clang;
Daniel Dunbar46f45b92008-09-09 01:06:48 +000043using namespace CodeGen;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +000044
Daniel Dunbar97776872009-04-22 07:32:20 +000045
Daniel Dunbarc17a4d32008-08-11 02:45:11 +000046namespace {
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000047
Daniel Dunbar6bff2512009-08-03 17:06:42 +000048typedef std::vector<llvm::Constant*> ConstantVector;
Daniel Dunbarae226fa2008-08-27 02:31:56 +000049
Daniel Dunbar6bff2512009-08-03 17:06:42 +000050// FIXME: We should find a nicer way to make the labels for metadata, string
51// concatenation is lame.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +000052
Fariborz Jahanianee0af742009-01-21 22:04:16 +000053class ObjCCommonTypesHelper {
Owen Andersona1cf15f2009-07-14 23:10:40 +000054protected:
55 llvm::LLVMContext &VMContext;
Daniel Dunbar6bff2512009-08-03 17:06:42 +000056
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +000057private:
John McCall0774cb82011-05-15 01:53:33 +000058 // The types of these functions don't really matter because we
59 // should always bitcast before calling them.
60
61 /// id objc_msgSend (id, SEL, ...)
62 ///
63 /// The default messenger, used for sends whose ABI is unchanged from
64 /// the all-integer/pointer case.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +000065 llvm::Constant *getMessageSendFn() const {
John McCallf85e1932011-06-15 23:02:42 +000066 // Add the non-lazy-bind attribute, since objc_msgSend is likely to
67 // be called a lot.
Chris Lattner9cbe4f02011-07-09 17:41:47 +000068 llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy };
John McCall0774cb82011-05-15 01:53:33 +000069 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
70 params, true),
John McCallf85e1932011-06-15 23:02:42 +000071 "objc_msgSend",
72 llvm::Attribute::NonLazyBind);
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +000073 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +000074
John McCall0774cb82011-05-15 01:53:33 +000075 /// void objc_msgSend_stret (id, SEL, ...)
76 ///
77 /// The messenger used when the return value is an aggregate returned
78 /// by indirect reference in the first argument, and therefore the
79 /// self and selector parameters are shifted over by one.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +000080 llvm::Constant *getMessageSendStretFn() const {
Chris Lattner9cbe4f02011-07-09 17:41:47 +000081 llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy };
John McCall0774cb82011-05-15 01:53:33 +000082 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.VoidTy,
83 params, true),
84 "objc_msgSend_stret");
Daniel Dunbar6bff2512009-08-03 17:06:42 +000085
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +000086 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +000087
John McCall0774cb82011-05-15 01:53:33 +000088 /// [double | long double] objc_msgSend_fpret(id self, SEL op, ...)
89 ///
90 /// The messenger used when the return value is returned on the x87
91 /// floating-point stack; without a special entrypoint, the nil case
92 /// would be unbalanced.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +000093 llvm::Constant *getMessageSendFpretFn() const {
Chris Lattner9cbe4f02011-07-09 17:41:47 +000094 llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy };
Chris Lattner8b418682012-02-07 00:39:47 +000095 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.DoubleTy,
96 params, true),
John McCall0774cb82011-05-15 01:53:33 +000097 "objc_msgSend_fpret");
Daniel Dunbar6bff2512009-08-03 17:06:42 +000098
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +000099 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000100
Anders Carlssoneea64802011-10-31 16:27:11 +0000101 /// _Complex long double objc_msgSend_fp2ret(id self, SEL op, ...)
102 ///
103 /// The messenger used when the return value is returned in two values on the
104 /// x87 floating point stack; without a special entrypoint, the nil case
105 /// would be unbalanced. Only used on 64-bit X86.
106 llvm::Constant *getMessageSendFp2retFn() const {
107 llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy };
108 llvm::Type *longDoubleType = llvm::Type::getX86_FP80Ty(VMContext);
109 llvm::Type *resultType =
110 llvm::StructType::get(longDoubleType, longDoubleType, NULL);
111
112 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(resultType,
113 params, true),
114 "objc_msgSend_fp2ret");
115 }
116
John McCall0774cb82011-05-15 01:53:33 +0000117 /// id objc_msgSendSuper(struct objc_super *super, SEL op, ...)
118 ///
119 /// The messenger used for super calls, which have different dispatch
120 /// semantics. The class passed is the superclass of the current
121 /// class.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000122 llvm::Constant *getMessageSendSuperFn() const {
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000123 llvm::Type *params[] = { SuperPtrTy, SelectorPtrTy };
Owen Anderson96e0fc72009-07-29 22:16:19 +0000124 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall0774cb82011-05-15 01:53:33 +0000125 params, true),
126 "objc_msgSendSuper");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000127 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000128
John McCall0774cb82011-05-15 01:53:33 +0000129 /// id objc_msgSendSuper2(struct objc_super *super, SEL op, ...)
130 ///
131 /// A slightly different messenger used for super calls. The class
132 /// passed is the current class.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000133 llvm::Constant *getMessageSendSuperFn2() const {
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000134 llvm::Type *params[] = { SuperPtrTy, SelectorPtrTy };
Owen Anderson96e0fc72009-07-29 22:16:19 +0000135 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall0774cb82011-05-15 01:53:33 +0000136 params, true),
137 "objc_msgSendSuper2");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000138 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000139
John McCall0774cb82011-05-15 01:53:33 +0000140 /// void objc_msgSendSuper_stret(void *stretAddr, struct objc_super *super,
141 /// SEL op, ...)
142 ///
143 /// The messenger used for super calls which return an aggregate indirectly.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000144 llvm::Constant *getMessageSendSuperStretFn() const {
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000145 llvm::Type *params[] = { Int8PtrTy, SuperPtrTy, SelectorPtrTy };
Owen Andersona1cf15f2009-07-14 23:10:40 +0000146 return CGM.CreateRuntimeFunction(
John McCall0774cb82011-05-15 01:53:33 +0000147 llvm::FunctionType::get(CGM.VoidTy, params, true),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000148 "objc_msgSendSuper_stret");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000149 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000150
John McCall0774cb82011-05-15 01:53:33 +0000151 /// void objc_msgSendSuper2_stret(void * stretAddr, struct objc_super *super,
152 /// SEL op, ...)
153 ///
154 /// objc_msgSendSuper_stret with the super2 semantics.
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000155 llvm::Constant *getMessageSendSuperStretFn2() const {
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000156 llvm::Type *params[] = { Int8PtrTy, SuperPtrTy, SelectorPtrTy };
Owen Andersona1cf15f2009-07-14 23:10:40 +0000157 return CGM.CreateRuntimeFunction(
John McCall0774cb82011-05-15 01:53:33 +0000158 llvm::FunctionType::get(CGM.VoidTy, params, true),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000159 "objc_msgSendSuper2_stret");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000160 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000161
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000162 llvm::Constant *getMessageSendSuperFpretFn() const {
163 // There is no objc_msgSendSuper_fpret? How can that work?
164 return getMessageSendSuperFn();
165 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000166
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000167 llvm::Constant *getMessageSendSuperFpretFn2() const {
168 // There is no objc_msgSendSuper_fpret? How can that work?
169 return getMessageSendSuperFn2();
170 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000171
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000172protected:
173 CodeGen::CodeGenModule &CGM;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000174
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000175public:
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000176 llvm::Type *ShortTy, *IntTy, *LongTy, *LongLongTy;
Bob Wilsondc8dab62011-11-30 01:57:58 +0000177 llvm::Type *Int8PtrTy, *Int8PtrPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000178
Daniel Dunbar2bedbf82008-08-12 05:28:47 +0000179 /// ObjectPtrTy - LLVM type for object handles (typeof(id))
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000180 llvm::Type *ObjectPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000181
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000182 /// PtrObjectPtrTy - LLVM type for id *
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000183 llvm::Type *PtrObjectPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000184
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000185 /// SelectorPtrTy - LLVM type for selector handles (typeof(SEL))
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000186 llvm::Type *SelectorPtrTy;
Douglas Gregor4c86fdb2012-01-17 18:36:30 +0000187
188private:
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000189 /// ProtocolPtrTy - LLVM type for external protocol handles
190 /// (typeof(Protocol))
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000191 llvm::Type *ExternalProtocolPtrTy;
Douglas Gregor4c86fdb2012-01-17 18:36:30 +0000192
193public:
194 llvm::Type *getExternalProtocolPtrTy() {
195 if (!ExternalProtocolPtrTy) {
196 // FIXME: It would be nice to unify this with the opaque type, so that the
197 // IR comes out a bit cleaner.
198 CodeGen::CodeGenTypes &Types = CGM.getTypes();
199 ASTContext &Ctx = CGM.getContext();
200 llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType());
201 ExternalProtocolPtrTy = llvm::PointerType::getUnqual(T);
202 }
203
204 return ExternalProtocolPtrTy;
205 }
206
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000207 // SuperCTy - clang type for struct objc_super.
208 QualType SuperCTy;
209 // SuperPtrCTy - clang type for struct objc_super *.
210 QualType SuperPtrCTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000211
Daniel Dunbare8b470d2008-08-23 04:28:29 +0000212 /// SuperTy - LLVM type for struct objc_super.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000213 llvm::StructType *SuperTy;
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000214 /// SuperPtrTy - LLVM type for struct objc_super *.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000215 llvm::Type *SuperPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000216
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000217 /// PropertyTy - LLVM type for struct objc_property (struct _prop_t
218 /// in GCC parlance).
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000219 llvm::StructType *PropertyTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000220
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000221 /// PropertyListTy - LLVM type for struct objc_property_list
222 /// (_prop_list_t in GCC parlance).
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000223 llvm::StructType *PropertyListTy;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000224 /// PropertyListPtrTy - LLVM type for struct objc_property_list*.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000225 llvm::Type *PropertyListPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000226
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000227 // MethodTy - LLVM type for struct objc_method.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000228 llvm::StructType *MethodTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000229
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000230 /// CacheTy - LLVM type for struct objc_cache.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000231 llvm::Type *CacheTy;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000232 /// CachePtrTy - LLVM type for struct objc_cache *.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000233 llvm::Type *CachePtrTy;
Fariborz Jahanian9d96bce2011-06-22 20:21:51 +0000234
Chris Lattner72db6c32009-04-22 02:44:54 +0000235 llvm::Constant *getGetPropertyFn() {
236 CodeGen::CodeGenTypes &Types = CGM.getTypes();
237 ASTContext &Ctx = CGM.getContext();
238 // id objc_getProperty (id, SEL, ptrdiff_t, bool)
Chris Lattner5f9e2722011-07-23 10:55:15 +0000239 SmallVector<CanQualType,4> Params;
John McCallead608a2010-02-26 00:48:12 +0000240 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType());
241 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType());
Chris Lattner72db6c32009-04-22 02:44:54 +0000242 Params.push_back(IdType);
243 Params.push_back(SelType);
David Chisnallab5824e2011-03-22 20:03:13 +0000244 Params.push_back(Ctx.getPointerDiffType()->getCanonicalTypeUnqualified());
Chris Lattner72db6c32009-04-22 02:44:54 +0000245 Params.push_back(Ctx.BoolTy);
Chris Lattner2acc6e32011-07-18 04:24:23 +0000246 llvm::FunctionType *FTy =
John McCall04a67a62010-02-05 21:31:56 +0000247 Types.GetFunctionType(Types.getFunctionInfo(IdType, Params,
Rafael Espindola264ba482010-03-30 20:24:48 +0000248 FunctionType::ExtInfo()),
249 false);
Chris Lattner72db6c32009-04-22 02:44:54 +0000250 return CGM.CreateRuntimeFunction(FTy, "objc_getProperty");
251 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000252
Chris Lattner72db6c32009-04-22 02:44:54 +0000253 llvm::Constant *getSetPropertyFn() {
254 CodeGen::CodeGenTypes &Types = CGM.getTypes();
255 ASTContext &Ctx = CGM.getContext();
256 // void objc_setProperty (id, SEL, ptrdiff_t, id, bool, bool)
Chris Lattner5f9e2722011-07-23 10:55:15 +0000257 SmallVector<CanQualType,6> Params;
John McCallead608a2010-02-26 00:48:12 +0000258 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType());
259 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType());
Chris Lattner72db6c32009-04-22 02:44:54 +0000260 Params.push_back(IdType);
261 Params.push_back(SelType);
David Chisnallab5824e2011-03-22 20:03:13 +0000262 Params.push_back(Ctx.getPointerDiffType()->getCanonicalTypeUnqualified());
Chris Lattner72db6c32009-04-22 02:44:54 +0000263 Params.push_back(IdType);
264 Params.push_back(Ctx.BoolTy);
265 Params.push_back(Ctx.BoolTy);
Chris Lattner2acc6e32011-07-18 04:24:23 +0000266 llvm::FunctionType *FTy =
John McCall04a67a62010-02-05 21:31:56 +0000267 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
Rafael Espindola264ba482010-03-30 20:24:48 +0000268 FunctionType::ExtInfo()),
269 false);
Chris Lattner72db6c32009-04-22 02:44:54 +0000270 return CGM.CreateRuntimeFunction(FTy, "objc_setProperty");
271 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000272
Fariborz Jahanian6cc59062010-04-12 18:18:10 +0000273
274 llvm::Constant *getCopyStructFn() {
275 CodeGen::CodeGenTypes &Types = CGM.getTypes();
276 ASTContext &Ctx = CGM.getContext();
277 // void objc_copyStruct (void *, const void *, size_t, bool, bool)
Chris Lattner5f9e2722011-07-23 10:55:15 +0000278 SmallVector<CanQualType,5> Params;
Fariborz Jahanian6cc59062010-04-12 18:18:10 +0000279 Params.push_back(Ctx.VoidPtrTy);
280 Params.push_back(Ctx.VoidPtrTy);
281 Params.push_back(Ctx.LongTy);
282 Params.push_back(Ctx.BoolTy);
283 Params.push_back(Ctx.BoolTy);
Chris Lattner2acc6e32011-07-18 04:24:23 +0000284 llvm::FunctionType *FTy =
Fariborz Jahanian6cc59062010-04-12 18:18:10 +0000285 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
286 FunctionType::ExtInfo()),
287 false);
288 return CGM.CreateRuntimeFunction(FTy, "objc_copyStruct");
289 }
290
Fariborz Jahaniane3173022012-01-06 18:07:23 +0000291 /// This routine declares and returns address of:
292 /// void objc_copyCppObjectAtomic(
293 /// void *dest, const void *src,
294 /// void (*copyHelper) (void *dest, const void *source));
295 llvm::Constant *getCppAtomicObjectFunction() {
296 CodeGen::CodeGenTypes &Types = CGM.getTypes();
297 ASTContext &Ctx = CGM.getContext();
298 /// void objc_copyCppObjectAtomic(void *dest, const void *src, void *helper);
299 SmallVector<CanQualType,3> Params;
300 Params.push_back(Ctx.VoidPtrTy);
301 Params.push_back(Ctx.VoidPtrTy);
302 Params.push_back(Ctx.VoidPtrTy);
303 llvm::FunctionType *FTy =
304 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
305 FunctionType::ExtInfo()),
306 false);
307 return CGM.CreateRuntimeFunction(FTy, "objc_copyCppObjectAtomic");
308 }
309
Chris Lattner72db6c32009-04-22 02:44:54 +0000310 llvm::Constant *getEnumerationMutationFn() {
Daniel Dunbarc1ab9002009-07-11 20:32:50 +0000311 CodeGen::CodeGenTypes &Types = CGM.getTypes();
312 ASTContext &Ctx = CGM.getContext();
Chris Lattner72db6c32009-04-22 02:44:54 +0000313 // void objc_enumerationMutation (id)
Chris Lattner5f9e2722011-07-23 10:55:15 +0000314 SmallVector<CanQualType,1> Params;
John McCallead608a2010-02-26 00:48:12 +0000315 Params.push_back(Ctx.getCanonicalParamType(Ctx.getObjCIdType()));
Chris Lattner2acc6e32011-07-18 04:24:23 +0000316 llvm::FunctionType *FTy =
John McCall04a67a62010-02-05 21:31:56 +0000317 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
Rafael Espindola264ba482010-03-30 20:24:48 +0000318 FunctionType::ExtInfo()),
319 false);
Chris Lattner72db6c32009-04-22 02:44:54 +0000320 return CGM.CreateRuntimeFunction(FTy, "objc_enumerationMutation");
321 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000322
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000323 /// GcReadWeakFn -- LLVM objc_read_weak (id *src) function.
Chris Lattner72db6c32009-04-22 02:44:54 +0000324 llvm::Constant *getGcReadWeakFn() {
325 // id objc_read_weak (id *)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000326 llvm::Type *args[] = { ObjectPtrTy->getPointerTo() };
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000327 llvm::FunctionType *FTy =
John McCall0774cb82011-05-15 01:53:33 +0000328 llvm::FunctionType::get(ObjectPtrTy, args, false);
Chris Lattner72db6c32009-04-22 02:44:54 +0000329 return CGM.CreateRuntimeFunction(FTy, "objc_read_weak");
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000330 }
331
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000332 /// GcAssignWeakFn -- LLVM objc_assign_weak function.
Chris Lattner96508e12009-04-17 22:12:36 +0000333 llvm::Constant *getGcAssignWeakFn() {
334 // id objc_assign_weak (id, id *)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000335 llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() };
Chris Lattner96508e12009-04-17 22:12:36 +0000336 llvm::FunctionType *FTy =
John McCall0774cb82011-05-15 01:53:33 +0000337 llvm::FunctionType::get(ObjectPtrTy, args, false);
Chris Lattner96508e12009-04-17 22:12:36 +0000338 return CGM.CreateRuntimeFunction(FTy, "objc_assign_weak");
339 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000340
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000341 /// GcAssignGlobalFn -- LLVM objc_assign_global function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000342 llvm::Constant *getGcAssignGlobalFn() {
343 // id objc_assign_global(id, id *)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000344 llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() };
Owen Andersona1cf15f2009-07-14 23:10:40 +0000345 llvm::FunctionType *FTy =
John McCall0774cb82011-05-15 01:53:33 +0000346 llvm::FunctionType::get(ObjectPtrTy, args, false);
Chris Lattnerbbccd612009-04-22 02:38:11 +0000347 return CGM.CreateRuntimeFunction(FTy, "objc_assign_global");
348 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000349
Fariborz Jahanian021a7a62010-07-20 20:30:03 +0000350 /// GcAssignThreadLocalFn -- LLVM objc_assign_threadlocal function.
351 llvm::Constant *getGcAssignThreadLocalFn() {
352 // id objc_assign_threadlocal(id src, id * dest)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000353 llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() };
Fariborz Jahanian021a7a62010-07-20 20:30:03 +0000354 llvm::FunctionType *FTy =
John McCall0774cb82011-05-15 01:53:33 +0000355 llvm::FunctionType::get(ObjectPtrTy, args, false);
Fariborz Jahanian021a7a62010-07-20 20:30:03 +0000356 return CGM.CreateRuntimeFunction(FTy, "objc_assign_threadlocal");
357 }
358
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000359 /// GcAssignIvarFn -- LLVM objc_assign_ivar function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000360 llvm::Constant *getGcAssignIvarFn() {
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000361 // id objc_assign_ivar(id, id *, ptrdiff_t)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000362 llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo(),
363 CGM.PtrDiffTy };
Owen Andersona1cf15f2009-07-14 23:10:40 +0000364 llvm::FunctionType *FTy =
John McCall0774cb82011-05-15 01:53:33 +0000365 llvm::FunctionType::get(ObjectPtrTy, args, false);
Chris Lattnerbbccd612009-04-22 02:38:11 +0000366 return CGM.CreateRuntimeFunction(FTy, "objc_assign_ivar");
367 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000368
Fariborz Jahanian082b02e2009-07-08 01:18:33 +0000369 /// GcMemmoveCollectableFn -- LLVM objc_memmove_collectable function.
370 llvm::Constant *GcMemmoveCollectableFn() {
371 // void *objc_memmove_collectable(void *dst, const void *src, size_t size)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000372 llvm::Type *args[] = { Int8PtrTy, Int8PtrTy, LongTy };
John McCall0774cb82011-05-15 01:53:33 +0000373 llvm::FunctionType *FTy = llvm::FunctionType::get(Int8PtrTy, args, false);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +0000374 return CGM.CreateRuntimeFunction(FTy, "objc_memmove_collectable");
375 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000376
Fariborz Jahaniandb286862009-01-22 00:37:21 +0000377 /// GcAssignStrongCastFn -- LLVM objc_assign_strongCast function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000378 llvm::Constant *getGcAssignStrongCastFn() {
Fariborz Jahanian021a7a62010-07-20 20:30:03 +0000379 // id objc_assign_strongCast(id, id *)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000380 llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() };
Owen Andersona1cf15f2009-07-14 23:10:40 +0000381 llvm::FunctionType *FTy =
John McCall0774cb82011-05-15 01:53:33 +0000382 llvm::FunctionType::get(ObjectPtrTy, args, false);
Chris Lattnerbbccd612009-04-22 02:38:11 +0000383 return CGM.CreateRuntimeFunction(FTy, "objc_assign_strongCast");
384 }
Anders Carlssonf57c5b22009-02-16 22:59:18 +0000385
386 /// ExceptionThrowFn - LLVM objc_exception_throw function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000387 llvm::Constant *getExceptionThrowFn() {
388 // void objc_exception_throw(id)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000389 llvm::Type *args[] = { ObjectPtrTy };
Chris Lattnerbbccd612009-04-22 02:38:11 +0000390 llvm::FunctionType *FTy =
John McCall0774cb82011-05-15 01:53:33 +0000391 llvm::FunctionType::get(CGM.VoidTy, args, false);
Chris Lattnerbbccd612009-04-22 02:38:11 +0000392 return CGM.CreateRuntimeFunction(FTy, "objc_exception_throw");
393 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000394
Fariborz Jahanian69677ea2010-05-28 17:34:43 +0000395 /// ExceptionRethrowFn - LLVM objc_exception_rethrow function.
396 llvm::Constant *getExceptionRethrowFn() {
397 // void objc_exception_rethrow(void)
John McCall0774cb82011-05-15 01:53:33 +0000398 llvm::FunctionType *FTy = llvm::FunctionType::get(CGM.VoidTy, false);
Fariborz Jahanian69677ea2010-05-28 17:34:43 +0000399 return CGM.CreateRuntimeFunction(FTy, "objc_exception_rethrow");
400 }
401
Daniel Dunbar1c566672009-02-24 01:43:46 +0000402 /// SyncEnterFn - LLVM object_sync_enter function.
Chris Lattnerb02e53b2009-04-06 16:53:45 +0000403 llvm::Constant *getSyncEnterFn() {
404 // void objc_sync_enter (id)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000405 llvm::Type *args[] = { ObjectPtrTy };
Chris Lattnerb02e53b2009-04-06 16:53:45 +0000406 llvm::FunctionType *FTy =
John McCall0774cb82011-05-15 01:53:33 +0000407 llvm::FunctionType::get(CGM.VoidTy, args, false);
Chris Lattnerb02e53b2009-04-06 16:53:45 +0000408 return CGM.CreateRuntimeFunction(FTy, "objc_sync_enter");
409 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000410
Daniel Dunbar1c566672009-02-24 01:43:46 +0000411 /// SyncExitFn - LLVM object_sync_exit function.
Chris Lattnerbbccd612009-04-22 02:38:11 +0000412 llvm::Constant *getSyncExitFn() {
413 // void objc_sync_exit (id)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000414 llvm::Type *args[] = { ObjectPtrTy };
Chris Lattnerbbccd612009-04-22 02:38:11 +0000415 llvm::FunctionType *FTy =
John McCall0774cb82011-05-15 01:53:33 +0000416 llvm::FunctionType::get(CGM.VoidTy, args, false);
Chris Lattnerbbccd612009-04-22 02:38:11 +0000417 return CGM.CreateRuntimeFunction(FTy, "objc_sync_exit");
418 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000419
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000420 llvm::Constant *getSendFn(bool IsSuper) const {
421 return IsSuper ? getMessageSendSuperFn() : getMessageSendFn();
422 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000423
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000424 llvm::Constant *getSendFn2(bool IsSuper) const {
425 return IsSuper ? getMessageSendSuperFn2() : getMessageSendFn();
426 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000427
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000428 llvm::Constant *getSendStretFn(bool IsSuper) const {
429 return IsSuper ? getMessageSendSuperStretFn() : getMessageSendStretFn();
430 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000431
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000432 llvm::Constant *getSendStretFn2(bool IsSuper) const {
433 return IsSuper ? getMessageSendSuperStretFn2() : getMessageSendStretFn();
434 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000435
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000436 llvm::Constant *getSendFpretFn(bool IsSuper) const {
437 return IsSuper ? getMessageSendSuperFpretFn() : getMessageSendFpretFn();
438 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000439
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +0000440 llvm::Constant *getSendFpretFn2(bool IsSuper) const {
441 return IsSuper ? getMessageSendSuperFpretFn2() : getMessageSendFpretFn();
442 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000443
Anders Carlssoneea64802011-10-31 16:27:11 +0000444 llvm::Constant *getSendFp2retFn(bool IsSuper) const {
445 return IsSuper ? getMessageSendSuperFn() : getMessageSendFp2retFn();
446 }
447
448 llvm::Constant *getSendFp2RetFn2(bool IsSuper) const {
449 return IsSuper ? getMessageSendSuperFn2() : getMessageSendFp2retFn();
450 }
451
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000452 ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm);
453 ~ObjCCommonTypesHelper(){}
454};
Daniel Dunbare8b470d2008-08-23 04:28:29 +0000455
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000456/// ObjCTypesHelper - Helper class that encapsulates lazy
457/// construction of varies types used during ObjC generation.
458class ObjCTypesHelper : public ObjCCommonTypesHelper {
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000459public:
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000460 /// SymtabTy - LLVM type for struct objc_symtab.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000461 llvm::StructType *SymtabTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000462 /// SymtabPtrTy - LLVM type for struct objc_symtab *.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000463 llvm::Type *SymtabPtrTy;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000464 /// ModuleTy - LLVM type for struct objc_module.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000465 llvm::StructType *ModuleTy;
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000466
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000467 /// ProtocolTy - LLVM type for struct objc_protocol.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000468 llvm::StructType *ProtocolTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000469 /// ProtocolPtrTy - LLVM type for struct objc_protocol *.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000470 llvm::Type *ProtocolPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000471 /// ProtocolExtensionTy - LLVM type for struct
472 /// objc_protocol_extension.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000473 llvm::StructType *ProtocolExtensionTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000474 /// ProtocolExtensionTy - LLVM type for struct
475 /// objc_protocol_extension *.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000476 llvm::Type *ProtocolExtensionPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000477 /// MethodDescriptionTy - LLVM type for struct
478 /// objc_method_description.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000479 llvm::StructType *MethodDescriptionTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000480 /// MethodDescriptionListTy - LLVM type for struct
481 /// objc_method_description_list.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000482 llvm::StructType *MethodDescriptionListTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000483 /// MethodDescriptionListPtrTy - LLVM type for struct
484 /// objc_method_description_list *.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000485 llvm::Type *MethodDescriptionListPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000486 /// ProtocolListTy - LLVM type for struct objc_property_list.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000487 llvm::StructType *ProtocolListTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000488 /// ProtocolListPtrTy - LLVM type for struct objc_property_list*.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000489 llvm::Type *ProtocolListPtrTy;
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000490 /// CategoryTy - LLVM type for struct objc_category.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000491 llvm::StructType *CategoryTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000492 /// ClassTy - LLVM type for struct objc_class.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000493 llvm::StructType *ClassTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000494 /// ClassPtrTy - LLVM type for struct objc_class *.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000495 llvm::Type *ClassPtrTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000496 /// ClassExtensionTy - LLVM type for struct objc_class_ext.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000497 llvm::StructType *ClassExtensionTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000498 /// ClassExtensionPtrTy - LLVM type for struct objc_class_ext *.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000499 llvm::Type *ClassExtensionPtrTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000500 // IvarTy - LLVM type for struct objc_ivar.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000501 llvm::StructType *IvarTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000502 /// IvarListTy - LLVM type for struct objc_ivar_list.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000503 llvm::Type *IvarListTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000504 /// IvarListPtrTy - LLVM type for struct objc_ivar_list *.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000505 llvm::Type *IvarListPtrTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000506 /// MethodListTy - LLVM type for struct objc_method_list.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000507 llvm::Type *MethodListTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000508 /// MethodListPtrTy - LLVM type for struct objc_method_list *.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000509 llvm::Type *MethodListPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000510
Anders Carlsson124526b2008-09-09 10:10:21 +0000511 /// ExceptionDataTy - LLVM type for struct _objc_exception_data.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000512 llvm::Type *ExceptionDataTy;
Fariborz Jahanian9d96bce2011-06-22 20:21:51 +0000513
Anders Carlsson124526b2008-09-09 10:10:21 +0000514 /// ExceptionTryEnterFn - LLVM objc_exception_try_enter function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000515 llvm::Constant *getExceptionTryEnterFn() {
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000516 llvm::Type *params[] = { ExceptionDataTy->getPointerTo() };
Owen Andersona1cf15f2009-07-14 23:10:40 +0000517 return CGM.CreateRuntimeFunction(
John McCall0774cb82011-05-15 01:53:33 +0000518 llvm::FunctionType::get(CGM.VoidTy, params, false),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000519 "objc_exception_try_enter");
Chris Lattner34b02a12009-04-22 02:26:14 +0000520 }
Anders Carlsson124526b2008-09-09 10:10:21 +0000521
522 /// ExceptionTryExitFn - LLVM objc_exception_try_exit function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000523 llvm::Constant *getExceptionTryExitFn() {
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000524 llvm::Type *params[] = { ExceptionDataTy->getPointerTo() };
Owen Andersona1cf15f2009-07-14 23:10:40 +0000525 return CGM.CreateRuntimeFunction(
John McCall0774cb82011-05-15 01:53:33 +0000526 llvm::FunctionType::get(CGM.VoidTy, params, false),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000527 "objc_exception_try_exit");
Chris Lattner34b02a12009-04-22 02:26:14 +0000528 }
Anders Carlsson124526b2008-09-09 10:10:21 +0000529
530 /// ExceptionExtractFn - LLVM objc_exception_extract function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000531 llvm::Constant *getExceptionExtractFn() {
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000532 llvm::Type *params[] = { ExceptionDataTy->getPointerTo() };
Owen Anderson96e0fc72009-07-29 22:16:19 +0000533 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall0774cb82011-05-15 01:53:33 +0000534 params, false),
Chris Lattner34b02a12009-04-22 02:26:14 +0000535 "objc_exception_extract");
Chris Lattner34b02a12009-04-22 02:26:14 +0000536 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000537
Anders Carlsson124526b2008-09-09 10:10:21 +0000538 /// ExceptionMatchFn - LLVM objc_exception_match function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000539 llvm::Constant *getExceptionMatchFn() {
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000540 llvm::Type *params[] = { ClassPtrTy, ObjectPtrTy };
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000541 return CGM.CreateRuntimeFunction(
John McCall0774cb82011-05-15 01:53:33 +0000542 llvm::FunctionType::get(CGM.Int32Ty, params, false),
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000543 "objc_exception_match");
544
Chris Lattner34b02a12009-04-22 02:26:14 +0000545 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000546
Anders Carlsson124526b2008-09-09 10:10:21 +0000547 /// SetJmpFn - LLVM _setjmp function.
Chris Lattner34b02a12009-04-22 02:26:14 +0000548 llvm::Constant *getSetJmpFn() {
John McCall0774cb82011-05-15 01:53:33 +0000549 // This is specifically the prototype for x86.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000550 llvm::Type *params[] = { CGM.Int32Ty->getPointerTo() };
John McCall0774cb82011-05-15 01:53:33 +0000551 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.Int32Ty,
552 params, false),
Bill Wendlinga9e269e2011-11-29 00:10:10 +0000553 "_setjmp",
554 llvm::Attribute::ReturnsTwice);
Chris Lattner34b02a12009-04-22 02:26:14 +0000555 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000556
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000557public:
558 ObjCTypesHelper(CodeGen::CodeGenModule &cgm);
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000559 ~ObjCTypesHelper() {}
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000560};
561
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000562/// ObjCNonFragileABITypesHelper - will have all types needed by objective-c's
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000563/// modern abi
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000564class ObjCNonFragileABITypesHelper : public ObjCCommonTypesHelper {
Fariborz Jahanian83a8a752009-02-04 20:42:28 +0000565public:
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000566
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000567 // MethodListnfABITy - LLVM for struct _method_list_t
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000568 llvm::StructType *MethodListnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000569
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000570 // MethodListnfABIPtrTy - LLVM for struct _method_list_t*
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000571 llvm::Type *MethodListnfABIPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000572
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000573 // ProtocolnfABITy = LLVM for struct _protocol_t
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000574 llvm::StructType *ProtocolnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000575
Daniel Dunbar948e2582009-02-15 07:36:20 +0000576 // ProtocolnfABIPtrTy = LLVM for struct _protocol_t*
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000577 llvm::Type *ProtocolnfABIPtrTy;
Daniel Dunbar948e2582009-02-15 07:36:20 +0000578
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000579 // ProtocolListnfABITy - LLVM for struct _objc_protocol_list
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000580 llvm::StructType *ProtocolListnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000581
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000582 // ProtocolListnfABIPtrTy - LLVM for struct _objc_protocol_list*
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000583 llvm::Type *ProtocolListnfABIPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000584
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000585 // ClassnfABITy - LLVM for struct _class_t
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000586 llvm::StructType *ClassnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000587
Fariborz Jahanianaa23b572009-01-23 23:53:38 +0000588 // ClassnfABIPtrTy - LLVM for struct _class_t*
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000589 llvm::Type *ClassnfABIPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000590
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000591 // IvarnfABITy - LLVM for struct _ivar_t
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000592 llvm::StructType *IvarnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000593
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000594 // IvarListnfABITy - LLVM for struct _ivar_list_t
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000595 llvm::StructType *IvarListnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000596
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000597 // IvarListnfABIPtrTy = LLVM for struct _ivar_list_t*
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000598 llvm::Type *IvarListnfABIPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000599
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000600 // ClassRonfABITy - LLVM for struct _class_ro_t
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000601 llvm::StructType *ClassRonfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000602
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000603 // ImpnfABITy - LLVM for id (*)(id, SEL, ...)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000604 llvm::Type *ImpnfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000605
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +0000606 // CategorynfABITy - LLVM for struct _category_t
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000607 llvm::StructType *CategorynfABITy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000608
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000609 // New types for nonfragile abi messaging.
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000610
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000611 // MessageRefTy - LLVM for:
612 // struct _message_ref_t {
613 // IMP messenger;
614 // SEL name;
615 // };
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000616 llvm::StructType *MessageRefTy;
Fariborz Jahanian83a8a752009-02-04 20:42:28 +0000617 // MessageRefCTy - clang type for struct _message_ref_t
618 QualType MessageRefCTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000619
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000620 // MessageRefPtrTy - LLVM for struct _message_ref_t*
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000621 llvm::Type *MessageRefPtrTy;
Fariborz Jahanian83a8a752009-02-04 20:42:28 +0000622 // MessageRefCPtrTy - clang type for struct _message_ref_t*
623 QualType MessageRefCPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000624
Fariborz Jahanianef163782009-02-05 01:13:09 +0000625 // MessengerTy - Type of the messenger (shown as IMP above)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000626 llvm::FunctionType *MessengerTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000627
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000628 // SuperMessageRefTy - LLVM for:
629 // struct _super_message_ref_t {
630 // SUPER_IMP messenger;
631 // SEL name;
632 // };
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000633 llvm::StructType *SuperMessageRefTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000634
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +0000635 // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t*
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000636 llvm::Type *SuperMessageRefPtrTy;
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +0000637
Chris Lattner1c02f862009-04-22 02:53:24 +0000638 llvm::Constant *getMessageSendFixupFn() {
639 // id objc_msgSend_fixup(id, struct message_ref_t*, ...)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000640 llvm::Type *params[] = { ObjectPtrTy, MessageRefPtrTy };
Owen Anderson96e0fc72009-07-29 22:16:19 +0000641 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall0774cb82011-05-15 01:53:33 +0000642 params, true),
Chris Lattner1c02f862009-04-22 02:53:24 +0000643 "objc_msgSend_fixup");
644 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000645
Chris Lattner1c02f862009-04-22 02:53:24 +0000646 llvm::Constant *getMessageSendFpretFixupFn() {
647 // id objc_msgSend_fpret_fixup(id, struct message_ref_t*, ...)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000648 llvm::Type *params[] = { ObjectPtrTy, MessageRefPtrTy };
Owen Anderson96e0fc72009-07-29 22:16:19 +0000649 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall0774cb82011-05-15 01:53:33 +0000650 params, true),
Chris Lattner1c02f862009-04-22 02:53:24 +0000651 "objc_msgSend_fpret_fixup");
652 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000653
Chris Lattner1c02f862009-04-22 02:53:24 +0000654 llvm::Constant *getMessageSendStretFixupFn() {
655 // id objc_msgSend_stret_fixup(id, struct message_ref_t*, ...)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000656 llvm::Type *params[] = { ObjectPtrTy, MessageRefPtrTy };
Owen Anderson96e0fc72009-07-29 22:16:19 +0000657 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall0774cb82011-05-15 01:53:33 +0000658 params, true),
Chris Lattner1c02f862009-04-22 02:53:24 +0000659 "objc_msgSend_stret_fixup");
660 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000661
Chris Lattner1c02f862009-04-22 02:53:24 +0000662 llvm::Constant *getMessageSendSuper2FixupFn() {
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000663 // id objc_msgSendSuper2_fixup (struct objc_super *,
Chris Lattner1c02f862009-04-22 02:53:24 +0000664 // struct _super_message_ref_t*, ...)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000665 llvm::Type *params[] = { SuperPtrTy, SuperMessageRefPtrTy };
Owen Anderson96e0fc72009-07-29 22:16:19 +0000666 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall0774cb82011-05-15 01:53:33 +0000667 params, true),
Chris Lattner1c02f862009-04-22 02:53:24 +0000668 "objc_msgSendSuper2_fixup");
669 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000670
Chris Lattner1c02f862009-04-22 02:53:24 +0000671 llvm::Constant *getMessageSendSuper2StretFixupFn() {
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000672 // id objc_msgSendSuper2_stret_fixup(struct objc_super *,
Chris Lattner1c02f862009-04-22 02:53:24 +0000673 // struct _super_message_ref_t*, ...)
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000674 llvm::Type *params[] = { SuperPtrTy, SuperMessageRefPtrTy };
Owen Anderson96e0fc72009-07-29 22:16:19 +0000675 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall0774cb82011-05-15 01:53:33 +0000676 params, true),
Chris Lattner1c02f862009-04-22 02:53:24 +0000677 "objc_msgSendSuper2_stret_fixup");
678 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000679
Chris Lattner8a569112009-04-22 02:15:23 +0000680 llvm::Constant *getObjCEndCatchFn() {
John McCall0774cb82011-05-15 01:53:33 +0000681 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.VoidTy, false),
Chris Lattner8a569112009-04-22 02:15:23 +0000682 "objc_end_catch");
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000683
Chris Lattner8a569112009-04-22 02:15:23 +0000684 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000685
Chris Lattner8a569112009-04-22 02:15:23 +0000686 llvm::Constant *getObjCBeginCatchFn() {
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000687 llvm::Type *params[] = { Int8PtrTy };
Owen Anderson96e0fc72009-07-29 22:16:19 +0000688 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(Int8PtrTy,
John McCall0774cb82011-05-15 01:53:33 +0000689 params, false),
Chris Lattner8a569112009-04-22 02:15:23 +0000690 "objc_begin_catch");
691 }
Daniel Dunbare588b992009-03-01 04:46:24 +0000692
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000693 llvm::StructType *EHTypeTy;
694 llvm::Type *EHTypePtrTy;
Fariborz Jahanian9d96bce2011-06-22 20:21:51 +0000695
Fariborz Jahanian30bc5712009-01-22 23:02:58 +0000696 ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm);
697 ~ObjCNonFragileABITypesHelper(){}
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000698};
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000699
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000700class CGObjCCommonMac : public CodeGen::CGObjCRuntime {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000701public:
702 // FIXME - accessibility
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000703 class GC_IVAR {
Fariborz Jahanian820e0202009-03-11 00:07:04 +0000704 public:
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000705 unsigned ivar_bytepos;
706 unsigned ivar_size;
707 GC_IVAR(unsigned bytepos = 0, unsigned size = 0)
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000708 : ivar_bytepos(bytepos), ivar_size(size) {}
Daniel Dunbar0941b492009-04-23 01:29:05 +0000709
710 // Allow sorting based on byte pos.
711 bool operator<(const GC_IVAR &b) const {
712 return ivar_bytepos < b.ivar_bytepos;
713 }
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000714 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000715
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000716 class SKIP_SCAN {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000717 public:
718 unsigned skip;
719 unsigned scan;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000720 SKIP_SCAN(unsigned _skip = 0, unsigned _scan = 0)
Daniel Dunbar8b2926c2009-05-03 13:44:42 +0000721 : skip(_skip), scan(_scan) {}
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000722 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000723
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000724protected:
725 CodeGen::CodeGenModule &CGM;
Owen Anderson69243822009-07-13 04:10:07 +0000726 llvm::LLVMContext &VMContext;
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000727 // FIXME! May not be needing this after all.
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000728 unsigned ObjCABI;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000729
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +0000730 // gc ivar layout bitmap calculation helper caches.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000731 SmallVector<GC_IVAR, 16> SkipIvars;
732 SmallVector<GC_IVAR, 16> IvarsInfo;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000733
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000734 /// LazySymbols - Symbols to generate a lazy reference for. See
735 /// DefinedSymbols and FinishModule().
Daniel Dunbar33063492009-09-07 00:20:42 +0000736 llvm::SetVector<IdentifierInfo*> LazySymbols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000737
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000738 /// DefinedSymbols - External symbols which are defined by this
739 /// module. The symbols in this list and LazySymbols are used to add
740 /// special linker symbols which ensure that Objective-C modules are
741 /// linked properly.
Daniel Dunbar33063492009-09-07 00:20:42 +0000742 llvm::SetVector<IdentifierInfo*> DefinedSymbols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000743
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000744 /// ClassNames - uniqued class names.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000745 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassNames;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000746
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000747 /// MethodVarNames - uniqued method variable names.
748 llvm::DenseMap<Selector, llvm::GlobalVariable*> MethodVarNames;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000749
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +0000750 /// DefinedCategoryNames - list of category names in form Class_Category.
751 llvm::SetVector<std::string> DefinedCategoryNames;
752
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000753 /// MethodVarTypes - uniqued method type signatures. We have to use
754 /// a StringMap here because have no other unique reference.
755 llvm::StringMap<llvm::GlobalVariable*> MethodVarTypes;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000756
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000757 /// MethodDefinitions - map of methods which have been defined in
758 /// this translation unit.
759 llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*> MethodDefinitions;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000760
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000761 /// PropertyNames - uniqued method variable names.
762 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> PropertyNames;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000763
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000764 /// ClassReferences - uniqued class references.
765 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000766
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000767 /// SelectorReferences - uniqued selector references.
768 llvm::DenseMap<Selector, llvm::GlobalVariable*> SelectorReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000769
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000770 /// Protocols - Protocols for which an objc_protocol structure has
771 /// been emitted. Forward declarations are handled by creating an
772 /// empty structure whose initializer is filled in when/if defined.
773 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000774
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000775 /// DefinedProtocols - Protocols which have actually been
776 /// defined. We should not need this, see FIXME in GenerateProtocol.
777 llvm::DenseSet<IdentifierInfo*> DefinedProtocols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000778
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000779 /// DefinedClasses - List of defined classes.
780 std::vector<llvm::GlobalValue*> DefinedClasses;
Daniel Dunbar74d4b122009-05-15 22:33:15 +0000781
782 /// DefinedNonLazyClasses - List of defined "non-lazy" classes.
783 std::vector<llvm::GlobalValue*> DefinedNonLazyClasses;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000784
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000785 /// DefinedCategories - List of defined categories.
786 std::vector<llvm::GlobalValue*> DefinedCategories;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000787
Daniel Dunbar74d4b122009-05-15 22:33:15 +0000788 /// DefinedNonLazyCategories - List of defined "non-lazy" categories.
789 std::vector<llvm::GlobalValue*> DefinedNonLazyCategories;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000790
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000791 /// GetNameForMethod - Return a name for the given method.
792 /// \param[out] NameOut - The return value.
793 void GetNameForMethod(const ObjCMethodDecl *OMD,
794 const ObjCContainerDecl *CD,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000795 SmallVectorImpl<char> &NameOut);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000796
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000797 /// GetMethodVarName - Return a unique constant for the given
798 /// selector's name. The return value has type char *.
799 llvm::Constant *GetMethodVarName(Selector Sel);
800 llvm::Constant *GetMethodVarName(IdentifierInfo *Ident);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000801
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000802 /// GetMethodVarType - Return a unique constant for the given
Bob Wilsondc8dab62011-11-30 01:57:58 +0000803 /// method's type encoding string. The return value has type char *.
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000804
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000805 // FIXME: This is a horrible name.
Bob Wilsondc8dab62011-11-30 01:57:58 +0000806 llvm::Constant *GetMethodVarType(const ObjCMethodDecl *D,
807 bool Extended = false);
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +0000808 llvm::Constant *GetMethodVarType(const FieldDecl *D);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000809
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000810 /// GetPropertyName - Return a unique constant for the given
811 /// name. The return value has type char *.
812 llvm::Constant *GetPropertyName(IdentifierInfo *Ident);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000813
Fariborz Jahanian56210f72009-01-21 23:34:32 +0000814 // FIXME: This can be dropped once string functions are unified.
815 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
816 const Decl *Container);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000817
Fariborz Jahanian058a1b72009-01-24 20:21:50 +0000818 /// GetClassName - Return a unique constant for the given selector's
819 /// name. The return value has type char *.
820 llvm::Constant *GetClassName(IdentifierInfo *Ident);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000821
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +0000822 llvm::Function *GetMethodDefinition(const ObjCMethodDecl *MD);
823
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +0000824 /// BuildIvarLayout - Builds ivar layout bitmap for the class
825 /// implementation for the __strong or __weak case.
826 ///
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000827 llvm::Constant *BuildIvarLayout(const ObjCImplementationDecl *OI,
828 bool ForStrongLayout);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +0000829
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +0000830 llvm::Constant *BuildIvarLayoutBitmap(std::string &BitMap);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000831
Daniel Dunbard58edcb2009-05-03 14:10:34 +0000832 void BuildAggrIvarRecordLayout(const RecordType *RT,
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000833 unsigned int BytePos, bool ForStrongLayout,
834 bool &HasUnion);
Daniel Dunbar5a5a8032009-05-03 21:05:10 +0000835 void BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000836 const llvm::StructLayout *Layout,
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +0000837 const RecordDecl *RD,
Jordy Rosedb8264e2011-07-22 02:08:32 +0000838 const SmallVectorImpl<const FieldDecl*> &RecFields,
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +0000839 unsigned int BytePos, bool ForStrongLayout,
Fariborz Jahanian81adc052009-04-24 16:17:09 +0000840 bool &HasUnion);
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +0000841
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +0000842 /// GetIvarLayoutName - Returns a unique constant for the given
843 /// ivar layout bitmap.
844 llvm::Constant *GetIvarLayoutName(IdentifierInfo *Ident,
845 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000846
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +0000847 /// EmitPropertyList - Emit the given property list. The return
848 /// value has type PropertyListPtrTy.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000849 llvm::Constant *EmitPropertyList(Twine Name,
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000850 const Decl *Container,
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +0000851 const ObjCContainerDecl *OCD,
852 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000853
Bob Wilsondc8dab62011-11-30 01:57:58 +0000854 /// EmitProtocolMethodTypes - Generate the array of extended method type
855 /// strings. The return value has type Int8PtrPtrTy.
856 llvm::Constant *EmitProtocolMethodTypes(Twine Name,
857 const ConstantVector &MethodTypes,
858 const ObjCCommonTypesHelper &ObjCTypes);
859
Fariborz Jahanian191dcd72009-12-12 21:26:21 +0000860 /// PushProtocolProperties - Push protocol's property on the input stack.
861 void PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*, 16> &PropertySet,
862 std::vector<llvm::Constant*> &Properties,
863 const Decl *Container,
864 const ObjCProtocolDecl *PROTO,
865 const ObjCCommonTypesHelper &ObjCTypes);
866
Fariborz Jahanianda320092009-01-29 19:24:30 +0000867 /// GetProtocolRef - Return a reference to the internal protocol
868 /// description, creating an empty one if it has not been
869 /// defined. The return value has type ProtocolPtrTy.
870 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
Fariborz Jahanianb21f07e2009-03-08 20:18:37 +0000871
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000872 /// CreateMetadataVar - Create a global variable with internal
873 /// linkage for use by the Objective-C runtime.
874 ///
875 /// This is a convenience wrapper which not only creates the
876 /// variable, but also sets the section and alignment and adds the
Chris Lattnerad64e022009-07-17 23:57:13 +0000877 /// global to the "llvm.used" list.
Daniel Dunbar35bd7632009-03-09 20:50:13 +0000878 ///
879 /// \param Name - The variable name.
880 /// \param Init - The variable initializer; this is also used to
881 /// define the type of the variable.
882 /// \param Section - The section the variable should go into, or 0.
883 /// \param Align - The alignment for the variable, or 0.
884 /// \param AddToUsed - Whether the variable should be added to
Daniel Dunbarc1583062009-04-14 17:42:51 +0000885 /// "llvm.used".
Chris Lattner5f9e2722011-07-23 10:55:15 +0000886 llvm::GlobalVariable *CreateMetadataVar(Twine Name,
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000887 llvm::Constant *Init,
888 const char *Section,
Daniel Dunbar35bd7632009-03-09 20:50:13 +0000889 unsigned Align,
890 bool AddToUsed);
Daniel Dunbarfd65d372009-03-09 20:09:19 +0000891
John McCall944c8432011-05-14 03:10:52 +0000892 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
893 ReturnValueSlot Return,
894 QualType ResultType,
895 llvm::Value *Sel,
896 llvm::Value *Arg0,
897 QualType Arg0Ty,
898 bool IsSuper,
899 const CallArgList &CallArgs,
900 const ObjCMethodDecl *OMD,
901 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +0000902
Daniel Dunbarfce176b2010-04-25 20:39:01 +0000903 /// EmitImageInfo - Emit the image info marker used to encode some module
904 /// level information.
905 void EmitImageInfo();
906
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000907public:
Owen Anderson69243822009-07-13 04:10:07 +0000908 CGObjCCommonMac(CodeGen::CodeGenModule &cgm) :
Mike Stump1eb44332009-09-09 15:08:12 +0000909 CGM(cgm), VMContext(cgm.getLLVMContext()) { }
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000910
David Chisnall0d13f6f2010-01-23 02:40:42 +0000911 virtual llvm::Constant *GenerateConstantString(const StringLiteral *SL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000912
Fariborz Jahanian493dab72009-01-26 21:38:32 +0000913 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
914 const ObjCContainerDecl *CD=0);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000915
Fariborz Jahanianda320092009-01-29 19:24:30 +0000916 virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000917
Fariborz Jahanianda320092009-01-29 19:24:30 +0000918 /// GetOrEmitProtocol - Get the protocol object for the given
919 /// declaration, emitting it if necessary. The return value has type
920 /// ProtocolPtrTy.
921 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000922
Fariborz Jahanianda320092009-01-29 19:24:30 +0000923 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
924 /// object for the given declaration, emitting it if needed. These
925 /// forward references will be filled in with empty bodies if no
926 /// definition is seen. The return value has type ProtocolPtrTy.
927 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0;
John McCall6b5a61b2011-02-07 10:33:21 +0000928 virtual llvm::Constant *BuildGCBlockLayout(CodeGen::CodeGenModule &CGM,
929 const CGBlockInfo &blockInfo);
Fariborz Jahanian89ecd412010-08-04 16:57:49 +0000930
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000931};
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000932
Fariborz Jahanianee0af742009-01-21 22:04:16 +0000933class CGObjCMac : public CGObjCCommonMac {
934private:
935 ObjCTypesHelper ObjCTypes;
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000936
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000937 /// EmitModuleInfo - Another marker encoding module level
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000938 /// information.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000939 void EmitModuleInfo();
940
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000941 /// EmitModuleSymols - Emit module symbols, the list of defined
942 /// classes and categories. The result has type SymtabPtrTy.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000943 llvm::Constant *EmitModuleSymbols();
944
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000945 /// FinishModule - Write out global data structures at the end of
946 /// processing a translation unit.
947 void FinishModule();
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000948
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000949 /// EmitClassExtension - Generate the class extension structure used
950 /// to store the weak ivar layout and properties. The return value
951 /// has type ClassExtensionPtrTy.
952 llvm::Constant *EmitClassExtension(const ObjCImplementationDecl *ID);
953
954 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
955 /// for the given class.
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000956 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000957 const ObjCInterfaceDecl *ID);
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +0000958
John McCallf85e1932011-06-15 23:02:42 +0000959 llvm::Value *EmitClassRefFromId(CGBuilderTy &Builder,
960 IdentifierInfo *II);
961
962 llvm::Value *EmitNSAutoreleasePoolClassRef(CGBuilderTy &Builder);
963
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +0000964 /// EmitSuperClassRef - Emits reference to class's main metadata class.
965 llvm::Value *EmitSuperClassRef(const ObjCInterfaceDecl *ID);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000966
967 /// EmitIvarList - Emit the ivar list for the given
968 /// implementation. If ForClass is true the list of class ivars
969 /// (i.e. metaclass ivars) is emitted, otherwise the list of
970 /// interface ivars will be emitted. The return value has type
971 /// IvarListPtrTy.
972 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanian46b86c62009-01-28 19:12:34 +0000973 bool ForClass);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000974
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000975 /// EmitMetaClass - Emit a forward reference to the class structure
976 /// for the metaclass of the given interface. The return value has
977 /// type ClassPtrTy.
978 llvm::Constant *EmitMetaClassRef(const ObjCInterfaceDecl *ID);
979
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000980 /// EmitMetaClass - Emit a class structure for the metaclass of the
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000981 /// given implementation. The return value has type ClassPtrTy.
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000982 llvm::Constant *EmitMetaClass(const ObjCImplementationDecl *ID,
983 llvm::Constant *Protocols,
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000984 const ConstantVector &Methods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000985
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000986 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000987
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000988 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000989
990 /// EmitMethodList - Emit the method list for the given
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000991 /// implementation. The return value has type MethodListPtrTy.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000992 llvm::Constant *EmitMethodList(Twine Name,
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000993 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000994 const ConstantVector &Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000995
996 /// EmitMethodDescList - Emit a method description list for a list of
Daniel Dunbar6bff2512009-08-03 17:06:42 +0000997 /// method declarations.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000998 /// - TypeName: The name for the type containing the methods.
999 /// - IsProtocol: True iff these methods are for a protocol.
1000 /// - ClassMethds: True iff these are class methods.
1001 /// - Required: When true, only "required" methods are
1002 /// listed. Similarly, when false only "optional" methods are
1003 /// listed. For classes this should always be true.
1004 /// - begin, end: The method list to output.
1005 ///
1006 /// The return value has type MethodDescriptionListPtrTy.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001007 llvm::Constant *EmitMethodDescList(Twine Name,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001008 const char *Section,
1009 const ConstantVector &Methods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001010
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001011 /// GetOrEmitProtocol - Get the protocol object for the given
1012 /// declaration, emitting it if necessary. The return value has type
1013 /// ProtocolPtrTy.
Fariborz Jahanianda320092009-01-29 19:24:30 +00001014 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001015
1016 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1017 /// object for the given declaration, emitting it if needed. These
1018 /// forward references will be filled in with empty bodies if no
1019 /// definition is seen. The return value has type ProtocolPtrTy.
Fariborz Jahanianda320092009-01-29 19:24:30 +00001020 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001021
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001022 /// EmitProtocolExtension - Generate the protocol extension
1023 /// structure used to store optional instance and class methods, and
1024 /// protocol properties. The return value has type
1025 /// ProtocolExtensionPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001026 llvm::Constant *
1027 EmitProtocolExtension(const ObjCProtocolDecl *PD,
1028 const ConstantVector &OptInstanceMethods,
Bob Wilsondc8dab62011-11-30 01:57:58 +00001029 const ConstantVector &OptClassMethods,
1030 const ConstantVector &MethodTypesExt);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001031
1032 /// EmitProtocolList - Generate the list of referenced
1033 /// protocols. The return value has type ProtocolListPtrTy.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001034 llvm::Constant *EmitProtocolList(Twine Name,
Daniel Dunbardbc933702008-08-21 21:57:41 +00001035 ObjCProtocolDecl::protocol_iterator begin,
1036 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001037
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001038 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1039 /// for the given selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001040 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel,
1041 bool lval=false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001042
1043public:
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001044 CGObjCMac(CodeGen::CodeGenModule &cgm);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001045
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001046 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001047
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001048 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001049 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001050 QualType ResultType,
1051 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001052 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001053 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001054 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001055 const ObjCMethodDecl *Method);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001056
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001057 virtual CodeGen::RValue
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001058 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001059 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001060 QualType ResultType,
1061 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001062 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001063 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001064 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001065 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001066 const CallArgList &CallArgs,
1067 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001068
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001069 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001070 const ObjCInterfaceDecl *ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001071
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001072 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
1073 bool lval = false);
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001074
1075 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1076 /// untyped one.
1077 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1078 const ObjCMethodDecl *Method);
1079
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00001080 virtual llvm::Constant *GetEHType(QualType T);
John McCall5a180392010-07-24 00:37:23 +00001081
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001082 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001083
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001084 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001085
David Chisnall29254f42012-01-31 18:59:20 +00001086 virtual void RegisterAlias(const ObjCCompatibleAliasDecl *OAD) {};
1087
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001088 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001089 const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001090
Chris Lattner74391b42009-03-22 21:03:39 +00001091 virtual llvm::Constant *GetPropertyGetFunction();
1092 virtual llvm::Constant *GetPropertySetFunction();
David Chisnall8fac25d2010-12-26 22:13:16 +00001093 virtual llvm::Constant *GetGetStructFunction();
1094 virtual llvm::Constant *GetSetStructFunction();
Fariborz Jahaniane3173022012-01-06 18:07:23 +00001095 virtual llvm::Constant *GetCppAtomicObjectFunction();
Chris Lattner74391b42009-03-22 21:03:39 +00001096 virtual llvm::Constant *EnumerationMutationFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001097
John McCallf1549f62010-07-06 01:34:17 +00001098 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1099 const ObjCAtTryStmt &S);
1100 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1101 const ObjCAtSynchronizedStmt &S);
1102 void EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF, const Stmt &S);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001103 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
1104 const ObjCAtThrowStmt &S);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00001105 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001106 llvm::Value *AddrWeakObj);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00001107 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001108 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanian58626502008-11-19 00:59:10 +00001109 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00001110 llvm::Value *src, llvm::Value *dest,
1111 bool threadlocal = false);
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00001112 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00001113 llvm::Value *src, llvm::Value *dest,
1114 llvm::Value *ivarOffset);
Fariborz Jahanian58626502008-11-19 00:59:10 +00001115 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
1116 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00001117 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
1118 llvm::Value *dest, llvm::Value *src,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001119 llvm::Value *size);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001120
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001121 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1122 QualType ObjectTy,
1123 llvm::Value *BaseValue,
1124 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001125 unsigned CVRQualifiers);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001126 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00001127 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001128 const ObjCIvarDecl *Ivar);
Fariborz Jahanian6f40e222011-05-17 22:21:16 +00001129
1130 /// GetClassGlobal - Return the global variable for the Objective-C
1131 /// class of the given name.
1132 virtual llvm::GlobalVariable *GetClassGlobal(const std::string &Name) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001133 llvm_unreachable("CGObjCMac::GetClassGlobal");
Fariborz Jahanian6f40e222011-05-17 22:21:16 +00001134 }
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001135};
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001136
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001137class CGObjCNonFragileABIMac : public CGObjCCommonMac {
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001138private:
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001139 ObjCNonFragileABITypesHelper ObjCTypes;
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001140 llvm::GlobalVariable* ObjCEmptyCacheVar;
1141 llvm::GlobalVariable* ObjCEmptyVtableVar;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001142
Daniel Dunbar11394522009-04-18 08:51:00 +00001143 /// SuperClassReferences - uniqued super class references.
1144 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> SuperClassReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001145
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001146 /// MetaClassReferences - uniqued meta class references.
1147 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> MetaClassReferences;
Daniel Dunbare588b992009-03-01 04:46:24 +00001148
1149 /// EHTypeReferences - uniqued class ehtype references.
1150 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> EHTypeReferences;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001151
John McCall944c8432011-05-14 03:10:52 +00001152 /// VTableDispatchMethods - List of methods for which we generate
1153 /// vtable-based message dispatch.
1154 llvm::DenseSet<Selector> VTableDispatchMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001155
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00001156 /// DefinedMetaClasses - List of defined meta-classes.
1157 std::vector<llvm::GlobalValue*> DefinedMetaClasses;
1158
John McCall944c8432011-05-14 03:10:52 +00001159 /// isVTableDispatchedSelector - Returns true if SEL is a
1160 /// vtable-based selector.
1161 bool isVTableDispatchedSelector(Selector Sel);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001162
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001163 /// FinishNonFragileABIModule - Write out global data structures at the end of
1164 /// processing a translation unit.
1165 void FinishNonFragileABIModule();
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001166
Daniel Dunbar463b8762009-05-15 21:48:48 +00001167 /// AddModuleClassList - Add the given list of class pointers to the
1168 /// module with the provided symbol and section names.
1169 void AddModuleClassList(const std::vector<llvm::GlobalValue*> &Container,
1170 const char *SymbolName,
1171 const char *SectionName);
1172
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001173 llvm::GlobalVariable * BuildClassRoTInitializer(unsigned flags,
1174 unsigned InstanceStart,
1175 unsigned InstanceSize,
1176 const ObjCImplementationDecl *ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00001177 llvm::GlobalVariable * BuildClassMetaData(std::string &ClassName,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001178 llvm::Constant *IsAGV,
Fariborz Jahanian84394a52009-01-24 21:21:53 +00001179 llvm::Constant *SuperClassGV,
Fariborz Jahaniancf555162009-01-31 00:59:10 +00001180 llvm::Constant *ClassRoGV,
1181 bool HiddenVisibility);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001182
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001183 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001184
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00001185 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001186
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001187 /// EmitMethodList - Emit the method list for the given
1188 /// implementation. The return value has type MethodListnfABITy.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001189 llvm::Constant *EmitMethodList(Twine Name,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00001190 const char *Section,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00001191 const ConstantVector &Methods);
1192 /// EmitIvarList - Emit the ivar list for the given
1193 /// implementation. If ForClass is true the list of class ivars
1194 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1195 /// interface ivars will be emitted. The return value has type
1196 /// IvarListnfABIPtrTy.
1197 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001198
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001199 llvm::Constant *EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00001200 const ObjCIvarDecl *Ivar,
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00001201 unsigned long int offset);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001202
Fariborz Jahanianda320092009-01-29 19:24:30 +00001203 /// GetOrEmitProtocol - Get the protocol object for the given
1204 /// declaration, emitting it if necessary. The return value has type
1205 /// ProtocolPtrTy.
1206 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001207
Fariborz Jahanianda320092009-01-29 19:24:30 +00001208 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1209 /// object for the given declaration, emitting it if needed. These
1210 /// forward references will be filled in with empty bodies if no
1211 /// definition is seen. The return value has type ProtocolPtrTy.
1212 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001213
Fariborz Jahanianda320092009-01-29 19:24:30 +00001214 /// EmitProtocolList - Generate the list of referenced
1215 /// protocols. The return value has type ProtocolListPtrTy.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001216 llvm::Constant *EmitProtocolList(Twine Name,
Fariborz Jahanianda320092009-01-29 19:24:30 +00001217 ObjCProtocolDecl::protocol_iterator begin,
Fariborz Jahanian46551122009-02-04 00:22:57 +00001218 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001219
John McCall944c8432011-05-14 03:10:52 +00001220 CodeGen::RValue EmitVTableMessageSend(CodeGen::CodeGenFunction &CGF,
1221 ReturnValueSlot Return,
1222 QualType ResultType,
1223 Selector Sel,
1224 llvm::Value *Receiver,
1225 QualType Arg0Ty,
1226 bool IsSuper,
1227 const CallArgList &CallArgs,
1228 const ObjCMethodDecl *Method);
Fariborz Jahanian6f40e222011-05-17 22:21:16 +00001229
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00001230 /// GetClassGlobal - Return the global variable for the Objective-C
1231 /// class of the given name.
Fariborz Jahanian0f902942009-04-14 18:41:56 +00001232 llvm::GlobalVariable *GetClassGlobal(const std::string &Name);
Fariborz Jahanian6f40e222011-05-17 22:21:16 +00001233
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001234 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
Daniel Dunbar11394522009-04-18 08:51:00 +00001235 /// for the given class reference.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001236 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar11394522009-04-18 08:51:00 +00001237 const ObjCInterfaceDecl *ID);
John McCallf85e1932011-06-15 23:02:42 +00001238
1239 llvm::Value *EmitClassRefFromId(CGBuilderTy &Builder,
1240 IdentifierInfo *II);
1241
1242 llvm::Value *EmitNSAutoreleasePoolClassRef(CGBuilderTy &Builder);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001243
Daniel Dunbar11394522009-04-18 08:51:00 +00001244 /// EmitSuperClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
1245 /// for the given super class reference.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001246 llvm::Value *EmitSuperClassRef(CGBuilderTy &Builder,
1247 const ObjCInterfaceDecl *ID);
1248
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001249 /// EmitMetaClassRef - Return a Value * of the address of _class_t
1250 /// meta-data
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001251 llvm::Value *EmitMetaClassRef(CGBuilderTy &Builder,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00001252 const ObjCInterfaceDecl *ID);
1253
Fariborz Jahanianed157d32009-02-10 20:21:06 +00001254 /// ObjCIvarOffsetVariable - Returns the ivar offset variable for
1255 /// the given ivar.
1256 ///
Daniel Dunbar5e88bea2009-04-19 00:31:15 +00001257 llvm::GlobalVariable * ObjCIvarOffsetVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001258 const ObjCInterfaceDecl *ID,
1259 const ObjCIvarDecl *Ivar);
1260
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00001261 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1262 /// for the given selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001263 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel,
1264 bool lval=false);
Daniel Dunbare588b992009-03-01 04:46:24 +00001265
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001266 /// GetInterfaceEHType - Get the cached ehtype for the given Objective-C
Daniel Dunbare588b992009-03-01 04:46:24 +00001267 /// interface. The return value has type EHTypePtrTy.
John McCall5a180392010-07-24 00:37:23 +00001268 llvm::Constant *GetInterfaceEHType(const ObjCInterfaceDecl *ID,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001269 bool ForDefinition);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001270
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001271 const char *getMetaclassSymbolPrefix() const {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001272 return "OBJC_METACLASS_$_";
1273 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001274
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00001275 const char *getClassSymbolPrefix() const {
1276 return "OBJC_CLASS_$_";
1277 }
1278
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00001279 void GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbarb02532a2009-04-19 23:41:48 +00001280 uint32_t &InstanceStart,
1281 uint32_t &InstanceSize);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001282
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001283 // Shamelessly stolen from Analysis/CFRefCount.cpp
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001284 Selector GetNullarySelector(const char* name) const {
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001285 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1286 return CGM.getContext().Selectors.getSelector(0, &II);
1287 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001288
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001289 Selector GetUnarySelector(const char* name) const {
Fariborz Jahanian4523eb02009-05-12 20:06:41 +00001290 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1291 return CGM.getContext().Selectors.getSelector(1, &II);
1292 }
Daniel Dunbarb02532a2009-04-19 23:41:48 +00001293
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001294 /// ImplementationIsNonLazy - Check whether the given category or
1295 /// class implementation is "non-lazy".
Fariborz Jahanianecfbdcb2009-05-21 01:03:45 +00001296 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const;
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001297
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001298public:
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00001299 CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001300 // FIXME. All stubs for now!
1301 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001302
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001303 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001304 ReturnValueSlot Return,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001305 QualType ResultType,
1306 Selector Sel,
1307 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001308 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001309 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001310 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001311
1312 virtual CodeGen::RValue
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001313 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001314 ReturnValueSlot Return,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001315 QualType ResultType,
1316 Selector Sel,
1317 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001318 bool isCategoryImpl,
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001319 llvm::Value *Receiver,
1320 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001321 const CallArgList &CallArgs,
1322 const ObjCMethodDecl *Method);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001323
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001324 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00001325 const ObjCInterfaceDecl *ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001326
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001327 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
1328 bool lvalue = false)
1329 { return EmitSelector(Builder, Sel, lvalue); }
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001330
1331 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1332 /// untyped one.
1333 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1334 const ObjCMethodDecl *Method)
1335 { return EmitSelector(Builder, Method->getSelector()); }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001336
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00001337 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001338
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001339 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
David Chisnall29254f42012-01-31 18:59:20 +00001340
1341 virtual void RegisterAlias(const ObjCCompatibleAliasDecl *OAD) {};
1342
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001343 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00001344 const ObjCProtocolDecl *PD);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001345
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00001346 virtual llvm::Constant *GetEHType(QualType T);
John McCall5a180392010-07-24 00:37:23 +00001347
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001348 virtual llvm::Constant *GetPropertyGetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001349 return ObjCTypes.getGetPropertyFn();
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001350 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001351 virtual llvm::Constant *GetPropertySetFunction() {
1352 return ObjCTypes.getSetPropertyFn();
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001353 }
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00001354
David Chisnall8fac25d2010-12-26 22:13:16 +00001355 virtual llvm::Constant *GetSetStructFunction() {
1356 return ObjCTypes.getCopyStructFn();
1357 }
1358 virtual llvm::Constant *GetGetStructFunction() {
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00001359 return ObjCTypes.getCopyStructFn();
1360 }
Fariborz Jahaniane3173022012-01-06 18:07:23 +00001361 virtual llvm::Constant *GetCppAtomicObjectFunction() {
1362 return ObjCTypes.getCppAtomicObjectFunction();
1363 }
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00001364
Chris Lattner74391b42009-03-22 21:03:39 +00001365 virtual llvm::Constant *EnumerationMutationFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00001366 return ObjCTypes.getEnumerationMutationFn();
Daniel Dunbar28ed0842009-02-16 18:48:45 +00001367 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001368
John McCallf1549f62010-07-06 01:34:17 +00001369 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1370 const ObjCAtTryStmt &S);
1371 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1372 const ObjCAtSynchronizedStmt &S);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001373 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Anders Carlssonf57c5b22009-02-16 22:59:18 +00001374 const ObjCAtThrowStmt &S);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001375 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001376 llvm::Value *AddrWeakObj);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001377 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001378 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001379 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00001380 llvm::Value *src, llvm::Value *dest,
1381 bool threadlocal = false);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001382 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00001383 llvm::Value *src, llvm::Value *dest,
1384 llvm::Value *ivarOffset);
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001385 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00001386 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00001387 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
1388 llvm::Value *dest, llvm::Value *src,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00001389 llvm::Value *size);
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001390 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1391 QualType ObjectTy,
1392 llvm::Value *BaseValue,
1393 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001394 unsigned CVRQualifiers);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001395 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00001396 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001397 const ObjCIvarDecl *Ivar);
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001398};
Fariborz Jahanian4e1524b2012-01-29 20:27:13 +00001399
1400/// A helper class for performing the null-initialization of a return
1401/// value.
1402struct NullReturnState {
1403 llvm::BasicBlock *NullBB;
1404 llvm::BasicBlock *callBB;
1405 NullReturnState() : NullBB(0), callBB(0) {}
1406
1407 void init(CodeGenFunction &CGF, llvm::Value *receiver) {
1408 // Make blocks for the null-init and call edges.
1409 NullBB = CGF.createBasicBlock("msgSend.nullinit");
1410 callBB = CGF.createBasicBlock("msgSend.call");
1411
1412 // Check for a null receiver and, if there is one, jump to the
1413 // null-init test.
1414 llvm::Value *isNull = CGF.Builder.CreateIsNull(receiver);
1415 CGF.Builder.CreateCondBr(isNull, NullBB, callBB);
1416
1417 // Otherwise, start performing the call.
1418 CGF.EmitBlock(callBB);
1419 }
1420
Fariborz Jahanian3c267e62012-01-30 21:40:37 +00001421 RValue complete(CodeGenFunction &CGF, RValue result, QualType resultType,
1422 const CallArgList &CallArgs,
1423 const ObjCMethodDecl *Method) {
Fariborz Jahanian4e1524b2012-01-29 20:27:13 +00001424 if (!NullBB) return result;
Fariborz Jahanian3c267e62012-01-30 21:40:37 +00001425
1426 llvm::Value *NullInitPtr = 0;
1427 if (result.isScalar() && !resultType->isVoidType()) {
1428 NullInitPtr = CGF.CreateTempAlloca(result.getScalarVal()->getType());
1429 CGF.Builder.CreateStore(result.getScalarVal(), NullInitPtr);
1430 }
Fariborz Jahanian4e1524b2012-01-29 20:27:13 +00001431
1432 // Finish the call path.
1433 llvm::BasicBlock *contBB = CGF.createBasicBlock("msgSend.cont");
1434 if (CGF.HaveInsertPoint()) CGF.Builder.CreateBr(contBB);
1435
1436 // Emit the null-init block and perform the null-initialization there.
1437 CGF.EmitBlock(NullBB);
Fariborz Jahanian3c267e62012-01-30 21:40:37 +00001438
1439 // Release consumed arguments along the null-receiver path.
1440 if (Method) {
1441 CallArgList::const_iterator I = CallArgs.begin();
1442 for (ObjCMethodDecl::param_const_iterator i = Method->param_begin(),
1443 e = Method->param_end(); i != e; ++i, ++I) {
1444 const ParmVarDecl *ParamDecl = (*i);
1445 if (ParamDecl->hasAttr<NSConsumedAttr>()) {
1446 RValue RV = I->RV;
1447 assert(RV.isScalar() &&
1448 "NullReturnState::complete - arg not on object");
1449 CGF.EmitARCRelease(RV.getScalarVal(), true);
1450 }
1451 }
1452 }
1453
1454 if (result.isScalar()) {
1455 if (NullInitPtr)
1456 CGF.EmitNullInitialization(NullInitPtr, resultType);
1457 // Jump to the continuation block.
1458 CGF.EmitBlock(contBB);
1459 return NullInitPtr ? RValue::get(CGF.Builder.CreateLoad(NullInitPtr))
1460 : result;
1461 }
1462
Fariborz Jahanian4e1524b2012-01-29 20:27:13 +00001463 if (!resultType->isAnyComplexType()) {
1464 assert(result.isAggregate() && "null init of non-aggregate result?");
1465 CGF.EmitNullInitialization(result.getAggregateAddr(), resultType);
1466 // Jump to the continuation block.
1467 CGF.EmitBlock(contBB);
1468 return result;
1469 }
1470
1471 // _Complex type
1472 // FIXME. Now easy to handle any other scalar type whose result is returned
1473 // in memory due to ABI limitations.
1474 CGF.EmitBlock(contBB);
1475 CodeGenFunction::ComplexPairTy CallCV = result.getComplexVal();
1476 llvm::Type *MemberType = CallCV.first->getType();
1477 llvm::Constant *ZeroCV = llvm::Constant::getNullValue(MemberType);
1478 // Create phi instruction for scalar complex value.
1479 llvm::PHINode *PHIReal = CGF.Builder.CreatePHI(MemberType, 2);
1480 PHIReal->addIncoming(ZeroCV, NullBB);
1481 PHIReal->addIncoming(CallCV.first, callBB);
1482 llvm::PHINode *PHIImag = CGF.Builder.CreatePHI(MemberType, 2);
1483 PHIImag->addIncoming(ZeroCV, NullBB);
1484 PHIImag->addIncoming(CallCV.second, callBB);
1485 return RValue::getComplex(PHIReal, PHIImag);
1486 }
1487};
1488
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001489} // end anonymous namespace
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001490
1491/* *** Helper Functions *** */
1492
1493/// getConstantGEP() - Help routine to construct simple GEPs.
Owen Andersona1cf15f2009-07-14 23:10:40 +00001494static llvm::Constant *getConstantGEP(llvm::LLVMContext &VMContext,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001495 llvm::Constant *C,
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001496 unsigned idx0,
1497 unsigned idx1) {
1498 llvm::Value *Idxs[] = {
Owen Anderson0032b272009-08-13 21:57:51 +00001499 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx0),
1500 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx1)
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001501 };
Jay Foada5c04342011-07-21 14:31:17 +00001502 return llvm::ConstantExpr::getGetElementPtr(C, Idxs);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001503}
1504
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001505/// hasObjCExceptionAttribute - Return true if this class or any super
1506/// class has the __objc_exception__ attribute.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001507static bool hasObjCExceptionAttribute(ASTContext &Context,
Douglas Gregor68584ed2009-06-18 16:11:24 +00001508 const ObjCInterfaceDecl *OID) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001509 if (OID->hasAttr<ObjCExceptionAttr>())
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001510 return true;
1511 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())
Douglas Gregor68584ed2009-06-18 16:11:24 +00001512 return hasObjCExceptionAttribute(Context, Super);
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00001513 return false;
1514}
1515
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001516/* *** CGObjCMac Public Interface *** */
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001517
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001518CGObjCMac::CGObjCMac(CodeGen::CodeGenModule &cgm) : CGObjCCommonMac(cgm),
Mike Stump1eb44332009-09-09 15:08:12 +00001519 ObjCTypes(cgm) {
Fariborz Jahanianee0af742009-01-21 22:04:16 +00001520 ObjCABI = 1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001521 EmitImageInfo();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001522}
1523
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +00001524/// GetClass - Return a reference to the class for the given interface
1525/// decl.
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001526llvm::Value *CGObjCMac::GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001527 const ObjCInterfaceDecl *ID) {
1528 return EmitClassRef(Builder, ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001529}
1530
1531/// GetSelector - Return the pointer to the unique'd string for this selector.
Fariborz Jahanian03b29602010-06-17 19:56:20 +00001532llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, Selector Sel,
1533 bool lval) {
1534 return EmitSelector(Builder, Sel, lval);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001535}
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001536llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, const ObjCMethodDecl
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001537 *Method) {
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001538 return EmitSelector(Builder, Method->getSelector());
1539}
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001540
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00001541llvm::Constant *CGObjCMac::GetEHType(QualType T) {
Fariborz Jahanian9d96bce2011-06-22 20:21:51 +00001542 if (T->isObjCIdType() ||
1543 T->isObjCQualifiedIdType()) {
1544 return CGM.GetAddrOfRTTIDescriptor(
Douglas Gregor01a4cf12011-08-11 20:58:55 +00001545 CGM.getContext().getObjCIdRedefinitionType(), /*ForEH=*/true);
Fariborz Jahanian9d96bce2011-06-22 20:21:51 +00001546 }
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00001547 if (T->isObjCClassType() ||
1548 T->isObjCQualifiedClassType()) {
1549 return CGM.GetAddrOfRTTIDescriptor(
Douglas Gregor01a4cf12011-08-11 20:58:55 +00001550 CGM.getContext().getObjCClassRedefinitionType(), /*ForEH=*/true);
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00001551 }
1552 if (T->isObjCObjectPointerType())
1553 return CGM.GetAddrOfRTTIDescriptor(T, /*ForEH=*/true);
1554
John McCall5a180392010-07-24 00:37:23 +00001555 llvm_unreachable("asking for catch type for ObjC type in fragile runtime");
John McCall5a180392010-07-24 00:37:23 +00001556}
1557
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001558/// Generate a constant CFString object.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001559/*
1560 struct __builtin_CFString {
1561 const int *isa; // point to __CFConstantStringClassReference
1562 int flags;
1563 const char *str;
1564 long length;
1565 };
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001566*/
1567
Fariborz Jahanian33e982b2010-04-22 20:26:39 +00001568/// or Generate a constant NSString object.
1569/*
1570 struct __builtin_NSString {
1571 const int *isa; // point to __NSConstantStringClassReference
1572 const char *str;
1573 unsigned int length;
1574 };
1575*/
1576
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00001577llvm::Constant *CGObjCCommonMac::GenerateConstantString(
David Chisnall0d13f6f2010-01-23 02:40:42 +00001578 const StringLiteral *SL) {
Fariborz Jahanian33e982b2010-04-22 20:26:39 +00001579 return (CGM.getLangOptions().NoConstantCFStrings == 0 ?
1580 CGM.GetAddrOfConstantCFString(SL) :
Fariborz Jahanian4c733072010-10-19 17:19:29 +00001581 CGM.GetAddrOfConstantString(SL));
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001582}
1583
1584/// Generates a message send where the super is the receiver. This is
1585/// a message send to self with special delivery semantics indicating
1586/// which class's method should be called.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001587CodeGen::RValue
1588CGObjCMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001589 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001590 QualType ResultType,
1591 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001592 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001593 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001594 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001595 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001596 const CodeGen::CallArgList &CallArgs,
1597 const ObjCMethodDecl *Method) {
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001598 // Create and init a super structure; this is a (receiver, class)
1599 // pair we will pass to objc_msgSendSuper.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001600 llvm::Value *ObjCSuper =
John McCall604da292011-03-04 08:00:29 +00001601 CGF.CreateTempAlloca(ObjCTypes.SuperTy, "objc_super");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001602 llvm::Value *ReceiverAsObject =
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001603 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001604 CGF.Builder.CreateStore(ReceiverAsObject,
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001605 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbare8b470d2008-08-23 04:28:29 +00001606
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001607 // If this is a class message the metaclass is passed as the target.
1608 llvm::Value *Target;
1609 if (IsClassMessage) {
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001610 if (isCategoryImpl) {
1611 // Message sent to 'super' in a class method defined in a category
1612 // implementation requires an odd treatment.
1613 // If we are in a class method, we must retrieve the
1614 // _metaclass_ for the current class, pointed at by
1615 // the class's "isa" pointer. The following assumes that
1616 // isa" is the first ivar in a class (which it must be).
1617 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1618 Target = CGF.Builder.CreateStructGEP(Target, 0);
1619 Target = CGF.Builder.CreateLoad(Target);
Mike Stumpb3589f42009-07-30 22:28:39 +00001620 } else {
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001621 llvm::Value *MetaClassPtr = EmitMetaClassRef(Class);
1622 llvm::Value *SuperPtr = CGF.Builder.CreateStructGEP(MetaClassPtr, 1);
1623 llvm::Value *Super = CGF.Builder.CreateLoad(SuperPtr);
1624 Target = Super;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001625 }
Fariborz Jahanian182f2682009-11-14 02:18:31 +00001626 }
1627 else if (isCategoryImpl)
1628 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1629 else {
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00001630 llvm::Value *ClassPtr = EmitSuperClassRef(Class);
1631 ClassPtr = CGF.Builder.CreateStructGEP(ClassPtr, 1);
1632 Target = CGF.Builder.CreateLoad(ClassPtr);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001633 }
Mike Stumpf5408fe2009-05-16 07:57:57 +00001634 // FIXME: We shouldn't need to do this cast, rectify the ASTContext and
1635 // ObjCTypes types.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001636 llvm::Type *ClassTy =
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001637 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001638 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001639 CGF.Builder.CreateStore(Target,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001640 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
John McCall944c8432011-05-14 03:10:52 +00001641 return EmitMessageSend(CGF, Return, ResultType,
1642 EmitSelector(CGF.Builder, Sel),
1643 ObjCSuper, ObjCTypes.SuperPtrCTy,
1644 true, CallArgs, Method, ObjCTypes);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001645}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001646
1647/// Generate code for a message send expression.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001648CodeGen::RValue CGObjCMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001649 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001650 QualType ResultType,
1651 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001652 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001653 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001654 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001655 const ObjCMethodDecl *Method) {
John McCall944c8432011-05-14 03:10:52 +00001656 return EmitMessageSend(CGF, Return, ResultType,
1657 EmitSelector(CGF.Builder, Sel),
1658 Receiver, CGF.getContext().getObjCIdType(),
1659 false, CallArgs, Method, ObjCTypes);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00001660}
1661
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001662CodeGen::RValue
John McCall944c8432011-05-14 03:10:52 +00001663CGObjCCommonMac::EmitMessageSend(CodeGen::CodeGenFunction &CGF,
1664 ReturnValueSlot Return,
1665 QualType ResultType,
1666 llvm::Value *Sel,
1667 llvm::Value *Arg0,
1668 QualType Arg0Ty,
1669 bool IsSuper,
1670 const CallArgList &CallArgs,
1671 const ObjCMethodDecl *Method,
1672 const ObjCCommonTypesHelper &ObjCTypes) {
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001673 CallArgList ActualArgs;
Fariborz Jahaniand019d962009-04-24 21:07:43 +00001674 if (!IsSuper)
Benjamin Kramer578faa82011-09-27 21:06:10 +00001675 Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy);
Eli Friedman04c9a492011-05-02 17:57:46 +00001676 ActualArgs.add(RValue::get(Arg0), Arg0Ty);
1677 ActualArgs.add(RValue::get(Sel), CGF.getContext().getObjCSelType());
John McCallf85e1932011-06-15 23:02:42 +00001678 ActualArgs.addFrom(CallArgs);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001679
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001680 CodeGenTypes &Types = CGM.getTypes();
John McCall04a67a62010-02-05 21:31:56 +00001681 const CGFunctionInfo &FnInfo = Types.getFunctionInfo(ResultType, ActualArgs,
Rafael Espindola264ba482010-03-30 20:24:48 +00001682 FunctionType::ExtInfo());
Chris Lattner2acc6e32011-07-18 04:24:23 +00001683 llvm::FunctionType *FTy =
Daniel Dunbar67939662009-09-17 04:01:40 +00001684 Types.GetFunctionType(FnInfo, Method ? Method->isVariadic() : false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001685
Anders Carlsson7e70fb22010-06-21 20:59:55 +00001686 if (Method)
1687 assert(CGM.getContext().getCanonicalType(Method->getResultType()) ==
1688 CGM.getContext().getCanonicalType(ResultType) &&
1689 "Result type mismatch!");
1690
John McCallcba681a2011-05-14 21:12:11 +00001691 NullReturnState nullReturn;
1692
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001693 llvm::Constant *Fn = NULL;
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001694 if (CGM.ReturnTypeUsesSRet(FnInfo)) {
Fariborz Jahanian4e1524b2012-01-29 20:27:13 +00001695 if (!IsSuper) nullReturn.init(CGF, Arg0);
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001696 Fn = (ObjCABI == 2) ? ObjCTypes.getSendStretFn2(IsSuper)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001697 : ObjCTypes.getSendStretFn(IsSuper);
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001698 } else if (CGM.ReturnTypeUsesFPRet(ResultType)) {
1699 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFpretFn2(IsSuper)
1700 : ObjCTypes.getSendFpretFn(IsSuper);
Anders Carlssoneea64802011-10-31 16:27:11 +00001701 } else if (CGM.ReturnTypeUsesFP2Ret(ResultType)) {
1702 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFp2RetFn2(IsSuper)
1703 : ObjCTypes.getSendFp2retFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001704 } else {
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00001705 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFn2(IsSuper)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001706 : ObjCTypes.getSendFn(IsSuper);
Daniel Dunbar5669e572008-10-17 03:24:53 +00001707 }
Fariborz Jahanian3c267e62012-01-30 21:40:37 +00001708
1709 bool requiresnullCheck = false;
1710 if (CGM.getLangOptions().ObjCAutoRefCount && Method)
1711 for (ObjCMethodDecl::param_const_iterator i = Method->param_begin(),
1712 e = Method->param_end(); i != e; ++i) {
1713 const ParmVarDecl *ParamDecl = (*i);
1714 if (ParamDecl->hasAttr<NSConsumedAttr>()) {
1715 if (!nullReturn.NullBB)
1716 nullReturn.init(CGF, Arg0);
1717 requiresnullCheck = true;
1718 break;
1719 }
1720 }
1721
Daniel Dunbardacf9dd2010-07-14 23:39:36 +00001722 Fn = llvm::ConstantExpr::getBitCast(Fn, llvm::PointerType::getUnqual(FTy));
John McCallcba681a2011-05-14 21:12:11 +00001723 RValue rvalue = CGF.EmitCall(FnInfo, Fn, Return, ActualArgs);
Fariborz Jahanian3c267e62012-01-30 21:40:37 +00001724 return nullReturn.complete(CGF, rvalue, ResultType, CallArgs,
1725 requiresnullCheck ? Method : 0);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001726}
1727
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001728static Qualifiers::GC GetGCAttrTypeForType(ASTContext &Ctx, QualType FQT) {
1729 if (FQT.isObjCGCStrong())
1730 return Qualifiers::Strong;
1731
John McCallf85e1932011-06-15 23:02:42 +00001732 if (FQT.isObjCGCWeak() || FQT.getObjCLifetime() == Qualifiers::OCL_Weak)
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001733 return Qualifiers::Weak;
1734
1735 if (FQT->isObjCObjectPointerType() || FQT->isBlockPointerType())
1736 return Qualifiers::Strong;
1737
1738 if (const PointerType *PT = FQT->getAs<PointerType>())
1739 return GetGCAttrTypeForType(Ctx, PT->getPointeeType());
1740
1741 return Qualifiers::GCNone;
1742}
1743
John McCall6b5a61b2011-02-07 10:33:21 +00001744llvm::Constant *CGObjCCommonMac::BuildGCBlockLayout(CodeGenModule &CGM,
1745 const CGBlockInfo &blockInfo) {
Chris Lattner8b418682012-02-07 00:39:47 +00001746 llvm::Constant *nullPtr = llvm::Constant::getNullValue(CGM.Int8PtrTy);
John McCall6b5a61b2011-02-07 10:33:21 +00001747
Douglas Gregore289d812011-09-13 17:21:33 +00001748 if (CGM.getLangOptions().getGC() == LangOptions::NonGC &&
John McCallf85e1932011-06-15 23:02:42 +00001749 !CGM.getLangOptions().ObjCAutoRefCount)
John McCall6b5a61b2011-02-07 10:33:21 +00001750 return nullPtr;
1751
Fariborz Jahaniana1f024c2010-08-06 16:28:55 +00001752 bool hasUnion = false;
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001753 SkipIvars.clear();
1754 IvarsInfo.clear();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001755 unsigned WordSizeInBits = CGM.getContext().getTargetInfo().getPointerWidth(0);
1756 unsigned ByteSizeInBits = CGM.getContext().getTargetInfo().getCharWidth();
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001757
Fariborz Jahanian81979822010-09-09 00:21:45 +00001758 // __isa is the first field in block descriptor and must assume by runtime's
1759 // convention that it is GC'able.
1760 IvarsInfo.push_back(GC_IVAR(0, 1));
John McCall6b5a61b2011-02-07 10:33:21 +00001761
1762 const BlockDecl *blockDecl = blockInfo.getBlockDecl();
1763
1764 // Calculate the basic layout of the block structure.
1765 const llvm::StructLayout *layout =
1766 CGM.getTargetData().getStructLayout(blockInfo.StructureType);
1767
1768 // Ignore the optional 'this' capture: C++ objects are not assumed
1769 // to be GC'ed.
1770
1771 // Walk the captured variables.
1772 for (BlockDecl::capture_const_iterator ci = blockDecl->capture_begin(),
1773 ce = blockDecl->capture_end(); ci != ce; ++ci) {
1774 const VarDecl *variable = ci->getVariable();
1775 QualType type = variable->getType();
1776
1777 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1778
1779 // Ignore constant captures.
1780 if (capture.isConstant()) continue;
1781
1782 uint64_t fieldOffset = layout->getElementOffset(capture.getIndex());
1783
1784 // __block variables are passed by their descriptor address.
1785 if (ci->isByRef()) {
1786 IvarsInfo.push_back(GC_IVAR(fieldOffset, /*size in words*/ 1));
Fariborz Jahanianc5904b42010-09-11 01:27:29 +00001787 continue;
John McCall6b5a61b2011-02-07 10:33:21 +00001788 }
1789
1790 assert(!type->isArrayType() && "array variable should not be caught");
1791 if (const RecordType *record = type->getAs<RecordType>()) {
1792 BuildAggrIvarRecordLayout(record, fieldOffset, true, hasUnion);
Fariborz Jahaniane1a48982010-08-05 21:00:25 +00001793 continue;
1794 }
Fariborz Jahaniana1f024c2010-08-06 16:28:55 +00001795
John McCall6b5a61b2011-02-07 10:33:21 +00001796 Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), type);
1797 unsigned fieldSize = CGM.getContext().getTypeSize(type);
1798
1799 if (GCAttr == Qualifiers::Strong)
1800 IvarsInfo.push_back(GC_IVAR(fieldOffset,
1801 fieldSize / WordSizeInBits));
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001802 else if (GCAttr == Qualifiers::GCNone || GCAttr == Qualifiers::Weak)
John McCall6b5a61b2011-02-07 10:33:21 +00001803 SkipIvars.push_back(GC_IVAR(fieldOffset,
1804 fieldSize / ByteSizeInBits));
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001805 }
1806
1807 if (IvarsInfo.empty())
John McCall6b5a61b2011-02-07 10:33:21 +00001808 return nullPtr;
1809
1810 // Sort on byte position; captures might not be allocated in order,
1811 // and unions can do funny things.
1812 llvm::array_pod_sort(IvarsInfo.begin(), IvarsInfo.end());
1813 llvm::array_pod_sort(SkipIvars.begin(), SkipIvars.end());
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001814
1815 std::string BitMap;
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00001816 llvm::Constant *C = BuildIvarLayoutBitmap(BitMap);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00001817 if (CGM.getLangOptions().ObjCGCBitmapPrint) {
1818 printf("\n block variable layout for block: ");
1819 const unsigned char *s = (unsigned char*)BitMap.c_str();
1820 for (unsigned i = 0; i < BitMap.size(); i++)
1821 if (!(s[i] & 0xf0))
1822 printf("0x0%x%s", s[i], s[i] != 0 ? ", " : "");
1823 else
1824 printf("0x%x%s", s[i], s[i] != 0 ? ", " : "");
1825 printf("\n");
1826 }
1827
1828 return C;
Fariborz Jahanian89ecd412010-08-04 16:57:49 +00001829}
1830
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001831llvm::Value *CGObjCMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001832 const ObjCProtocolDecl *PD) {
Daniel Dunbarc67876d2008-09-04 04:33:15 +00001833 // FIXME: I don't understand why gcc generates this, or where it is
Mike Stumpf5408fe2009-05-16 07:57:57 +00001834 // resolved. Investigate. Its also wasteful to look this up over and over.
Daniel Dunbarc67876d2008-09-04 04:33:15 +00001835 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1836
Owen Anderson3c4972d2009-07-29 18:54:39 +00001837 return llvm::ConstantExpr::getBitCast(GetProtocolRef(PD),
Douglas Gregor4c86fdb2012-01-17 18:36:30 +00001838 ObjCTypes.getExternalProtocolPtrTy());
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001839}
1840
Fariborz Jahanianda320092009-01-29 19:24:30 +00001841void CGObjCCommonMac::GenerateProtocol(const ObjCProtocolDecl *PD) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00001842 // FIXME: We shouldn't need this, the protocol decl should contain enough
1843 // information to tell us whether this was a declaration or a definition.
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001844 DefinedProtocols.insert(PD->getIdentifier());
1845
1846 // If we have generated a forward reference to this protocol, emit
1847 // it now. Otherwise do nothing, the protocol objects are lazily
1848 // emitted.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001849 if (Protocols.count(PD->getIdentifier()))
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001850 GetOrEmitProtocol(PD);
1851}
1852
Fariborz Jahanianda320092009-01-29 19:24:30 +00001853llvm::Constant *CGObjCCommonMac::GetProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001854 if (DefinedProtocols.count(PD->getIdentifier()))
1855 return GetOrEmitProtocol(PD);
Douglas Gregorf968d832011-05-27 01:19:52 +00001856
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001857 return GetOrEmitProtocolRef(PD);
1858}
1859
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001860/*
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001861// APPLE LOCAL radar 4585769 - Objective-C 1.0 extensions
1862struct _objc_protocol {
1863struct _objc_protocol_extension *isa;
1864char *protocol_name;
1865struct _objc_protocol_list *protocol_list;
1866struct _objc__method_prototype_list *instance_methods;
1867struct _objc__method_prototype_list *class_methods
1868};
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001869
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001870See EmitProtocolExtension().
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001871*/
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001872llvm::Constant *CGObjCMac::GetOrEmitProtocol(const ObjCProtocolDecl *PD) {
1873 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1874
1875 // Early exit if a defining object has already been generated.
1876 if (Entry && Entry->hasInitializer())
1877 return Entry;
1878
Douglas Gregor1d784b22012-01-01 19:51:50 +00001879 // Use the protocol definition, if there is one.
1880 if (const ObjCProtocolDecl *Def = PD->getDefinition())
1881 PD = Def;
1882
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001883 // FIXME: I don't understand why gcc generates this, or where it is
Mike Stumpf5408fe2009-05-16 07:57:57 +00001884 // resolved. Investigate. Its also wasteful to look this up over and over.
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001885 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1886
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001887 // Construct method lists.
1888 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
1889 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Bob Wilsondc8dab62011-11-30 01:57:58 +00001890 std::vector<llvm::Constant*> MethodTypesExt, OptMethodTypesExt;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001891 for (ObjCProtocolDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001892 i = PD->instmeth_begin(), e = PD->instmeth_end(); i != e; ++i) {
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001893 ObjCMethodDecl *MD = *i;
1894 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Douglas Gregorf968d832011-05-27 01:19:52 +00001895 if (!C)
1896 return GetOrEmitProtocolRef(PD);
1897
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001898 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1899 OptInstanceMethods.push_back(C);
Bob Wilsondc8dab62011-11-30 01:57:58 +00001900 OptMethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001901 } else {
1902 InstanceMethods.push_back(C);
Bob Wilsondc8dab62011-11-30 01:57:58 +00001903 MethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001904 }
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001905 }
1906
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001907 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001908 i = PD->classmeth_begin(), e = PD->classmeth_end(); i != e; ++i) {
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001909 ObjCMethodDecl *MD = *i;
1910 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Douglas Gregorf968d832011-05-27 01:19:52 +00001911 if (!C)
1912 return GetOrEmitProtocolRef(PD);
1913
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001914 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1915 OptClassMethods.push_back(C);
Bob Wilsondc8dab62011-11-30 01:57:58 +00001916 OptMethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001917 } else {
1918 ClassMethods.push_back(C);
Bob Wilsondc8dab62011-11-30 01:57:58 +00001919 MethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001920 }
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001921 }
1922
Bob Wilsondc8dab62011-11-30 01:57:58 +00001923 MethodTypesExt.insert(MethodTypesExt.end(),
1924 OptMethodTypesExt.begin(), OptMethodTypesExt.end());
1925
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00001926 llvm::Constant *Values[] = {
Bob Wilsondc8dab62011-11-30 01:57:58 +00001927 EmitProtocolExtension(PD, OptInstanceMethods, OptClassMethods,
1928 MethodTypesExt),
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00001929 GetClassName(PD->getIdentifier()),
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001930 EmitProtocolList("\01L_OBJC_PROTOCOL_REFS_" + PD->getName(),
Daniel Dunbardbc933702008-08-21 21:57:41 +00001931 PD->protocol_begin(),
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00001932 PD->protocol_end()),
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001933 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001934 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00001935 InstanceMethods),
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001936 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001937 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00001938 ClassMethods)
1939 };
Owen Anderson08e25242009-07-27 22:29:56 +00001940 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001941 Values);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001942
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001943 if (Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001944 // Already created, fix the linkage and update the initializer.
1945 Entry->setLinkage(llvm::GlobalValue::InternalLinkage);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001946 Entry->setInitializer(Init);
1947 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001948 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00001949 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001950 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001951 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001952 "\01L_OBJC_PROTOCOL_" + PD->getName());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001953 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001954 // FIXME: Is this necessary? Why only for protocol?
1955 Entry->setAlignment(4);
1956 }
Chris Lattnerad64e022009-07-17 23:57:13 +00001957 CGM.AddUsedGlobal(Entry);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001958
1959 return Entry;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001960}
1961
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001962llvm::Constant *CGObjCMac::GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001963 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1964
1965 if (!Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001966 // We use the initializer as a marker of whether this is a forward
1967 // reference or not. At module finalization we add the empty
1968 // contents for protocols which were referenced but never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001969 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00001970 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001971 llvm::GlobalValue::ExternalLinkage,
1972 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00001973 "\01L_OBJC_PROTOCOL_" + PD->getName());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001974 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001975 // FIXME: Is this necessary? Why only for protocol?
1976 Entry->setAlignment(4);
1977 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001978
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001979 return Entry;
1980}
1981
1982/*
1983 struct _objc_protocol_extension {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001984 uint32_t size;
1985 struct objc_method_description_list *optional_instance_methods;
1986 struct objc_method_description_list *optional_class_methods;
1987 struct objc_property_list *instance_properties;
Bob Wilsondc8dab62011-11-30 01:57:58 +00001988 const char ** extendedMethodTypes;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001989 };
1990*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001991llvm::Constant *
1992CGObjCMac::EmitProtocolExtension(const ObjCProtocolDecl *PD,
1993 const ConstantVector &OptInstanceMethods,
Bob Wilsondc8dab62011-11-30 01:57:58 +00001994 const ConstantVector &OptClassMethods,
1995 const ConstantVector &MethodTypesExt) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00001996 uint64_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00001997 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolExtensionTy);
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00001998 llvm::Constant *Values[] = {
1999 llvm::ConstantInt::get(ObjCTypes.IntTy, Size),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002000 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002001 + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002002 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002003 OptInstanceMethods),
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002004 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_OPT_" + PD->getName(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002005 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002006 OptClassMethods),
2007 EmitPropertyList("\01L_OBJC_$_PROP_PROTO_LIST_" + PD->getName(), 0, PD,
Bob Wilsondc8dab62011-11-30 01:57:58 +00002008 ObjCTypes),
2009 EmitProtocolMethodTypes("\01L_OBJC_PROTOCOL_METHOD_TYPES_" + PD->getName(),
2010 MethodTypesExt, ObjCTypes)
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002011 };
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002012
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002013 // Return null if no extension bits are used.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002014 if (Values[1]->isNullValue() && Values[2]->isNullValue() &&
Bob Wilsondc8dab62011-11-30 01:57:58 +00002015 Values[3]->isNullValue() && Values[4]->isNullValue())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002016 return llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002017
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002018 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00002019 llvm::ConstantStruct::get(ObjCTypes.ProtocolExtensionTy, Values);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002020
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002021 // No special section, but goes in llvm.used
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002022 return CreateMetadataVar("\01L_OBJC_PROTOCOLEXT_" + PD->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002023 Init,
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002024 0, 0, true);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002025}
2026
2027/*
2028 struct objc_protocol_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002029 struct objc_protocol_list *next;
2030 long count;
2031 Protocol *list[];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002032 };
2033*/
Daniel Dunbardbc933702008-08-21 21:57:41 +00002034llvm::Constant *
Chris Lattner5f9e2722011-07-23 10:55:15 +00002035CGObjCMac::EmitProtocolList(Twine Name,
Daniel Dunbardbc933702008-08-21 21:57:41 +00002036 ObjCProtocolDecl::protocol_iterator begin,
2037 ObjCProtocolDecl::protocol_iterator end) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002038 std::vector<llvm::Constant*> ProtocolRefs;
2039
Daniel Dunbardbc933702008-08-21 21:57:41 +00002040 for (; begin != end; ++begin)
2041 ProtocolRefs.push_back(GetProtocolRef(*begin));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002042
2043 // Just return null for empty protocol lists
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002044 if (ProtocolRefs.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002045 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002046
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002047 // This list is null terminated.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002048 ProtocolRefs.push_back(llvm::Constant::getNullValue(ObjCTypes.ProtocolPtrTy));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002049
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002050 llvm::Constant *Values[3];
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002051 // This field is only used by the runtime.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002052 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002053 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002054 ProtocolRefs.size() - 1);
2055 Values[2] =
2056 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.ProtocolPtrTy,
2057 ProtocolRefs.size()),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002058 ProtocolRefs);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002059
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002060 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002061 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002062 CreateMetadataVar(Name, Init, "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002063 4, false);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002064 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002065}
2066
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002067void CGObjCCommonMac::PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*, 16> &PropertySet,
2068 std::vector<llvm::Constant*> &Properties,
2069 const Decl *Container,
2070 const ObjCProtocolDecl *PROTO,
2071 const ObjCCommonTypesHelper &ObjCTypes) {
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002072 for (ObjCProtocolDecl::protocol_iterator P = PROTO->protocol_begin(),
2073 E = PROTO->protocol_end(); P != E; ++P)
2074 PushProtocolProperties(PropertySet, Properties, Container, (*P), ObjCTypes);
2075 for (ObjCContainerDecl::prop_iterator I = PROTO->prop_begin(),
2076 E = PROTO->prop_end(); I != E; ++I) {
2077 const ObjCPropertyDecl *PD = *I;
2078 if (!PropertySet.insert(PD->getIdentifier()))
2079 continue;
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002080 llvm::Constant *Prop[] = {
2081 GetPropertyName(PD->getIdentifier()),
2082 GetPropertyTypeString(PD, Container)
2083 };
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002084 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy, Prop));
2085 }
2086}
2087
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002088/*
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002089 struct _objc_property {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002090 const char * const name;
2091 const char * const attributes;
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002092 };
2093
2094 struct _objc_property_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002095 uint32_t entsize; // sizeof (struct _objc_property)
2096 uint32_t prop_count;
2097 struct _objc_property[prop_count];
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002098 };
2099*/
Chris Lattner5f9e2722011-07-23 10:55:15 +00002100llvm::Constant *CGObjCCommonMac::EmitPropertyList(Twine Name,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002101 const Decl *Container,
2102 const ObjCContainerDecl *OCD,
2103 const ObjCCommonTypesHelper &ObjCTypes) {
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002104 std::vector<llvm::Constant*> Properties;
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002105 llvm::SmallPtrSet<const IdentifierInfo*, 16> PropertySet;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002106 for (ObjCContainerDecl::prop_iterator I = OCD->prop_begin(),
2107 E = OCD->prop_end(); I != E; ++I) {
Steve Naroff93983f82009-01-11 12:47:58 +00002108 const ObjCPropertyDecl *PD = *I;
Fariborz Jahanian191dcd72009-12-12 21:26:21 +00002109 PropertySet.insert(PD->getIdentifier());
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002110 llvm::Constant *Prop[] = {
2111 GetPropertyName(PD->getIdentifier()),
2112 GetPropertyTypeString(PD, Container)
2113 };
Owen Anderson08e25242009-07-27 22:29:56 +00002114 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002115 Prop));
2116 }
Fariborz Jahanian6afbdf52010-06-22 16:33:55 +00002117 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) {
Ted Kremenek53b94412010-09-01 01:21:15 +00002118 for (ObjCInterfaceDecl::all_protocol_iterator
2119 P = OID->all_referenced_protocol_begin(),
2120 E = OID->all_referenced_protocol_end(); P != E; ++P)
Fariborz Jahanian6afbdf52010-06-22 16:33:55 +00002121 PushProtocolProperties(PropertySet, Properties, Container, (*P),
2122 ObjCTypes);
2123 }
2124 else if (const ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(OCD)) {
2125 for (ObjCCategoryDecl::protocol_iterator P = CD->protocol_begin(),
2126 E = CD->protocol_end(); P != E; ++P)
2127 PushProtocolProperties(PropertySet, Properties, Container, (*P),
2128 ObjCTypes);
2129 }
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002130
2131 // Return null for empty list.
2132 if (Properties.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002133 return llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002134
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002135 unsigned PropertySize =
Duncan Sands9408c452009-05-09 07:08:47 +00002136 CGM.getTargetData().getTypeAllocSize(ObjCTypes.PropertyTy);
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002137 llvm::Constant *Values[3];
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002138 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, PropertySize);
2139 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Properties.size());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002140 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.PropertyTy,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002141 Properties.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002142 Values[2] = llvm::ConstantArray::get(AT, Properties);
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002143 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002144
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002145 llvm::GlobalVariable *GV =
2146 CreateMetadataVar(Name, Init,
2147 (ObjCABI == 2) ? "__DATA, __objc_const" :
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002148 "__OBJC,__property,regular,no_dead_strip",
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002149 (ObjCABI == 2) ? 8 : 4,
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002150 true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002151 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.PropertyListPtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002152}
2153
Bob Wilsondc8dab62011-11-30 01:57:58 +00002154llvm::Constant *CGObjCCommonMac::EmitProtocolMethodTypes(Twine Name,
2155 const ConstantVector &MethodTypes,
2156 const ObjCCommonTypesHelper &ObjCTypes) {
2157 // Return null for empty list.
2158 if (MethodTypes.empty())
2159 return llvm::Constant::getNullValue(ObjCTypes.Int8PtrPtrTy);
2160
2161 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
2162 MethodTypes.size());
2163 llvm::Constant *Init = llvm::ConstantArray::get(AT, MethodTypes);
2164
2165 llvm::GlobalVariable *GV =
2166 CreateMetadataVar(Name, Init,
2167 (ObjCABI == 2) ? "__DATA, __objc_const" : 0,
2168 (ObjCABI == 2) ? 8 : 4,
2169 true);
2170 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.Int8PtrPtrTy);
2171}
2172
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002173/*
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002174 struct objc_method_description_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002175 int count;
2176 struct objc_method_description list[];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002177 };
2178*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002179llvm::Constant *
2180CGObjCMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002181 llvm::Constant *Desc[] = {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002182 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002183 ObjCTypes.SelectorPtrTy),
2184 GetMethodVarType(MD)
2185 };
Douglas Gregorf968d832011-05-27 01:19:52 +00002186 if (!Desc[1])
2187 return 0;
2188
Owen Anderson08e25242009-07-27 22:29:56 +00002189 return llvm::ConstantStruct::get(ObjCTypes.MethodDescriptionTy,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002190 Desc);
2191}
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002192
Chris Lattner5f9e2722011-07-23 10:55:15 +00002193llvm::Constant *CGObjCMac::EmitMethodDescList(Twine Name,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002194 const char *Section,
2195 const ConstantVector &Methods) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002196 // Return null for empty list.
2197 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002198 return llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002199
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002200 llvm::Constant *Values[2];
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002201 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002202 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodDescriptionTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002203 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002204 Values[1] = llvm::ConstantArray::get(AT, Methods);
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002205 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002206
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002207 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002208 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002209 ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002210}
2211
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002212/*
2213 struct _objc_category {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002214 char *category_name;
2215 char *class_name;
2216 struct _objc_method_list *instance_methods;
2217 struct _objc_method_list *class_methods;
2218 struct _objc_protocol_list *protocols;
2219 uint32_t size; // <rdar://4585769>
2220 struct _objc_property_list *instance_properties;
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002221 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002222*/
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002223void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Duncan Sands9408c452009-05-09 07:08:47 +00002224 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.CategoryTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002225
Mike Stumpf5408fe2009-05-16 07:57:57 +00002226 // FIXME: This is poor design, the OCD should have a pointer to the category
2227 // decl. Additionally, note that Category can be null for the @implementation
2228 // w/o an @interface case. Sema should just create one for us as it does for
2229 // @implementation so everyone else can live life under a clear blue sky.
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002230 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002231 const ObjCCategoryDecl *Category =
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002232 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002233
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002234 SmallString<256> ExtName;
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002235 llvm::raw_svector_ostream(ExtName) << Interface->getName() << '_'
2236 << OCD->getName();
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002237
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002238 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002239 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002240 i = OCD->instmeth_begin(), e = OCD->instmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002241 // Instance methods should always be defined.
2242 InstanceMethods.push_back(GetMethodConstant(*i));
2243 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002244 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002245 i = OCD->classmeth_begin(), e = OCD->classmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002246 // Class methods should always be defined.
2247 ClassMethods.push_back(GetMethodConstant(*i));
2248 }
2249
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002250 llvm::Constant *Values[7];
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002251 Values[0] = GetClassName(OCD->getIdentifier());
2252 Values[1] = GetClassName(Interface->getIdentifier());
Fariborz Jahanian679cd7f2009-04-29 20:40:05 +00002253 LazySymbols.insert(Interface->getIdentifier());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002254 Values[2] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002255 EmitMethodList("\01L_OBJC_CATEGORY_INSTANCE_METHODS_" + ExtName.str(),
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002256 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002257 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002258 Values[3] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002259 EmitMethodList("\01L_OBJC_CATEGORY_CLASS_METHODS_" + ExtName.str(),
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002260 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002261 ClassMethods);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002262 if (Category) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002263 Values[4] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002264 EmitProtocolList("\01L_OBJC_CATEGORY_PROTOCOLS_" + ExtName.str(),
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002265 Category->protocol_begin(),
2266 Category->protocol_end());
2267 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002268 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002269 }
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002270 Values[5] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002271
2272 // If there is no category @interface then there can be no properties.
2273 if (Category) {
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002274 Values[6] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00002275 OCD, Category, ObjCTypes);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002276 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002277 Values[6] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Daniel Dunbar86e2f402008-08-26 23:03:11 +00002278 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002279
Owen Anderson08e25242009-07-27 22:29:56 +00002280 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.CategoryTy,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002281 Values);
2282
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002283 llvm::GlobalVariable *GV =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002284 CreateMetadataVar("\01L_OBJC_CATEGORY_" + ExtName.str(), Init,
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002285 "__OBJC,__category,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002286 4, true);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002287 DefinedCategories.push_back(GV);
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00002288 DefinedCategoryNames.insert(ExtName.str());
Fariborz Jahanian64089ce2011-04-22 22:02:28 +00002289 // method definition entries must be clear for next implementation.
2290 MethodDefinitions.clear();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002291}
2292
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002293// FIXME: Get from somewhere?
2294enum ClassFlags {
2295 eClassFlags_Factory = 0x00001,
2296 eClassFlags_Meta = 0x00002,
2297 // <rdr://5142207>
2298 eClassFlags_HasCXXStructors = 0x02000,
2299 eClassFlags_Hidden = 0x20000,
2300 eClassFlags_ABI2_Hidden = 0x00010,
2301 eClassFlags_ABI2_HasCXXStructors = 0x00004 // <rdr://4923634>
2302};
2303
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002304/*
2305 struct _objc_class {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002306 Class isa;
2307 Class super_class;
2308 const char *name;
2309 long version;
2310 long info;
2311 long instance_size;
2312 struct _objc_ivar_list *ivars;
2313 struct _objc_method_list *methods;
2314 struct _objc_cache *cache;
2315 struct _objc_protocol_list *protocols;
2316 // Objective-C 1.0 extensions (<rdr://4585769>)
2317 const char *ivar_layout;
2318 struct _objc_class_ext *ext;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002319 };
2320
2321 See EmitClassExtension();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002322*/
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002323void CGObjCMac::GenerateClass(const ObjCImplementationDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002324 DefinedSymbols.insert(ID->getIdentifier());
2325
Chris Lattner8ec03f52008-11-24 03:54:41 +00002326 std::string ClassName = ID->getNameAsString();
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002327 // FIXME: Gross
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002328 ObjCInterfaceDecl *Interface =
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002329 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002330 llvm::Constant *Protocols =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002331 EmitProtocolList("\01L_OBJC_CLASS_PROTOCOLS_" + ID->getName(),
Ted Kremenek53b94412010-09-01 01:21:15 +00002332 Interface->all_referenced_protocol_begin(),
2333 Interface->all_referenced_protocol_end());
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002334 unsigned Flags = eClassFlags_Factory;
John McCallf85e1932011-06-15 23:02:42 +00002335 if (ID->hasCXXStructors())
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00002336 Flags |= eClassFlags_HasCXXStructors;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002337 unsigned Size =
Ken Dyck5f022d82011-02-09 01:59:34 +00002338 CGM.getContext().getASTObjCImplementationLayout(ID).getSize().getQuantity();
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002339
2340 // FIXME: Set CXX-structors flag.
John McCall1fb0caa2010-10-22 21:05:15 +00002341 if (ID->getClassInterface()->getVisibility() == HiddenVisibility)
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002342 Flags |= eClassFlags_Hidden;
2343
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002344 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002345 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002346 i = ID->instmeth_begin(), e = ID->instmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002347 // Instance methods should always be defined.
2348 InstanceMethods.push_back(GetMethodConstant(*i));
2349 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002350 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002351 i = ID->classmeth_begin(), e = ID->classmeth_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002352 // Class methods should always be defined.
2353 ClassMethods.push_back(GetMethodConstant(*i));
2354 }
2355
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002356 for (ObjCImplementationDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002357 i = ID->propimpl_begin(), e = ID->propimpl_end(); i != e; ++i) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002358 ObjCPropertyImplDecl *PID = *i;
2359
2360 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
2361 ObjCPropertyDecl *PD = PID->getPropertyDecl();
2362
2363 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
2364 if (llvm::Constant *C = GetMethodConstant(MD))
2365 InstanceMethods.push_back(C);
2366 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
2367 if (llvm::Constant *C = GetMethodConstant(MD))
2368 InstanceMethods.push_back(C);
2369 }
2370 }
2371
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002372 llvm::Constant *Values[12];
Daniel Dunbar5384b092009-05-03 08:56:52 +00002373 Values[ 0] = EmitMetaClass(ID, Protocols, ClassMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002374 if (ObjCInterfaceDecl *Super = Interface->getSuperClass()) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002375 // Record a reference to the super class.
2376 LazySymbols.insert(Super->getIdentifier());
2377
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002378 Values[ 1] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002379 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002380 ObjCTypes.ClassPtrTy);
2381 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002382 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002383 }
2384 Values[ 2] = GetClassName(ID->getIdentifier());
2385 // Version is always 0.
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002386 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2387 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2388 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002389 Values[ 6] = EmitIvarList(ID, false);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002390 Values[ 7] =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002391 EmitMethodList("\01L_OBJC_INSTANCE_METHODS_" + ID->getName(),
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002392 "__OBJC,__inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002393 InstanceMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002394 // cache is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002395 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002396 Values[ 9] = Protocols;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002397 Values[10] = BuildIvarLayout(ID, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002398 Values[11] = EmitClassExtension(ID);
Owen Anderson08e25242009-07-27 22:29:56 +00002399 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002400 Values);
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00002401 std::string Name("\01L_OBJC_CLASS_");
2402 Name += ClassName;
2403 const char *Section = "__OBJC,__class,regular,no_dead_strip";
2404 // Check for a forward reference.
2405 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2406 if (GV) {
2407 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2408 "Forward metaclass reference has incorrect type.");
2409 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2410 GV->setInitializer(Init);
2411 GV->setSection(Section);
2412 GV->setAlignment(4);
2413 CGM.AddUsedGlobal(GV);
2414 }
2415 else
2416 GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002417 DefinedClasses.push_back(GV);
Fariborz Jahanian64089ce2011-04-22 22:02:28 +00002418 // method definition entries must be clear for next implementation.
2419 MethodDefinitions.clear();
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002420}
2421
2422llvm::Constant *CGObjCMac::EmitMetaClass(const ObjCImplementationDecl *ID,
2423 llvm::Constant *Protocols,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002424 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002425 unsigned Flags = eClassFlags_Meta;
Duncan Sands9408c452009-05-09 07:08:47 +00002426 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002427
John McCall1fb0caa2010-10-22 21:05:15 +00002428 if (ID->getClassInterface()->getVisibility() == HiddenVisibility)
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002429 Flags |= eClassFlags_Hidden;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002430
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002431 llvm::Constant *Values[12];
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002432 // The isa for the metaclass is the root of the hierarchy.
2433 const ObjCInterfaceDecl *Root = ID->getClassInterface();
2434 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
2435 Root = Super;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002436 Values[ 0] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002437 llvm::ConstantExpr::getBitCast(GetClassName(Root->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002438 ObjCTypes.ClassPtrTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002439 // The super class for the metaclass is emitted as the name of the
2440 // super class. The runtime fixes this up to point to the
2441 // *metaclass* for the super class.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002442 if (ObjCInterfaceDecl *Super = ID->getClassInterface()->getSuperClass()) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002443 Values[ 1] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00002444 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002445 ObjCTypes.ClassPtrTy);
2446 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00002447 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002448 }
2449 Values[ 2] = GetClassName(ID->getIdentifier());
2450 // Version is always 0.
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002451 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2452 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2453 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002454 Values[ 6] = EmitIvarList(ID, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002455 Values[ 7] =
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002456 EmitMethodList("\01L_OBJC_CLASS_METHODS_" + ID->getNameAsString(),
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002457 "__OBJC,__cls_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002458 Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002459 // cache is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002460 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002461 Values[ 9] = Protocols;
2462 // ivar_layout for metaclass is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002463 Values[10] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002464 // The class extension is always unused for metaclasses.
Owen Andersonc9c88b42009-07-31 20:28:54 +00002465 Values[11] = llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00002466 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002467 Values);
2468
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002469 std::string Name("\01L_OBJC_METACLASS_");
Chris Lattner8ec03f52008-11-24 03:54:41 +00002470 Name += ID->getNameAsCString();
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002471
2472 // Check for a forward reference.
2473 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2474 if (GV) {
2475 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2476 "Forward metaclass reference has incorrect type.");
2477 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2478 GV->setInitializer(Init);
2479 } else {
Owen Anderson1c431b32009-07-08 19:05:04 +00002480 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002481 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +00002482 Init, Name);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002483 }
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002484 GV->setSection("__OBJC,__meta_class,regular,no_dead_strip");
Daniel Dunbar58a29122009-03-09 22:18:41 +00002485 GV->setAlignment(4);
Chris Lattnerad64e022009-07-17 23:57:13 +00002486 CGM.AddUsedGlobal(GV);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002487
2488 return GV;
2489}
2490
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002491llvm::Constant *CGObjCMac::EmitMetaClassRef(const ObjCInterfaceDecl *ID) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002492 std::string Name = "\01L_OBJC_METACLASS_" + ID->getNameAsString();
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002493
Mike Stumpf5408fe2009-05-16 07:57:57 +00002494 // FIXME: Should we look these up somewhere other than the module. Its a bit
2495 // silly since we only generate these while processing an implementation, so
2496 // exactly one pointer would work if know when we entered/exitted an
2497 // implementation block.
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002498
2499 // Check for an existing forward reference.
Fariborz Jahanianb0d27942009-01-07 20:11:22 +00002500 // Previously, metaclass with internal linkage may have been defined.
2501 // pass 'true' as 2nd argument so it is returned.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002502 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
2503 true)) {
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002504 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2505 "Forward metaclass reference has incorrect type.");
2506 return GV;
2507 } else {
2508 // Generate as an external reference to keep a consistent
2509 // module. This will be patched up when we emit the metaclass.
Owen Anderson1c431b32009-07-08 19:05:04 +00002510 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002511 llvm::GlobalValue::ExternalLinkage,
2512 0,
Owen Anderson1c431b32009-07-08 19:05:04 +00002513 Name);
Daniel Dunbarf56f1912008-08-25 08:19:24 +00002514 }
2515}
2516
Fariborz Jahanianb0069ee2009-11-12 20:14:24 +00002517llvm::Value *CGObjCMac::EmitSuperClassRef(const ObjCInterfaceDecl *ID) {
2518 std::string Name = "\01L_OBJC_CLASS_" + ID->getNameAsString();
2519
2520 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
2521 true)) {
2522 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2523 "Forward class metadata reference has incorrect type.");
2524 return GV;
2525 } else {
2526 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
2527 llvm::GlobalValue::ExternalLinkage,
2528 0,
2529 Name);
2530 }
2531}
2532
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002533/*
2534 struct objc_class_ext {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002535 uint32_t size;
2536 const char *weak_ivar_layout;
2537 struct _objc_property_list *properties;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002538 };
2539*/
2540llvm::Constant *
2541CGObjCMac::EmitClassExtension(const ObjCImplementationDecl *ID) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002542 uint64_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00002543 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassExtensionTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002544
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002545 llvm::Constant *Values[3];
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002546 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanianc71303d2009-04-22 23:00:43 +00002547 Values[1] = BuildIvarLayout(ID, false);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002548 Values[2] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getName(),
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00002549 ID, ID->getClassInterface(), ObjCTypes);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002550
2551 // Return null if no extension bits are used.
2552 if (Values[1]->isNullValue() && Values[2]->isNullValue())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002553 return llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002554
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002555 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00002556 llvm::ConstantStruct::get(ObjCTypes.ClassExtensionTy, Values);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002557 return CreateMetadataVar("\01L_OBJC_CLASSEXT_" + ID->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002558 Init, "__OBJC,__class_ext,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002559 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002560}
2561
2562/*
2563 struct objc_ivar {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002564 char *ivar_name;
2565 char *ivar_type;
2566 int ivar_offset;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002567 };
2568
2569 struct objc_ivar_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002570 int ivar_count;
2571 struct objc_ivar list[count];
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002572 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002573*/
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002574llvm::Constant *CGObjCMac::EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanian46b86c62009-01-28 19:12:34 +00002575 bool ForClass) {
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002576 std::vector<llvm::Constant*> Ivars;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002577
2578 // When emitting the root class GCC emits ivar entries for the
2579 // actual class structure. It is not clear if we need to follow this
2580 // behavior; for now lets try and get away with not doing it. If so,
2581 // the cleanest solution would be to make up an ObjCInterfaceDecl
2582 // for the class.
2583 if (ForClass)
Owen Andersonc9c88b42009-07-31 20:28:54 +00002584 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002585
Jordy Rosedb8264e2011-07-22 02:08:32 +00002586 const ObjCInterfaceDecl *OID = ID->getClassInterface();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002587
Jordy Rosedb8264e2011-07-22 02:08:32 +00002588 for (const ObjCIvarDecl *IVD = OID->all_declared_ivar_begin();
Fariborz Jahanianbf9eb882011-06-28 18:05:25 +00002589 IVD; IVD = IVD->getNextIvar()) {
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00002590 // Ignore unnamed bit-fields.
2591 if (!IVD->getDeclName())
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002592 continue;
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002593 llvm::Constant *Ivar[] = {
2594 GetMethodVarName(IVD->getIdentifier()),
2595 GetMethodVarType(IVD),
2596 llvm::ConstantInt::get(ObjCTypes.IntTy,
2597 ComputeIvarBaseOffset(CGM, OID, IVD))
2598 };
Owen Anderson08e25242009-07-27 22:29:56 +00002599 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarTy, Ivar));
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002600 }
2601
2602 // Return null for empty list.
2603 if (Ivars.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002604 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002605
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002606 llvm::Constant *Values[2];
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002607 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00002608 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002609 Ivars.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002610 Values[1] = llvm::ConstantArray::get(AT, Ivars);
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002611 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002612
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002613 llvm::GlobalVariable *GV;
2614 if (ForClass)
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002615 GV = CreateMetadataVar("\01L_OBJC_CLASS_VARIABLES_" + ID->getName(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002616 Init, "__OBJC,__class_vars,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00002617 4, true);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002618 else
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00002619 GV = CreateMetadataVar("\01L_OBJC_INSTANCE_VARIABLES_" + ID->getName(),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00002620 Init, "__OBJC,__instance_vars,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002621 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00002622 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002623}
2624
2625/*
2626 struct objc_method {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002627 SEL method_name;
2628 char *method_types;
2629 void *method;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002630 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002631
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002632 struct objc_method_list {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002633 struct objc_method_list *obsolete;
2634 int count;
2635 struct objc_method methods_list[count];
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002636 };
2637*/
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002638
2639/// GetMethodConstant - Return a struct objc_method constant for the
2640/// given method if it has been defined. The result is null if the
2641/// method has not been defined. The return value has type MethodPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002642llvm::Constant *CGObjCMac::GetMethodConstant(const ObjCMethodDecl *MD) {
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +00002643 llvm::Function *Fn = GetMethodDefinition(MD);
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002644 if (!Fn)
2645 return 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002646
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002647 llvm::Constant *Method[] = {
Owen Anderson3c4972d2009-07-29 18:54:39 +00002648 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00002649 ObjCTypes.SelectorPtrTy),
2650 GetMethodVarType(MD),
2651 llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy)
2652 };
Owen Anderson08e25242009-07-27 22:29:56 +00002653 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002654}
2655
Chris Lattner5f9e2722011-07-23 10:55:15 +00002656llvm::Constant *CGObjCMac::EmitMethodList(Twine Name,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002657 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00002658 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002659 // Return null for empty list.
2660 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00002661 return llvm::Constant::getNullValue(ObjCTypes.MethodListPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002662
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002663 llvm::Constant *Values[3];
Owen Andersonc9c88b42009-07-31 20:28:54 +00002664 Values[0] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002665 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00002666 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002667 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00002668 Values[2] = llvm::ConstantArray::get(AT, Methods);
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002669 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002670
Daniel Dunbar0bf21992009-04-15 02:56:18 +00002671 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002672 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.MethodListPtrTy);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002673}
2674
Fariborz Jahanian493dab72009-01-26 21:38:32 +00002675llvm::Function *CGObjCCommonMac::GenerateMethod(const ObjCMethodDecl *OMD,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002676 const ObjCContainerDecl *CD) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002677 SmallString<256> Name;
Fariborz Jahanian679a5022009-01-10 21:06:09 +00002678 GetNameForMethod(OMD, CD, Name);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002679
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002680 CodeGenTypes &Types = CGM.getTypes();
Chris Lattner2acc6e32011-07-18 04:24:23 +00002681 llvm::FunctionType *MethodTy =
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002682 Types.GetFunctionType(Types.getFunctionInfo(OMD), OMD->isVariadic());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002683 llvm::Function *Method =
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00002684 llvm::Function::Create(MethodTy,
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002685 llvm::GlobalValue::InternalLinkage,
Daniel Dunbarc575ce72009-10-19 01:21:19 +00002686 Name.str(),
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002687 &CGM.getModule());
Daniel Dunbarc45ef602008-08-26 21:51:14 +00002688 MethodDefinitions.insert(std::make_pair(OMD, Method));
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002689
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002690 return Method;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002691}
2692
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002693llvm::GlobalVariable *
Chris Lattner5f9e2722011-07-23 10:55:15 +00002694CGObjCCommonMac::CreateMetadataVar(Twine Name,
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002695 llvm::Constant *Init,
2696 const char *Section,
Daniel Dunbar35bd7632009-03-09 20:50:13 +00002697 unsigned Align,
2698 bool AddToUsed) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00002699 llvm::Type *Ty = Init->getType();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002700 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00002701 new llvm::GlobalVariable(CGM.getModule(), Ty, false,
Chris Lattnerad64e022009-07-17 23:57:13 +00002702 llvm::GlobalValue::InternalLinkage, Init, Name);
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002703 if (Section)
2704 GV->setSection(Section);
Daniel Dunbar35bd7632009-03-09 20:50:13 +00002705 if (Align)
2706 GV->setAlignment(Align);
2707 if (AddToUsed)
Chris Lattnerad64e022009-07-17 23:57:13 +00002708 CGM.AddUsedGlobal(GV);
Daniel Dunbarfd65d372009-03-09 20:09:19 +00002709 return GV;
2710}
2711
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002712llvm::Function *CGObjCMac::ModuleInitFunction() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002713 // Abuse this interface function as a place to finalize.
2714 FinishModule();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002715 return NULL;
2716}
2717
Chris Lattner74391b42009-03-22 21:03:39 +00002718llvm::Constant *CGObjCMac::GetPropertyGetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002719 return ObjCTypes.getGetPropertyFn();
Daniel Dunbar49f66022008-09-24 03:38:44 +00002720}
2721
Chris Lattner74391b42009-03-22 21:03:39 +00002722llvm::Constant *CGObjCMac::GetPropertySetFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002723 return ObjCTypes.getSetPropertyFn();
Daniel Dunbar49f66022008-09-24 03:38:44 +00002724}
2725
David Chisnall8fac25d2010-12-26 22:13:16 +00002726llvm::Constant *CGObjCMac::GetGetStructFunction() {
2727 return ObjCTypes.getCopyStructFn();
2728}
2729llvm::Constant *CGObjCMac::GetSetStructFunction() {
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00002730 return ObjCTypes.getCopyStructFn();
2731}
2732
Fariborz Jahaniane3173022012-01-06 18:07:23 +00002733llvm::Constant *CGObjCMac::GetCppAtomicObjectFunction() {
2734 return ObjCTypes.getCppAtomicObjectFunction();
2735}
2736
Chris Lattner74391b42009-03-22 21:03:39 +00002737llvm::Constant *CGObjCMac::EnumerationMutationFunction() {
Chris Lattner72db6c32009-04-22 02:44:54 +00002738 return ObjCTypes.getEnumerationMutationFn();
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002739}
2740
John McCallf1549f62010-07-06 01:34:17 +00002741void CGObjCMac::EmitTryStmt(CodeGenFunction &CGF, const ObjCAtTryStmt &S) {
2742 return EmitTryOrSynchronizedStmt(CGF, S);
2743}
2744
2745void CGObjCMac::EmitSynchronizedStmt(CodeGenFunction &CGF,
2746 const ObjCAtSynchronizedStmt &S) {
2747 return EmitTryOrSynchronizedStmt(CGF, S);
2748}
2749
John McCallcc505292010-07-21 06:59:36 +00002750namespace {
John McCall1f0fca52010-07-21 07:22:38 +00002751 struct PerformFragileFinally : EHScopeStack::Cleanup {
John McCallcc505292010-07-21 06:59:36 +00002752 const Stmt &S;
John McCall0b251722010-08-04 05:59:32 +00002753 llvm::Value *SyncArgSlot;
John McCallcc505292010-07-21 06:59:36 +00002754 llvm::Value *CallTryExitVar;
2755 llvm::Value *ExceptionData;
2756 ObjCTypesHelper &ObjCTypes;
2757 PerformFragileFinally(const Stmt *S,
John McCall0b251722010-08-04 05:59:32 +00002758 llvm::Value *SyncArgSlot,
John McCallcc505292010-07-21 06:59:36 +00002759 llvm::Value *CallTryExitVar,
2760 llvm::Value *ExceptionData,
2761 ObjCTypesHelper *ObjCTypes)
John McCall0b251722010-08-04 05:59:32 +00002762 : S(*S), SyncArgSlot(SyncArgSlot), CallTryExitVar(CallTryExitVar),
John McCallcc505292010-07-21 06:59:36 +00002763 ExceptionData(ExceptionData), ObjCTypes(*ObjCTypes) {}
2764
John McCallad346f42011-07-12 20:27:29 +00002765 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCallcc505292010-07-21 06:59:36 +00002766 // Check whether we need to call objc_exception_try_exit.
2767 // In optimized code, this branch will always be folded.
2768 llvm::BasicBlock *FinallyCallExit =
2769 CGF.createBasicBlock("finally.call_exit");
2770 llvm::BasicBlock *FinallyNoCallExit =
2771 CGF.createBasicBlock("finally.no_call_exit");
2772 CGF.Builder.CreateCondBr(CGF.Builder.CreateLoad(CallTryExitVar),
2773 FinallyCallExit, FinallyNoCallExit);
2774
2775 CGF.EmitBlock(FinallyCallExit);
2776 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryExitFn(), ExceptionData)
2777 ->setDoesNotThrow();
2778
2779 CGF.EmitBlock(FinallyNoCallExit);
2780
2781 if (isa<ObjCAtTryStmt>(S)) {
2782 if (const ObjCAtFinallyStmt* FinallyStmt =
John McCalld96a8e72010-08-11 00:16:14 +00002783 cast<ObjCAtTryStmt>(S).getFinallyStmt()) {
2784 // Save the current cleanup destination in case there's
2785 // control flow inside the finally statement.
2786 llvm::Value *CurCleanupDest =
2787 CGF.Builder.CreateLoad(CGF.getNormalCleanupDestSlot());
2788
John McCallcc505292010-07-21 06:59:36 +00002789 CGF.EmitStmt(FinallyStmt->getFinallyBody());
2790
John McCalld96a8e72010-08-11 00:16:14 +00002791 if (CGF.HaveInsertPoint()) {
2792 CGF.Builder.CreateStore(CurCleanupDest,
2793 CGF.getNormalCleanupDestSlot());
2794 } else {
2795 // Currently, the end of the cleanup must always exist.
2796 CGF.EnsureInsertPoint();
2797 }
2798 }
John McCallcc505292010-07-21 06:59:36 +00002799 } else {
2800 // Emit objc_sync_exit(expr); as finally's sole statement for
2801 // @synchronized.
John McCall0b251722010-08-04 05:59:32 +00002802 llvm::Value *SyncArg = CGF.Builder.CreateLoad(SyncArgSlot);
John McCallcc505292010-07-21 06:59:36 +00002803 CGF.Builder.CreateCall(ObjCTypes.getSyncExitFn(), SyncArg)
2804 ->setDoesNotThrow();
2805 }
2806 }
2807 };
John McCall87bb5822010-07-31 23:20:56 +00002808
2809 class FragileHazards {
2810 CodeGenFunction &CGF;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002811 SmallVector<llvm::Value*, 20> Locals;
John McCall87bb5822010-07-31 23:20:56 +00002812 llvm::DenseSet<llvm::BasicBlock*> BlocksBeforeTry;
2813
2814 llvm::InlineAsm *ReadHazard;
2815 llvm::InlineAsm *WriteHazard;
2816
2817 llvm::FunctionType *GetAsmFnType();
2818
2819 void collectLocals();
2820 void emitReadHazard(CGBuilderTy &Builder);
2821
2822 public:
2823 FragileHazards(CodeGenFunction &CGF);
John McCall0b251722010-08-04 05:59:32 +00002824
John McCall87bb5822010-07-31 23:20:56 +00002825 void emitWriteHazard();
John McCall0b251722010-08-04 05:59:32 +00002826 void emitHazardsInNewBlocks();
John McCall87bb5822010-07-31 23:20:56 +00002827 };
2828}
2829
2830/// Create the fragile-ABI read and write hazards based on the current
2831/// state of the function, which is presumed to be immediately prior
2832/// to a @try block. These hazards are used to maintain correct
2833/// semantics in the face of optimization and the fragile ABI's
2834/// cavalier use of setjmp/longjmp.
2835FragileHazards::FragileHazards(CodeGenFunction &CGF) : CGF(CGF) {
2836 collectLocals();
2837
2838 if (Locals.empty()) return;
2839
2840 // Collect all the blocks in the function.
2841 for (llvm::Function::iterator
2842 I = CGF.CurFn->begin(), E = CGF.CurFn->end(); I != E; ++I)
2843 BlocksBeforeTry.insert(&*I);
2844
2845 llvm::FunctionType *AsmFnTy = GetAsmFnType();
2846
2847 // Create a read hazard for the allocas. This inhibits dead-store
2848 // optimizations and forces the values to memory. This hazard is
2849 // inserted before any 'throwing' calls in the protected scope to
2850 // reflect the possibility that the variables might be read from the
2851 // catch block if the call throws.
2852 {
2853 std::string Constraint;
2854 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
2855 if (I) Constraint += ',';
2856 Constraint += "*m";
2857 }
2858
2859 ReadHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false);
2860 }
2861
2862 // Create a write hazard for the allocas. This inhibits folding
2863 // loads across the hazard. This hazard is inserted at the
2864 // beginning of the catch path to reflect the possibility that the
2865 // variables might have been written within the protected scope.
2866 {
2867 std::string Constraint;
2868 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
2869 if (I) Constraint += ',';
2870 Constraint += "=*m";
2871 }
2872
2873 WriteHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false);
2874 }
2875}
2876
2877/// Emit a write hazard at the current location.
2878void FragileHazards::emitWriteHazard() {
2879 if (Locals.empty()) return;
2880
Jay Foad4c7d9f12011-07-15 08:37:34 +00002881 CGF.Builder.CreateCall(WriteHazard, Locals)->setDoesNotThrow();
John McCall87bb5822010-07-31 23:20:56 +00002882}
2883
John McCall87bb5822010-07-31 23:20:56 +00002884void FragileHazards::emitReadHazard(CGBuilderTy &Builder) {
2885 assert(!Locals.empty());
Jay Foad4c7d9f12011-07-15 08:37:34 +00002886 Builder.CreateCall(ReadHazard, Locals)->setDoesNotThrow();
John McCall87bb5822010-07-31 23:20:56 +00002887}
2888
2889/// Emit read hazards in all the protected blocks, i.e. all the blocks
2890/// which have been inserted since the beginning of the try.
John McCall0b251722010-08-04 05:59:32 +00002891void FragileHazards::emitHazardsInNewBlocks() {
John McCall87bb5822010-07-31 23:20:56 +00002892 if (Locals.empty()) return;
2893
2894 CGBuilderTy Builder(CGF.getLLVMContext());
2895
2896 // Iterate through all blocks, skipping those prior to the try.
2897 for (llvm::Function::iterator
2898 FI = CGF.CurFn->begin(), FE = CGF.CurFn->end(); FI != FE; ++FI) {
2899 llvm::BasicBlock &BB = *FI;
2900 if (BlocksBeforeTry.count(&BB)) continue;
2901
2902 // Walk through all the calls in the block.
2903 for (llvm::BasicBlock::iterator
2904 BI = BB.begin(), BE = BB.end(); BI != BE; ++BI) {
2905 llvm::Instruction &I = *BI;
2906
2907 // Ignore instructions that aren't non-intrinsic calls.
2908 // These are the only calls that can possibly call longjmp.
2909 if (!isa<llvm::CallInst>(I) && !isa<llvm::InvokeInst>(I)) continue;
2910 if (isa<llvm::IntrinsicInst>(I))
2911 continue;
2912
2913 // Ignore call sites marked nounwind. This may be questionable,
2914 // since 'nounwind' doesn't necessarily mean 'does not call longjmp'.
2915 llvm::CallSite CS(&I);
2916 if (CS.doesNotThrow()) continue;
2917
John McCall0b251722010-08-04 05:59:32 +00002918 // Insert a read hazard before the call. This will ensure that
2919 // any writes to the locals are performed before making the
2920 // call. If the call throws, then this is sufficient to
2921 // guarantee correctness as long as it doesn't also write to any
2922 // locals.
John McCall87bb5822010-07-31 23:20:56 +00002923 Builder.SetInsertPoint(&BB, BI);
2924 emitReadHazard(Builder);
2925 }
2926 }
2927}
2928
2929static void addIfPresent(llvm::DenseSet<llvm::Value*> &S, llvm::Value *V) {
2930 if (V) S.insert(V);
2931}
2932
2933void FragileHazards::collectLocals() {
2934 // Compute a set of allocas to ignore.
2935 llvm::DenseSet<llvm::Value*> AllocasToIgnore;
2936 addIfPresent(AllocasToIgnore, CGF.ReturnValue);
2937 addIfPresent(AllocasToIgnore, CGF.NormalCleanupDest);
John McCall87bb5822010-07-31 23:20:56 +00002938
2939 // Collect all the allocas currently in the function. This is
2940 // probably way too aggressive.
2941 llvm::BasicBlock &Entry = CGF.CurFn->getEntryBlock();
2942 for (llvm::BasicBlock::iterator
2943 I = Entry.begin(), E = Entry.end(); I != E; ++I)
2944 if (isa<llvm::AllocaInst>(*I) && !AllocasToIgnore.count(&*I))
2945 Locals.push_back(&*I);
2946}
2947
2948llvm::FunctionType *FragileHazards::GetAsmFnType() {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002949 SmallVector<llvm::Type *, 16> tys(Locals.size());
John McCall0774cb82011-05-15 01:53:33 +00002950 for (unsigned i = 0, e = Locals.size(); i != e; ++i)
2951 tys[i] = Locals[i]->getType();
2952 return llvm::FunctionType::get(CGF.VoidTy, tys, false);
John McCallcc505292010-07-21 06:59:36 +00002953}
2954
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002955/*
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002956
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002957 Objective-C setjmp-longjmp (sjlj) Exception Handling
2958 --
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002959
John McCallf1549f62010-07-06 01:34:17 +00002960 A catch buffer is a setjmp buffer plus:
2961 - a pointer to the exception that was caught
2962 - a pointer to the previous exception data buffer
2963 - two pointers of reserved storage
2964 Therefore catch buffers form a stack, with a pointer to the top
2965 of the stack kept in thread-local storage.
2966
2967 objc_exception_try_enter pushes a catch buffer onto the EH stack.
2968 objc_exception_try_exit pops the given catch buffer, which is
2969 required to be the top of the EH stack.
2970 objc_exception_throw pops the top of the EH stack, writes the
2971 thrown exception into the appropriate field, and longjmps
2972 to the setjmp buffer. It crashes the process (with a printf
2973 and an abort()) if there are no catch buffers on the stack.
2974 objc_exception_extract just reads the exception pointer out of the
2975 catch buffer.
2976
2977 There's no reason an implementation couldn't use a light-weight
2978 setjmp here --- something like __builtin_setjmp, but API-compatible
2979 with the heavyweight setjmp. This will be more important if we ever
2980 want to implement correct ObjC/C++ exception interactions for the
2981 fragile ABI.
2982
2983 Note that for this use of setjmp/longjmp to be correct, we may need
2984 to mark some local variables volatile: if a non-volatile local
2985 variable is modified between the setjmp and the longjmp, it has
2986 indeterminate value. For the purposes of LLVM IR, it may be
2987 sufficient to make loads and stores within the @try (to variables
2988 declared outside the @try) volatile. This is necessary for
2989 optimized correctness, but is not currently being done; this is
2990 being tracked as rdar://problem/8160285
2991
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002992 The basic framework for a @try-catch-finally is as follows:
2993 {
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002994 objc_exception_data d;
2995 id _rethrow = null;
Anders Carlsson190d00e2009-02-07 21:26:04 +00002996 bool _call_try_exit = true;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00002997
Daniel Dunbar18ccc772008-09-28 01:03:14 +00002998 objc_exception_try_enter(&d);
2999 if (!setjmp(d.jmp_buf)) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003000 ... try body ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003001 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003002 // exception path
3003 id _caught = objc_exception_extract(&d);
3004
3005 // enter new try scope for handlers
3006 if (!setjmp(d.jmp_buf)) {
3007 ... match exception and execute catch blocks ...
3008
3009 // fell off end, rethrow.
3010 _rethrow = _caught;
3011 ... jump-through-finally to finally_rethrow ...
3012 } else {
3013 // exception in catch block
3014 _rethrow = objc_exception_extract(&d);
3015 _call_try_exit = false;
3016 ... jump-through-finally to finally_rethrow ...
3017 }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003018 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00003019 ... jump-through-finally to finally_end ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003020
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003021 finally:
Anders Carlsson190d00e2009-02-07 21:26:04 +00003022 if (_call_try_exit)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003023 objc_exception_try_exit(&d);
Anders Carlsson190d00e2009-02-07 21:26:04 +00003024
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003025 ... finally block ....
Daniel Dunbar898d5082008-09-30 01:06:03 +00003026 ... dispatch to finally destination ...
3027
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003028 finally_rethrow:
Daniel Dunbar898d5082008-09-30 01:06:03 +00003029 objc_exception_throw(_rethrow);
3030
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003031 finally_end:
3032 }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003033
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003034 This framework differs slightly from the one gcc uses, in that gcc
3035 uses _rethrow to determine if objc_exception_try_exit should be called
3036 and if the object should be rethrown. This breaks in the face of
3037 throwing nil and introduces unnecessary branches.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003038
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003039 We specialize this framework for a few particular circumstances:
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003040
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003041 - If there are no catch blocks, then we avoid emitting the second
3042 exception handling context.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003043
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003044 - If there is a catch-all catch block (i.e. @catch(...) or @catch(id
3045 e)) we avoid emitting the code to rethrow an uncaught exception.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003046
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003047 - FIXME: If there is no @finally block we can do a few more
3048 simplifications.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003049
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003050 Rethrows and Jumps-Through-Finally
3051 --
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003052
John McCallf1549f62010-07-06 01:34:17 +00003053 '@throw;' is supported by pushing the currently-caught exception
3054 onto ObjCEHStack while the @catch blocks are emitted.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003055
John McCallf1549f62010-07-06 01:34:17 +00003056 Branches through the @finally block are handled with an ordinary
3057 normal cleanup. We do not register an EH cleanup; fragile-ABI ObjC
3058 exceptions are not compatible with C++ exceptions, and this is
3059 hardly the only place where this will go wrong.
Daniel Dunbar898d5082008-09-30 01:06:03 +00003060
John McCallf1549f62010-07-06 01:34:17 +00003061 @synchronized(expr) { stmt; } is emitted as if it were:
3062 id synch_value = expr;
3063 objc_sync_enter(synch_value);
3064 @try { stmt; } @finally { objc_sync_exit(synch_value); }
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003065*/
3066
Fariborz Jahanianbd71be42008-11-21 00:49:24 +00003067void CGObjCMac::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
3068 const Stmt &S) {
3069 bool isTry = isa<ObjCAtTryStmt>(S);
John McCallf1549f62010-07-06 01:34:17 +00003070
3071 // A destination for the fall-through edges of the catch handlers to
3072 // jump to.
3073 CodeGenFunction::JumpDest FinallyEnd =
3074 CGF.getJumpDestInCurrentScope("finally.end");
3075
3076 // A destination for the rethrow edge of the catch handlers to jump
3077 // to.
3078 CodeGenFunction::JumpDest FinallyRethrow =
3079 CGF.getJumpDestInCurrentScope("finally.rethrow");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003080
Daniel Dunbar1c566672009-02-24 01:43:46 +00003081 // For @synchronized, call objc_sync_enter(sync.expr). The
3082 // evaluation of the expression must occur before we enter the
John McCall0b251722010-08-04 05:59:32 +00003083 // @synchronized. We can't avoid a temp here because we need the
3084 // value to be preserved. If the backend ever does liveness
3085 // correctly after setjmp, this will be unnecessary.
3086 llvm::Value *SyncArgSlot = 0;
Daniel Dunbar1c566672009-02-24 01:43:46 +00003087 if (!isTry) {
John McCall0b251722010-08-04 05:59:32 +00003088 llvm::Value *SyncArg =
Daniel Dunbar1c566672009-02-24 01:43:46 +00003089 CGF.EmitScalarExpr(cast<ObjCAtSynchronizedStmt>(S).getSynchExpr());
3090 SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy);
John McCallf1549f62010-07-06 01:34:17 +00003091 CGF.Builder.CreateCall(ObjCTypes.getSyncEnterFn(), SyncArg)
3092 ->setDoesNotThrow();
John McCall0b251722010-08-04 05:59:32 +00003093
3094 SyncArgSlot = CGF.CreateTempAlloca(SyncArg->getType(), "sync.arg");
3095 CGF.Builder.CreateStore(SyncArg, SyncArgSlot);
Daniel Dunbar1c566672009-02-24 01:43:46 +00003096 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00003097
John McCall0b251722010-08-04 05:59:32 +00003098 // Allocate memory for the setjmp buffer. This needs to be kept
3099 // live throughout the try and catch blocks.
3100 llvm::Value *ExceptionData = CGF.CreateTempAlloca(ObjCTypes.ExceptionDataTy,
3101 "exceptiondata.ptr");
3102
John McCall87bb5822010-07-31 23:20:56 +00003103 // Create the fragile hazards. Note that this will not capture any
3104 // of the allocas required for exception processing, but will
3105 // capture the current basic block (which extends all the way to the
3106 // setjmp call) as "before the @try".
3107 FragileHazards Hazards(CGF);
3108
John McCallf1549f62010-07-06 01:34:17 +00003109 // Create a flag indicating whether the cleanup needs to call
3110 // objc_exception_try_exit. This is true except when
3111 // - no catches match and we're branching through the cleanup
3112 // just to rethrow the exception, or
3113 // - a catch matched and we're falling out of the catch handler.
John McCall0b251722010-08-04 05:59:32 +00003114 // The setjmp-safety rule here is that we should always store to this
3115 // variable in a place that dominates the branch through the cleanup
3116 // without passing through any setjmps.
John McCallf1549f62010-07-06 01:34:17 +00003117 llvm::Value *CallTryExitVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(),
Anders Carlsson190d00e2009-02-07 21:26:04 +00003118 "_call_try_exit");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003119
John McCall9e2213d2010-10-04 23:42:51 +00003120 // A slot containing the exception to rethrow. Only needed when we
3121 // have both a @catch and a @finally.
3122 llvm::Value *PropagatingExnVar = 0;
3123
John McCallf1549f62010-07-06 01:34:17 +00003124 // Push a normal cleanup to leave the try scope.
John McCall1f0fca52010-07-21 07:22:38 +00003125 CGF.EHStack.pushCleanup<PerformFragileFinally>(NormalCleanup, &S,
John McCall0b251722010-08-04 05:59:32 +00003126 SyncArgSlot,
John McCall1f0fca52010-07-21 07:22:38 +00003127 CallTryExitVar,
3128 ExceptionData,
3129 &ObjCTypes);
John McCallf1549f62010-07-06 01:34:17 +00003130
3131 // Enter a try block:
3132 // - Call objc_exception_try_enter to push ExceptionData on top of
3133 // the EH stack.
3134 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData)
3135 ->setDoesNotThrow();
3136
3137 // - Call setjmp on the exception data buffer.
3138 llvm::Constant *Zero = llvm::ConstantInt::get(CGF.Builder.getInt32Ty(), 0);
3139 llvm::Value *GEPIndexes[] = { Zero, Zero, Zero };
3140 llvm::Value *SetJmpBuffer =
Jay Foad0f6ac7c2011-07-22 08:16:57 +00003141 CGF.Builder.CreateGEP(ExceptionData, GEPIndexes, "setjmp_buffer");
John McCallf1549f62010-07-06 01:34:17 +00003142 llvm::CallInst *SetJmpResult =
3143 CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer, "setjmp_result");
3144 SetJmpResult->setDoesNotThrow();
Bill Wendling6446c3e2011-12-19 23:53:28 +00003145 SetJmpResult->setCanReturnTwice();
John McCallf1549f62010-07-06 01:34:17 +00003146
3147 // If setjmp returned 0, enter the protected block; otherwise,
3148 // branch to the handler.
Daniel Dunbar55e87422008-11-11 02:29:29 +00003149 llvm::BasicBlock *TryBlock = CGF.createBasicBlock("try");
3150 llvm::BasicBlock *TryHandler = CGF.createBasicBlock("try.handler");
John McCallf1549f62010-07-06 01:34:17 +00003151 llvm::Value *DidCatch =
John McCalld96a8e72010-08-11 00:16:14 +00003152 CGF.Builder.CreateIsNotNull(SetJmpResult, "did_catch_exception");
3153 CGF.Builder.CreateCondBr(DidCatch, TryHandler, TryBlock);
Anders Carlsson80f25672008-09-09 17:59:25 +00003154
John McCallf1549f62010-07-06 01:34:17 +00003155 // Emit the protected block.
Anders Carlsson80f25672008-09-09 17:59:25 +00003156 CGF.EmitBlock(TryBlock);
John McCall0b251722010-08-04 05:59:32 +00003157 CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003158 CGF.EmitStmt(isTry ? cast<ObjCAtTryStmt>(S).getTryBody()
John McCallf1549f62010-07-06 01:34:17 +00003159 : cast<ObjCAtSynchronizedStmt>(S).getSynchBody());
John McCall0b251722010-08-04 05:59:32 +00003160
3161 CGBuilderTy::InsertPoint TryFallthroughIP = CGF.Builder.saveAndClearIP();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003162
John McCallf1549f62010-07-06 01:34:17 +00003163 // Emit the exception handler block.
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00003164 CGF.EmitBlock(TryHandler);
Daniel Dunbar55e40722008-09-27 07:03:52 +00003165
John McCall87bb5822010-07-31 23:20:56 +00003166 // Don't optimize loads of the in-scope locals across this point.
3167 Hazards.emitWriteHazard();
3168
John McCallf1549f62010-07-06 01:34:17 +00003169 // For a @synchronized (or a @try with no catches), just branch
3170 // through the cleanup to the rethrow block.
3171 if (!isTry || !cast<ObjCAtTryStmt>(S).getNumCatchStmts()) {
3172 // Tell the cleanup not to re-pop the exit.
John McCall0b251722010-08-04 05:59:32 +00003173 CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003174 CGF.EmitBranchThroughCleanup(FinallyRethrow);
John McCallf1549f62010-07-06 01:34:17 +00003175
3176 // Otherwise, we have to match against the caught exceptions.
3177 } else {
John McCall0b251722010-08-04 05:59:32 +00003178 // Retrieve the exception object. We may emit multiple blocks but
3179 // nothing can cross this so the value is already in SSA form.
3180 llvm::CallInst *Caught =
3181 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3182 ExceptionData, "caught");
3183 Caught->setDoesNotThrow();
3184
John McCallf1549f62010-07-06 01:34:17 +00003185 // Push the exception to rethrow onto the EH value stack for the
3186 // benefit of any @throws in the handlers.
3187 CGF.ObjCEHValueStack.push_back(Caught);
3188
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00003189 const ObjCAtTryStmt* AtTryStmt = cast<ObjCAtTryStmt>(&S);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003190
John McCall0b251722010-08-04 05:59:32 +00003191 bool HasFinally = (AtTryStmt->getFinallyStmt() != 0);
John McCallf1549f62010-07-06 01:34:17 +00003192
John McCall0b251722010-08-04 05:59:32 +00003193 llvm::BasicBlock *CatchBlock = 0;
3194 llvm::BasicBlock *CatchHandler = 0;
3195 if (HasFinally) {
John McCall9e2213d2010-10-04 23:42:51 +00003196 // Save the currently-propagating exception before
3197 // objc_exception_try_enter clears the exception slot.
3198 PropagatingExnVar = CGF.CreateTempAlloca(Caught->getType(),
3199 "propagating_exception");
3200 CGF.Builder.CreateStore(Caught, PropagatingExnVar);
3201
John McCall0b251722010-08-04 05:59:32 +00003202 // Enter a new exception try block (in case a @catch block
3203 // throws an exception).
3204 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData)
3205 ->setDoesNotThrow();
Anders Carlsson80f25672008-09-09 17:59:25 +00003206
John McCall0b251722010-08-04 05:59:32 +00003207 llvm::CallInst *SetJmpResult =
3208 CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer,
3209 "setjmp.result");
3210 SetJmpResult->setDoesNotThrow();
Bill Wendling6446c3e2011-12-19 23:53:28 +00003211 SetJmpResult->setCanReturnTwice();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003212
John McCall0b251722010-08-04 05:59:32 +00003213 llvm::Value *Threw =
3214 CGF.Builder.CreateIsNotNull(SetJmpResult, "did_catch_exception");
3215
3216 CatchBlock = CGF.createBasicBlock("catch");
3217 CatchHandler = CGF.createBasicBlock("catch_for_catch");
3218 CGF.Builder.CreateCondBr(Threw, CatchHandler, CatchBlock);
3219
3220 CGF.EmitBlock(CatchBlock);
3221 }
3222
3223 CGF.Builder.CreateStore(CGF.Builder.getInt1(HasFinally), CallTryExitVar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003224
Daniel Dunbar55e40722008-09-27 07:03:52 +00003225 // Handle catch list. As a special case we check if everything is
3226 // matched and avoid generating code for falling off the end if
3227 // so.
3228 bool AllMatched = false;
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00003229 for (unsigned I = 0, N = AtTryStmt->getNumCatchStmts(); I != N; ++I) {
3230 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I);
Anders Carlsson80f25672008-09-09 17:59:25 +00003231
Douglas Gregorc00d8e12010-04-26 16:46:50 +00003232 const VarDecl *CatchParam = CatchStmt->getCatchParamDecl();
Steve Naroff14108da2009-07-10 23:34:53 +00003233 const ObjCObjectPointerType *OPT = 0;
Daniel Dunbar129271a2008-09-27 07:36:24 +00003234
Anders Carlsson80f25672008-09-09 17:59:25 +00003235 // catch(...) always matches.
Daniel Dunbar55e40722008-09-27 07:03:52 +00003236 if (!CatchParam) {
3237 AllMatched = true;
3238 } else {
John McCall183700f2009-09-21 23:43:11 +00003239 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003240
John McCallf1549f62010-07-06 01:34:17 +00003241 // catch(id e) always matches under this ABI, since only
3242 // ObjC exceptions end up here in the first place.
Daniel Dunbar97f61d12008-09-27 22:21:14 +00003243 // FIXME: For the time being we also match id<X>; this should
3244 // be rejected by Sema instead.
Eli Friedman818e96f2009-07-11 00:57:02 +00003245 if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType()))
Daniel Dunbar55e40722008-09-27 07:03:52 +00003246 AllMatched = true;
Anders Carlsson80f25672008-09-09 17:59:25 +00003247 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003248
John McCallf1549f62010-07-06 01:34:17 +00003249 // If this is a catch-all, we don't need to test anything.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003250 if (AllMatched) {
John McCallf1549f62010-07-06 01:34:17 +00003251 CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF);
3252
Anders Carlssondde0a942008-09-11 09:15:33 +00003253 if (CatchParam) {
John McCallb6bbcc92010-10-15 04:57:14 +00003254 CGF.EmitAutoVarDecl(*CatchParam);
Daniel Dunbara448fb22008-11-11 23:11:34 +00003255 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
John McCallf1549f62010-07-06 01:34:17 +00003256
3257 // These types work out because ConvertType(id) == i8*.
Steve Naroff7ba138a2009-03-03 19:52:17 +00003258 CGF.Builder.CreateStore(Caught, CGF.GetAddrOfLocalVar(CatchParam));
Anders Carlssondde0a942008-09-11 09:15:33 +00003259 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003260
Anders Carlssondde0a942008-09-11 09:15:33 +00003261 CGF.EmitStmt(CatchStmt->getCatchBody());
John McCallf1549f62010-07-06 01:34:17 +00003262
3263 // The scope of the catch variable ends right here.
3264 CatchVarCleanups.ForceCleanup();
3265
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003266 CGF.EmitBranchThroughCleanup(FinallyEnd);
Anders Carlsson80f25672008-09-09 17:59:25 +00003267 break;
3268 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003269
Steve Naroff14108da2009-07-10 23:34:53 +00003270 assert(OPT && "Unexpected non-object pointer type in @catch");
John McCall506b57e2010-05-17 21:00:27 +00003271 const ObjCObjectType *ObjTy = OPT->getObjectType();
John McCallf1549f62010-07-06 01:34:17 +00003272
3273 // FIXME: @catch (Class c) ?
John McCall506b57e2010-05-17 21:00:27 +00003274 ObjCInterfaceDecl *IDecl = ObjTy->getInterface();
3275 assert(IDecl && "Catch parameter must have Objective-C type!");
Anders Carlsson80f25672008-09-09 17:59:25 +00003276
3277 // Check if the @catch block matches the exception object.
John McCall506b57e2010-05-17 21:00:27 +00003278 llvm::Value *Class = EmitClassRef(CGF.Builder, IDecl);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003279
John McCallf1549f62010-07-06 01:34:17 +00003280 llvm::CallInst *Match =
Chris Lattner34b02a12009-04-22 02:26:14 +00003281 CGF.Builder.CreateCall2(ObjCTypes.getExceptionMatchFn(),
3282 Class, Caught, "match");
John McCallf1549f62010-07-06 01:34:17 +00003283 Match->setDoesNotThrow();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003284
John McCallf1549f62010-07-06 01:34:17 +00003285 llvm::BasicBlock *MatchedBlock = CGF.createBasicBlock("match");
3286 llvm::BasicBlock *NextCatchBlock = CGF.createBasicBlock("catch.next");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003287
3288 CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(Match, "matched"),
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00003289 MatchedBlock, NextCatchBlock);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003290
Anders Carlsson80f25672008-09-09 17:59:25 +00003291 // Emit the @catch block.
3292 CGF.EmitBlock(MatchedBlock);
John McCallf1549f62010-07-06 01:34:17 +00003293
3294 // Collect any cleanups for the catch variable. The scope lasts until
3295 // the end of the catch body.
John McCall0b251722010-08-04 05:59:32 +00003296 CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF);
John McCallf1549f62010-07-06 01:34:17 +00003297
John McCallb6bbcc92010-10-15 04:57:14 +00003298 CGF.EmitAutoVarDecl(*CatchParam);
Daniel Dunbara448fb22008-11-11 23:11:34 +00003299 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003300
John McCallf1549f62010-07-06 01:34:17 +00003301 // Initialize the catch variable.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003302 llvm::Value *Tmp =
3303 CGF.Builder.CreateBitCast(Caught,
Benjamin Kramer578faa82011-09-27 21:06:10 +00003304 CGF.ConvertType(CatchParam->getType()));
Steve Naroff7ba138a2009-03-03 19:52:17 +00003305 CGF.Builder.CreateStore(Tmp, CGF.GetAddrOfLocalVar(CatchParam));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003306
Anders Carlssondde0a942008-09-11 09:15:33 +00003307 CGF.EmitStmt(CatchStmt->getCatchBody());
John McCallf1549f62010-07-06 01:34:17 +00003308
3309 // We're done with the catch variable.
3310 CatchVarCleanups.ForceCleanup();
3311
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003312 CGF.EmitBranchThroughCleanup(FinallyEnd);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003313
Anders Carlsson80f25672008-09-09 17:59:25 +00003314 CGF.EmitBlock(NextCatchBlock);
3315 }
3316
John McCallf1549f62010-07-06 01:34:17 +00003317 CGF.ObjCEHValueStack.pop_back();
3318
John McCall0b251722010-08-04 05:59:32 +00003319 // If nothing wanted anything to do with the caught exception,
3320 // kill the extract call.
3321 if (Caught->use_empty())
3322 Caught->eraseFromParent();
3323
3324 if (!AllMatched)
3325 CGF.EmitBranchThroughCleanup(FinallyRethrow);
3326
3327 if (HasFinally) {
3328 // Emit the exception handler for the @catch blocks.
3329 CGF.EmitBlock(CatchHandler);
3330
3331 // In theory we might now need a write hazard, but actually it's
3332 // unnecessary because there's no local-accessing code between
3333 // the try's write hazard and here.
3334 //Hazards.emitWriteHazard();
3335
John McCall9e2213d2010-10-04 23:42:51 +00003336 // Extract the new exception and save it to the
3337 // propagating-exception slot.
3338 assert(PropagatingExnVar);
3339 llvm::CallInst *NewCaught =
3340 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3341 ExceptionData, "caught");
3342 NewCaught->setDoesNotThrow();
3343 CGF.Builder.CreateStore(NewCaught, PropagatingExnVar);
3344
John McCall0b251722010-08-04 05:59:32 +00003345 // Don't pop the catch handler; the throw already did.
3346 CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003347 CGF.EmitBranchThroughCleanup(FinallyRethrow);
Daniel Dunbar55e40722008-09-27 07:03:52 +00003348 }
Anders Carlsson80f25672008-09-09 17:59:25 +00003349 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003350
John McCall87bb5822010-07-31 23:20:56 +00003351 // Insert read hazards as required in the new blocks.
John McCall0b251722010-08-04 05:59:32 +00003352 Hazards.emitHazardsInNewBlocks();
John McCall87bb5822010-07-31 23:20:56 +00003353
John McCallf1549f62010-07-06 01:34:17 +00003354 // Pop the cleanup.
John McCall0b251722010-08-04 05:59:32 +00003355 CGF.Builder.restoreIP(TryFallthroughIP);
3356 if (CGF.HaveInsertPoint())
3357 CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar);
John McCallf1549f62010-07-06 01:34:17 +00003358 CGF.PopCleanupBlock();
John McCall0b251722010-08-04 05:59:32 +00003359 CGF.EmitBlock(FinallyEnd.getBlock(), true);
Anders Carlssonf3a79a92009-02-09 20:38:58 +00003360
John McCallf1549f62010-07-06 01:34:17 +00003361 // Emit the rethrow block.
John McCall87bb5822010-07-31 23:20:56 +00003362 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
John McCallff8e1152010-07-23 21:56:41 +00003363 CGF.EmitBlock(FinallyRethrow.getBlock(), true);
John McCallf1549f62010-07-06 01:34:17 +00003364 if (CGF.HaveInsertPoint()) {
John McCall9e2213d2010-10-04 23:42:51 +00003365 // If we have a propagating-exception variable, check it.
3366 llvm::Value *PropagatingExn;
3367 if (PropagatingExnVar) {
3368 PropagatingExn = CGF.Builder.CreateLoad(PropagatingExnVar);
John McCall0b251722010-08-04 05:59:32 +00003369
John McCall9e2213d2010-10-04 23:42:51 +00003370 // Otherwise, just look in the buffer for the exception to throw.
3371 } else {
3372 llvm::CallInst *Caught =
3373 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3374 ExceptionData);
3375 Caught->setDoesNotThrow();
3376 PropagatingExn = Caught;
3377 }
3378
3379 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), PropagatingExn)
John McCallf1549f62010-07-06 01:34:17 +00003380 ->setDoesNotThrow();
3381 CGF.Builder.CreateUnreachable();
Fariborz Jahanianf2878e52008-11-21 19:21:53 +00003382 }
Anders Carlsson80f25672008-09-09 17:59:25 +00003383
John McCall87bb5822010-07-31 23:20:56 +00003384 CGF.Builder.restoreIP(SavedIP);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00003385}
3386
3387void CGObjCMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar898d5082008-09-30 01:06:03 +00003388 const ObjCAtThrowStmt &S) {
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003389 llvm::Value *ExceptionAsObject;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003390
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003391 if (const Expr *ThrowExpr = S.getThrowExpr()) {
John McCall2b014d62011-10-01 10:32:24 +00003392 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003393 ExceptionAsObject =
Benjamin Kramer578faa82011-09-27 21:06:10 +00003394 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy);
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003395 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003396 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
Daniel Dunbar18ccc772008-09-28 01:03:14 +00003397 "Unexpected rethrow outside @catch block.");
Anders Carlsson273558f2009-02-07 21:37:21 +00003398 ExceptionAsObject = CGF.ObjCEHValueStack.back();
Anders Carlsson2b1e3112008-09-09 16:16:55 +00003399 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003400
John McCallf1549f62010-07-06 01:34:17 +00003401 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), ExceptionAsObject)
3402 ->setDoesNotReturn();
Anders Carlsson80f25672008-09-09 17:59:25 +00003403 CGF.Builder.CreateUnreachable();
Daniel Dunbara448fb22008-11-11 23:11:34 +00003404
3405 // Clear the insertion point to indicate we are in unreachable code.
3406 CGF.Builder.ClearInsertionPoint();
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00003407}
3408
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003409/// EmitObjCWeakRead - Code gen for loading value of a __weak
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00003410/// object: objc_read_weak (id *src)
3411///
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003412llvm::Value * CGObjCMac::EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003413 llvm::Value *AddrWeakObj) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00003414 llvm::Type* DestTy =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003415 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
3416 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj,
3417 ObjCTypes.PtrObjectPtrTy);
Chris Lattner72db6c32009-04-22 02:44:54 +00003418 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003419 AddrWeakObj, "weakread");
Eli Friedman8339b352009-03-07 03:57:15 +00003420 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00003421 return read_weak;
3422}
3423
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003424/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
3425/// objc_assign_weak (id src, id *dst)
3426///
3427void CGObjCMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003428 llvm::Value *src, llvm::Value *dst) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00003429 llvm::Type * SrcTy = src->getType();
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003430 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003431 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003432 assert(Size <= 8 && "does not support size > 8");
3433 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003434 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003435 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3436 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003437 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3438 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner96508e12009-04-17 22:12:36 +00003439 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00003440 src, dst, "weakassign");
3441 return;
3442}
3443
Fariborz Jahanian58626502008-11-19 00:59:10 +00003444/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
3445/// objc_assign_global (id src, id *dst)
3446///
3447void CGObjCMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00003448 llvm::Value *src, llvm::Value *dst,
3449 bool threadlocal) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00003450 llvm::Type * SrcTy = src->getType();
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003451 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003452 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003453 assert(Size <= 8 && "does not support size > 8");
3454 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003455 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003456 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3457 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003458 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3459 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00003460 if (!threadlocal)
3461 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
3462 src, dst, "globalassign");
3463 else
3464 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignThreadLocalFn(),
3465 src, dst, "threadlocalassign");
Fariborz Jahanian58626502008-11-19 00:59:10 +00003466 return;
3467}
3468
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003469/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003470/// objc_assign_ivar (id src, id *dst, ptrdiff_t ivaroffset)
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003471///
3472void CGObjCMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003473 llvm::Value *src, llvm::Value *dst,
3474 llvm::Value *ivarOffset) {
3475 assert(ivarOffset && "EmitObjCIvarAssign - ivarOffset is NULL");
Chris Lattner2acc6e32011-07-18 04:24:23 +00003476 llvm::Type * SrcTy = src->getType();
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003477 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003478 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003479 assert(Size <= 8 && "does not support size > 8");
3480 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003481 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003482 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3483 }
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003484 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3485 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00003486 CGF.Builder.CreateCall3(ObjCTypes.getGcAssignIvarFn(),
3487 src, dst, ivarOffset);
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00003488 return;
3489}
3490
Fariborz Jahanian58626502008-11-19 00:59:10 +00003491/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
3492/// objc_assign_strongCast (id src, id *dst)
3493///
3494void CGObjCMac::EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00003495 llvm::Value *src, llvm::Value *dst) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00003496 llvm::Type * SrcTy = src->getType();
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003497 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00003498 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00003499 assert(Size <= 8 && "does not support size > 8");
3500 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003501 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00003502 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3503 }
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +00003504 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3505 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00003506 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian58626502008-11-19 00:59:10 +00003507 src, dst, "weakassign");
3508 return;
3509}
3510
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003511void CGObjCMac::EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003512 llvm::Value *DestPtr,
3513 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00003514 llvm::Value *size) {
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003515 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy);
3516 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003517 CGF.Builder.CreateCall3(ObjCTypes.GcMemmoveCollectableFn(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00003518 DestPtr, SrcPtr, size);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00003519 return;
3520}
3521
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00003522/// EmitObjCValueForIvar - Code Gen for ivar reference.
3523///
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00003524LValue CGObjCMac::EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
3525 QualType ObjectTy,
3526 llvm::Value *BaseValue,
3527 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00003528 unsigned CVRQualifiers) {
John McCallc12c5bb2010-05-15 11:32:37 +00003529 const ObjCInterfaceDecl *ID =
3530 ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar97776872009-04-22 07:32:20 +00003531 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
3532 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00003533}
3534
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003535llvm::Value *CGObjCMac::EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00003536 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003537 const ObjCIvarDecl *Ivar) {
Daniel Dunbar97776872009-04-22 07:32:20 +00003538 uint64_t Offset = ComputeIvarBaseOffset(CGM, Interface, Ivar);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003539 return llvm::ConstantInt::get(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003540 CGM.getTypes().ConvertType(CGM.getContext().LongTy),
3541 Offset);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00003542}
3543
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003544/* *** Private Interface *** */
3545
3546/// EmitImageInfo - Emit the image info marker used to encode some module
3547/// level information.
3548///
3549/// See: <rdr://4810609&4810587&4810587>
3550/// struct IMAGE_INFO {
3551/// unsigned version;
3552/// unsigned flags;
3553/// };
3554enum ImageInfoFlags {
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003555 eImageInfo_FixAndContinue = (1 << 0),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003556 eImageInfo_GarbageCollected = (1 << 1),
3557 eImageInfo_GCOnly = (1 << 2),
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003558 eImageInfo_OptimizedByDyld = (1 << 3), // FIXME: When is this set.
3559
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003560 // A flag indicating that the module has no instances of a @synthesize of a
3561 // superclass variable. <rdar://problem/6803242>
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003562 eImageInfo_CorrectedSynthesize = (1 << 4)
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003563};
3564
Daniel Dunbarfce176b2010-04-25 20:39:01 +00003565void CGObjCCommonMac::EmitImageInfo() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003566 unsigned version = 0; // Version is unused?
3567 unsigned flags = 0;
3568
3569 // FIXME: Fix and continue?
Douglas Gregore289d812011-09-13 17:21:33 +00003570 if (CGM.getLangOptions().getGC() != LangOptions::NonGC)
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003571 flags |= eImageInfo_GarbageCollected;
Douglas Gregore289d812011-09-13 17:21:33 +00003572 if (CGM.getLangOptions().getGC() == LangOptions::GCOnly)
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003573 flags |= eImageInfo_GCOnly;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003574
Daniel Dunbarc7c6dc02009-04-20 07:11:47 +00003575 // We never allow @synthesize of a superclass property.
3576 flags |= eImageInfo_CorrectedSynthesize;
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003577
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003578 // Emitted as int[2];
Chris Lattner0b239712012-02-06 22:16:34 +00003579 uint32_t Values[2] = { version, flags };
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003580
3581 const char *Section;
3582 if (ObjCABI == 1)
3583 Section = "__OBJC, __image_info,regular";
3584 else
3585 Section = "__DATA, __objc_imageinfo, regular, no_dead_strip";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003586 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003587 CreateMetadataVar("\01L_OBJC_IMAGE_INFO",
Chris Lattner0b239712012-02-06 22:16:34 +00003588 llvm::ConstantDataArray::get(VMContext, Values),
3589 Section, 0, true);
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003590 GV->setConstant(true);
Daniel Dunbarf77ac862008-08-11 21:35:06 +00003591}
3592
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003593
3594// struct objc_module {
3595// unsigned long version;
3596// unsigned long size;
3597// const char *name;
3598// Symtab symtab;
3599// };
3600
3601// FIXME: Get from somewhere
3602static const int ModuleVersion = 7;
3603
3604void CGObjCMac::EmitModuleInfo() {
Duncan Sands9408c452009-05-09 07:08:47 +00003605 uint64_t Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ModuleTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003606
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00003607 llvm::Constant *Values[] = {
3608 llvm::ConstantInt::get(ObjCTypes.LongTy, ModuleVersion),
3609 llvm::ConstantInt::get(ObjCTypes.LongTy, Size),
3610 // This used to be the filename, now it is unused. <rdr://4327263>
3611 GetClassName(&CGM.getContext().Idents.get("")),
3612 EmitModuleSymbols()
3613 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003614 CreateMetadataVar("\01L_OBJC_MODULES",
Owen Anderson08e25242009-07-27 22:29:56 +00003615 llvm::ConstantStruct::get(ObjCTypes.ModuleTy, Values),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003616 "__OBJC,__module_info,regular,no_dead_strip",
Daniel Dunbar58a29122009-03-09 22:18:41 +00003617 4, true);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003618}
3619
3620llvm::Constant *CGObjCMac::EmitModuleSymbols() {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003621 unsigned NumClasses = DefinedClasses.size();
3622 unsigned NumCategories = DefinedCategories.size();
3623
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003624 // Return null if no symbols were defined.
3625 if (!NumClasses && !NumCategories)
Owen Andersonc9c88b42009-07-31 20:28:54 +00003626 return llvm::Constant::getNullValue(ObjCTypes.SymtabPtrTy);
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00003627
Chris Lattnerc5cbb902011-06-20 04:01:35 +00003628 llvm::Constant *Values[5];
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003629 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
Owen Andersonc9c88b42009-07-31 20:28:54 +00003630 Values[1] = llvm::Constant::getNullValue(ObjCTypes.SelectorPtrTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00003631 Values[2] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumClasses);
3632 Values[3] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumCategories);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003633
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003634 // The runtime expects exactly the list of defined classes followed
3635 // by the list of defined categories, in a single array.
Chris Lattner0b239712012-02-06 22:16:34 +00003636 SmallVector<llvm::Constant*, 8> Symbols(NumClasses + NumCategories);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003637 for (unsigned i=0; i<NumClasses; i++)
Owen Anderson3c4972d2009-07-29 18:54:39 +00003638 Symbols[i] = llvm::ConstantExpr::getBitCast(DefinedClasses[i],
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003639 ObjCTypes.Int8PtrTy);
3640 for (unsigned i=0; i<NumCategories; i++)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003641 Symbols[NumClasses + i] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003642 llvm::ConstantExpr::getBitCast(DefinedCategories[i],
Daniel Dunbar86e253a2008-08-22 20:34:54 +00003643 ObjCTypes.Int8PtrTy);
3644
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003645 Values[4] =
Owen Anderson96e0fc72009-07-29 22:16:19 +00003646 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Chris Lattner0b239712012-02-06 22:16:34 +00003647 Symbols.size()),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003648 Symbols);
3649
Chris Lattnerc5cbb902011-06-20 04:01:35 +00003650 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003651
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003652 llvm::GlobalVariable *GV =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003653 CreateMetadataVar("\01L_OBJC_SYMBOLS", Init,
3654 "__OBJC,__symbols,regular,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003655 4, true);
Owen Anderson3c4972d2009-07-29 18:54:39 +00003656 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.SymtabPtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003657}
3658
John McCallf85e1932011-06-15 23:02:42 +00003659llvm::Value *CGObjCMac::EmitClassRefFromId(CGBuilderTy &Builder,
3660 IdentifierInfo *II) {
3661 LazySymbols.insert(II);
3662
3663 llvm::GlobalVariable *&Entry = ClassReferences[II];
3664
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003665 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003666 llvm::Constant *Casted =
John McCallf85e1932011-06-15 23:02:42 +00003667 llvm::ConstantExpr::getBitCast(GetClassName(II),
3668 ObjCTypes.ClassPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003669 Entry =
John McCallf85e1932011-06-15 23:02:42 +00003670 CreateMetadataVar("\01L_OBJC_CLASS_REFERENCES_", Casted,
3671 "__OBJC,__cls_refs,literal_pointers,no_dead_strip",
3672 4, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00003673 }
John McCallf85e1932011-06-15 23:02:42 +00003674
Benjamin Kramer578faa82011-09-27 21:06:10 +00003675 return Builder.CreateLoad(Entry);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003676}
3677
John McCallf85e1932011-06-15 23:02:42 +00003678llvm::Value *CGObjCMac::EmitClassRef(CGBuilderTy &Builder,
3679 const ObjCInterfaceDecl *ID) {
3680 return EmitClassRefFromId(Builder, ID->getIdentifier());
3681}
3682
3683llvm::Value *CGObjCMac::EmitNSAutoreleasePoolClassRef(CGBuilderTy &Builder) {
3684 IdentifierInfo *II = &CGM.getContext().Idents.get("NSAutoreleasePool");
3685 return EmitClassRefFromId(Builder, II);
3686}
3687
Fariborz Jahanian03b29602010-06-17 19:56:20 +00003688llvm::Value *CGObjCMac::EmitSelector(CGBuilderTy &Builder, Selector Sel,
3689 bool lvalue) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003690 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003691
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003692 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003693 llvm::Constant *Casted =
Owen Anderson3c4972d2009-07-29 18:54:39 +00003694 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003695 ObjCTypes.SelectorPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003696 Entry =
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003697 CreateMetadataVar("\01L_OBJC_SELECTOR_REFERENCES_", Casted,
3698 "__OBJC,__message_refs,literal_pointers,no_dead_strip",
Daniel Dunbar0bf21992009-04-15 02:56:18 +00003699 4, true);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003700 }
3701
Fariborz Jahanian03b29602010-06-17 19:56:20 +00003702 if (lvalue)
3703 return Entry;
Benjamin Kramer578faa82011-09-27 21:06:10 +00003704 return Builder.CreateLoad(Entry);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00003705}
3706
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00003707llvm::Constant *CGObjCCommonMac::GetClassName(IdentifierInfo *Ident) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00003708 llvm::GlobalVariable *&Entry = ClassNames[Ident];
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003709
Daniel Dunbar63c5b502009-03-09 21:49:58 +00003710 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003711 Entry = CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
Chris Lattner94010692012-02-05 02:30:40 +00003712 llvm::ConstantDataArray::getString(VMContext,
3713 Ident->getNameStart()),
Daniel Dunbaraf19ac42011-03-25 20:09:09 +00003714 ((ObjCABI == 2) ?
3715 "__TEXT,__objc_classname,cstring_literals" :
3716 "__TEXT,__cstring,cstring_literals"),
Daniel Dunbarb90bb002009-04-14 23:14:47 +00003717 1, true);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003718
Owen Andersona1cf15f2009-07-14 23:10:40 +00003719 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00003720}
3721
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +00003722llvm::Function *CGObjCCommonMac::GetMethodDefinition(const ObjCMethodDecl *MD) {
3723 llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*>::iterator
3724 I = MethodDefinitions.find(MD);
3725 if (I != MethodDefinitions.end())
3726 return I->second;
3727
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +00003728 return NULL;
3729}
3730
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +00003731/// GetIvarLayoutName - Returns a unique constant for the given
3732/// ivar layout bitmap.
3733llvm::Constant *CGObjCCommonMac::GetIvarLayoutName(IdentifierInfo *Ident,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003734 const ObjCCommonTypesHelper &ObjCTypes) {
Owen Andersonc9c88b42009-07-31 20:28:54 +00003735 return llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Fariborz Jahaniand80d81b2009-03-05 19:17:31 +00003736}
3737
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003738void CGObjCCommonMac::BuildAggrIvarRecordLayout(const RecordType *RT,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003739 unsigned int BytePos,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003740 bool ForStrongLayout,
3741 bool &HasUnion) {
3742 const RecordDecl *RD = RT->getDecl();
3743 // FIXME - Use iterator.
Jordy Rosedb8264e2011-07-22 02:08:32 +00003744 SmallVector<const FieldDecl*, 16> Fields(RD->field_begin(), RD->field_end());
Chris Lattner2acc6e32011-07-18 04:24:23 +00003745 llvm::Type *Ty = CGM.getTypes().ConvertType(QualType(RT, 0));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003746 const llvm::StructLayout *RecLayout =
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003747 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(Ty));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003748
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003749 BuildAggrIvarLayout(0, RecLayout, RD, Fields, BytePos,
3750 ForStrongLayout, HasUnion);
3751}
3752
Daniel Dunbar5a5a8032009-05-03 21:05:10 +00003753void CGObjCCommonMac::BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003754 const llvm::StructLayout *Layout,
3755 const RecordDecl *RD,
Jordy Rosedb8264e2011-07-22 02:08:32 +00003756 const SmallVectorImpl<const FieldDecl*> &RecFields,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003757 unsigned int BytePos, bool ForStrongLayout,
3758 bool &HasUnion) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003759 bool IsUnion = (RD && RD->isUnion());
3760 uint64_t MaxUnionIvarSize = 0;
3761 uint64_t MaxSkippedUnionIvarSize = 0;
Jordy Rosedb8264e2011-07-22 02:08:32 +00003762 const FieldDecl *MaxField = 0;
3763 const FieldDecl *MaxSkippedField = 0;
3764 const FieldDecl *LastFieldBitfieldOrUnnamed = 0;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003765 uint64_t MaxFieldOffset = 0;
3766 uint64_t MaxSkippedFieldOffset = 0;
Argyrios Kyrtzidis0dc75092010-09-06 12:00:10 +00003767 uint64_t LastBitfieldOrUnnamedOffset = 0;
John McCallf85e1932011-06-15 23:02:42 +00003768 uint64_t FirstFieldDelta = 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003769
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003770 if (RecFields.empty())
3771 return;
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003772 unsigned WordSizeInBits = CGM.getContext().getTargetInfo().getPointerWidth(0);
3773 unsigned ByteSizeInBits = CGM.getContext().getTargetInfo().getCharWidth();
John McCallf85e1932011-06-15 23:02:42 +00003774 if (!RD && CGM.getLangOptions().ObjCAutoRefCount) {
Jordy Rosedb8264e2011-07-22 02:08:32 +00003775 const FieldDecl *FirstField = RecFields[0];
John McCallf85e1932011-06-15 23:02:42 +00003776 FirstFieldDelta =
3777 ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(FirstField));
3778 }
3779
Chris Lattnerf1690852009-03-31 08:48:01 +00003780 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
Jordy Rosedb8264e2011-07-22 02:08:32 +00003781 const FieldDecl *Field = RecFields[i];
Daniel Dunbare05cc982009-05-03 23:35:23 +00003782 uint64_t FieldOffset;
Anders Carlssonfc514ab2009-07-24 17:23:54 +00003783 if (RD) {
Daniel Dunbarf8f8eba2010-04-14 17:02:21 +00003784 // Note that 'i' here is actually the field index inside RD of Field,
3785 // although this dependency is hidden.
3786 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
John McCallf85e1932011-06-15 23:02:42 +00003787 FieldOffset = (RL.getFieldOffset(i) / ByteSizeInBits) - FirstFieldDelta;
Anders Carlssonfc514ab2009-07-24 17:23:54 +00003788 } else
John McCallf85e1932011-06-15 23:02:42 +00003789 FieldOffset =
3790 ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(Field)) - FirstFieldDelta;
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003791
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003792 // Skip over unnamed or bitfields
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003793 if (!Field->getIdentifier() || Field->isBitField()) {
Argyrios Kyrtzidis0dc75092010-09-06 12:00:10 +00003794 LastFieldBitfieldOrUnnamed = Field;
3795 LastBitfieldOrUnnamedOffset = FieldOffset;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003796 continue;
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003797 }
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003798
Argyrios Kyrtzidis0dc75092010-09-06 12:00:10 +00003799 LastFieldBitfieldOrUnnamed = 0;
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003800 QualType FQT = Field->getType();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003801 if (FQT->isRecordType() || FQT->isUnionType()) {
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003802 if (FQT->isUnionType())
3803 HasUnion = true;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003804
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003805 BuildAggrIvarRecordLayout(FQT->getAs<RecordType>(),
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003806 BytePos + FieldOffset,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003807 ForStrongLayout, HasUnion);
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003808 continue;
3809 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003810
Chris Lattnerf1690852009-03-31 08:48:01 +00003811 if (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003812 const ConstantArrayType *CArray =
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003813 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003814 uint64_t ElCount = CArray->getSize().getZExtValue();
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003815 assert(CArray && "only array with known element size is supported");
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003816 FQT = CArray->getElementType();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003817 while (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
3818 const ConstantArrayType *CArray =
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003819 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003820 ElCount *= CArray->getSize().getZExtValue();
Fariborz Jahanian667423a2009-03-25 22:36:49 +00003821 FQT = CArray->getElementType();
3822 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003823
3824 assert(!FQT->isUnionType() &&
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003825 "layout for array of unions not supported");
Fariborz Jahanianf96bdf42011-01-03 19:23:18 +00003826 if (FQT->isRecordType() && ElCount) {
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003827 int OldIndex = IvarsInfo.size() - 1;
3828 int OldSkIndex = SkipIvars.size() -1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003829
Ted Kremenek6217b802009-07-29 21:53:49 +00003830 const RecordType *RT = FQT->getAs<RecordType>();
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003831 BuildAggrIvarRecordLayout(RT, BytePos + FieldOffset,
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003832 ForStrongLayout, HasUnion);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003833
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003834 // Replicate layout information for each array element. Note that
3835 // one element is already done.
3836 uint64_t ElIx = 1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003837 for (int FirstIndex = IvarsInfo.size() - 1,
3838 FirstSkIndex = SkipIvars.size() - 1 ;ElIx < ElCount; ElIx++) {
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003839 uint64_t Size = CGM.getContext().getTypeSize(RT)/ByteSizeInBits;
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003840 for (int i = OldIndex+1; i <= FirstIndex; ++i)
3841 IvarsInfo.push_back(GC_IVAR(IvarsInfo[i].ivar_bytepos + Size*ElIx,
3842 IvarsInfo[i].ivar_size));
3843 for (int i = OldSkIndex+1; i <= FirstSkIndex; ++i)
3844 SkipIvars.push_back(GC_IVAR(SkipIvars[i].ivar_bytepos + Size*ElIx,
3845 SkipIvars[i].ivar_size));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003846 }
3847 continue;
3848 }
Fariborz Jahaniana5a10c32009-03-10 16:22:08 +00003849 }
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003850 // At this point, we are done with Record/Union and array there of.
3851 // For other arrays we are down to its element type.
John McCall0953e762009-09-24 19:53:00 +00003852 Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), FQT);
Daniel Dunbar5e563dd2009-05-03 13:55:09 +00003853
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003854 unsigned FieldSize = CGM.getContext().getTypeSize(Field->getType());
John McCall0953e762009-09-24 19:53:00 +00003855 if ((ForStrongLayout && GCAttr == Qualifiers::Strong)
3856 || (!ForStrongLayout && GCAttr == Qualifiers::Weak)) {
Daniel Dunbar487993b2009-05-03 13:32:01 +00003857 if (IsUnion) {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003858 uint64_t UnionIvarSize = FieldSize / WordSizeInBits;
Daniel Dunbar487993b2009-05-03 13:32:01 +00003859 if (UnionIvarSize > MaxUnionIvarSize) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003860 MaxUnionIvarSize = UnionIvarSize;
3861 MaxField = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003862 MaxFieldOffset = FieldOffset;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003863 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003864 } else {
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003865 IvarsInfo.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003866 FieldSize / WordSizeInBits));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003867 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003868 } else if ((ForStrongLayout &&
John McCall0953e762009-09-24 19:53:00 +00003869 (GCAttr == Qualifiers::GCNone || GCAttr == Qualifiers::Weak))
3870 || (!ForStrongLayout && GCAttr != Qualifiers::Weak)) {
Daniel Dunbar487993b2009-05-03 13:32:01 +00003871 if (IsUnion) {
Mike Stumpf5408fe2009-05-16 07:57:57 +00003872 // FIXME: Why the asymmetry? We divide by word size in bits on other
3873 // side.
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003874 uint64_t UnionIvarSize = FieldSize;
Daniel Dunbar487993b2009-05-03 13:32:01 +00003875 if (UnionIvarSize > MaxSkippedUnionIvarSize) {
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003876 MaxSkippedUnionIvarSize = UnionIvarSize;
3877 MaxSkippedField = Field;
Daniel Dunbar900c1982009-05-03 23:31:46 +00003878 MaxSkippedFieldOffset = FieldOffset;
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003879 }
Daniel Dunbar487993b2009-05-03 13:32:01 +00003880 } else {
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003881 // FIXME: Why the asymmetry, we divide by byte size in bits here?
Daniel Dunbar25d583e2009-05-03 14:17:18 +00003882 SkipIvars.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003883 FieldSize / ByteSizeInBits));
Fariborz Jahanian820e0202009-03-11 00:07:04 +00003884 }
3885 }
3886 }
Daniel Dunbard58edcb2009-05-03 14:10:34 +00003887
Argyrios Kyrtzidis0dc75092010-09-06 12:00:10 +00003888 if (LastFieldBitfieldOrUnnamed) {
3889 if (LastFieldBitfieldOrUnnamed->isBitField()) {
3890 // Last field was a bitfield. Must update skip info.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003891 uint64_t BitFieldSize
3892 = LastFieldBitfieldOrUnnamed->getBitWidthValue(CGM.getContext());
Argyrios Kyrtzidis0dc75092010-09-06 12:00:10 +00003893 GC_IVAR skivar;
3894 skivar.ivar_bytepos = BytePos + LastBitfieldOrUnnamedOffset;
3895 skivar.ivar_size = (BitFieldSize / ByteSizeInBits)
3896 + ((BitFieldSize % ByteSizeInBits) != 0);
3897 SkipIvars.push_back(skivar);
3898 } else {
3899 assert(!LastFieldBitfieldOrUnnamed->getIdentifier() &&"Expected unnamed");
3900 // Last field was unnamed. Must update skip info.
3901 unsigned FieldSize
3902 = CGM.getContext().getTypeSize(LastFieldBitfieldOrUnnamed->getType());
3903 SkipIvars.push_back(GC_IVAR(BytePos + LastBitfieldOrUnnamedOffset,
3904 FieldSize / ByteSizeInBits));
3905 }
Fariborz Jahanian7fb16272009-04-21 18:33:06 +00003906 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003907
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003908 if (MaxField)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003909 IvarsInfo.push_back(GC_IVAR(BytePos + MaxFieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003910 MaxUnionIvarSize));
3911 if (MaxSkippedField)
Daniel Dunbar900c1982009-05-03 23:31:46 +00003912 SkipIvars.push_back(GC_IVAR(BytePos + MaxSkippedFieldOffset,
Daniel Dunbar8b2926c2009-05-03 13:44:42 +00003913 MaxSkippedUnionIvarSize));
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00003914}
3915
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00003916/// BuildIvarLayoutBitmap - This routine is the horsework for doing all
3917/// the computations and returning the layout bitmap (for ivar or blocks) in
3918/// the given argument BitMap string container. Routine reads
3919/// two containers, IvarsInfo and SkipIvars which are assumed to be
3920/// filled already by the caller.
Chris Lattner94010692012-02-05 02:30:40 +00003921llvm::Constant *CGObjCCommonMac::BuildIvarLayoutBitmap(std::string &BitMap) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003922 unsigned int WordsToScan, WordsToSkip;
Chris Lattner8b418682012-02-07 00:39:47 +00003923 llvm::Type *PtrTy = CGM.Int8PtrTy;
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003924
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003925 // Build the string of skip/scan nibbles
Chris Lattner5f9e2722011-07-23 10:55:15 +00003926 SmallVector<SKIP_SCAN, 32> SkipScanIvars;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003927 unsigned int WordSize =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003928 CGM.getTypes().getTargetData().getTypeAllocSize(PtrTy);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003929 if (IvarsInfo[0].ivar_bytepos == 0) {
3930 WordsToSkip = 0;
3931 WordsToScan = IvarsInfo[0].ivar_size;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003932 } else {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003933 WordsToSkip = IvarsInfo[0].ivar_bytepos/WordSize;
3934 WordsToScan = IvarsInfo[0].ivar_size;
3935 }
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003936 for (unsigned int i=1, Last=IvarsInfo.size(); i != Last; i++) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003937 unsigned int TailPrevGCObjC =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003938 IvarsInfo[i-1].ivar_bytepos + IvarsInfo[i-1].ivar_size * WordSize;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003939 if (IvarsInfo[i].ivar_bytepos == TailPrevGCObjC) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003940 // consecutive 'scanned' object pointers.
3941 WordsToScan += IvarsInfo[i].ivar_size;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003942 } else {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003943 // Skip over 'gc'able object pointer which lay over each other.
3944 if (TailPrevGCObjC > IvarsInfo[i].ivar_bytepos)
3945 continue;
3946 // Must skip over 1 or more words. We save current skip/scan values
3947 // and start a new pair.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003948 SKIP_SCAN SkScan;
3949 SkScan.skip = WordsToSkip;
3950 SkScan.scan = WordsToScan;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003951 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003952
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003953 // Skip the hole.
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003954 SkScan.skip = (IvarsInfo[i].ivar_bytepos - TailPrevGCObjC) / WordSize;
3955 SkScan.scan = 0;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003956 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003957 WordsToSkip = 0;
3958 WordsToScan = IvarsInfo[i].ivar_size;
3959 }
3960 }
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003961 if (WordsToScan > 0) {
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003962 SKIP_SCAN SkScan;
3963 SkScan.skip = WordsToSkip;
3964 SkScan.scan = WordsToScan;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003965 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003966 }
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003967
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003968 if (!SkipIvars.empty()) {
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003969 unsigned int LastIndex = SkipIvars.size()-1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003970 int LastByteSkipped =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003971 SkipIvars[LastIndex].ivar_bytepos + SkipIvars[LastIndex].ivar_size;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003972 LastIndex = IvarsInfo.size()-1;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00003973 int LastByteScanned =
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003974 IvarsInfo[LastIndex].ivar_bytepos +
3975 IvarsInfo[LastIndex].ivar_size * WordSize;
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003976 // Compute number of bytes to skip at the tail end of the last ivar scanned.
Benjamin Kramer54d76db2009-12-25 15:43:36 +00003977 if (LastByteSkipped > LastByteScanned) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003978 unsigned int TotalWords = (LastByteSkipped + (WordSize -1)) / WordSize;
Fariborz Jahanianc8ce9c82009-03-12 22:50:49 +00003979 SKIP_SCAN SkScan;
3980 SkScan.skip = TotalWords - (LastByteScanned/WordSize);
3981 SkScan.scan = 0;
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003982 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003983 }
3984 }
3985 // Mini optimization of nibbles such that an 0xM0 followed by 0x0N is produced
3986 // as 0xMN.
Fariborz Jahanian81adc052009-04-24 16:17:09 +00003987 int SkipScan = SkipScanIvars.size()-1;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00003988 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003989 if ((i < SkipScan) && SkipScanIvars[i].skip && SkipScanIvars[i].scan == 0
3990 && SkipScanIvars[i+1].skip == 0 && SkipScanIvars[i+1].scan) {
3991 // 0xM0 followed by 0x0N detected.
3992 SkipScanIvars[i].scan = SkipScanIvars[i+1].scan;
3993 for (int j = i+1; j < SkipScan; j++)
3994 SkipScanIvars[j] = SkipScanIvars[j+1];
3995 --SkipScan;
3996 }
3997 }
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00003998
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00003999 // Generate the string.
Daniel Dunbar31682fd2009-05-03 23:21:22 +00004000 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00004001 unsigned char byte;
4002 unsigned int skip_small = SkipScanIvars[i].skip % 0xf;
4003 unsigned int scan_small = SkipScanIvars[i].scan % 0xf;
4004 unsigned int skip_big = SkipScanIvars[i].skip / 0xf;
4005 unsigned int scan_big = SkipScanIvars[i].scan / 0xf;
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004006
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00004007 // first skip big.
4008 for (unsigned int ix = 0; ix < skip_big; ix++)
4009 BitMap += (unsigned char)(0xf0);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004010
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00004011 // next (skip small, scan)
Daniel Dunbar31682fd2009-05-03 23:21:22 +00004012 if (skip_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00004013 byte = skip_small << 4;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00004014 if (scan_big > 0) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00004015 byte |= 0xf;
4016 --scan_big;
Daniel Dunbar31682fd2009-05-03 23:21:22 +00004017 } else if (scan_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00004018 byte |= scan_small;
4019 scan_small = 0;
4020 }
4021 BitMap += byte;
4022 }
4023 // next scan big
4024 for (unsigned int ix = 0; ix < scan_big; ix++)
4025 BitMap += (unsigned char)(0x0f);
4026 // last scan small
Daniel Dunbar31682fd2009-05-03 23:21:22 +00004027 if (scan_small) {
Fariborz Jahanian9397e1d2009-03-11 20:59:05 +00004028 byte = scan_small;
4029 BitMap += byte;
4030 }
4031 }
4032 // null terminate string.
Fariborz Jahanian667423a2009-03-25 22:36:49 +00004033 unsigned char zero = 0;
4034 BitMap += zero;
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004035
4036 llvm::GlobalVariable * Entry =
4037 CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
Chris Lattner94010692012-02-05 02:30:40 +00004038 llvm::ConstantDataArray::getString(VMContext, BitMap,false),
Daniel Dunbaraf19ac42011-03-25 20:09:09 +00004039 ((ObjCABI == 2) ?
4040 "__TEXT,__objc_classname,cstring_literals" :
4041 "__TEXT,__cstring,cstring_literals"),
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004042 1, true);
4043 return getConstantGEP(VMContext, Entry, 0, 0);
4044}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004045
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004046/// BuildIvarLayout - Builds ivar layout bitmap for the class
4047/// implementation for the __strong or __weak case.
4048/// The layout map displays which words in ivar list must be skipped
4049/// and which must be scanned by GC (see below). String is built of bytes.
4050/// Each byte is divided up in two nibbles (4-bit each). Left nibble is count
4051/// of words to skip and right nibble is count of words to scan. So, each
4052/// nibble represents up to 15 workds to skip or scan. Skipping the rest is
4053/// represented by a 0x00 byte which also ends the string.
4054/// 1. when ForStrongLayout is true, following ivars are scanned:
4055/// - id, Class
4056/// - object *
4057/// - __strong anything
4058///
4059/// 2. When ForStrongLayout is false, following ivars are scanned:
4060/// - __weak anything
4061///
4062llvm::Constant *CGObjCCommonMac::BuildIvarLayout(
4063 const ObjCImplementationDecl *OMD,
4064 bool ForStrongLayout) {
4065 bool hasUnion = false;
4066
Chris Lattner8b418682012-02-07 00:39:47 +00004067 llvm::Type *PtrTy = CGM.Int8PtrTy;
Douglas Gregore289d812011-09-13 17:21:33 +00004068 if (CGM.getLangOptions().getGC() == LangOptions::NonGC &&
John McCallf85e1932011-06-15 23:02:42 +00004069 !CGM.getLangOptions().ObjCAutoRefCount)
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004070 return llvm::Constant::getNullValue(PtrTy);
4071
Jordy Rosedb8264e2011-07-22 02:08:32 +00004072 const ObjCInterfaceDecl *OI = OMD->getClassInterface();
4073 SmallVector<const FieldDecl*, 32> RecFields;
Fariborz Jahanianbf9eb882011-06-28 18:05:25 +00004074 if (CGM.getLangOptions().ObjCAutoRefCount) {
Jordy Rosedb8264e2011-07-22 02:08:32 +00004075 for (const ObjCIvarDecl *IVD = OI->all_declared_ivar_begin();
Fariborz Jahanianbf9eb882011-06-28 18:05:25 +00004076 IVD; IVD = IVD->getNextIvar())
4077 RecFields.push_back(cast<FieldDecl>(IVD));
4078 }
4079 else {
Jordy Rosedb8264e2011-07-22 02:08:32 +00004080 SmallVector<const ObjCIvarDecl*, 32> Ivars;
John McCallf85e1932011-06-15 23:02:42 +00004081 CGM.getContext().DeepCollectObjCIvars(OI, true, Ivars);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004082
Jordy Rosedb8264e2011-07-22 02:08:32 +00004083 // FIXME: This is not ideal; we shouldn't have to do this copy.
4084 RecFields.append(Ivars.begin(), Ivars.end());
Fariborz Jahanianbf9eb882011-06-28 18:05:25 +00004085 }
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004086
4087 if (RecFields.empty())
4088 return llvm::Constant::getNullValue(PtrTy);
4089
4090 SkipIvars.clear();
4091 IvarsInfo.clear();
4092
4093 BuildAggrIvarLayout(OMD, 0, 0, RecFields, 0, ForStrongLayout, hasUnion);
4094 if (IvarsInfo.empty())
4095 return llvm::Constant::getNullValue(PtrTy);
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00004096 // Sort on byte position in case we encounterred a union nested in
4097 // the ivar list.
4098 if (hasUnion && !IvarsInfo.empty())
4099 std::sort(IvarsInfo.begin(), IvarsInfo.end());
4100 if (hasUnion && !SkipIvars.empty())
4101 std::sort(SkipIvars.begin(), SkipIvars.end());
4102
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004103 std::string BitMap;
Fariborz Jahanianb8fd2eb2010-08-05 00:19:48 +00004104 llvm::Constant *C = BuildIvarLayoutBitmap(BitMap);
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004105
4106 if (CGM.getLangOptions().ObjCGCBitmapPrint) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004107 printf("\n%s ivar layout for class '%s': ",
Fariborz Jahanian3d2ad662009-04-20 22:03:45 +00004108 ForStrongLayout ? "strong" : "weak",
Daniel Dunbar4087f272010-08-17 22:39:59 +00004109 OMD->getClassInterface()->getName().data());
Fariborz Jahanian3d2ad662009-04-20 22:03:45 +00004110 const unsigned char *s = (unsigned char*)BitMap.c_str();
4111 for (unsigned i = 0; i < BitMap.size(); i++)
4112 if (!(s[i] & 0xf0))
4113 printf("0x0%x%s", s[i], s[i] != 0 ? ", " : "");
4114 else
4115 printf("0x%x%s", s[i], s[i] != 0 ? ", " : "");
4116 printf("\n");
4117 }
Fariborz Jahanian93ce50d2010-08-04 23:55:24 +00004118 return C;
Fariborz Jahaniand61a50a2009-03-05 22:39:55 +00004119}
4120
Fariborz Jahanian56210f72009-01-21 23:34:32 +00004121llvm::Constant *CGObjCCommonMac::GetMethodVarName(Selector Sel) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00004122 llvm::GlobalVariable *&Entry = MethodVarNames[Sel];
4123
Chris Lattner0b239712012-02-06 22:16:34 +00004124 // FIXME: Avoid std::string in "Sel.getAsString()"
Daniel Dunbar63c5b502009-03-09 21:49:58 +00004125 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004126 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_NAME_",
Chris Lattner94010692012-02-05 02:30:40 +00004127 llvm::ConstantDataArray::getString(VMContext, Sel.getAsString()),
Daniel Dunbaraf19ac42011-03-25 20:09:09 +00004128 ((ObjCABI == 2) ?
4129 "__TEXT,__objc_methname,cstring_literals" :
4130 "__TEXT,__cstring,cstring_literals"),
Daniel Dunbarb90bb002009-04-14 23:14:47 +00004131 1, true);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00004132
Owen Andersona1cf15f2009-07-14 23:10:40 +00004133 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004134}
4135
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004136// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00004137llvm::Constant *CGObjCCommonMac::GetMethodVarName(IdentifierInfo *ID) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004138 return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID));
4139}
4140
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00004141llvm::Constant *CGObjCCommonMac::GetMethodVarType(const FieldDecl *Field) {
Devang Patel7794bb82009-03-04 18:21:39 +00004142 std::string TypeStr;
4143 CGM.getContext().getObjCEncodingForType(Field->getType(), TypeStr, Field);
4144
4145 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004146
Daniel Dunbar63c5b502009-03-09 21:49:58 +00004147 if (!Entry)
4148 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
Chris Lattner94010692012-02-05 02:30:40 +00004149 llvm::ConstantDataArray::getString(VMContext, TypeStr),
Daniel Dunbaraf19ac42011-03-25 20:09:09 +00004150 ((ObjCABI == 2) ?
4151 "__TEXT,__objc_methtype,cstring_literals" :
4152 "__TEXT,__cstring,cstring_literals"),
Daniel Dunbarb90bb002009-04-14 23:14:47 +00004153 1, true);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004154
Owen Andersona1cf15f2009-07-14 23:10:40 +00004155 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00004156}
4157
Bob Wilsondc8dab62011-11-30 01:57:58 +00004158llvm::Constant *CGObjCCommonMac::GetMethodVarType(const ObjCMethodDecl *D,
4159 bool Extended) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004160 std::string TypeStr;
Douglas Gregorf968d832011-05-27 01:19:52 +00004161 if (CGM.getContext().getObjCEncodingForMethodDecl(
4162 const_cast<ObjCMethodDecl*>(D),
Bob Wilsondc8dab62011-11-30 01:57:58 +00004163 TypeStr, Extended))
Douglas Gregorf968d832011-05-27 01:19:52 +00004164 return 0;
Devang Patel7794bb82009-03-04 18:21:39 +00004165
4166 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
4167
Daniel Dunbarb90bb002009-04-14 23:14:47 +00004168 if (!Entry)
4169 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
Chris Lattner94010692012-02-05 02:30:40 +00004170 llvm::ConstantDataArray::getString(VMContext, TypeStr),
Daniel Dunbaraf19ac42011-03-25 20:09:09 +00004171 ((ObjCABI == 2) ?
4172 "__TEXT,__objc_methtype,cstring_literals" :
4173 "__TEXT,__cstring,cstring_literals"),
Daniel Dunbarb90bb002009-04-14 23:14:47 +00004174 1, true);
Devang Patel7794bb82009-03-04 18:21:39 +00004175
Owen Andersona1cf15f2009-07-14 23:10:40 +00004176 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004177}
4178
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00004179// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian56210f72009-01-21 23:34:32 +00004180llvm::Constant *CGObjCCommonMac::GetPropertyName(IdentifierInfo *Ident) {
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00004181 llvm::GlobalVariable *&Entry = PropertyNames[Ident];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004182
Daniel Dunbar63c5b502009-03-09 21:49:58 +00004183 if (!Entry)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004184 Entry = CreateMetadataVar("\01L_OBJC_PROP_NAME_ATTR_",
Chris Lattner94010692012-02-05 02:30:40 +00004185 llvm::ConstantDataArray::getString(VMContext,
4186 Ident->getNameStart()),
Daniel Dunbar63c5b502009-03-09 21:49:58 +00004187 "__TEXT,__cstring,cstring_literals",
Daniel Dunbarb90bb002009-04-14 23:14:47 +00004188 1, true);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00004189
Owen Andersona1cf15f2009-07-14 23:10:40 +00004190 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00004191}
4192
4193// FIXME: Merge into a single cstring creation function.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004194// FIXME: This Decl should be more precise.
Daniel Dunbar63c5b502009-03-09 21:49:58 +00004195llvm::Constant *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004196CGObjCCommonMac::GetPropertyTypeString(const ObjCPropertyDecl *PD,
4197 const Decl *Container) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00004198 std::string TypeStr;
4199 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00004200 return GetPropertyName(&CGM.getContext().Idents.get(TypeStr));
4201}
4202
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004203void CGObjCCommonMac::GetNameForMethod(const ObjCMethodDecl *D,
Fariborz Jahanian56210f72009-01-21 23:34:32 +00004204 const ObjCContainerDecl *CD,
Chris Lattner5f9e2722011-07-23 10:55:15 +00004205 SmallVectorImpl<char> &Name) {
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004206 llvm::raw_svector_ostream OS(Name);
Fariborz Jahanian679a5022009-01-10 21:06:09 +00004207 assert (CD && "Missing container decl in GetNameForMethod");
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004208 OS << '\01' << (D->isInstanceMethod() ? '-' : '+')
4209 << '[' << CD->getName();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004210 if (const ObjCCategoryImplDecl *CID =
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004211 dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext()))
Benjamin Kramer900fc632010-04-17 09:33:03 +00004212 OS << '(' << CID << ')';
Daniel Dunbarc575ce72009-10-19 01:21:19 +00004213 OS << ' ' << D->getSelector().getAsString() << ']';
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00004214}
4215
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004216void CGObjCMac::FinishModule() {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004217 EmitModuleInfo();
4218
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004219 // Emit the dummy bodies for any protocols which were referenced but
4220 // never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004221 for (llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*>::iterator
Chris Lattnerad64e022009-07-17 23:57:13 +00004222 I = Protocols.begin(), e = Protocols.end(); I != e; ++I) {
4223 if (I->second->hasInitializer())
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004224 continue;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004225
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00004226 llvm::Constant *Values[5];
Owen Andersonc9c88b42009-07-31 20:28:54 +00004227 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
Chris Lattnerad64e022009-07-17 23:57:13 +00004228 Values[1] = GetClassName(I->first);
Owen Andersonc9c88b42009-07-31 20:28:54 +00004229 Values[2] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004230 Values[3] = Values[4] =
Owen Andersonc9c88b42009-07-31 20:28:54 +00004231 llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
Chris Lattnerad64e022009-07-17 23:57:13 +00004232 I->second->setLinkage(llvm::GlobalValue::InternalLinkage);
Owen Anderson08e25242009-07-27 22:29:56 +00004233 I->second->setInitializer(llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004234 Values));
Chris Lattnerad64e022009-07-17 23:57:13 +00004235 CGM.AddUsedGlobal(I->second);
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004236 }
4237
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00004238 // Add assembler directives to add lazy undefined symbol references
4239 // for classes which are referenced but not defined. This is
4240 // important for correct linker interaction.
Daniel Dunbar33063492009-09-07 00:20:42 +00004241 //
4242 // FIXME: It would be nice if we had an LLVM construct for this.
4243 if (!LazySymbols.empty() || !DefinedSymbols.empty()) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00004244 SmallString<256> Asm;
Daniel Dunbar33063492009-09-07 00:20:42 +00004245 Asm += CGM.getModule().getModuleInlineAsm();
4246 if (!Asm.empty() && Asm.back() != '\n')
4247 Asm += '\n';
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00004248
Daniel Dunbar33063492009-09-07 00:20:42 +00004249 llvm::raw_svector_ostream OS(Asm);
Daniel Dunbar33063492009-09-07 00:20:42 +00004250 for (llvm::SetVector<IdentifierInfo*>::iterator I = DefinedSymbols.begin(),
4251 e = DefinedSymbols.end(); I != e; ++I)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00004252 OS << "\t.objc_class_name_" << (*I)->getName() << "=0\n"
4253 << "\t.globl .objc_class_name_" << (*I)->getName() << "\n";
Chris Lattnerafd5eda2010-04-17 18:26:20 +00004254 for (llvm::SetVector<IdentifierInfo*>::iterator I = LazySymbols.begin(),
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00004255 e = LazySymbols.end(); I != e; ++I) {
Chris Lattnerafd5eda2010-04-17 18:26:20 +00004256 OS << "\t.lazy_reference .objc_class_name_" << (*I)->getName() << "\n";
Fariborz Jahanianb9c5b3d2010-06-21 22:05:18 +00004257 }
4258
4259 for (size_t i = 0; i < DefinedCategoryNames.size(); ++i) {
4260 OS << "\t.objc_category_name_" << DefinedCategoryNames[i] << "=0\n"
4261 << "\t.globl .objc_category_name_" << DefinedCategoryNames[i] << "\n";
4262 }
Chris Lattnerafd5eda2010-04-17 18:26:20 +00004263
Daniel Dunbar33063492009-09-07 00:20:42 +00004264 CGM.getModule().setModuleInlineAsm(OS.str());
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00004265 }
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004266}
4267
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004268CGObjCNonFragileABIMac::CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm)
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004269 : CGObjCCommonMac(cgm),
Mike Stump1eb44332009-09-09 15:08:12 +00004270 ObjCTypes(cgm) {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004271 ObjCEmptyCacheVar = ObjCEmptyVtableVar = NULL;
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004272 ObjCABI = 2;
4273}
4274
Daniel Dunbarf77ac862008-08-11 21:35:06 +00004275/* *** */
4276
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004277ObjCCommonTypesHelper::ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm)
Douglas Gregor65a1e672012-01-17 23:38:32 +00004278 : VMContext(cgm.getLLVMContext()), CGM(cgm), ExternalProtocolPtrTy(0)
4279{
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004280 CodeGen::CodeGenTypes &Types = CGM.getTypes();
4281 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004282
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004283 ShortTy = Types.ConvertType(Ctx.ShortTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004284 IntTy = Types.ConvertType(Ctx.IntTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004285 LongTy = Types.ConvertType(Ctx.LongTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00004286 LongLongTy = Types.ConvertType(Ctx.LongLongTy);
Chris Lattner8b418682012-02-07 00:39:47 +00004287 Int8PtrTy = CGM.Int8PtrTy;
4288 Int8PtrPtrTy = CGM.Int8PtrPtrTy;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004289
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004290 ObjectPtrTy = Types.ConvertType(Ctx.getObjCIdType());
Owen Anderson96e0fc72009-07-29 22:16:19 +00004291 PtrObjectPtrTy = llvm::PointerType::getUnqual(ObjectPtrTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004292 SelectorPtrTy = Types.ConvertType(Ctx.getObjCSelType());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004293
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004294 // I'm not sure I like this. The implicit coordination is a bit
4295 // gross. We should solve this in a reasonable fashion because this
4296 // is a pretty common task (match some runtime data structure with
4297 // an LLVM data structure).
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004298
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004299 // FIXME: This is leaked.
4300 // FIXME: Merge with rewriter code?
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004301
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004302 // struct _objc_super {
4303 // id self;
4304 // Class cls;
4305 // }
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004306 RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
Daniel Dunbardaa3ac52010-04-29 16:29:11 +00004307 Ctx.getTranslationUnitDecl(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004308 SourceLocation(), SourceLocation(),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004309 &Ctx.Idents.get("_objc_super"));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004310 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), 0,
Richard Smith7a614d82011-06-11 17:19:42 +00004311 Ctx.getObjCIdType(), 0, 0, false, false));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004312 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), 0,
Richard Smith7a614d82011-06-11 17:19:42 +00004313 Ctx.getObjCClassType(), 0, 0, false, false));
Douglas Gregor838db382010-02-11 01:19:42 +00004314 RD->completeDefinition();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004315
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004316 SuperCTy = Ctx.getTagDeclType(RD);
4317 SuperPtrCTy = Ctx.getPointerType(SuperCTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004318
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004319 SuperTy = cast<llvm::StructType>(Types.ConvertType(SuperCTy));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004320 SuperPtrTy = llvm::PointerType::getUnqual(SuperTy);
4321
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004322 // struct _prop_t {
4323 // char *name;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004324 // char *attributes;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004325 // }
Chris Lattnerc1c20112011-08-12 17:43:31 +00004326 PropertyTy = llvm::StructType::create("struct._prop_t",
4327 Int8PtrTy, Int8PtrTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004328
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004329 // struct _prop_list_t {
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004330 // uint32_t entsize; // sizeof(struct _prop_t)
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004331 // uint32_t count_of_properties;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004332 // struct _prop_t prop_list[count_of_properties];
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004333 // }
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004334 PropertyListTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004335 llvm::StructType::create("struct._prop_list_t", IntTy, IntTy,
4336 llvm::ArrayType::get(PropertyTy, 0), NULL);
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004337 // struct _prop_list_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004338 PropertyListPtrTy = llvm::PointerType::getUnqual(PropertyListTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004339
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004340 // struct _objc_method {
4341 // SEL _cmd;
4342 // char *method_type;
4343 // char *_imp;
4344 // }
Chris Lattnerc1c20112011-08-12 17:43:31 +00004345 MethodTy = llvm::StructType::create("struct._objc_method",
4346 SelectorPtrTy, Int8PtrTy, Int8PtrTy,
4347 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004348
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004349 // struct _objc_cache *
Chris Lattnerc1c20112011-08-12 17:43:31 +00004350 CacheTy = llvm::StructType::create(VMContext, "struct._objc_cache");
Owen Anderson96e0fc72009-07-29 22:16:19 +00004351 CachePtrTy = llvm::PointerType::getUnqual(CacheTy);
Fariborz Jahanian9d96bce2011-06-22 20:21:51 +00004352
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004353}
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00004354
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004355ObjCTypesHelper::ObjCTypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004356 : ObjCCommonTypesHelper(cgm) {
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004357 // struct _objc_method_description {
4358 // SEL name;
4359 // char *types;
4360 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004361 MethodDescriptionTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004362 llvm::StructType::create("struct._objc_method_description",
4363 SelectorPtrTy, Int8PtrTy, NULL);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004364
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004365 // struct _objc_method_description_list {
4366 // int count;
4367 // struct _objc_method_description[1];
4368 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004369 MethodDescriptionListTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004370 llvm::StructType::create("struct._objc_method_description_list",
4371 IntTy,
4372 llvm::ArrayType::get(MethodDescriptionTy, 0),NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004373
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004374 // struct _objc_method_description_list *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004375 MethodDescriptionListPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +00004376 llvm::PointerType::getUnqual(MethodDescriptionListTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004377
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004378 // Protocol description structures
4379
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004380 // struct _objc_protocol_extension {
4381 // uint32_t size; // sizeof(struct _objc_protocol_extension)
4382 // struct _objc_method_description_list *optional_instance_methods;
4383 // struct _objc_method_description_list *optional_class_methods;
4384 // struct _objc_property_list *instance_properties;
Bob Wilsondc8dab62011-11-30 01:57:58 +00004385 // const char ** extendedMethodTypes;
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004386 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004387 ProtocolExtensionTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004388 llvm::StructType::create("struct._objc_protocol_extension",
4389 IntTy, MethodDescriptionListPtrTy,
4390 MethodDescriptionListPtrTy, PropertyListPtrTy,
Bob Wilsondc8dab62011-11-30 01:57:58 +00004391 Int8PtrPtrTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004392
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004393 // struct _objc_protocol_extension *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004394 ProtocolExtensionPtrTy = llvm::PointerType::getUnqual(ProtocolExtensionTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004395
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00004396 // Handle recursive construction of Protocol and ProtocolList types
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004397
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004398 ProtocolTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004399 llvm::StructType::create(VMContext, "struct._objc_protocol");
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004400
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004401 ProtocolListTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004402 llvm::StructType::create(VMContext, "struct._objc_protocol_list");
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004403 ProtocolListTy->setBody(llvm::PointerType::getUnqual(ProtocolListTy),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004404 LongTy,
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004405 llvm::ArrayType::get(ProtocolTy, 0),
Fariborz Jahanianee0af742009-01-21 22:04:16 +00004406 NULL);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004407
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004408 // struct _objc_protocol {
4409 // struct _objc_protocol_extension *isa;
4410 // char *protocol_name;
4411 // struct _objc_protocol **_objc_protocol_list;
4412 // struct _objc_method_description_list *instance_methods;
4413 // struct _objc_method_description_list *class_methods;
4414 // }
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004415 ProtocolTy->setBody(ProtocolExtensionPtrTy, Int8PtrTy,
4416 llvm::PointerType::getUnqual(ProtocolListTy),
4417 MethodDescriptionListPtrTy,
4418 MethodDescriptionListPtrTy,
4419 NULL);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004420
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004421 // struct _objc_protocol_list *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004422 ProtocolListPtrTy = llvm::PointerType::getUnqual(ProtocolListTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00004423
Owen Anderson96e0fc72009-07-29 22:16:19 +00004424 ProtocolPtrTy = llvm::PointerType::getUnqual(ProtocolTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004425
4426 // Class description structures
4427
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004428 // struct _objc_ivar {
4429 // char *ivar_name;
4430 // char *ivar_type;
4431 // int ivar_offset;
4432 // }
Chris Lattnerc1c20112011-08-12 17:43:31 +00004433 IvarTy = llvm::StructType::create("struct._objc_ivar",
4434 Int8PtrTy, Int8PtrTy, IntTy, NULL);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004435
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004436 // struct _objc_ivar_list *
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004437 IvarListTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004438 llvm::StructType::create(VMContext, "struct._objc_ivar_list");
Owen Anderson96e0fc72009-07-29 22:16:19 +00004439 IvarListPtrTy = llvm::PointerType::getUnqual(IvarListTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004440
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004441 // struct _objc_method_list *
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004442 MethodListTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004443 llvm::StructType::create(VMContext, "struct._objc_method_list");
Owen Anderson96e0fc72009-07-29 22:16:19 +00004444 MethodListPtrTy = llvm::PointerType::getUnqual(MethodListTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004445
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004446 // struct _objc_class_extension *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004447 ClassExtensionTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004448 llvm::StructType::create("struct._objc_class_extension",
4449 IntTy, Int8PtrTy, PropertyListPtrTy, NULL);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004450 ClassExtensionPtrTy = llvm::PointerType::getUnqual(ClassExtensionTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004451
Chris Lattnerc1c20112011-08-12 17:43:31 +00004452 ClassTy = llvm::StructType::create(VMContext, "struct._objc_class");
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004453
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004454 // struct _objc_class {
4455 // Class isa;
4456 // Class super_class;
4457 // char *name;
4458 // long version;
4459 // long info;
4460 // long instance_size;
4461 // struct _objc_ivar_list *ivars;
4462 // struct _objc_method_list *methods;
4463 // struct _objc_cache *cache;
4464 // struct _objc_protocol_list *protocols;
4465 // char *ivar_layout;
4466 // struct _objc_class_ext *ext;
4467 // };
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004468 ClassTy->setBody(llvm::PointerType::getUnqual(ClassTy),
4469 llvm::PointerType::getUnqual(ClassTy),
4470 Int8PtrTy,
4471 LongTy,
4472 LongTy,
4473 LongTy,
4474 IvarListPtrTy,
4475 MethodListPtrTy,
4476 CachePtrTy,
4477 ProtocolListPtrTy,
4478 Int8PtrTy,
4479 ClassExtensionPtrTy,
4480 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004481
Owen Anderson96e0fc72009-07-29 22:16:19 +00004482 ClassPtrTy = llvm::PointerType::getUnqual(ClassTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004483
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004484 // struct _objc_category {
4485 // char *category_name;
4486 // char *class_name;
4487 // struct _objc_method_list *instance_method;
4488 // struct _objc_method_list *class_method;
4489 // uint32_t size; // sizeof(struct _objc_category)
4490 // struct _objc_property_list *instance_properties;// category's @property
4491 // }
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004492 CategoryTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004493 llvm::StructType::create("struct._objc_category",
4494 Int8PtrTy, Int8PtrTy, MethodListPtrTy,
4495 MethodListPtrTy, ProtocolListPtrTy,
4496 IntTy, PropertyListPtrTy, NULL);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00004497
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004498 // Global metadata structures
4499
Fariborz Jahanian10a42312009-01-21 00:39:53 +00004500 // struct _objc_symtab {
4501 // long sel_ref_cnt;
4502 // SEL *refs;
4503 // short cls_def_cnt;
4504 // short cat_def_cnt;
4505 // char *defs[cls_def_cnt + cat_def_cnt];
4506 // }
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004507 SymtabTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004508 llvm::StructType::create("struct._objc_symtab",
4509 LongTy, SelectorPtrTy, ShortTy, ShortTy,
4510 llvm::ArrayType::get(Int8PtrTy, 0), NULL);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004511 SymtabPtrTy = llvm::PointerType::getUnqual(SymtabTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00004512
Fariborz Jahaniandb286862009-01-22 00:37:21 +00004513 // struct _objc_module {
4514 // long version;
4515 // long size; // sizeof(struct _objc_module)
4516 // char *name;
4517 // struct _objc_symtab* symtab;
4518 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004519 ModuleTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004520 llvm::StructType::create("struct._objc_module",
4521 LongTy, LongTy, Int8PtrTy, SymtabPtrTy, NULL);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00004522
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004523
Mike Stumpf5408fe2009-05-16 07:57:57 +00004524 // FIXME: This is the size of the setjmp buffer and should be target
4525 // specific. 18 is what's used on 32-bit X86.
Anders Carlsson124526b2008-09-09 10:10:21 +00004526 uint64_t SetJmpBufferSize = 18;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004527
Anders Carlsson124526b2008-09-09 10:10:21 +00004528 // Exceptions
Chris Lattner8b418682012-02-07 00:39:47 +00004529 llvm::Type *StackPtrTy = llvm::ArrayType::get(CGM.Int8PtrTy, 4);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004530
4531 ExceptionDataTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004532 llvm::StructType::create("struct._objc_exception_data",
Chris Lattner8b418682012-02-07 00:39:47 +00004533 llvm::ArrayType::get(CGM.Int32Ty,SetJmpBufferSize),
4534 StackPtrTy, NULL);
Anders Carlsson124526b2008-09-09 10:10:21 +00004535
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00004536}
4537
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004538ObjCNonFragileABITypesHelper::ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump1eb44332009-09-09 15:08:12 +00004539 : ObjCCommonTypesHelper(cgm) {
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004540 // struct _method_list_t {
4541 // uint32_t entsize; // sizeof(struct _objc_method)
4542 // uint32_t method_count;
4543 // struct _objc_method method_list[method_count];
4544 // }
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004545 MethodListnfABITy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004546 llvm::StructType::create("struct.__method_list_t", IntTy, IntTy,
4547 llvm::ArrayType::get(MethodTy, 0), NULL);
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004548 // struct method_list_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004549 MethodListnfABIPtrTy = llvm::PointerType::getUnqual(MethodListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004550
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004551 // struct _protocol_t {
4552 // id isa; // NULL
4553 // const char * const protocol_name;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004554 // const struct _protocol_list_t * protocol_list; // super protocols
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004555 // const struct method_list_t * const instance_methods;
4556 // const struct method_list_t * const class_methods;
4557 // const struct method_list_t *optionalInstanceMethods;
4558 // const struct method_list_t *optionalClassMethods;
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004559 // const struct _prop_list_t * properties;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004560 // const uint32_t size; // sizeof(struct _protocol_t)
4561 // const uint32_t flags; // = 0
Bob Wilsondc8dab62011-11-30 01:57:58 +00004562 // const char ** extendedMethodTypes;
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004563 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004564
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004565 // Holder for struct _protocol_list_t *
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004566 ProtocolListnfABITy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004567 llvm::StructType::create(VMContext, "struct._objc_protocol_list");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004568
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004569 ProtocolnfABITy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004570 llvm::StructType::create("struct._protocol_t", ObjectPtrTy, Int8PtrTy,
4571 llvm::PointerType::getUnqual(ProtocolListnfABITy),
4572 MethodListnfABIPtrTy, MethodListnfABIPtrTy,
4573 MethodListnfABIPtrTy, MethodListnfABIPtrTy,
Bob Wilsondc8dab62011-11-30 01:57:58 +00004574 PropertyListPtrTy, IntTy, IntTy, Int8PtrPtrTy,
4575 NULL);
Daniel Dunbar948e2582009-02-15 07:36:20 +00004576
4577 // struct _protocol_t*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004578 ProtocolnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004579
Fariborz Jahanianda320092009-01-29 19:24:30 +00004580 // struct _protocol_list_t {
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004581 // long protocol_count; // Note, this is 32/64 bit
Daniel Dunbar948e2582009-02-15 07:36:20 +00004582 // struct _protocol_t *[protocol_count];
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004583 // }
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004584 ProtocolListnfABITy->setBody(LongTy,
4585 llvm::ArrayType::get(ProtocolnfABIPtrTy, 0),
4586 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004587
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004588 // struct _objc_protocol_list*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004589 ProtocolListnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004590
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004591 // struct _ivar_t {
4592 // unsigned long int *offset; // pointer to ivar offset location
4593 // char *name;
4594 // char *type;
4595 // uint32_t alignment;
4596 // uint32_t size;
4597 // }
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004598 IvarnfABITy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004599 llvm::StructType::create("struct._ivar_t",
4600 llvm::PointerType::getUnqual(LongTy),
4601 Int8PtrTy, Int8PtrTy, IntTy, IntTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004602
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004603 // struct _ivar_list_t {
4604 // uint32 entsize; // sizeof(struct _ivar_t)
4605 // uint32 count;
4606 // struct _iver_t list[count];
4607 // }
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004608 IvarListnfABITy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004609 llvm::StructType::create("struct._ivar_list_t", IntTy, IntTy,
4610 llvm::ArrayType::get(IvarnfABITy, 0), NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004611
Owen Anderson96e0fc72009-07-29 22:16:19 +00004612 IvarListnfABIPtrTy = llvm::PointerType::getUnqual(IvarListnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004613
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004614 // struct _class_ro_t {
Fariborz Jahanian30bc5712009-01-22 23:02:58 +00004615 // uint32_t const flags;
4616 // uint32_t const instanceStart;
4617 // uint32_t const instanceSize;
4618 // uint32_t const reserved; // only when building for 64bit targets
4619 // const uint8_t * const ivarLayout;
4620 // const char *const name;
4621 // const struct _method_list_t * const baseMethods;
4622 // const struct _objc_protocol_list *const baseProtocols;
4623 // const struct _ivar_list_t *const ivars;
4624 // const uint8_t * const weakIvarLayout;
4625 // const struct _prop_list_t * const properties;
4626 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004627
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004628 // FIXME. Add 'reserved' field in 64bit abi mode!
Chris Lattnerc1c20112011-08-12 17:43:31 +00004629 ClassRonfABITy = llvm::StructType::create("struct._class_ro_t",
4630 IntTy, IntTy, IntTy, Int8PtrTy,
4631 Int8PtrTy, MethodListnfABIPtrTy,
4632 ProtocolListnfABIPtrTy,
4633 IvarListnfABIPtrTy,
4634 Int8PtrTy, PropertyListPtrTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004635
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004636 // ImpnfABITy - LLVM for id (*)(id, SEL, ...)
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004637 llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy };
John McCall0774cb82011-05-15 01:53:33 +00004638 ImpnfABITy = llvm::FunctionType::get(ObjectPtrTy, params, false)
4639 ->getPointerTo();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004640
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004641 // struct _class_t {
4642 // struct _class_t *isa;
4643 // struct _class_t * const superclass;
4644 // void *cache;
4645 // IMP *vtable;
4646 // struct class_ro_t *ro;
4647 // }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004648
Chris Lattnerc1c20112011-08-12 17:43:31 +00004649 ClassnfABITy = llvm::StructType::create(VMContext, "struct._class_t");
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004650 ClassnfABITy->setBody(llvm::PointerType::getUnqual(ClassnfABITy),
4651 llvm::PointerType::getUnqual(ClassnfABITy),
4652 CachePtrTy,
4653 llvm::PointerType::getUnqual(ImpnfABITy),
4654 llvm::PointerType::getUnqual(ClassRonfABITy),
4655 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004656
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004657 // LLVM for struct _class_t *
Owen Anderson96e0fc72009-07-29 22:16:19 +00004658 ClassnfABIPtrTy = llvm::PointerType::getUnqual(ClassnfABITy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004659
Fariborz Jahaniand55b6fc2009-01-23 01:46:23 +00004660 // struct _category_t {
4661 // const char * const name;
4662 // struct _class_t *const cls;
4663 // const struct _method_list_t * const instance_methods;
4664 // const struct _method_list_t * const class_methods;
4665 // const struct _protocol_list_t * const protocols;
4666 // const struct _prop_list_t * const properties;
Fariborz Jahanian45c2ba02009-01-23 17:41:22 +00004667 // }
Chris Lattnerc1c20112011-08-12 17:43:31 +00004668 CategorynfABITy = llvm::StructType::create("struct._category_t",
4669 Int8PtrTy, ClassnfABIPtrTy,
4670 MethodListnfABIPtrTy,
4671 MethodListnfABIPtrTy,
4672 ProtocolListnfABIPtrTy,
4673 PropertyListPtrTy,
4674 NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004675
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004676 // New types for nonfragile abi messaging.
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004677 CodeGen::CodeGenTypes &Types = CGM.getTypes();
4678 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004679
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004680 // MessageRefTy - LLVM for:
4681 // struct _message_ref_t {
4682 // IMP messenger;
4683 // SEL name;
4684 // };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004685
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004686 // First the clang type for struct _message_ref_t
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004687 RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
Daniel Dunbardaa3ac52010-04-29 16:29:11 +00004688 Ctx.getTranslationUnitDecl(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00004689 SourceLocation(), SourceLocation(),
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004690 &Ctx.Idents.get("_message_ref_t"));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004691 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), 0,
Richard Smith7a614d82011-06-11 17:19:42 +00004692 Ctx.VoidPtrTy, 0, 0, false, false));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004693 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), 0,
Richard Smith7a614d82011-06-11 17:19:42 +00004694 Ctx.getObjCSelType(), 0, 0, false, false));
Douglas Gregor838db382010-02-11 01:19:42 +00004695 RD->completeDefinition();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004696
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00004697 MessageRefCTy = Ctx.getTagDeclType(RD);
4698 MessageRefCPtrTy = Ctx.getPointerType(MessageRefCTy);
4699 MessageRefTy = cast<llvm::StructType>(Types.ConvertType(MessageRefCTy));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004700
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004701 // MessageRefPtrTy - LLVM for struct _message_ref_t*
Owen Anderson96e0fc72009-07-29 22:16:19 +00004702 MessageRefPtrTy = llvm::PointerType::getUnqual(MessageRefTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004703
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004704 // SuperMessageRefTy - LLVM for:
4705 // struct _super_message_ref_t {
4706 // SUPER_IMP messenger;
4707 // SEL name;
4708 // };
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004709 SuperMessageRefTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004710 llvm::StructType::create("struct._super_message_ref_t",
4711 ImpnfABITy, SelectorPtrTy, NULL);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004712
Fariborz Jahanian2e4672b2009-02-03 23:49:23 +00004713 // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t*
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004714 SuperMessageRefPtrTy = llvm::PointerType::getUnqual(SuperMessageRefTy);
Fariborz Jahanian9d96bce2011-06-22 20:21:51 +00004715
Daniel Dunbare588b992009-03-01 04:46:24 +00004716
4717 // struct objc_typeinfo {
4718 // const void** vtable; // objc_ehtype_vtable + 2
4719 // const char* name; // c++ typeinfo string
4720 // Class cls;
4721 // };
Chris Lattner9cbe4f02011-07-09 17:41:47 +00004722 EHTypeTy =
Chris Lattnerc1c20112011-08-12 17:43:31 +00004723 llvm::StructType::create("struct._objc_typeinfo",
4724 llvm::PointerType::getUnqual(Int8PtrTy),
4725 Int8PtrTy, ClassnfABIPtrTy, NULL);
Owen Anderson96e0fc72009-07-29 22:16:19 +00004726 EHTypePtrTy = llvm::PointerType::getUnqual(EHTypeTy);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00004727}
4728
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004729llvm::Function *CGObjCNonFragileABIMac::ModuleInitFunction() {
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004730 FinishNonFragileABIModule();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004731
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004732 return NULL;
4733}
4734
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004735void CGObjCNonFragileABIMac::AddModuleClassList(const
4736 std::vector<llvm::GlobalValue*>
4737 &Container,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004738 const char *SymbolName,
4739 const char *SectionName) {
4740 unsigned NumClasses = Container.size();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004741
Daniel Dunbar463b8762009-05-15 21:48:48 +00004742 if (!NumClasses)
4743 return;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004744
Chris Lattner0b239712012-02-06 22:16:34 +00004745 SmallVector<llvm::Constant*, 8> Symbols(NumClasses);
Daniel Dunbar463b8762009-05-15 21:48:48 +00004746 for (unsigned i=0; i<NumClasses; i++)
Owen Anderson3c4972d2009-07-29 18:54:39 +00004747 Symbols[i] = llvm::ConstantExpr::getBitCast(Container[i],
Daniel Dunbar463b8762009-05-15 21:48:48 +00004748 ObjCTypes.Int8PtrTy);
Chris Lattner0b239712012-02-06 22:16:34 +00004749 llvm::Constant *Init =
Owen Anderson96e0fc72009-07-29 22:16:19 +00004750 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Chris Lattner0b239712012-02-06 22:16:34 +00004751 Symbols.size()),
Daniel Dunbar463b8762009-05-15 21:48:48 +00004752 Symbols);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004753
Daniel Dunbar463b8762009-05-15 21:48:48 +00004754 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00004755 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004756 llvm::GlobalValue::InternalLinkage,
4757 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00004758 SymbolName);
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004759 GV->setAlignment(CGM.getTargetData().getABITypeAlignment(Init->getType()));
Daniel Dunbar463b8762009-05-15 21:48:48 +00004760 GV->setSection(SectionName);
Chris Lattnerad64e022009-07-17 23:57:13 +00004761 CGM.AddUsedGlobal(GV);
Daniel Dunbar463b8762009-05-15 21:48:48 +00004762}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004763
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004764void CGObjCNonFragileABIMac::FinishNonFragileABIModule() {
4765 // nonfragile abi has no module definition.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004766
Daniel Dunbar463b8762009-05-15 21:48:48 +00004767 // Build list of all implemented class addresses in array
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004768 // L_OBJC_LABEL_CLASS_$.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004769 AddModuleClassList(DefinedClasses,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004770 "\01L_OBJC_LABEL_CLASS_$",
4771 "__DATA, __objc_classlist, regular, no_dead_strip");
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004772
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004773 for (unsigned i = 0; i < DefinedClasses.size(); i++) {
4774 llvm::GlobalValue *IMPLGV = DefinedClasses[i];
4775 if (IMPLGV->getLinkage() != llvm::GlobalValue::ExternalWeakLinkage)
4776 continue;
4777 IMPLGV->setLinkage(llvm::GlobalValue::ExternalLinkage);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004778 }
4779
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00004780 for (unsigned i = 0; i < DefinedMetaClasses.size(); i++) {
4781 llvm::GlobalValue *IMPLGV = DefinedMetaClasses[i];
4782 if (IMPLGV->getLinkage() != llvm::GlobalValue::ExternalWeakLinkage)
4783 continue;
4784 IMPLGV->setLinkage(llvm::GlobalValue::ExternalLinkage);
4785 }
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00004786
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004787 AddModuleClassList(DefinedNonLazyClasses,
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004788 "\01L_OBJC_LABEL_NONLAZY_CLASS_$",
4789 "__DATA, __objc_nlclslist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004790
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00004791 // Build list of all implemented category addresses in array
4792 // L_OBJC_LABEL_CATEGORY_$.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004793 AddModuleClassList(DefinedCategories,
Daniel Dunbar463b8762009-05-15 21:48:48 +00004794 "\01L_OBJC_LABEL_CATEGORY_$",
4795 "__DATA, __objc_catlist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004796 AddModuleClassList(DefinedNonLazyCategories,
Daniel Dunbar74d4b122009-05-15 22:33:15 +00004797 "\01L_OBJC_LABEL_NONLAZY_CATEGORY_$",
4798 "__DATA, __objc_nlcatlist, regular, no_dead_strip");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004799
Daniel Dunbarfce176b2010-04-25 20:39:01 +00004800 EmitImageInfo();
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00004801}
4802
John McCall944c8432011-05-14 03:10:52 +00004803/// isVTableDispatchedSelector - Returns true if SEL is not in the list of
4804/// VTableDispatchMethods; false otherwise. What this means is that
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004805/// except for the 19 selectors in the list, we generate 32bit-style
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004806/// message dispatch call for all the rest.
John McCall944c8432011-05-14 03:10:52 +00004807bool CGObjCNonFragileABIMac::isVTableDispatchedSelector(Selector Sel) {
4808 // At various points we've experimented with using vtable-based
4809 // dispatch for all methods.
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004810 switch (CGM.getCodeGenOpts().getObjCDispatchMethod()) {
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004811 case CodeGenOptions::Legacy:
Fariborz Jahanian776dbf92010-04-19 17:53:30 +00004812 return false;
John McCall944c8432011-05-14 03:10:52 +00004813 case CodeGenOptions::NonLegacy:
4814 return true;
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004815 case CodeGenOptions::Mixed:
4816 break;
4817 }
4818
4819 // If so, see whether this selector is in the white-list of things which must
4820 // use the new dispatch convention. We lazily build a dense set for this.
John McCall944c8432011-05-14 03:10:52 +00004821 if (VTableDispatchMethods.empty()) {
4822 VTableDispatchMethods.insert(GetNullarySelector("alloc"));
4823 VTableDispatchMethods.insert(GetNullarySelector("class"));
4824 VTableDispatchMethods.insert(GetNullarySelector("self"));
4825 VTableDispatchMethods.insert(GetNullarySelector("isFlipped"));
4826 VTableDispatchMethods.insert(GetNullarySelector("length"));
4827 VTableDispatchMethods.insert(GetNullarySelector("count"));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004828
John McCall944c8432011-05-14 03:10:52 +00004829 // These are vtable-based if GC is disabled.
4830 // Optimistically use vtable dispatch for hybrid compiles.
Douglas Gregore289d812011-09-13 17:21:33 +00004831 if (CGM.getLangOptions().getGC() != LangOptions::GCOnly) {
John McCall944c8432011-05-14 03:10:52 +00004832 VTableDispatchMethods.insert(GetNullarySelector("retain"));
4833 VTableDispatchMethods.insert(GetNullarySelector("release"));
4834 VTableDispatchMethods.insert(GetNullarySelector("autorelease"));
4835 }
4836
4837 VTableDispatchMethods.insert(GetUnarySelector("allocWithZone"));
4838 VTableDispatchMethods.insert(GetUnarySelector("isKindOfClass"));
4839 VTableDispatchMethods.insert(GetUnarySelector("respondsToSelector"));
4840 VTableDispatchMethods.insert(GetUnarySelector("objectForKey"));
4841 VTableDispatchMethods.insert(GetUnarySelector("objectAtIndex"));
4842 VTableDispatchMethods.insert(GetUnarySelector("isEqualToString"));
4843 VTableDispatchMethods.insert(GetUnarySelector("isEqual"));
4844
4845 // These are vtable-based if GC is enabled.
4846 // Optimistically use vtable dispatch for hybrid compiles.
Douglas Gregore289d812011-09-13 17:21:33 +00004847 if (CGM.getLangOptions().getGC() != LangOptions::NonGC) {
John McCall944c8432011-05-14 03:10:52 +00004848 VTableDispatchMethods.insert(GetNullarySelector("hash"));
4849 VTableDispatchMethods.insert(GetUnarySelector("addObject"));
4850
4851 // "countByEnumeratingWithState:objects:count"
4852 IdentifierInfo *KeyIdents[] = {
4853 &CGM.getContext().Idents.get("countByEnumeratingWithState"),
4854 &CGM.getContext().Idents.get("objects"),
4855 &CGM.getContext().Idents.get("count")
4856 };
4857 VTableDispatchMethods.insert(
4858 CGM.getContext().Selectors.getSelector(3, KeyIdents));
4859 }
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004860 }
Daniel Dunbarf643b9b2010-04-24 17:56:46 +00004861
John McCall944c8432011-05-14 03:10:52 +00004862 return VTableDispatchMethods.count(Sel);
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00004863}
4864
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004865// Metadata flags
4866enum MetaDataDlags {
4867 CLS = 0x0,
4868 CLS_META = 0x1,
4869 CLS_ROOT = 0x2,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004870 OBJC2_CLS_HIDDEN = 0x10,
John McCallf85e1932011-06-15 23:02:42 +00004871 CLS_EXCEPTION = 0x20,
4872
4873 /// (Obsolete) ARC-specific: this class has a .release_ivars method
4874 CLS_HAS_IVAR_RELEASER = 0x40,
4875 /// class was compiled with -fobjc-arr
4876 CLS_COMPILED_BY_ARC = 0x80 // (1<<7)
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004877};
4878/// BuildClassRoTInitializer - generate meta-data for:
4879/// struct _class_ro_t {
4880/// uint32_t const flags;
4881/// uint32_t const instanceStart;
4882/// uint32_t const instanceSize;
4883/// uint32_t const reserved; // only when building for 64bit targets
4884/// const uint8_t * const ivarLayout;
4885/// const char *const name;
4886/// const struct _method_list_t * const baseMethods;
Fariborz Jahanianda320092009-01-29 19:24:30 +00004887/// const struct _protocol_list_t *const baseProtocols;
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004888/// const struct _ivar_list_t *const ivars;
4889/// const uint8_t * const weakIvarLayout;
4890/// const struct _prop_list_t * const properties;
4891/// }
4892///
4893llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassRoTInitializer(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004894 unsigned flags,
4895 unsigned InstanceStart,
4896 unsigned InstanceSize,
4897 const ObjCImplementationDecl *ID) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004898 std::string ClassName = ID->getNameAsString();
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00004899 llvm::Constant *Values[10]; // 11 for 64bit targets!
John McCallf85e1932011-06-15 23:02:42 +00004900
4901 if (CGM.getLangOptions().ObjCAutoRefCount)
4902 flags |= CLS_COMPILED_BY_ARC;
4903
Owen Anderson4a28d5d2009-07-24 23:12:58 +00004904 Values[ 0] = llvm::ConstantInt::get(ObjCTypes.IntTy, flags);
4905 Values[ 1] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceStart);
4906 Values[ 2] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceSize);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004907 // FIXME. For 64bit targets add 0 here.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004908 Values[ 3] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4909 : BuildIvarLayout(ID, true);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004910 Values[ 4] = GetClassName(ID->getIdentifier());
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004911 // const struct _method_list_t * const baseMethods;
4912 std::vector<llvm::Constant*> Methods;
4913 std::string MethodListName("\01l_OBJC_$_");
4914 if (flags & CLS_META) {
4915 MethodListName += "CLASS_METHODS_" + ID->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004916 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004917 i = ID->classmeth_begin(), e = ID->classmeth_end(); i != e; ++i) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004918 // Class methods should always be defined.
4919 Methods.push_back(GetMethodConstant(*i));
4920 }
4921 } else {
4922 MethodListName += "INSTANCE_METHODS_" + ID->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004923 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004924 i = ID->instmeth_begin(), e = ID->instmeth_end(); i != e; ++i) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004925 // Instance methods should always be defined.
4926 Methods.push_back(GetMethodConstant(*i));
4927 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004928 for (ObjCImplementationDecl::propimpl_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004929 i = ID->propimpl_begin(), e = ID->propimpl_end(); i != e; ++i) {
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004930 ObjCPropertyImplDecl *PID = *i;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004931
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004932 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){
4933 ObjCPropertyDecl *PD = PID->getPropertyDecl();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004934
Fariborz Jahanian939abce2009-01-28 22:46:49 +00004935 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
4936 if (llvm::Constant *C = GetMethodConstant(MD))
4937 Methods.push_back(C);
4938 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
4939 if (llvm::Constant *C = GetMethodConstant(MD))
4940 Methods.push_back(C);
4941 }
4942 }
Fariborz Jahanian493dab72009-01-26 21:38:32 +00004943 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004944 Values[ 5] = EmitMethodList(MethodListName,
4945 "__DATA, __objc_const", Methods);
4946
Fariborz Jahanianda320092009-01-29 19:24:30 +00004947 const ObjCInterfaceDecl *OID = ID->getClassInterface();
4948 assert(OID && "CGObjCNonFragileABIMac::BuildClassRoTInitializer");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004949 Values[ 6] = EmitProtocolList("\01l_OBJC_CLASS_PROTOCOLS_$_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00004950 + OID->getName(),
Ted Kremenek53b94412010-09-01 01:21:15 +00004951 OID->all_referenced_protocol_begin(),
4952 OID->all_referenced_protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004953
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004954 if (flags & CLS_META)
Owen Andersonc9c88b42009-07-31 20:28:54 +00004955 Values[ 7] = llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00004956 else
4957 Values[ 7] = EmitIvarList(ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004958 Values[ 8] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4959 : BuildIvarLayout(ID, false);
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00004960 if (flags & CLS_META)
Owen Andersonc9c88b42009-07-31 20:28:54 +00004961 Values[ 9] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00004962 else
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00004963 Values[ 9] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getName(),
4964 ID, ID->getClassInterface(), ObjCTypes);
Owen Anderson08e25242009-07-27 22:29:56 +00004965 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassRonfABITy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004966 Values);
4967 llvm::GlobalVariable *CLASS_RO_GV =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004968 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassRonfABITy, false,
4969 llvm::GlobalValue::InternalLinkage,
4970 Init,
4971 (flags & CLS_META) ?
4972 std::string("\01l_OBJC_METACLASS_RO_$_")+ClassName :
4973 std::string("\01l_OBJC_CLASS_RO_$_")+ClassName);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00004974 CLASS_RO_GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00004975 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ClassRonfABITy));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00004976 CLASS_RO_GV->setSection("__DATA, __objc_const");
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004977 return CLASS_RO_GV;
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00004978
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00004979}
4980
4981/// BuildClassMetaData - This routine defines that to-level meta-data
4982/// for the given ClassName for:
4983/// struct _class_t {
4984/// struct _class_t *isa;
4985/// struct _class_t * const superclass;
4986/// void *cache;
4987/// IMP *vtable;
4988/// struct class_ro_t *ro;
4989/// }
4990///
Fariborz Jahanian84394a52009-01-24 21:21:53 +00004991llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassMetaData(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00004992 std::string &ClassName,
4993 llvm::Constant *IsAGV,
4994 llvm::Constant *SuperClassGV,
4995 llvm::Constant *ClassRoGV,
4996 bool HiddenVisibility) {
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00004997 llvm::Constant *Values[] = {
4998 IsAGV,
4999 SuperClassGV,
5000 ObjCEmptyCacheVar, // &ObjCEmptyCacheVar
5001 ObjCEmptyVtableVar, // &ObjCEmptyVtableVar
5002 ClassRoGV // &CLASS_RO_GV
5003 };
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005004 if (!Values[1])
5005 Values[1] = llvm::Constant::getNullValue(ObjCTypes.ClassnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005006 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassnfABITy,
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00005007 Values);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005008 llvm::GlobalVariable *GV = GetClassGlobal(ClassName);
5009 GV->setInitializer(Init);
Fariborz Jahaniandd0db2a2009-01-31 01:07:39 +00005010 GV->setSection("__DATA, __objc_data");
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005011 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005012 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ClassnfABITy));
Fariborz Jahaniancf555162009-01-31 00:59:10 +00005013 if (HiddenVisibility)
5014 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005015 return GV;
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00005016}
5017
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005018bool
Fariborz Jahanianecfbdcb2009-05-21 01:03:45 +00005019CGObjCNonFragileABIMac::ImplementationIsNonLazy(const ObjCImplDecl *OD) const {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005020 return OD->getClassMethod(GetNullarySelector("load")) != 0;
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005021}
5022
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00005023void CGObjCNonFragileABIMac::GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbarb02532a2009-04-19 23:41:48 +00005024 uint32_t &InstanceStart,
5025 uint32_t &InstanceSize) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005026 const ASTRecordLayout &RL =
Daniel Dunbarb4c79e02009-05-04 21:26:30 +00005027 CGM.getContext().getASTObjCImplementationLayout(OID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005028
Daniel Dunbar6e8575b2009-05-04 23:23:09 +00005029 // InstanceSize is really instance end.
Ken Dyckec299032011-02-11 02:20:09 +00005030 InstanceSize = RL.getDataSize().getQuantity();
Daniel Dunbar6e8575b2009-05-04 23:23:09 +00005031
5032 // If there are no fields, the start is the same as the end.
5033 if (!RL.getFieldCount())
5034 InstanceStart = InstanceSize;
5035 else
Ken Dyckfb67ccd2011-04-14 00:43:09 +00005036 InstanceStart = RL.getFieldOffset(0) / CGM.getContext().getCharWidth();
Daniel Dunbarb02532a2009-04-19 23:41:48 +00005037}
5038
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00005039void CGObjCNonFragileABIMac::GenerateClass(const ObjCImplementationDecl *ID) {
5040 std::string ClassName = ID->getNameAsString();
5041 if (!ObjCEmptyCacheVar) {
5042 ObjCEmptyCacheVar = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005043 CGM.getModule(),
5044 ObjCTypes.CacheTy,
5045 false,
5046 llvm::GlobalValue::ExternalLinkage,
5047 0,
5048 "_objc_empty_cache");
5049
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00005050 ObjCEmptyVtableVar = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005051 CGM.getModule(),
5052 ObjCTypes.ImpnfABITy,
5053 false,
5054 llvm::GlobalValue::ExternalLinkage,
5055 0,
5056 "_objc_empty_vtable");
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00005057 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005058 assert(ID->getClassInterface() &&
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005059 "CGObjCNonFragileABIMac::GenerateClass - class is 0");
Daniel Dunbar6c1aac82009-04-20 20:18:54 +00005060 // FIXME: Is this correct (that meta class size is never computed)?
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005061 uint32_t InstanceStart =
Duncan Sands9408c452009-05-09 07:08:47 +00005062 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassnfABITy);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00005063 uint32_t InstanceSize = InstanceStart;
5064 uint32_t flags = CLS_META;
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005065 std::string ObjCMetaClassName(getMetaclassSymbolPrefix());
5066 std::string ObjCClassName(getClassSymbolPrefix());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005067
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00005068 llvm::GlobalVariable *SuperClassGV, *IsAGV;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005069
5070 bool classIsHidden =
John McCall1fb0caa2010-10-22 21:05:15 +00005071 ID->getClassInterface()->getVisibility() == HiddenVisibility;
Fariborz Jahaniancf555162009-01-31 00:59:10 +00005072 if (classIsHidden)
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005073 flags |= OBJC2_CLS_HIDDEN;
John McCallf85e1932011-06-15 23:02:42 +00005074 if (ID->hasCXXStructors())
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00005075 flags |= eClassFlags_ABI2_HasCXXStructors;
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005076 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00005077 // class is root
5078 flags |= CLS_ROOT;
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005079 SuperClassGV = GetClassGlobal(ObjCClassName + ClassName);
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005080 IsAGV = GetClassGlobal(ObjCMetaClassName + ClassName);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00005081 } else {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005082 // Has a root. Current class is not a root.
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00005083 const ObjCInterfaceDecl *Root = ID->getClassInterface();
5084 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
5085 Root = Super;
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005086 IsAGV = GetClassGlobal(ObjCMetaClassName + Root->getNameAsString());
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005087 if (Root->isWeakImported())
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00005088 IsAGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00005089 // work on super class metadata symbol.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005090 std::string SuperClassName =
Fariborz Jahanian0e93d252009-12-01 18:25:24 +00005091 ObjCMetaClassName +
5092 ID->getClassInterface()->getSuperClass()->getNameAsString();
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005093 SuperClassGV = GetClassGlobal(SuperClassName);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005094 if (ID->getClassInterface()->getSuperClass()->isWeakImported())
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00005095 SuperClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian058a1b72009-01-24 20:21:50 +00005096 }
5097 llvm::GlobalVariable *CLASS_RO_GV = BuildClassRoTInitializer(flags,
5098 InstanceStart,
5099 InstanceSize,ID);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005100 std::string TClassName = ObjCMetaClassName + ClassName;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005101 llvm::GlobalVariable *MetaTClass =
Fariborz Jahaniancf555162009-01-31 00:59:10 +00005102 BuildClassMetaData(TClassName, IsAGV, SuperClassGV, CLASS_RO_GV,
5103 classIsHidden);
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00005104 DefinedMetaClasses.push_back(MetaTClass);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005105
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005106 // Metadata for the class
5107 flags = CLS;
Fariborz Jahaniancf555162009-01-31 00:59:10 +00005108 if (classIsHidden)
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005109 flags |= OBJC2_CLS_HIDDEN;
John McCallf85e1932011-06-15 23:02:42 +00005110 if (ID->hasCXXStructors())
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00005111 flags |= eClassFlags_ABI2_HasCXXStructors;
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005112
Douglas Gregor68584ed2009-06-18 16:11:24 +00005113 if (hasObjCExceptionAttribute(CGM.getContext(), ID->getClassInterface()))
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005114 flags |= CLS_EXCEPTION;
5115
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005116 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005117 flags |= CLS_ROOT;
5118 SuperClassGV = 0;
Chris Lattnerb7b58b12009-04-19 06:02:28 +00005119 } else {
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005120 // Has a root. Current class is not a root.
Fariborz Jahanianfab98c42009-02-26 18:23:47 +00005121 std::string RootClassName =
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005122 ID->getClassInterface()->getSuperClass()->getNameAsString();
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005123 SuperClassGV = GetClassGlobal(ObjCClassName + RootClassName);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005124 if (ID->getClassInterface()->getSuperClass()->isWeakImported())
Fariborz Jahaniana03d0dd2009-11-17 21:37:35 +00005125 SuperClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005126 }
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00005127 GetClassSizeInfo(ID, InstanceStart, InstanceSize);
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005128 CLASS_RO_GV = BuildClassRoTInitializer(flags,
Fariborz Jahanianf6a077e2009-01-24 23:43:01 +00005129 InstanceStart,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005130 InstanceSize,
Fariborz Jahanianf6a077e2009-01-24 23:43:01 +00005131 ID);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005132
Fariborz Jahanian84394a52009-01-24 21:21:53 +00005133 TClassName = ObjCClassName + ClassName;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005134 llvm::GlobalVariable *ClassMD =
Fariborz Jahaniancf555162009-01-31 00:59:10 +00005135 BuildClassMetaData(TClassName, MetaTClass, SuperClassGV, CLASS_RO_GV,
5136 classIsHidden);
Fariborz Jahanianf87a0cc2009-01-30 20:55:31 +00005137 DefinedClasses.push_back(ClassMD);
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005138
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005139 // Determine if this class is also "non-lazy".
5140 if (ImplementationIsNonLazy(ID))
5141 DefinedNonLazyClasses.push_back(ClassMD);
5142
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00005143 // Force the definition of the EHType if necessary.
5144 if (flags & CLS_EXCEPTION)
5145 GetInterfaceEHType(ID->getClassInterface(), true);
Fariborz Jahanian64089ce2011-04-22 22:02:28 +00005146 // Make sure method definition entries are all clear for next implementation.
5147 MethodDefinitions.clear();
Fariborz Jahanianaa23b572009-01-23 23:53:38 +00005148}
5149
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005150/// GenerateProtocolRef - This routine is called to generate code for
5151/// a protocol reference expression; as in:
5152/// @code
5153/// @protocol(Proto1);
5154/// @endcode
5155/// It generates a weak reference to l_OBJC_PROTOCOL_REFERENCE_$_Proto1
5156/// which will hold address of the protocol meta-data.
5157///
5158llvm::Value *CGObjCNonFragileABIMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005159 const ObjCProtocolDecl *PD) {
5160
Fariborz Jahanian960cd062009-04-10 18:47:34 +00005161 // This routine is called for @protocol only. So, we must build definition
5162 // of protocol's meta-data (not a reference to it!)
5163 //
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005164 llvm::Constant *Init =
5165 llvm::ConstantExpr::getBitCast(GetOrEmitProtocol(PD),
Douglas Gregor4c86fdb2012-01-17 18:36:30 +00005166 ObjCTypes.getExternalProtocolPtrTy());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005167
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005168 std::string ProtocolName("\01l_OBJC_PROTOCOL_REFERENCE_$_");
Daniel Dunbar4087f272010-08-17 22:39:59 +00005169 ProtocolName += PD->getName();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005170
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005171 llvm::GlobalVariable *PTGV = CGM.getModule().getGlobalVariable(ProtocolName);
5172 if (PTGV)
Benjamin Kramer578faa82011-09-27 21:06:10 +00005173 return Builder.CreateLoad(PTGV);
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005174 PTGV = new llvm::GlobalVariable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005175 CGM.getModule(),
5176 Init->getType(), false,
5177 llvm::GlobalValue::WeakAnyLinkage,
5178 Init,
5179 ProtocolName);
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005180 PTGV->setSection("__DATA, __objc_protorefs, coalesced, no_dead_strip");
5181 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005182 CGM.AddUsedGlobal(PTGV);
Benjamin Kramer578faa82011-09-27 21:06:10 +00005183 return Builder.CreateLoad(PTGV);
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005184}
5185
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005186/// GenerateCategory - Build metadata for a category implementation.
5187/// struct _category_t {
5188/// const char * const name;
5189/// struct _class_t *const cls;
5190/// const struct _method_list_t * const instance_methods;
5191/// const struct _method_list_t * const class_methods;
5192/// const struct _protocol_list_t * const protocols;
5193/// const struct _prop_list_t * const properties;
5194/// }
5195///
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005196void CGObjCNonFragileABIMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005197 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005198 const char *Prefix = "\01l_OBJC_$_CATEGORY_";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005199 std::string ExtCatName(Prefix + Interface->getNameAsString()+
5200 "_$_" + OCD->getNameAsString());
5201 std::string ExtClassName(getClassSymbolPrefix() +
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005202 Interface->getNameAsString());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005203
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00005204 llvm::Constant *Values[6];
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005205 Values[0] = GetClassName(OCD->getIdentifier());
5206 // meta-class entry symbol
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005207 llvm::GlobalVariable *ClassGV = GetClassGlobal(ExtClassName);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005208 if (Interface->isWeakImported())
Fariborz Jahanian2cdcc4c2009-11-17 22:02:21 +00005209 ClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
5210
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005211 Values[1] = ClassGV;
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005212 std::vector<llvm::Constant*> Methods;
5213 std::string MethodListName(Prefix);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005214 MethodListName += "INSTANCE_METHODS_" + Interface->getNameAsString() +
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005215 "_$_" + OCD->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005216
5217 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005218 i = OCD->instmeth_begin(), e = OCD->instmeth_end(); i != e; ++i) {
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005219 // Instance methods should always be defined.
5220 Methods.push_back(GetMethodConstant(*i));
5221 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005222
5223 Values[2] = EmitMethodList(MethodListName,
5224 "__DATA, __objc_const",
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005225 Methods);
5226
5227 MethodListName = Prefix;
5228 MethodListName += "CLASS_METHODS_" + Interface->getNameAsString() + "_$_" +
5229 OCD->getNameAsString();
5230 Methods.clear();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005231 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005232 i = OCD->classmeth_begin(), e = OCD->classmeth_end(); i != e; ++i) {
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005233 // Class methods should always be defined.
5234 Methods.push_back(GetMethodConstant(*i));
5235 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005236
5237 Values[3] = EmitMethodList(MethodListName,
5238 "__DATA, __objc_const",
Fariborz Jahanianf6317dd2009-01-26 22:58:07 +00005239 Methods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005240 const ObjCCategoryDecl *Category =
Fariborz Jahanian5de14dc2009-01-28 22:18:42 +00005241 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005242 if (Category) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00005243 SmallString<256> ExtName;
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005244 llvm::raw_svector_ostream(ExtName) << Interface->getName() << "_$_"
5245 << OCD->getName();
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005246 Values[4] = EmitProtocolList("\01l_OBJC_CATEGORY_PROTOCOLS_$_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005247 + Interface->getName() + "_$_"
5248 + Category->getName(),
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005249 Category->protocol_begin(),
5250 Category->protocol_end());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005251 Values[5] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(),
5252 OCD, Category, ObjCTypes);
Mike Stumpb3589f42009-07-30 22:28:39 +00005253 } else {
Owen Andersonc9c88b42009-07-31 20:28:54 +00005254 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
5255 Values[5] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Fariborz Jahanian943ed6f2009-02-13 17:52:22 +00005256 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005257
5258 llvm::Constant *Init =
5259 llvm::ConstantStruct::get(ObjCTypes.CategorynfABITy,
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005260 Values);
5261 llvm::GlobalVariable *GCATV
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005262 = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.CategorynfABITy,
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005263 false,
5264 llvm::GlobalValue::InternalLinkage,
5265 Init,
Owen Anderson1c431b32009-07-08 19:05:04 +00005266 ExtCatName);
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005267 GCATV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005268 CGM.getTargetData().getABITypeAlignment(ObjCTypes.CategorynfABITy));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005269 GCATV->setSection("__DATA, __objc_const");
Chris Lattnerad64e022009-07-17 23:57:13 +00005270 CGM.AddUsedGlobal(GCATV);
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005271 DefinedCategories.push_back(GCATV);
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005272
5273 // Determine if this category is also "non-lazy".
5274 if (ImplementationIsNonLazy(OCD))
5275 DefinedNonLazyCategories.push_back(GCATV);
Fariborz Jahanian64089ce2011-04-22 22:02:28 +00005276 // method definition entries must be clear for next implementation.
5277 MethodDefinitions.clear();
Fariborz Jahanianeb062d92009-01-26 18:32:24 +00005278}
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005279
5280/// GetMethodConstant - Return a struct objc_method constant for the
5281/// given method if it has been defined. The result is null if the
5282/// method has not been defined. The return value has type MethodPtrTy.
5283llvm::Constant *CGObjCNonFragileABIMac::GetMethodConstant(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005284 const ObjCMethodDecl *MD) {
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +00005285 llvm::Function *Fn = GetMethodDefinition(MD);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005286 if (!Fn)
5287 return 0;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005288
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00005289 llvm::Constant *Method[] = {
Owen Anderson3c4972d2009-07-29 18:54:39 +00005290 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00005291 ObjCTypes.SelectorPtrTy),
5292 GetMethodVarType(MD),
5293 llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy)
5294 };
Owen Anderson08e25242009-07-27 22:29:56 +00005295 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005296}
5297
5298/// EmitMethodList - Build meta-data for method declarations
5299/// struct _method_list_t {
5300/// uint32_t entsize; // sizeof(struct _objc_method)
5301/// uint32_t method_count;
5302/// struct _objc_method method_list[method_count];
5303/// }
5304///
Chris Lattner5f9e2722011-07-23 10:55:15 +00005305llvm::Constant *CGObjCNonFragileABIMac::EmitMethodList(Twine Name,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005306 const char *Section,
5307 const ConstantVector &Methods) {
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005308 // Return null for empty list.
5309 if (Methods.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00005310 return llvm::Constant::getNullValue(ObjCTypes.MethodListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005311
Chris Lattnerc5cbb902011-06-20 04:01:35 +00005312 llvm::Constant *Values[3];
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005313 // sizeof(struct _objc_method)
Duncan Sands9408c452009-05-09 07:08:47 +00005314 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.MethodTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005315 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005316 // method_count
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005317 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00005318 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005319 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00005320 Values[2] = llvm::ConstantArray::get(AT, Methods);
Chris Lattnerc5cbb902011-06-20 04:01:35 +00005321 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005322
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005323 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005324 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Chris Lattnerc5cbb902011-06-20 04:01:35 +00005325 llvm::GlobalValue::InternalLinkage, Init, Name);
5326 GV->setAlignment(CGM.getTargetData().getABITypeAlignment(Init->getType()));
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005327 GV->setSection(Section);
Chris Lattnerad64e022009-07-17 23:57:13 +00005328 CGM.AddUsedGlobal(GV);
Chris Lattnerc5cbb902011-06-20 04:01:35 +00005329 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.MethodListnfABIPtrTy);
Fariborz Jahanian493dab72009-01-26 21:38:32 +00005330}
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005331
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005332/// ObjCIvarOffsetVariable - Returns the ivar offset variable for
5333/// the given ivar.
Daniel Dunbare83be122010-04-02 21:14:02 +00005334llvm::GlobalVariable *
5335CGObjCNonFragileABIMac::ObjCIvarOffsetVariable(const ObjCInterfaceDecl *ID,
5336 const ObjCIvarDecl *Ivar) {
5337 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
Daniel Dunbara81419d2009-05-05 00:36:57 +00005338 std::string Name = "OBJC_IVAR_$_" + Container->getNameAsString() +
Douglas Gregor6ab35242009-04-09 21:40:53 +00005339 '.' + Ivar->getNameAsString();
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005340 llvm::GlobalVariable *IvarOffsetGV =
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005341 CGM.getModule().getGlobalVariable(Name);
5342 if (!IvarOffsetGV)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005343 IvarOffsetGV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005344 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.LongTy,
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005345 false,
5346 llvm::GlobalValue::ExternalLinkage,
5347 0,
Owen Anderson1c431b32009-07-08 19:05:04 +00005348 Name);
Fariborz Jahanianed157d32009-02-10 20:21:06 +00005349 return IvarOffsetGV;
5350}
5351
Daniel Dunbare83be122010-04-02 21:14:02 +00005352llvm::Constant *
5353CGObjCNonFragileABIMac::EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
5354 const ObjCIvarDecl *Ivar,
5355 unsigned long int Offset) {
Daniel Dunbar737c5022009-04-19 00:44:02 +00005356 llvm::GlobalVariable *IvarOffsetGV = ObjCIvarOffsetVariable(ID, Ivar);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005357 IvarOffsetGV->setInitializer(llvm::ConstantInt::get(ObjCTypes.LongTy,
Daniel Dunbar737c5022009-04-19 00:44:02 +00005358 Offset));
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005359 IvarOffsetGV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005360 CGM.getTargetData().getABITypeAlignment(ObjCTypes.LongTy));
Daniel Dunbar737c5022009-04-19 00:44:02 +00005361
Mike Stumpf5408fe2009-05-16 07:57:57 +00005362 // FIXME: This matches gcc, but shouldn't the visibility be set on the use as
5363 // well (i.e., in ObjCIvarOffsetVariable).
Daniel Dunbar737c5022009-04-19 00:44:02 +00005364 if (Ivar->getAccessControl() == ObjCIvarDecl::Private ||
5365 Ivar->getAccessControl() == ObjCIvarDecl::Package ||
John McCall1fb0caa2010-10-22 21:05:15 +00005366 ID->getVisibility() == HiddenVisibility)
Fariborz Jahanian2fa5a272009-01-28 01:36:42 +00005367 IvarOffsetGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar04d40782009-04-14 06:00:08 +00005368 else
Fariborz Jahanian77c9fd22009-04-06 18:30:00 +00005369 IvarOffsetGV->setVisibility(llvm::GlobalValue::DefaultVisibility);
Bill Wendling1f382512011-05-04 21:37:25 +00005370 IvarOffsetGV->setSection("__DATA, __objc_ivar");
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005371 return IvarOffsetGV;
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005372}
5373
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005374/// EmitIvarList - Emit the ivar list for the given
Daniel Dunbar11394522009-04-18 08:51:00 +00005375/// implementation. The return value has type
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005376/// IvarListnfABIPtrTy.
5377/// struct _ivar_t {
5378/// unsigned long int *offset; // pointer to ivar offset location
5379/// char *name;
5380/// char *type;
5381/// uint32_t alignment;
5382/// uint32_t size;
5383/// }
5384/// struct _ivar_list_t {
5385/// uint32 entsize; // sizeof(struct _ivar_t)
5386/// uint32 count;
5387/// struct _iver_t list[count];
5388/// }
5389///
Daniel Dunbar3e5f0d82009-04-20 06:54:31 +00005390
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005391llvm::Constant *CGObjCNonFragileABIMac::EmitIvarList(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005392 const ObjCImplementationDecl *ID) {
5393
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00005394 std::vector<llvm::Constant*> Ivars;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005395
Jordy Rosedb8264e2011-07-22 02:08:32 +00005396 const ObjCInterfaceDecl *OID = ID->getClassInterface();
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005397 assert(OID && "CGObjCNonFragileABIMac::EmitIvarList - null interface");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005398
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005399 // FIXME. Consolidate this with similar code in GenerateClass.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005400
Jordy Rosedb8264e2011-07-22 02:08:32 +00005401 for (const ObjCIvarDecl *IVD = OID->all_declared_ivar_begin();
Fariborz Jahanianbf9eb882011-06-28 18:05:25 +00005402 IVD; IVD = IVD->getNextIvar()) {
Fariborz Jahanian8e6ac1d2009-06-04 01:19:09 +00005403 // Ignore unnamed bit-fields.
5404 if (!IVD->getDeclName())
5405 continue;
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00005406 llvm::Constant *Ivar[5];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005407 Ivar[0] = EmitIvarOffsetVar(ID->getClassInterface(), IVD,
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +00005408 ComputeIvarBaseOffset(CGM, ID, IVD));
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00005409 Ivar[1] = GetMethodVarName(IVD->getIdentifier());
5410 Ivar[2] = GetMethodVarType(IVD);
Chris Lattner2acc6e32011-07-18 04:24:23 +00005411 llvm::Type *FieldTy =
Daniel Dunbar3fea0c02009-04-22 08:22:17 +00005412 CGM.getTypes().ConvertTypeForMem(IVD->getType());
Duncan Sands9408c452009-05-09 07:08:47 +00005413 unsigned Size = CGM.getTargetData().getTypeAllocSize(FieldTy);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005414 unsigned Align = CGM.getContext().getPreferredTypeAlign(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005415 IVD->getType().getTypePtr()) >> 3;
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005416 Align = llvm::Log2_32(Align);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005417 Ivar[3] = llvm::ConstantInt::get(ObjCTypes.IntTy, Align);
Daniel Dunbar91636d62009-04-20 00:33:43 +00005418 // NOTE. Size of a bitfield does not match gcc's, because of the
5419 // way bitfields are treated special in each. But I am told that
5420 // 'size' for bitfield ivars is ignored by the runtime so it does
5421 // not matter. If it matters, there is enough info to get the
5422 // bitfield right!
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005423 Ivar[4] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Owen Anderson08e25242009-07-27 22:29:56 +00005424 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarnfABITy, Ivar));
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005425 }
5426 // Return null for empty list.
5427 if (Ivars.empty())
Owen Andersonc9c88b42009-07-31 20:28:54 +00005428 return llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
Chris Lattnerc5cbb902011-06-20 04:01:35 +00005429
5430 llvm::Constant *Values[3];
Duncan Sands9408c452009-05-09 07:08:47 +00005431 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.IvarnfABITy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005432 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
5433 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
Owen Anderson96e0fc72009-07-29 22:16:19 +00005434 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarnfABITy,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005435 Ivars.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00005436 Values[2] = llvm::ConstantArray::get(AT, Ivars);
Chris Lattnerc5cbb902011-06-20 04:01:35 +00005437 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005438 const char *Prefix = "\01l_OBJC_$_INSTANCE_VARIABLES_";
5439 llvm::GlobalVariable *GV =
Owen Anderson1c431b32009-07-08 19:05:04 +00005440 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanian98abf4b2009-01-27 19:38:51 +00005441 llvm::GlobalValue::InternalLinkage,
5442 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005443 Prefix + OID->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005444 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005445 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Fariborz Jahanian1bf0afb2009-01-28 01:05:23 +00005446 GV->setSection("__DATA, __objc_const");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005447
Chris Lattnerad64e022009-07-17 23:57:13 +00005448 CGM.AddUsedGlobal(GV);
Owen Anderson3c4972d2009-07-29 18:54:39 +00005449 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005450}
5451
5452llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocolRef(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005453 const ObjCProtocolDecl *PD) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005454 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005455
Fariborz Jahanianda320092009-01-29 19:24:30 +00005456 if (!Entry) {
5457 // We use the initializer as a marker of whether this is a forward
5458 // reference or not. At module finalization we add the empty
5459 // contents for protocols which were referenced but never defined.
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005460 Entry =
5461 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy, false,
5462 llvm::GlobalValue::ExternalLinkage,
5463 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005464 "\01l_OBJC_PROTOCOL_$_" + PD->getName());
Fariborz Jahanianda320092009-01-29 19:24:30 +00005465 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanianda320092009-01-29 19:24:30 +00005466 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005467
Fariborz Jahanianda320092009-01-29 19:24:30 +00005468 return Entry;
5469}
5470
5471/// GetOrEmitProtocol - Generate the protocol meta-data:
5472/// @code
5473/// struct _protocol_t {
5474/// id isa; // NULL
5475/// const char * const protocol_name;
5476/// const struct _protocol_list_t * protocol_list; // super protocols
5477/// const struct method_list_t * const instance_methods;
5478/// const struct method_list_t * const class_methods;
5479/// const struct method_list_t *optionalInstanceMethods;
5480/// const struct method_list_t *optionalClassMethods;
5481/// const struct _prop_list_t * properties;
5482/// const uint32_t size; // sizeof(struct _protocol_t)
5483/// const uint32_t flags; // = 0
Bob Wilsondc8dab62011-11-30 01:57:58 +00005484/// const char ** extendedMethodTypes;
Fariborz Jahanianda320092009-01-29 19:24:30 +00005485/// }
5486/// @endcode
5487///
5488
5489llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocol(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005490 const ObjCProtocolDecl *PD) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005491 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005492
Fariborz Jahanianda320092009-01-29 19:24:30 +00005493 // Early exit if a defining object has already been generated.
5494 if (Entry && Entry->hasInitializer())
5495 return Entry;
5496
Douglas Gregor1d784b22012-01-01 19:51:50 +00005497 // Use the protocol definition, if there is one.
5498 if (const ObjCProtocolDecl *Def = PD->getDefinition())
5499 PD = Def;
5500
Fariborz Jahanianda320092009-01-29 19:24:30 +00005501 // Construct method lists.
5502 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
5503 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Bob Wilsondc8dab62011-11-30 01:57:58 +00005504 std::vector<llvm::Constant*> MethodTypesExt, OptMethodTypesExt;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005505 for (ObjCProtocolDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005506 i = PD->instmeth_begin(), e = PD->instmeth_end(); i != e; ++i) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005507 ObjCMethodDecl *MD = *i;
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005508 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Douglas Gregorf968d832011-05-27 01:19:52 +00005509 if (!C)
5510 return GetOrEmitProtocolRef(PD);
5511
Fariborz Jahanianda320092009-01-29 19:24:30 +00005512 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
5513 OptInstanceMethods.push_back(C);
Bob Wilsondc8dab62011-11-30 01:57:58 +00005514 OptMethodTypesExt.push_back(GetMethodVarType(MD, true));
Fariborz Jahanianda320092009-01-29 19:24:30 +00005515 } else {
5516 InstanceMethods.push_back(C);
Bob Wilsondc8dab62011-11-30 01:57:58 +00005517 MethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005518 }
Fariborz Jahanianda320092009-01-29 19:24:30 +00005519 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005520
5521 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005522 i = PD->classmeth_begin(), e = PD->classmeth_end(); i != e; ++i) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005523 ObjCMethodDecl *MD = *i;
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005524 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Douglas Gregorf968d832011-05-27 01:19:52 +00005525 if (!C)
5526 return GetOrEmitProtocolRef(PD);
5527
Fariborz Jahanianda320092009-01-29 19:24:30 +00005528 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
5529 OptClassMethods.push_back(C);
Bob Wilsondc8dab62011-11-30 01:57:58 +00005530 OptMethodTypesExt.push_back(GetMethodVarType(MD, true));
Fariborz Jahanianda320092009-01-29 19:24:30 +00005531 } else {
5532 ClassMethods.push_back(C);
Bob Wilsondc8dab62011-11-30 01:57:58 +00005533 MethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005534 }
Fariborz Jahanianda320092009-01-29 19:24:30 +00005535 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005536
Bob Wilsondc8dab62011-11-30 01:57:58 +00005537 MethodTypesExt.insert(MethodTypesExt.end(),
5538 OptMethodTypesExt.begin(), OptMethodTypesExt.end());
5539
5540 llvm::Constant *Values[11];
Fariborz Jahanianda320092009-01-29 19:24:30 +00005541 // isa is NULL
Owen Andersonc9c88b42009-07-31 20:28:54 +00005542 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ObjectPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005543 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005544 Values[2] = EmitProtocolList("\01l_OBJC_$_PROTOCOL_REFS_" + PD->getName(),
5545 PD->protocol_begin(),
5546 PD->protocol_end());
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005547
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005548 Values[3] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005549 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005550 "__DATA, __objc_const",
5551 InstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005552 Values[4] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005553 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005554 "__DATA, __objc_const",
5555 ClassMethods);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005556 Values[5] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005557 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005558 "__DATA, __objc_const",
5559 OptInstanceMethods);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005560 Values[6] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_OPT_"
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005561 + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005562 "__DATA, __objc_const",
5563 OptClassMethods);
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005564 Values[7] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + PD->getName(),
Fariborz Jahanianda320092009-01-29 19:24:30 +00005565 0, PD, ObjCTypes);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005566 uint32_t Size =
Duncan Sands9408c452009-05-09 07:08:47 +00005567 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolnfABITy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005568 Values[8] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Owen Andersonc9c88b42009-07-31 20:28:54 +00005569 Values[9] = llvm::Constant::getNullValue(ObjCTypes.IntTy);
Bob Wilsondc8dab62011-11-30 01:57:58 +00005570 Values[10] = EmitProtocolMethodTypes("\01l_OBJC_$_PROTOCOL_METHOD_TYPES_"
5571 + PD->getName(),
5572 MethodTypesExt, ObjCTypes);
Owen Anderson08e25242009-07-27 22:29:56 +00005573 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolnfABITy,
Fariborz Jahanianda320092009-01-29 19:24:30 +00005574 Values);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005575
Fariborz Jahanianda320092009-01-29 19:24:30 +00005576 if (Entry) {
5577 // Already created, fix the linkage and update the initializer.
Mike Stump286acbd2009-03-07 16:33:28 +00005578 Entry->setLinkage(llvm::GlobalValue::WeakAnyLinkage);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005579 Entry->setInitializer(Init);
5580 } else {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005581 Entry =
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005582 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy,
5583 false, llvm::GlobalValue::WeakAnyLinkage, Init,
5584 "\01l_OBJC_PROTOCOL_$_" + PD->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005585 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005586 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ProtocolnfABITy));
Fariborz Jahanianda320092009-01-29 19:24:30 +00005587 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanianda320092009-01-29 19:24:30 +00005588 }
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005589 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005590 CGM.AddUsedGlobal(Entry);
5591
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005592 // Use this protocol meta-data to build protocol list table in section
5593 // __DATA, __objc_protolist
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005594 llvm::GlobalVariable *PTGV =
5595 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABIPtrTy,
5596 false, llvm::GlobalValue::WeakAnyLinkage, Entry,
5597 "\01l_OBJC_LABEL_PROTOCOL_$_" + PD->getName());
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005598 PTGV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005599 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ProtocolnfABIPtrTy));
Daniel Dunbar0bf21992009-04-15 02:56:18 +00005600 PTGV->setSection("__DATA, __objc_protolist, coalesced, no_dead_strip");
Fariborz Jahanian8448c2c2009-01-29 20:10:59 +00005601 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerad64e022009-07-17 23:57:13 +00005602 CGM.AddUsedGlobal(PTGV);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005603 return Entry;
5604}
5605
5606/// EmitProtocolList - Generate protocol list meta-data:
5607/// @code
5608/// struct _protocol_list_t {
5609/// long protocol_count; // Note, this is 32/64 bit
5610/// struct _protocol_t[protocol_count];
5611/// }
5612/// @endcode
5613///
5614llvm::Constant *
Chris Lattner5f9e2722011-07-23 10:55:15 +00005615CGObjCNonFragileABIMac::EmitProtocolList(Twine Name,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005616 ObjCProtocolDecl::protocol_iterator begin,
5617 ObjCProtocolDecl::protocol_iterator end) {
Fariborz Jahanianda320092009-01-29 19:24:30 +00005618 std::vector<llvm::Constant*> ProtocolRefs;
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005619
Fariborz Jahanianda320092009-01-29 19:24:30 +00005620 // Just return null for empty protocol lists
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005621 if (begin == end)
Owen Andersonc9c88b42009-07-31 20:28:54 +00005622 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005623
Daniel Dunbar948e2582009-02-15 07:36:20 +00005624 // FIXME: We shouldn't need to do this lookup here, should we?
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00005625 SmallString<256> TmpName;
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005626 Name.toVector(TmpName);
5627 llvm::GlobalVariable *GV =
5628 CGM.getModule().getGlobalVariable(TmpName.str(), true);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005629 if (GV)
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00005630 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListnfABIPtrTy);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005631
Daniel Dunbar948e2582009-02-15 07:36:20 +00005632 for (; begin != end; ++begin)
5633 ProtocolRefs.push_back(GetProtocolRef(*begin)); // Implemented???
5634
Fariborz Jahanianda320092009-01-29 19:24:30 +00005635 // This list is null terminated.
Owen Andersonc9c88b42009-07-31 20:28:54 +00005636 ProtocolRefs.push_back(llvm::Constant::getNullValue(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005637 ObjCTypes.ProtocolnfABIPtrTy));
5638
Chris Lattnerc5cbb902011-06-20 04:01:35 +00005639 llvm::Constant *Values[2];
Owen Andersona1cf15f2009-07-14 23:10:40 +00005640 Values[0] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +00005641 llvm::ConstantInt::get(ObjCTypes.LongTy, ProtocolRefs.size() - 1);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005642 Values[1] =
Owen Anderson7db6d832009-07-28 18:33:04 +00005643 llvm::ConstantArray::get(
Owen Anderson96e0fc72009-07-29 22:16:19 +00005644 llvm::ArrayType::get(ObjCTypes.ProtocolnfABIPtrTy,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005645 ProtocolRefs.size()),
5646 ProtocolRefs);
5647
Chris Lattnerc5cbb902011-06-20 04:01:35 +00005648 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Owen Anderson1c431b32009-07-08 19:05:04 +00005649 GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanianda320092009-01-29 19:24:30 +00005650 llvm::GlobalValue::InternalLinkage,
Chris Lattnerc5cbb902011-06-20 04:01:35 +00005651 Init, Name);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005652 GV->setSection("__DATA, __objc_const");
Fariborz Jahanian09796d62009-01-31 02:43:27 +00005653 GV->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005654 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Chris Lattnerad64e022009-07-17 23:57:13 +00005655 CGM.AddUsedGlobal(GV);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005656 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar948e2582009-02-15 07:36:20 +00005657 ObjCTypes.ProtocolListnfABIPtrTy);
Fariborz Jahanianda320092009-01-29 19:24:30 +00005658}
5659
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005660/// GetMethodDescriptionConstant - This routine build following meta-data:
5661/// struct _objc_method {
5662/// SEL _cmd;
5663/// char *method_type;
5664/// char *_imp;
5665/// }
5666
5667llvm::Constant *
5668CGObjCNonFragileABIMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00005669 llvm::Constant *Desc[3];
Owen Andersona1cf15f2009-07-14 23:10:40 +00005670 Desc[0] =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005671 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
5672 ObjCTypes.SelectorPtrTy);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005673 Desc[1] = GetMethodVarType(MD);
Douglas Gregorf968d832011-05-27 01:19:52 +00005674 if (!Desc[1])
5675 return 0;
5676
Fariborz Jahanian8cfd3972009-01-30 18:58:59 +00005677 // Protocol methods have no implementation. So, this entry is always NULL.
Owen Andersonc9c88b42009-07-31 20:28:54 +00005678 Desc[2] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Owen Anderson08e25242009-07-27 22:29:56 +00005679 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Desc);
Fariborz Jahanian3819a0b2009-01-30 00:46:37 +00005680}
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005681
5682/// EmitObjCValueForIvar - Code Gen for nonfragile ivar reference.
5683/// This code gen. amounts to generating code for:
5684/// @code
5685/// (type *)((char *)base + _OBJC_IVAR_$_.ivar;
5686/// @encode
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005687///
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00005688LValue CGObjCNonFragileABIMac::EmitObjCValueForIvar(
John McCall506b57e2010-05-17 21:00:27 +00005689 CodeGen::CodeGenFunction &CGF,
5690 QualType ObjectTy,
5691 llvm::Value *BaseValue,
5692 const ObjCIvarDecl *Ivar,
5693 unsigned CVRQualifiers) {
5694 ObjCInterfaceDecl *ID = ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar97776872009-04-22 07:32:20 +00005695 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
5696 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian45012a72009-02-03 00:09:52 +00005697}
5698
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00005699llvm::Value *CGObjCNonFragileABIMac::EmitIvarOffset(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005700 CodeGen::CodeGenFunction &CGF,
5701 const ObjCInterfaceDecl *Interface,
5702 const ObjCIvarDecl *Ivar) {
Daniel Dunbar2da84ff2009-11-29 21:23:36 +00005703 return CGF.Builder.CreateLoad(ObjCIvarOffsetVariable(Interface, Ivar),"ivar");
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00005704}
5705
John McCallb1e81442011-05-13 23:16:18 +00005706static void appendSelectorForMessageRefTable(std::string &buffer,
5707 Selector selector) {
5708 if (selector.isUnarySelector()) {
5709 buffer += selector.getNameForSlot(0);
5710 return;
5711 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005712
John McCallb1e81442011-05-13 23:16:18 +00005713 for (unsigned i = 0, e = selector.getNumArgs(); i != e; ++i) {
5714 buffer += selector.getNameForSlot(i);
5715 buffer += '_';
5716 }
5717}
5718
John McCall944c8432011-05-14 03:10:52 +00005719/// Emit a "v-table" message send. We emit a weak hidden-visibility
5720/// struct, initially containing the selector pointer and a pointer to
5721/// a "fixup" variant of the appropriate objc_msgSend. To call, we
5722/// load and call the function pointer, passing the address of the
5723/// struct as the second parameter. The runtime determines whether
5724/// the selector is currently emitted using vtable dispatch; if so, it
5725/// substitutes a stub function which simply tail-calls through the
5726/// appropriate vtable slot, and if not, it substitues a stub function
5727/// which tail-calls objc_msgSend. Both stubs adjust the selector
5728/// argument to correctly point to the selector.
5729RValue
5730CGObjCNonFragileABIMac::EmitVTableMessageSend(CodeGenFunction &CGF,
5731 ReturnValueSlot returnSlot,
5732 QualType resultType,
5733 Selector selector,
5734 llvm::Value *arg0,
5735 QualType arg0Type,
5736 bool isSuper,
5737 const CallArgList &formalArgs,
5738 const ObjCMethodDecl *method) {
John McCallb1e81442011-05-13 23:16:18 +00005739 // Compute the actual arguments.
5740 CallArgList args;
5741
John McCall944c8432011-05-14 03:10:52 +00005742 // First argument: the receiver / super-call structure.
John McCallb1e81442011-05-13 23:16:18 +00005743 if (!isSuper)
John McCall944c8432011-05-14 03:10:52 +00005744 arg0 = CGF.Builder.CreateBitCast(arg0, ObjCTypes.ObjectPtrTy);
5745 args.add(RValue::get(arg0), arg0Type);
John McCallb1e81442011-05-13 23:16:18 +00005746
John McCall944c8432011-05-14 03:10:52 +00005747 // Second argument: a pointer to the message ref structure. Leave
5748 // the actual argument value blank for now.
John McCallb1e81442011-05-13 23:16:18 +00005749 args.add(RValue::get(0), ObjCTypes.MessageRefCPtrTy);
5750
5751 args.insert(args.end(), formalArgs.begin(), formalArgs.end());
5752
5753 const CGFunctionInfo &fnInfo =
5754 CGM.getTypes().getFunctionInfo(resultType, args,
5755 FunctionType::ExtInfo());
5756
John McCallcba681a2011-05-14 21:12:11 +00005757 NullReturnState nullReturn;
5758
John McCall944c8432011-05-14 03:10:52 +00005759 // Find the function to call and the mangled name for the message
5760 // ref structure. Using a different mangled name wouldn't actually
5761 // be a problem; it would just be a waste.
5762 //
5763 // The runtime currently never uses vtable dispatch for anything
5764 // except normal, non-super message-sends.
5765 // FIXME: don't use this for that.
John McCallb1e81442011-05-13 23:16:18 +00005766 llvm::Constant *fn = 0;
5767 std::string messageRefName("\01l_");
5768 if (CGM.ReturnTypeUsesSRet(fnInfo)) {
John McCallb1e81442011-05-13 23:16:18 +00005769 if (isSuper) {
5770 fn = ObjCTypes.getMessageSendSuper2StretFixupFn();
5771 messageRefName += "objc_msgSendSuper2_stret_fixup";
Chris Lattner9b7d6702010-08-18 16:09:06 +00005772 } else {
John McCallcba681a2011-05-14 21:12:11 +00005773 nullReturn.init(CGF, arg0);
John McCallb1e81442011-05-13 23:16:18 +00005774 fn = ObjCTypes.getMessageSendStretFixupFn();
5775 messageRefName += "objc_msgSend_stret_fixup";
Chris Lattner9b7d6702010-08-18 16:09:06 +00005776 }
John McCallb1e81442011-05-13 23:16:18 +00005777 } else if (!isSuper && CGM.ReturnTypeUsesFPRet(resultType)) {
5778 fn = ObjCTypes.getMessageSendFpretFixupFn();
5779 messageRefName += "objc_msgSend_fpret_fixup";
Mike Stumpb3589f42009-07-30 22:28:39 +00005780 } else {
John McCallb1e81442011-05-13 23:16:18 +00005781 if (isSuper) {
5782 fn = ObjCTypes.getMessageSendSuper2FixupFn();
5783 messageRefName += "objc_msgSendSuper2_fixup";
Chris Lattner9b7d6702010-08-18 16:09:06 +00005784 } else {
John McCallb1e81442011-05-13 23:16:18 +00005785 fn = ObjCTypes.getMessageSendFixupFn();
5786 messageRefName += "objc_msgSend_fixup";
Chris Lattner9b7d6702010-08-18 16:09:06 +00005787 }
Fariborz Jahanian83a8a752009-02-04 20:42:28 +00005788 }
John McCallb1e81442011-05-13 23:16:18 +00005789 assert(fn && "CGObjCNonFragileABIMac::EmitMessageSend");
5790 messageRefName += '_';
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005791
John McCallb1e81442011-05-13 23:16:18 +00005792 // Append the selector name, except use underscores anywhere we
5793 // would have used colons.
5794 appendSelectorForMessageRefTable(messageRefName, selector);
5795
5796 llvm::GlobalVariable *messageRef
5797 = CGM.getModule().getGlobalVariable(messageRefName);
5798 if (!messageRef) {
John McCall944c8432011-05-14 03:10:52 +00005799 // Build the message ref structure.
John McCallb1e81442011-05-13 23:16:18 +00005800 llvm::Constant *values[] = { fn, GetMethodVarName(selector) };
Chris Lattnerc5cbb902011-06-20 04:01:35 +00005801 llvm::Constant *init = llvm::ConstantStruct::getAnon(values);
John McCallb1e81442011-05-13 23:16:18 +00005802 messageRef = new llvm::GlobalVariable(CGM.getModule(),
5803 init->getType(),
5804 /*constant*/ false,
5805 llvm::GlobalValue::WeakAnyLinkage,
5806 init,
5807 messageRefName);
5808 messageRef->setVisibility(llvm::GlobalValue::HiddenVisibility);
5809 messageRef->setAlignment(16);
5810 messageRef->setSection("__DATA, __objc_msgrefs, coalesced");
5811 }
Fariborz Jahanian3c52d362012-01-30 23:39:30 +00005812
5813 bool requiresnullCheck = false;
5814 if (CGM.getLangOptions().ObjCAutoRefCount && method)
5815 for (ObjCMethodDecl::param_const_iterator i = method->param_begin(),
5816 e = method->param_end(); i != e; ++i) {
5817 const ParmVarDecl *ParamDecl = (*i);
5818 if (ParamDecl->hasAttr<NSConsumedAttr>()) {
5819 if (!nullReturn.NullBB)
5820 nullReturn.init(CGF, arg0);
5821 requiresnullCheck = true;
5822 break;
5823 }
5824 }
5825
John McCallb1e81442011-05-13 23:16:18 +00005826 llvm::Value *mref =
5827 CGF.Builder.CreateBitCast(messageRef, ObjCTypes.MessageRefPtrTy);
5828
John McCall944c8432011-05-14 03:10:52 +00005829 // Update the message ref argument.
John McCallb1e81442011-05-13 23:16:18 +00005830 args[1].RV = RValue::get(mref);
5831
5832 // Load the function to call from the message ref table.
5833 llvm::Value *callee = CGF.Builder.CreateStructGEP(mref, 0);
5834 callee = CGF.Builder.CreateLoad(callee, "msgSend_fn");
5835
5836 bool variadic = method ? method->isVariadic() : false;
Chris Lattner2acc6e32011-07-18 04:24:23 +00005837 llvm::FunctionType *fnType =
John McCallb1e81442011-05-13 23:16:18 +00005838 CGF.getTypes().GetFunctionType(fnInfo, variadic);
5839 callee = CGF.Builder.CreateBitCast(callee,
5840 llvm::PointerType::getUnqual(fnType));
5841
John McCallcba681a2011-05-14 21:12:11 +00005842 RValue result = CGF.EmitCall(fnInfo, callee, returnSlot, args);
Fariborz Jahanian3c52d362012-01-30 23:39:30 +00005843 return nullReturn.complete(CGF, result, resultType, formalArgs,
5844 requiresnullCheck ? method : 0);
Fariborz Jahanian46551122009-02-04 00:22:57 +00005845}
5846
5847/// Generate code for a message send expression in the nonfragile abi.
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005848CodeGen::RValue
5849CGObjCNonFragileABIMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005850 ReturnValueSlot Return,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005851 QualType ResultType,
5852 Selector Sel,
5853 llvm::Value *Receiver,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005854 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00005855 const ObjCInterfaceDecl *Class,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005856 const ObjCMethodDecl *Method) {
John McCall944c8432011-05-14 03:10:52 +00005857 return isVTableDispatchedSelector(Sel)
5858 ? EmitVTableMessageSend(CGF, Return, ResultType, Sel,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005859 Receiver, CGF.getContext().getObjCIdType(),
John McCall944c8432011-05-14 03:10:52 +00005860 false, CallArgs, Method)
5861 : EmitMessageSend(CGF, Return, ResultType,
5862 EmitSelector(CGF.Builder, Sel),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005863 Receiver, CGF.getContext().getObjCIdType(),
John McCall944c8432011-05-14 03:10:52 +00005864 false, CallArgs, Method, ObjCTypes);
Fariborz Jahanian46551122009-02-04 00:22:57 +00005865}
5866
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005867llvm::GlobalVariable *
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005868CGObjCNonFragileABIMac::GetClassGlobal(const std::string &Name) {
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005869 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
5870
Daniel Dunbardfff2302009-03-02 05:18:14 +00005871 if (!GV) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005872 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABITy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005873 false, llvm::GlobalValue::ExternalLinkage,
5874 0, Name);
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005875 }
5876
5877 return GV;
5878}
5879
John McCallf85e1932011-06-15 23:02:42 +00005880llvm::Value *CGObjCNonFragileABIMac::EmitClassRefFromId(CGBuilderTy &Builder,
5881 IdentifierInfo *II) {
5882 llvm::GlobalVariable *&Entry = ClassReferences[II];
5883
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005884 if (!Entry) {
John McCallf85e1932011-06-15 23:02:42 +00005885 std::string ClassName(getClassSymbolPrefix() + II->getName().str());
Daniel Dunbar5a7379a2009-03-01 04:40:10 +00005886 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005887 Entry =
John McCallf85e1932011-06-15 23:02:42 +00005888 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy,
5889 false, llvm::GlobalValue::InternalLinkage,
5890 ClassGV,
5891 "\01L_OBJC_CLASSLIST_REFERENCES_$_");
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005892 Entry->setAlignment(
John McCallf85e1932011-06-15 23:02:42 +00005893 CGM.getTargetData().getABITypeAlignment(
5894 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar11394522009-04-18 08:51:00 +00005895 Entry->setSection("__DATA, __objc_classrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005896 CGM.AddUsedGlobal(Entry);
Daniel Dunbar11394522009-04-18 08:51:00 +00005897 }
John McCallf85e1932011-06-15 23:02:42 +00005898
Benjamin Kramer578faa82011-09-27 21:06:10 +00005899 return Builder.CreateLoad(Entry);
Daniel Dunbar11394522009-04-18 08:51:00 +00005900}
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005901
John McCallf85e1932011-06-15 23:02:42 +00005902llvm::Value *CGObjCNonFragileABIMac::EmitClassRef(CGBuilderTy &Builder,
5903 const ObjCInterfaceDecl *ID) {
5904 return EmitClassRefFromId(Builder, ID->getIdentifier());
5905}
5906
5907llvm::Value *CGObjCNonFragileABIMac::EmitNSAutoreleasePoolClassRef(
5908 CGBuilderTy &Builder) {
5909 IdentifierInfo *II = &CGM.getContext().Idents.get("NSAutoreleasePool");
5910 return EmitClassRefFromId(Builder, II);
5911}
5912
Daniel Dunbar11394522009-04-18 08:51:00 +00005913llvm::Value *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005914CGObjCNonFragileABIMac::EmitSuperClassRef(CGBuilderTy &Builder,
Daniel Dunbar11394522009-04-18 08:51:00 +00005915 const ObjCInterfaceDecl *ID) {
5916 llvm::GlobalVariable *&Entry = SuperClassReferences[ID->getIdentifier()];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005917
Daniel Dunbar11394522009-04-18 08:51:00 +00005918 if (!Entry) {
5919 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5920 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005921 Entry =
5922 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy,
Owen Anderson1c431b32009-07-08 19:05:04 +00005923 false, llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005924 ClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005925 "\01L_OBJC_CLASSLIST_SUP_REFS_$_");
Daniel Dunbar11394522009-04-18 08:51:00 +00005926 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005927 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005928 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar11394522009-04-18 08:51:00 +00005929 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005930 CGM.AddUsedGlobal(Entry);
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005931 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005932
Benjamin Kramer578faa82011-09-27 21:06:10 +00005933 return Builder.CreateLoad(Entry);
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005934}
5935
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005936/// EmitMetaClassRef - Return a Value * of the address of _class_t
5937/// meta-data
5938///
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005939llvm::Value *CGObjCNonFragileABIMac::EmitMetaClassRef(CGBuilderTy &Builder,
5940 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005941 llvm::GlobalVariable * &Entry = MetaClassReferences[ID->getIdentifier()];
5942 if (Entry)
Benjamin Kramer578faa82011-09-27 21:06:10 +00005943 return Builder.CreateLoad(Entry);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005944
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00005945 std::string MetaClassName(getMetaclassSymbolPrefix() + ID->getNameAsString());
Fariborz Jahanian0f902942009-04-14 18:41:56 +00005946 llvm::GlobalVariable *MetaClassGV = GetClassGlobal(MetaClassName);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005947 Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00005948 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy, false,
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005949 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005950 MetaClassGV,
Owen Anderson1c431b32009-07-08 19:05:04 +00005951 "\01L_OBJC_CLASSLIST_SUP_REFS_$_");
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005952 Entry->setAlignment(
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00005953 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005954 ObjCTypes.ClassnfABIPtrTy));
5955
Daniel Dunbar33af70f2009-04-15 19:03:14 +00005956 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00005957 CGM.AddUsedGlobal(Entry);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005958
Benjamin Kramer578faa82011-09-27 21:06:10 +00005959 return Builder.CreateLoad(Entry);
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005960}
5961
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005962/// GetClass - Return a reference to the class for the given interface
5963/// decl.
5964llvm::Value *CGObjCNonFragileABIMac::GetClass(CGBuilderTy &Builder,
5965 const ObjCInterfaceDecl *ID) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005966 if (ID->isWeakImported()) {
Fariborz Jahanian269f8bc2009-11-17 22:42:00 +00005967 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5968 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
5969 ClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
5970 }
5971
Fariborz Jahanian0e81f4b2009-02-05 20:41:40 +00005972 return EmitClassRef(Builder, ID);
5973}
5974
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005975/// Generates a message send where the super is the receiver. This is
5976/// a message send to self with special delivery semantics indicating
5977/// which class's method should be called.
5978CodeGen::RValue
5979CGObjCNonFragileABIMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00005980 ReturnValueSlot Return,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005981 QualType ResultType,
5982 Selector Sel,
5983 const ObjCInterfaceDecl *Class,
5984 bool isCategoryImpl,
5985 llvm::Value *Receiver,
5986 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00005987 const CodeGen::CallArgList &CallArgs,
5988 const ObjCMethodDecl *Method) {
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005989 // ...
5990 // Create and init a super structure; this is a (receiver, class)
5991 // pair we will pass to objc_msgSendSuper.
5992 llvm::Value *ObjCSuper =
John McCall604da292011-03-04 08:00:29 +00005993 CGF.CreateTempAlloca(ObjCTypes.SuperTy, "objc_super");
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005994
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00005995 llvm::Value *ReceiverAsObject =
5996 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
5997 CGF.Builder.CreateStore(ReceiverAsObject,
5998 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00005999
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00006000 // If this is a class message the metaclass is passed as the target.
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00006001 llvm::Value *Target;
6002 if (IsClassMessage) {
6003 if (isCategoryImpl) {
6004 // Message sent to "super' in a class method defined in
6005 // a category implementation.
Daniel Dunbar11394522009-04-18 08:51:00 +00006006 Target = EmitClassRef(CGF.Builder, Class);
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00006007 Target = CGF.Builder.CreateStructGEP(Target, 0);
6008 Target = CGF.Builder.CreateLoad(Target);
Mike Stumpb3589f42009-07-30 22:28:39 +00006009 } else
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00006010 Target = EmitMetaClassRef(CGF.Builder, Class);
Mike Stumpb3589f42009-07-30 22:28:39 +00006011 } else
Daniel Dunbar11394522009-04-18 08:51:00 +00006012 Target = EmitSuperClassRef(CGF.Builder, Class);
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006013
Mike Stumpf5408fe2009-05-16 07:57:57 +00006014 // FIXME: We shouldn't need to do this cast, rectify the ASTContext and
6015 // ObjCTypes types.
Chris Lattner2acc6e32011-07-18 04:24:23 +00006016 llvm::Type *ClassTy =
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00006017 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
6018 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
6019 CGF.Builder.CreateStore(Target,
6020 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006021
John McCall944c8432011-05-14 03:10:52 +00006022 return (isVTableDispatchedSelector(Sel))
6023 ? EmitVTableMessageSend(CGF, Return, ResultType, Sel,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006024 ObjCSuper, ObjCTypes.SuperPtrCTy,
John McCall944c8432011-05-14 03:10:52 +00006025 true, CallArgs, Method)
6026 : EmitMessageSend(CGF, Return, ResultType,
6027 EmitSelector(CGF.Builder, Sel),
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006028 ObjCSuper, ObjCTypes.SuperPtrCTy,
John McCall944c8432011-05-14 03:10:52 +00006029 true, CallArgs, Method, ObjCTypes);
Fariborz Jahanian7a06aae2009-02-06 20:09:23 +00006030}
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00006031
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006032llvm::Value *CGObjCNonFragileABIMac::EmitSelector(CGBuilderTy &Builder,
Fariborz Jahanian03b29602010-06-17 19:56:20 +00006033 Selector Sel, bool lval) {
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00006034 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006035
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00006036 if (!Entry) {
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006037 llvm::Constant *Casted =
6038 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
6039 ObjCTypes.SelectorPtrTy);
6040 Entry =
6041 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.SelectorPtrTy, false,
6042 llvm::GlobalValue::InternalLinkage,
6043 Casted, "\01L_OBJC_SELECTOR_REFERENCES_");
Fariborz Jahaniand0f8a8d2009-05-11 19:25:47 +00006044 Entry->setSection("__DATA, __objc_selrefs, literal_pointers, no_dead_strip");
Chris Lattnerad64e022009-07-17 23:57:13 +00006045 CGM.AddUsedGlobal(Entry);
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00006046 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006047
Fariborz Jahanian03b29602010-06-17 19:56:20 +00006048 if (lval)
6049 return Entry;
Pete Cooperb6d71142011-11-10 21:45:06 +00006050 llvm::LoadInst* LI = Builder.CreateLoad(Entry);
6051
6052 LI->setMetadata(CGM.getModule().getMDKindID("invariant.load"),
6053 llvm::MDNode::get(VMContext,
6054 ArrayRef<llvm::Value*>()));
6055 return LI;
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00006056}
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006057/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00006058/// objc_assign_ivar (id src, id *dst, ptrdiff_t)
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006059///
6060void CGObjCNonFragileABIMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00006061 llvm::Value *src,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00006062 llvm::Value *dst,
6063 llvm::Value *ivarOffset) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00006064 llvm::Type * SrcTy = src->getType();
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00006065 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00006066 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00006067 assert(Size <= 8 && "does not support size > 8");
6068 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
6069 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00006070 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
6071 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006072 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
6073 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00006074 CGF.Builder.CreateCall3(ObjCTypes.getGcAssignIvarFn(),
6075 src, dst, ivarOffset);
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006076 return;
6077}
6078
6079/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
6080/// objc_assign_strongCast (id src, id *dst)
6081///
6082void CGObjCNonFragileABIMac::EmitObjCStrongCastAssign(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006083 CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00006084 llvm::Value *src, llvm::Value *dst) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00006085 llvm::Type * SrcTy = src->getType();
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00006086 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00006087 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00006088 assert(Size <= 8 && "does not support size > 8");
6089 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006090 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00006091 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
6092 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006093 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
6094 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerbbccd612009-04-22 02:38:11 +00006095 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006096 src, dst, "weakassign");
6097 return;
6098}
6099
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00006100void CGObjCNonFragileABIMac::EmitGCMemmoveCollectable(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006101 CodeGen::CodeGenFunction &CGF,
6102 llvm::Value *DestPtr,
6103 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00006104 llvm::Value *Size) {
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00006105 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy);
6106 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00006107 CGF.Builder.CreateCall3(ObjCTypes.GcMemmoveCollectableFn(),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00006108 DestPtr, SrcPtr, Size);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00006109 return;
6110}
6111
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006112/// EmitObjCWeakRead - Code gen for loading value of a __weak
6113/// object: objc_read_weak (id *src)
6114///
6115llvm::Value * CGObjCNonFragileABIMac::EmitObjCWeakRead(
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006116 CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00006117 llvm::Value *AddrWeakObj) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00006118 llvm::Type* DestTy =
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006119 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
6120 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj, ObjCTypes.PtrObjectPtrTy);
Chris Lattner72db6c32009-04-22 02:44:54 +00006121 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006122 AddrWeakObj, "weakread");
Eli Friedman8339b352009-03-07 03:57:15 +00006123 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006124 return read_weak;
6125}
6126
6127/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
6128/// objc_assign_weak (id src, id *dst)
6129///
6130void CGObjCNonFragileABIMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00006131 llvm::Value *src, llvm::Value *dst) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00006132 llvm::Type * SrcTy = src->getType();
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00006133 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00006134 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00006135 assert(Size <= 8 && "does not support size > 8");
6136 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
6137 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00006138 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
6139 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006140 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
6141 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner96508e12009-04-17 22:12:36 +00006142 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006143 src, dst, "weakassign");
6144 return;
6145}
6146
6147/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
6148/// objc_assign_global (id src, id *dst)
6149///
6150void CGObjCNonFragileABIMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00006151 llvm::Value *src, llvm::Value *dst,
6152 bool threadlocal) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00006153 llvm::Type * SrcTy = src->getType();
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00006154 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sands9408c452009-05-09 07:08:47 +00006155 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanian0a855d02009-03-23 19:10:40 +00006156 assert(Size <= 8 && "does not support size > 8");
6157 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
6158 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian3b8a6522009-03-13 00:42:52 +00006159 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
6160 }
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006161 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
6162 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00006163 if (!threadlocal)
6164 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
6165 src, dst, "globalassign");
6166 else
6167 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignThreadLocalFn(),
6168 src, dst, "threadlocalassign");
Fariborz Jahanian6948aea2009-02-16 22:52:32 +00006169 return;
6170}
Fariborz Jahanian26cc89f2009-02-11 20:51:17 +00006171
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006172void
John McCallf1549f62010-07-06 01:34:17 +00006173CGObjCNonFragileABIMac::EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
6174 const ObjCAtSynchronizedStmt &S) {
David Chisnall05dc91b2011-03-25 17:46:35 +00006175 EmitAtSynchronizedStmt(CGF, S,
6176 cast<llvm::Function>(ObjCTypes.getSyncEnterFn()),
6177 cast<llvm::Function>(ObjCTypes.getSyncExitFn()));
John McCallf1549f62010-07-06 01:34:17 +00006178}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006179
John McCall5a180392010-07-24 00:37:23 +00006180llvm::Constant *
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00006181CGObjCNonFragileABIMac::GetEHType(QualType T) {
John McCall5a180392010-07-24 00:37:23 +00006182 // There's a particular fixed type info for 'id'.
6183 if (T->isObjCIdType() ||
6184 T->isObjCQualifiedIdType()) {
6185 llvm::Constant *IDEHType =
6186 CGM.getModule().getGlobalVariable("OBJC_EHTYPE_id");
6187 if (!IDEHType)
6188 IDEHType =
6189 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy,
6190 false,
6191 llvm::GlobalValue::ExternalLinkage,
6192 0, "OBJC_EHTYPE_id");
6193 return IDEHType;
6194 }
6195
6196 // All other types should be Objective-C interface pointer types.
6197 const ObjCObjectPointerType *PT =
6198 T->getAs<ObjCObjectPointerType>();
6199 assert(PT && "Invalid @catch type.");
6200 const ObjCInterfaceType *IT = PT->getInterfaceType();
6201 assert(IT && "Invalid @catch type.");
6202 return GetInterfaceEHType(IT->getDecl(), false);
6203}
6204
John McCallf1549f62010-07-06 01:34:17 +00006205void CGObjCNonFragileABIMac::EmitTryStmt(CodeGen::CodeGenFunction &CGF,
6206 const ObjCAtTryStmt &S) {
David Chisnall05dc91b2011-03-25 17:46:35 +00006207 EmitTryCatchStmt(CGF, S,
6208 cast<llvm::Function>(ObjCTypes.getObjCBeginCatchFn()),
6209 cast<llvm::Function>(ObjCTypes.getObjCEndCatchFn()),
6210 cast<llvm::Function>(ObjCTypes.getExceptionRethrowFn()));
Daniel Dunbar8ecbaf22009-02-24 07:47:38 +00006211}
6212
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006213/// EmitThrowStmt - Generate code for a throw statement.
6214void CGObjCNonFragileABIMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
6215 const ObjCAtThrowStmt &S) {
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006216 if (const Expr *ThrowExpr = S.getThrowExpr()) {
John McCall2b014d62011-10-01 10:32:24 +00006217 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr);
Benjamin Kramer578faa82011-09-27 21:06:10 +00006218 Exception = CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy);
Jay Foad4c7d9f12011-07-15 08:37:34 +00006219 CGF.EmitCallOrInvoke(ObjCTypes.getExceptionThrowFn(), Exception)
John McCall7ec404c2010-10-16 08:21:07 +00006220 .setDoesNotReturn();
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006221 } else {
Jay Foad4c7d9f12011-07-15 08:37:34 +00006222 CGF.EmitCallOrInvoke(ObjCTypes.getExceptionRethrowFn())
John McCall7ec404c2010-10-16 08:21:07 +00006223 .setDoesNotReturn();
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006224 }
6225
John McCall7ec404c2010-10-16 08:21:07 +00006226 CGF.Builder.CreateUnreachable();
Anders Carlssonf57c5b22009-02-16 22:59:18 +00006227 CGF.Builder.ClearInsertionPoint();
6228}
Daniel Dunbare588b992009-03-01 04:46:24 +00006229
John McCall5a180392010-07-24 00:37:23 +00006230llvm::Constant *
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006231CGObjCNonFragileABIMac::GetInterfaceEHType(const ObjCInterfaceDecl *ID,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006232 bool ForDefinition) {
Daniel Dunbare588b992009-03-01 04:46:24 +00006233 llvm::GlobalVariable * &Entry = EHTypeReferences[ID->getIdentifier()];
Daniel Dunbare588b992009-03-01 04:46:24 +00006234
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006235 // If we don't need a definition, return the entry if found or check
6236 // if we use an external reference.
6237 if (!ForDefinition) {
6238 if (Entry)
6239 return Entry;
Daniel Dunbar7e075cb2009-04-07 06:43:45 +00006240
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006241 // If this type (or a super class) has the __objc_exception__
6242 // attribute, emit an external reference.
Douglas Gregor68584ed2009-06-18 16:11:24 +00006243 if (hasObjCExceptionAttribute(CGM.getContext(), ID))
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006244 return Entry =
Owen Anderson1c431b32009-07-08 19:05:04 +00006245 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006246 llvm::GlobalValue::ExternalLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006247 0,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00006248 ("OBJC_EHTYPE_$_" +
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00006249 ID->getIdentifier()->getName()));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006250 }
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006251
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006252 // Otherwise we need to either make a new entry or fill in the
6253 // initializer.
6254 assert((!Entry || !Entry->hasInitializer()) && "Duplicate EHType definition");
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00006255 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
Daniel Dunbare588b992009-03-01 04:46:24 +00006256 std::string VTableName = "objc_ehtype_vtable";
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006257 llvm::GlobalVariable *VTableGV =
Daniel Dunbare588b992009-03-01 04:46:24 +00006258 CGM.getModule().getGlobalVariable(VTableName);
6259 if (!VTableGV)
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006260 VTableGV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.Int8PtrTy,
6261 false,
Daniel Dunbare588b992009-03-01 04:46:24 +00006262 llvm::GlobalValue::ExternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +00006263 0, VTableName);
Daniel Dunbare588b992009-03-01 04:46:24 +00006264
Chris Lattner8b418682012-02-07 00:39:47 +00006265 llvm::Value *VTableIdx = llvm::ConstantInt::get(CGM.Int32Ty, 2);
Daniel Dunbare588b992009-03-01 04:46:24 +00006266
Benjamin Kramer1d236ab2011-10-15 12:20:02 +00006267 llvm::Constant *Values[] = {
6268 llvm::ConstantExpr::getGetElementPtr(VTableGV, VTableIdx),
6269 GetClassName(ID->getIdentifier()),
6270 GetClassGlobal(ClassName)
6271 };
Owen Andersona1cf15f2009-07-14 23:10:40 +00006272 llvm::Constant *Init =
Owen Anderson08e25242009-07-27 22:29:56 +00006273 llvm::ConstantStruct::get(ObjCTypes.EHTypeTy, Values);
Daniel Dunbare588b992009-03-01 04:46:24 +00006274
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006275 if (Entry) {
6276 Entry->setInitializer(Init);
6277 } else {
Owen Anderson1c431b32009-07-08 19:05:04 +00006278 Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false,
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006279 llvm::GlobalValue::WeakAnyLinkage,
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006280 Init,
Daniel Dunbar9c29bf52009-10-18 20:48:59 +00006281 ("OBJC_EHTYPE_$_" +
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00006282 ID->getIdentifier()->getName()));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006283 }
6284
John McCall1fb0caa2010-10-22 21:05:15 +00006285 if (CGM.getLangOptions().getVisibilityMode() == HiddenVisibility)
Daniel Dunbar6ab187a2009-04-07 05:48:37 +00006286 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar4b429ae2010-04-25 20:39:32 +00006287 Entry->setAlignment(CGM.getTargetData().getABITypeAlignment(
6288 ObjCTypes.EHTypeTy));
Daniel Dunbar8158a2f2009-04-08 04:21:03 +00006289
6290 if (ForDefinition) {
6291 Entry->setSection("__DATA,__objc_const");
6292 Entry->setLinkage(llvm::GlobalValue::ExternalLinkage);
6293 } else {
6294 Entry->setSection("__DATA,__datacoal_nt,coalesced");
6295 }
Daniel Dunbare588b992009-03-01 04:46:24 +00006296
6297 return Entry;
6298}
Daniel Dunbar6bff2512009-08-03 17:06:42 +00006299
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00006300/* *** */
6301
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00006302CodeGen::CGObjCRuntime *
6303CodeGen::CreateMacObjCRuntime(CodeGen::CodeGenModule &CGM) {
David Chisnall60be6072011-03-22 21:21:24 +00006304 if (CGM.getLangOptions().ObjCNonFragileABI)
6305 return new CGObjCNonFragileABIMac(CGM);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00006306 return new CGObjCMac(CGM);
6307}