blob: 159e927508a4de3e493b6d6550d221c8133f919d [file] [log] [blame]
Daniel Dunbar303e2c22008-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 Lattner57540c52011-04-15 05:22:18 +000010// This provides Objective-C code generation targeting the Apple runtime.
Daniel Dunbar303e2c22008-08-11 02:45:11 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "CGObjCRuntime.h"
Daniel Dunbar3ad53482008-08-11 21:35:06 +000015
Daniel Dunbar034299e2010-03-31 01:09:11 +000016#include "CGRecordLayout.h"
Daniel Dunbar3ad53482008-08-11 21:35:06 +000017#include "CodeGenModule.h"
Daniel Dunbara94ecd22008-08-16 03:19:19 +000018#include "CodeGenFunction.h"
John McCallad7c5c12011-02-08 08:22:06 +000019#include "CGBlocks.h"
John McCalled1ae862011-01-28 11:13:47 +000020#include "CGCleanup.h"
Daniel Dunbar8b8683f2008-08-12 00:12:39 +000021#include "clang/AST/ASTContext.h"
Daniel Dunbar221fa942008-08-11 04:54:23 +000022#include "clang/AST/Decl.h"
Daniel Dunbarb036db82008-08-13 03:21:16 +000023#include "clang/AST/DeclObjC.h"
Anders Carlsson15b73de2009-07-18 19:43:29 +000024#include "clang/AST/RecordLayout.h"
Chris Lattnerf0b64d72009-04-26 01:32:48 +000025#include "clang/AST/StmtObjC.h"
Daniel Dunbar3ad53482008-08-11 21:35:06 +000026#include "clang/Basic/LangOptions.h"
Chandler Carruth85098242010-06-15 23:19:56 +000027#include "clang/Frontend/CodeGenOptions.h"
Daniel Dunbar3ad53482008-08-11 21:35:06 +000028
John McCall42227ed2010-07-31 23:20:56 +000029#include "llvm/InlineAsm.h"
30#include "llvm/IntrinsicInst.h"
Owen Andersonae86c192009-07-13 04:10:07 +000031#include "llvm/LLVMContext.h"
Daniel Dunbar8b8683f2008-08-12 00:12:39 +000032#include "llvm/Module.h"
Daniel Dunbarc475d422008-10-29 22:36:39 +000033#include "llvm/ADT/DenseSet.h"
Daniel Dunbard027a922009-09-07 00:20:42 +000034#include "llvm/ADT/SetVector.h"
35#include "llvm/ADT/SmallString.h"
Fariborz Jahanian751c1e72009-12-12 21:26:21 +000036#include "llvm/ADT/SmallPtrSet.h"
John McCall5c08ab92010-07-13 22:12:14 +000037#include "llvm/Support/CallSite.h"
Daniel Dunbard027a922009-09-07 00:20:42 +000038#include "llvm/Support/raw_ostream.h"
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +000039#include "llvm/Target/TargetData.h"
Torok Edwindb714922009-08-24 13:25:12 +000040#include <cstdio>
Daniel Dunbar303e2c22008-08-11 02:45:11 +000041
42using namespace clang;
Daniel Dunbar41cf9de2008-09-09 01:06:48 +000043using namespace CodeGen;
Daniel Dunbar303e2c22008-08-11 02:45:11 +000044
Daniel Dunbar9fd114d2009-04-22 07:32:20 +000045
Daniel Dunbar303e2c22008-08-11 02:45:11 +000046namespace {
Daniel Dunbar8b8683f2008-08-12 00:12:39 +000047
Daniel Dunbar59e476b2009-08-03 17:06:42 +000048typedef std::vector<llvm::Constant*> ConstantVector;
Daniel Dunbareb1f9a22008-08-27 02:31:56 +000049
Daniel Dunbar59e476b2009-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 Dunbarb036db82008-08-13 03:21:16 +000052
Fariborz Jahanian279eda62009-01-21 22:04:16 +000053class ObjCCommonTypesHelper {
Owen Anderson170229f2009-07-14 23:10:40 +000054protected:
55 llvm::LLVMContext &VMContext;
Daniel Dunbar59e476b2009-08-03 17:06:42 +000056
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +000057private:
John McCall9dc0db22011-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 Jahanian5d5ed2d2009-05-11 19:25:47 +000065 llvm::Constant *getMessageSendFn() const {
John McCall31168b02011-06-15 23:02:42 +000066 // Add the non-lazy-bind attribute, since objc_msgSend is likely to
67 // be called a lot.
Chris Lattnera5f58b02011-07-09 17:41:47 +000068 llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy };
John McCall9dc0db22011-05-15 01:53:33 +000069 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
70 params, true),
John McCall31168b02011-06-15 23:02:42 +000071 "objc_msgSend",
72 llvm::Attribute::NonLazyBind);
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +000073 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +000074
John McCall9dc0db22011-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 Jahanian5d5ed2d2009-05-11 19:25:47 +000080 llvm::Constant *getMessageSendStretFn() const {
Chris Lattnera5f58b02011-07-09 17:41:47 +000081 llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy };
John McCall9dc0db22011-05-15 01:53:33 +000082 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.VoidTy,
83 params, true),
84 "objc_msgSend_stret");
Daniel Dunbar59e476b2009-08-03 17:06:42 +000085
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +000086 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +000087
John McCall9dc0db22011-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 Jahanian5d5ed2d2009-05-11 19:25:47 +000093 llvm::Constant *getMessageSendFpretFn() const {
Chris Lattnera5f58b02011-07-09 17:41:47 +000094 llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy };
John McCall9dc0db22011-05-15 01:53:33 +000095 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(
Owen Anderson41a75022009-08-13 21:57:51 +000096 llvm::Type::getDoubleTy(VMContext),
John McCall9dc0db22011-05-15 01:53:33 +000097 params, true),
98 "objc_msgSend_fpret");
Daniel Dunbar59e476b2009-08-03 17:06:42 +000099
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000100 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000101
Anders Carlsson2f1a6c32011-10-31 16:27:11 +0000102 /// _Complex long double objc_msgSend_fp2ret(id self, SEL op, ...)
103 ///
104 /// The messenger used when the return value is returned in two values on the
105 /// x87 floating point stack; without a special entrypoint, the nil case
106 /// would be unbalanced. Only used on 64-bit X86.
107 llvm::Constant *getMessageSendFp2retFn() const {
108 llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy };
109 llvm::Type *longDoubleType = llvm::Type::getX86_FP80Ty(VMContext);
110 llvm::Type *resultType =
111 llvm::StructType::get(longDoubleType, longDoubleType, NULL);
112
113 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(resultType,
114 params, true),
115 "objc_msgSend_fp2ret");
116 }
117
John McCall9dc0db22011-05-15 01:53:33 +0000118 /// id objc_msgSendSuper(struct objc_super *super, SEL op, ...)
119 ///
120 /// The messenger used for super calls, which have different dispatch
121 /// semantics. The class passed is the superclass of the current
122 /// class.
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000123 llvm::Constant *getMessageSendSuperFn() const {
Chris Lattnera5f58b02011-07-09 17:41:47 +0000124 llvm::Type *params[] = { SuperPtrTy, SelectorPtrTy };
Owen Anderson9793f0e2009-07-29 22:16:19 +0000125 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall9dc0db22011-05-15 01:53:33 +0000126 params, true),
127 "objc_msgSendSuper");
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000128 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000129
John McCall9dc0db22011-05-15 01:53:33 +0000130 /// id objc_msgSendSuper2(struct objc_super *super, SEL op, ...)
131 ///
132 /// A slightly different messenger used for super calls. The class
133 /// passed is the current class.
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000134 llvm::Constant *getMessageSendSuperFn2() const {
Chris Lattnera5f58b02011-07-09 17:41:47 +0000135 llvm::Type *params[] = { SuperPtrTy, SelectorPtrTy };
Owen Anderson9793f0e2009-07-29 22:16:19 +0000136 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall9dc0db22011-05-15 01:53:33 +0000137 params, true),
138 "objc_msgSendSuper2");
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000139 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000140
John McCall9dc0db22011-05-15 01:53:33 +0000141 /// void objc_msgSendSuper_stret(void *stretAddr, struct objc_super *super,
142 /// SEL op, ...)
143 ///
144 /// The messenger used for super calls which return an aggregate indirectly.
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000145 llvm::Constant *getMessageSendSuperStretFn() const {
Chris Lattnera5f58b02011-07-09 17:41:47 +0000146 llvm::Type *params[] = { Int8PtrTy, SuperPtrTy, SelectorPtrTy };
Owen Anderson170229f2009-07-14 23:10:40 +0000147 return CGM.CreateRuntimeFunction(
John McCall9dc0db22011-05-15 01:53:33 +0000148 llvm::FunctionType::get(CGM.VoidTy, params, true),
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000149 "objc_msgSendSuper_stret");
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000150 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000151
John McCall9dc0db22011-05-15 01:53:33 +0000152 /// void objc_msgSendSuper2_stret(void * stretAddr, struct objc_super *super,
153 /// SEL op, ...)
154 ///
155 /// objc_msgSendSuper_stret with the super2 semantics.
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000156 llvm::Constant *getMessageSendSuperStretFn2() const {
Chris Lattnera5f58b02011-07-09 17:41:47 +0000157 llvm::Type *params[] = { Int8PtrTy, SuperPtrTy, SelectorPtrTy };
Owen Anderson170229f2009-07-14 23:10:40 +0000158 return CGM.CreateRuntimeFunction(
John McCall9dc0db22011-05-15 01:53:33 +0000159 llvm::FunctionType::get(CGM.VoidTy, params, true),
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000160 "objc_msgSendSuper2_stret");
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000161 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000162
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000163 llvm::Constant *getMessageSendSuperFpretFn() const {
164 // There is no objc_msgSendSuper_fpret? How can that work?
165 return getMessageSendSuperFn();
166 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000167
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000168 llvm::Constant *getMessageSendSuperFpretFn2() const {
169 // There is no objc_msgSendSuper_fpret? How can that work?
170 return getMessageSendSuperFn2();
171 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000172
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000173protected:
174 CodeGen::CodeGenModule &CGM;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000175
Daniel Dunbar8b8683f2008-08-12 00:12:39 +0000176public:
Chris Lattnera5f58b02011-07-09 17:41:47 +0000177 llvm::Type *ShortTy, *IntTy, *LongTy, *LongLongTy;
Bob Wilson5f4e3a72011-11-30 01:57:58 +0000178 llvm::Type *Int8PtrTy, *Int8PtrPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000179
Daniel Dunbar5d715592008-08-12 05:28:47 +0000180 /// ObjectPtrTy - LLVM type for object handles (typeof(id))
Chris Lattnera5f58b02011-07-09 17:41:47 +0000181 llvm::Type *ObjectPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000182
Fariborz Jahanian406b1172008-11-18 20:18:11 +0000183 /// PtrObjectPtrTy - LLVM type for id *
Chris Lattnera5f58b02011-07-09 17:41:47 +0000184 llvm::Type *PtrObjectPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000185
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +0000186 /// SelectorPtrTy - LLVM type for selector handles (typeof(SEL))
Chris Lattnera5f58b02011-07-09 17:41:47 +0000187 llvm::Type *SelectorPtrTy;
Douglas Gregor020de322012-01-17 18:36:30 +0000188
189private:
Daniel Dunbarb036db82008-08-13 03:21:16 +0000190 /// ProtocolPtrTy - LLVM type for external protocol handles
191 /// (typeof(Protocol))
Chris Lattnera5f58b02011-07-09 17:41:47 +0000192 llvm::Type *ExternalProtocolPtrTy;
Douglas Gregor020de322012-01-17 18:36:30 +0000193
194public:
195 llvm::Type *getExternalProtocolPtrTy() {
196 if (!ExternalProtocolPtrTy) {
197 // FIXME: It would be nice to unify this with the opaque type, so that the
198 // IR comes out a bit cleaner.
199 CodeGen::CodeGenTypes &Types = CGM.getTypes();
200 ASTContext &Ctx = CGM.getContext();
201 llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType());
202 ExternalProtocolPtrTy = llvm::PointerType::getUnqual(T);
203 }
204
205 return ExternalProtocolPtrTy;
206 }
207
Daniel Dunbarc722b852008-08-30 03:02:31 +0000208 // SuperCTy - clang type for struct objc_super.
209 QualType SuperCTy;
210 // SuperPtrCTy - clang type for struct objc_super *.
211 QualType SuperPtrCTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000212
Daniel Dunbarf6397fe2008-08-23 04:28:29 +0000213 /// SuperTy - LLVM type for struct objc_super.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000214 llvm::StructType *SuperTy;
Daniel Dunbar97ff50d2008-08-23 09:25:55 +0000215 /// SuperPtrTy - LLVM type for struct objc_super *.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000216 llvm::Type *SuperPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000217
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +0000218 /// PropertyTy - LLVM type for struct objc_property (struct _prop_t
219 /// in GCC parlance).
Chris Lattnera5f58b02011-07-09 17:41:47 +0000220 llvm::StructType *PropertyTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000221
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +0000222 /// PropertyListTy - LLVM type for struct objc_property_list
223 /// (_prop_list_t in GCC parlance).
Chris Lattnera5f58b02011-07-09 17:41:47 +0000224 llvm::StructType *PropertyListTy;
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +0000225 /// PropertyListPtrTy - LLVM type for struct objc_property_list*.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000226 llvm::Type *PropertyListPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000227
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +0000228 // MethodTy - LLVM type for struct objc_method.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000229 llvm::StructType *MethodTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000230
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000231 /// CacheTy - LLVM type for struct objc_cache.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000232 llvm::Type *CacheTy;
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000233 /// CachePtrTy - LLVM type for struct objc_cache *.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000234 llvm::Type *CachePtrTy;
Fariborz Jahanian0a3cfcc2011-06-22 20:21:51 +0000235
Chris Lattnerce8754e2009-04-22 02:44:54 +0000236 llvm::Constant *getGetPropertyFn() {
237 CodeGen::CodeGenTypes &Types = CGM.getTypes();
238 ASTContext &Ctx = CGM.getContext();
239 // id objc_getProperty (id, SEL, ptrdiff_t, bool)
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000240 SmallVector<CanQualType,4> Params;
John McCall2da83a32010-02-26 00:48:12 +0000241 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType());
242 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType());
Chris Lattnerce8754e2009-04-22 02:44:54 +0000243 Params.push_back(IdType);
244 Params.push_back(SelType);
David Chisnall08a45252011-03-22 20:03:13 +0000245 Params.push_back(Ctx.getPointerDiffType()->getCanonicalTypeUnqualified());
Chris Lattnerce8754e2009-04-22 02:44:54 +0000246 Params.push_back(Ctx.BoolTy);
Chris Lattner2192fe52011-07-18 04:24:23 +0000247 llvm::FunctionType *FTy =
John McCallab26cfa2010-02-05 21:31:56 +0000248 Types.GetFunctionType(Types.getFunctionInfo(IdType, Params,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000249 FunctionType::ExtInfo()),
250 false);
Chris Lattnerce8754e2009-04-22 02:44:54 +0000251 return CGM.CreateRuntimeFunction(FTy, "objc_getProperty");
252 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000253
Chris Lattnerce8754e2009-04-22 02:44:54 +0000254 llvm::Constant *getSetPropertyFn() {
255 CodeGen::CodeGenTypes &Types = CGM.getTypes();
256 ASTContext &Ctx = CGM.getContext();
257 // void objc_setProperty (id, SEL, ptrdiff_t, id, bool, bool)
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000258 SmallVector<CanQualType,6> Params;
John McCall2da83a32010-02-26 00:48:12 +0000259 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType());
260 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType());
Chris Lattnerce8754e2009-04-22 02:44:54 +0000261 Params.push_back(IdType);
262 Params.push_back(SelType);
David Chisnall08a45252011-03-22 20:03:13 +0000263 Params.push_back(Ctx.getPointerDiffType()->getCanonicalTypeUnqualified());
Chris Lattnerce8754e2009-04-22 02:44:54 +0000264 Params.push_back(IdType);
265 Params.push_back(Ctx.BoolTy);
266 Params.push_back(Ctx.BoolTy);
Chris Lattner2192fe52011-07-18 04:24:23 +0000267 llvm::FunctionType *FTy =
John McCallab26cfa2010-02-05 21:31:56 +0000268 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000269 FunctionType::ExtInfo()),
270 false);
Chris Lattnerce8754e2009-04-22 02:44:54 +0000271 return CGM.CreateRuntimeFunction(FTy, "objc_setProperty");
272 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000273
Fariborz Jahanian5a8c2032010-04-12 18:18:10 +0000274
275 llvm::Constant *getCopyStructFn() {
276 CodeGen::CodeGenTypes &Types = CGM.getTypes();
277 ASTContext &Ctx = CGM.getContext();
278 // void objc_copyStruct (void *, const void *, size_t, bool, bool)
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000279 SmallVector<CanQualType,5> Params;
Fariborz Jahanian5a8c2032010-04-12 18:18:10 +0000280 Params.push_back(Ctx.VoidPtrTy);
281 Params.push_back(Ctx.VoidPtrTy);
282 Params.push_back(Ctx.LongTy);
283 Params.push_back(Ctx.BoolTy);
284 Params.push_back(Ctx.BoolTy);
Chris Lattner2192fe52011-07-18 04:24:23 +0000285 llvm::FunctionType *FTy =
Fariborz Jahanian5a8c2032010-04-12 18:18:10 +0000286 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
287 FunctionType::ExtInfo()),
288 false);
289 return CGM.CreateRuntimeFunction(FTy, "objc_copyStruct");
290 }
291
Fariborz Jahanian1e1b5492012-01-06 18:07:23 +0000292 /// This routine declares and returns address of:
293 /// void objc_copyCppObjectAtomic(
294 /// void *dest, const void *src,
295 /// void (*copyHelper) (void *dest, const void *source));
296 llvm::Constant *getCppAtomicObjectFunction() {
297 CodeGen::CodeGenTypes &Types = CGM.getTypes();
298 ASTContext &Ctx = CGM.getContext();
299 /// void objc_copyCppObjectAtomic(void *dest, const void *src, void *helper);
300 SmallVector<CanQualType,3> Params;
301 Params.push_back(Ctx.VoidPtrTy);
302 Params.push_back(Ctx.VoidPtrTy);
303 Params.push_back(Ctx.VoidPtrTy);
304 llvm::FunctionType *FTy =
305 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
306 FunctionType::ExtInfo()),
307 false);
308 return CGM.CreateRuntimeFunction(FTy, "objc_copyCppObjectAtomic");
309 }
310
Chris Lattnerce8754e2009-04-22 02:44:54 +0000311 llvm::Constant *getEnumerationMutationFn() {
Daniel Dunbar9d82da42009-07-11 20:32:50 +0000312 CodeGen::CodeGenTypes &Types = CGM.getTypes();
313 ASTContext &Ctx = CGM.getContext();
Chris Lattnerce8754e2009-04-22 02:44:54 +0000314 // void objc_enumerationMutation (id)
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000315 SmallVector<CanQualType,1> Params;
John McCall2da83a32010-02-26 00:48:12 +0000316 Params.push_back(Ctx.getCanonicalParamType(Ctx.getObjCIdType()));
Chris Lattner2192fe52011-07-18 04:24:23 +0000317 llvm::FunctionType *FTy =
John McCallab26cfa2010-02-05 21:31:56 +0000318 Types.GetFunctionType(Types.getFunctionInfo(Ctx.VoidTy, Params,
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000319 FunctionType::ExtInfo()),
320 false);
Chris Lattnerce8754e2009-04-22 02:44:54 +0000321 return CGM.CreateRuntimeFunction(FTy, "objc_enumerationMutation");
322 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000323
Fariborz Jahanianeee54df2009-01-22 00:37:21 +0000324 /// GcReadWeakFn -- LLVM objc_read_weak (id *src) function.
Chris Lattnerce8754e2009-04-22 02:44:54 +0000325 llvm::Constant *getGcReadWeakFn() {
326 // id objc_read_weak (id *)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000327 llvm::Type *args[] = { ObjectPtrTy->getPointerTo() };
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000328 llvm::FunctionType *FTy =
John McCall9dc0db22011-05-15 01:53:33 +0000329 llvm::FunctionType::get(ObjectPtrTy, args, false);
Chris Lattnerce8754e2009-04-22 02:44:54 +0000330 return CGM.CreateRuntimeFunction(FTy, "objc_read_weak");
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000331 }
332
Fariborz Jahanianeee54df2009-01-22 00:37:21 +0000333 /// GcAssignWeakFn -- LLVM objc_assign_weak function.
Chris Lattner6fdd57c2009-04-17 22:12:36 +0000334 llvm::Constant *getGcAssignWeakFn() {
335 // id objc_assign_weak (id, id *)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000336 llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() };
Chris Lattner6fdd57c2009-04-17 22:12:36 +0000337 llvm::FunctionType *FTy =
John McCall9dc0db22011-05-15 01:53:33 +0000338 llvm::FunctionType::get(ObjectPtrTy, args, false);
Chris Lattner6fdd57c2009-04-17 22:12:36 +0000339 return CGM.CreateRuntimeFunction(FTy, "objc_assign_weak");
340 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000341
Fariborz Jahanianeee54df2009-01-22 00:37:21 +0000342 /// GcAssignGlobalFn -- LLVM objc_assign_global function.
Chris Lattner0a696a422009-04-22 02:38:11 +0000343 llvm::Constant *getGcAssignGlobalFn() {
344 // id objc_assign_global(id, id *)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000345 llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() };
Owen Anderson170229f2009-07-14 23:10:40 +0000346 llvm::FunctionType *FTy =
John McCall9dc0db22011-05-15 01:53:33 +0000347 llvm::FunctionType::get(ObjectPtrTy, args, false);
Chris Lattner0a696a422009-04-22 02:38:11 +0000348 return CGM.CreateRuntimeFunction(FTy, "objc_assign_global");
349 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000350
Fariborz Jahanian217af242010-07-20 20:30:03 +0000351 /// GcAssignThreadLocalFn -- LLVM objc_assign_threadlocal function.
352 llvm::Constant *getGcAssignThreadLocalFn() {
353 // id objc_assign_threadlocal(id src, id * dest)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000354 llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() };
Fariborz Jahanian217af242010-07-20 20:30:03 +0000355 llvm::FunctionType *FTy =
John McCall9dc0db22011-05-15 01:53:33 +0000356 llvm::FunctionType::get(ObjectPtrTy, args, false);
Fariborz Jahanian217af242010-07-20 20:30:03 +0000357 return CGM.CreateRuntimeFunction(FTy, "objc_assign_threadlocal");
358 }
359
Fariborz Jahanianeee54df2009-01-22 00:37:21 +0000360 /// GcAssignIvarFn -- LLVM objc_assign_ivar function.
Chris Lattner0a696a422009-04-22 02:38:11 +0000361 llvm::Constant *getGcAssignIvarFn() {
Fariborz Jahanian7a95d722009-09-24 22:25:38 +0000362 // id objc_assign_ivar(id, id *, ptrdiff_t)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000363 llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo(),
364 CGM.PtrDiffTy };
Owen Anderson170229f2009-07-14 23:10:40 +0000365 llvm::FunctionType *FTy =
John McCall9dc0db22011-05-15 01:53:33 +0000366 llvm::FunctionType::get(ObjectPtrTy, args, false);
Chris Lattner0a696a422009-04-22 02:38:11 +0000367 return CGM.CreateRuntimeFunction(FTy, "objc_assign_ivar");
368 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000369
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +0000370 /// GcMemmoveCollectableFn -- LLVM objc_memmove_collectable function.
371 llvm::Constant *GcMemmoveCollectableFn() {
372 // void *objc_memmove_collectable(void *dst, const void *src, size_t size)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000373 llvm::Type *args[] = { Int8PtrTy, Int8PtrTy, LongTy };
John McCall9dc0db22011-05-15 01:53:33 +0000374 llvm::FunctionType *FTy = llvm::FunctionType::get(Int8PtrTy, args, false);
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +0000375 return CGM.CreateRuntimeFunction(FTy, "objc_memmove_collectable");
376 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000377
Fariborz Jahanianeee54df2009-01-22 00:37:21 +0000378 /// GcAssignStrongCastFn -- LLVM objc_assign_strongCast function.
Chris Lattner0a696a422009-04-22 02:38:11 +0000379 llvm::Constant *getGcAssignStrongCastFn() {
Fariborz Jahanian217af242010-07-20 20:30:03 +0000380 // id objc_assign_strongCast(id, id *)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000381 llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() };
Owen Anderson170229f2009-07-14 23:10:40 +0000382 llvm::FunctionType *FTy =
John McCall9dc0db22011-05-15 01:53:33 +0000383 llvm::FunctionType::get(ObjectPtrTy, args, false);
Chris Lattner0a696a422009-04-22 02:38:11 +0000384 return CGM.CreateRuntimeFunction(FTy, "objc_assign_strongCast");
385 }
Anders Carlsson9ab53d12009-02-16 22:59:18 +0000386
387 /// ExceptionThrowFn - LLVM objc_exception_throw function.
Chris Lattner0a696a422009-04-22 02:38:11 +0000388 llvm::Constant *getExceptionThrowFn() {
389 // void objc_exception_throw(id)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000390 llvm::Type *args[] = { ObjectPtrTy };
Chris Lattner0a696a422009-04-22 02:38:11 +0000391 llvm::FunctionType *FTy =
John McCall9dc0db22011-05-15 01:53:33 +0000392 llvm::FunctionType::get(CGM.VoidTy, args, false);
Chris Lattner0a696a422009-04-22 02:38:11 +0000393 return CGM.CreateRuntimeFunction(FTy, "objc_exception_throw");
394 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000395
Fariborz Jahanian3336de12010-05-28 17:34:43 +0000396 /// ExceptionRethrowFn - LLVM objc_exception_rethrow function.
397 llvm::Constant *getExceptionRethrowFn() {
398 // void objc_exception_rethrow(void)
John McCall9dc0db22011-05-15 01:53:33 +0000399 llvm::FunctionType *FTy = llvm::FunctionType::get(CGM.VoidTy, false);
Fariborz Jahanian3336de12010-05-28 17:34:43 +0000400 return CGM.CreateRuntimeFunction(FTy, "objc_exception_rethrow");
401 }
402
Daniel Dunbar94ceb612009-02-24 01:43:46 +0000403 /// SyncEnterFn - LLVM object_sync_enter function.
Chris Lattnerdcceee72009-04-06 16:53:45 +0000404 llvm::Constant *getSyncEnterFn() {
405 // void objc_sync_enter (id)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000406 llvm::Type *args[] = { ObjectPtrTy };
Chris Lattnerdcceee72009-04-06 16:53:45 +0000407 llvm::FunctionType *FTy =
John McCall9dc0db22011-05-15 01:53:33 +0000408 llvm::FunctionType::get(CGM.VoidTy, args, false);
Chris Lattnerdcceee72009-04-06 16:53:45 +0000409 return CGM.CreateRuntimeFunction(FTy, "objc_sync_enter");
410 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000411
Daniel Dunbar94ceb612009-02-24 01:43:46 +0000412 /// SyncExitFn - LLVM object_sync_exit function.
Chris Lattner0a696a422009-04-22 02:38:11 +0000413 llvm::Constant *getSyncExitFn() {
414 // void objc_sync_exit (id)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000415 llvm::Type *args[] = { ObjectPtrTy };
Chris Lattner0a696a422009-04-22 02:38:11 +0000416 llvm::FunctionType *FTy =
John McCall9dc0db22011-05-15 01:53:33 +0000417 llvm::FunctionType::get(CGM.VoidTy, args, false);
Chris Lattner0a696a422009-04-22 02:38:11 +0000418 return CGM.CreateRuntimeFunction(FTy, "objc_sync_exit");
419 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000420
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000421 llvm::Constant *getSendFn(bool IsSuper) const {
422 return IsSuper ? getMessageSendSuperFn() : getMessageSendFn();
423 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000424
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000425 llvm::Constant *getSendFn2(bool IsSuper) const {
426 return IsSuper ? getMessageSendSuperFn2() : getMessageSendFn();
427 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000428
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000429 llvm::Constant *getSendStretFn(bool IsSuper) const {
430 return IsSuper ? getMessageSendSuperStretFn() : getMessageSendStretFn();
431 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000432
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000433 llvm::Constant *getSendStretFn2(bool IsSuper) const {
434 return IsSuper ? getMessageSendSuperStretFn2() : getMessageSendStretFn();
435 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000436
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000437 llvm::Constant *getSendFpretFn(bool IsSuper) const {
438 return IsSuper ? getMessageSendSuperFpretFn() : getMessageSendFpretFn();
439 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000440
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +0000441 llvm::Constant *getSendFpretFn2(bool IsSuper) const {
442 return IsSuper ? getMessageSendSuperFpretFn2() : getMessageSendFpretFn();
443 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000444
Anders Carlsson2f1a6c32011-10-31 16:27:11 +0000445 llvm::Constant *getSendFp2retFn(bool IsSuper) const {
446 return IsSuper ? getMessageSendSuperFn() : getMessageSendFp2retFn();
447 }
448
449 llvm::Constant *getSendFp2RetFn2(bool IsSuper) const {
450 return IsSuper ? getMessageSendSuperFn2() : getMessageSendFp2retFn();
451 }
452
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000453 ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm);
454 ~ObjCCommonTypesHelper(){}
455};
Daniel Dunbarf6397fe2008-08-23 04:28:29 +0000456
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000457/// ObjCTypesHelper - Helper class that encapsulates lazy
458/// construction of varies types used during ObjC generation.
459class ObjCTypesHelper : public ObjCCommonTypesHelper {
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000460public:
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +0000461 /// SymtabTy - LLVM type for struct objc_symtab.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000462 llvm::StructType *SymtabTy;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000463 /// SymtabPtrTy - LLVM type for struct objc_symtab *.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000464 llvm::Type *SymtabPtrTy;
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +0000465 /// ModuleTy - LLVM type for struct objc_module.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000466 llvm::StructType *ModuleTy;
Daniel Dunbarcb515c82008-08-12 03:39:23 +0000467
Daniel Dunbarb036db82008-08-13 03:21:16 +0000468 /// ProtocolTy - LLVM type for struct objc_protocol.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000469 llvm::StructType *ProtocolTy;
Daniel Dunbarb036db82008-08-13 03:21:16 +0000470 /// ProtocolPtrTy - LLVM type for struct objc_protocol *.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000471 llvm::Type *ProtocolPtrTy;
Daniel Dunbarb036db82008-08-13 03:21:16 +0000472 /// ProtocolExtensionTy - LLVM type for struct
473 /// objc_protocol_extension.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000474 llvm::StructType *ProtocolExtensionTy;
Daniel Dunbarb036db82008-08-13 03:21:16 +0000475 /// ProtocolExtensionTy - LLVM type for struct
476 /// objc_protocol_extension *.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000477 llvm::Type *ProtocolExtensionPtrTy;
Daniel Dunbarb036db82008-08-13 03:21:16 +0000478 /// MethodDescriptionTy - LLVM type for struct
479 /// objc_method_description.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000480 llvm::StructType *MethodDescriptionTy;
Daniel Dunbarb036db82008-08-13 03:21:16 +0000481 /// MethodDescriptionListTy - LLVM type for struct
482 /// objc_method_description_list.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000483 llvm::StructType *MethodDescriptionListTy;
Daniel Dunbarb036db82008-08-13 03:21:16 +0000484 /// MethodDescriptionListPtrTy - LLVM type for struct
485 /// objc_method_description_list *.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000486 llvm::Type *MethodDescriptionListPtrTy;
Daniel Dunbarb036db82008-08-13 03:21:16 +0000487 /// ProtocolListTy - LLVM type for struct objc_property_list.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000488 llvm::StructType *ProtocolListTy;
Daniel Dunbarb036db82008-08-13 03:21:16 +0000489 /// ProtocolListPtrTy - LLVM type for struct objc_property_list*.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000490 llvm::Type *ProtocolListPtrTy;
Daniel Dunbar938a77f2008-08-22 20:34:54 +0000491 /// CategoryTy - LLVM type for struct objc_category.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000492 llvm::StructType *CategoryTy;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000493 /// ClassTy - LLVM type for struct objc_class.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000494 llvm::StructType *ClassTy;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000495 /// ClassPtrTy - LLVM type for struct objc_class *.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000496 llvm::Type *ClassPtrTy;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000497 /// ClassExtensionTy - LLVM type for struct objc_class_ext.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000498 llvm::StructType *ClassExtensionTy;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000499 /// ClassExtensionPtrTy - LLVM type for struct objc_class_ext *.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000500 llvm::Type *ClassExtensionPtrTy;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000501 // IvarTy - LLVM type for struct objc_ivar.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000502 llvm::StructType *IvarTy;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000503 /// IvarListTy - LLVM type for struct objc_ivar_list.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000504 llvm::Type *IvarListTy;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000505 /// IvarListPtrTy - LLVM type for struct objc_ivar_list *.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000506 llvm::Type *IvarListPtrTy;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000507 /// MethodListTy - LLVM type for struct objc_method_list.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000508 llvm::Type *MethodListTy;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000509 /// MethodListPtrTy - LLVM type for struct objc_method_list *.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000510 llvm::Type *MethodListPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000511
Anders Carlsson9ff22482008-09-09 10:10:21 +0000512 /// ExceptionDataTy - LLVM type for struct _objc_exception_data.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000513 llvm::Type *ExceptionDataTy;
Fariborz Jahanian0a3cfcc2011-06-22 20:21:51 +0000514
Anders Carlsson9ff22482008-09-09 10:10:21 +0000515 /// ExceptionTryEnterFn - LLVM objc_exception_try_enter function.
Chris Lattnerc6406db2009-04-22 02:26:14 +0000516 llvm::Constant *getExceptionTryEnterFn() {
Chris Lattnera5f58b02011-07-09 17:41:47 +0000517 llvm::Type *params[] = { ExceptionDataTy->getPointerTo() };
Owen Anderson170229f2009-07-14 23:10:40 +0000518 return CGM.CreateRuntimeFunction(
John McCall9dc0db22011-05-15 01:53:33 +0000519 llvm::FunctionType::get(CGM.VoidTy, params, false),
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000520 "objc_exception_try_enter");
Chris Lattnerc6406db2009-04-22 02:26:14 +0000521 }
Anders Carlsson9ff22482008-09-09 10:10:21 +0000522
523 /// ExceptionTryExitFn - LLVM objc_exception_try_exit function.
Chris Lattnerc6406db2009-04-22 02:26:14 +0000524 llvm::Constant *getExceptionTryExitFn() {
Chris Lattnera5f58b02011-07-09 17:41:47 +0000525 llvm::Type *params[] = { ExceptionDataTy->getPointerTo() };
Owen Anderson170229f2009-07-14 23:10:40 +0000526 return CGM.CreateRuntimeFunction(
John McCall9dc0db22011-05-15 01:53:33 +0000527 llvm::FunctionType::get(CGM.VoidTy, params, false),
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000528 "objc_exception_try_exit");
Chris Lattnerc6406db2009-04-22 02:26:14 +0000529 }
Anders Carlsson9ff22482008-09-09 10:10:21 +0000530
531 /// ExceptionExtractFn - LLVM objc_exception_extract function.
Chris Lattnerc6406db2009-04-22 02:26:14 +0000532 llvm::Constant *getExceptionExtractFn() {
Chris Lattnera5f58b02011-07-09 17:41:47 +0000533 llvm::Type *params[] = { ExceptionDataTy->getPointerTo() };
Owen Anderson9793f0e2009-07-29 22:16:19 +0000534 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall9dc0db22011-05-15 01:53:33 +0000535 params, false),
Chris Lattnerc6406db2009-04-22 02:26:14 +0000536 "objc_exception_extract");
Chris Lattnerc6406db2009-04-22 02:26:14 +0000537 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000538
Anders Carlsson9ff22482008-09-09 10:10:21 +0000539 /// ExceptionMatchFn - LLVM objc_exception_match function.
Chris Lattnerc6406db2009-04-22 02:26:14 +0000540 llvm::Constant *getExceptionMatchFn() {
Chris Lattnera5f58b02011-07-09 17:41:47 +0000541 llvm::Type *params[] = { ClassPtrTy, ObjectPtrTy };
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000542 return CGM.CreateRuntimeFunction(
John McCall9dc0db22011-05-15 01:53:33 +0000543 llvm::FunctionType::get(CGM.Int32Ty, params, false),
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000544 "objc_exception_match");
545
Chris Lattnerc6406db2009-04-22 02:26:14 +0000546 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000547
Anders Carlsson9ff22482008-09-09 10:10:21 +0000548 /// SetJmpFn - LLVM _setjmp function.
Chris Lattnerc6406db2009-04-22 02:26:14 +0000549 llvm::Constant *getSetJmpFn() {
John McCall9dc0db22011-05-15 01:53:33 +0000550 // This is specifically the prototype for x86.
Chris Lattnera5f58b02011-07-09 17:41:47 +0000551 llvm::Type *params[] = { CGM.Int32Ty->getPointerTo() };
John McCall9dc0db22011-05-15 01:53:33 +0000552 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.Int32Ty,
553 params, false),
Bill Wendlingbcefeae2011-11-29 00:10:10 +0000554 "_setjmp",
555 llvm::Attribute::ReturnsTwice);
Chris Lattnerc6406db2009-04-22 02:26:14 +0000556 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000557
Daniel Dunbar8b8683f2008-08-12 00:12:39 +0000558public:
559 ObjCTypesHelper(CodeGen::CodeGenModule &cgm);
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000560 ~ObjCTypesHelper() {}
Daniel Dunbar8b8683f2008-08-12 00:12:39 +0000561};
562
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +0000563/// ObjCNonFragileABITypesHelper - will have all types needed by objective-c's
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000564/// modern abi
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +0000565class ObjCNonFragileABITypesHelper : public ObjCCommonTypesHelper {
Fariborz Jahaniane4dc35d2009-02-04 20:42:28 +0000566public:
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000567
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000568 // MethodListnfABITy - LLVM for struct _method_list_t
Chris Lattnera5f58b02011-07-09 17:41:47 +0000569 llvm::StructType *MethodListnfABITy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000570
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000571 // MethodListnfABIPtrTy - LLVM for struct _method_list_t*
Chris Lattnera5f58b02011-07-09 17:41:47 +0000572 llvm::Type *MethodListnfABIPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000573
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000574 // ProtocolnfABITy = LLVM for struct _protocol_t
Chris Lattnera5f58b02011-07-09 17:41:47 +0000575 llvm::StructType *ProtocolnfABITy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000576
Daniel Dunbar8de90f02009-02-15 07:36:20 +0000577 // ProtocolnfABIPtrTy = LLVM for struct _protocol_t*
Chris Lattnera5f58b02011-07-09 17:41:47 +0000578 llvm::Type *ProtocolnfABIPtrTy;
Daniel Dunbar8de90f02009-02-15 07:36:20 +0000579
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000580 // ProtocolListnfABITy - LLVM for struct _objc_protocol_list
Chris Lattnera5f58b02011-07-09 17:41:47 +0000581 llvm::StructType *ProtocolListnfABITy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000582
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000583 // ProtocolListnfABIPtrTy - LLVM for struct _objc_protocol_list*
Chris Lattnera5f58b02011-07-09 17:41:47 +0000584 llvm::Type *ProtocolListnfABIPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000585
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000586 // ClassnfABITy - LLVM for struct _class_t
Chris Lattnera5f58b02011-07-09 17:41:47 +0000587 llvm::StructType *ClassnfABITy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000588
Fariborz Jahanian71394042009-01-23 23:53:38 +0000589 // ClassnfABIPtrTy - LLVM for struct _class_t*
Chris Lattnera5f58b02011-07-09 17:41:47 +0000590 llvm::Type *ClassnfABIPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000591
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000592 // IvarnfABITy - LLVM for struct _ivar_t
Chris Lattnera5f58b02011-07-09 17:41:47 +0000593 llvm::StructType *IvarnfABITy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000594
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000595 // IvarListnfABITy - LLVM for struct _ivar_list_t
Chris Lattnera5f58b02011-07-09 17:41:47 +0000596 llvm::StructType *IvarListnfABITy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000597
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000598 // IvarListnfABIPtrTy = LLVM for struct _ivar_list_t*
Chris Lattnera5f58b02011-07-09 17:41:47 +0000599 llvm::Type *IvarListnfABIPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000600
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000601 // ClassRonfABITy - LLVM for struct _class_ro_t
Chris Lattnera5f58b02011-07-09 17:41:47 +0000602 llvm::StructType *ClassRonfABITy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000603
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000604 // ImpnfABITy - LLVM for id (*)(id, SEL, ...)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000605 llvm::Type *ImpnfABITy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000606
Fariborz Jahanian0232c052009-01-23 01:46:23 +0000607 // CategorynfABITy - LLVM for struct _category_t
Chris Lattnera5f58b02011-07-09 17:41:47 +0000608 llvm::StructType *CategorynfABITy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000609
Fariborz Jahanian82c72e12009-02-03 23:49:23 +0000610 // New types for nonfragile abi messaging.
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000611
Fariborz Jahanian82c72e12009-02-03 23:49:23 +0000612 // MessageRefTy - LLVM for:
613 // struct _message_ref_t {
614 // IMP messenger;
615 // SEL name;
616 // };
Chris Lattnera5f58b02011-07-09 17:41:47 +0000617 llvm::StructType *MessageRefTy;
Fariborz Jahaniane4dc35d2009-02-04 20:42:28 +0000618 // MessageRefCTy - clang type for struct _message_ref_t
619 QualType MessageRefCTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000620
Fariborz Jahanian82c72e12009-02-03 23:49:23 +0000621 // MessageRefPtrTy - LLVM for struct _message_ref_t*
Chris Lattnera5f58b02011-07-09 17:41:47 +0000622 llvm::Type *MessageRefPtrTy;
Fariborz Jahaniane4dc35d2009-02-04 20:42:28 +0000623 // MessageRefCPtrTy - clang type for struct _message_ref_t*
624 QualType MessageRefCPtrTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000625
Fariborz Jahanian4e87c832009-02-05 01:13:09 +0000626 // MessengerTy - Type of the messenger (shown as IMP above)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000627 llvm::FunctionType *MessengerTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000628
Fariborz Jahanian82c72e12009-02-03 23:49:23 +0000629 // SuperMessageRefTy - LLVM for:
630 // struct _super_message_ref_t {
631 // SUPER_IMP messenger;
632 // SEL name;
633 // };
Chris Lattnera5f58b02011-07-09 17:41:47 +0000634 llvm::StructType *SuperMessageRefTy;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000635
Fariborz Jahanian82c72e12009-02-03 23:49:23 +0000636 // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t*
Chris Lattnera5f58b02011-07-09 17:41:47 +0000637 llvm::Type *SuperMessageRefPtrTy;
Daniel Dunbar0b0dcd92009-02-24 07:47:38 +0000638
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000639 llvm::Constant *getMessageSendFixupFn() {
640 // id objc_msgSend_fixup(id, struct message_ref_t*, ...)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000641 llvm::Type *params[] = { ObjectPtrTy, MessageRefPtrTy };
Owen Anderson9793f0e2009-07-29 22:16:19 +0000642 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall9dc0db22011-05-15 01:53:33 +0000643 params, true),
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000644 "objc_msgSend_fixup");
645 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000646
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000647 llvm::Constant *getMessageSendFpretFixupFn() {
648 // id objc_msgSend_fpret_fixup(id, struct message_ref_t*, ...)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000649 llvm::Type *params[] = { ObjectPtrTy, MessageRefPtrTy };
Owen Anderson9793f0e2009-07-29 22:16:19 +0000650 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall9dc0db22011-05-15 01:53:33 +0000651 params, true),
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000652 "objc_msgSend_fpret_fixup");
653 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000654
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000655 llvm::Constant *getMessageSendStretFixupFn() {
656 // id objc_msgSend_stret_fixup(id, struct message_ref_t*, ...)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000657 llvm::Type *params[] = { ObjectPtrTy, MessageRefPtrTy };
Owen Anderson9793f0e2009-07-29 22:16:19 +0000658 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall9dc0db22011-05-15 01:53:33 +0000659 params, true),
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000660 "objc_msgSend_stret_fixup");
661 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000662
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000663 llvm::Constant *getMessageSendSuper2FixupFn() {
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000664 // id objc_msgSendSuper2_fixup (struct objc_super *,
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000665 // struct _super_message_ref_t*, ...)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000666 llvm::Type *params[] = { SuperPtrTy, SuperMessageRefPtrTy };
Owen Anderson9793f0e2009-07-29 22:16:19 +0000667 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall9dc0db22011-05-15 01:53:33 +0000668 params, true),
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000669 "objc_msgSendSuper2_fixup");
670 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000671
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000672 llvm::Constant *getMessageSendSuper2StretFixupFn() {
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000673 // id objc_msgSendSuper2_stret_fixup(struct objc_super *,
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000674 // struct _super_message_ref_t*, ...)
Chris Lattnera5f58b02011-07-09 17:41:47 +0000675 llvm::Type *params[] = { SuperPtrTy, SuperMessageRefPtrTy };
Owen Anderson9793f0e2009-07-29 22:16:19 +0000676 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
John McCall9dc0db22011-05-15 01:53:33 +0000677 params, true),
Chris Lattner2dfdb3e2009-04-22 02:53:24 +0000678 "objc_msgSendSuper2_stret_fixup");
679 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000680
Chris Lattnera7c00b42009-04-22 02:15:23 +0000681 llvm::Constant *getObjCEndCatchFn() {
John McCall9dc0db22011-05-15 01:53:33 +0000682 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.VoidTy, false),
Chris Lattnera7c00b42009-04-22 02:15:23 +0000683 "objc_end_catch");
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000684
Chris Lattnera7c00b42009-04-22 02:15:23 +0000685 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000686
Chris Lattnera7c00b42009-04-22 02:15:23 +0000687 llvm::Constant *getObjCBeginCatchFn() {
Chris Lattnera5f58b02011-07-09 17:41:47 +0000688 llvm::Type *params[] = { Int8PtrTy };
Owen Anderson9793f0e2009-07-29 22:16:19 +0000689 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(Int8PtrTy,
John McCall9dc0db22011-05-15 01:53:33 +0000690 params, false),
Chris Lattnera7c00b42009-04-22 02:15:23 +0000691 "objc_begin_catch");
692 }
Daniel Dunbarb1559a42009-03-01 04:46:24 +0000693
Chris Lattnera5f58b02011-07-09 17:41:47 +0000694 llvm::StructType *EHTypeTy;
695 llvm::Type *EHTypePtrTy;
Fariborz Jahanian0a3cfcc2011-06-22 20:21:51 +0000696
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +0000697 ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm);
698 ~ObjCNonFragileABITypesHelper(){}
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000699};
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000700
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000701class CGObjCCommonMac : public CodeGen::CGObjCRuntime {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +0000702public:
703 // FIXME - accessibility
Fariborz Jahanian524bb202009-03-10 16:22:08 +0000704 class GC_IVAR {
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +0000705 public:
Daniel Dunbar7b89ace2009-05-03 13:44:42 +0000706 unsigned ivar_bytepos;
707 unsigned ivar_size;
708 GC_IVAR(unsigned bytepos = 0, unsigned size = 0)
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000709 : ivar_bytepos(bytepos), ivar_size(size) {}
Daniel Dunbar22b0ada2009-04-23 01:29:05 +0000710
711 // Allow sorting based on byte pos.
712 bool operator<(const GC_IVAR &b) const {
713 return ivar_bytepos < b.ivar_bytepos;
714 }
Fariborz Jahanian524bb202009-03-10 16:22:08 +0000715 };
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000716
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +0000717 class SKIP_SCAN {
Daniel Dunbar7b89ace2009-05-03 13:44:42 +0000718 public:
719 unsigned skip;
720 unsigned scan;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000721 SKIP_SCAN(unsigned _skip = 0, unsigned _scan = 0)
Daniel Dunbar7b89ace2009-05-03 13:44:42 +0000722 : skip(_skip), scan(_scan) {}
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +0000723 };
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000724
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000725protected:
726 CodeGen::CodeGenModule &CGM;
Owen Andersonae86c192009-07-13 04:10:07 +0000727 llvm::LLVMContext &VMContext;
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000728 // FIXME! May not be needing this after all.
Daniel Dunbar8b8683f2008-08-12 00:12:39 +0000729 unsigned ObjCABI;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000730
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +0000731 // gc ivar layout bitmap calculation helper caches.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000732 SmallVector<GC_IVAR, 16> SkipIvars;
733 SmallVector<GC_IVAR, 16> IvarsInfo;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000734
Daniel Dunbarc61d0e92008-08-25 06:02:07 +0000735 /// LazySymbols - Symbols to generate a lazy reference for. See
736 /// DefinedSymbols and FinishModule().
Daniel Dunbard027a922009-09-07 00:20:42 +0000737 llvm::SetVector<IdentifierInfo*> LazySymbols;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000738
Daniel Dunbarc61d0e92008-08-25 06:02:07 +0000739 /// DefinedSymbols - External symbols which are defined by this
740 /// module. The symbols in this list and LazySymbols are used to add
741 /// special linker symbols which ensure that Objective-C modules are
742 /// linked properly.
Daniel Dunbard027a922009-09-07 00:20:42 +0000743 llvm::SetVector<IdentifierInfo*> DefinedSymbols;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000744
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +0000745 /// ClassNames - uniqued class names.
Daniel Dunbarb036db82008-08-13 03:21:16 +0000746 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassNames;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000747
Daniel Dunbarcb515c82008-08-12 03:39:23 +0000748 /// MethodVarNames - uniqued method variable names.
749 llvm::DenseMap<Selector, llvm::GlobalVariable*> MethodVarNames;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000750
Fariborz Jahanian9adb2e62010-06-21 22:05:18 +0000751 /// DefinedCategoryNames - list of category names in form Class_Category.
752 llvm::SetVector<std::string> DefinedCategoryNames;
753
Daniel Dunbarb036db82008-08-13 03:21:16 +0000754 /// MethodVarTypes - uniqued method type signatures. We have to use
755 /// a StringMap here because have no other unique reference.
756 llvm::StringMap<llvm::GlobalVariable*> MethodVarTypes;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000757
Daniel Dunbar3c76cb52008-08-26 21:51:14 +0000758 /// MethodDefinitions - map of methods which have been defined in
759 /// this translation unit.
760 llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*> MethodDefinitions;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000761
Daniel Dunbar80a840b2008-08-23 00:19:03 +0000762 /// PropertyNames - uniqued method variable names.
763 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> PropertyNames;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000764
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000765 /// ClassReferences - uniqued class references.
766 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassReferences;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000767
Daniel Dunbarcb515c82008-08-12 03:39:23 +0000768 /// SelectorReferences - uniqued selector references.
769 llvm::DenseMap<Selector, llvm::GlobalVariable*> SelectorReferences;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000770
Daniel Dunbarb036db82008-08-13 03:21:16 +0000771 /// Protocols - Protocols for which an objc_protocol structure has
772 /// been emitted. Forward declarations are handled by creating an
773 /// empty structure whose initializer is filled in when/if defined.
774 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000775
Daniel Dunbarc475d422008-10-29 22:36:39 +0000776 /// DefinedProtocols - Protocols which have actually been
777 /// defined. We should not need this, see FIXME in GenerateProtocol.
778 llvm::DenseSet<IdentifierInfo*> DefinedProtocols;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000779
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000780 /// DefinedClasses - List of defined classes.
781 std::vector<llvm::GlobalValue*> DefinedClasses;
Daniel Dunbar9a017d72009-05-15 22:33:15 +0000782
783 /// DefinedNonLazyClasses - List of defined "non-lazy" classes.
784 std::vector<llvm::GlobalValue*> DefinedNonLazyClasses;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000785
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000786 /// DefinedCategories - List of defined categories.
787 std::vector<llvm::GlobalValue*> DefinedCategories;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000788
Daniel Dunbar9a017d72009-05-15 22:33:15 +0000789 /// DefinedNonLazyCategories - List of defined "non-lazy" categories.
790 std::vector<llvm::GlobalValue*> DefinedNonLazyCategories;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000791
Fariborz Jahanian0b1ccdc2009-01-21 23:34:32 +0000792 /// GetNameForMethod - Return a name for the given method.
793 /// \param[out] NameOut - The return value.
794 void GetNameForMethod(const ObjCMethodDecl *OMD,
795 const ObjCContainerDecl *CD,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000796 SmallVectorImpl<char> &NameOut);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000797
Fariborz Jahanian0b1ccdc2009-01-21 23:34:32 +0000798 /// GetMethodVarName - Return a unique constant for the given
799 /// selector's name. The return value has type char *.
800 llvm::Constant *GetMethodVarName(Selector Sel);
801 llvm::Constant *GetMethodVarName(IdentifierInfo *Ident);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000802
Fariborz Jahanian0b1ccdc2009-01-21 23:34:32 +0000803 /// GetMethodVarType - Return a unique constant for the given
Bob Wilson5f4e3a72011-11-30 01:57:58 +0000804 /// method's type encoding string. The return value has type char *.
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000805
Fariborz Jahanian0b1ccdc2009-01-21 23:34:32 +0000806 // FIXME: This is a horrible name.
Bob Wilson5f4e3a72011-11-30 01:57:58 +0000807 llvm::Constant *GetMethodVarType(const ObjCMethodDecl *D,
808 bool Extended = false);
Daniel Dunbarf5c18462009-04-20 06:54:31 +0000809 llvm::Constant *GetMethodVarType(const FieldDecl *D);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000810
Fariborz Jahanian0b1ccdc2009-01-21 23:34:32 +0000811 /// GetPropertyName - Return a unique constant for the given
812 /// name. The return value has type char *.
813 llvm::Constant *GetPropertyName(IdentifierInfo *Ident);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000814
Fariborz Jahanian0b1ccdc2009-01-21 23:34:32 +0000815 // FIXME: This can be dropped once string functions are unified.
816 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
817 const Decl *Container);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000818
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +0000819 /// GetClassName - Return a unique constant for the given selector's
820 /// name. The return value has type char *.
821 llvm::Constant *GetClassName(IdentifierInfo *Ident);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000822
Argyrios Kyrtzidis13257c52010-08-09 10:54:20 +0000823 llvm::Function *GetMethodDefinition(const ObjCMethodDecl *MD);
824
Fariborz Jahanianc559f3f2009-03-05 22:39:55 +0000825 /// BuildIvarLayout - Builds ivar layout bitmap for the class
826 /// implementation for the __strong or __weak case.
827 ///
Fariborz Jahanian1bf72882009-03-12 22:50:49 +0000828 llvm::Constant *BuildIvarLayout(const ObjCImplementationDecl *OI,
829 bool ForStrongLayout);
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +0000830
Fariborz Jahanian1f78a9a2010-08-05 00:19:48 +0000831 llvm::Constant *BuildIvarLayoutBitmap(std::string &BitMap);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000832
Daniel Dunbar15bd8882009-05-03 14:10:34 +0000833 void BuildAggrIvarRecordLayout(const RecordType *RT,
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000834 unsigned int BytePos, bool ForStrongLayout,
835 bool &HasUnion);
Daniel Dunbar36e2a1e2009-05-03 21:05:10 +0000836 void BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Fariborz Jahanian1bf72882009-03-12 22:50:49 +0000837 const llvm::StructLayout *Layout,
Fariborz Jahanian524bb202009-03-10 16:22:08 +0000838 const RecordDecl *RD,
Jordy Rosea91768e2011-07-22 02:08:32 +0000839 const SmallVectorImpl<const FieldDecl*> &RecFields,
Fariborz Jahanianc559f3f2009-03-05 22:39:55 +0000840 unsigned int BytePos, bool ForStrongLayout,
Fariborz Jahaniana123b642009-04-24 16:17:09 +0000841 bool &HasUnion);
Fariborz Jahanian1bf72882009-03-12 22:50:49 +0000842
Fariborz Jahanian01dff422009-03-05 19:17:31 +0000843 /// GetIvarLayoutName - Returns a unique constant for the given
844 /// ivar layout bitmap.
845 llvm::Constant *GetIvarLayoutName(IdentifierInfo *Ident,
846 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000847
Fariborz Jahanian066347e2009-01-28 22:18:42 +0000848 /// EmitPropertyList - Emit the given property list. The return
849 /// value has type PropertyListPtrTy.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000850 llvm::Constant *EmitPropertyList(Twine Name,
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000851 const Decl *Container,
Fariborz Jahanian066347e2009-01-28 22:18:42 +0000852 const ObjCContainerDecl *OCD,
853 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000854
Bob Wilson5f4e3a72011-11-30 01:57:58 +0000855 /// EmitProtocolMethodTypes - Generate the array of extended method type
856 /// strings. The return value has type Int8PtrPtrTy.
857 llvm::Constant *EmitProtocolMethodTypes(Twine Name,
858 const ConstantVector &MethodTypes,
859 const ObjCCommonTypesHelper &ObjCTypes);
860
Fariborz Jahanian751c1e72009-12-12 21:26:21 +0000861 /// PushProtocolProperties - Push protocol's property on the input stack.
862 void PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*, 16> &PropertySet,
863 std::vector<llvm::Constant*> &Properties,
864 const Decl *Container,
865 const ObjCProtocolDecl *PROTO,
866 const ObjCCommonTypesHelper &ObjCTypes);
867
Fariborz Jahanian56b3b772009-01-29 19:24:30 +0000868 /// GetProtocolRef - Return a reference to the internal protocol
869 /// description, creating an empty one if it has not been
870 /// defined. The return value has type ProtocolPtrTy.
871 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
Fariborz Jahanian67726212009-03-08 20:18:37 +0000872
Daniel Dunbar30c65362009-03-09 20:09:19 +0000873 /// CreateMetadataVar - Create a global variable with internal
874 /// linkage for use by the Objective-C runtime.
875 ///
876 /// This is a convenience wrapper which not only creates the
877 /// variable, but also sets the section and alignment and adds the
Chris Lattnerf56501c2009-07-17 23:57:13 +0000878 /// global to the "llvm.used" list.
Daniel Dunbar463cc8a2009-03-09 20:50:13 +0000879 ///
880 /// \param Name - The variable name.
881 /// \param Init - The variable initializer; this is also used to
882 /// define the type of the variable.
883 /// \param Section - The section the variable should go into, or 0.
884 /// \param Align - The alignment for the variable, or 0.
885 /// \param AddToUsed - Whether the variable should be added to
Daniel Dunbar4527d302009-04-14 17:42:51 +0000886 /// "llvm.used".
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000887 llvm::GlobalVariable *CreateMetadataVar(Twine Name,
Daniel Dunbar30c65362009-03-09 20:09:19 +0000888 llvm::Constant *Init,
889 const char *Section,
Daniel Dunbar463cc8a2009-03-09 20:50:13 +0000890 unsigned Align,
891 bool AddToUsed);
Daniel Dunbar30c65362009-03-09 20:09:19 +0000892
John McCall9e8bb002011-05-14 03:10:52 +0000893 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
894 ReturnValueSlot Return,
895 QualType ResultType,
896 llvm::Value *Sel,
897 llvm::Value *Arg0,
898 QualType Arg0Ty,
899 bool IsSuper,
900 const CallArgList &CallArgs,
901 const ObjCMethodDecl *OMD,
902 const ObjCCommonTypesHelper &ObjCTypes);
Daniel Dunbarf5c18462009-04-20 06:54:31 +0000903
Daniel Dunbar5e639272010-04-25 20:39:01 +0000904 /// EmitImageInfo - Emit the image info marker used to encode some module
905 /// level information.
906 void EmitImageInfo();
907
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000908public:
Owen Andersonae86c192009-07-13 04:10:07 +0000909 CGObjCCommonMac(CodeGen::CodeGenModule &cgm) :
Mike Stump11289f42009-09-09 15:08:12 +0000910 CGM(cgm), VMContext(cgm.getLLVMContext()) { }
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000911
David Chisnall481e3a82010-01-23 02:40:42 +0000912 virtual llvm::Constant *GenerateConstantString(const StringLiteral *SL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000913
Fariborz Jahanian99113fd2009-01-26 21:38:32 +0000914 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
915 const ObjCContainerDecl *CD=0);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000916
Fariborz Jahanian56b3b772009-01-29 19:24:30 +0000917 virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000918
Fariborz Jahanian56b3b772009-01-29 19:24:30 +0000919 /// GetOrEmitProtocol - Get the protocol object for the given
920 /// declaration, emitting it if necessary. The return value has type
921 /// ProtocolPtrTy.
922 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0;
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000923
Fariborz Jahanian56b3b772009-01-29 19:24:30 +0000924 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
925 /// object for the given declaration, emitting it if needed. These
926 /// forward references will be filled in with empty bodies if no
927 /// definition is seen. The return value has type ProtocolPtrTy.
928 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0;
John McCall351762c2011-02-07 10:33:21 +0000929 virtual llvm::Constant *BuildGCBlockLayout(CodeGen::CodeGenModule &CGM,
930 const CGBlockInfo &blockInfo);
Fariborz Jahanianc05349e2010-08-04 16:57:49 +0000931
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000932};
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000933
Fariborz Jahanian279eda62009-01-21 22:04:16 +0000934class CGObjCMac : public CGObjCCommonMac {
935private:
936 ObjCTypesHelper ObjCTypes;
Daniel Dunbar3ad53482008-08-11 21:35:06 +0000937
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +0000938 /// EmitModuleInfo - Another marker encoding module level
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000939 /// information.
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +0000940 void EmitModuleInfo();
941
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000942 /// EmitModuleSymols - Emit module symbols, the list of defined
943 /// classes and categories. The result has type SymtabPtrTy.
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +0000944 llvm::Constant *EmitModuleSymbols();
945
Daniel Dunbar3ad53482008-08-11 21:35:06 +0000946 /// FinishModule - Write out global data structures at the end of
947 /// processing a translation unit.
948 void FinishModule();
Daniel Dunbarb036db82008-08-13 03:21:16 +0000949
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000950 /// EmitClassExtension - Generate the class extension structure used
951 /// to store the weak ivar layout and properties. The return value
952 /// has type ClassExtensionPtrTy.
953 llvm::Constant *EmitClassExtension(const ObjCImplementationDecl *ID);
954
955 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
956 /// for the given class.
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000957 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000958 const ObjCInterfaceDecl *ID);
Fariborz Jahanianeb80c982009-11-12 20:14:24 +0000959
John McCall31168b02011-06-15 23:02:42 +0000960 llvm::Value *EmitClassRefFromId(CGBuilderTy &Builder,
961 IdentifierInfo *II);
962
963 llvm::Value *EmitNSAutoreleasePoolClassRef(CGBuilderTy &Builder);
964
Fariborz Jahanianeb80c982009-11-12 20:14:24 +0000965 /// EmitSuperClassRef - Emits reference to class's main metadata class.
966 llvm::Value *EmitSuperClassRef(const ObjCInterfaceDecl *ID);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000967
968 /// EmitIvarList - Emit the ivar list for the given
969 /// implementation. If ForClass is true the list of class ivars
970 /// (i.e. metaclass ivars) is emitted, otherwise the list of
971 /// interface ivars will be emitted. The return value has type
972 /// IvarListPtrTy.
973 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanianb042a592009-01-28 19:12:34 +0000974 bool ForClass);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000975
Daniel Dunbarca8531a2008-08-25 08:19:24 +0000976 /// EmitMetaClass - Emit a forward reference to the class structure
977 /// for the metaclass of the given interface. The return value has
978 /// type ClassPtrTy.
979 llvm::Constant *EmitMetaClassRef(const ObjCInterfaceDecl *ID);
980
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000981 /// EmitMetaClass - Emit a class structure for the metaclass of the
Daniel Dunbarca8531a2008-08-25 08:19:24 +0000982 /// given implementation. The return value has type ClassPtrTy.
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000983 llvm::Constant *EmitMetaClass(const ObjCImplementationDecl *ID,
984 llvm::Constant *Protocols,
Daniel Dunbareb1f9a22008-08-27 02:31:56 +0000985 const ConstantVector &Methods);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000986
Daniel Dunbareb1f9a22008-08-27 02:31:56 +0000987 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000988
Daniel Dunbareb1f9a22008-08-27 02:31:56 +0000989 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000990
991 /// EmitMethodList - Emit the method list for the given
Daniel Dunbar89654ee2008-08-26 08:29:31 +0000992 /// implementation. The return value has type MethodListPtrTy.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000993 llvm::Constant *EmitMethodList(Twine Name,
Daniel Dunbar938a77f2008-08-22 20:34:54 +0000994 const char *Section,
Daniel Dunbareb1f9a22008-08-27 02:31:56 +0000995 const ConstantVector &Methods);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +0000996
997 /// EmitMethodDescList - Emit a method description list for a list of
Daniel Dunbar59e476b2009-08-03 17:06:42 +0000998 /// method declarations.
Daniel Dunbarb036db82008-08-13 03:21:16 +0000999 /// - TypeName: The name for the type containing the methods.
1000 /// - IsProtocol: True iff these methods are for a protocol.
1001 /// - ClassMethds: True iff these are class methods.
1002 /// - Required: When true, only "required" methods are
1003 /// listed. Similarly, when false only "optional" methods are
1004 /// listed. For classes this should always be true.
1005 /// - begin, end: The method list to output.
1006 ///
1007 /// The return value has type MethodDescriptionListPtrTy.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001008 llvm::Constant *EmitMethodDescList(Twine Name,
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001009 const char *Section,
1010 const ConstantVector &Methods);
Daniel Dunbarb036db82008-08-13 03:21:16 +00001011
Daniel Dunbarc475d422008-10-29 22:36:39 +00001012 /// GetOrEmitProtocol - Get the protocol object for the given
1013 /// declaration, emitting it if necessary. The return value has type
1014 /// ProtocolPtrTy.
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00001015 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbarc475d422008-10-29 22:36:39 +00001016
1017 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1018 /// object for the given declaration, emitting it if needed. These
1019 /// forward references will be filled in with empty bodies if no
1020 /// definition is seen. The return value has type ProtocolPtrTy.
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00001021 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbarc475d422008-10-29 22:36:39 +00001022
Daniel Dunbarb036db82008-08-13 03:21:16 +00001023 /// EmitProtocolExtension - Generate the protocol extension
1024 /// structure used to store optional instance and class methods, and
1025 /// protocol properties. The return value has type
1026 /// ProtocolExtensionPtrTy.
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001027 llvm::Constant *
1028 EmitProtocolExtension(const ObjCProtocolDecl *PD,
1029 const ConstantVector &OptInstanceMethods,
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001030 const ConstantVector &OptClassMethods,
1031 const ConstantVector &MethodTypesExt);
Daniel Dunbarb036db82008-08-13 03:21:16 +00001032
1033 /// EmitProtocolList - Generate the list of referenced
1034 /// protocols. The return value has type ProtocolListPtrTy.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001035 llvm::Constant *EmitProtocolList(Twine Name,
Daniel Dunbardec75f82008-08-21 21:57:41 +00001036 ObjCProtocolDecl::protocol_iterator begin,
1037 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbarb036db82008-08-13 03:21:16 +00001038
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00001039 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1040 /// for the given selector.
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00001041 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel,
1042 bool lval=false);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001043
1044public:
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001045 CGObjCMac(CodeGen::CodeGenModule &cgm);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001046
Fariborz Jahanian71394042009-01-23 23:53:38 +00001047 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001048
Daniel Dunbar97db84c2008-08-23 03:46:30 +00001049 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCall78a15112010-05-22 01:48:05 +00001050 ReturnValueSlot Return,
Daniel Dunbar4b8c6db2008-08-30 05:35:15 +00001051 QualType ResultType,
1052 Selector Sel,
Daniel Dunbarca8531a2008-08-25 08:19:24 +00001053 llvm::Value *Receiver,
Fariborz Jahanianf3648b82009-05-05 21:36:57 +00001054 const CallArgList &CallArgs,
David Chisnall01aa4672010-04-28 19:33:36 +00001055 const ObjCInterfaceDecl *Class,
Fariborz Jahanianf3648b82009-05-05 21:36:57 +00001056 const ObjCMethodDecl *Method);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001057
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001058 virtual CodeGen::RValue
Daniel Dunbar97db84c2008-08-23 03:46:30 +00001059 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCall78a15112010-05-22 01:48:05 +00001060 ReturnValueSlot Return,
Daniel Dunbar4b8c6db2008-08-30 05:35:15 +00001061 QualType ResultType,
1062 Selector Sel,
Daniel Dunbarca8531a2008-08-25 08:19:24 +00001063 const ObjCInterfaceDecl *Class,
Fariborz Jahanianbac73ac2009-02-28 20:07:56 +00001064 bool isCategoryImpl,
Daniel Dunbarca8531a2008-08-25 08:19:24 +00001065 llvm::Value *Receiver,
Daniel Dunbarc722b852008-08-30 03:02:31 +00001066 bool IsClassMessage,
Daniel Dunbaraff9fca2009-09-17 04:01:22 +00001067 const CallArgList &CallArgs,
1068 const ObjCMethodDecl *Method);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001069
Daniel Dunbarcb463852008-11-01 01:53:16 +00001070 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00001071 const ObjCInterfaceDecl *ID);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001072
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00001073 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
1074 bool lval = false);
Fariborz Jahanianf3648b82009-05-05 21:36:57 +00001075
1076 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1077 /// untyped one.
1078 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1079 const ObjCMethodDecl *Method);
1080
Fariborz Jahanian831f0fc2011-06-23 19:00:08 +00001081 virtual llvm::Constant *GetEHType(QualType T);
John McCall2ca705e2010-07-24 00:37:23 +00001082
Daniel Dunbar92992502008-08-15 22:20:32 +00001083 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001084
Daniel Dunbar92992502008-08-15 22:20:32 +00001085 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001086
Daniel Dunbarcb463852008-11-01 01:53:16 +00001087 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbar89da6ad2008-08-13 00:59:25 +00001088 const ObjCProtocolDecl *PD);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001089
Chris Lattnerd4808922009-03-22 21:03:39 +00001090 virtual llvm::Constant *GetPropertyGetFunction();
1091 virtual llvm::Constant *GetPropertySetFunction();
David Chisnall168b80f2010-12-26 22:13:16 +00001092 virtual llvm::Constant *GetGetStructFunction();
1093 virtual llvm::Constant *GetSetStructFunction();
Fariborz Jahanian1e1b5492012-01-06 18:07:23 +00001094 virtual llvm::Constant *GetCppAtomicObjectFunction();
Chris Lattnerd4808922009-03-22 21:03:39 +00001095 virtual llvm::Constant *EnumerationMutationFunction();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001096
John McCallbd309292010-07-06 01:34:17 +00001097 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1098 const ObjCAtTryStmt &S);
1099 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1100 const ObjCAtSynchronizedStmt &S);
1101 void EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF, const Stmt &S);
Anders Carlsson1963b0c2008-09-09 10:04:29 +00001102 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
1103 const ObjCAtThrowStmt &S);
Fariborz Jahanian83f45b552008-11-18 22:37:34 +00001104 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001105 llvm::Value *AddrWeakObj);
Fariborz Jahanian83f45b552008-11-18 22:37:34 +00001106 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001107 llvm::Value *src, llvm::Value *dst);
Fariborz Jahaniand7db9642008-11-19 00:59:10 +00001108 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian217af242010-07-20 20:30:03 +00001109 llvm::Value *src, llvm::Value *dest,
1110 bool threadlocal = false);
Fariborz Jahaniane881b532008-11-20 19:23:36 +00001111 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001112 llvm::Value *src, llvm::Value *dest,
1113 llvm::Value *ivarOffset);
Fariborz Jahaniand7db9642008-11-19 00:59:10 +00001114 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
1115 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +00001116 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
1117 llvm::Value *dest, llvm::Value *src,
Fariborz Jahanian021510e2010-06-15 22:44:06 +00001118 llvm::Value *size);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001119
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001120 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1121 QualType ObjectTy,
1122 llvm::Value *BaseValue,
1123 const ObjCIvarDecl *Ivar,
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001124 unsigned CVRQualifiers);
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00001125 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar722f4242009-04-22 05:08:15 +00001126 const ObjCInterfaceDecl *Interface,
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00001127 const ObjCIvarDecl *Ivar);
Fariborz Jahanian7bd3d1c2011-05-17 22:21:16 +00001128
1129 /// GetClassGlobal - Return the global variable for the Objective-C
1130 /// class of the given name.
1131 virtual llvm::GlobalVariable *GetClassGlobal(const std::string &Name) {
David Blaikie83d382b2011-09-23 05:06:16 +00001132 llvm_unreachable("CGObjCMac::GetClassGlobal");
Fariborz Jahanian7bd3d1c2011-05-17 22:21:16 +00001133 }
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001134};
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001135
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00001136class CGObjCNonFragileABIMac : public CGObjCCommonMac {
Fariborz Jahanian279eda62009-01-21 22:04:16 +00001137private:
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00001138 ObjCNonFragileABITypesHelper ObjCTypes;
Fariborz Jahanian71394042009-01-23 23:53:38 +00001139 llvm::GlobalVariable* ObjCEmptyCacheVar;
1140 llvm::GlobalVariable* ObjCEmptyVtableVar;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001141
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00001142 /// SuperClassReferences - uniqued super class references.
1143 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> SuperClassReferences;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001144
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00001145 /// MetaClassReferences - uniqued meta class references.
1146 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> MetaClassReferences;
Daniel Dunbarb1559a42009-03-01 04:46:24 +00001147
1148 /// EHTypeReferences - uniqued class ehtype references.
1149 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> EHTypeReferences;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001150
John McCall9e8bb002011-05-14 03:10:52 +00001151 /// VTableDispatchMethods - List of methods for which we generate
1152 /// vtable-based message dispatch.
1153 llvm::DenseSet<Selector> VTableDispatchMethods;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001154
Fariborz Jahanian67260552009-11-17 21:37:35 +00001155 /// DefinedMetaClasses - List of defined meta-classes.
1156 std::vector<llvm::GlobalValue*> DefinedMetaClasses;
1157
John McCall9e8bb002011-05-14 03:10:52 +00001158 /// isVTableDispatchedSelector - Returns true if SEL is a
1159 /// vtable-based selector.
1160 bool isVTableDispatchedSelector(Selector Sel);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001161
Fariborz Jahanian71394042009-01-23 23:53:38 +00001162 /// FinishNonFragileABIModule - Write out global data structures at the end of
1163 /// processing a translation unit.
1164 void FinishNonFragileABIModule();
Daniel Dunbar8f28d012009-04-08 04:21:03 +00001165
Daniel Dunbar19573e72009-05-15 21:48:48 +00001166 /// AddModuleClassList - Add the given list of class pointers to the
1167 /// module with the provided symbol and section names.
1168 void AddModuleClassList(const std::vector<llvm::GlobalValue*> &Container,
1169 const char *SymbolName,
1170 const char *SectionName);
1171
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001172 llvm::GlobalVariable * BuildClassRoTInitializer(unsigned flags,
1173 unsigned InstanceStart,
1174 unsigned InstanceSize,
1175 const ObjCImplementationDecl *ID);
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00001176 llvm::GlobalVariable * BuildClassMetaData(std::string &ClassName,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001177 llvm::Constant *IsAGV,
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00001178 llvm::Constant *SuperClassGV,
Fariborz Jahanian82208252009-01-31 00:59:10 +00001179 llvm::Constant *ClassRoGV,
1180 bool HiddenVisibility);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001181
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00001182 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001183
Fariborz Jahaniand9c28b82009-01-30 00:46:37 +00001184 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001185
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00001186 /// EmitMethodList - Emit the method list for the given
1187 /// implementation. The return value has type MethodListnfABITy.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001188 llvm::Constant *EmitMethodList(Twine Name,
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00001189 const char *Section,
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00001190 const ConstantVector &Methods);
1191 /// EmitIvarList - Emit the ivar list for the given
1192 /// implementation. If ForClass is true the list of class ivars
1193 /// (i.e. metaclass ivars) is emitted, otherwise the list of
1194 /// interface ivars will be emitted. The return value has type
1195 /// IvarListnfABIPtrTy.
1196 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001197
Fariborz Jahanian4e7ae062009-02-10 20:21:06 +00001198 llvm::Constant *EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
Fariborz Jahanian3d3426f2009-01-28 01:36:42 +00001199 const ObjCIvarDecl *Ivar,
Fariborz Jahanian40a4bcd2009-01-28 01:05:23 +00001200 unsigned long int offset);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001201
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00001202 /// GetOrEmitProtocol - Get the protocol object for the given
1203 /// declaration, emitting it if necessary. The return value has type
1204 /// ProtocolPtrTy.
1205 virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001206
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00001207 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
1208 /// object for the given declaration, emitting it if needed. These
1209 /// forward references will be filled in with empty bodies if no
1210 /// definition is seen. The return value has type ProtocolPtrTy.
1211 virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001212
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00001213 /// EmitProtocolList - Generate the list of referenced
1214 /// protocols. The return value has type ProtocolListPtrTy.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001215 llvm::Constant *EmitProtocolList(Twine Name,
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00001216 ObjCProtocolDecl::protocol_iterator begin,
Fariborz Jahanian3d9296e2009-02-04 00:22:57 +00001217 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001218
John McCall9e8bb002011-05-14 03:10:52 +00001219 CodeGen::RValue EmitVTableMessageSend(CodeGen::CodeGenFunction &CGF,
1220 ReturnValueSlot Return,
1221 QualType ResultType,
1222 Selector Sel,
1223 llvm::Value *Receiver,
1224 QualType Arg0Ty,
1225 bool IsSuper,
1226 const CallArgList &CallArgs,
1227 const ObjCMethodDecl *Method);
Fariborz Jahanian7bd3d1c2011-05-17 22:21:16 +00001228
Daniel Dunbarc6928bb2009-03-01 04:40:10 +00001229 /// GetClassGlobal - Return the global variable for the Objective-C
1230 /// class of the given name.
Fariborz Jahanian899e7eb2009-04-14 18:41:56 +00001231 llvm::GlobalVariable *GetClassGlobal(const std::string &Name);
Fariborz Jahanian7bd3d1c2011-05-17 22:21:16 +00001232
Fariborz Jahanian33f66e62009-02-05 20:41:40 +00001233 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00001234 /// for the given class reference.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001235 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00001236 const ObjCInterfaceDecl *ID);
John McCall31168b02011-06-15 23:02:42 +00001237
1238 llvm::Value *EmitClassRefFromId(CGBuilderTy &Builder,
1239 IdentifierInfo *II);
1240
1241 llvm::Value *EmitNSAutoreleasePoolClassRef(CGBuilderTy &Builder);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001242
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00001243 /// EmitSuperClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
1244 /// for the given super class reference.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001245 llvm::Value *EmitSuperClassRef(CGBuilderTy &Builder,
1246 const ObjCInterfaceDecl *ID);
1247
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00001248 /// EmitMetaClassRef - Return a Value * of the address of _class_t
1249 /// meta-data
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001250 llvm::Value *EmitMetaClassRef(CGBuilderTy &Builder,
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00001251 const ObjCInterfaceDecl *ID);
1252
Fariborz Jahanian4e7ae062009-02-10 20:21:06 +00001253 /// ObjCIvarOffsetVariable - Returns the ivar offset variable for
1254 /// the given ivar.
1255 ///
Daniel Dunbara1060522009-04-19 00:31:15 +00001256 llvm::GlobalVariable * ObjCIvarOffsetVariable(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001257 const ObjCInterfaceDecl *ID,
1258 const ObjCIvarDecl *Ivar);
1259
Fariborz Jahanian74b77222009-02-11 20:51:17 +00001260 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
1261 /// for the given selector.
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00001262 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel,
1263 bool lval=false);
Daniel Dunbarb1559a42009-03-01 04:46:24 +00001264
Daniel Dunbar8f28d012009-04-08 04:21:03 +00001265 /// GetInterfaceEHType - Get the cached ehtype for the given Objective-C
Daniel Dunbarb1559a42009-03-01 04:46:24 +00001266 /// interface. The return value has type EHTypePtrTy.
John McCall2ca705e2010-07-24 00:37:23 +00001267 llvm::Constant *GetInterfaceEHType(const ObjCInterfaceDecl *ID,
Daniel Dunbar8f28d012009-04-08 04:21:03 +00001268 bool ForDefinition);
Daniel Dunbar15894b72009-04-07 05:48:37 +00001269
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001270 const char *getMetaclassSymbolPrefix() const {
Daniel Dunbar15894b72009-04-07 05:48:37 +00001271 return "OBJC_METACLASS_$_";
1272 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001273
Daniel Dunbar15894b72009-04-07 05:48:37 +00001274 const char *getClassSymbolPrefix() const {
1275 return "OBJC_CLASS_$_";
1276 }
1277
Daniel Dunbar961202372009-05-03 12:57:56 +00001278 void GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbar554fd792009-04-19 23:41:48 +00001279 uint32_t &InstanceStart,
1280 uint32_t &InstanceSize);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001281
Fariborz Jahaniane4128642009-05-12 20:06:41 +00001282 // Shamelessly stolen from Analysis/CFRefCount.cpp
Daniel Dunbar9a017d72009-05-15 22:33:15 +00001283 Selector GetNullarySelector(const char* name) const {
Fariborz Jahaniane4128642009-05-12 20:06:41 +00001284 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1285 return CGM.getContext().Selectors.getSelector(0, &II);
1286 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001287
Daniel Dunbar9a017d72009-05-15 22:33:15 +00001288 Selector GetUnarySelector(const char* name) const {
Fariborz Jahaniane4128642009-05-12 20:06:41 +00001289 IdentifierInfo* II = &CGM.getContext().Idents.get(name);
1290 return CGM.getContext().Selectors.getSelector(1, &II);
1291 }
Daniel Dunbar554fd792009-04-19 23:41:48 +00001292
Daniel Dunbar9a017d72009-05-15 22:33:15 +00001293 /// ImplementationIsNonLazy - Check whether the given category or
1294 /// class implementation is "non-lazy".
Fariborz Jahaniana6bed832009-05-21 01:03:45 +00001295 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const;
Daniel Dunbar9a017d72009-05-15 22:33:15 +00001296
Fariborz Jahanian279eda62009-01-21 22:04:16 +00001297public:
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00001298 CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm);
Fariborz Jahanian71394042009-01-23 23:53:38 +00001299 // FIXME. All stubs for now!
1300 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001301
Fariborz Jahanian71394042009-01-23 23:53:38 +00001302 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCall78a15112010-05-22 01:48:05 +00001303 ReturnValueSlot Return,
Fariborz Jahanian71394042009-01-23 23:53:38 +00001304 QualType ResultType,
1305 Selector Sel,
1306 llvm::Value *Receiver,
Fariborz Jahanianf3648b82009-05-05 21:36:57 +00001307 const CallArgList &CallArgs,
David Chisnall01aa4672010-04-28 19:33:36 +00001308 const ObjCInterfaceDecl *Class,
Fariborz Jahanianf3648b82009-05-05 21:36:57 +00001309 const ObjCMethodDecl *Method);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001310
1311 virtual CodeGen::RValue
Fariborz Jahanian71394042009-01-23 23:53:38 +00001312 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCall78a15112010-05-22 01:48:05 +00001313 ReturnValueSlot Return,
Fariborz Jahanian71394042009-01-23 23:53:38 +00001314 QualType ResultType,
1315 Selector Sel,
1316 const ObjCInterfaceDecl *Class,
Fariborz Jahanianbac73ac2009-02-28 20:07:56 +00001317 bool isCategoryImpl,
Fariborz Jahanian71394042009-01-23 23:53:38 +00001318 llvm::Value *Receiver,
1319 bool IsClassMessage,
Daniel Dunbaraff9fca2009-09-17 04:01:22 +00001320 const CallArgList &CallArgs,
1321 const ObjCMethodDecl *Method);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001322
Fariborz Jahanian71394042009-01-23 23:53:38 +00001323 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Fariborz Jahanian33f66e62009-02-05 20:41:40 +00001324 const ObjCInterfaceDecl *ID);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001325
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00001326 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
1327 bool lvalue = false)
1328 { return EmitSelector(Builder, Sel, lvalue); }
Fariborz Jahanianf3648b82009-05-05 21:36:57 +00001329
1330 /// The NeXT/Apple runtimes do not support typed selectors; just emit an
1331 /// untyped one.
1332 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
1333 const ObjCMethodDecl *Method)
1334 { return EmitSelector(Builder, Method->getSelector()); }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001335
Fariborz Jahanian0c8d0602009-01-26 18:32:24 +00001336 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001337
Fariborz Jahanian71394042009-01-23 23:53:38 +00001338 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Fariborz Jahanian71394042009-01-23 23:53:38 +00001339 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Fariborz Jahanian097feda2009-01-30 18:58:59 +00001340 const ObjCProtocolDecl *PD);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001341
Fariborz Jahanian831f0fc2011-06-23 19:00:08 +00001342 virtual llvm::Constant *GetEHType(QualType T);
John McCall2ca705e2010-07-24 00:37:23 +00001343
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001344 virtual llvm::Constant *GetPropertyGetFunction() {
Chris Lattnerce8754e2009-04-22 02:44:54 +00001345 return ObjCTypes.getGetPropertyFn();
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00001346 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001347 virtual llvm::Constant *GetPropertySetFunction() {
1348 return ObjCTypes.getSetPropertyFn();
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00001349 }
Fariborz Jahanian5a8c2032010-04-12 18:18:10 +00001350
David Chisnall168b80f2010-12-26 22:13:16 +00001351 virtual llvm::Constant *GetSetStructFunction() {
1352 return ObjCTypes.getCopyStructFn();
1353 }
1354 virtual llvm::Constant *GetGetStructFunction() {
Fariborz Jahanian5a8c2032010-04-12 18:18:10 +00001355 return ObjCTypes.getCopyStructFn();
1356 }
Fariborz Jahanian1e1b5492012-01-06 18:07:23 +00001357 virtual llvm::Constant *GetCppAtomicObjectFunction() {
1358 return ObjCTypes.getCppAtomicObjectFunction();
1359 }
Fariborz Jahanian5a8c2032010-04-12 18:18:10 +00001360
Chris Lattnerd4808922009-03-22 21:03:39 +00001361 virtual llvm::Constant *EnumerationMutationFunction() {
Chris Lattnerce8754e2009-04-22 02:44:54 +00001362 return ObjCTypes.getEnumerationMutationFn();
Daniel Dunbard73ea8162009-02-16 18:48:45 +00001363 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001364
John McCallbd309292010-07-06 01:34:17 +00001365 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1366 const ObjCAtTryStmt &S);
1367 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
1368 const ObjCAtSynchronizedStmt &S);
Fariborz Jahanian71394042009-01-23 23:53:38 +00001369 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Anders Carlsson9ab53d12009-02-16 22:59:18 +00001370 const ObjCAtThrowStmt &S);
Fariborz Jahanian71394042009-01-23 23:53:38 +00001371 virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian06292952009-02-16 22:52:32 +00001372 llvm::Value *AddrWeakObj);
Fariborz Jahanian71394042009-01-23 23:53:38 +00001373 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian06292952009-02-16 22:52:32 +00001374 llvm::Value *src, llvm::Value *dst);
Fariborz Jahanian71394042009-01-23 23:53:38 +00001375 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian217af242010-07-20 20:30:03 +00001376 llvm::Value *src, llvm::Value *dest,
1377 bool threadlocal = false);
Fariborz Jahanian71394042009-01-23 23:53:38 +00001378 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001379 llvm::Value *src, llvm::Value *dest,
1380 llvm::Value *ivarOffset);
Fariborz Jahanian71394042009-01-23 23:53:38 +00001381 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian06292952009-02-16 22:52:32 +00001382 llvm::Value *src, llvm::Value *dest);
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +00001383 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
1384 llvm::Value *dest, llvm::Value *src,
Fariborz Jahanian021510e2010-06-15 22:44:06 +00001385 llvm::Value *size);
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001386 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
1387 QualType ObjectTy,
1388 llvm::Value *BaseValue,
1389 const ObjCIvarDecl *Ivar,
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001390 unsigned CVRQualifiers);
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00001391 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar722f4242009-04-22 05:08:15 +00001392 const ObjCInterfaceDecl *Interface,
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00001393 const ObjCIvarDecl *Ivar);
Fariborz Jahanian279eda62009-01-21 22:04:16 +00001394};
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001395
John McCall5880fb82011-05-14 21:12:11 +00001396/// A helper class for performing the null-initialization of a return
1397/// value.
1398struct NullReturnState {
1399 llvm::BasicBlock *NullBB;
Fariborz Jahanianb0050702011-10-26 20:53:59 +00001400 llvm::BasicBlock *callBB;
1401 NullReturnState() : NullBB(0), callBB(0) {}
John McCall5880fb82011-05-14 21:12:11 +00001402
1403 void init(CodeGenFunction &CGF, llvm::Value *receiver) {
1404 // Make blocks for the null-init and call edges.
1405 NullBB = CGF.createBasicBlock("msgSend.nullinit");
Fariborz Jahanianb0050702011-10-26 20:53:59 +00001406 callBB = CGF.createBasicBlock("msgSend.call");
John McCall5880fb82011-05-14 21:12:11 +00001407
1408 // Check for a null receiver and, if there is one, jump to the
1409 // null-init test.
1410 llvm::Value *isNull = CGF.Builder.CreateIsNull(receiver);
1411 CGF.Builder.CreateCondBr(isNull, NullBB, callBB);
1412
1413 // Otherwise, start performing the call.
1414 CGF.EmitBlock(callBB);
1415 }
1416
1417 RValue complete(CodeGenFunction &CGF, RValue result, QualType resultType) {
1418 if (!NullBB) return result;
1419
1420 // Finish the call path.
1421 llvm::BasicBlock *contBB = CGF.createBasicBlock("msgSend.cont");
1422 if (CGF.HaveInsertPoint()) CGF.Builder.CreateBr(contBB);
1423
1424 // Emit the null-init block and perform the null-initialization there.
1425 CGF.EmitBlock(NullBB);
Fariborz Jahanianb0050702011-10-26 20:53:59 +00001426 if (!resultType->isAnyComplexType()) {
1427 assert(result.isAggregate() && "null init of non-aggregate result?");
1428 CGF.EmitNullInitialization(result.getAggregateAddr(), resultType);
1429 // Jump to the continuation block.
1430 CGF.EmitBlock(contBB);
1431 return result;
1432 }
John McCall5880fb82011-05-14 21:12:11 +00001433
Fariborz Jahanianb0050702011-10-26 20:53:59 +00001434 // _Complex type
1435 // FIXME. Now easy to handle any other scalar type whose result is returned
1436 // in memory due to ABI limitations.
John McCall5880fb82011-05-14 21:12:11 +00001437 CGF.EmitBlock(contBB);
Fariborz Jahanianb0050702011-10-26 20:53:59 +00001438 CodeGenFunction::ComplexPairTy CallCV = result.getComplexVal();
1439 llvm::Type *MemberType = CallCV.first->getType();
1440 llvm::Constant *ZeroCV = llvm::Constant::getNullValue(MemberType);
1441 // Create phi instruction for scalar complex value.
1442 llvm::PHINode *PHIReal = CGF.Builder.CreatePHI(MemberType, 2);
1443 PHIReal->addIncoming(ZeroCV, NullBB);
1444 PHIReal->addIncoming(CallCV.first, callBB);
1445 llvm::PHINode *PHIImag = CGF.Builder.CreatePHI(MemberType, 2);
1446 PHIImag->addIncoming(ZeroCV, NullBB);
1447 PHIImag->addIncoming(CallCV.second, callBB);
1448 return RValue::getComplex(PHIReal, PHIImag);
John McCall5880fb82011-05-14 21:12:11 +00001449 }
1450};
1451
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001452} // end anonymous namespace
Daniel Dunbar8b8683f2008-08-12 00:12:39 +00001453
1454/* *** Helper Functions *** */
1455
1456/// getConstantGEP() - Help routine to construct simple GEPs.
Owen Anderson170229f2009-07-14 23:10:40 +00001457static llvm::Constant *getConstantGEP(llvm::LLVMContext &VMContext,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001458 llvm::Constant *C,
Daniel Dunbar8b8683f2008-08-12 00:12:39 +00001459 unsigned idx0,
1460 unsigned idx1) {
1461 llvm::Value *Idxs[] = {
Owen Anderson41a75022009-08-13 21:57:51 +00001462 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx0),
1463 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx1)
Daniel Dunbar8b8683f2008-08-12 00:12:39 +00001464 };
Jay Foaded8db7d2011-07-21 14:31:17 +00001465 return llvm::ConstantExpr::getGetElementPtr(C, Idxs);
Daniel Dunbar8b8683f2008-08-12 00:12:39 +00001466}
1467
Daniel Dunbar8f28d012009-04-08 04:21:03 +00001468/// hasObjCExceptionAttribute - Return true if this class or any super
1469/// class has the __objc_exception__ attribute.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001470static bool hasObjCExceptionAttribute(ASTContext &Context,
Douglas Gregor78bd61f2009-06-18 16:11:24 +00001471 const ObjCInterfaceDecl *OID) {
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001472 if (OID->hasAttr<ObjCExceptionAttr>())
Daniel Dunbar8f28d012009-04-08 04:21:03 +00001473 return true;
1474 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())
Douglas Gregor78bd61f2009-06-18 16:11:24 +00001475 return hasObjCExceptionAttribute(Context, Super);
Daniel Dunbar8f28d012009-04-08 04:21:03 +00001476 return false;
1477}
1478
Daniel Dunbar8b8683f2008-08-12 00:12:39 +00001479/* *** CGObjCMac Public Interface *** */
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001480
Fariborz Jahanian279eda62009-01-21 22:04:16 +00001481CGObjCMac::CGObjCMac(CodeGen::CodeGenModule &cgm) : CGObjCCommonMac(cgm),
Mike Stump11289f42009-09-09 15:08:12 +00001482 ObjCTypes(cgm) {
Fariborz Jahanian279eda62009-01-21 22:04:16 +00001483 ObjCABI = 1;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001484 EmitImageInfo();
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001485}
1486
Daniel Dunbar7c6d3a72008-08-16 00:25:02 +00001487/// GetClass - Return a reference to the class for the given interface
1488/// decl.
Daniel Dunbarcb463852008-11-01 01:53:16 +00001489llvm::Value *CGObjCMac::GetClass(CGBuilderTy &Builder,
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00001490 const ObjCInterfaceDecl *ID) {
1491 return EmitClassRef(Builder, ID);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001492}
1493
1494/// GetSelector - Return the pointer to the unique'd string for this selector.
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00001495llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, Selector Sel,
1496 bool lval) {
1497 return EmitSelector(Builder, Sel, lval);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001498}
Fariborz Jahanianf3648b82009-05-05 21:36:57 +00001499llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, const ObjCMethodDecl
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001500 *Method) {
Fariborz Jahanianf3648b82009-05-05 21:36:57 +00001501 return EmitSelector(Builder, Method->getSelector());
1502}
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001503
Fariborz Jahanian831f0fc2011-06-23 19:00:08 +00001504llvm::Constant *CGObjCMac::GetEHType(QualType T) {
Fariborz Jahanian0a3cfcc2011-06-22 20:21:51 +00001505 if (T->isObjCIdType() ||
1506 T->isObjCQualifiedIdType()) {
1507 return CGM.GetAddrOfRTTIDescriptor(
Douglas Gregor97673472011-08-11 20:58:55 +00001508 CGM.getContext().getObjCIdRedefinitionType(), /*ForEH=*/true);
Fariborz Jahanian0a3cfcc2011-06-22 20:21:51 +00001509 }
Fariborz Jahanian831f0fc2011-06-23 19:00:08 +00001510 if (T->isObjCClassType() ||
1511 T->isObjCQualifiedClassType()) {
1512 return CGM.GetAddrOfRTTIDescriptor(
Douglas Gregor97673472011-08-11 20:58:55 +00001513 CGM.getContext().getObjCClassRedefinitionType(), /*ForEH=*/true);
Fariborz Jahanian831f0fc2011-06-23 19:00:08 +00001514 }
1515 if (T->isObjCObjectPointerType())
1516 return CGM.GetAddrOfRTTIDescriptor(T, /*ForEH=*/true);
1517
John McCall2ca705e2010-07-24 00:37:23 +00001518 llvm_unreachable("asking for catch type for ObjC type in fragile runtime");
1519 return 0;
1520}
1521
Daniel Dunbar8b8683f2008-08-12 00:12:39 +00001522/// Generate a constant CFString object.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001523/*
1524 struct __builtin_CFString {
1525 const int *isa; // point to __CFConstantStringClassReference
1526 int flags;
1527 const char *str;
1528 long length;
1529 };
Daniel Dunbar8b8683f2008-08-12 00:12:39 +00001530*/
1531
Fariborz Jahanian63408e82010-04-22 20:26:39 +00001532/// or Generate a constant NSString object.
1533/*
1534 struct __builtin_NSString {
1535 const int *isa; // point to __NSConstantStringClassReference
1536 const char *str;
1537 unsigned int length;
1538 };
1539*/
1540
Fariborz Jahanian71394042009-01-23 23:53:38 +00001541llvm::Constant *CGObjCCommonMac::GenerateConstantString(
David Chisnall481e3a82010-01-23 02:40:42 +00001542 const StringLiteral *SL) {
Fariborz Jahanian63408e82010-04-22 20:26:39 +00001543 return (CGM.getLangOptions().NoConstantCFStrings == 0 ?
1544 CGM.GetAddrOfConstantCFString(SL) :
Fariborz Jahanian50c925f2010-10-19 17:19:29 +00001545 CGM.GetAddrOfConstantString(SL));
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001546}
1547
1548/// Generates a message send where the super is the receiver. This is
1549/// a message send to self with special delivery semantics indicating
1550/// which class's method should be called.
Daniel Dunbar97db84c2008-08-23 03:46:30 +00001551CodeGen::RValue
1552CGObjCMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCall78a15112010-05-22 01:48:05 +00001553 ReturnValueSlot Return,
Daniel Dunbar4b8c6db2008-08-30 05:35:15 +00001554 QualType ResultType,
1555 Selector Sel,
Daniel Dunbarca8531a2008-08-25 08:19:24 +00001556 const ObjCInterfaceDecl *Class,
Fariborz Jahanianbac73ac2009-02-28 20:07:56 +00001557 bool isCategoryImpl,
Daniel Dunbarca8531a2008-08-25 08:19:24 +00001558 llvm::Value *Receiver,
Daniel Dunbarc722b852008-08-30 03:02:31 +00001559 bool IsClassMessage,
Daniel Dunbaraff9fca2009-09-17 04:01:22 +00001560 const CodeGen::CallArgList &CallArgs,
1561 const ObjCMethodDecl *Method) {
Daniel Dunbarf6397fe2008-08-23 04:28:29 +00001562 // Create and init a super structure; this is a (receiver, class)
1563 // pair we will pass to objc_msgSendSuper.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001564 llvm::Value *ObjCSuper =
John McCall66475842011-03-04 08:00:29 +00001565 CGF.CreateTempAlloca(ObjCTypes.SuperTy, "objc_super");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001566 llvm::Value *ReceiverAsObject =
Daniel Dunbarf6397fe2008-08-23 04:28:29 +00001567 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001568 CGF.Builder.CreateStore(ReceiverAsObject,
Daniel Dunbarf6397fe2008-08-23 04:28:29 +00001569 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbarf6397fe2008-08-23 04:28:29 +00001570
Daniel Dunbarca8531a2008-08-25 08:19:24 +00001571 // If this is a class message the metaclass is passed as the target.
1572 llvm::Value *Target;
1573 if (IsClassMessage) {
Fariborz Jahanianbac73ac2009-02-28 20:07:56 +00001574 if (isCategoryImpl) {
1575 // Message sent to 'super' in a class method defined in a category
1576 // implementation requires an odd treatment.
1577 // If we are in a class method, we must retrieve the
1578 // _metaclass_ for the current class, pointed at by
1579 // the class's "isa" pointer. The following assumes that
1580 // isa" is the first ivar in a class (which it must be).
1581 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1582 Target = CGF.Builder.CreateStructGEP(Target, 0);
1583 Target = CGF.Builder.CreateLoad(Target);
Mike Stump658fe022009-07-30 22:28:39 +00001584 } else {
Fariborz Jahanianbac73ac2009-02-28 20:07:56 +00001585 llvm::Value *MetaClassPtr = EmitMetaClassRef(Class);
1586 llvm::Value *SuperPtr = CGF.Builder.CreateStructGEP(MetaClassPtr, 1);
1587 llvm::Value *Super = CGF.Builder.CreateLoad(SuperPtr);
1588 Target = Super;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001589 }
Fariborz Jahanianda2efb02009-11-14 02:18:31 +00001590 }
1591 else if (isCategoryImpl)
1592 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
1593 else {
Fariborz Jahanianeb80c982009-11-12 20:14:24 +00001594 llvm::Value *ClassPtr = EmitSuperClassRef(Class);
1595 ClassPtr = CGF.Builder.CreateStructGEP(ClassPtr, 1);
1596 Target = CGF.Builder.CreateLoad(ClassPtr);
Daniel Dunbarca8531a2008-08-25 08:19:24 +00001597 }
Mike Stump18bb9282009-05-16 07:57:57 +00001598 // FIXME: We shouldn't need to do this cast, rectify the ASTContext and
1599 // ObjCTypes types.
Chris Lattner2192fe52011-07-18 04:24:23 +00001600 llvm::Type *ClassTy =
Daniel Dunbarc722b852008-08-30 03:02:31 +00001601 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
Daniel Dunbarc475d422008-10-29 22:36:39 +00001602 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001603 CGF.Builder.CreateStore(Target,
Daniel Dunbarca8531a2008-08-25 08:19:24 +00001604 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
John McCall9e8bb002011-05-14 03:10:52 +00001605 return EmitMessageSend(CGF, Return, ResultType,
1606 EmitSelector(CGF.Builder, Sel),
1607 ObjCSuper, ObjCTypes.SuperPtrCTy,
1608 true, CallArgs, Method, ObjCTypes);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001609}
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001610
1611/// Generate code for a message send expression.
Daniel Dunbar97db84c2008-08-23 03:46:30 +00001612CodeGen::RValue CGObjCMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCall78a15112010-05-22 01:48:05 +00001613 ReturnValueSlot Return,
Daniel Dunbar4b8c6db2008-08-30 05:35:15 +00001614 QualType ResultType,
1615 Selector Sel,
Daniel Dunbarca8531a2008-08-25 08:19:24 +00001616 llvm::Value *Receiver,
Fariborz Jahanianf3648b82009-05-05 21:36:57 +00001617 const CallArgList &CallArgs,
David Chisnall01aa4672010-04-28 19:33:36 +00001618 const ObjCInterfaceDecl *Class,
Fariborz Jahanianf3648b82009-05-05 21:36:57 +00001619 const ObjCMethodDecl *Method) {
John McCall9e8bb002011-05-14 03:10:52 +00001620 return EmitMessageSend(CGF, Return, ResultType,
1621 EmitSelector(CGF.Builder, Sel),
1622 Receiver, CGF.getContext().getObjCIdType(),
1623 false, CallArgs, Method, ObjCTypes);
Daniel Dunbar97ff50d2008-08-23 09:25:55 +00001624}
1625
Daniel Dunbaraff9fca2009-09-17 04:01:22 +00001626CodeGen::RValue
John McCall9e8bb002011-05-14 03:10:52 +00001627CGObjCCommonMac::EmitMessageSend(CodeGen::CodeGenFunction &CGF,
1628 ReturnValueSlot Return,
1629 QualType ResultType,
1630 llvm::Value *Sel,
1631 llvm::Value *Arg0,
1632 QualType Arg0Ty,
1633 bool IsSuper,
1634 const CallArgList &CallArgs,
1635 const ObjCMethodDecl *Method,
1636 const ObjCCommonTypesHelper &ObjCTypes) {
Daniel Dunbarc722b852008-08-30 03:02:31 +00001637 CallArgList ActualArgs;
Fariborz Jahanian969bc682009-04-24 21:07:43 +00001638 if (!IsSuper)
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001639 Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy);
Eli Friedman43dca6a2011-05-02 17:57:46 +00001640 ActualArgs.add(RValue::get(Arg0), Arg0Ty);
1641 ActualArgs.add(RValue::get(Sel), CGF.getContext().getObjCSelType());
John McCall31168b02011-06-15 23:02:42 +00001642 ActualArgs.addFrom(CallArgs);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001643
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +00001644 CodeGenTypes &Types = CGM.getTypes();
John McCallab26cfa2010-02-05 21:31:56 +00001645 const CGFunctionInfo &FnInfo = Types.getFunctionInfo(ResultType, ActualArgs,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00001646 FunctionType::ExtInfo());
Chris Lattner2192fe52011-07-18 04:24:23 +00001647 llvm::FunctionType *FTy =
Daniel Dunbardf0e62d2009-09-17 04:01:40 +00001648 Types.GetFunctionType(FnInfo, Method ? Method->isVariadic() : false);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001649
Anders Carlsson280e61f12010-06-21 20:59:55 +00001650 if (Method)
1651 assert(CGM.getContext().getCanonicalType(Method->getResultType()) ==
1652 CGM.getContext().getCanonicalType(ResultType) &&
1653 "Result type mismatch!");
1654
John McCall5880fb82011-05-14 21:12:11 +00001655 NullReturnState nullReturn;
1656
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +00001657 llvm::Constant *Fn = NULL;
Daniel Dunbar6f2e8392010-07-14 23:39:36 +00001658 if (CGM.ReturnTypeUsesSRet(FnInfo)) {
John McCall5880fb82011-05-14 21:12:11 +00001659 if (!IsSuper) nullReturn.init(CGF, Arg0);
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +00001660 Fn = (ObjCABI == 2) ? ObjCTypes.getSendStretFn2(IsSuper)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001661 : ObjCTypes.getSendStretFn(IsSuper);
Daniel Dunbar6f2e8392010-07-14 23:39:36 +00001662 } else if (CGM.ReturnTypeUsesFPRet(ResultType)) {
1663 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFpretFn2(IsSuper)
1664 : ObjCTypes.getSendFpretFn(IsSuper);
Anders Carlsson2f1a6c32011-10-31 16:27:11 +00001665 } else if (CGM.ReturnTypeUsesFP2Ret(ResultType)) {
1666 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFp2RetFn2(IsSuper)
1667 : ObjCTypes.getSendFp2retFn(IsSuper);
Daniel Dunbar3c683f5b2008-10-17 03:24:53 +00001668 } else {
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +00001669 Fn = (ObjCABI == 2) ? ObjCTypes.getSendFn2(IsSuper)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001670 : ObjCTypes.getSendFn(IsSuper);
Daniel Dunbar3c683f5b2008-10-17 03:24:53 +00001671 }
Daniel Dunbar6f2e8392010-07-14 23:39:36 +00001672 Fn = llvm::ConstantExpr::getBitCast(Fn, llvm::PointerType::getUnqual(FTy));
John McCall5880fb82011-05-14 21:12:11 +00001673 RValue rvalue = CGF.EmitCall(FnInfo, Fn, Return, ActualArgs);
1674 return nullReturn.complete(CGF, rvalue, ResultType);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001675}
1676
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00001677static Qualifiers::GC GetGCAttrTypeForType(ASTContext &Ctx, QualType FQT) {
1678 if (FQT.isObjCGCStrong())
1679 return Qualifiers::Strong;
1680
John McCall31168b02011-06-15 23:02:42 +00001681 if (FQT.isObjCGCWeak() || FQT.getObjCLifetime() == Qualifiers::OCL_Weak)
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00001682 return Qualifiers::Weak;
1683
1684 if (FQT->isObjCObjectPointerType() || FQT->isBlockPointerType())
1685 return Qualifiers::Strong;
1686
1687 if (const PointerType *PT = FQT->getAs<PointerType>())
1688 return GetGCAttrTypeForType(Ctx, PT->getPointeeType());
1689
1690 return Qualifiers::GCNone;
1691}
1692
John McCall351762c2011-02-07 10:33:21 +00001693llvm::Constant *CGObjCCommonMac::BuildGCBlockLayout(CodeGenModule &CGM,
1694 const CGBlockInfo &blockInfo) {
1695 llvm::Constant *nullPtr =
Fariborz Jahanianafa3c0a2010-08-04 18:44:59 +00001696 llvm::Constant::getNullValue(llvm::Type::getInt8PtrTy(VMContext));
John McCall351762c2011-02-07 10:33:21 +00001697
Douglas Gregor79a91412011-09-13 17:21:33 +00001698 if (CGM.getLangOptions().getGC() == LangOptions::NonGC &&
John McCall31168b02011-06-15 23:02:42 +00001699 !CGM.getLangOptions().ObjCAutoRefCount)
John McCall351762c2011-02-07 10:33:21 +00001700 return nullPtr;
1701
Fariborz Jahanianf95e3582010-08-06 16:28:55 +00001702 bool hasUnion = false;
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00001703 SkipIvars.clear();
1704 IvarsInfo.clear();
Douglas Gregore8bbc122011-09-02 00:18:52 +00001705 unsigned WordSizeInBits = CGM.getContext().getTargetInfo().getPointerWidth(0);
1706 unsigned ByteSizeInBits = CGM.getContext().getTargetInfo().getCharWidth();
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00001707
Fariborz Jahaniancfddabf2010-09-09 00:21:45 +00001708 // __isa is the first field in block descriptor and must assume by runtime's
1709 // convention that it is GC'able.
1710 IvarsInfo.push_back(GC_IVAR(0, 1));
John McCall351762c2011-02-07 10:33:21 +00001711
1712 const BlockDecl *blockDecl = blockInfo.getBlockDecl();
1713
1714 // Calculate the basic layout of the block structure.
1715 const llvm::StructLayout *layout =
1716 CGM.getTargetData().getStructLayout(blockInfo.StructureType);
1717
1718 // Ignore the optional 'this' capture: C++ objects are not assumed
1719 // to be GC'ed.
1720
1721 // Walk the captured variables.
1722 for (BlockDecl::capture_const_iterator ci = blockDecl->capture_begin(),
1723 ce = blockDecl->capture_end(); ci != ce; ++ci) {
1724 const VarDecl *variable = ci->getVariable();
1725 QualType type = variable->getType();
1726
1727 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1728
1729 // Ignore constant captures.
1730 if (capture.isConstant()) continue;
1731
1732 uint64_t fieldOffset = layout->getElementOffset(capture.getIndex());
1733
1734 // __block variables are passed by their descriptor address.
1735 if (ci->isByRef()) {
1736 IvarsInfo.push_back(GC_IVAR(fieldOffset, /*size in words*/ 1));
Fariborz Jahanian933c6722010-09-11 01:27:29 +00001737 continue;
John McCall351762c2011-02-07 10:33:21 +00001738 }
1739
1740 assert(!type->isArrayType() && "array variable should not be caught");
1741 if (const RecordType *record = type->getAs<RecordType>()) {
1742 BuildAggrIvarRecordLayout(record, fieldOffset, true, hasUnion);
Fariborz Jahanian903aba32010-08-05 21:00:25 +00001743 continue;
1744 }
Fariborz Jahanianf95e3582010-08-06 16:28:55 +00001745
John McCall351762c2011-02-07 10:33:21 +00001746 Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), type);
1747 unsigned fieldSize = CGM.getContext().getTypeSize(type);
1748
1749 if (GCAttr == Qualifiers::Strong)
1750 IvarsInfo.push_back(GC_IVAR(fieldOffset,
1751 fieldSize / WordSizeInBits));
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00001752 else if (GCAttr == Qualifiers::GCNone || GCAttr == Qualifiers::Weak)
John McCall351762c2011-02-07 10:33:21 +00001753 SkipIvars.push_back(GC_IVAR(fieldOffset,
1754 fieldSize / ByteSizeInBits));
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00001755 }
1756
1757 if (IvarsInfo.empty())
John McCall351762c2011-02-07 10:33:21 +00001758 return nullPtr;
1759
1760 // Sort on byte position; captures might not be allocated in order,
1761 // and unions can do funny things.
1762 llvm::array_pod_sort(IvarsInfo.begin(), IvarsInfo.end());
1763 llvm::array_pod_sort(SkipIvars.begin(), SkipIvars.end());
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00001764
1765 std::string BitMap;
Fariborz Jahanian1f78a9a2010-08-05 00:19:48 +00001766 llvm::Constant *C = BuildIvarLayoutBitmap(BitMap);
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00001767 if (CGM.getLangOptions().ObjCGCBitmapPrint) {
1768 printf("\n block variable layout for block: ");
1769 const unsigned char *s = (unsigned char*)BitMap.c_str();
1770 for (unsigned i = 0; i < BitMap.size(); i++)
1771 if (!(s[i] & 0xf0))
1772 printf("0x0%x%s", s[i], s[i] != 0 ? ", " : "");
1773 else
1774 printf("0x%x%s", s[i], s[i] != 0 ? ", " : "");
1775 printf("\n");
1776 }
1777
1778 return C;
Fariborz Jahanianc05349e2010-08-04 16:57:49 +00001779}
1780
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001781llvm::Value *CGObjCMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbar89da6ad2008-08-13 00:59:25 +00001782 const ObjCProtocolDecl *PD) {
Daniel Dunbar7050c552008-09-04 04:33:15 +00001783 // FIXME: I don't understand why gcc generates this, or where it is
Mike Stump18bb9282009-05-16 07:57:57 +00001784 // resolved. Investigate. Its also wasteful to look this up over and over.
Daniel Dunbar7050c552008-09-04 04:33:15 +00001785 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1786
Owen Andersonade90fd2009-07-29 18:54:39 +00001787 return llvm::ConstantExpr::getBitCast(GetProtocolRef(PD),
Douglas Gregor020de322012-01-17 18:36:30 +00001788 ObjCTypes.getExternalProtocolPtrTy());
Daniel Dunbar303e2c22008-08-11 02:45:11 +00001789}
1790
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00001791void CGObjCCommonMac::GenerateProtocol(const ObjCProtocolDecl *PD) {
Mike Stump18bb9282009-05-16 07:57:57 +00001792 // FIXME: We shouldn't need this, the protocol decl should contain enough
1793 // information to tell us whether this was a declaration or a definition.
Daniel Dunbarc475d422008-10-29 22:36:39 +00001794 DefinedProtocols.insert(PD->getIdentifier());
1795
1796 // If we have generated a forward reference to this protocol, emit
1797 // it now. Otherwise do nothing, the protocol objects are lazily
1798 // emitted.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001799 if (Protocols.count(PD->getIdentifier()))
Daniel Dunbarc475d422008-10-29 22:36:39 +00001800 GetOrEmitProtocol(PD);
1801}
1802
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00001803llvm::Constant *CGObjCCommonMac::GetProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbarc475d422008-10-29 22:36:39 +00001804 if (DefinedProtocols.count(PD->getIdentifier()))
1805 return GetOrEmitProtocol(PD);
Douglas Gregora9d84932011-05-27 01:19:52 +00001806
Daniel Dunbarc475d422008-10-29 22:36:39 +00001807 return GetOrEmitProtocolRef(PD);
1808}
1809
Daniel Dunbarb036db82008-08-13 03:21:16 +00001810/*
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001811// APPLE LOCAL radar 4585769 - Objective-C 1.0 extensions
1812struct _objc_protocol {
1813struct _objc_protocol_extension *isa;
1814char *protocol_name;
1815struct _objc_protocol_list *protocol_list;
1816struct _objc__method_prototype_list *instance_methods;
1817struct _objc__method_prototype_list *class_methods
1818};
Daniel Dunbarb036db82008-08-13 03:21:16 +00001819
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001820See EmitProtocolExtension().
Daniel Dunbarb036db82008-08-13 03:21:16 +00001821*/
Daniel Dunbarc475d422008-10-29 22:36:39 +00001822llvm::Constant *CGObjCMac::GetOrEmitProtocol(const ObjCProtocolDecl *PD) {
1823 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1824
1825 // Early exit if a defining object has already been generated.
1826 if (Entry && Entry->hasInitializer())
1827 return Entry;
1828
Douglas Gregora715bff2012-01-01 19:51:50 +00001829 // Use the protocol definition, if there is one.
1830 if (const ObjCProtocolDecl *Def = PD->getDefinition())
1831 PD = Def;
1832
Daniel Dunbarc61d0e92008-08-25 06:02:07 +00001833 // FIXME: I don't understand why gcc generates this, or where it is
Mike Stump18bb9282009-05-16 07:57:57 +00001834 // resolved. Investigate. Its also wasteful to look this up over and over.
Daniel Dunbarc61d0e92008-08-25 06:02:07 +00001835 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
1836
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001837 // Construct method lists.
1838 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
1839 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001840 std::vector<llvm::Constant*> MethodTypesExt, OptMethodTypesExt;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001841 for (ObjCProtocolDecl::instmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001842 i = PD->instmeth_begin(), e = PD->instmeth_end(); i != e; ++i) {
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001843 ObjCMethodDecl *MD = *i;
1844 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Douglas Gregora9d84932011-05-27 01:19:52 +00001845 if (!C)
1846 return GetOrEmitProtocolRef(PD);
1847
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001848 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1849 OptInstanceMethods.push_back(C);
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001850 OptMethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001851 } else {
1852 InstanceMethods.push_back(C);
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001853 MethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001854 }
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001855 }
1856
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001857 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001858 i = PD->classmeth_begin(), e = PD->classmeth_end(); i != e; ++i) {
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001859 ObjCMethodDecl *MD = *i;
1860 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Douglas Gregora9d84932011-05-27 01:19:52 +00001861 if (!C)
1862 return GetOrEmitProtocolRef(PD);
1863
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001864 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
1865 OptClassMethods.push_back(C);
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001866 OptMethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001867 } else {
1868 ClassMethods.push_back(C);
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001869 MethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001870 }
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001871 }
1872
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001873 MethodTypesExt.insert(MethodTypesExt.end(),
1874 OptMethodTypesExt.begin(), OptMethodTypesExt.end());
1875
Benjamin Kramer22d24c22011-10-15 12:20:02 +00001876 llvm::Constant *Values[] = {
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001877 EmitProtocolExtension(PD, OptInstanceMethods, OptClassMethods,
1878 MethodTypesExt),
Benjamin Kramer22d24c22011-10-15 12:20:02 +00001879 GetClassName(PD->getIdentifier()),
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00001880 EmitProtocolList("\01L_OBJC_PROTOCOL_REFS_" + PD->getName(),
Daniel Dunbardec75f82008-08-21 21:57:41 +00001881 PD->protocol_begin(),
Benjamin Kramer22d24c22011-10-15 12:20:02 +00001882 PD->protocol_end()),
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00001883 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_" + PD->getName(),
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001884 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Benjamin Kramer22d24c22011-10-15 12:20:02 +00001885 InstanceMethods),
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00001886 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_" + PD->getName(),
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001887 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Benjamin Kramer22d24c22011-10-15 12:20:02 +00001888 ClassMethods)
1889 };
Owen Anderson0e0189d2009-07-27 22:29:56 +00001890 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
Daniel Dunbarb036db82008-08-13 03:21:16 +00001891 Values);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001892
Daniel Dunbarb036db82008-08-13 03:21:16 +00001893 if (Entry) {
Daniel Dunbarc475d422008-10-29 22:36:39 +00001894 // Already created, fix the linkage and update the initializer.
1895 Entry->setLinkage(llvm::GlobalValue::InternalLinkage);
Daniel Dunbarb036db82008-08-13 03:21:16 +00001896 Entry->setInitializer(Init);
1897 } else {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001898 Entry =
Owen Andersonc10c8d32009-07-08 19:05:04 +00001899 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
Daniel Dunbarb036db82008-08-13 03:21:16 +00001900 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001901 Init,
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00001902 "\01L_OBJC_PROTOCOL_" + PD->getName());
Daniel Dunbarb036db82008-08-13 03:21:16 +00001903 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbarb036db82008-08-13 03:21:16 +00001904 // FIXME: Is this necessary? Why only for protocol?
1905 Entry->setAlignment(4);
1906 }
Chris Lattnerf56501c2009-07-17 23:57:13 +00001907 CGM.AddUsedGlobal(Entry);
Daniel Dunbarc475d422008-10-29 22:36:39 +00001908
1909 return Entry;
Daniel Dunbarb036db82008-08-13 03:21:16 +00001910}
1911
Daniel Dunbarc475d422008-10-29 22:36:39 +00001912llvm::Constant *CGObjCMac::GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbarb036db82008-08-13 03:21:16 +00001913 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
1914
1915 if (!Entry) {
Daniel Dunbarc475d422008-10-29 22:36:39 +00001916 // We use the initializer as a marker of whether this is a forward
1917 // reference or not. At module finalization we add the empty
1918 // contents for protocols which were referenced but never defined.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001919 Entry =
Owen Andersonc10c8d32009-07-08 19:05:04 +00001920 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, false,
Daniel Dunbarc475d422008-10-29 22:36:39 +00001921 llvm::GlobalValue::ExternalLinkage,
1922 0,
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00001923 "\01L_OBJC_PROTOCOL_" + PD->getName());
Daniel Dunbarb036db82008-08-13 03:21:16 +00001924 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
Daniel Dunbarb036db82008-08-13 03:21:16 +00001925 // FIXME: Is this necessary? Why only for protocol?
1926 Entry->setAlignment(4);
1927 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001928
Daniel Dunbarb036db82008-08-13 03:21:16 +00001929 return Entry;
1930}
1931
1932/*
1933 struct _objc_protocol_extension {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001934 uint32_t size;
1935 struct objc_method_description_list *optional_instance_methods;
1936 struct objc_method_description_list *optional_class_methods;
1937 struct objc_property_list *instance_properties;
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001938 const char ** extendedMethodTypes;
Daniel Dunbarb036db82008-08-13 03:21:16 +00001939 };
1940*/
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001941llvm::Constant *
1942CGObjCMac::EmitProtocolExtension(const ObjCProtocolDecl *PD,
1943 const ConstantVector &OptInstanceMethods,
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001944 const ConstantVector &OptClassMethods,
1945 const ConstantVector &MethodTypesExt) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001946 uint64_t Size =
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00001947 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolExtensionTy);
Benjamin Kramer22d24c22011-10-15 12:20:02 +00001948 llvm::Constant *Values[] = {
1949 llvm::ConstantInt::get(ObjCTypes.IntTy, Size),
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001950 EmitMethodDescList("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_OPT_"
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00001951 + PD->getName(),
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001952 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Benjamin Kramer22d24c22011-10-15 12:20:02 +00001953 OptInstanceMethods),
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00001954 EmitMethodDescList("\01L_OBJC_PROTOCOL_CLASS_METHODS_OPT_" + PD->getName(),
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00001955 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Benjamin Kramer22d24c22011-10-15 12:20:02 +00001956 OptClassMethods),
1957 EmitPropertyList("\01L_OBJC_$_PROP_PROTO_LIST_" + PD->getName(), 0, PD,
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001958 ObjCTypes),
1959 EmitProtocolMethodTypes("\01L_OBJC_PROTOCOL_METHOD_TYPES_" + PD->getName(),
1960 MethodTypesExt, ObjCTypes)
Benjamin Kramer22d24c22011-10-15 12:20:02 +00001961 };
Daniel Dunbarb036db82008-08-13 03:21:16 +00001962
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00001963 // Return null if no extension bits are used.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001964 if (Values[1]->isNullValue() && Values[2]->isNullValue() &&
Bob Wilson5f4e3a72011-11-30 01:57:58 +00001965 Values[3]->isNullValue() && Values[4]->isNullValue())
Owen Anderson0b75f232009-07-31 20:28:54 +00001966 return llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
Daniel Dunbarb036db82008-08-13 03:21:16 +00001967
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001968 llvm::Constant *Init =
Owen Anderson0e0189d2009-07-27 22:29:56 +00001969 llvm::ConstantStruct::get(ObjCTypes.ProtocolExtensionTy, Values);
Daniel Dunbarb036db82008-08-13 03:21:16 +00001970
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00001971 // No special section, but goes in llvm.used
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00001972 return CreateMetadataVar("\01L_OBJC_PROTOCOLEXT_" + PD->getName(),
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001973 Init,
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00001974 0, 0, true);
Daniel Dunbarb036db82008-08-13 03:21:16 +00001975}
1976
1977/*
1978 struct objc_protocol_list {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001979 struct objc_protocol_list *next;
1980 long count;
1981 Protocol *list[];
Daniel Dunbarb036db82008-08-13 03:21:16 +00001982 };
1983*/
Daniel Dunbardec75f82008-08-21 21:57:41 +00001984llvm::Constant *
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001985CGObjCMac::EmitProtocolList(Twine Name,
Daniel Dunbardec75f82008-08-21 21:57:41 +00001986 ObjCProtocolDecl::protocol_iterator begin,
1987 ObjCProtocolDecl::protocol_iterator end) {
Daniel Dunbarb036db82008-08-13 03:21:16 +00001988 std::vector<llvm::Constant*> ProtocolRefs;
1989
Daniel Dunbardec75f82008-08-21 21:57:41 +00001990 for (; begin != end; ++begin)
1991 ProtocolRefs.push_back(GetProtocolRef(*begin));
Daniel Dunbarb036db82008-08-13 03:21:16 +00001992
1993 // Just return null for empty protocol lists
Daniel Dunbar59e476b2009-08-03 17:06:42 +00001994 if (ProtocolRefs.empty())
Owen Anderson0b75f232009-07-31 20:28:54 +00001995 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbarb036db82008-08-13 03:21:16 +00001996
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00001997 // This list is null terminated.
Owen Anderson0b75f232009-07-31 20:28:54 +00001998 ProtocolRefs.push_back(llvm::Constant::getNullValue(ObjCTypes.ProtocolPtrTy));
Daniel Dunbarb036db82008-08-13 03:21:16 +00001999
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002000 llvm::Constant *Values[3];
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002001 // This field is only used by the runtime.
Owen Anderson0b75f232009-07-31 20:28:54 +00002002 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Owen Andersonb7a2fe62009-07-24 23:12:58 +00002003 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002004 ProtocolRefs.size() - 1);
2005 Values[2] =
2006 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.ProtocolPtrTy,
2007 ProtocolRefs.size()),
Daniel Dunbarb036db82008-08-13 03:21:16 +00002008 ProtocolRefs);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002009
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002010 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002011 llvm::GlobalVariable *GV =
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00002012 CreateMetadataVar(Name, Init, "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbarae333842009-03-09 22:18:41 +00002013 4, false);
Owen Andersonade90fd2009-07-29 18:54:39 +00002014 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListPtrTy);
Daniel Dunbarb036db82008-08-13 03:21:16 +00002015}
2016
Fariborz Jahanian751c1e72009-12-12 21:26:21 +00002017void CGObjCCommonMac::PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*, 16> &PropertySet,
2018 std::vector<llvm::Constant*> &Properties,
2019 const Decl *Container,
2020 const ObjCProtocolDecl *PROTO,
2021 const ObjCCommonTypesHelper &ObjCTypes) {
Fariborz Jahanian751c1e72009-12-12 21:26:21 +00002022 for (ObjCProtocolDecl::protocol_iterator P = PROTO->protocol_begin(),
2023 E = PROTO->protocol_end(); P != E; ++P)
2024 PushProtocolProperties(PropertySet, Properties, Container, (*P), ObjCTypes);
2025 for (ObjCContainerDecl::prop_iterator I = PROTO->prop_begin(),
2026 E = PROTO->prop_end(); I != E; ++I) {
2027 const ObjCPropertyDecl *PD = *I;
2028 if (!PropertySet.insert(PD->getIdentifier()))
2029 continue;
Benjamin Kramer22d24c22011-10-15 12:20:02 +00002030 llvm::Constant *Prop[] = {
2031 GetPropertyName(PD->getIdentifier()),
2032 GetPropertyTypeString(PD, Container)
2033 };
Fariborz Jahanian751c1e72009-12-12 21:26:21 +00002034 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy, Prop));
2035 }
2036}
2037
Daniel Dunbarb036db82008-08-13 03:21:16 +00002038/*
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002039 struct _objc_property {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002040 const char * const name;
2041 const char * const attributes;
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002042 };
2043
2044 struct _objc_property_list {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002045 uint32_t entsize; // sizeof (struct _objc_property)
2046 uint32_t prop_count;
2047 struct _objc_property[prop_count];
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002048 };
2049*/
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002050llvm::Constant *CGObjCCommonMac::EmitPropertyList(Twine Name,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002051 const Decl *Container,
2052 const ObjCContainerDecl *OCD,
2053 const ObjCCommonTypesHelper &ObjCTypes) {
Benjamin Kramer22d24c22011-10-15 12:20:02 +00002054 std::vector<llvm::Constant*> Properties;
Fariborz Jahanian751c1e72009-12-12 21:26:21 +00002055 llvm::SmallPtrSet<const IdentifierInfo*, 16> PropertySet;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002056 for (ObjCContainerDecl::prop_iterator I = OCD->prop_begin(),
2057 E = OCD->prop_end(); I != E; ++I) {
Steve Naroffba3dc382009-01-11 12:47:58 +00002058 const ObjCPropertyDecl *PD = *I;
Fariborz Jahanian751c1e72009-12-12 21:26:21 +00002059 PropertySet.insert(PD->getIdentifier());
Benjamin Kramer22d24c22011-10-15 12:20:02 +00002060 llvm::Constant *Prop[] = {
2061 GetPropertyName(PD->getIdentifier()),
2062 GetPropertyTypeString(PD, Container)
2063 };
Owen Anderson0e0189d2009-07-27 22:29:56 +00002064 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy,
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002065 Prop));
2066 }
Fariborz Jahanian7966aff2010-06-22 16:33:55 +00002067 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) {
Ted Kremenek0ef508d2010-09-01 01:21:15 +00002068 for (ObjCInterfaceDecl::all_protocol_iterator
2069 P = OID->all_referenced_protocol_begin(),
2070 E = OID->all_referenced_protocol_end(); P != E; ++P)
Fariborz Jahanian7966aff2010-06-22 16:33:55 +00002071 PushProtocolProperties(PropertySet, Properties, Container, (*P),
2072 ObjCTypes);
2073 }
2074 else if (const ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(OCD)) {
2075 for (ObjCCategoryDecl::protocol_iterator P = CD->protocol_begin(),
2076 E = CD->protocol_end(); P != E; ++P)
2077 PushProtocolProperties(PropertySet, Properties, Container, (*P),
2078 ObjCTypes);
2079 }
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002080
2081 // Return null for empty list.
2082 if (Properties.empty())
Owen Anderson0b75f232009-07-31 20:28:54 +00002083 return llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002084
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002085 unsigned PropertySize =
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00002086 CGM.getTargetData().getTypeAllocSize(ObjCTypes.PropertyTy);
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002087 llvm::Constant *Values[3];
Owen Andersonb7a2fe62009-07-24 23:12:58 +00002088 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, PropertySize);
2089 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Properties.size());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002090 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.PropertyTy,
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002091 Properties.size());
Owen Anderson47034e12009-07-28 18:33:04 +00002092 Values[2] = llvm::ConstantArray::get(AT, Properties);
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002093 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002094
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002095 llvm::GlobalVariable *GV =
2096 CreateMetadataVar(Name, Init,
2097 (ObjCABI == 2) ? "__DATA, __objc_const" :
Daniel Dunbarb25452a2009-04-15 02:56:18 +00002098 "__OBJC,__property,regular,no_dead_strip",
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002099 (ObjCABI == 2) ? 8 : 4,
Daniel Dunbarb25452a2009-04-15 02:56:18 +00002100 true);
Owen Andersonade90fd2009-07-29 18:54:39 +00002101 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.PropertyListPtrTy);
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002102}
2103
Bob Wilson5f4e3a72011-11-30 01:57:58 +00002104llvm::Constant *CGObjCCommonMac::EmitProtocolMethodTypes(Twine Name,
2105 const ConstantVector &MethodTypes,
2106 const ObjCCommonTypesHelper &ObjCTypes) {
2107 // Return null for empty list.
2108 if (MethodTypes.empty())
2109 return llvm::Constant::getNullValue(ObjCTypes.Int8PtrPtrTy);
2110
2111 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
2112 MethodTypes.size());
2113 llvm::Constant *Init = llvm::ConstantArray::get(AT, MethodTypes);
2114
2115 llvm::GlobalVariable *GV =
2116 CreateMetadataVar(Name, Init,
2117 (ObjCABI == 2) ? "__DATA, __objc_const" : 0,
2118 (ObjCABI == 2) ? 8 : 4,
2119 true);
2120 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.Int8PtrPtrTy);
2121}
2122
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002123/*
Daniel Dunbarb036db82008-08-13 03:21:16 +00002124 struct objc_method_description_list {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002125 int count;
2126 struct objc_method_description list[];
Daniel Dunbarb036db82008-08-13 03:21:16 +00002127 };
2128*/
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00002129llvm::Constant *
2130CGObjCMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
Benjamin Kramer22d24c22011-10-15 12:20:02 +00002131 llvm::Constant *Desc[] = {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002132 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Benjamin Kramer22d24c22011-10-15 12:20:02 +00002133 ObjCTypes.SelectorPtrTy),
2134 GetMethodVarType(MD)
2135 };
Douglas Gregora9d84932011-05-27 01:19:52 +00002136 if (!Desc[1])
2137 return 0;
2138
Owen Anderson0e0189d2009-07-27 22:29:56 +00002139 return llvm::ConstantStruct::get(ObjCTypes.MethodDescriptionTy,
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00002140 Desc);
2141}
Daniel Dunbarb036db82008-08-13 03:21:16 +00002142
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002143llvm::Constant *CGObjCMac::EmitMethodDescList(Twine Name,
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00002144 const char *Section,
2145 const ConstantVector &Methods) {
Daniel Dunbarb036db82008-08-13 03:21:16 +00002146 // Return null for empty list.
2147 if (Methods.empty())
Owen Anderson0b75f232009-07-31 20:28:54 +00002148 return llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbarb036db82008-08-13 03:21:16 +00002149
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002150 llvm::Constant *Values[2];
Owen Andersonb7a2fe62009-07-24 23:12:58 +00002151 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002152 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodDescriptionTy,
Daniel Dunbarb036db82008-08-13 03:21:16 +00002153 Methods.size());
Owen Anderson47034e12009-07-28 18:33:04 +00002154 Values[1] = llvm::ConstantArray::get(AT, Methods);
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002155 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbarb036db82008-08-13 03:21:16 +00002156
Daniel Dunbarb25452a2009-04-15 02:56:18 +00002157 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002158 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbarb036db82008-08-13 03:21:16 +00002159 ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00002160}
2161
Daniel Dunbar938a77f2008-08-22 20:34:54 +00002162/*
2163 struct _objc_category {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002164 char *category_name;
2165 char *class_name;
2166 struct _objc_method_list *instance_methods;
2167 struct _objc_method_list *class_methods;
2168 struct _objc_protocol_list *protocols;
2169 uint32_t size; // <rdar://4585769>
2170 struct _objc_property_list *instance_properties;
Daniel Dunbar938a77f2008-08-22 20:34:54 +00002171 };
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002172*/
Daniel Dunbar92992502008-08-15 22:20:32 +00002173void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00002174 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.CategoryTy);
Daniel Dunbar938a77f2008-08-22 20:34:54 +00002175
Mike Stump18bb9282009-05-16 07:57:57 +00002176 // FIXME: This is poor design, the OCD should have a pointer to the category
2177 // decl. Additionally, note that Category can be null for the @implementation
2178 // w/o an @interface case. Sema should just create one for us as it does for
2179 // @implementation so everyone else can live life under a clear blue sky.
Daniel Dunbar938a77f2008-08-22 20:34:54 +00002180 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002181 const ObjCCategoryDecl *Category =
Daniel Dunbar28e76ca2008-08-26 23:03:11 +00002182 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002183
2184 llvm::SmallString<256> ExtName;
2185 llvm::raw_svector_ostream(ExtName) << Interface->getName() << '_'
2186 << OCD->getName();
Daniel Dunbar938a77f2008-08-22 20:34:54 +00002187
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002188 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002189 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002190 i = OCD->instmeth_begin(), e = OCD->instmeth_end(); i != e; ++i) {
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002191 // Instance methods should always be defined.
2192 InstanceMethods.push_back(GetMethodConstant(*i));
2193 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002194 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002195 i = OCD->classmeth_begin(), e = OCD->classmeth_end(); i != e; ++i) {
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002196 // Class methods should always be defined.
2197 ClassMethods.push_back(GetMethodConstant(*i));
2198 }
2199
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002200 llvm::Constant *Values[7];
Daniel Dunbar938a77f2008-08-22 20:34:54 +00002201 Values[0] = GetClassName(OCD->getIdentifier());
2202 Values[1] = GetClassName(Interface->getIdentifier());
Fariborz Jahaniane55f8662009-04-29 20:40:05 +00002203 LazySymbols.insert(Interface->getIdentifier());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002204 Values[2] =
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002205 EmitMethodList("\01L_OBJC_CATEGORY_INSTANCE_METHODS_" + ExtName.str(),
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002206 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002207 InstanceMethods);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002208 Values[3] =
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002209 EmitMethodList("\01L_OBJC_CATEGORY_CLASS_METHODS_" + ExtName.str(),
Daniel Dunbarb25452a2009-04-15 02:56:18 +00002210 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002211 ClassMethods);
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00002212 if (Category) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002213 Values[4] =
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002214 EmitProtocolList("\01L_OBJC_CATEGORY_PROTOCOLS_" + ExtName.str(),
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00002215 Category->protocol_begin(),
2216 Category->protocol_end());
2217 } else {
Owen Anderson0b75f232009-07-31 20:28:54 +00002218 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00002219 }
Owen Andersonb7a2fe62009-07-24 23:12:58 +00002220 Values[5] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar28e76ca2008-08-26 23:03:11 +00002221
2222 // If there is no category @interface then there can be no properties.
2223 if (Category) {
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002224 Values[6] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(),
Fariborz Jahanian066347e2009-01-28 22:18:42 +00002225 OCD, Category, ObjCTypes);
Daniel Dunbar28e76ca2008-08-26 23:03:11 +00002226 } else {
Owen Anderson0b75f232009-07-31 20:28:54 +00002227 Values[6] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Daniel Dunbar28e76ca2008-08-26 23:03:11 +00002228 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002229
Owen Anderson0e0189d2009-07-27 22:29:56 +00002230 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.CategoryTy,
Daniel Dunbar938a77f2008-08-22 20:34:54 +00002231 Values);
2232
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002233 llvm::GlobalVariable *GV =
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002234 CreateMetadataVar("\01L_OBJC_CATEGORY_" + ExtName.str(), Init,
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00002235 "__OBJC,__category,regular,no_dead_strip",
Daniel Dunbarae333842009-03-09 22:18:41 +00002236 4, true);
Daniel Dunbar938a77f2008-08-22 20:34:54 +00002237 DefinedCategories.push_back(GV);
Fariborz Jahanian9adb2e62010-06-21 22:05:18 +00002238 DefinedCategoryNames.insert(ExtName.str());
Fariborz Jahanianc0577942011-04-22 22:02:28 +00002239 // method definition entries must be clear for next implementation.
2240 MethodDefinitions.clear();
Daniel Dunbar303e2c22008-08-11 02:45:11 +00002241}
2242
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002243// FIXME: Get from somewhere?
2244enum ClassFlags {
2245 eClassFlags_Factory = 0x00001,
2246 eClassFlags_Meta = 0x00002,
2247 // <rdr://5142207>
2248 eClassFlags_HasCXXStructors = 0x02000,
2249 eClassFlags_Hidden = 0x20000,
2250 eClassFlags_ABI2_Hidden = 0x00010,
2251 eClassFlags_ABI2_HasCXXStructors = 0x00004 // <rdr://4923634>
2252};
2253
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002254/*
2255 struct _objc_class {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002256 Class isa;
2257 Class super_class;
2258 const char *name;
2259 long version;
2260 long info;
2261 long instance_size;
2262 struct _objc_ivar_list *ivars;
2263 struct _objc_method_list *methods;
2264 struct _objc_cache *cache;
2265 struct _objc_protocol_list *protocols;
2266 // Objective-C 1.0 extensions (<rdr://4585769>)
2267 const char *ivar_layout;
2268 struct _objc_class_ext *ext;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002269 };
2270
2271 See EmitClassExtension();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002272*/
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002273void CGObjCMac::GenerateClass(const ObjCImplementationDecl *ID) {
Daniel Dunbarc61d0e92008-08-25 06:02:07 +00002274 DefinedSymbols.insert(ID->getIdentifier());
2275
Chris Lattner86d7d912008-11-24 03:54:41 +00002276 std::string ClassName = ID->getNameAsString();
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002277 // FIXME: Gross
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002278 ObjCInterfaceDecl *Interface =
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002279 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002280 llvm::Constant *Protocols =
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002281 EmitProtocolList("\01L_OBJC_CLASS_PROTOCOLS_" + ID->getName(),
Ted Kremenek0ef508d2010-09-01 01:21:15 +00002282 Interface->all_referenced_protocol_begin(),
2283 Interface->all_referenced_protocol_end());
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002284 unsigned Flags = eClassFlags_Factory;
John McCall31168b02011-06-15 23:02:42 +00002285 if (ID->hasCXXStructors())
Fariborz Jahanian0dec1e02010-04-28 21:28:56 +00002286 Flags |= eClassFlags_HasCXXStructors;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002287 unsigned Size =
Ken Dyckc8ae5502011-02-09 01:59:34 +00002288 CGM.getContext().getASTObjCImplementationLayout(ID).getSize().getQuantity();
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002289
2290 // FIXME: Set CXX-structors flag.
John McCall457a04e2010-10-22 21:05:15 +00002291 if (ID->getClassInterface()->getVisibility() == HiddenVisibility)
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002292 Flags |= eClassFlags_Hidden;
2293
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002294 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002295 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002296 i = ID->instmeth_begin(), e = ID->instmeth_end(); i != e; ++i) {
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002297 // Instance methods should always be defined.
2298 InstanceMethods.push_back(GetMethodConstant(*i));
2299 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002300 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002301 i = ID->classmeth_begin(), e = ID->classmeth_end(); i != e; ++i) {
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002302 // Class methods should always be defined.
2303 ClassMethods.push_back(GetMethodConstant(*i));
2304 }
2305
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002306 for (ObjCImplementationDecl::propimpl_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002307 i = ID->propimpl_begin(), e = ID->propimpl_end(); i != e; ++i) {
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002308 ObjCPropertyImplDecl *PID = *i;
2309
2310 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
2311 ObjCPropertyDecl *PD = PID->getPropertyDecl();
2312
2313 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
2314 if (llvm::Constant *C = GetMethodConstant(MD))
2315 InstanceMethods.push_back(C);
2316 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
2317 if (llvm::Constant *C = GetMethodConstant(MD))
2318 InstanceMethods.push_back(C);
2319 }
2320 }
2321
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002322 llvm::Constant *Values[12];
Daniel Dunbarccf61832009-05-03 08:56:52 +00002323 Values[ 0] = EmitMetaClass(ID, Protocols, ClassMethods);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002324 if (ObjCInterfaceDecl *Super = Interface->getSuperClass()) {
Daniel Dunbarc61d0e92008-08-25 06:02:07 +00002325 // Record a reference to the super class.
2326 LazySymbols.insert(Super->getIdentifier());
2327
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002328 Values[ 1] =
Owen Andersonade90fd2009-07-29 18:54:39 +00002329 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002330 ObjCTypes.ClassPtrTy);
2331 } else {
Owen Anderson0b75f232009-07-31 20:28:54 +00002332 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002333 }
2334 Values[ 2] = GetClassName(ID->getIdentifier());
2335 // Version is always 0.
Owen Andersonb7a2fe62009-07-24 23:12:58 +00002336 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2337 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2338 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanianb042a592009-01-28 19:12:34 +00002339 Values[ 6] = EmitIvarList(ID, false);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002340 Values[ 7] =
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002341 EmitMethodList("\01L_OBJC_INSTANCE_METHODS_" + ID->getName(),
Daniel Dunbar80a840b2008-08-23 00:19:03 +00002342 "__OBJC,__inst_meth,regular,no_dead_strip",
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002343 InstanceMethods);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002344 // cache is always NULL.
Owen Anderson0b75f232009-07-31 20:28:54 +00002345 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002346 Values[ 9] = Protocols;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002347 Values[10] = BuildIvarLayout(ID, true);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002348 Values[11] = EmitClassExtension(ID);
Owen Anderson0e0189d2009-07-27 22:29:56 +00002349 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002350 Values);
Fariborz Jahanianeb80c982009-11-12 20:14:24 +00002351 std::string Name("\01L_OBJC_CLASS_");
2352 Name += ClassName;
2353 const char *Section = "__OBJC,__class,regular,no_dead_strip";
2354 // Check for a forward reference.
2355 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2356 if (GV) {
2357 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2358 "Forward metaclass reference has incorrect type.");
2359 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2360 GV->setInitializer(Init);
2361 GV->setSection(Section);
2362 GV->setAlignment(4);
2363 CGM.AddUsedGlobal(GV);
2364 }
2365 else
2366 GV = CreateMetadataVar(Name, Init, Section, 4, true);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002367 DefinedClasses.push_back(GV);
Fariborz Jahanianc0577942011-04-22 22:02:28 +00002368 // method definition entries must be clear for next implementation.
2369 MethodDefinitions.clear();
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002370}
2371
2372llvm::Constant *CGObjCMac::EmitMetaClass(const ObjCImplementationDecl *ID,
2373 llvm::Constant *Protocols,
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00002374 const ConstantVector &Methods) {
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002375 unsigned Flags = eClassFlags_Meta;
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00002376 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002377
John McCall457a04e2010-10-22 21:05:15 +00002378 if (ID->getClassInterface()->getVisibility() == HiddenVisibility)
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002379 Flags |= eClassFlags_Hidden;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002380
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002381 llvm::Constant *Values[12];
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002382 // The isa for the metaclass is the root of the hierarchy.
2383 const ObjCInterfaceDecl *Root = ID->getClassInterface();
2384 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
2385 Root = Super;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002386 Values[ 0] =
Owen Andersonade90fd2009-07-29 18:54:39 +00002387 llvm::ConstantExpr::getBitCast(GetClassName(Root->getIdentifier()),
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002388 ObjCTypes.ClassPtrTy);
Daniel Dunbar938a77f2008-08-22 20:34:54 +00002389 // The super class for the metaclass is emitted as the name of the
2390 // super class. The runtime fixes this up to point to the
2391 // *metaclass* for the super class.
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002392 if (ObjCInterfaceDecl *Super = ID->getClassInterface()->getSuperClass()) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002393 Values[ 1] =
Owen Andersonade90fd2009-07-29 18:54:39 +00002394 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002395 ObjCTypes.ClassPtrTy);
2396 } else {
Owen Anderson0b75f232009-07-31 20:28:54 +00002397 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002398 }
2399 Values[ 2] = GetClassName(ID->getIdentifier());
2400 // Version is always 0.
Owen Andersonb7a2fe62009-07-24 23:12:58 +00002401 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
2402 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
2403 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Fariborz Jahanianb042a592009-01-28 19:12:34 +00002404 Values[ 6] = EmitIvarList(ID, true);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002405 Values[ 7] =
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00002406 EmitMethodList("\01L_OBJC_CLASS_METHODS_" + ID->getNameAsString(),
Daniel Dunbarb25452a2009-04-15 02:56:18 +00002407 "__OBJC,__cls_meth,regular,no_dead_strip",
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002408 Methods);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002409 // cache is always NULL.
Owen Anderson0b75f232009-07-31 20:28:54 +00002410 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002411 Values[ 9] = Protocols;
2412 // ivar_layout for metaclass is always NULL.
Owen Anderson0b75f232009-07-31 20:28:54 +00002413 Values[10] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002414 // The class extension is always unused for metaclasses.
Owen Anderson0b75f232009-07-31 20:28:54 +00002415 Values[11] = llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
Owen Anderson0e0189d2009-07-27 22:29:56 +00002416 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002417 Values);
2418
Daniel Dunbarca8531a2008-08-25 08:19:24 +00002419 std::string Name("\01L_OBJC_METACLASS_");
Chris Lattner86d7d912008-11-24 03:54:41 +00002420 Name += ID->getNameAsCString();
Daniel Dunbarca8531a2008-08-25 08:19:24 +00002421
2422 // Check for a forward reference.
2423 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
2424 if (GV) {
2425 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2426 "Forward metaclass reference has incorrect type.");
2427 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
2428 GV->setInitializer(Init);
2429 } else {
Owen Andersonc10c8d32009-07-08 19:05:04 +00002430 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
Daniel Dunbarca8531a2008-08-25 08:19:24 +00002431 llvm::GlobalValue::InternalLinkage,
Owen Andersonc10c8d32009-07-08 19:05:04 +00002432 Init, Name);
Daniel Dunbarca8531a2008-08-25 08:19:24 +00002433 }
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002434 GV->setSection("__OBJC,__meta_class,regular,no_dead_strip");
Daniel Dunbarae333842009-03-09 22:18:41 +00002435 GV->setAlignment(4);
Chris Lattnerf56501c2009-07-17 23:57:13 +00002436 CGM.AddUsedGlobal(GV);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002437
2438 return GV;
2439}
2440
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002441llvm::Constant *CGObjCMac::EmitMetaClassRef(const ObjCInterfaceDecl *ID) {
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00002442 std::string Name = "\01L_OBJC_METACLASS_" + ID->getNameAsString();
Daniel Dunbarca8531a2008-08-25 08:19:24 +00002443
Mike Stump18bb9282009-05-16 07:57:57 +00002444 // FIXME: Should we look these up somewhere other than the module. Its a bit
2445 // silly since we only generate these while processing an implementation, so
2446 // exactly one pointer would work if know when we entered/exitted an
2447 // implementation block.
Daniel Dunbarca8531a2008-08-25 08:19:24 +00002448
2449 // Check for an existing forward reference.
Fariborz Jahanian475831b2009-01-07 20:11:22 +00002450 // Previously, metaclass with internal linkage may have been defined.
2451 // pass 'true' as 2nd argument so it is returned.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002452 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
2453 true)) {
Daniel Dunbarca8531a2008-08-25 08:19:24 +00002454 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2455 "Forward metaclass reference has incorrect type.");
2456 return GV;
2457 } else {
2458 // Generate as an external reference to keep a consistent
2459 // module. This will be patched up when we emit the metaclass.
Owen Andersonc10c8d32009-07-08 19:05:04 +00002460 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
Daniel Dunbarca8531a2008-08-25 08:19:24 +00002461 llvm::GlobalValue::ExternalLinkage,
2462 0,
Owen Andersonc10c8d32009-07-08 19:05:04 +00002463 Name);
Daniel Dunbarca8531a2008-08-25 08:19:24 +00002464 }
2465}
2466
Fariborz Jahanianeb80c982009-11-12 20:14:24 +00002467llvm::Value *CGObjCMac::EmitSuperClassRef(const ObjCInterfaceDecl *ID) {
2468 std::string Name = "\01L_OBJC_CLASS_" + ID->getNameAsString();
2469
2470 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name,
2471 true)) {
2472 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
2473 "Forward class metadata reference has incorrect type.");
2474 return GV;
2475 } else {
2476 return new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false,
2477 llvm::GlobalValue::ExternalLinkage,
2478 0,
2479 Name);
2480 }
2481}
2482
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002483/*
2484 struct objc_class_ext {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002485 uint32_t size;
2486 const char *weak_ivar_layout;
2487 struct _objc_property_list *properties;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002488 };
2489*/
2490llvm::Constant *
2491CGObjCMac::EmitClassExtension(const ObjCImplementationDecl *ID) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002492 uint64_t Size =
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00002493 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassExtensionTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002494
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002495 llvm::Constant *Values[3];
Owen Andersonb7a2fe62009-07-24 23:12:58 +00002496 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanian6df69862009-04-22 23:00:43 +00002497 Values[1] = BuildIvarLayout(ID, false);
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002498 Values[2] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getName(),
Fariborz Jahanian066347e2009-01-28 22:18:42 +00002499 ID, ID->getClassInterface(), ObjCTypes);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002500
2501 // Return null if no extension bits are used.
2502 if (Values[1]->isNullValue() && Values[2]->isNullValue())
Owen Anderson0b75f232009-07-31 20:28:54 +00002503 return llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002504
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002505 llvm::Constant *Init =
Owen Anderson0e0189d2009-07-27 22:29:56 +00002506 llvm::ConstantStruct::get(ObjCTypes.ClassExtensionTy, Values);
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002507 return CreateMetadataVar("\01L_OBJC_CLASSEXT_" + ID->getName(),
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002508 Init, "__OBJC,__class_ext,regular,no_dead_strip",
Daniel Dunbarb25452a2009-04-15 02:56:18 +00002509 4, true);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002510}
2511
2512/*
2513 struct objc_ivar {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002514 char *ivar_name;
2515 char *ivar_type;
2516 int ivar_offset;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002517 };
2518
2519 struct objc_ivar_list {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002520 int ivar_count;
2521 struct objc_ivar list[count];
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002522 };
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002523*/
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002524llvm::Constant *CGObjCMac::EmitIvarList(const ObjCImplementationDecl *ID,
Fariborz Jahanianb042a592009-01-28 19:12:34 +00002525 bool ForClass) {
Benjamin Kramer22d24c22011-10-15 12:20:02 +00002526 std::vector<llvm::Constant*> Ivars;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002527
2528 // When emitting the root class GCC emits ivar entries for the
2529 // actual class structure. It is not clear if we need to follow this
2530 // behavior; for now lets try and get away with not doing it. If so,
2531 // the cleanest solution would be to make up an ObjCInterfaceDecl
2532 // for the class.
2533 if (ForClass)
Owen Anderson0b75f232009-07-31 20:28:54 +00002534 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002535
Jordy Rosea91768e2011-07-22 02:08:32 +00002536 const ObjCInterfaceDecl *OID = ID->getClassInterface();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002537
Jordy Rosea91768e2011-07-22 02:08:32 +00002538 for (const ObjCIvarDecl *IVD = OID->all_declared_ivar_begin();
Fariborz Jahanianb26d5782011-06-28 18:05:25 +00002539 IVD; IVD = IVD->getNextIvar()) {
Fariborz Jahanian7c809592009-06-04 01:19:09 +00002540 // Ignore unnamed bit-fields.
2541 if (!IVD->getDeclName())
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002542 continue;
Benjamin Kramer22d24c22011-10-15 12:20:02 +00002543 llvm::Constant *Ivar[] = {
2544 GetMethodVarName(IVD->getIdentifier()),
2545 GetMethodVarType(IVD),
2546 llvm::ConstantInt::get(ObjCTypes.IntTy,
2547 ComputeIvarBaseOffset(CGM, OID, IVD))
2548 };
Owen Anderson0e0189d2009-07-27 22:29:56 +00002549 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarTy, Ivar));
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002550 }
2551
2552 // Return null for empty list.
2553 if (Ivars.empty())
Owen Anderson0b75f232009-07-31 20:28:54 +00002554 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002555
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002556 llvm::Constant *Values[2];
Owen Andersonb7a2fe62009-07-24 23:12:58 +00002557 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
Owen Anderson9793f0e2009-07-29 22:16:19 +00002558 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarTy,
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002559 Ivars.size());
Owen Anderson47034e12009-07-28 18:33:04 +00002560 Values[1] = llvm::ConstantArray::get(AT, Ivars);
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002561 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002562
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00002563 llvm::GlobalVariable *GV;
2564 if (ForClass)
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002565 GV = CreateMetadataVar("\01L_OBJC_CLASS_VARIABLES_" + ID->getName(),
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002566 Init, "__OBJC,__class_vars,regular,no_dead_strip",
Daniel Dunbarae333842009-03-09 22:18:41 +00002567 4, true);
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00002568 else
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00002569 GV = CreateMetadataVar("\01L_OBJC_INSTANCE_VARIABLES_" + ID->getName(),
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00002570 Init, "__OBJC,__instance_vars,regular,no_dead_strip",
Daniel Dunbarb25452a2009-04-15 02:56:18 +00002571 4, true);
Owen Andersonade90fd2009-07-29 18:54:39 +00002572 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListPtrTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002573}
2574
2575/*
2576 struct objc_method {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002577 SEL method_name;
2578 char *method_types;
2579 void *method;
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002580 };
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002581
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002582 struct objc_method_list {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002583 struct objc_method_list *obsolete;
2584 int count;
2585 struct objc_method methods_list[count];
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002586 };
2587*/
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002588
2589/// GetMethodConstant - Return a struct objc_method constant for the
2590/// given method if it has been defined. The result is null if the
2591/// method has not been defined. The return value has type MethodPtrTy.
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00002592llvm::Constant *CGObjCMac::GetMethodConstant(const ObjCMethodDecl *MD) {
Argyrios Kyrtzidis13257c52010-08-09 10:54:20 +00002593 llvm::Function *Fn = GetMethodDefinition(MD);
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002594 if (!Fn)
2595 return 0;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002596
Benjamin Kramer22d24c22011-10-15 12:20:02 +00002597 llvm::Constant *Method[] = {
Owen Andersonade90fd2009-07-29 18:54:39 +00002598 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Benjamin Kramer22d24c22011-10-15 12:20:02 +00002599 ObjCTypes.SelectorPtrTy),
2600 GetMethodVarType(MD),
2601 llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy)
2602 };
Owen Anderson0e0189d2009-07-27 22:29:56 +00002603 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002604}
2605
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002606llvm::Constant *CGObjCMac::EmitMethodList(Twine Name,
Daniel Dunbar938a77f2008-08-22 20:34:54 +00002607 const char *Section,
Daniel Dunbareb1f9a22008-08-27 02:31:56 +00002608 const ConstantVector &Methods) {
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002609 // Return null for empty list.
2610 if (Methods.empty())
Owen Anderson0b75f232009-07-31 20:28:54 +00002611 return llvm::Constant::getNullValue(ObjCTypes.MethodListPtrTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002612
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002613 llvm::Constant *Values[3];
Owen Anderson0b75f232009-07-31 20:28:54 +00002614 Values[0] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Owen Andersonb7a2fe62009-07-24 23:12:58 +00002615 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Owen Anderson9793f0e2009-07-29 22:16:19 +00002616 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002617 Methods.size());
Owen Anderson47034e12009-07-28 18:33:04 +00002618 Values[2] = llvm::ConstantArray::get(AT, Methods);
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002619 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00002620
Daniel Dunbarb25452a2009-04-15 02:56:18 +00002621 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
Chris Lattnere64d7ba2011-06-20 04:01:35 +00002622 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.MethodListPtrTy);
Daniel Dunbara94ecd22008-08-16 03:19:19 +00002623}
2624
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00002625llvm::Function *CGObjCCommonMac::GenerateMethod(const ObjCMethodDecl *OMD,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002626 const ObjCContainerDecl *CD) {
Daniel Dunbard2386812009-10-19 01:21:19 +00002627 llvm::SmallString<256> Name;
Fariborz Jahanian0196a1c2009-01-10 21:06:09 +00002628 GetNameForMethod(OMD, CD, Name);
Daniel Dunbara94ecd22008-08-16 03:19:19 +00002629
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +00002630 CodeGenTypes &Types = CGM.getTypes();
Chris Lattner2192fe52011-07-18 04:24:23 +00002631 llvm::FunctionType *MethodTy =
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +00002632 Types.GetFunctionType(Types.getFunctionInfo(OMD), OMD->isVariadic());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002633 llvm::Function *Method =
Daniel Dunbar7a95ca32008-09-10 04:01:49 +00002634 llvm::Function::Create(MethodTy,
Daniel Dunbara94ecd22008-08-16 03:19:19 +00002635 llvm::GlobalValue::InternalLinkage,
Daniel Dunbard2386812009-10-19 01:21:19 +00002636 Name.str(),
Daniel Dunbara94ecd22008-08-16 03:19:19 +00002637 &CGM.getModule());
Daniel Dunbar3c76cb52008-08-26 21:51:14 +00002638 MethodDefinitions.insert(std::make_pair(OMD, Method));
Daniel Dunbara94ecd22008-08-16 03:19:19 +00002639
Daniel Dunbara94ecd22008-08-16 03:19:19 +00002640 return Method;
Daniel Dunbar303e2c22008-08-11 02:45:11 +00002641}
2642
Daniel Dunbar30c65362009-03-09 20:09:19 +00002643llvm::GlobalVariable *
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002644CGObjCCommonMac::CreateMetadataVar(Twine Name,
Daniel Dunbar30c65362009-03-09 20:09:19 +00002645 llvm::Constant *Init,
2646 const char *Section,
Daniel Dunbar463cc8a2009-03-09 20:50:13 +00002647 unsigned Align,
2648 bool AddToUsed) {
Chris Lattner2192fe52011-07-18 04:24:23 +00002649 llvm::Type *Ty = Init->getType();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002650 llvm::GlobalVariable *GV =
Owen Andersonc10c8d32009-07-08 19:05:04 +00002651 new llvm::GlobalVariable(CGM.getModule(), Ty, false,
Chris Lattnerf56501c2009-07-17 23:57:13 +00002652 llvm::GlobalValue::InternalLinkage, Init, Name);
Daniel Dunbar30c65362009-03-09 20:09:19 +00002653 if (Section)
2654 GV->setSection(Section);
Daniel Dunbar463cc8a2009-03-09 20:50:13 +00002655 if (Align)
2656 GV->setAlignment(Align);
2657 if (AddToUsed)
Chris Lattnerf56501c2009-07-17 23:57:13 +00002658 CGM.AddUsedGlobal(GV);
Daniel Dunbar30c65362009-03-09 20:09:19 +00002659 return GV;
2660}
2661
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002662llvm::Function *CGObjCMac::ModuleInitFunction() {
Daniel Dunbar3ad53482008-08-11 21:35:06 +00002663 // Abuse this interface function as a place to finalize.
2664 FinishModule();
Daniel Dunbar303e2c22008-08-11 02:45:11 +00002665 return NULL;
2666}
2667
Chris Lattnerd4808922009-03-22 21:03:39 +00002668llvm::Constant *CGObjCMac::GetPropertyGetFunction() {
Chris Lattnerce8754e2009-04-22 02:44:54 +00002669 return ObjCTypes.getGetPropertyFn();
Daniel Dunbara91c3e02008-09-24 03:38:44 +00002670}
2671
Chris Lattnerd4808922009-03-22 21:03:39 +00002672llvm::Constant *CGObjCMac::GetPropertySetFunction() {
Chris Lattnerce8754e2009-04-22 02:44:54 +00002673 return ObjCTypes.getSetPropertyFn();
Daniel Dunbara91c3e02008-09-24 03:38:44 +00002674}
2675
David Chisnall168b80f2010-12-26 22:13:16 +00002676llvm::Constant *CGObjCMac::GetGetStructFunction() {
2677 return ObjCTypes.getCopyStructFn();
2678}
2679llvm::Constant *CGObjCMac::GetSetStructFunction() {
Fariborz Jahanian5a8c2032010-04-12 18:18:10 +00002680 return ObjCTypes.getCopyStructFn();
2681}
2682
Fariborz Jahanian1e1b5492012-01-06 18:07:23 +00002683llvm::Constant *CGObjCMac::GetCppAtomicObjectFunction() {
2684 return ObjCTypes.getCppAtomicObjectFunction();
2685}
2686
Chris Lattnerd4808922009-03-22 21:03:39 +00002687llvm::Constant *CGObjCMac::EnumerationMutationFunction() {
Chris Lattnerce8754e2009-04-22 02:44:54 +00002688 return ObjCTypes.getEnumerationMutationFn();
Anders Carlsson3f35a262008-08-31 04:05:03 +00002689}
2690
John McCallbd309292010-07-06 01:34:17 +00002691void CGObjCMac::EmitTryStmt(CodeGenFunction &CGF, const ObjCAtTryStmt &S) {
2692 return EmitTryOrSynchronizedStmt(CGF, S);
2693}
2694
2695void CGObjCMac::EmitSynchronizedStmt(CodeGenFunction &CGF,
2696 const ObjCAtSynchronizedStmt &S) {
2697 return EmitTryOrSynchronizedStmt(CGF, S);
2698}
2699
John McCall65bea082010-07-21 06:59:36 +00002700namespace {
John McCallcda666c2010-07-21 07:22:38 +00002701 struct PerformFragileFinally : EHScopeStack::Cleanup {
John McCall65bea082010-07-21 06:59:36 +00002702 const Stmt &S;
John McCall2dd7d442010-08-04 05:59:32 +00002703 llvm::Value *SyncArgSlot;
John McCall65bea082010-07-21 06:59:36 +00002704 llvm::Value *CallTryExitVar;
2705 llvm::Value *ExceptionData;
2706 ObjCTypesHelper &ObjCTypes;
2707 PerformFragileFinally(const Stmt *S,
John McCall2dd7d442010-08-04 05:59:32 +00002708 llvm::Value *SyncArgSlot,
John McCall65bea082010-07-21 06:59:36 +00002709 llvm::Value *CallTryExitVar,
2710 llvm::Value *ExceptionData,
2711 ObjCTypesHelper *ObjCTypes)
John McCall2dd7d442010-08-04 05:59:32 +00002712 : S(*S), SyncArgSlot(SyncArgSlot), CallTryExitVar(CallTryExitVar),
John McCall65bea082010-07-21 06:59:36 +00002713 ExceptionData(ExceptionData), ObjCTypes(*ObjCTypes) {}
2714
John McCall30317fd2011-07-12 20:27:29 +00002715 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall65bea082010-07-21 06:59:36 +00002716 // Check whether we need to call objc_exception_try_exit.
2717 // In optimized code, this branch will always be folded.
2718 llvm::BasicBlock *FinallyCallExit =
2719 CGF.createBasicBlock("finally.call_exit");
2720 llvm::BasicBlock *FinallyNoCallExit =
2721 CGF.createBasicBlock("finally.no_call_exit");
2722 CGF.Builder.CreateCondBr(CGF.Builder.CreateLoad(CallTryExitVar),
2723 FinallyCallExit, FinallyNoCallExit);
2724
2725 CGF.EmitBlock(FinallyCallExit);
2726 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryExitFn(), ExceptionData)
2727 ->setDoesNotThrow();
2728
2729 CGF.EmitBlock(FinallyNoCallExit);
2730
2731 if (isa<ObjCAtTryStmt>(S)) {
2732 if (const ObjCAtFinallyStmt* FinallyStmt =
John McCallcebe0ca2010-08-11 00:16:14 +00002733 cast<ObjCAtTryStmt>(S).getFinallyStmt()) {
2734 // Save the current cleanup destination in case there's
2735 // control flow inside the finally statement.
2736 llvm::Value *CurCleanupDest =
2737 CGF.Builder.CreateLoad(CGF.getNormalCleanupDestSlot());
2738
John McCall65bea082010-07-21 06:59:36 +00002739 CGF.EmitStmt(FinallyStmt->getFinallyBody());
2740
John McCallcebe0ca2010-08-11 00:16:14 +00002741 if (CGF.HaveInsertPoint()) {
2742 CGF.Builder.CreateStore(CurCleanupDest,
2743 CGF.getNormalCleanupDestSlot());
2744 } else {
2745 // Currently, the end of the cleanup must always exist.
2746 CGF.EnsureInsertPoint();
2747 }
2748 }
John McCall65bea082010-07-21 06:59:36 +00002749 } else {
2750 // Emit objc_sync_exit(expr); as finally's sole statement for
2751 // @synchronized.
John McCall2dd7d442010-08-04 05:59:32 +00002752 llvm::Value *SyncArg = CGF.Builder.CreateLoad(SyncArgSlot);
John McCall65bea082010-07-21 06:59:36 +00002753 CGF.Builder.CreateCall(ObjCTypes.getSyncExitFn(), SyncArg)
2754 ->setDoesNotThrow();
2755 }
2756 }
2757 };
John McCall42227ed2010-07-31 23:20:56 +00002758
2759 class FragileHazards {
2760 CodeGenFunction &CGF;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002761 SmallVector<llvm::Value*, 20> Locals;
John McCall42227ed2010-07-31 23:20:56 +00002762 llvm::DenseSet<llvm::BasicBlock*> BlocksBeforeTry;
2763
2764 llvm::InlineAsm *ReadHazard;
2765 llvm::InlineAsm *WriteHazard;
2766
2767 llvm::FunctionType *GetAsmFnType();
2768
2769 void collectLocals();
2770 void emitReadHazard(CGBuilderTy &Builder);
2771
2772 public:
2773 FragileHazards(CodeGenFunction &CGF);
John McCall2dd7d442010-08-04 05:59:32 +00002774
John McCall42227ed2010-07-31 23:20:56 +00002775 void emitWriteHazard();
John McCall2dd7d442010-08-04 05:59:32 +00002776 void emitHazardsInNewBlocks();
John McCall42227ed2010-07-31 23:20:56 +00002777 };
2778}
2779
2780/// Create the fragile-ABI read and write hazards based on the current
2781/// state of the function, which is presumed to be immediately prior
2782/// to a @try block. These hazards are used to maintain correct
2783/// semantics in the face of optimization and the fragile ABI's
2784/// cavalier use of setjmp/longjmp.
2785FragileHazards::FragileHazards(CodeGenFunction &CGF) : CGF(CGF) {
2786 collectLocals();
2787
2788 if (Locals.empty()) return;
2789
2790 // Collect all the blocks in the function.
2791 for (llvm::Function::iterator
2792 I = CGF.CurFn->begin(), E = CGF.CurFn->end(); I != E; ++I)
2793 BlocksBeforeTry.insert(&*I);
2794
2795 llvm::FunctionType *AsmFnTy = GetAsmFnType();
2796
2797 // Create a read hazard for the allocas. This inhibits dead-store
2798 // optimizations and forces the values to memory. This hazard is
2799 // inserted before any 'throwing' calls in the protected scope to
2800 // reflect the possibility that the variables might be read from the
2801 // catch block if the call throws.
2802 {
2803 std::string Constraint;
2804 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
2805 if (I) Constraint += ',';
2806 Constraint += "*m";
2807 }
2808
2809 ReadHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false);
2810 }
2811
2812 // Create a write hazard for the allocas. This inhibits folding
2813 // loads across the hazard. This hazard is inserted at the
2814 // beginning of the catch path to reflect the possibility that the
2815 // variables might have been written within the protected scope.
2816 {
2817 std::string Constraint;
2818 for (unsigned I = 0, E = Locals.size(); I != E; ++I) {
2819 if (I) Constraint += ',';
2820 Constraint += "=*m";
2821 }
2822
2823 WriteHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false);
2824 }
2825}
2826
2827/// Emit a write hazard at the current location.
2828void FragileHazards::emitWriteHazard() {
2829 if (Locals.empty()) return;
2830
Jay Foad5bd375a2011-07-15 08:37:34 +00002831 CGF.Builder.CreateCall(WriteHazard, Locals)->setDoesNotThrow();
John McCall42227ed2010-07-31 23:20:56 +00002832}
2833
John McCall42227ed2010-07-31 23:20:56 +00002834void FragileHazards::emitReadHazard(CGBuilderTy &Builder) {
2835 assert(!Locals.empty());
Jay Foad5bd375a2011-07-15 08:37:34 +00002836 Builder.CreateCall(ReadHazard, Locals)->setDoesNotThrow();
John McCall42227ed2010-07-31 23:20:56 +00002837}
2838
2839/// Emit read hazards in all the protected blocks, i.e. all the blocks
2840/// which have been inserted since the beginning of the try.
John McCall2dd7d442010-08-04 05:59:32 +00002841void FragileHazards::emitHazardsInNewBlocks() {
John McCall42227ed2010-07-31 23:20:56 +00002842 if (Locals.empty()) return;
2843
2844 CGBuilderTy Builder(CGF.getLLVMContext());
2845
2846 // Iterate through all blocks, skipping those prior to the try.
2847 for (llvm::Function::iterator
2848 FI = CGF.CurFn->begin(), FE = CGF.CurFn->end(); FI != FE; ++FI) {
2849 llvm::BasicBlock &BB = *FI;
2850 if (BlocksBeforeTry.count(&BB)) continue;
2851
2852 // Walk through all the calls in the block.
2853 for (llvm::BasicBlock::iterator
2854 BI = BB.begin(), BE = BB.end(); BI != BE; ++BI) {
2855 llvm::Instruction &I = *BI;
2856
2857 // Ignore instructions that aren't non-intrinsic calls.
2858 // These are the only calls that can possibly call longjmp.
2859 if (!isa<llvm::CallInst>(I) && !isa<llvm::InvokeInst>(I)) continue;
2860 if (isa<llvm::IntrinsicInst>(I))
2861 continue;
2862
2863 // Ignore call sites marked nounwind. This may be questionable,
2864 // since 'nounwind' doesn't necessarily mean 'does not call longjmp'.
2865 llvm::CallSite CS(&I);
2866 if (CS.doesNotThrow()) continue;
2867
John McCall2dd7d442010-08-04 05:59:32 +00002868 // Insert a read hazard before the call. This will ensure that
2869 // any writes to the locals are performed before making the
2870 // call. If the call throws, then this is sufficient to
2871 // guarantee correctness as long as it doesn't also write to any
2872 // locals.
John McCall42227ed2010-07-31 23:20:56 +00002873 Builder.SetInsertPoint(&BB, BI);
2874 emitReadHazard(Builder);
2875 }
2876 }
2877}
2878
2879static void addIfPresent(llvm::DenseSet<llvm::Value*> &S, llvm::Value *V) {
2880 if (V) S.insert(V);
2881}
2882
2883void FragileHazards::collectLocals() {
2884 // Compute a set of allocas to ignore.
2885 llvm::DenseSet<llvm::Value*> AllocasToIgnore;
2886 addIfPresent(AllocasToIgnore, CGF.ReturnValue);
2887 addIfPresent(AllocasToIgnore, CGF.NormalCleanupDest);
John McCall42227ed2010-07-31 23:20:56 +00002888
2889 // Collect all the allocas currently in the function. This is
2890 // probably way too aggressive.
2891 llvm::BasicBlock &Entry = CGF.CurFn->getEntryBlock();
2892 for (llvm::BasicBlock::iterator
2893 I = Entry.begin(), E = Entry.end(); I != E; ++I)
2894 if (isa<llvm::AllocaInst>(*I) && !AllocasToIgnore.count(&*I))
2895 Locals.push_back(&*I);
2896}
2897
2898llvm::FunctionType *FragileHazards::GetAsmFnType() {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002899 SmallVector<llvm::Type *, 16> tys(Locals.size());
John McCall9dc0db22011-05-15 01:53:33 +00002900 for (unsigned i = 0, e = Locals.size(); i != e; ++i)
2901 tys[i] = Locals[i]->getType();
2902 return llvm::FunctionType::get(CGF.VoidTy, tys, false);
John McCall65bea082010-07-21 06:59:36 +00002903}
2904
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002905/*
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002906
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002907 Objective-C setjmp-longjmp (sjlj) Exception Handling
2908 --
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002909
John McCallbd309292010-07-06 01:34:17 +00002910 A catch buffer is a setjmp buffer plus:
2911 - a pointer to the exception that was caught
2912 - a pointer to the previous exception data buffer
2913 - two pointers of reserved storage
2914 Therefore catch buffers form a stack, with a pointer to the top
2915 of the stack kept in thread-local storage.
2916
2917 objc_exception_try_enter pushes a catch buffer onto the EH stack.
2918 objc_exception_try_exit pops the given catch buffer, which is
2919 required to be the top of the EH stack.
2920 objc_exception_throw pops the top of the EH stack, writes the
2921 thrown exception into the appropriate field, and longjmps
2922 to the setjmp buffer. It crashes the process (with a printf
2923 and an abort()) if there are no catch buffers on the stack.
2924 objc_exception_extract just reads the exception pointer out of the
2925 catch buffer.
2926
2927 There's no reason an implementation couldn't use a light-weight
2928 setjmp here --- something like __builtin_setjmp, but API-compatible
2929 with the heavyweight setjmp. This will be more important if we ever
2930 want to implement correct ObjC/C++ exception interactions for the
2931 fragile ABI.
2932
2933 Note that for this use of setjmp/longjmp to be correct, we may need
2934 to mark some local variables volatile: if a non-volatile local
2935 variable is modified between the setjmp and the longjmp, it has
2936 indeterminate value. For the purposes of LLVM IR, it may be
2937 sufficient to make loads and stores within the @try (to variables
2938 declared outside the @try) volatile. This is necessary for
2939 optimized correctness, but is not currently being done; this is
2940 being tracked as rdar://problem/8160285
2941
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002942 The basic framework for a @try-catch-finally is as follows:
2943 {
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002944 objc_exception_data d;
2945 id _rethrow = null;
Anders Carlssonda0e4562009-02-07 21:26:04 +00002946 bool _call_try_exit = true;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002947
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002948 objc_exception_try_enter(&d);
2949 if (!setjmp(d.jmp_buf)) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002950 ... try body ...
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002951 } else {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002952 // exception path
2953 id _caught = objc_exception_extract(&d);
2954
2955 // enter new try scope for handlers
2956 if (!setjmp(d.jmp_buf)) {
2957 ... match exception and execute catch blocks ...
2958
2959 // fell off end, rethrow.
2960 _rethrow = _caught;
2961 ... jump-through-finally to finally_rethrow ...
2962 } else {
2963 // exception in catch block
2964 _rethrow = objc_exception_extract(&d);
2965 _call_try_exit = false;
2966 ... jump-through-finally to finally_rethrow ...
2967 }
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002968 }
Daniel Dunbar2efd5382008-09-30 01:06:03 +00002969 ... jump-through-finally to finally_end ...
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002970
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002971 finally:
Anders Carlssonda0e4562009-02-07 21:26:04 +00002972 if (_call_try_exit)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002973 objc_exception_try_exit(&d);
Anders Carlssonda0e4562009-02-07 21:26:04 +00002974
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002975 ... finally block ....
Daniel Dunbar2efd5382008-09-30 01:06:03 +00002976 ... dispatch to finally destination ...
2977
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002978 finally_rethrow:
Daniel Dunbar2efd5382008-09-30 01:06:03 +00002979 objc_exception_throw(_rethrow);
2980
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002981 finally_end:
2982 }
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002983
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002984 This framework differs slightly from the one gcc uses, in that gcc
2985 uses _rethrow to determine if objc_exception_try_exit should be called
2986 and if the object should be rethrown. This breaks in the face of
2987 throwing nil and introduces unnecessary branches.
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002988
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002989 We specialize this framework for a few particular circumstances:
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002990
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002991 - If there are no catch blocks, then we avoid emitting the second
2992 exception handling context.
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002993
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002994 - If there is a catch-all catch block (i.e. @catch(...) or @catch(id
2995 e)) we avoid emitting the code to rethrow an uncaught exception.
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002996
Daniel Dunbar59e476b2009-08-03 17:06:42 +00002997 - FIXME: If there is no @finally block we can do a few more
2998 simplifications.
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00002999
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003000 Rethrows and Jumps-Through-Finally
3001 --
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00003002
John McCallbd309292010-07-06 01:34:17 +00003003 '@throw;' is supported by pushing the currently-caught exception
3004 onto ObjCEHStack while the @catch blocks are emitted.
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00003005
John McCallbd309292010-07-06 01:34:17 +00003006 Branches through the @finally block are handled with an ordinary
3007 normal cleanup. We do not register an EH cleanup; fragile-ABI ObjC
3008 exceptions are not compatible with C++ exceptions, and this is
3009 hardly the only place where this will go wrong.
Daniel Dunbar2efd5382008-09-30 01:06:03 +00003010
John McCallbd309292010-07-06 01:34:17 +00003011 @synchronized(expr) { stmt; } is emitted as if it were:
3012 id synch_value = expr;
3013 objc_sync_enter(synch_value);
3014 @try { stmt; } @finally { objc_sync_exit(synch_value); }
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00003015*/
3016
Fariborz Jahanianc2ad6dc2008-11-21 00:49:24 +00003017void CGObjCMac::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
3018 const Stmt &S) {
3019 bool isTry = isa<ObjCAtTryStmt>(S);
John McCallbd309292010-07-06 01:34:17 +00003020
3021 // A destination for the fall-through edges of the catch handlers to
3022 // jump to.
3023 CodeGenFunction::JumpDest FinallyEnd =
3024 CGF.getJumpDestInCurrentScope("finally.end");
3025
3026 // A destination for the rethrow edge of the catch handlers to jump
3027 // to.
3028 CodeGenFunction::JumpDest FinallyRethrow =
3029 CGF.getJumpDestInCurrentScope("finally.rethrow");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003030
Daniel Dunbar94ceb612009-02-24 01:43:46 +00003031 // For @synchronized, call objc_sync_enter(sync.expr). The
3032 // evaluation of the expression must occur before we enter the
John McCall2dd7d442010-08-04 05:59:32 +00003033 // @synchronized. We can't avoid a temp here because we need the
3034 // value to be preserved. If the backend ever does liveness
3035 // correctly after setjmp, this will be unnecessary.
3036 llvm::Value *SyncArgSlot = 0;
Daniel Dunbar94ceb612009-02-24 01:43:46 +00003037 if (!isTry) {
John McCall2dd7d442010-08-04 05:59:32 +00003038 llvm::Value *SyncArg =
Daniel Dunbar94ceb612009-02-24 01:43:46 +00003039 CGF.EmitScalarExpr(cast<ObjCAtSynchronizedStmt>(S).getSynchExpr());
3040 SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy);
John McCallbd309292010-07-06 01:34:17 +00003041 CGF.Builder.CreateCall(ObjCTypes.getSyncEnterFn(), SyncArg)
3042 ->setDoesNotThrow();
John McCall2dd7d442010-08-04 05:59:32 +00003043
3044 SyncArgSlot = CGF.CreateTempAlloca(SyncArg->getType(), "sync.arg");
3045 CGF.Builder.CreateStore(SyncArg, SyncArgSlot);
Daniel Dunbar94ceb612009-02-24 01:43:46 +00003046 }
Daniel Dunbar2efd5382008-09-30 01:06:03 +00003047
John McCall2dd7d442010-08-04 05:59:32 +00003048 // Allocate memory for the setjmp buffer. This needs to be kept
3049 // live throughout the try and catch blocks.
3050 llvm::Value *ExceptionData = CGF.CreateTempAlloca(ObjCTypes.ExceptionDataTy,
3051 "exceptiondata.ptr");
3052
John McCall42227ed2010-07-31 23:20:56 +00003053 // Create the fragile hazards. Note that this will not capture any
3054 // of the allocas required for exception processing, but will
3055 // capture the current basic block (which extends all the way to the
3056 // setjmp call) as "before the @try".
3057 FragileHazards Hazards(CGF);
3058
John McCallbd309292010-07-06 01:34:17 +00003059 // Create a flag indicating whether the cleanup needs to call
3060 // objc_exception_try_exit. This is true except when
3061 // - no catches match and we're branching through the cleanup
3062 // just to rethrow the exception, or
3063 // - a catch matched and we're falling out of the catch handler.
John McCall2dd7d442010-08-04 05:59:32 +00003064 // The setjmp-safety rule here is that we should always store to this
3065 // variable in a place that dominates the branch through the cleanup
3066 // without passing through any setjmps.
John McCallbd309292010-07-06 01:34:17 +00003067 llvm::Value *CallTryExitVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(),
Anders Carlssonda0e4562009-02-07 21:26:04 +00003068 "_call_try_exit");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003069
John McCall9916e3f2010-10-04 23:42:51 +00003070 // A slot containing the exception to rethrow. Only needed when we
3071 // have both a @catch and a @finally.
3072 llvm::Value *PropagatingExnVar = 0;
3073
John McCallbd309292010-07-06 01:34:17 +00003074 // Push a normal cleanup to leave the try scope.
John McCallcda666c2010-07-21 07:22:38 +00003075 CGF.EHStack.pushCleanup<PerformFragileFinally>(NormalCleanup, &S,
John McCall2dd7d442010-08-04 05:59:32 +00003076 SyncArgSlot,
John McCallcda666c2010-07-21 07:22:38 +00003077 CallTryExitVar,
3078 ExceptionData,
3079 &ObjCTypes);
John McCallbd309292010-07-06 01:34:17 +00003080
3081 // Enter a try block:
3082 // - Call objc_exception_try_enter to push ExceptionData on top of
3083 // the EH stack.
3084 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData)
3085 ->setDoesNotThrow();
3086
3087 // - Call setjmp on the exception data buffer.
3088 llvm::Constant *Zero = llvm::ConstantInt::get(CGF.Builder.getInt32Ty(), 0);
3089 llvm::Value *GEPIndexes[] = { Zero, Zero, Zero };
3090 llvm::Value *SetJmpBuffer =
Jay Foad040dd822011-07-22 08:16:57 +00003091 CGF.Builder.CreateGEP(ExceptionData, GEPIndexes, "setjmp_buffer");
John McCallbd309292010-07-06 01:34:17 +00003092 llvm::CallInst *SetJmpResult =
3093 CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer, "setjmp_result");
3094 SetJmpResult->setDoesNotThrow();
Bill Wendlingbd26cf92011-12-19 23:53:28 +00003095 SetJmpResult->setCanReturnTwice();
John McCallbd309292010-07-06 01:34:17 +00003096
3097 // If setjmp returned 0, enter the protected block; otherwise,
3098 // branch to the handler.
Daniel Dunbar75283ff2008-11-11 02:29:29 +00003099 llvm::BasicBlock *TryBlock = CGF.createBasicBlock("try");
3100 llvm::BasicBlock *TryHandler = CGF.createBasicBlock("try.handler");
John McCallbd309292010-07-06 01:34:17 +00003101 llvm::Value *DidCatch =
John McCallcebe0ca2010-08-11 00:16:14 +00003102 CGF.Builder.CreateIsNotNull(SetJmpResult, "did_catch_exception");
3103 CGF.Builder.CreateCondBr(DidCatch, TryHandler, TryBlock);
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003104
John McCallbd309292010-07-06 01:34:17 +00003105 // Emit the protected block.
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003106 CGF.EmitBlock(TryBlock);
John McCall2dd7d442010-08-04 05:59:32 +00003107 CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003108 CGF.EmitStmt(isTry ? cast<ObjCAtTryStmt>(S).getTryBody()
John McCallbd309292010-07-06 01:34:17 +00003109 : cast<ObjCAtSynchronizedStmt>(S).getSynchBody());
John McCall2dd7d442010-08-04 05:59:32 +00003110
3111 CGBuilderTy::InsertPoint TryFallthroughIP = CGF.Builder.saveAndClearIP();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003112
John McCallbd309292010-07-06 01:34:17 +00003113 // Emit the exception handler block.
Daniel Dunbar7f086782008-09-27 23:30:04 +00003114 CGF.EmitBlock(TryHandler);
Daniel Dunbarb22ff592008-09-27 07:03:52 +00003115
John McCall42227ed2010-07-31 23:20:56 +00003116 // Don't optimize loads of the in-scope locals across this point.
3117 Hazards.emitWriteHazard();
3118
John McCallbd309292010-07-06 01:34:17 +00003119 // For a @synchronized (or a @try with no catches), just branch
3120 // through the cleanup to the rethrow block.
3121 if (!isTry || !cast<ObjCAtTryStmt>(S).getNumCatchStmts()) {
3122 // Tell the cleanup not to re-pop the exit.
John McCall2dd7d442010-08-04 05:59:32 +00003123 CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar);
Anders Carlssonbfee7e92009-02-09 20:38:58 +00003124 CGF.EmitBranchThroughCleanup(FinallyRethrow);
John McCallbd309292010-07-06 01:34:17 +00003125
3126 // Otherwise, we have to match against the caught exceptions.
3127 } else {
John McCall2dd7d442010-08-04 05:59:32 +00003128 // Retrieve the exception object. We may emit multiple blocks but
3129 // nothing can cross this so the value is already in SSA form.
3130 llvm::CallInst *Caught =
3131 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3132 ExceptionData, "caught");
3133 Caught->setDoesNotThrow();
3134
John McCallbd309292010-07-06 01:34:17 +00003135 // Push the exception to rethrow onto the EH value stack for the
3136 // benefit of any @throws in the handlers.
3137 CGF.ObjCEHValueStack.push_back(Caught);
3138
Douglas Gregor96c79492010-04-23 22:50:49 +00003139 const ObjCAtTryStmt* AtTryStmt = cast<ObjCAtTryStmt>(&S);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003140
John McCall2dd7d442010-08-04 05:59:32 +00003141 bool HasFinally = (AtTryStmt->getFinallyStmt() != 0);
John McCallbd309292010-07-06 01:34:17 +00003142
John McCall2dd7d442010-08-04 05:59:32 +00003143 llvm::BasicBlock *CatchBlock = 0;
3144 llvm::BasicBlock *CatchHandler = 0;
3145 if (HasFinally) {
John McCall9916e3f2010-10-04 23:42:51 +00003146 // Save the currently-propagating exception before
3147 // objc_exception_try_enter clears the exception slot.
3148 PropagatingExnVar = CGF.CreateTempAlloca(Caught->getType(),
3149 "propagating_exception");
3150 CGF.Builder.CreateStore(Caught, PropagatingExnVar);
3151
John McCall2dd7d442010-08-04 05:59:32 +00003152 // Enter a new exception try block (in case a @catch block
3153 // throws an exception).
3154 CGF.Builder.CreateCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData)
3155 ->setDoesNotThrow();
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003156
John McCall2dd7d442010-08-04 05:59:32 +00003157 llvm::CallInst *SetJmpResult =
3158 CGF.Builder.CreateCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer,
3159 "setjmp.result");
3160 SetJmpResult->setDoesNotThrow();
Bill Wendlingbd26cf92011-12-19 23:53:28 +00003161 SetJmpResult->setCanReturnTwice();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003162
John McCall2dd7d442010-08-04 05:59:32 +00003163 llvm::Value *Threw =
3164 CGF.Builder.CreateIsNotNull(SetJmpResult, "did_catch_exception");
3165
3166 CatchBlock = CGF.createBasicBlock("catch");
3167 CatchHandler = CGF.createBasicBlock("catch_for_catch");
3168 CGF.Builder.CreateCondBr(Threw, CatchHandler, CatchBlock);
3169
3170 CGF.EmitBlock(CatchBlock);
3171 }
3172
3173 CGF.Builder.CreateStore(CGF.Builder.getInt1(HasFinally), CallTryExitVar);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003174
Daniel Dunbarb22ff592008-09-27 07:03:52 +00003175 // Handle catch list. As a special case we check if everything is
3176 // matched and avoid generating code for falling off the end if
3177 // so.
3178 bool AllMatched = false;
Douglas Gregor96c79492010-04-23 22:50:49 +00003179 for (unsigned I = 0, N = AtTryStmt->getNumCatchStmts(); I != N; ++I) {
3180 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I);
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003181
Douglas Gregor46a572b2010-04-26 16:46:50 +00003182 const VarDecl *CatchParam = CatchStmt->getCatchParamDecl();
Steve Naroff7cae42b2009-07-10 23:34:53 +00003183 const ObjCObjectPointerType *OPT = 0;
Daniel Dunbar523208f2008-09-27 07:36:24 +00003184
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003185 // catch(...) always matches.
Daniel Dunbarb22ff592008-09-27 07:03:52 +00003186 if (!CatchParam) {
3187 AllMatched = true;
3188 } else {
John McCall9dd450b2009-09-21 23:43:11 +00003189 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003190
John McCallbd309292010-07-06 01:34:17 +00003191 // catch(id e) always matches under this ABI, since only
3192 // ObjC exceptions end up here in the first place.
Daniel Dunbar86919f42008-09-27 22:21:14 +00003193 // FIXME: For the time being we also match id<X>; this should
3194 // be rejected by Sema instead.
Eli Friedman55179ca2009-07-11 00:57:02 +00003195 if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType()))
Daniel Dunbarb22ff592008-09-27 07:03:52 +00003196 AllMatched = true;
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003197 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003198
John McCallbd309292010-07-06 01:34:17 +00003199 // If this is a catch-all, we don't need to test anything.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003200 if (AllMatched) {
John McCallbd309292010-07-06 01:34:17 +00003201 CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF);
3202
Anders Carlsson9396a892008-09-11 09:15:33 +00003203 if (CatchParam) {
John McCall1c9c3fd2010-10-15 04:57:14 +00003204 CGF.EmitAutoVarDecl(*CatchParam);
Daniel Dunbar5c7e3932008-11-11 23:11:34 +00003205 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
John McCallbd309292010-07-06 01:34:17 +00003206
3207 // These types work out because ConvertType(id) == i8*.
Steve Naroff371b8fb2009-03-03 19:52:17 +00003208 CGF.Builder.CreateStore(Caught, CGF.GetAddrOfLocalVar(CatchParam));
Anders Carlsson9396a892008-09-11 09:15:33 +00003209 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003210
Anders Carlsson9396a892008-09-11 09:15:33 +00003211 CGF.EmitStmt(CatchStmt->getCatchBody());
John McCallbd309292010-07-06 01:34:17 +00003212
3213 // The scope of the catch variable ends right here.
3214 CatchVarCleanups.ForceCleanup();
3215
Anders Carlssonbfee7e92009-02-09 20:38:58 +00003216 CGF.EmitBranchThroughCleanup(FinallyEnd);
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003217 break;
3218 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003219
Steve Naroff7cae42b2009-07-10 23:34:53 +00003220 assert(OPT && "Unexpected non-object pointer type in @catch");
John McCall96fa4842010-05-17 21:00:27 +00003221 const ObjCObjectType *ObjTy = OPT->getObjectType();
John McCallbd309292010-07-06 01:34:17 +00003222
3223 // FIXME: @catch (Class c) ?
John McCall96fa4842010-05-17 21:00:27 +00003224 ObjCInterfaceDecl *IDecl = ObjTy->getInterface();
3225 assert(IDecl && "Catch parameter must have Objective-C type!");
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003226
3227 // Check if the @catch block matches the exception object.
John McCall96fa4842010-05-17 21:00:27 +00003228 llvm::Value *Class = EmitClassRef(CGF.Builder, IDecl);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003229
John McCallbd309292010-07-06 01:34:17 +00003230 llvm::CallInst *Match =
Chris Lattnerc6406db2009-04-22 02:26:14 +00003231 CGF.Builder.CreateCall2(ObjCTypes.getExceptionMatchFn(),
3232 Class, Caught, "match");
John McCallbd309292010-07-06 01:34:17 +00003233 Match->setDoesNotThrow();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003234
John McCallbd309292010-07-06 01:34:17 +00003235 llvm::BasicBlock *MatchedBlock = CGF.createBasicBlock("match");
3236 llvm::BasicBlock *NextCatchBlock = CGF.createBasicBlock("catch.next");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003237
3238 CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(Match, "matched"),
Daniel Dunbar7f086782008-09-27 23:30:04 +00003239 MatchedBlock, NextCatchBlock);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003240
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003241 // Emit the @catch block.
3242 CGF.EmitBlock(MatchedBlock);
John McCallbd309292010-07-06 01:34:17 +00003243
3244 // Collect any cleanups for the catch variable. The scope lasts until
3245 // the end of the catch body.
John McCall2dd7d442010-08-04 05:59:32 +00003246 CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF);
John McCallbd309292010-07-06 01:34:17 +00003247
John McCall1c9c3fd2010-10-15 04:57:14 +00003248 CGF.EmitAutoVarDecl(*CatchParam);
Daniel Dunbar5c7e3932008-11-11 23:11:34 +00003249 assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?");
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00003250
John McCallbd309292010-07-06 01:34:17 +00003251 // Initialize the catch variable.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003252 llvm::Value *Tmp =
3253 CGF.Builder.CreateBitCast(Caught,
Benjamin Kramer76399eb2011-09-27 21:06:10 +00003254 CGF.ConvertType(CatchParam->getType()));
Steve Naroff371b8fb2009-03-03 19:52:17 +00003255 CGF.Builder.CreateStore(Tmp, CGF.GetAddrOfLocalVar(CatchParam));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003256
Anders Carlsson9396a892008-09-11 09:15:33 +00003257 CGF.EmitStmt(CatchStmt->getCatchBody());
John McCallbd309292010-07-06 01:34:17 +00003258
3259 // We're done with the catch variable.
3260 CatchVarCleanups.ForceCleanup();
3261
Anders Carlssonbfee7e92009-02-09 20:38:58 +00003262 CGF.EmitBranchThroughCleanup(FinallyEnd);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003263
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003264 CGF.EmitBlock(NextCatchBlock);
3265 }
3266
John McCallbd309292010-07-06 01:34:17 +00003267 CGF.ObjCEHValueStack.pop_back();
3268
John McCall2dd7d442010-08-04 05:59:32 +00003269 // If nothing wanted anything to do with the caught exception,
3270 // kill the extract call.
3271 if (Caught->use_empty())
3272 Caught->eraseFromParent();
3273
3274 if (!AllMatched)
3275 CGF.EmitBranchThroughCleanup(FinallyRethrow);
3276
3277 if (HasFinally) {
3278 // Emit the exception handler for the @catch blocks.
3279 CGF.EmitBlock(CatchHandler);
3280
3281 // In theory we might now need a write hazard, but actually it's
3282 // unnecessary because there's no local-accessing code between
3283 // the try's write hazard and here.
3284 //Hazards.emitWriteHazard();
3285
John McCall9916e3f2010-10-04 23:42:51 +00003286 // Extract the new exception and save it to the
3287 // propagating-exception slot.
3288 assert(PropagatingExnVar);
3289 llvm::CallInst *NewCaught =
3290 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3291 ExceptionData, "caught");
3292 NewCaught->setDoesNotThrow();
3293 CGF.Builder.CreateStore(NewCaught, PropagatingExnVar);
3294
John McCall2dd7d442010-08-04 05:59:32 +00003295 // Don't pop the catch handler; the throw already did.
3296 CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar);
Anders Carlssonbfee7e92009-02-09 20:38:58 +00003297 CGF.EmitBranchThroughCleanup(FinallyRethrow);
Daniel Dunbarb22ff592008-09-27 07:03:52 +00003298 }
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003299 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003300
John McCall42227ed2010-07-31 23:20:56 +00003301 // Insert read hazards as required in the new blocks.
John McCall2dd7d442010-08-04 05:59:32 +00003302 Hazards.emitHazardsInNewBlocks();
John McCall42227ed2010-07-31 23:20:56 +00003303
John McCallbd309292010-07-06 01:34:17 +00003304 // Pop the cleanup.
John McCall2dd7d442010-08-04 05:59:32 +00003305 CGF.Builder.restoreIP(TryFallthroughIP);
3306 if (CGF.HaveInsertPoint())
3307 CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar);
John McCallbd309292010-07-06 01:34:17 +00003308 CGF.PopCleanupBlock();
John McCall2dd7d442010-08-04 05:59:32 +00003309 CGF.EmitBlock(FinallyEnd.getBlock(), true);
Anders Carlssonbfee7e92009-02-09 20:38:58 +00003310
John McCallbd309292010-07-06 01:34:17 +00003311 // Emit the rethrow block.
John McCall42227ed2010-07-31 23:20:56 +00003312 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
John McCallad5d61e2010-07-23 21:56:41 +00003313 CGF.EmitBlock(FinallyRethrow.getBlock(), true);
John McCallbd309292010-07-06 01:34:17 +00003314 if (CGF.HaveInsertPoint()) {
John McCall9916e3f2010-10-04 23:42:51 +00003315 // If we have a propagating-exception variable, check it.
3316 llvm::Value *PropagatingExn;
3317 if (PropagatingExnVar) {
3318 PropagatingExn = CGF.Builder.CreateLoad(PropagatingExnVar);
John McCall2dd7d442010-08-04 05:59:32 +00003319
John McCall9916e3f2010-10-04 23:42:51 +00003320 // Otherwise, just look in the buffer for the exception to throw.
3321 } else {
3322 llvm::CallInst *Caught =
3323 CGF.Builder.CreateCall(ObjCTypes.getExceptionExtractFn(),
3324 ExceptionData);
3325 Caught->setDoesNotThrow();
3326 PropagatingExn = Caught;
3327 }
3328
3329 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), PropagatingExn)
John McCallbd309292010-07-06 01:34:17 +00003330 ->setDoesNotThrow();
3331 CGF.Builder.CreateUnreachable();
Fariborz Jahaniane2caaaa2008-11-21 19:21:53 +00003332 }
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003333
John McCall42227ed2010-07-31 23:20:56 +00003334 CGF.Builder.restoreIP(SavedIP);
Anders Carlsson1963b0c2008-09-09 10:04:29 +00003335}
3336
3337void CGObjCMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2efd5382008-09-30 01:06:03 +00003338 const ObjCAtThrowStmt &S) {
Anders Carlssone005aa12008-09-09 16:16:55 +00003339 llvm::Value *ExceptionAsObject;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003340
Anders Carlssone005aa12008-09-09 16:16:55 +00003341 if (const Expr *ThrowExpr = S.getThrowExpr()) {
John McCall248512a2011-10-01 10:32:24 +00003342 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003343 ExceptionAsObject =
Benjamin Kramer76399eb2011-09-27 21:06:10 +00003344 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy);
Anders Carlssone005aa12008-09-09 16:16:55 +00003345 } else {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003346 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
Daniel Dunbard3dcb4f82008-09-28 01:03:14 +00003347 "Unexpected rethrow outside @catch block.");
Anders Carlssonbf8a1be2009-02-07 21:37:21 +00003348 ExceptionAsObject = CGF.ObjCEHValueStack.back();
Anders Carlssone005aa12008-09-09 16:16:55 +00003349 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003350
John McCallbd309292010-07-06 01:34:17 +00003351 CGF.Builder.CreateCall(ObjCTypes.getExceptionThrowFn(), ExceptionAsObject)
3352 ->setDoesNotReturn();
Anders Carlsson4f1c7c32008-09-09 17:59:25 +00003353 CGF.Builder.CreateUnreachable();
Daniel Dunbar5c7e3932008-11-11 23:11:34 +00003354
3355 // Clear the insertion point to indicate we are in unreachable code.
3356 CGF.Builder.ClearInsertionPoint();
Anders Carlsson1963b0c2008-09-09 10:04:29 +00003357}
3358
Fariborz Jahanian83f45b552008-11-18 22:37:34 +00003359/// EmitObjCWeakRead - Code gen for loading value of a __weak
Fariborz Jahanianf5125d12008-11-18 21:45:40 +00003360/// object: objc_read_weak (id *src)
3361///
Fariborz Jahanian83f45b552008-11-18 22:37:34 +00003362llvm::Value * CGObjCMac::EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
Mike Stump11289f42009-09-09 15:08:12 +00003363 llvm::Value *AddrWeakObj) {
Chris Lattner2192fe52011-07-18 04:24:23 +00003364 llvm::Type* DestTy =
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003365 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
3366 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj,
3367 ObjCTypes.PtrObjectPtrTy);
Chris Lattnerce8754e2009-04-22 02:44:54 +00003368 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian83f45b552008-11-18 22:37:34 +00003369 AddrWeakObj, "weakread");
Eli Friedmana374b682009-03-07 03:57:15 +00003370 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanianf5125d12008-11-18 21:45:40 +00003371 return read_weak;
3372}
3373
Fariborz Jahanian83f45b552008-11-18 22:37:34 +00003374/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
3375/// objc_assign_weak (id src, id *dst)
3376///
3377void CGObjCMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump11289f42009-09-09 15:08:12 +00003378 llvm::Value *src, llvm::Value *dst) {
Chris Lattner2192fe52011-07-18 04:24:23 +00003379 llvm::Type * SrcTy = src->getType();
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00003380 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00003381 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00003382 assert(Size <= 8 && "does not support size > 8");
3383 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003384 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian1b074a32009-03-13 00:42:52 +00003385 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3386 }
Fariborz Jahanian50a12702008-11-19 17:34:06 +00003387 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3388 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner6fdd57c2009-04-17 22:12:36 +00003389 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian83f45b552008-11-18 22:37:34 +00003390 src, dst, "weakassign");
3391 return;
3392}
3393
Fariborz Jahaniand7db9642008-11-19 00:59:10 +00003394/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
3395/// objc_assign_global (id src, id *dst)
3396///
3397void CGObjCMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian217af242010-07-20 20:30:03 +00003398 llvm::Value *src, llvm::Value *dst,
3399 bool threadlocal) {
Chris Lattner2192fe52011-07-18 04:24:23 +00003400 llvm::Type * SrcTy = src->getType();
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00003401 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00003402 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00003403 assert(Size <= 8 && "does not support size > 8");
3404 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003405 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian1b074a32009-03-13 00:42:52 +00003406 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3407 }
Fariborz Jahanian50a12702008-11-19 17:34:06 +00003408 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3409 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian217af242010-07-20 20:30:03 +00003410 if (!threadlocal)
3411 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
3412 src, dst, "globalassign");
3413 else
3414 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignThreadLocalFn(),
3415 src, dst, "threadlocalassign");
Fariborz Jahaniand7db9642008-11-19 00:59:10 +00003416 return;
3417}
3418
Fariborz Jahaniane881b532008-11-20 19:23:36 +00003419/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00003420/// objc_assign_ivar (id src, id *dst, ptrdiff_t ivaroffset)
Fariborz Jahaniane881b532008-11-20 19:23:36 +00003421///
3422void CGObjCMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00003423 llvm::Value *src, llvm::Value *dst,
3424 llvm::Value *ivarOffset) {
3425 assert(ivarOffset && "EmitObjCIvarAssign - ivarOffset is NULL");
Chris Lattner2192fe52011-07-18 04:24:23 +00003426 llvm::Type * SrcTy = src->getType();
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00003427 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00003428 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00003429 assert(Size <= 8 && "does not support size > 8");
3430 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003431 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian1b074a32009-03-13 00:42:52 +00003432 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3433 }
Fariborz Jahaniane881b532008-11-20 19:23:36 +00003434 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3435 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00003436 CGF.Builder.CreateCall3(ObjCTypes.getGcAssignIvarFn(),
3437 src, dst, ivarOffset);
Fariborz Jahaniane881b532008-11-20 19:23:36 +00003438 return;
3439}
3440
Fariborz Jahaniand7db9642008-11-19 00:59:10 +00003441/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
3442/// objc_assign_strongCast (id src, id *dst)
3443///
3444void CGObjCMac::EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump11289f42009-09-09 15:08:12 +00003445 llvm::Value *src, llvm::Value *dst) {
Chris Lattner2192fe52011-07-18 04:24:23 +00003446 llvm::Type * SrcTy = src->getType();
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00003447 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00003448 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00003449 assert(Size <= 8 && "does not support size > 8");
3450 src = (Size == 4) ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003451 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongLongTy);
Fariborz Jahanian1b074a32009-03-13 00:42:52 +00003452 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
3453 }
Fariborz Jahanian50a12702008-11-19 17:34:06 +00003454 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
3455 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner0a696a422009-04-22 02:38:11 +00003456 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahaniand7db9642008-11-19 00:59:10 +00003457 src, dst, "weakassign");
3458 return;
3459}
3460
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +00003461void CGObjCMac::EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003462 llvm::Value *DestPtr,
3463 llvm::Value *SrcPtr,
Fariborz Jahanian021510e2010-06-15 22:44:06 +00003464 llvm::Value *size) {
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +00003465 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy);
3466 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +00003467 CGF.Builder.CreateCall3(ObjCTypes.GcMemmoveCollectableFn(),
Fariborz Jahanian021510e2010-06-15 22:44:06 +00003468 DestPtr, SrcPtr, size);
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +00003469 return;
3470}
3471
Fariborz Jahanian9f84b782009-02-02 20:02:29 +00003472/// EmitObjCValueForIvar - Code Gen for ivar reference.
3473///
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00003474LValue CGObjCMac::EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
3475 QualType ObjectTy,
3476 llvm::Value *BaseValue,
3477 const ObjCIvarDecl *Ivar,
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00003478 unsigned CVRQualifiers) {
John McCall8b07ec22010-05-15 11:32:37 +00003479 const ObjCInterfaceDecl *ID =
3480 ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar9fd114d2009-04-22 07:32:20 +00003481 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
3482 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian9f84b782009-02-02 20:02:29 +00003483}
3484
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00003485llvm::Value *CGObjCMac::EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar722f4242009-04-22 05:08:15 +00003486 const ObjCInterfaceDecl *Interface,
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00003487 const ObjCIvarDecl *Ivar) {
Daniel Dunbar9fd114d2009-04-22 07:32:20 +00003488 uint64_t Offset = ComputeIvarBaseOffset(CGM, Interface, Ivar);
Owen Andersonb7a2fe62009-07-24 23:12:58 +00003489 return llvm::ConstantInt::get(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003490 CGM.getTypes().ConvertType(CGM.getContext().LongTy),
3491 Offset);
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00003492}
3493
Daniel Dunbar3ad53482008-08-11 21:35:06 +00003494/* *** Private Interface *** */
3495
3496/// EmitImageInfo - Emit the image info marker used to encode some module
3497/// level information.
3498///
3499/// See: <rdr://4810609&4810587&4810587>
3500/// struct IMAGE_INFO {
3501/// unsigned version;
3502/// unsigned flags;
3503/// };
3504enum ImageInfoFlags {
Daniel Dunbar5e639272010-04-25 20:39:01 +00003505 eImageInfo_FixAndContinue = (1 << 0),
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003506 eImageInfo_GarbageCollected = (1 << 1),
3507 eImageInfo_GCOnly = (1 << 2),
Daniel Dunbar75e909f2009-04-20 07:11:47 +00003508 eImageInfo_OptimizedByDyld = (1 << 3), // FIXME: When is this set.
3509
Daniel Dunbar5e639272010-04-25 20:39:01 +00003510 // A flag indicating that the module has no instances of a @synthesize of a
3511 // superclass variable. <rdar://problem/6803242>
Daniel Dunbar75e909f2009-04-20 07:11:47 +00003512 eImageInfo_CorrectedSynthesize = (1 << 4)
Daniel Dunbar3ad53482008-08-11 21:35:06 +00003513};
3514
Daniel Dunbar5e639272010-04-25 20:39:01 +00003515void CGObjCCommonMac::EmitImageInfo() {
Daniel Dunbar3ad53482008-08-11 21:35:06 +00003516 unsigned version = 0; // Version is unused?
3517 unsigned flags = 0;
3518
3519 // FIXME: Fix and continue?
Douglas Gregor79a91412011-09-13 17:21:33 +00003520 if (CGM.getLangOptions().getGC() != LangOptions::NonGC)
Daniel Dunbar3ad53482008-08-11 21:35:06 +00003521 flags |= eImageInfo_GarbageCollected;
Douglas Gregor79a91412011-09-13 17:21:33 +00003522 if (CGM.getLangOptions().getGC() == LangOptions::GCOnly)
Daniel Dunbar3ad53482008-08-11 21:35:06 +00003523 flags |= eImageInfo_GCOnly;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003524
Daniel Dunbar75e909f2009-04-20 07:11:47 +00003525 // We never allow @synthesize of a superclass property.
3526 flags |= eImageInfo_CorrectedSynthesize;
Daniel Dunbar3ad53482008-08-11 21:35:06 +00003527
Chris Lattner2192fe52011-07-18 04:24:23 +00003528 llvm::Type *Int32Ty = llvm::Type::getInt32Ty(VMContext);
Chris Lattner5e016ae2010-06-27 07:15:29 +00003529
Daniel Dunbar3ad53482008-08-11 21:35:06 +00003530 // Emitted as int[2];
3531 llvm::Constant *values[2] = {
Chris Lattner5e016ae2010-06-27 07:15:29 +00003532 llvm::ConstantInt::get(Int32Ty, version),
3533 llvm::ConstantInt::get(Int32Ty, flags)
Daniel Dunbar3ad53482008-08-11 21:35:06 +00003534 };
Chris Lattner5e016ae2010-06-27 07:15:29 +00003535 llvm::ArrayType *AT = llvm::ArrayType::get(Int32Ty, 2);
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00003536
3537 const char *Section;
3538 if (ObjCABI == 1)
3539 Section = "__OBJC, __image_info,regular";
3540 else
3541 Section = "__DATA, __objc_imageinfo, regular, no_dead_strip";
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003542 llvm::GlobalVariable *GV =
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00003543 CreateMetadataVar("\01L_OBJC_IMAGE_INFO",
Jay Foad83be3612011-06-22 09:24:39 +00003544 llvm::ConstantArray::get(AT, values),
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00003545 Section,
3546 0,
3547 true);
3548 GV->setConstant(true);
Daniel Dunbar3ad53482008-08-11 21:35:06 +00003549}
3550
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00003551
3552// struct objc_module {
3553// unsigned long version;
3554// unsigned long size;
3555// const char *name;
3556// Symtab symtab;
3557// };
3558
3559// FIXME: Get from somewhere
3560static const int ModuleVersion = 7;
3561
3562void CGObjCMac::EmitModuleInfo() {
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00003563 uint64_t Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.ModuleTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003564
Benjamin Kramer22d24c22011-10-15 12:20:02 +00003565 llvm::Constant *Values[] = {
3566 llvm::ConstantInt::get(ObjCTypes.LongTy, ModuleVersion),
3567 llvm::ConstantInt::get(ObjCTypes.LongTy, Size),
3568 // This used to be the filename, now it is unused. <rdr://4327263>
3569 GetClassName(&CGM.getContext().Idents.get("")),
3570 EmitModuleSymbols()
3571 };
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003572 CreateMetadataVar("\01L_OBJC_MODULES",
Owen Anderson0e0189d2009-07-27 22:29:56 +00003573 llvm::ConstantStruct::get(ObjCTypes.ModuleTy, Values),
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00003574 "__OBJC,__module_info,regular,no_dead_strip",
Daniel Dunbarae333842009-03-09 22:18:41 +00003575 4, true);
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00003576}
3577
3578llvm::Constant *CGObjCMac::EmitModuleSymbols() {
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00003579 unsigned NumClasses = DefinedClasses.size();
3580 unsigned NumCategories = DefinedCategories.size();
3581
Daniel Dunbarc61d0e92008-08-25 06:02:07 +00003582 // Return null if no symbols were defined.
3583 if (!NumClasses && !NumCategories)
Owen Anderson0b75f232009-07-31 20:28:54 +00003584 return llvm::Constant::getNullValue(ObjCTypes.SymtabPtrTy);
Daniel Dunbarc61d0e92008-08-25 06:02:07 +00003585
Chris Lattnere64d7ba2011-06-20 04:01:35 +00003586 llvm::Constant *Values[5];
Owen Andersonb7a2fe62009-07-24 23:12:58 +00003587 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
Owen Anderson0b75f232009-07-31 20:28:54 +00003588 Values[1] = llvm::Constant::getNullValue(ObjCTypes.SelectorPtrTy);
Owen Andersonb7a2fe62009-07-24 23:12:58 +00003589 Values[2] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumClasses);
3590 Values[3] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumCategories);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00003591
Daniel Dunbar938a77f2008-08-22 20:34:54 +00003592 // The runtime expects exactly the list of defined classes followed
3593 // by the list of defined categories, in a single array.
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00003594 std::vector<llvm::Constant*> Symbols(NumClasses + NumCategories);
Daniel Dunbar938a77f2008-08-22 20:34:54 +00003595 for (unsigned i=0; i<NumClasses; i++)
Owen Andersonade90fd2009-07-29 18:54:39 +00003596 Symbols[i] = llvm::ConstantExpr::getBitCast(DefinedClasses[i],
Daniel Dunbar938a77f2008-08-22 20:34:54 +00003597 ObjCTypes.Int8PtrTy);
3598 for (unsigned i=0; i<NumCategories; i++)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003599 Symbols[NumClasses + i] =
Owen Andersonade90fd2009-07-29 18:54:39 +00003600 llvm::ConstantExpr::getBitCast(DefinedCategories[i],
Daniel Dunbar938a77f2008-08-22 20:34:54 +00003601 ObjCTypes.Int8PtrTy);
3602
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003603 Values[4] =
Owen Anderson9793f0e2009-07-29 22:16:19 +00003604 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00003605 NumClasses + NumCategories),
3606 Symbols);
3607
Chris Lattnere64d7ba2011-06-20 04:01:35 +00003608 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00003609
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00003610 llvm::GlobalVariable *GV =
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00003611 CreateMetadataVar("\01L_OBJC_SYMBOLS", Init,
3612 "__OBJC,__symbols,regular,no_dead_strip",
Daniel Dunbarb25452a2009-04-15 02:56:18 +00003613 4, true);
Owen Andersonade90fd2009-07-29 18:54:39 +00003614 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.SymtabPtrTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00003615}
3616
John McCall31168b02011-06-15 23:02:42 +00003617llvm::Value *CGObjCMac::EmitClassRefFromId(CGBuilderTy &Builder,
3618 IdentifierInfo *II) {
3619 LazySymbols.insert(II);
3620
3621 llvm::GlobalVariable *&Entry = ClassReferences[II];
3622
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00003623 if (!Entry) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003624 llvm::Constant *Casted =
John McCall31168b02011-06-15 23:02:42 +00003625 llvm::ConstantExpr::getBitCast(GetClassName(II),
3626 ObjCTypes.ClassPtrTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003627 Entry =
John McCall31168b02011-06-15 23:02:42 +00003628 CreateMetadataVar("\01L_OBJC_CLASS_REFERENCES_", Casted,
3629 "__OBJC,__cls_refs,literal_pointers,no_dead_strip",
3630 4, true);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00003631 }
John McCall31168b02011-06-15 23:02:42 +00003632
Benjamin Kramer76399eb2011-09-27 21:06:10 +00003633 return Builder.CreateLoad(Entry);
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00003634}
3635
John McCall31168b02011-06-15 23:02:42 +00003636llvm::Value *CGObjCMac::EmitClassRef(CGBuilderTy &Builder,
3637 const ObjCInterfaceDecl *ID) {
3638 return EmitClassRefFromId(Builder, ID->getIdentifier());
3639}
3640
3641llvm::Value *CGObjCMac::EmitNSAutoreleasePoolClassRef(CGBuilderTy &Builder) {
3642 IdentifierInfo *II = &CGM.getContext().Idents.get("NSAutoreleasePool");
3643 return EmitClassRefFromId(Builder, II);
3644}
3645
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00003646llvm::Value *CGObjCMac::EmitSelector(CGBuilderTy &Builder, Selector Sel,
3647 bool lvalue) {
Daniel Dunbarcb515c82008-08-12 03:39:23 +00003648 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003649
Daniel Dunbarcb515c82008-08-12 03:39:23 +00003650 if (!Entry) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003651 llvm::Constant *Casted =
Owen Andersonade90fd2009-07-29 18:54:39 +00003652 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
Daniel Dunbarcb515c82008-08-12 03:39:23 +00003653 ObjCTypes.SelectorPtrTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003654 Entry =
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00003655 CreateMetadataVar("\01L_OBJC_SELECTOR_REFERENCES_", Casted,
3656 "__OBJC,__message_refs,literal_pointers,no_dead_strip",
Daniel Dunbarb25452a2009-04-15 02:56:18 +00003657 4, true);
Daniel Dunbarcb515c82008-08-12 03:39:23 +00003658 }
3659
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00003660 if (lvalue)
3661 return Entry;
Benjamin Kramer76399eb2011-09-27 21:06:10 +00003662 return Builder.CreateLoad(Entry);
Daniel Dunbarcb515c82008-08-12 03:39:23 +00003663}
3664
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00003665llvm::Constant *CGObjCCommonMac::GetClassName(IdentifierInfo *Ident) {
Daniel Dunbarb036db82008-08-13 03:21:16 +00003666 llvm::GlobalVariable *&Entry = ClassNames[Ident];
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00003667
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00003668 if (!Entry)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003669 Entry = CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00003670 llvm::ConstantArray::get(VMContext,
3671 Ident->getNameStart()),
Daniel Dunbar7c9295a2011-03-25 20:09:09 +00003672 ((ObjCABI == 2) ?
3673 "__TEXT,__objc_classname,cstring_literals" :
3674 "__TEXT,__cstring,cstring_literals"),
Daniel Dunbar3241fae2009-04-14 23:14:47 +00003675 1, true);
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00003676
Owen Anderson170229f2009-07-14 23:10:40 +00003677 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00003678}
3679
Argyrios Kyrtzidis13257c52010-08-09 10:54:20 +00003680llvm::Function *CGObjCCommonMac::GetMethodDefinition(const ObjCMethodDecl *MD) {
3681 llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*>::iterator
3682 I = MethodDefinitions.find(MD);
3683 if (I != MethodDefinitions.end())
3684 return I->second;
3685
Argyrios Kyrtzidis13257c52010-08-09 10:54:20 +00003686 return NULL;
3687}
3688
Fariborz Jahanian01dff422009-03-05 19:17:31 +00003689/// GetIvarLayoutName - Returns a unique constant for the given
3690/// ivar layout bitmap.
3691llvm::Constant *CGObjCCommonMac::GetIvarLayoutName(IdentifierInfo *Ident,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003692 const ObjCCommonTypesHelper &ObjCTypes) {
Owen Anderson0b75f232009-07-31 20:28:54 +00003693 return llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Fariborz Jahanian01dff422009-03-05 19:17:31 +00003694}
3695
Daniel Dunbar15bd8882009-05-03 14:10:34 +00003696void CGObjCCommonMac::BuildAggrIvarRecordLayout(const RecordType *RT,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003697 unsigned int BytePos,
Daniel Dunbar15bd8882009-05-03 14:10:34 +00003698 bool ForStrongLayout,
3699 bool &HasUnion) {
3700 const RecordDecl *RD = RT->getDecl();
3701 // FIXME - Use iterator.
Jordy Rosea91768e2011-07-22 02:08:32 +00003702 SmallVector<const FieldDecl*, 16> Fields(RD->field_begin(), RD->field_end());
Chris Lattner2192fe52011-07-18 04:24:23 +00003703 llvm::Type *Ty = CGM.getTypes().ConvertType(QualType(RT, 0));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003704 const llvm::StructLayout *RecLayout =
Daniel Dunbar15bd8882009-05-03 14:10:34 +00003705 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(Ty));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003706
Daniel Dunbar15bd8882009-05-03 14:10:34 +00003707 BuildAggrIvarLayout(0, RecLayout, RD, Fields, BytePos,
3708 ForStrongLayout, HasUnion);
3709}
3710
Daniel Dunbar36e2a1e2009-05-03 21:05:10 +00003711void CGObjCCommonMac::BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003712 const llvm::StructLayout *Layout,
3713 const RecordDecl *RD,
Jordy Rosea91768e2011-07-22 02:08:32 +00003714 const SmallVectorImpl<const FieldDecl*> &RecFields,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003715 unsigned int BytePos, bool ForStrongLayout,
3716 bool &HasUnion) {
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003717 bool IsUnion = (RD && RD->isUnion());
3718 uint64_t MaxUnionIvarSize = 0;
3719 uint64_t MaxSkippedUnionIvarSize = 0;
Jordy Rosea91768e2011-07-22 02:08:32 +00003720 const FieldDecl *MaxField = 0;
3721 const FieldDecl *MaxSkippedField = 0;
3722 const FieldDecl *LastFieldBitfieldOrUnnamed = 0;
Daniel Dunbar5b743912009-05-03 23:31:46 +00003723 uint64_t MaxFieldOffset = 0;
3724 uint64_t MaxSkippedFieldOffset = 0;
Argyrios Kyrtzidis2fdb5b52010-09-06 12:00:10 +00003725 uint64_t LastBitfieldOrUnnamedOffset = 0;
John McCall31168b02011-06-15 23:02:42 +00003726 uint64_t FirstFieldDelta = 0;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003727
Fariborz Jahanian524bb202009-03-10 16:22:08 +00003728 if (RecFields.empty())
3729 return;
Douglas Gregore8bbc122011-09-02 00:18:52 +00003730 unsigned WordSizeInBits = CGM.getContext().getTargetInfo().getPointerWidth(0);
3731 unsigned ByteSizeInBits = CGM.getContext().getTargetInfo().getCharWidth();
John McCall31168b02011-06-15 23:02:42 +00003732 if (!RD && CGM.getLangOptions().ObjCAutoRefCount) {
Jordy Rosea91768e2011-07-22 02:08:32 +00003733 const FieldDecl *FirstField = RecFields[0];
John McCall31168b02011-06-15 23:02:42 +00003734 FirstFieldDelta =
3735 ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(FirstField));
3736 }
3737
Chris Lattner5b36ddb2009-03-31 08:48:01 +00003738 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
Jordy Rosea91768e2011-07-22 02:08:32 +00003739 const FieldDecl *Field = RecFields[i];
Daniel Dunbar62b10702009-05-03 23:35:23 +00003740 uint64_t FieldOffset;
Anders Carlssone2c6baf2009-07-24 17:23:54 +00003741 if (RD) {
Daniel Dunbard51c1a62010-04-14 17:02:21 +00003742 // Note that 'i' here is actually the field index inside RD of Field,
3743 // although this dependency is hidden.
3744 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
John McCall31168b02011-06-15 23:02:42 +00003745 FieldOffset = (RL.getFieldOffset(i) / ByteSizeInBits) - FirstFieldDelta;
Anders Carlssone2c6baf2009-07-24 17:23:54 +00003746 } else
John McCall31168b02011-06-15 23:02:42 +00003747 FieldOffset =
3748 ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(Field)) - FirstFieldDelta;
Daniel Dunbar94f46dc2009-05-03 14:17:18 +00003749
Fariborz Jahanian524bb202009-03-10 16:22:08 +00003750 // Skip over unnamed or bitfields
Fariborz Jahanianf5fec022009-04-21 18:33:06 +00003751 if (!Field->getIdentifier() || Field->isBitField()) {
Argyrios Kyrtzidis2fdb5b52010-09-06 12:00:10 +00003752 LastFieldBitfieldOrUnnamed = Field;
3753 LastBitfieldOrUnnamedOffset = FieldOffset;
Fariborz Jahanian524bb202009-03-10 16:22:08 +00003754 continue;
Fariborz Jahanianf5fec022009-04-21 18:33:06 +00003755 }
Daniel Dunbar94f46dc2009-05-03 14:17:18 +00003756
Argyrios Kyrtzidis2fdb5b52010-09-06 12:00:10 +00003757 LastFieldBitfieldOrUnnamed = 0;
Fariborz Jahanian524bb202009-03-10 16:22:08 +00003758 QualType FQT = Field->getType();
Fariborz Jahanianf909f922009-03-25 22:36:49 +00003759 if (FQT->isRecordType() || FQT->isUnionType()) {
Fariborz Jahanian524bb202009-03-10 16:22:08 +00003760 if (FQT->isUnionType())
3761 HasUnion = true;
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003762
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003763 BuildAggrIvarRecordLayout(FQT->getAs<RecordType>(),
Daniel Dunbar94f46dc2009-05-03 14:17:18 +00003764 BytePos + FieldOffset,
Daniel Dunbar15bd8882009-05-03 14:10:34 +00003765 ForStrongLayout, HasUnion);
Fariborz Jahanian524bb202009-03-10 16:22:08 +00003766 continue;
3767 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003768
Chris Lattner5b36ddb2009-03-31 08:48:01 +00003769 if (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003770 const ConstantArrayType *CArray =
Daniel Dunbar7abf83c2009-05-03 13:55:09 +00003771 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanianf5fec022009-04-21 18:33:06 +00003772 uint64_t ElCount = CArray->getSize().getZExtValue();
Daniel Dunbar7abf83c2009-05-03 13:55:09 +00003773 assert(CArray && "only array with known element size is supported");
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003774 FQT = CArray->getElementType();
Fariborz Jahanianf909f922009-03-25 22:36:49 +00003775 while (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) {
3776 const ConstantArrayType *CArray =
Daniel Dunbar7abf83c2009-05-03 13:55:09 +00003777 dyn_cast_or_null<ConstantArrayType>(Array);
Fariborz Jahanianf5fec022009-04-21 18:33:06 +00003778 ElCount *= CArray->getSize().getZExtValue();
Fariborz Jahanianf909f922009-03-25 22:36:49 +00003779 FQT = CArray->getElementType();
3780 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003781
3782 assert(!FQT->isUnionType() &&
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003783 "layout for array of unions not supported");
Fariborz Jahanian9a7d57d2011-01-03 19:23:18 +00003784 if (FQT->isRecordType() && ElCount) {
Fariborz Jahaniana123b642009-04-24 16:17:09 +00003785 int OldIndex = IvarsInfo.size() - 1;
3786 int OldSkIndex = SkipIvars.size() -1;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003787
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003788 const RecordType *RT = FQT->getAs<RecordType>();
Daniel Dunbar94f46dc2009-05-03 14:17:18 +00003789 BuildAggrIvarRecordLayout(RT, BytePos + FieldOffset,
Daniel Dunbar15bd8882009-05-03 14:10:34 +00003790 ForStrongLayout, HasUnion);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003791
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003792 // Replicate layout information for each array element. Note that
3793 // one element is already done.
3794 uint64_t ElIx = 1;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003795 for (int FirstIndex = IvarsInfo.size() - 1,
3796 FirstSkIndex = SkipIvars.size() - 1 ;ElIx < ElCount; ElIx++) {
Fariborz Jahanian1bf72882009-03-12 22:50:49 +00003797 uint64_t Size = CGM.getContext().getTypeSize(RT)/ByteSizeInBits;
Daniel Dunbar7b89ace2009-05-03 13:44:42 +00003798 for (int i = OldIndex+1; i <= FirstIndex; ++i)
3799 IvarsInfo.push_back(GC_IVAR(IvarsInfo[i].ivar_bytepos + Size*ElIx,
3800 IvarsInfo[i].ivar_size));
3801 for (int i = OldSkIndex+1; i <= FirstSkIndex; ++i)
3802 SkipIvars.push_back(GC_IVAR(SkipIvars[i].ivar_bytepos + Size*ElIx,
3803 SkipIvars[i].ivar_size));
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003804 }
3805 continue;
3806 }
Fariborz Jahanian524bb202009-03-10 16:22:08 +00003807 }
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003808 // At this point, we are done with Record/Union and array there of.
3809 // For other arrays we are down to its element type.
John McCall8ccfcb52009-09-24 19:53:00 +00003810 Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), FQT);
Daniel Dunbar7abf83c2009-05-03 13:55:09 +00003811
Daniel Dunbar7b89ace2009-05-03 13:44:42 +00003812 unsigned FieldSize = CGM.getContext().getTypeSize(Field->getType());
John McCall8ccfcb52009-09-24 19:53:00 +00003813 if ((ForStrongLayout && GCAttr == Qualifiers::Strong)
3814 || (!ForStrongLayout && GCAttr == Qualifiers::Weak)) {
Daniel Dunbar22007d32009-05-03 13:32:01 +00003815 if (IsUnion) {
Daniel Dunbar7b89ace2009-05-03 13:44:42 +00003816 uint64_t UnionIvarSize = FieldSize / WordSizeInBits;
Daniel Dunbar22007d32009-05-03 13:32:01 +00003817 if (UnionIvarSize > MaxUnionIvarSize) {
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003818 MaxUnionIvarSize = UnionIvarSize;
3819 MaxField = Field;
Daniel Dunbar5b743912009-05-03 23:31:46 +00003820 MaxFieldOffset = FieldOffset;
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003821 }
Daniel Dunbar22007d32009-05-03 13:32:01 +00003822 } else {
Daniel Dunbar94f46dc2009-05-03 14:17:18 +00003823 IvarsInfo.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar7b89ace2009-05-03 13:44:42 +00003824 FieldSize / WordSizeInBits));
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003825 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003826 } else if ((ForStrongLayout &&
John McCall8ccfcb52009-09-24 19:53:00 +00003827 (GCAttr == Qualifiers::GCNone || GCAttr == Qualifiers::Weak))
3828 || (!ForStrongLayout && GCAttr != Qualifiers::Weak)) {
Daniel Dunbar22007d32009-05-03 13:32:01 +00003829 if (IsUnion) {
Mike Stump18bb9282009-05-16 07:57:57 +00003830 // FIXME: Why the asymmetry? We divide by word size in bits on other
3831 // side.
Daniel Dunbar7b89ace2009-05-03 13:44:42 +00003832 uint64_t UnionIvarSize = FieldSize;
Daniel Dunbar22007d32009-05-03 13:32:01 +00003833 if (UnionIvarSize > MaxSkippedUnionIvarSize) {
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003834 MaxSkippedUnionIvarSize = UnionIvarSize;
3835 MaxSkippedField = Field;
Daniel Dunbar5b743912009-05-03 23:31:46 +00003836 MaxSkippedFieldOffset = FieldOffset;
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003837 }
Daniel Dunbar22007d32009-05-03 13:32:01 +00003838 } else {
Daniel Dunbar7b89ace2009-05-03 13:44:42 +00003839 // FIXME: Why the asymmetry, we divide by byte size in bits here?
Daniel Dunbar94f46dc2009-05-03 14:17:18 +00003840 SkipIvars.push_back(GC_IVAR(BytePos + FieldOffset,
Daniel Dunbar7b89ace2009-05-03 13:44:42 +00003841 FieldSize / ByteSizeInBits));
Fariborz Jahanian3b0f8862009-03-11 00:07:04 +00003842 }
3843 }
3844 }
Daniel Dunbar15bd8882009-05-03 14:10:34 +00003845
Argyrios Kyrtzidis2fdb5b52010-09-06 12:00:10 +00003846 if (LastFieldBitfieldOrUnnamed) {
3847 if (LastFieldBitfieldOrUnnamed->isBitField()) {
3848 // Last field was a bitfield. Must update skip info.
Richard Smithcaf33902011-10-10 18:28:20 +00003849 uint64_t BitFieldSize
3850 = LastFieldBitfieldOrUnnamed->getBitWidthValue(CGM.getContext());
Argyrios Kyrtzidis2fdb5b52010-09-06 12:00:10 +00003851 GC_IVAR skivar;
3852 skivar.ivar_bytepos = BytePos + LastBitfieldOrUnnamedOffset;
3853 skivar.ivar_size = (BitFieldSize / ByteSizeInBits)
3854 + ((BitFieldSize % ByteSizeInBits) != 0);
3855 SkipIvars.push_back(skivar);
3856 } else {
3857 assert(!LastFieldBitfieldOrUnnamed->getIdentifier() &&"Expected unnamed");
3858 // Last field was unnamed. Must update skip info.
3859 unsigned FieldSize
3860 = CGM.getContext().getTypeSize(LastFieldBitfieldOrUnnamed->getType());
3861 SkipIvars.push_back(GC_IVAR(BytePos + LastBitfieldOrUnnamedOffset,
3862 FieldSize / ByteSizeInBits));
3863 }
Fariborz Jahanianf5fec022009-04-21 18:33:06 +00003864 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003865
Daniel Dunbar7b89ace2009-05-03 13:44:42 +00003866 if (MaxField)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003867 IvarsInfo.push_back(GC_IVAR(BytePos + MaxFieldOffset,
Daniel Dunbar7b89ace2009-05-03 13:44:42 +00003868 MaxUnionIvarSize));
3869 if (MaxSkippedField)
Daniel Dunbar5b743912009-05-03 23:31:46 +00003870 SkipIvars.push_back(GC_IVAR(BytePos + MaxSkippedFieldOffset,
Daniel Dunbar7b89ace2009-05-03 13:44:42 +00003871 MaxSkippedUnionIvarSize));
Fariborz Jahanianc559f3f2009-03-05 22:39:55 +00003872}
3873
Fariborz Jahanian1f78a9a2010-08-05 00:19:48 +00003874/// BuildIvarLayoutBitmap - This routine is the horsework for doing all
3875/// the computations and returning the layout bitmap (for ivar or blocks) in
3876/// the given argument BitMap string container. Routine reads
3877/// two containers, IvarsInfo and SkipIvars which are assumed to be
3878/// filled already by the caller.
3879llvm::Constant *CGObjCCommonMac::BuildIvarLayoutBitmap(std::string& BitMap) {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003880 unsigned int WordsToScan, WordsToSkip;
Chris Lattner2192fe52011-07-18 04:24:23 +00003881 llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003882
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003883 // Build the string of skip/scan nibbles
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003884 SmallVector<SKIP_SCAN, 32> SkipScanIvars;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003885 unsigned int WordSize =
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003886 CGM.getTypes().getTargetData().getTypeAllocSize(PtrTy);
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003887 if (IvarsInfo[0].ivar_bytepos == 0) {
3888 WordsToSkip = 0;
3889 WordsToScan = IvarsInfo[0].ivar_size;
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003890 } else {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003891 WordsToSkip = IvarsInfo[0].ivar_bytepos/WordSize;
3892 WordsToScan = IvarsInfo[0].ivar_size;
3893 }
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003894 for (unsigned int i=1, Last=IvarsInfo.size(); i != Last; i++) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003895 unsigned int TailPrevGCObjC =
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003896 IvarsInfo[i-1].ivar_bytepos + IvarsInfo[i-1].ivar_size * WordSize;
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003897 if (IvarsInfo[i].ivar_bytepos == TailPrevGCObjC) {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003898 // consecutive 'scanned' object pointers.
3899 WordsToScan += IvarsInfo[i].ivar_size;
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003900 } else {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003901 // Skip over 'gc'able object pointer which lay over each other.
3902 if (TailPrevGCObjC > IvarsInfo[i].ivar_bytepos)
3903 continue;
3904 // Must skip over 1 or more words. We save current skip/scan values
3905 // and start a new pair.
Fariborz Jahanian1bf72882009-03-12 22:50:49 +00003906 SKIP_SCAN SkScan;
3907 SkScan.skip = WordsToSkip;
3908 SkScan.scan = WordsToScan;
Fariborz Jahaniana123b642009-04-24 16:17:09 +00003909 SkipScanIvars.push_back(SkScan);
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003910
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003911 // Skip the hole.
Fariborz Jahanian1bf72882009-03-12 22:50:49 +00003912 SkScan.skip = (IvarsInfo[i].ivar_bytepos - TailPrevGCObjC) / WordSize;
3913 SkScan.scan = 0;
Fariborz Jahaniana123b642009-04-24 16:17:09 +00003914 SkipScanIvars.push_back(SkScan);
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003915 WordsToSkip = 0;
3916 WordsToScan = IvarsInfo[i].ivar_size;
3917 }
3918 }
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003919 if (WordsToScan > 0) {
Fariborz Jahanian1bf72882009-03-12 22:50:49 +00003920 SKIP_SCAN SkScan;
3921 SkScan.skip = WordsToSkip;
3922 SkScan.scan = WordsToScan;
Fariborz Jahaniana123b642009-04-24 16:17:09 +00003923 SkipScanIvars.push_back(SkScan);
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003924 }
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003925
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003926 if (!SkipIvars.empty()) {
Fariborz Jahaniana123b642009-04-24 16:17:09 +00003927 unsigned int LastIndex = SkipIvars.size()-1;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003928 int LastByteSkipped =
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003929 SkipIvars[LastIndex].ivar_bytepos + SkipIvars[LastIndex].ivar_size;
Fariborz Jahaniana123b642009-04-24 16:17:09 +00003930 LastIndex = IvarsInfo.size()-1;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00003931 int LastByteScanned =
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003932 IvarsInfo[LastIndex].ivar_bytepos +
3933 IvarsInfo[LastIndex].ivar_size * WordSize;
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003934 // Compute number of bytes to skip at the tail end of the last ivar scanned.
Benjamin Kramerd20ef752009-12-25 15:43:36 +00003935 if (LastByteSkipped > LastByteScanned) {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003936 unsigned int TotalWords = (LastByteSkipped + (WordSize -1)) / WordSize;
Fariborz Jahanian1bf72882009-03-12 22:50:49 +00003937 SKIP_SCAN SkScan;
3938 SkScan.skip = TotalWords - (LastByteScanned/WordSize);
3939 SkScan.scan = 0;
Fariborz Jahaniana123b642009-04-24 16:17:09 +00003940 SkipScanIvars.push_back(SkScan);
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003941 }
3942 }
3943 // Mini optimization of nibbles such that an 0xM0 followed by 0x0N is produced
3944 // as 0xMN.
Fariborz Jahaniana123b642009-04-24 16:17:09 +00003945 int SkipScan = SkipScanIvars.size()-1;
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003946 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003947 if ((i < SkipScan) && SkipScanIvars[i].skip && SkipScanIvars[i].scan == 0
3948 && SkipScanIvars[i+1].skip == 0 && SkipScanIvars[i+1].scan) {
3949 // 0xM0 followed by 0x0N detected.
3950 SkipScanIvars[i].scan = SkipScanIvars[i+1].scan;
3951 for (int j = i+1; j < SkipScan; j++)
3952 SkipScanIvars[j] = SkipScanIvars[j+1];
3953 --SkipScan;
3954 }
3955 }
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003956
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003957 // Generate the string.
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003958 for (int i = 0; i <= SkipScan; i++) {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003959 unsigned char byte;
3960 unsigned int skip_small = SkipScanIvars[i].skip % 0xf;
3961 unsigned int scan_small = SkipScanIvars[i].scan % 0xf;
3962 unsigned int skip_big = SkipScanIvars[i].skip / 0xf;
3963 unsigned int scan_big = SkipScanIvars[i].scan / 0xf;
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003964
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003965 // first skip big.
3966 for (unsigned int ix = 0; ix < skip_big; ix++)
3967 BitMap += (unsigned char)(0xf0);
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003968
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003969 // next (skip small, scan)
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003970 if (skip_small) {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003971 byte = skip_small << 4;
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003972 if (scan_big > 0) {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003973 byte |= 0xf;
3974 --scan_big;
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003975 } else if (scan_small) {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003976 byte |= scan_small;
3977 scan_small = 0;
3978 }
3979 BitMap += byte;
3980 }
3981 // next scan big
3982 for (unsigned int ix = 0; ix < scan_big; ix++)
3983 BitMap += (unsigned char)(0x0f);
3984 // last scan small
Daniel Dunbard22aa4a2009-05-03 23:21:22 +00003985 if (scan_small) {
Fariborz Jahaniancbaf73c2009-03-11 20:59:05 +00003986 byte = scan_small;
3987 BitMap += byte;
3988 }
3989 }
3990 // null terminate string.
Fariborz Jahanianf909f922009-03-25 22:36:49 +00003991 unsigned char zero = 0;
3992 BitMap += zero;
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00003993
3994 llvm::GlobalVariable * Entry =
3995 CreateMetadataVar("\01L_OBJC_CLASS_NAME_",
3996 llvm::ConstantArray::get(VMContext, BitMap.c_str()),
Daniel Dunbar7c9295a2011-03-25 20:09:09 +00003997 ((ObjCABI == 2) ?
3998 "__TEXT,__objc_classname,cstring_literals" :
3999 "__TEXT,__cstring,cstring_literals"),
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00004000 1, true);
4001 return getConstantGEP(VMContext, Entry, 0, 0);
4002}
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004003
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00004004/// BuildIvarLayout - Builds ivar layout bitmap for the class
4005/// implementation for the __strong or __weak case.
4006/// The layout map displays which words in ivar list must be skipped
4007/// and which must be scanned by GC (see below). String is built of bytes.
4008/// Each byte is divided up in two nibbles (4-bit each). Left nibble is count
4009/// of words to skip and right nibble is count of words to scan. So, each
4010/// nibble represents up to 15 workds to skip or scan. Skipping the rest is
4011/// represented by a 0x00 byte which also ends the string.
4012/// 1. when ForStrongLayout is true, following ivars are scanned:
4013/// - id, Class
4014/// - object *
4015/// - __strong anything
4016///
4017/// 2. When ForStrongLayout is false, following ivars are scanned:
4018/// - __weak anything
4019///
4020llvm::Constant *CGObjCCommonMac::BuildIvarLayout(
4021 const ObjCImplementationDecl *OMD,
4022 bool ForStrongLayout) {
4023 bool hasUnion = false;
4024
Chris Lattner2192fe52011-07-18 04:24:23 +00004025 llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Douglas Gregor79a91412011-09-13 17:21:33 +00004026 if (CGM.getLangOptions().getGC() == LangOptions::NonGC &&
John McCall31168b02011-06-15 23:02:42 +00004027 !CGM.getLangOptions().ObjCAutoRefCount)
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00004028 return llvm::Constant::getNullValue(PtrTy);
4029
Jordy Rosea91768e2011-07-22 02:08:32 +00004030 const ObjCInterfaceDecl *OI = OMD->getClassInterface();
4031 SmallVector<const FieldDecl*, 32> RecFields;
Fariborz Jahanianb26d5782011-06-28 18:05:25 +00004032 if (CGM.getLangOptions().ObjCAutoRefCount) {
Jordy Rosea91768e2011-07-22 02:08:32 +00004033 for (const ObjCIvarDecl *IVD = OI->all_declared_ivar_begin();
Fariborz Jahanianb26d5782011-06-28 18:05:25 +00004034 IVD; IVD = IVD->getNextIvar())
4035 RecFields.push_back(cast<FieldDecl>(IVD));
4036 }
4037 else {
Jordy Rosea91768e2011-07-22 02:08:32 +00004038 SmallVector<const ObjCIvarDecl*, 32> Ivars;
John McCall31168b02011-06-15 23:02:42 +00004039 CGM.getContext().DeepCollectObjCIvars(OI, true, Ivars);
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00004040
Jordy Rosea91768e2011-07-22 02:08:32 +00004041 // FIXME: This is not ideal; we shouldn't have to do this copy.
4042 RecFields.append(Ivars.begin(), Ivars.end());
Fariborz Jahanianb26d5782011-06-28 18:05:25 +00004043 }
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00004044
4045 if (RecFields.empty())
4046 return llvm::Constant::getNullValue(PtrTy);
4047
4048 SkipIvars.clear();
4049 IvarsInfo.clear();
4050
4051 BuildAggrIvarLayout(OMD, 0, 0, RecFields, 0, ForStrongLayout, hasUnion);
4052 if (IvarsInfo.empty())
4053 return llvm::Constant::getNullValue(PtrTy);
Fariborz Jahanian1f78a9a2010-08-05 00:19:48 +00004054 // Sort on byte position in case we encounterred a union nested in
4055 // the ivar list.
4056 if (hasUnion && !IvarsInfo.empty())
4057 std::sort(IvarsInfo.begin(), IvarsInfo.end());
4058 if (hasUnion && !SkipIvars.empty())
4059 std::sort(SkipIvars.begin(), SkipIvars.end());
4060
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00004061 std::string BitMap;
Fariborz Jahanian1f78a9a2010-08-05 00:19:48 +00004062 llvm::Constant *C = BuildIvarLayoutBitmap(BitMap);
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00004063
4064 if (CGM.getLangOptions().ObjCGCBitmapPrint) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004065 printf("\n%s ivar layout for class '%s': ",
Fariborz Jahanian80c9ce22009-04-20 22:03:45 +00004066 ForStrongLayout ? "strong" : "weak",
Daniel Dunbar56df9772010-08-17 22:39:59 +00004067 OMD->getClassInterface()->getName().data());
Fariborz Jahanian80c9ce22009-04-20 22:03:45 +00004068 const unsigned char *s = (unsigned char*)BitMap.c_str();
4069 for (unsigned i = 0; i < BitMap.size(); i++)
4070 if (!(s[i] & 0xf0))
4071 printf("0x0%x%s", s[i], s[i] != 0 ? ", " : "");
4072 else
4073 printf("0x%x%s", s[i], s[i] != 0 ? ", " : "");
4074 printf("\n");
4075 }
Fariborz Jahanian9659f6b2010-08-04 23:55:24 +00004076 return C;
Fariborz Jahanianc559f3f2009-03-05 22:39:55 +00004077}
4078
Fariborz Jahanian0b1ccdc2009-01-21 23:34:32 +00004079llvm::Constant *CGObjCCommonMac::GetMethodVarName(Selector Sel) {
Daniel Dunbarcb515c82008-08-12 03:39:23 +00004080 llvm::GlobalVariable *&Entry = MethodVarNames[Sel];
4081
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00004082 // FIXME: Avoid std::string copying.
4083 if (!Entry)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004084 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_NAME_",
Owen Anderson41a75022009-08-13 21:57:51 +00004085 llvm::ConstantArray::get(VMContext, Sel.getAsString()),
Daniel Dunbar7c9295a2011-03-25 20:09:09 +00004086 ((ObjCABI == 2) ?
4087 "__TEXT,__objc_methname,cstring_literals" :
4088 "__TEXT,__cstring,cstring_literals"),
Daniel Dunbar3241fae2009-04-14 23:14:47 +00004089 1, true);
Daniel Dunbarcb515c82008-08-12 03:39:23 +00004090
Owen Anderson170229f2009-07-14 23:10:40 +00004091 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbarb036db82008-08-13 03:21:16 +00004092}
4093
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004094// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian0b1ccdc2009-01-21 23:34:32 +00004095llvm::Constant *CGObjCCommonMac::GetMethodVarName(IdentifierInfo *ID) {
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004096 return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID));
4097}
4098
Daniel Dunbarf5c18462009-04-20 06:54:31 +00004099llvm::Constant *CGObjCCommonMac::GetMethodVarType(const FieldDecl *Field) {
Devang Patel4b6e4bb2009-03-04 18:21:39 +00004100 std::string TypeStr;
4101 CGM.getContext().getObjCEncodingForType(Field->getType(), TypeStr, Field);
4102
4103 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
Daniel Dunbarb036db82008-08-13 03:21:16 +00004104
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00004105 if (!Entry)
4106 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
Owen Anderson41a75022009-08-13 21:57:51 +00004107 llvm::ConstantArray::get(VMContext, TypeStr),
Daniel Dunbar7c9295a2011-03-25 20:09:09 +00004108 ((ObjCABI == 2) ?
4109 "__TEXT,__objc_methtype,cstring_literals" :
4110 "__TEXT,__cstring,cstring_literals"),
Daniel Dunbar3241fae2009-04-14 23:14:47 +00004111 1, true);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004112
Owen Anderson170229f2009-07-14 23:10:40 +00004113 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbarcb515c82008-08-12 03:39:23 +00004114}
4115
Bob Wilson5f4e3a72011-11-30 01:57:58 +00004116llvm::Constant *CGObjCCommonMac::GetMethodVarType(const ObjCMethodDecl *D,
4117 bool Extended) {
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004118 std::string TypeStr;
Douglas Gregora9d84932011-05-27 01:19:52 +00004119 if (CGM.getContext().getObjCEncodingForMethodDecl(
4120 const_cast<ObjCMethodDecl*>(D),
Bob Wilson5f4e3a72011-11-30 01:57:58 +00004121 TypeStr, Extended))
Douglas Gregora9d84932011-05-27 01:19:52 +00004122 return 0;
Devang Patel4b6e4bb2009-03-04 18:21:39 +00004123
4124 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr];
4125
Daniel Dunbar3241fae2009-04-14 23:14:47 +00004126 if (!Entry)
4127 Entry = CreateMetadataVar("\01L_OBJC_METH_VAR_TYPE_",
Owen Anderson41a75022009-08-13 21:57:51 +00004128 llvm::ConstantArray::get(VMContext, TypeStr),
Daniel Dunbar7c9295a2011-03-25 20:09:09 +00004129 ((ObjCABI == 2) ?
4130 "__TEXT,__objc_methtype,cstring_literals" :
4131 "__TEXT,__cstring,cstring_literals"),
Daniel Dunbar3241fae2009-04-14 23:14:47 +00004132 1, true);
Devang Patel4b6e4bb2009-03-04 18:21:39 +00004133
Owen Anderson170229f2009-07-14 23:10:40 +00004134 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004135}
4136
Daniel Dunbar80a840b2008-08-23 00:19:03 +00004137// FIXME: Merge into a single cstring creation function.
Fariborz Jahanian0b1ccdc2009-01-21 23:34:32 +00004138llvm::Constant *CGObjCCommonMac::GetPropertyName(IdentifierInfo *Ident) {
Daniel Dunbar80a840b2008-08-23 00:19:03 +00004139 llvm::GlobalVariable *&Entry = PropertyNames[Ident];
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004140
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00004141 if (!Entry)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004142 Entry = CreateMetadataVar("\01L_OBJC_PROP_NAME_ATTR_",
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00004143 llvm::ConstantArray::get(VMContext,
4144 Ident->getNameStart()),
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00004145 "__TEXT,__cstring,cstring_literals",
Daniel Dunbar3241fae2009-04-14 23:14:47 +00004146 1, true);
Daniel Dunbar80a840b2008-08-23 00:19:03 +00004147
Owen Anderson170229f2009-07-14 23:10:40 +00004148 return getConstantGEP(VMContext, Entry, 0, 0);
Daniel Dunbar80a840b2008-08-23 00:19:03 +00004149}
4150
4151// FIXME: Merge into a single cstring creation function.
Daniel Dunbar4932b362008-08-28 04:38:10 +00004152// FIXME: This Decl should be more precise.
Daniel Dunbarc2d4b622009-03-09 21:49:58 +00004153llvm::Constant *
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004154CGObjCCommonMac::GetPropertyTypeString(const ObjCPropertyDecl *PD,
4155 const Decl *Container) {
Daniel Dunbar4932b362008-08-28 04:38:10 +00004156 std::string TypeStr;
4157 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr);
Daniel Dunbar80a840b2008-08-23 00:19:03 +00004158 return GetPropertyName(&CGM.getContext().Idents.get(TypeStr));
4159}
4160
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004161void CGObjCCommonMac::GetNameForMethod(const ObjCMethodDecl *D,
Fariborz Jahanian0b1ccdc2009-01-21 23:34:32 +00004162 const ObjCContainerDecl *CD,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004163 SmallVectorImpl<char> &Name) {
Daniel Dunbard2386812009-10-19 01:21:19 +00004164 llvm::raw_svector_ostream OS(Name);
Fariborz Jahanian0196a1c2009-01-10 21:06:09 +00004165 assert (CD && "Missing container decl in GetNameForMethod");
Daniel Dunbard2386812009-10-19 01:21:19 +00004166 OS << '\01' << (D->isInstanceMethod() ? '-' : '+')
4167 << '[' << CD->getName();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004168 if (const ObjCCategoryImplDecl *CID =
Daniel Dunbard2386812009-10-19 01:21:19 +00004169 dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext()))
Benjamin Kramerb11416d2010-04-17 09:33:03 +00004170 OS << '(' << CID << ')';
Daniel Dunbard2386812009-10-19 01:21:19 +00004171 OS << ' ' << D->getSelector().getAsString() << ']';
Daniel Dunbara94ecd22008-08-16 03:19:19 +00004172}
4173
Daniel Dunbar3ad53482008-08-11 21:35:06 +00004174void CGObjCMac::FinishModule() {
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00004175 EmitModuleInfo();
4176
Daniel Dunbarc475d422008-10-29 22:36:39 +00004177 // Emit the dummy bodies for any protocols which were referenced but
4178 // never defined.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004179 for (llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*>::iterator
Chris Lattnerf56501c2009-07-17 23:57:13 +00004180 I = Protocols.begin(), e = Protocols.end(); I != e; ++I) {
4181 if (I->second->hasInitializer())
Daniel Dunbarc475d422008-10-29 22:36:39 +00004182 continue;
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00004183
Benjamin Kramer22d24c22011-10-15 12:20:02 +00004184 llvm::Constant *Values[5];
Owen Anderson0b75f232009-07-31 20:28:54 +00004185 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
Chris Lattnerf56501c2009-07-17 23:57:13 +00004186 Values[1] = GetClassName(I->first);
Owen Anderson0b75f232009-07-31 20:28:54 +00004187 Values[2] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
Daniel Dunbarc475d422008-10-29 22:36:39 +00004188 Values[3] = Values[4] =
Owen Anderson0b75f232009-07-31 20:28:54 +00004189 llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
Chris Lattnerf56501c2009-07-17 23:57:13 +00004190 I->second->setLinkage(llvm::GlobalValue::InternalLinkage);
Owen Anderson0e0189d2009-07-27 22:29:56 +00004191 I->second->setInitializer(llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
Daniel Dunbarc475d422008-10-29 22:36:39 +00004192 Values));
Chris Lattnerf56501c2009-07-17 23:57:13 +00004193 CGM.AddUsedGlobal(I->second);
Daniel Dunbarc475d422008-10-29 22:36:39 +00004194 }
4195
Daniel Dunbarc61d0e92008-08-25 06:02:07 +00004196 // Add assembler directives to add lazy undefined symbol references
4197 // for classes which are referenced but not defined. This is
4198 // important for correct linker interaction.
Daniel Dunbard027a922009-09-07 00:20:42 +00004199 //
4200 // FIXME: It would be nice if we had an LLVM construct for this.
4201 if (!LazySymbols.empty() || !DefinedSymbols.empty()) {
4202 llvm::SmallString<256> Asm;
4203 Asm += CGM.getModule().getModuleInlineAsm();
4204 if (!Asm.empty() && Asm.back() != '\n')
4205 Asm += '\n';
Daniel Dunbarc61d0e92008-08-25 06:02:07 +00004206
Daniel Dunbard027a922009-09-07 00:20:42 +00004207 llvm::raw_svector_ostream OS(Asm);
Daniel Dunbard027a922009-09-07 00:20:42 +00004208 for (llvm::SetVector<IdentifierInfo*>::iterator I = DefinedSymbols.begin(),
4209 e = DefinedSymbols.end(); I != e; ++I)
Daniel Dunbar07d07852009-10-18 21:17:35 +00004210 OS << "\t.objc_class_name_" << (*I)->getName() << "=0\n"
4211 << "\t.globl .objc_class_name_" << (*I)->getName() << "\n";
Chris Lattnera299f2c2010-04-17 18:26:20 +00004212 for (llvm::SetVector<IdentifierInfo*>::iterator I = LazySymbols.begin(),
Fariborz Jahanian9adb2e62010-06-21 22:05:18 +00004213 e = LazySymbols.end(); I != e; ++I) {
Chris Lattnera299f2c2010-04-17 18:26:20 +00004214 OS << "\t.lazy_reference .objc_class_name_" << (*I)->getName() << "\n";
Fariborz Jahanian9adb2e62010-06-21 22:05:18 +00004215 }
4216
4217 for (size_t i = 0; i < DefinedCategoryNames.size(); ++i) {
4218 OS << "\t.objc_category_name_" << DefinedCategoryNames[i] << "=0\n"
4219 << "\t.globl .objc_category_name_" << DefinedCategoryNames[i] << "\n";
4220 }
Chris Lattnera299f2c2010-04-17 18:26:20 +00004221
Daniel Dunbard027a922009-09-07 00:20:42 +00004222 CGM.getModule().setModuleInlineAsm(OS.str());
Daniel Dunbarc61d0e92008-08-25 06:02:07 +00004223 }
Daniel Dunbar3ad53482008-08-11 21:35:06 +00004224}
4225
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004226CGObjCNonFragileABIMac::CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm)
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004227 : CGObjCCommonMac(cgm),
Mike Stump11289f42009-09-09 15:08:12 +00004228 ObjCTypes(cgm) {
Fariborz Jahanian71394042009-01-23 23:53:38 +00004229 ObjCEmptyCacheVar = ObjCEmptyVtableVar = NULL;
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004230 ObjCABI = 2;
4231}
4232
Daniel Dunbar3ad53482008-08-11 21:35:06 +00004233/* *** */
4234
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004235ObjCCommonTypesHelper::ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm)
Douglas Gregora95f9aa2012-01-17 23:38:32 +00004236 : VMContext(cgm.getLLVMContext()), CGM(cgm), ExternalProtocolPtrTy(0)
4237{
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00004238 CodeGen::CodeGenTypes &Types = CGM.getTypes();
4239 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004240
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004241 ShortTy = Types.ConvertType(Ctx.ShortTy);
Daniel Dunbarb036db82008-08-13 03:21:16 +00004242 IntTy = Types.ConvertType(Ctx.IntTy);
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00004243 LongTy = Types.ConvertType(Ctx.LongTy);
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00004244 LongLongTy = Types.ConvertType(Ctx.LongLongTy);
Benjamin Kramerabd5b902009-10-13 10:07:13 +00004245 Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Bob Wilson5f4e3a72011-11-30 01:57:58 +00004246 Int8PtrPtrTy = llvm::PointerType::getUnqual(Int8PtrTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004247
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00004248 ObjectPtrTy = Types.ConvertType(Ctx.getObjCIdType());
Owen Anderson9793f0e2009-07-29 22:16:19 +00004249 PtrObjectPtrTy = llvm::PointerType::getUnqual(ObjectPtrTy);
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00004250 SelectorPtrTy = Types.ConvertType(Ctx.getObjCSelType());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004251
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004252 // I'm not sure I like this. The implicit coordination is a bit
4253 // gross. We should solve this in a reasonable fashion because this
4254 // is a pretty common task (match some runtime data structure with
4255 // an LLVM data structure).
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004256
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004257 // FIXME: This is leaked.
4258 // FIXME: Merge with rewriter code?
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004259
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004260 // struct _objc_super {
4261 // id self;
4262 // Class cls;
4263 // }
Abramo Bagnara6150c882010-05-11 21:36:43 +00004264 RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
Daniel Dunbar0c005372010-04-29 16:29:11 +00004265 Ctx.getTranslationUnitDecl(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004266 SourceLocation(), SourceLocation(),
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004267 &Ctx.Idents.get("_objc_super"));
Abramo Bagnaradff19302011-03-08 08:55:46 +00004268 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), 0,
Richard Smith938f40b2011-06-11 17:19:42 +00004269 Ctx.getObjCIdType(), 0, 0, false, false));
Abramo Bagnaradff19302011-03-08 08:55:46 +00004270 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), 0,
Richard Smith938f40b2011-06-11 17:19:42 +00004271 Ctx.getObjCClassType(), 0, 0, false, false));
Douglas Gregord5058122010-02-11 01:19:42 +00004272 RD->completeDefinition();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004273
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004274 SuperCTy = Ctx.getTagDeclType(RD);
4275 SuperPtrCTy = Ctx.getPointerType(SuperCTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004276
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004277 SuperTy = cast<llvm::StructType>(Types.ConvertType(SuperCTy));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004278 SuperPtrTy = llvm::PointerType::getUnqual(SuperTy);
4279
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004280 // struct _prop_t {
4281 // char *name;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004282 // char *attributes;
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004283 // }
Chris Lattner5ec04a52011-08-12 17:43:31 +00004284 PropertyTy = llvm::StructType::create("struct._prop_t",
4285 Int8PtrTy, Int8PtrTy, NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004286
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004287 // struct _prop_list_t {
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004288 // uint32_t entsize; // sizeof(struct _prop_t)
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004289 // uint32_t count_of_properties;
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004290 // struct _prop_t prop_list[count_of_properties];
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004291 // }
Chris Lattnera5f58b02011-07-09 17:41:47 +00004292 PropertyListTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004293 llvm::StructType::create("struct._prop_list_t", IntTy, IntTy,
4294 llvm::ArrayType::get(PropertyTy, 0), NULL);
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004295 // struct _prop_list_t *
Owen Anderson9793f0e2009-07-29 22:16:19 +00004296 PropertyListPtrTy = llvm::PointerType::getUnqual(PropertyListTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004297
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004298 // struct _objc_method {
4299 // SEL _cmd;
4300 // char *method_type;
4301 // char *_imp;
4302 // }
Chris Lattner5ec04a52011-08-12 17:43:31 +00004303 MethodTy = llvm::StructType::create("struct._objc_method",
4304 SelectorPtrTy, Int8PtrTy, Int8PtrTy,
4305 NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004306
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004307 // struct _objc_cache *
Chris Lattner5ec04a52011-08-12 17:43:31 +00004308 CacheTy = llvm::StructType::create(VMContext, "struct._objc_cache");
Owen Anderson9793f0e2009-07-29 22:16:19 +00004309 CachePtrTy = llvm::PointerType::getUnqual(CacheTy);
Fariborz Jahanian0a3cfcc2011-06-22 20:21:51 +00004310
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004311}
Daniel Dunbar7bd00bd2008-08-12 06:48:42 +00004312
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004313ObjCTypesHelper::ObjCTypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump11289f42009-09-09 15:08:12 +00004314 : ObjCCommonTypesHelper(cgm) {
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004315 // struct _objc_method_description {
4316 // SEL name;
4317 // char *types;
4318 // }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004319 MethodDescriptionTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004320 llvm::StructType::create("struct._objc_method_description",
4321 SelectorPtrTy, Int8PtrTy, NULL);
Daniel Dunbarb036db82008-08-13 03:21:16 +00004322
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004323 // struct _objc_method_description_list {
4324 // int count;
4325 // struct _objc_method_description[1];
4326 // }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004327 MethodDescriptionListTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004328 llvm::StructType::create("struct._objc_method_description_list",
4329 IntTy,
4330 llvm::ArrayType::get(MethodDescriptionTy, 0),NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004331
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004332 // struct _objc_method_description_list *
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004333 MethodDescriptionListPtrTy =
Owen Anderson9793f0e2009-07-29 22:16:19 +00004334 llvm::PointerType::getUnqual(MethodDescriptionListTy);
Daniel Dunbarb036db82008-08-13 03:21:16 +00004335
Daniel Dunbarb036db82008-08-13 03:21:16 +00004336 // Protocol description structures
4337
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004338 // struct _objc_protocol_extension {
4339 // uint32_t size; // sizeof(struct _objc_protocol_extension)
4340 // struct _objc_method_description_list *optional_instance_methods;
4341 // struct _objc_method_description_list *optional_class_methods;
4342 // struct _objc_property_list *instance_properties;
Bob Wilson5f4e3a72011-11-30 01:57:58 +00004343 // const char ** extendedMethodTypes;
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004344 // }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004345 ProtocolExtensionTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004346 llvm::StructType::create("struct._objc_protocol_extension",
4347 IntTy, MethodDescriptionListPtrTy,
4348 MethodDescriptionListPtrTy, PropertyListPtrTy,
Bob Wilson5f4e3a72011-11-30 01:57:58 +00004349 Int8PtrPtrTy, NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004350
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004351 // struct _objc_protocol_extension *
Owen Anderson9793f0e2009-07-29 22:16:19 +00004352 ProtocolExtensionPtrTy = llvm::PointerType::getUnqual(ProtocolExtensionTy);
Daniel Dunbarb036db82008-08-13 03:21:16 +00004353
Daniel Dunbarc475d422008-10-29 22:36:39 +00004354 // Handle recursive construction of Protocol and ProtocolList types
Daniel Dunbarb036db82008-08-13 03:21:16 +00004355
Chris Lattnera5f58b02011-07-09 17:41:47 +00004356 ProtocolTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004357 llvm::StructType::create(VMContext, "struct._objc_protocol");
Daniel Dunbarb036db82008-08-13 03:21:16 +00004358
Chris Lattnera5f58b02011-07-09 17:41:47 +00004359 ProtocolListTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004360 llvm::StructType::create(VMContext, "struct._objc_protocol_list");
Chris Lattnera5f58b02011-07-09 17:41:47 +00004361 ProtocolListTy->setBody(llvm::PointerType::getUnqual(ProtocolListTy),
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004362 LongTy,
Chris Lattnera5f58b02011-07-09 17:41:47 +00004363 llvm::ArrayType::get(ProtocolTy, 0),
Fariborz Jahanian279eda62009-01-21 22:04:16 +00004364 NULL);
Daniel Dunbarb036db82008-08-13 03:21:16 +00004365
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004366 // struct _objc_protocol {
4367 // struct _objc_protocol_extension *isa;
4368 // char *protocol_name;
4369 // struct _objc_protocol **_objc_protocol_list;
4370 // struct _objc_method_description_list *instance_methods;
4371 // struct _objc_method_description_list *class_methods;
4372 // }
Chris Lattnera5f58b02011-07-09 17:41:47 +00004373 ProtocolTy->setBody(ProtocolExtensionPtrTy, Int8PtrTy,
4374 llvm::PointerType::getUnqual(ProtocolListTy),
4375 MethodDescriptionListPtrTy,
4376 MethodDescriptionListPtrTy,
4377 NULL);
Daniel Dunbarb036db82008-08-13 03:21:16 +00004378
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004379 // struct _objc_protocol_list *
Owen Anderson9793f0e2009-07-29 22:16:19 +00004380 ProtocolListPtrTy = llvm::PointerType::getUnqual(ProtocolListTy);
Daniel Dunbarb036db82008-08-13 03:21:16 +00004381
Owen Anderson9793f0e2009-07-29 22:16:19 +00004382 ProtocolPtrTy = llvm::PointerType::getUnqual(ProtocolTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004383
4384 // Class description structures
4385
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004386 // struct _objc_ivar {
4387 // char *ivar_name;
4388 // char *ivar_type;
4389 // int ivar_offset;
4390 // }
Chris Lattner5ec04a52011-08-12 17:43:31 +00004391 IvarTy = llvm::StructType::create("struct._objc_ivar",
4392 Int8PtrTy, Int8PtrTy, IntTy, NULL);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004393
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004394 // struct _objc_ivar_list *
Chris Lattnera5f58b02011-07-09 17:41:47 +00004395 IvarListTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004396 llvm::StructType::create(VMContext, "struct._objc_ivar_list");
Owen Anderson9793f0e2009-07-29 22:16:19 +00004397 IvarListPtrTy = llvm::PointerType::getUnqual(IvarListTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004398
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004399 // struct _objc_method_list *
Chris Lattnera5f58b02011-07-09 17:41:47 +00004400 MethodListTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004401 llvm::StructType::create(VMContext, "struct._objc_method_list");
Owen Anderson9793f0e2009-07-29 22:16:19 +00004402 MethodListPtrTy = llvm::PointerType::getUnqual(MethodListTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004403
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004404 // struct _objc_class_extension *
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004405 ClassExtensionTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004406 llvm::StructType::create("struct._objc_class_extension",
4407 IntTy, Int8PtrTy, PropertyListPtrTy, NULL);
Owen Anderson9793f0e2009-07-29 22:16:19 +00004408 ClassExtensionPtrTy = llvm::PointerType::getUnqual(ClassExtensionTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004409
Chris Lattner5ec04a52011-08-12 17:43:31 +00004410 ClassTy = llvm::StructType::create(VMContext, "struct._objc_class");
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004411
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004412 // struct _objc_class {
4413 // Class isa;
4414 // Class super_class;
4415 // char *name;
4416 // long version;
4417 // long info;
4418 // long instance_size;
4419 // struct _objc_ivar_list *ivars;
4420 // struct _objc_method_list *methods;
4421 // struct _objc_cache *cache;
4422 // struct _objc_protocol_list *protocols;
4423 // char *ivar_layout;
4424 // struct _objc_class_ext *ext;
4425 // };
Chris Lattnera5f58b02011-07-09 17:41:47 +00004426 ClassTy->setBody(llvm::PointerType::getUnqual(ClassTy),
4427 llvm::PointerType::getUnqual(ClassTy),
4428 Int8PtrTy,
4429 LongTy,
4430 LongTy,
4431 LongTy,
4432 IvarListPtrTy,
4433 MethodListPtrTy,
4434 CachePtrTy,
4435 ProtocolListPtrTy,
4436 Int8PtrTy,
4437 ClassExtensionPtrTy,
4438 NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004439
Owen Anderson9793f0e2009-07-29 22:16:19 +00004440 ClassPtrTy = llvm::PointerType::getUnqual(ClassTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004441
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004442 // struct _objc_category {
4443 // char *category_name;
4444 // char *class_name;
4445 // struct _objc_method_list *instance_method;
4446 // struct _objc_method_list *class_method;
4447 // uint32_t size; // sizeof(struct _objc_category)
4448 // struct _objc_property_list *instance_properties;// category's @property
4449 // }
Chris Lattnera5f58b02011-07-09 17:41:47 +00004450 CategoryTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004451 llvm::StructType::create("struct._objc_category",
4452 Int8PtrTy, Int8PtrTy, MethodListPtrTy,
4453 MethodListPtrTy, ProtocolListPtrTy,
4454 IntTy, PropertyListPtrTy, NULL);
Daniel Dunbar938a77f2008-08-22 20:34:54 +00004455
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004456 // Global metadata structures
4457
Fariborz Jahanian4b4c8262009-01-21 00:39:53 +00004458 // struct _objc_symtab {
4459 // long sel_ref_cnt;
4460 // SEL *refs;
4461 // short cls_def_cnt;
4462 // short cat_def_cnt;
4463 // char *defs[cls_def_cnt + cat_def_cnt];
4464 // }
Chris Lattnera5f58b02011-07-09 17:41:47 +00004465 SymtabTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004466 llvm::StructType::create("struct._objc_symtab",
4467 LongTy, SelectorPtrTy, ShortTy, ShortTy,
4468 llvm::ArrayType::get(Int8PtrTy, 0), NULL);
Owen Anderson9793f0e2009-07-29 22:16:19 +00004469 SymtabPtrTy = llvm::PointerType::getUnqual(SymtabTy);
Daniel Dunbar22d82ed2008-08-21 04:36:09 +00004470
Fariborz Jahanianeee54df2009-01-22 00:37:21 +00004471 // struct _objc_module {
4472 // long version;
4473 // long size; // sizeof(struct _objc_module)
4474 // char *name;
4475 // struct _objc_symtab* symtab;
4476 // }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004477 ModuleTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004478 llvm::StructType::create("struct._objc_module",
4479 LongTy, LongTy, Int8PtrTy, SymtabPtrTy, NULL);
Daniel Dunbar97ff50d2008-08-23 09:25:55 +00004480
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004481
Mike Stump18bb9282009-05-16 07:57:57 +00004482 // FIXME: This is the size of the setjmp buffer and should be target
4483 // specific. 18 is what's used on 32-bit X86.
Anders Carlsson9ff22482008-09-09 10:10:21 +00004484 uint64_t SetJmpBufferSize = 18;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004485
Anders Carlsson9ff22482008-09-09 10:10:21 +00004486 // Exceptions
Chris Lattnera5f58b02011-07-09 17:41:47 +00004487 llvm::Type *StackPtrTy = llvm::ArrayType::get(
Benjamin Kramerabd5b902009-10-13 10:07:13 +00004488 llvm::Type::getInt8PtrTy(VMContext), 4);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004489
4490 ExceptionDataTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004491 llvm::StructType::create("struct._objc_exception_data",
Chris Lattnera5f58b02011-07-09 17:41:47 +00004492 llvm::ArrayType::get(llvm::Type::getInt32Ty(VMContext),
4493 SetJmpBufferSize),
4494 StackPtrTy, NULL);
Anders Carlsson9ff22482008-09-09 10:10:21 +00004495
Daniel Dunbar8b8683f2008-08-12 00:12:39 +00004496}
4497
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004498ObjCNonFragileABITypesHelper::ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm)
Mike Stump11289f42009-09-09 15:08:12 +00004499 : ObjCCommonTypesHelper(cgm) {
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004500 // struct _method_list_t {
4501 // uint32_t entsize; // sizeof(struct _objc_method)
4502 // uint32_t method_count;
4503 // struct _objc_method method_list[method_count];
4504 // }
Chris Lattnera5f58b02011-07-09 17:41:47 +00004505 MethodListnfABITy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004506 llvm::StructType::create("struct.__method_list_t", IntTy, IntTy,
4507 llvm::ArrayType::get(MethodTy, 0), NULL);
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004508 // struct method_list_t *
Owen Anderson9793f0e2009-07-29 22:16:19 +00004509 MethodListnfABIPtrTy = llvm::PointerType::getUnqual(MethodListnfABITy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004510
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004511 // struct _protocol_t {
4512 // id isa; // NULL
4513 // const char * const protocol_name;
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004514 // const struct _protocol_list_t * protocol_list; // super protocols
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004515 // const struct method_list_t * const instance_methods;
4516 // const struct method_list_t * const class_methods;
4517 // const struct method_list_t *optionalInstanceMethods;
4518 // const struct method_list_t *optionalClassMethods;
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004519 // const struct _prop_list_t * properties;
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004520 // const uint32_t size; // sizeof(struct _protocol_t)
4521 // const uint32_t flags; // = 0
Bob Wilson5f4e3a72011-11-30 01:57:58 +00004522 // const char ** extendedMethodTypes;
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004523 // }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004524
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004525 // Holder for struct _protocol_list_t *
Chris Lattnera5f58b02011-07-09 17:41:47 +00004526 ProtocolListnfABITy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004527 llvm::StructType::create(VMContext, "struct._objc_protocol_list");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004528
Chris Lattnera5f58b02011-07-09 17:41:47 +00004529 ProtocolnfABITy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004530 llvm::StructType::create("struct._protocol_t", ObjectPtrTy, Int8PtrTy,
4531 llvm::PointerType::getUnqual(ProtocolListnfABITy),
4532 MethodListnfABIPtrTy, MethodListnfABIPtrTy,
4533 MethodListnfABIPtrTy, MethodListnfABIPtrTy,
Bob Wilson5f4e3a72011-11-30 01:57:58 +00004534 PropertyListPtrTy, IntTy, IntTy, Int8PtrPtrTy,
4535 NULL);
Daniel Dunbar8de90f02009-02-15 07:36:20 +00004536
4537 // struct _protocol_t*
Owen Anderson9793f0e2009-07-29 22:16:19 +00004538 ProtocolnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolnfABITy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004539
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00004540 // struct _protocol_list_t {
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004541 // long protocol_count; // Note, this is 32/64 bit
Daniel Dunbar8de90f02009-02-15 07:36:20 +00004542 // struct _protocol_t *[protocol_count];
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004543 // }
Chris Lattnera5f58b02011-07-09 17:41:47 +00004544 ProtocolListnfABITy->setBody(LongTy,
4545 llvm::ArrayType::get(ProtocolnfABIPtrTy, 0),
4546 NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004547
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004548 // struct _objc_protocol_list*
Owen Anderson9793f0e2009-07-29 22:16:19 +00004549 ProtocolListnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolListnfABITy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004550
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004551 // struct _ivar_t {
4552 // unsigned long int *offset; // pointer to ivar offset location
4553 // char *name;
4554 // char *type;
4555 // uint32_t alignment;
4556 // uint32_t size;
4557 // }
Chris Lattnera5f58b02011-07-09 17:41:47 +00004558 IvarnfABITy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004559 llvm::StructType::create("struct._ivar_t",
4560 llvm::PointerType::getUnqual(LongTy),
4561 Int8PtrTy, Int8PtrTy, IntTy, IntTy, NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004562
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004563 // struct _ivar_list_t {
4564 // uint32 entsize; // sizeof(struct _ivar_t)
4565 // uint32 count;
4566 // struct _iver_t list[count];
4567 // }
Chris Lattnera5f58b02011-07-09 17:41:47 +00004568 IvarListnfABITy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004569 llvm::StructType::create("struct._ivar_list_t", IntTy, IntTy,
4570 llvm::ArrayType::get(IvarnfABITy, 0), NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004571
Owen Anderson9793f0e2009-07-29 22:16:19 +00004572 IvarListnfABIPtrTy = llvm::PointerType::getUnqual(IvarListnfABITy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004573
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004574 // struct _class_ro_t {
Fariborz Jahanianb15a3d52009-01-22 23:02:58 +00004575 // uint32_t const flags;
4576 // uint32_t const instanceStart;
4577 // uint32_t const instanceSize;
4578 // uint32_t const reserved; // only when building for 64bit targets
4579 // const uint8_t * const ivarLayout;
4580 // const char *const name;
4581 // const struct _method_list_t * const baseMethods;
4582 // const struct _objc_protocol_list *const baseProtocols;
4583 // const struct _ivar_list_t *const ivars;
4584 // const uint8_t * const weakIvarLayout;
4585 // const struct _prop_list_t * const properties;
4586 // }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004587
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004588 // FIXME. Add 'reserved' field in 64bit abi mode!
Chris Lattner5ec04a52011-08-12 17:43:31 +00004589 ClassRonfABITy = llvm::StructType::create("struct._class_ro_t",
4590 IntTy, IntTy, IntTy, Int8PtrTy,
4591 Int8PtrTy, MethodListnfABIPtrTy,
4592 ProtocolListnfABIPtrTy,
4593 IvarListnfABIPtrTy,
4594 Int8PtrTy, PropertyListPtrTy, NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004595
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004596 // ImpnfABITy - LLVM for id (*)(id, SEL, ...)
Chris Lattnera5f58b02011-07-09 17:41:47 +00004597 llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy };
John McCall9dc0db22011-05-15 01:53:33 +00004598 ImpnfABITy = llvm::FunctionType::get(ObjectPtrTy, params, false)
4599 ->getPointerTo();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004600
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004601 // struct _class_t {
4602 // struct _class_t *isa;
4603 // struct _class_t * const superclass;
4604 // void *cache;
4605 // IMP *vtable;
4606 // struct class_ro_t *ro;
4607 // }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004608
Chris Lattner5ec04a52011-08-12 17:43:31 +00004609 ClassnfABITy = llvm::StructType::create(VMContext, "struct._class_t");
Chris Lattnera5f58b02011-07-09 17:41:47 +00004610 ClassnfABITy->setBody(llvm::PointerType::getUnqual(ClassnfABITy),
4611 llvm::PointerType::getUnqual(ClassnfABITy),
4612 CachePtrTy,
4613 llvm::PointerType::getUnqual(ImpnfABITy),
4614 llvm::PointerType::getUnqual(ClassRonfABITy),
4615 NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004616
Fariborz Jahanian71394042009-01-23 23:53:38 +00004617 // LLVM for struct _class_t *
Owen Anderson9793f0e2009-07-29 22:16:19 +00004618 ClassnfABIPtrTy = llvm::PointerType::getUnqual(ClassnfABITy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004619
Fariborz Jahanian0232c052009-01-23 01:46:23 +00004620 // struct _category_t {
4621 // const char * const name;
4622 // struct _class_t *const cls;
4623 // const struct _method_list_t * const instance_methods;
4624 // const struct _method_list_t * const class_methods;
4625 // const struct _protocol_list_t * const protocols;
4626 // const struct _prop_list_t * const properties;
Fariborz Jahanian5a63e4c2009-01-23 17:41:22 +00004627 // }
Chris Lattner5ec04a52011-08-12 17:43:31 +00004628 CategorynfABITy = llvm::StructType::create("struct._category_t",
4629 Int8PtrTy, ClassnfABIPtrTy,
4630 MethodListnfABIPtrTy,
4631 MethodListnfABIPtrTy,
4632 ProtocolListnfABIPtrTy,
4633 PropertyListPtrTy,
4634 NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004635
Fariborz Jahanian82c72e12009-02-03 23:49:23 +00004636 // New types for nonfragile abi messaging.
Fariborz Jahaniane4dc35d2009-02-04 20:42:28 +00004637 CodeGen::CodeGenTypes &Types = CGM.getTypes();
4638 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004639
Fariborz Jahanian82c72e12009-02-03 23:49:23 +00004640 // MessageRefTy - LLVM for:
4641 // struct _message_ref_t {
4642 // IMP messenger;
4643 // SEL name;
4644 // };
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004645
Fariborz Jahaniane4dc35d2009-02-04 20:42:28 +00004646 // First the clang type for struct _message_ref_t
Abramo Bagnara6150c882010-05-11 21:36:43 +00004647 RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
Daniel Dunbar0c005372010-04-29 16:29:11 +00004648 Ctx.getTranslationUnitDecl(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004649 SourceLocation(), SourceLocation(),
Fariborz Jahaniane4dc35d2009-02-04 20:42:28 +00004650 &Ctx.Idents.get("_message_ref_t"));
Abramo Bagnaradff19302011-03-08 08:55:46 +00004651 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), 0,
Richard Smith938f40b2011-06-11 17:19:42 +00004652 Ctx.VoidPtrTy, 0, 0, false, false));
Abramo Bagnaradff19302011-03-08 08:55:46 +00004653 RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), 0,
Richard Smith938f40b2011-06-11 17:19:42 +00004654 Ctx.getObjCSelType(), 0, 0, false, false));
Douglas Gregord5058122010-02-11 01:19:42 +00004655 RD->completeDefinition();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004656
Fariborz Jahaniane4dc35d2009-02-04 20:42:28 +00004657 MessageRefCTy = Ctx.getTagDeclType(RD);
4658 MessageRefCPtrTy = Ctx.getPointerType(MessageRefCTy);
4659 MessageRefTy = cast<llvm::StructType>(Types.ConvertType(MessageRefCTy));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004660
Fariborz Jahanian82c72e12009-02-03 23:49:23 +00004661 // MessageRefPtrTy - LLVM for struct _message_ref_t*
Owen Anderson9793f0e2009-07-29 22:16:19 +00004662 MessageRefPtrTy = llvm::PointerType::getUnqual(MessageRefTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004663
Fariborz Jahanian82c72e12009-02-03 23:49:23 +00004664 // SuperMessageRefTy - LLVM for:
4665 // struct _super_message_ref_t {
4666 // SUPER_IMP messenger;
4667 // SEL name;
4668 // };
Chris Lattnera5f58b02011-07-09 17:41:47 +00004669 SuperMessageRefTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004670 llvm::StructType::create("struct._super_message_ref_t",
4671 ImpnfABITy, SelectorPtrTy, NULL);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004672
Fariborz Jahanian82c72e12009-02-03 23:49:23 +00004673 // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t*
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004674 SuperMessageRefPtrTy = llvm::PointerType::getUnqual(SuperMessageRefTy);
Fariborz Jahanian0a3cfcc2011-06-22 20:21:51 +00004675
Daniel Dunbarb1559a42009-03-01 04:46:24 +00004676
4677 // struct objc_typeinfo {
4678 // const void** vtable; // objc_ehtype_vtable + 2
4679 // const char* name; // c++ typeinfo string
4680 // Class cls;
4681 // };
Chris Lattnera5f58b02011-07-09 17:41:47 +00004682 EHTypeTy =
Chris Lattner5ec04a52011-08-12 17:43:31 +00004683 llvm::StructType::create("struct._objc_typeinfo",
4684 llvm::PointerType::getUnqual(Int8PtrTy),
4685 Int8PtrTy, ClassnfABIPtrTy, NULL);
Owen Anderson9793f0e2009-07-29 22:16:19 +00004686 EHTypePtrTy = llvm::PointerType::getUnqual(EHTypeTy);
Daniel Dunbar8b8683f2008-08-12 00:12:39 +00004687}
4688
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004689llvm::Function *CGObjCNonFragileABIMac::ModuleInitFunction() {
Fariborz Jahanian71394042009-01-23 23:53:38 +00004690 FinishNonFragileABIModule();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004691
Fariborz Jahanian71394042009-01-23 23:53:38 +00004692 return NULL;
4693}
4694
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004695void CGObjCNonFragileABIMac::AddModuleClassList(const
4696 std::vector<llvm::GlobalValue*>
4697 &Container,
Daniel Dunbar19573e72009-05-15 21:48:48 +00004698 const char *SymbolName,
4699 const char *SectionName) {
4700 unsigned NumClasses = Container.size();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004701
Daniel Dunbar19573e72009-05-15 21:48:48 +00004702 if (!NumClasses)
4703 return;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004704
Daniel Dunbar19573e72009-05-15 21:48:48 +00004705 std::vector<llvm::Constant*> Symbols(NumClasses);
4706 for (unsigned i=0; i<NumClasses; i++)
Owen Andersonade90fd2009-07-29 18:54:39 +00004707 Symbols[i] = llvm::ConstantExpr::getBitCast(Container[i],
Daniel Dunbar19573e72009-05-15 21:48:48 +00004708 ObjCTypes.Int8PtrTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004709 llvm::Constant* Init =
Owen Anderson9793f0e2009-07-29 22:16:19 +00004710 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar19573e72009-05-15 21:48:48 +00004711 NumClasses),
4712 Symbols);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004713
Daniel Dunbar19573e72009-05-15 21:48:48 +00004714 llvm::GlobalVariable *GV =
Owen Andersonc10c8d32009-07-08 19:05:04 +00004715 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Daniel Dunbar19573e72009-05-15 21:48:48 +00004716 llvm::GlobalValue::InternalLinkage,
4717 Init,
Owen Andersonc10c8d32009-07-08 19:05:04 +00004718 SymbolName);
Daniel Dunbar710cb202010-04-25 20:39:32 +00004719 GV->setAlignment(CGM.getTargetData().getABITypeAlignment(Init->getType()));
Daniel Dunbar19573e72009-05-15 21:48:48 +00004720 GV->setSection(SectionName);
Chris Lattnerf56501c2009-07-17 23:57:13 +00004721 CGM.AddUsedGlobal(GV);
Daniel Dunbar19573e72009-05-15 21:48:48 +00004722}
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004723
Fariborz Jahanian71394042009-01-23 23:53:38 +00004724void CGObjCNonFragileABIMac::FinishNonFragileABIModule() {
4725 // nonfragile abi has no module definition.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004726
Daniel Dunbar19573e72009-05-15 21:48:48 +00004727 // Build list of all implemented class addresses in array
Fariborz Jahanian279abd32009-01-30 20:55:31 +00004728 // L_OBJC_LABEL_CLASS_$.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004729 AddModuleClassList(DefinedClasses,
Daniel Dunbar19573e72009-05-15 21:48:48 +00004730 "\01L_OBJC_LABEL_CLASS_$",
4731 "__DATA, __objc_classlist, regular, no_dead_strip");
Fariborz Jahanian67260552009-11-17 21:37:35 +00004732
Fariborz Jahanian67260552009-11-17 21:37:35 +00004733 for (unsigned i = 0; i < DefinedClasses.size(); i++) {
4734 llvm::GlobalValue *IMPLGV = DefinedClasses[i];
4735 if (IMPLGV->getLinkage() != llvm::GlobalValue::ExternalWeakLinkage)
4736 continue;
4737 IMPLGV->setLinkage(llvm::GlobalValue::ExternalLinkage);
Fariborz Jahanian67260552009-11-17 21:37:35 +00004738 }
4739
Fariborz Jahaniana6227fd2009-12-01 18:25:24 +00004740 for (unsigned i = 0; i < DefinedMetaClasses.size(); i++) {
4741 llvm::GlobalValue *IMPLGV = DefinedMetaClasses[i];
4742 if (IMPLGV->getLinkage() != llvm::GlobalValue::ExternalWeakLinkage)
4743 continue;
4744 IMPLGV->setLinkage(llvm::GlobalValue::ExternalLinkage);
4745 }
Fariborz Jahanian67260552009-11-17 21:37:35 +00004746
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004747 AddModuleClassList(DefinedNonLazyClasses,
Daniel Dunbar9a017d72009-05-15 22:33:15 +00004748 "\01L_OBJC_LABEL_NONLAZY_CLASS_$",
4749 "__DATA, __objc_nlclslist, regular, no_dead_strip");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004750
Fariborz Jahanian279abd32009-01-30 20:55:31 +00004751 // Build list of all implemented category addresses in array
4752 // L_OBJC_LABEL_CATEGORY_$.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004753 AddModuleClassList(DefinedCategories,
Daniel Dunbar19573e72009-05-15 21:48:48 +00004754 "\01L_OBJC_LABEL_CATEGORY_$",
4755 "__DATA, __objc_catlist, regular, no_dead_strip");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004756 AddModuleClassList(DefinedNonLazyCategories,
Daniel Dunbar9a017d72009-05-15 22:33:15 +00004757 "\01L_OBJC_LABEL_NONLAZY_CATEGORY_$",
4758 "__DATA, __objc_nlcatlist, regular, no_dead_strip");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004759
Daniel Dunbar5e639272010-04-25 20:39:01 +00004760 EmitImageInfo();
Fariborz Jahanian71394042009-01-23 23:53:38 +00004761}
4762
John McCall9e8bb002011-05-14 03:10:52 +00004763/// isVTableDispatchedSelector - Returns true if SEL is not in the list of
4764/// VTableDispatchMethods; false otherwise. What this means is that
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004765/// except for the 19 selectors in the list, we generate 32bit-style
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +00004766/// message dispatch call for all the rest.
John McCall9e8bb002011-05-14 03:10:52 +00004767bool CGObjCNonFragileABIMac::isVTableDispatchedSelector(Selector Sel) {
4768 // At various points we've experimented with using vtable-based
4769 // dispatch for all methods.
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +00004770 switch (CGM.getCodeGenOpts().getObjCDispatchMethod()) {
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +00004771 case CodeGenOptions::Legacy:
Fariborz Jahaniandfb39832010-04-19 17:53:30 +00004772 return false;
John McCall9e8bb002011-05-14 03:10:52 +00004773 case CodeGenOptions::NonLegacy:
4774 return true;
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +00004775 case CodeGenOptions::Mixed:
4776 break;
4777 }
4778
4779 // If so, see whether this selector is in the white-list of things which must
4780 // use the new dispatch convention. We lazily build a dense set for this.
John McCall9e8bb002011-05-14 03:10:52 +00004781 if (VTableDispatchMethods.empty()) {
4782 VTableDispatchMethods.insert(GetNullarySelector("alloc"));
4783 VTableDispatchMethods.insert(GetNullarySelector("class"));
4784 VTableDispatchMethods.insert(GetNullarySelector("self"));
4785 VTableDispatchMethods.insert(GetNullarySelector("isFlipped"));
4786 VTableDispatchMethods.insert(GetNullarySelector("length"));
4787 VTableDispatchMethods.insert(GetNullarySelector("count"));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004788
John McCall9e8bb002011-05-14 03:10:52 +00004789 // These are vtable-based if GC is disabled.
4790 // Optimistically use vtable dispatch for hybrid compiles.
Douglas Gregor79a91412011-09-13 17:21:33 +00004791 if (CGM.getLangOptions().getGC() != LangOptions::GCOnly) {
John McCall9e8bb002011-05-14 03:10:52 +00004792 VTableDispatchMethods.insert(GetNullarySelector("retain"));
4793 VTableDispatchMethods.insert(GetNullarySelector("release"));
4794 VTableDispatchMethods.insert(GetNullarySelector("autorelease"));
4795 }
4796
4797 VTableDispatchMethods.insert(GetUnarySelector("allocWithZone"));
4798 VTableDispatchMethods.insert(GetUnarySelector("isKindOfClass"));
4799 VTableDispatchMethods.insert(GetUnarySelector("respondsToSelector"));
4800 VTableDispatchMethods.insert(GetUnarySelector("objectForKey"));
4801 VTableDispatchMethods.insert(GetUnarySelector("objectAtIndex"));
4802 VTableDispatchMethods.insert(GetUnarySelector("isEqualToString"));
4803 VTableDispatchMethods.insert(GetUnarySelector("isEqual"));
4804
4805 // These are vtable-based if GC is enabled.
4806 // Optimistically use vtable dispatch for hybrid compiles.
Douglas Gregor79a91412011-09-13 17:21:33 +00004807 if (CGM.getLangOptions().getGC() != LangOptions::NonGC) {
John McCall9e8bb002011-05-14 03:10:52 +00004808 VTableDispatchMethods.insert(GetNullarySelector("hash"));
4809 VTableDispatchMethods.insert(GetUnarySelector("addObject"));
4810
4811 // "countByEnumeratingWithState:objects:count"
4812 IdentifierInfo *KeyIdents[] = {
4813 &CGM.getContext().Idents.get("countByEnumeratingWithState"),
4814 &CGM.getContext().Idents.get("objects"),
4815 &CGM.getContext().Idents.get("count")
4816 };
4817 VTableDispatchMethods.insert(
4818 CGM.getContext().Selectors.getSelector(3, KeyIdents));
4819 }
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +00004820 }
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +00004821
John McCall9e8bb002011-05-14 03:10:52 +00004822 return VTableDispatchMethods.count(Sel);
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +00004823}
4824
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004825// Metadata flags
4826enum MetaDataDlags {
4827 CLS = 0x0,
4828 CLS_META = 0x1,
4829 CLS_ROOT = 0x2,
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00004830 OBJC2_CLS_HIDDEN = 0x10,
John McCall31168b02011-06-15 23:02:42 +00004831 CLS_EXCEPTION = 0x20,
4832
4833 /// (Obsolete) ARC-specific: this class has a .release_ivars method
4834 CLS_HAS_IVAR_RELEASER = 0x40,
4835 /// class was compiled with -fobjc-arr
4836 CLS_COMPILED_BY_ARC = 0x80 // (1<<7)
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004837};
4838/// BuildClassRoTInitializer - generate meta-data for:
4839/// struct _class_ro_t {
4840/// uint32_t const flags;
4841/// uint32_t const instanceStart;
4842/// uint32_t const instanceSize;
4843/// uint32_t const reserved; // only when building for 64bit targets
4844/// const uint8_t * const ivarLayout;
4845/// const char *const name;
4846/// const struct _method_list_t * const baseMethods;
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00004847/// const struct _protocol_list_t *const baseProtocols;
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004848/// const struct _ivar_list_t *const ivars;
4849/// const uint8_t * const weakIvarLayout;
4850/// const struct _prop_list_t * const properties;
4851/// }
4852///
4853llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassRoTInitializer(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004854 unsigned flags,
4855 unsigned InstanceStart,
4856 unsigned InstanceSize,
4857 const ObjCImplementationDecl *ID) {
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004858 std::string ClassName = ID->getNameAsString();
Benjamin Kramer22d24c22011-10-15 12:20:02 +00004859 llvm::Constant *Values[10]; // 11 for 64bit targets!
John McCall31168b02011-06-15 23:02:42 +00004860
4861 if (CGM.getLangOptions().ObjCAutoRefCount)
4862 flags |= CLS_COMPILED_BY_ARC;
4863
Owen Andersonb7a2fe62009-07-24 23:12:58 +00004864 Values[ 0] = llvm::ConstantInt::get(ObjCTypes.IntTy, flags);
4865 Values[ 1] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceStart);
4866 Values[ 2] = llvm::ConstantInt::get(ObjCTypes.IntTy, InstanceSize);
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004867 // FIXME. For 64bit targets add 0 here.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004868 Values[ 3] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4869 : BuildIvarLayout(ID, true);
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004870 Values[ 4] = GetClassName(ID->getIdentifier());
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00004871 // const struct _method_list_t * const baseMethods;
4872 std::vector<llvm::Constant*> Methods;
4873 std::string MethodListName("\01l_OBJC_$_");
4874 if (flags & CLS_META) {
4875 MethodListName += "CLASS_METHODS_" + ID->getNameAsString();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004876 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004877 i = ID->classmeth_begin(), e = ID->classmeth_end(); i != e; ++i) {
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00004878 // Class methods should always be defined.
4879 Methods.push_back(GetMethodConstant(*i));
4880 }
4881 } else {
4882 MethodListName += "INSTANCE_METHODS_" + ID->getNameAsString();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004883 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004884 i = ID->instmeth_begin(), e = ID->instmeth_end(); i != e; ++i) {
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00004885 // Instance methods should always be defined.
4886 Methods.push_back(GetMethodConstant(*i));
4887 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004888 for (ObjCImplementationDecl::propimpl_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004889 i = ID->propimpl_begin(), e = ID->propimpl_end(); i != e; ++i) {
Fariborz Jahaniand27a8202009-01-28 22:46:49 +00004890 ObjCPropertyImplDecl *PID = *i;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004891
Fariborz Jahaniand27a8202009-01-28 22:46:49 +00004892 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){
4893 ObjCPropertyDecl *PD = PID->getPropertyDecl();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004894
Fariborz Jahaniand27a8202009-01-28 22:46:49 +00004895 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
4896 if (llvm::Constant *C = GetMethodConstant(MD))
4897 Methods.push_back(C);
4898 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
4899 if (llvm::Constant *C = GetMethodConstant(MD))
4900 Methods.push_back(C);
4901 }
4902 }
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00004903 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004904 Values[ 5] = EmitMethodList(MethodListName,
4905 "__DATA, __objc_const", Methods);
4906
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00004907 const ObjCInterfaceDecl *OID = ID->getClassInterface();
4908 assert(OID && "CGObjCNonFragileABIMac::BuildClassRoTInitializer");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004909 Values[ 6] = EmitProtocolList("\01l_OBJC_CLASS_PROTOCOLS_$_"
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00004910 + OID->getName(),
Ted Kremenek0ef508d2010-09-01 01:21:15 +00004911 OID->all_referenced_protocol_begin(),
4912 OID->all_referenced_protocol_end());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004913
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00004914 if (flags & CLS_META)
Owen Anderson0b75f232009-07-31 20:28:54 +00004915 Values[ 7] = llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00004916 else
4917 Values[ 7] = EmitIvarList(ID);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004918 Values[ 8] = (flags & CLS_META) ? GetIvarLayoutName(0, ObjCTypes)
4919 : BuildIvarLayout(ID, false);
Fariborz Jahanian066347e2009-01-28 22:18:42 +00004920 if (flags & CLS_META)
Owen Anderson0b75f232009-07-31 20:28:54 +00004921 Values[ 9] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Fariborz Jahanian066347e2009-01-28 22:18:42 +00004922 else
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00004923 Values[ 9] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ID->getName(),
4924 ID, ID->getClassInterface(), ObjCTypes);
Owen Anderson0e0189d2009-07-27 22:29:56 +00004925 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassRonfABITy,
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004926 Values);
4927 llvm::GlobalVariable *CLASS_RO_GV =
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004928 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassRonfABITy, false,
4929 llvm::GlobalValue::InternalLinkage,
4930 Init,
4931 (flags & CLS_META) ?
4932 std::string("\01l_OBJC_METACLASS_RO_$_")+ClassName :
4933 std::string("\01l_OBJC_CLASS_RO_$_")+ClassName);
Fariborz Jahanianc22f2362009-01-31 02:43:27 +00004934 CLASS_RO_GV->setAlignment(
Daniel Dunbar710cb202010-04-25 20:39:32 +00004935 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ClassRonfABITy));
Fariborz Jahanian40a4bcd2009-01-28 01:05:23 +00004936 CLASS_RO_GV->setSection("__DATA, __objc_const");
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004937 return CLASS_RO_GV;
Fariborz Jahanian2612e142009-01-26 22:58:07 +00004938
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004939}
4940
4941/// BuildClassMetaData - This routine defines that to-level meta-data
4942/// for the given ClassName for:
4943/// struct _class_t {
4944/// struct _class_t *isa;
4945/// struct _class_t * const superclass;
4946/// void *cache;
4947/// IMP *vtable;
4948/// struct class_ro_t *ro;
4949/// }
4950///
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00004951llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassMetaData(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004952 std::string &ClassName,
4953 llvm::Constant *IsAGV,
4954 llvm::Constant *SuperClassGV,
4955 llvm::Constant *ClassRoGV,
4956 bool HiddenVisibility) {
Benjamin Kramer22d24c22011-10-15 12:20:02 +00004957 llvm::Constant *Values[] = {
4958 IsAGV,
4959 SuperClassGV,
4960 ObjCEmptyCacheVar, // &ObjCEmptyCacheVar
4961 ObjCEmptyVtableVar, // &ObjCEmptyVtableVar
4962 ClassRoGV // &CLASS_RO_GV
4963 };
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004964 if (!Values[1])
4965 Values[1] = llvm::Constant::getNullValue(ObjCTypes.ClassnfABIPtrTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004966 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassnfABITy,
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004967 Values);
Daniel Dunbarc6928bb2009-03-01 04:40:10 +00004968 llvm::GlobalVariable *GV = GetClassGlobal(ClassName);
4969 GV->setInitializer(Init);
Fariborz Jahanian04087232009-01-31 01:07:39 +00004970 GV->setSection("__DATA, __objc_data");
Fariborz Jahanianc22f2362009-01-31 02:43:27 +00004971 GV->setAlignment(
Daniel Dunbar710cb202010-04-25 20:39:32 +00004972 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ClassnfABITy));
Fariborz Jahanian82208252009-01-31 00:59:10 +00004973 if (HiddenVisibility)
4974 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00004975 return GV;
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00004976}
4977
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004978bool
Fariborz Jahaniana6bed832009-05-21 01:03:45 +00004979CGObjCNonFragileABIMac::ImplementationIsNonLazy(const ObjCImplDecl *OD) const {
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004980 return OD->getClassMethod(GetNullarySelector("load")) != 0;
Daniel Dunbar9a017d72009-05-15 22:33:15 +00004981}
4982
Daniel Dunbar961202372009-05-03 12:57:56 +00004983void CGObjCNonFragileABIMac::GetClassSizeInfo(const ObjCImplementationDecl *OID,
Daniel Dunbar554fd792009-04-19 23:41:48 +00004984 uint32_t &InstanceStart,
4985 uint32_t &InstanceSize) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004986 const ASTRecordLayout &RL =
Daniel Dunbar9252ee12009-05-04 21:26:30 +00004987 CGM.getContext().getASTObjCImplementationLayout(OID);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00004988
Daniel Dunbar9b042e02009-05-04 23:23:09 +00004989 // InstanceSize is really instance end.
Ken Dyckd5090c12011-02-11 02:20:09 +00004990 InstanceSize = RL.getDataSize().getQuantity();
Daniel Dunbar9b042e02009-05-04 23:23:09 +00004991
4992 // If there are no fields, the start is the same as the end.
4993 if (!RL.getFieldCount())
4994 InstanceStart = InstanceSize;
4995 else
Ken Dyckc5ca8762011-04-14 00:43:09 +00004996 InstanceStart = RL.getFieldOffset(0) / CGM.getContext().getCharWidth();
Daniel Dunbar554fd792009-04-19 23:41:48 +00004997}
4998
Fariborz Jahanian71394042009-01-23 23:53:38 +00004999void CGObjCNonFragileABIMac::GenerateClass(const ObjCImplementationDecl *ID) {
5000 std::string ClassName = ID->getNameAsString();
5001 if (!ObjCEmptyCacheVar) {
5002 ObjCEmptyCacheVar = new llvm::GlobalVariable(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005003 CGM.getModule(),
5004 ObjCTypes.CacheTy,
5005 false,
5006 llvm::GlobalValue::ExternalLinkage,
5007 0,
5008 "_objc_empty_cache");
5009
Fariborz Jahanian71394042009-01-23 23:53:38 +00005010 ObjCEmptyVtableVar = new llvm::GlobalVariable(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005011 CGM.getModule(),
5012 ObjCTypes.ImpnfABITy,
5013 false,
5014 llvm::GlobalValue::ExternalLinkage,
5015 0,
5016 "_objc_empty_vtable");
Fariborz Jahanian71394042009-01-23 23:53:38 +00005017 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005018 assert(ID->getClassInterface() &&
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005019 "CGObjCNonFragileABIMac::GenerateClass - class is 0");
Daniel Dunbare3f5cfc2009-04-20 20:18:54 +00005020 // FIXME: Is this correct (that meta class size is never computed)?
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005021 uint32_t InstanceStart =
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00005022 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ClassnfABITy);
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00005023 uint32_t InstanceSize = InstanceStart;
5024 uint32_t flags = CLS_META;
Daniel Dunbar15894b72009-04-07 05:48:37 +00005025 std::string ObjCMetaClassName(getMetaclassSymbolPrefix());
5026 std::string ObjCClassName(getClassSymbolPrefix());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005027
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00005028 llvm::GlobalVariable *SuperClassGV, *IsAGV;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005029
5030 bool classIsHidden =
John McCall457a04e2010-10-22 21:05:15 +00005031 ID->getClassInterface()->getVisibility() == HiddenVisibility;
Fariborz Jahanian82208252009-01-31 00:59:10 +00005032 if (classIsHidden)
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005033 flags |= OBJC2_CLS_HIDDEN;
John McCall31168b02011-06-15 23:02:42 +00005034 if (ID->hasCXXStructors())
Fariborz Jahanian0dec1e02010-04-28 21:28:56 +00005035 flags |= eClassFlags_ABI2_HasCXXStructors;
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005036 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00005037 // class is root
5038 flags |= CLS_ROOT;
Daniel Dunbarc6928bb2009-03-01 04:40:10 +00005039 SuperClassGV = GetClassGlobal(ObjCClassName + ClassName);
Fariborz Jahanian899e7eb2009-04-14 18:41:56 +00005040 IsAGV = GetClassGlobal(ObjCMetaClassName + ClassName);
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00005041 } else {
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00005042 // Has a root. Current class is not a root.
Fariborz Jahanian03b300b2009-02-26 18:23:47 +00005043 const ObjCInterfaceDecl *Root = ID->getClassInterface();
5044 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
5045 Root = Super;
Fariborz Jahanian899e7eb2009-04-14 18:41:56 +00005046 IsAGV = GetClassGlobal(ObjCMetaClassName + Root->getNameAsString());
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00005047 if (Root->isWeakImported())
Fariborz Jahaniana6227fd2009-12-01 18:25:24 +00005048 IsAGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian03b300b2009-02-26 18:23:47 +00005049 // work on super class metadata symbol.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005050 std::string SuperClassName =
Fariborz Jahaniana6227fd2009-12-01 18:25:24 +00005051 ObjCMetaClassName +
5052 ID->getClassInterface()->getSuperClass()->getNameAsString();
Fariborz Jahanian899e7eb2009-04-14 18:41:56 +00005053 SuperClassGV = GetClassGlobal(SuperClassName);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00005054 if (ID->getClassInterface()->getSuperClass()->isWeakImported())
Fariborz Jahanian67260552009-11-17 21:37:35 +00005055 SuperClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian9e3ad522009-01-24 20:21:50 +00005056 }
5057 llvm::GlobalVariable *CLASS_RO_GV = BuildClassRoTInitializer(flags,
5058 InstanceStart,
5059 InstanceSize,ID);
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00005060 std::string TClassName = ObjCMetaClassName + ClassName;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005061 llvm::GlobalVariable *MetaTClass =
Fariborz Jahanian82208252009-01-31 00:59:10 +00005062 BuildClassMetaData(TClassName, IsAGV, SuperClassGV, CLASS_RO_GV,
5063 classIsHidden);
Fariborz Jahanian67260552009-11-17 21:37:35 +00005064 DefinedMetaClasses.push_back(MetaTClass);
Daniel Dunbar15894b72009-04-07 05:48:37 +00005065
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00005066 // Metadata for the class
5067 flags = CLS;
Fariborz Jahanian82208252009-01-31 00:59:10 +00005068 if (classIsHidden)
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005069 flags |= OBJC2_CLS_HIDDEN;
John McCall31168b02011-06-15 23:02:42 +00005070 if (ID->hasCXXStructors())
Fariborz Jahanian0dec1e02010-04-28 21:28:56 +00005071 flags |= eClassFlags_ABI2_HasCXXStructors;
Daniel Dunbar8f28d012009-04-08 04:21:03 +00005072
Douglas Gregor78bd61f2009-06-18 16:11:24 +00005073 if (hasObjCExceptionAttribute(CGM.getContext(), ID->getClassInterface()))
Daniel Dunbar8f28d012009-04-08 04:21:03 +00005074 flags |= CLS_EXCEPTION;
5075
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005076 if (!ID->getClassInterface()->getSuperClass()) {
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00005077 flags |= CLS_ROOT;
5078 SuperClassGV = 0;
Chris Lattnerb433b272009-04-19 06:02:28 +00005079 } else {
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00005080 // Has a root. Current class is not a root.
Fariborz Jahanian03b300b2009-02-26 18:23:47 +00005081 std::string RootClassName =
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00005082 ID->getClassInterface()->getSuperClass()->getNameAsString();
Daniel Dunbarc6928bb2009-03-01 04:40:10 +00005083 SuperClassGV = GetClassGlobal(ObjCClassName + RootClassName);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00005084 if (ID->getClassInterface()->getSuperClass()->isWeakImported())
Fariborz Jahanian67260552009-11-17 21:37:35 +00005085 SuperClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00005086 }
Daniel Dunbar961202372009-05-03 12:57:56 +00005087 GetClassSizeInfo(ID, InstanceStart, InstanceSize);
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00005088 CLASS_RO_GV = BuildClassRoTInitializer(flags,
Fariborz Jahaniana887e632009-01-24 23:43:01 +00005089 InstanceStart,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005090 InstanceSize,
Fariborz Jahaniana887e632009-01-24 23:43:01 +00005091 ID);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005092
Fariborz Jahanian4723fb72009-01-24 21:21:53 +00005093 TClassName = ObjCClassName + ClassName;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005094 llvm::GlobalVariable *ClassMD =
Fariborz Jahanian82208252009-01-31 00:59:10 +00005095 BuildClassMetaData(TClassName, MetaTClass, SuperClassGV, CLASS_RO_GV,
5096 classIsHidden);
Fariborz Jahanian279abd32009-01-30 20:55:31 +00005097 DefinedClasses.push_back(ClassMD);
Daniel Dunbar8f28d012009-04-08 04:21:03 +00005098
Daniel Dunbar9a017d72009-05-15 22:33:15 +00005099 // Determine if this class is also "non-lazy".
5100 if (ImplementationIsNonLazy(ID))
5101 DefinedNonLazyClasses.push_back(ClassMD);
5102
Daniel Dunbar8f28d012009-04-08 04:21:03 +00005103 // Force the definition of the EHType if necessary.
5104 if (flags & CLS_EXCEPTION)
5105 GetInterfaceEHType(ID->getClassInterface(), true);
Fariborz Jahanianc0577942011-04-22 22:02:28 +00005106 // Make sure method definition entries are all clear for next implementation.
5107 MethodDefinitions.clear();
Fariborz Jahanian71394042009-01-23 23:53:38 +00005108}
5109
Fariborz Jahanian097feda2009-01-30 18:58:59 +00005110/// GenerateProtocolRef - This routine is called to generate code for
5111/// a protocol reference expression; as in:
5112/// @code
5113/// @protocol(Proto1);
5114/// @endcode
5115/// It generates a weak reference to l_OBJC_PROTOCOL_REFERENCE_$_Proto1
5116/// which will hold address of the protocol meta-data.
5117///
5118llvm::Value *CGObjCNonFragileABIMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005119 const ObjCProtocolDecl *PD) {
5120
Fariborz Jahanian464423d2009-04-10 18:47:34 +00005121 // This routine is called for @protocol only. So, we must build definition
5122 // of protocol's meta-data (not a reference to it!)
5123 //
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005124 llvm::Constant *Init =
5125 llvm::ConstantExpr::getBitCast(GetOrEmitProtocol(PD),
Douglas Gregor020de322012-01-17 18:36:30 +00005126 ObjCTypes.getExternalProtocolPtrTy());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005127
Fariborz Jahanian097feda2009-01-30 18:58:59 +00005128 std::string ProtocolName("\01l_OBJC_PROTOCOL_REFERENCE_$_");
Daniel Dunbar56df9772010-08-17 22:39:59 +00005129 ProtocolName += PD->getName();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005130
Fariborz Jahanian097feda2009-01-30 18:58:59 +00005131 llvm::GlobalVariable *PTGV = CGM.getModule().getGlobalVariable(ProtocolName);
5132 if (PTGV)
Benjamin Kramer76399eb2011-09-27 21:06:10 +00005133 return Builder.CreateLoad(PTGV);
Fariborz Jahanian097feda2009-01-30 18:58:59 +00005134 PTGV = new llvm::GlobalVariable(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005135 CGM.getModule(),
5136 Init->getType(), false,
5137 llvm::GlobalValue::WeakAnyLinkage,
5138 Init,
5139 ProtocolName);
Fariborz Jahanian097feda2009-01-30 18:58:59 +00005140 PTGV->setSection("__DATA, __objc_protorefs, coalesced, no_dead_strip");
5141 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerf56501c2009-07-17 23:57:13 +00005142 CGM.AddUsedGlobal(PTGV);
Benjamin Kramer76399eb2011-09-27 21:06:10 +00005143 return Builder.CreateLoad(PTGV);
Fariborz Jahanian097feda2009-01-30 18:58:59 +00005144}
5145
Fariborz Jahanian0c8d0602009-01-26 18:32:24 +00005146/// GenerateCategory - Build metadata for a category implementation.
5147/// struct _category_t {
5148/// const char * const name;
5149/// struct _class_t *const cls;
5150/// const struct _method_list_t * const instance_methods;
5151/// const struct _method_list_t * const class_methods;
5152/// const struct _protocol_list_t * const protocols;
5153/// const struct _prop_list_t * const properties;
5154/// }
5155///
Daniel Dunbar9a017d72009-05-15 22:33:15 +00005156void CGObjCNonFragileABIMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Fariborz Jahanian0c8d0602009-01-26 18:32:24 +00005157 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Fariborz Jahanian2612e142009-01-26 22:58:07 +00005158 const char *Prefix = "\01l_OBJC_$_CATEGORY_";
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005159 std::string ExtCatName(Prefix + Interface->getNameAsString()+
5160 "_$_" + OCD->getNameAsString());
5161 std::string ExtClassName(getClassSymbolPrefix() +
Daniel Dunbar15894b72009-04-07 05:48:37 +00005162 Interface->getNameAsString());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005163
Benjamin Kramer22d24c22011-10-15 12:20:02 +00005164 llvm::Constant *Values[6];
Fariborz Jahanian0c8d0602009-01-26 18:32:24 +00005165 Values[0] = GetClassName(OCD->getIdentifier());
5166 // meta-class entry symbol
Daniel Dunbarc6928bb2009-03-01 04:40:10 +00005167 llvm::GlobalVariable *ClassGV = GetClassGlobal(ExtClassName);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00005168 if (Interface->isWeakImported())
Fariborz Jahanian3ad8dcf2009-11-17 22:02:21 +00005169 ClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
5170
Fariborz Jahanian0c8d0602009-01-26 18:32:24 +00005171 Values[1] = ClassGV;
Fariborz Jahanian2612e142009-01-26 22:58:07 +00005172 std::vector<llvm::Constant*> Methods;
5173 std::string MethodListName(Prefix);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005174 MethodListName += "INSTANCE_METHODS_" + Interface->getNameAsString() +
Fariborz Jahanian2612e142009-01-26 22:58:07 +00005175 "_$_" + OCD->getNameAsString();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005176
5177 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005178 i = OCD->instmeth_begin(), e = OCD->instmeth_end(); i != e; ++i) {
Fariborz Jahanian2612e142009-01-26 22:58:07 +00005179 // Instance methods should always be defined.
5180 Methods.push_back(GetMethodConstant(*i));
5181 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005182
5183 Values[2] = EmitMethodList(MethodListName,
5184 "__DATA, __objc_const",
Fariborz Jahanian2612e142009-01-26 22:58:07 +00005185 Methods);
5186
5187 MethodListName = Prefix;
5188 MethodListName += "CLASS_METHODS_" + Interface->getNameAsString() + "_$_" +
5189 OCD->getNameAsString();
5190 Methods.clear();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005191 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005192 i = OCD->classmeth_begin(), e = OCD->classmeth_end(); i != e; ++i) {
Fariborz Jahanian2612e142009-01-26 22:58:07 +00005193 // Class methods should always be defined.
5194 Methods.push_back(GetMethodConstant(*i));
5195 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005196
5197 Values[3] = EmitMethodList(MethodListName,
5198 "__DATA, __objc_const",
Fariborz Jahanian2612e142009-01-26 22:58:07 +00005199 Methods);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005200 const ObjCCategoryDecl *Category =
Fariborz Jahanian066347e2009-01-28 22:18:42 +00005201 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Fariborz Jahaniand8fc1052009-02-13 17:52:22 +00005202 if (Category) {
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005203 llvm::SmallString<256> ExtName;
5204 llvm::raw_svector_ostream(ExtName) << Interface->getName() << "_$_"
5205 << OCD->getName();
Fariborz Jahaniand8fc1052009-02-13 17:52:22 +00005206 Values[4] = EmitProtocolList("\01l_OBJC_CATEGORY_PROTOCOLS_$_"
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005207 + Interface->getName() + "_$_"
5208 + Category->getName(),
Fariborz Jahaniand8fc1052009-02-13 17:52:22 +00005209 Category->protocol_begin(),
5210 Category->protocol_end());
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005211 Values[5] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(),
5212 OCD, Category, ObjCTypes);
Mike Stump658fe022009-07-30 22:28:39 +00005213 } else {
Owen Anderson0b75f232009-07-31 20:28:54 +00005214 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
5215 Values[5] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
Fariborz Jahaniand8fc1052009-02-13 17:52:22 +00005216 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005217
5218 llvm::Constant *Init =
5219 llvm::ConstantStruct::get(ObjCTypes.CategorynfABITy,
Fariborz Jahanian0c8d0602009-01-26 18:32:24 +00005220 Values);
5221 llvm::GlobalVariable *GCATV
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005222 = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.CategorynfABITy,
Fariborz Jahanian0c8d0602009-01-26 18:32:24 +00005223 false,
5224 llvm::GlobalValue::InternalLinkage,
5225 Init,
Owen Andersonc10c8d32009-07-08 19:05:04 +00005226 ExtCatName);
Fariborz Jahanianc22f2362009-01-31 02:43:27 +00005227 GCATV->setAlignment(
Daniel Dunbar710cb202010-04-25 20:39:32 +00005228 CGM.getTargetData().getABITypeAlignment(ObjCTypes.CategorynfABITy));
Fariborz Jahanian40a4bcd2009-01-28 01:05:23 +00005229 GCATV->setSection("__DATA, __objc_const");
Chris Lattnerf56501c2009-07-17 23:57:13 +00005230 CGM.AddUsedGlobal(GCATV);
Fariborz Jahanian0c8d0602009-01-26 18:32:24 +00005231 DefinedCategories.push_back(GCATV);
Daniel Dunbar9a017d72009-05-15 22:33:15 +00005232
5233 // Determine if this category is also "non-lazy".
5234 if (ImplementationIsNonLazy(OCD))
5235 DefinedNonLazyCategories.push_back(GCATV);
Fariborz Jahanianc0577942011-04-22 22:02:28 +00005236 // method definition entries must be clear for next implementation.
5237 MethodDefinitions.clear();
Fariborz Jahanian0c8d0602009-01-26 18:32:24 +00005238}
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005239
5240/// GetMethodConstant - Return a struct objc_method constant for the
5241/// given method if it has been defined. The result is null if the
5242/// method has not been defined. The return value has type MethodPtrTy.
5243llvm::Constant *CGObjCNonFragileABIMac::GetMethodConstant(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005244 const ObjCMethodDecl *MD) {
Argyrios Kyrtzidis13257c52010-08-09 10:54:20 +00005245 llvm::Function *Fn = GetMethodDefinition(MD);
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005246 if (!Fn)
5247 return 0;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005248
Benjamin Kramer22d24c22011-10-15 12:20:02 +00005249 llvm::Constant *Method[] = {
Owen Andersonade90fd2009-07-29 18:54:39 +00005250 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
Benjamin Kramer22d24c22011-10-15 12:20:02 +00005251 ObjCTypes.SelectorPtrTy),
5252 GetMethodVarType(MD),
5253 llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy)
5254 };
Owen Anderson0e0189d2009-07-27 22:29:56 +00005255 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005256}
5257
5258/// EmitMethodList - Build meta-data for method declarations
5259/// struct _method_list_t {
5260/// uint32_t entsize; // sizeof(struct _objc_method)
5261/// uint32_t method_count;
5262/// struct _objc_method method_list[method_count];
5263/// }
5264///
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005265llvm::Constant *CGObjCNonFragileABIMac::EmitMethodList(Twine Name,
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005266 const char *Section,
5267 const ConstantVector &Methods) {
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005268 // Return null for empty list.
5269 if (Methods.empty())
Owen Anderson0b75f232009-07-31 20:28:54 +00005270 return llvm::Constant::getNullValue(ObjCTypes.MethodListnfABIPtrTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005271
Chris Lattnere64d7ba2011-06-20 04:01:35 +00005272 llvm::Constant *Values[3];
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005273 // sizeof(struct _objc_method)
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00005274 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.MethodTy);
Owen Andersonb7a2fe62009-07-24 23:12:58 +00005275 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005276 // method_count
Owen Andersonb7a2fe62009-07-24 23:12:58 +00005277 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
Owen Anderson9793f0e2009-07-29 22:16:19 +00005278 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005279 Methods.size());
Owen Anderson47034e12009-07-28 18:33:04 +00005280 Values[2] = llvm::ConstantArray::get(AT, Methods);
Chris Lattnere64d7ba2011-06-20 04:01:35 +00005281 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005282
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005283 llvm::GlobalVariable *GV =
Owen Andersonc10c8d32009-07-08 19:05:04 +00005284 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Chris Lattnere64d7ba2011-06-20 04:01:35 +00005285 llvm::GlobalValue::InternalLinkage, Init, Name);
5286 GV->setAlignment(CGM.getTargetData().getABITypeAlignment(Init->getType()));
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005287 GV->setSection(Section);
Chris Lattnerf56501c2009-07-17 23:57:13 +00005288 CGM.AddUsedGlobal(GV);
Chris Lattnere64d7ba2011-06-20 04:01:35 +00005289 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.MethodListnfABIPtrTy);
Fariborz Jahanian99113fd2009-01-26 21:38:32 +00005290}
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005291
Fariborz Jahanian4e7ae062009-02-10 20:21:06 +00005292/// ObjCIvarOffsetVariable - Returns the ivar offset variable for
5293/// the given ivar.
Daniel Dunbar8c7f9812010-04-02 21:14:02 +00005294llvm::GlobalVariable *
5295CGObjCNonFragileABIMac::ObjCIvarOffsetVariable(const ObjCInterfaceDecl *ID,
5296 const ObjCIvarDecl *Ivar) {
5297 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
Daniel Dunbar3f86b9c2009-05-05 00:36:57 +00005298 std::string Name = "OBJC_IVAR_$_" + Container->getNameAsString() +
Douglas Gregorbcced4e2009-04-09 21:40:53 +00005299 '.' + Ivar->getNameAsString();
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005300 llvm::GlobalVariable *IvarOffsetGV =
Fariborz Jahanian4e7ae062009-02-10 20:21:06 +00005301 CGM.getModule().getGlobalVariable(Name);
5302 if (!IvarOffsetGV)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005303 IvarOffsetGV =
Owen Andersonc10c8d32009-07-08 19:05:04 +00005304 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.LongTy,
Fariborz Jahanian4e7ae062009-02-10 20:21:06 +00005305 false,
5306 llvm::GlobalValue::ExternalLinkage,
5307 0,
Owen Andersonc10c8d32009-07-08 19:05:04 +00005308 Name);
Fariborz Jahanian4e7ae062009-02-10 20:21:06 +00005309 return IvarOffsetGV;
5310}
5311
Daniel Dunbar8c7f9812010-04-02 21:14:02 +00005312llvm::Constant *
5313CGObjCNonFragileABIMac::EmitIvarOffsetVar(const ObjCInterfaceDecl *ID,
5314 const ObjCIvarDecl *Ivar,
5315 unsigned long int Offset) {
Daniel Dunbarbf90b332009-04-19 00:44:02 +00005316 llvm::GlobalVariable *IvarOffsetGV = ObjCIvarOffsetVariable(ID, Ivar);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005317 IvarOffsetGV->setInitializer(llvm::ConstantInt::get(ObjCTypes.LongTy,
Daniel Dunbarbf90b332009-04-19 00:44:02 +00005318 Offset));
Fariborz Jahanianc22f2362009-01-31 02:43:27 +00005319 IvarOffsetGV->setAlignment(
Daniel Dunbar710cb202010-04-25 20:39:32 +00005320 CGM.getTargetData().getABITypeAlignment(ObjCTypes.LongTy));
Daniel Dunbarbf90b332009-04-19 00:44:02 +00005321
Mike Stump18bb9282009-05-16 07:57:57 +00005322 // FIXME: This matches gcc, but shouldn't the visibility be set on the use as
5323 // well (i.e., in ObjCIvarOffsetVariable).
Daniel Dunbarbf90b332009-04-19 00:44:02 +00005324 if (Ivar->getAccessControl() == ObjCIvarDecl::Private ||
5325 Ivar->getAccessControl() == ObjCIvarDecl::Package ||
John McCall457a04e2010-10-22 21:05:15 +00005326 ID->getVisibility() == HiddenVisibility)
Fariborz Jahanian3d3426f2009-01-28 01:36:42 +00005327 IvarOffsetGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbarf5f359f2009-04-14 06:00:08 +00005328 else
Fariborz Jahanianbc3c77b2009-04-06 18:30:00 +00005329 IvarOffsetGV->setVisibility(llvm::GlobalValue::DefaultVisibility);
Bill Wendlingf7d45982011-05-04 21:37:25 +00005330 IvarOffsetGV->setSection("__DATA, __objc_ivar");
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00005331 return IvarOffsetGV;
Fariborz Jahanian40a4bcd2009-01-28 01:05:23 +00005332}
5333
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005334/// EmitIvarList - Emit the ivar list for the given
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005335/// implementation. The return value has type
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005336/// IvarListnfABIPtrTy.
5337/// struct _ivar_t {
5338/// unsigned long int *offset; // pointer to ivar offset location
5339/// char *name;
5340/// char *type;
5341/// uint32_t alignment;
5342/// uint32_t size;
5343/// }
5344/// struct _ivar_list_t {
5345/// uint32 entsize; // sizeof(struct _ivar_t)
5346/// uint32 count;
5347/// struct _iver_t list[count];
5348/// }
5349///
Daniel Dunbarf5c18462009-04-20 06:54:31 +00005350
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005351llvm::Constant *CGObjCNonFragileABIMac::EmitIvarList(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005352 const ObjCImplementationDecl *ID) {
5353
Benjamin Kramer22d24c22011-10-15 12:20:02 +00005354 std::vector<llvm::Constant*> Ivars;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005355
Jordy Rosea91768e2011-07-22 02:08:32 +00005356 const ObjCInterfaceDecl *OID = ID->getClassInterface();
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005357 assert(OID && "CGObjCNonFragileABIMac::EmitIvarList - null interface");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005358
Fariborz Jahanian40a4bcd2009-01-28 01:05:23 +00005359 // FIXME. Consolidate this with similar code in GenerateClass.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005360
Jordy Rosea91768e2011-07-22 02:08:32 +00005361 for (const ObjCIvarDecl *IVD = OID->all_declared_ivar_begin();
Fariborz Jahanianb26d5782011-06-28 18:05:25 +00005362 IVD; IVD = IVD->getNextIvar()) {
Fariborz Jahanian7c809592009-06-04 01:19:09 +00005363 // Ignore unnamed bit-fields.
5364 if (!IVD->getDeclName())
5365 continue;
Benjamin Kramer22d24c22011-10-15 12:20:02 +00005366 llvm::Constant *Ivar[5];
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005367 Ivar[0] = EmitIvarOffsetVar(ID->getClassInterface(), IVD,
Daniel Dunbar961202372009-05-03 12:57:56 +00005368 ComputeIvarBaseOffset(CGM, ID, IVD));
Daniel Dunbar725dc2c2009-04-22 08:22:17 +00005369 Ivar[1] = GetMethodVarName(IVD->getIdentifier());
5370 Ivar[2] = GetMethodVarType(IVD);
Chris Lattner2192fe52011-07-18 04:24:23 +00005371 llvm::Type *FieldTy =
Daniel Dunbar725dc2c2009-04-22 08:22:17 +00005372 CGM.getTypes().ConvertTypeForMem(IVD->getType());
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00005373 unsigned Size = CGM.getTargetData().getTypeAllocSize(FieldTy);
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005374 unsigned Align = CGM.getContext().getPreferredTypeAlign(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005375 IVD->getType().getTypePtr()) >> 3;
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005376 Align = llvm::Log2_32(Align);
Owen Andersonb7a2fe62009-07-24 23:12:58 +00005377 Ivar[3] = llvm::ConstantInt::get(ObjCTypes.IntTy, Align);
Daniel Dunbarae032262009-04-20 00:33:43 +00005378 // NOTE. Size of a bitfield does not match gcc's, because of the
5379 // way bitfields are treated special in each. But I am told that
5380 // 'size' for bitfield ivars is ignored by the runtime so it does
5381 // not matter. If it matters, there is enough info to get the
5382 // bitfield right!
Owen Andersonb7a2fe62009-07-24 23:12:58 +00005383 Ivar[4] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Owen Anderson0e0189d2009-07-27 22:29:56 +00005384 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarnfABITy, Ivar));
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005385 }
5386 // Return null for empty list.
5387 if (Ivars.empty())
Owen Anderson0b75f232009-07-31 20:28:54 +00005388 return llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy);
Chris Lattnere64d7ba2011-06-20 04:01:35 +00005389
5390 llvm::Constant *Values[3];
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00005391 unsigned Size = CGM.getTargetData().getTypeAllocSize(ObjCTypes.IvarnfABITy);
Owen Andersonb7a2fe62009-07-24 23:12:58 +00005392 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
5393 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
Owen Anderson9793f0e2009-07-29 22:16:19 +00005394 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarnfABITy,
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005395 Ivars.size());
Owen Anderson47034e12009-07-28 18:33:04 +00005396 Values[2] = llvm::ConstantArray::get(AT, Ivars);
Chris Lattnere64d7ba2011-06-20 04:01:35 +00005397 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005398 const char *Prefix = "\01l_OBJC_$_INSTANCE_VARIABLES_";
5399 llvm::GlobalVariable *GV =
Owen Andersonc10c8d32009-07-08 19:05:04 +00005400 new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanian7415caa2009-01-27 19:38:51 +00005401 llvm::GlobalValue::InternalLinkage,
5402 Init,
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005403 Prefix + OID->getName());
Fariborz Jahanianc22f2362009-01-31 02:43:27 +00005404 GV->setAlignment(
Daniel Dunbar710cb202010-04-25 20:39:32 +00005405 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Fariborz Jahanian40a4bcd2009-01-28 01:05:23 +00005406 GV->setSection("__DATA, __objc_const");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005407
Chris Lattnerf56501c2009-07-17 23:57:13 +00005408 CGM.AddUsedGlobal(GV);
Owen Andersonade90fd2009-07-29 18:54:39 +00005409 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListnfABIPtrTy);
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005410}
5411
5412llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocolRef(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005413 const ObjCProtocolDecl *PD) {
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005414 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005415
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005416 if (!Entry) {
5417 // We use the initializer as a marker of whether this is a forward
5418 // reference or not. At module finalization we add the empty
5419 // contents for protocols which were referenced but never defined.
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005420 Entry =
5421 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy, false,
5422 llvm::GlobalValue::ExternalLinkage,
5423 0,
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005424 "\01l_OBJC_PROTOCOL_$_" + PD->getName());
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005425 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005426 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005427
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005428 return Entry;
5429}
5430
5431/// GetOrEmitProtocol - Generate the protocol meta-data:
5432/// @code
5433/// struct _protocol_t {
5434/// id isa; // NULL
5435/// const char * const protocol_name;
5436/// const struct _protocol_list_t * protocol_list; // super protocols
5437/// const struct method_list_t * const instance_methods;
5438/// const struct method_list_t * const class_methods;
5439/// const struct method_list_t *optionalInstanceMethods;
5440/// const struct method_list_t *optionalClassMethods;
5441/// const struct _prop_list_t * properties;
5442/// const uint32_t size; // sizeof(struct _protocol_t)
5443/// const uint32_t flags; // = 0
Bob Wilson5f4e3a72011-11-30 01:57:58 +00005444/// const char ** extendedMethodTypes;
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005445/// }
5446/// @endcode
5447///
5448
5449llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocol(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005450 const ObjCProtocolDecl *PD) {
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005451 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005452
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005453 // Early exit if a defining object has already been generated.
5454 if (Entry && Entry->hasInitializer())
5455 return Entry;
5456
Douglas Gregora715bff2012-01-01 19:51:50 +00005457 // Use the protocol definition, if there is one.
5458 if (const ObjCProtocolDecl *Def = PD->getDefinition())
5459 PD = Def;
5460
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005461 // Construct method lists.
5462 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
5463 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
Bob Wilson5f4e3a72011-11-30 01:57:58 +00005464 std::vector<llvm::Constant*> MethodTypesExt, OptMethodTypesExt;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005465 for (ObjCProtocolDecl::instmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005466 i = PD->instmeth_begin(), e = PD->instmeth_end(); i != e; ++i) {
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005467 ObjCMethodDecl *MD = *i;
Fariborz Jahaniand9c28b82009-01-30 00:46:37 +00005468 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Douglas Gregora9d84932011-05-27 01:19:52 +00005469 if (!C)
5470 return GetOrEmitProtocolRef(PD);
5471
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005472 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
5473 OptInstanceMethods.push_back(C);
Bob Wilson5f4e3a72011-11-30 01:57:58 +00005474 OptMethodTypesExt.push_back(GetMethodVarType(MD, true));
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005475 } else {
5476 InstanceMethods.push_back(C);
Bob Wilson5f4e3a72011-11-30 01:57:58 +00005477 MethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005478 }
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005479 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005480
5481 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005482 i = PD->classmeth_begin(), e = PD->classmeth_end(); i != e; ++i) {
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005483 ObjCMethodDecl *MD = *i;
Fariborz Jahaniand9c28b82009-01-30 00:46:37 +00005484 llvm::Constant *C = GetMethodDescriptionConstant(MD);
Douglas Gregora9d84932011-05-27 01:19:52 +00005485 if (!C)
5486 return GetOrEmitProtocolRef(PD);
5487
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005488 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
5489 OptClassMethods.push_back(C);
Bob Wilson5f4e3a72011-11-30 01:57:58 +00005490 OptMethodTypesExt.push_back(GetMethodVarType(MD, true));
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005491 } else {
5492 ClassMethods.push_back(C);
Bob Wilson5f4e3a72011-11-30 01:57:58 +00005493 MethodTypesExt.push_back(GetMethodVarType(MD, true));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005494 }
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005495 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005496
Bob Wilson5f4e3a72011-11-30 01:57:58 +00005497 MethodTypesExt.insert(MethodTypesExt.end(),
5498 OptMethodTypesExt.begin(), OptMethodTypesExt.end());
5499
5500 llvm::Constant *Values[11];
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005501 // isa is NULL
Owen Anderson0b75f232009-07-31 20:28:54 +00005502 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ObjectPtrTy);
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005503 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005504 Values[2] = EmitProtocolList("\01l_OBJC_$_PROTOCOL_REFS_" + PD->getName(),
5505 PD->protocol_begin(),
5506 PD->protocol_end());
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005507
Fariborz Jahaniand9c28b82009-01-30 00:46:37 +00005508 Values[3] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_"
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005509 + PD->getName(),
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005510 "__DATA, __objc_const",
5511 InstanceMethods);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005512 Values[4] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_"
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005513 + PD->getName(),
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005514 "__DATA, __objc_const",
5515 ClassMethods);
Fariborz Jahaniand9c28b82009-01-30 00:46:37 +00005516 Values[5] = EmitMethodList("\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_"
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005517 + PD->getName(),
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005518 "__DATA, __objc_const",
5519 OptInstanceMethods);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005520 Values[6] = EmitMethodList("\01l_OBJC_$_PROTOCOL_CLASS_METHODS_OPT_"
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005521 + PD->getName(),
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005522 "__DATA, __objc_const",
5523 OptClassMethods);
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005524 Values[7] = EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + PD->getName(),
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005525 0, PD, ObjCTypes);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005526 uint32_t Size =
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00005527 CGM.getTargetData().getTypeAllocSize(ObjCTypes.ProtocolnfABITy);
Owen Andersonb7a2fe62009-07-24 23:12:58 +00005528 Values[8] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Owen Anderson0b75f232009-07-31 20:28:54 +00005529 Values[9] = llvm::Constant::getNullValue(ObjCTypes.IntTy);
Bob Wilson5f4e3a72011-11-30 01:57:58 +00005530 Values[10] = EmitProtocolMethodTypes("\01l_OBJC_$_PROTOCOL_METHOD_TYPES_"
5531 + PD->getName(),
5532 MethodTypesExt, ObjCTypes);
Owen Anderson0e0189d2009-07-27 22:29:56 +00005533 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolnfABITy,
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005534 Values);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005535
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005536 if (Entry) {
5537 // Already created, fix the linkage and update the initializer.
Mike Stumpa6ca3342009-03-07 16:33:28 +00005538 Entry->setLinkage(llvm::GlobalValue::WeakAnyLinkage);
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005539 Entry->setInitializer(Init);
5540 } else {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005541 Entry =
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005542 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy,
5543 false, llvm::GlobalValue::WeakAnyLinkage, Init,
5544 "\01l_OBJC_PROTOCOL_$_" + PD->getName());
Fariborz Jahanianc22f2362009-01-31 02:43:27 +00005545 Entry->setAlignment(
Daniel Dunbar710cb202010-04-25 20:39:32 +00005546 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ProtocolnfABITy));
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005547 Entry->setSection("__DATA,__datacoal_nt,coalesced");
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005548 }
Fariborz Jahanian61cd4b52009-01-29 20:10:59 +00005549 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerf56501c2009-07-17 23:57:13 +00005550 CGM.AddUsedGlobal(Entry);
5551
Fariborz Jahanian61cd4b52009-01-29 20:10:59 +00005552 // Use this protocol meta-data to build protocol list table in section
5553 // __DATA, __objc_protolist
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005554 llvm::GlobalVariable *PTGV =
5555 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABIPtrTy,
5556 false, llvm::GlobalValue::WeakAnyLinkage, Entry,
5557 "\01l_OBJC_LABEL_PROTOCOL_$_" + PD->getName());
Fariborz Jahanianc22f2362009-01-31 02:43:27 +00005558 PTGV->setAlignment(
Daniel Dunbar710cb202010-04-25 20:39:32 +00005559 CGM.getTargetData().getABITypeAlignment(ObjCTypes.ProtocolnfABIPtrTy));
Daniel Dunbarb25452a2009-04-15 02:56:18 +00005560 PTGV->setSection("__DATA, __objc_protolist, coalesced, no_dead_strip");
Fariborz Jahanian61cd4b52009-01-29 20:10:59 +00005561 PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattnerf56501c2009-07-17 23:57:13 +00005562 CGM.AddUsedGlobal(PTGV);
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005563 return Entry;
5564}
5565
5566/// EmitProtocolList - Generate protocol list meta-data:
5567/// @code
5568/// struct _protocol_list_t {
5569/// long protocol_count; // Note, this is 32/64 bit
5570/// struct _protocol_t[protocol_count];
5571/// }
5572/// @endcode
5573///
5574llvm::Constant *
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005575CGObjCNonFragileABIMac::EmitProtocolList(Twine Name,
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005576 ObjCProtocolDecl::protocol_iterator begin,
5577 ObjCProtocolDecl::protocol_iterator end) {
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005578 std::vector<llvm::Constant*> ProtocolRefs;
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005579
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005580 // Just return null for empty protocol lists
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005581 if (begin == end)
Owen Anderson0b75f232009-07-31 20:28:54 +00005582 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005583
Daniel Dunbar8de90f02009-02-15 07:36:20 +00005584 // FIXME: We shouldn't need to do this lookup here, should we?
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005585 llvm::SmallString<256> TmpName;
5586 Name.toVector(TmpName);
5587 llvm::GlobalVariable *GV =
5588 CGM.getModule().getGlobalVariable(TmpName.str(), true);
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005589 if (GV)
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00005590 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListnfABIPtrTy);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005591
Daniel Dunbar8de90f02009-02-15 07:36:20 +00005592 for (; begin != end; ++begin)
5593 ProtocolRefs.push_back(GetProtocolRef(*begin)); // Implemented???
5594
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005595 // This list is null terminated.
Owen Anderson0b75f232009-07-31 20:28:54 +00005596 ProtocolRefs.push_back(llvm::Constant::getNullValue(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005597 ObjCTypes.ProtocolnfABIPtrTy));
5598
Chris Lattnere64d7ba2011-06-20 04:01:35 +00005599 llvm::Constant *Values[2];
Owen Anderson170229f2009-07-14 23:10:40 +00005600 Values[0] =
Owen Andersonb7a2fe62009-07-24 23:12:58 +00005601 llvm::ConstantInt::get(ObjCTypes.LongTy, ProtocolRefs.size() - 1);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005602 Values[1] =
Owen Anderson47034e12009-07-28 18:33:04 +00005603 llvm::ConstantArray::get(
Owen Anderson9793f0e2009-07-29 22:16:19 +00005604 llvm::ArrayType::get(ObjCTypes.ProtocolnfABIPtrTy,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005605 ProtocolRefs.size()),
5606 ProtocolRefs);
5607
Chris Lattnere64d7ba2011-06-20 04:01:35 +00005608 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Values);
Owen Andersonc10c8d32009-07-08 19:05:04 +00005609 GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false,
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005610 llvm::GlobalValue::InternalLinkage,
Chris Lattnere64d7ba2011-06-20 04:01:35 +00005611 Init, Name);
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005612 GV->setSection("__DATA, __objc_const");
Fariborz Jahanianc22f2362009-01-31 02:43:27 +00005613 GV->setAlignment(
Daniel Dunbar710cb202010-04-25 20:39:32 +00005614 CGM.getTargetData().getABITypeAlignment(Init->getType()));
Chris Lattnerf56501c2009-07-17 23:57:13 +00005615 CGM.AddUsedGlobal(GV);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005616 return llvm::ConstantExpr::getBitCast(GV,
Daniel Dunbar8de90f02009-02-15 07:36:20 +00005617 ObjCTypes.ProtocolListnfABIPtrTy);
Fariborz Jahanian56b3b772009-01-29 19:24:30 +00005618}
5619
Fariborz Jahaniand9c28b82009-01-30 00:46:37 +00005620/// GetMethodDescriptionConstant - This routine build following meta-data:
5621/// struct _objc_method {
5622/// SEL _cmd;
5623/// char *method_type;
5624/// char *_imp;
5625/// }
5626
5627llvm::Constant *
5628CGObjCNonFragileABIMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
Benjamin Kramer22d24c22011-10-15 12:20:02 +00005629 llvm::Constant *Desc[3];
Owen Anderson170229f2009-07-14 23:10:40 +00005630 Desc[0] =
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005631 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
5632 ObjCTypes.SelectorPtrTy);
Fariborz Jahaniand9c28b82009-01-30 00:46:37 +00005633 Desc[1] = GetMethodVarType(MD);
Douglas Gregora9d84932011-05-27 01:19:52 +00005634 if (!Desc[1])
5635 return 0;
5636
Fariborz Jahanian097feda2009-01-30 18:58:59 +00005637 // Protocol methods have no implementation. So, this entry is always NULL.
Owen Anderson0b75f232009-07-31 20:28:54 +00005638 Desc[2] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Owen Anderson0e0189d2009-07-27 22:29:56 +00005639 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Desc);
Fariborz Jahaniand9c28b82009-01-30 00:46:37 +00005640}
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00005641
5642/// EmitObjCValueForIvar - Code Gen for nonfragile ivar reference.
5643/// This code gen. amounts to generating code for:
5644/// @code
5645/// (type *)((char *)base + _OBJC_IVAR_$_.ivar;
5646/// @encode
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005647///
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00005648LValue CGObjCNonFragileABIMac::EmitObjCValueForIvar(
John McCall96fa4842010-05-17 21:00:27 +00005649 CodeGen::CodeGenFunction &CGF,
5650 QualType ObjectTy,
5651 llvm::Value *BaseValue,
5652 const ObjCIvarDecl *Ivar,
5653 unsigned CVRQualifiers) {
5654 ObjCInterfaceDecl *ID = ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar9fd114d2009-04-22 07:32:20 +00005655 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
5656 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00005657}
5658
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00005659llvm::Value *CGObjCNonFragileABIMac::EmitIvarOffset(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005660 CodeGen::CodeGenFunction &CGF,
5661 const ObjCInterfaceDecl *Interface,
5662 const ObjCIvarDecl *Ivar) {
Daniel Dunbarc76493a2009-11-29 21:23:36 +00005663 return CGF.Builder.CreateLoad(ObjCIvarOffsetVariable(Interface, Ivar),"ivar");
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00005664}
5665
John McCall234eac82011-05-13 23:16:18 +00005666static void appendSelectorForMessageRefTable(std::string &buffer,
5667 Selector selector) {
5668 if (selector.isUnarySelector()) {
5669 buffer += selector.getNameForSlot(0);
5670 return;
5671 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005672
John McCall234eac82011-05-13 23:16:18 +00005673 for (unsigned i = 0, e = selector.getNumArgs(); i != e; ++i) {
5674 buffer += selector.getNameForSlot(i);
5675 buffer += '_';
5676 }
5677}
5678
John McCall9e8bb002011-05-14 03:10:52 +00005679/// Emit a "v-table" message send. We emit a weak hidden-visibility
5680/// struct, initially containing the selector pointer and a pointer to
5681/// a "fixup" variant of the appropriate objc_msgSend. To call, we
5682/// load and call the function pointer, passing the address of the
5683/// struct as the second parameter. The runtime determines whether
5684/// the selector is currently emitted using vtable dispatch; if so, it
5685/// substitutes a stub function which simply tail-calls through the
5686/// appropriate vtable slot, and if not, it substitues a stub function
5687/// which tail-calls objc_msgSend. Both stubs adjust the selector
5688/// argument to correctly point to the selector.
5689RValue
5690CGObjCNonFragileABIMac::EmitVTableMessageSend(CodeGenFunction &CGF,
5691 ReturnValueSlot returnSlot,
5692 QualType resultType,
5693 Selector selector,
5694 llvm::Value *arg0,
5695 QualType arg0Type,
5696 bool isSuper,
5697 const CallArgList &formalArgs,
5698 const ObjCMethodDecl *method) {
John McCall234eac82011-05-13 23:16:18 +00005699 // Compute the actual arguments.
5700 CallArgList args;
5701
John McCall9e8bb002011-05-14 03:10:52 +00005702 // First argument: the receiver / super-call structure.
John McCall234eac82011-05-13 23:16:18 +00005703 if (!isSuper)
John McCall9e8bb002011-05-14 03:10:52 +00005704 arg0 = CGF.Builder.CreateBitCast(arg0, ObjCTypes.ObjectPtrTy);
5705 args.add(RValue::get(arg0), arg0Type);
John McCall234eac82011-05-13 23:16:18 +00005706
John McCall9e8bb002011-05-14 03:10:52 +00005707 // Second argument: a pointer to the message ref structure. Leave
5708 // the actual argument value blank for now.
John McCall234eac82011-05-13 23:16:18 +00005709 args.add(RValue::get(0), ObjCTypes.MessageRefCPtrTy);
5710
5711 args.insert(args.end(), formalArgs.begin(), formalArgs.end());
5712
5713 const CGFunctionInfo &fnInfo =
5714 CGM.getTypes().getFunctionInfo(resultType, args,
5715 FunctionType::ExtInfo());
5716
John McCall5880fb82011-05-14 21:12:11 +00005717 NullReturnState nullReturn;
5718
John McCall9e8bb002011-05-14 03:10:52 +00005719 // Find the function to call and the mangled name for the message
5720 // ref structure. Using a different mangled name wouldn't actually
5721 // be a problem; it would just be a waste.
5722 //
5723 // The runtime currently never uses vtable dispatch for anything
5724 // except normal, non-super message-sends.
5725 // FIXME: don't use this for that.
John McCall234eac82011-05-13 23:16:18 +00005726 llvm::Constant *fn = 0;
5727 std::string messageRefName("\01l_");
5728 if (CGM.ReturnTypeUsesSRet(fnInfo)) {
John McCall234eac82011-05-13 23:16:18 +00005729 if (isSuper) {
5730 fn = ObjCTypes.getMessageSendSuper2StretFixupFn();
5731 messageRefName += "objc_msgSendSuper2_stret_fixup";
Chris Lattner396639d2010-08-18 16:09:06 +00005732 } else {
John McCall5880fb82011-05-14 21:12:11 +00005733 nullReturn.init(CGF, arg0);
John McCall234eac82011-05-13 23:16:18 +00005734 fn = ObjCTypes.getMessageSendStretFixupFn();
5735 messageRefName += "objc_msgSend_stret_fixup";
Chris Lattner396639d2010-08-18 16:09:06 +00005736 }
John McCall234eac82011-05-13 23:16:18 +00005737 } else if (!isSuper && CGM.ReturnTypeUsesFPRet(resultType)) {
5738 fn = ObjCTypes.getMessageSendFpretFixupFn();
5739 messageRefName += "objc_msgSend_fpret_fixup";
Mike Stump658fe022009-07-30 22:28:39 +00005740 } else {
John McCall234eac82011-05-13 23:16:18 +00005741 if (isSuper) {
5742 fn = ObjCTypes.getMessageSendSuper2FixupFn();
5743 messageRefName += "objc_msgSendSuper2_fixup";
Chris Lattner396639d2010-08-18 16:09:06 +00005744 } else {
John McCall234eac82011-05-13 23:16:18 +00005745 fn = ObjCTypes.getMessageSendFixupFn();
5746 messageRefName += "objc_msgSend_fixup";
Chris Lattner396639d2010-08-18 16:09:06 +00005747 }
Fariborz Jahaniane4dc35d2009-02-04 20:42:28 +00005748 }
John McCall234eac82011-05-13 23:16:18 +00005749 assert(fn && "CGObjCNonFragileABIMac::EmitMessageSend");
5750 messageRefName += '_';
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005751
John McCall234eac82011-05-13 23:16:18 +00005752 // Append the selector name, except use underscores anywhere we
5753 // would have used colons.
5754 appendSelectorForMessageRefTable(messageRefName, selector);
5755
5756 llvm::GlobalVariable *messageRef
5757 = CGM.getModule().getGlobalVariable(messageRefName);
5758 if (!messageRef) {
John McCall9e8bb002011-05-14 03:10:52 +00005759 // Build the message ref structure.
John McCall234eac82011-05-13 23:16:18 +00005760 llvm::Constant *values[] = { fn, GetMethodVarName(selector) };
Chris Lattnere64d7ba2011-06-20 04:01:35 +00005761 llvm::Constant *init = llvm::ConstantStruct::getAnon(values);
John McCall234eac82011-05-13 23:16:18 +00005762 messageRef = new llvm::GlobalVariable(CGM.getModule(),
5763 init->getType(),
5764 /*constant*/ false,
5765 llvm::GlobalValue::WeakAnyLinkage,
5766 init,
5767 messageRefName);
5768 messageRef->setVisibility(llvm::GlobalValue::HiddenVisibility);
5769 messageRef->setAlignment(16);
5770 messageRef->setSection("__DATA, __objc_msgrefs, coalesced");
5771 }
5772 llvm::Value *mref =
5773 CGF.Builder.CreateBitCast(messageRef, ObjCTypes.MessageRefPtrTy);
5774
John McCall9e8bb002011-05-14 03:10:52 +00005775 // Update the message ref argument.
John McCall234eac82011-05-13 23:16:18 +00005776 args[1].RV = RValue::get(mref);
5777
5778 // Load the function to call from the message ref table.
5779 llvm::Value *callee = CGF.Builder.CreateStructGEP(mref, 0);
5780 callee = CGF.Builder.CreateLoad(callee, "msgSend_fn");
5781
5782 bool variadic = method ? method->isVariadic() : false;
Chris Lattner2192fe52011-07-18 04:24:23 +00005783 llvm::FunctionType *fnType =
John McCall234eac82011-05-13 23:16:18 +00005784 CGF.getTypes().GetFunctionType(fnInfo, variadic);
5785 callee = CGF.Builder.CreateBitCast(callee,
5786 llvm::PointerType::getUnqual(fnType));
5787
John McCall5880fb82011-05-14 21:12:11 +00005788 RValue result = CGF.EmitCall(fnInfo, callee, returnSlot, args);
5789 return nullReturn.complete(CGF, result, resultType);
Fariborz Jahanian3d9296e2009-02-04 00:22:57 +00005790}
5791
5792/// Generate code for a message send expression in the nonfragile abi.
Daniel Dunbaraff9fca2009-09-17 04:01:22 +00005793CodeGen::RValue
5794CGObjCNonFragileABIMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCall78a15112010-05-22 01:48:05 +00005795 ReturnValueSlot Return,
Daniel Dunbaraff9fca2009-09-17 04:01:22 +00005796 QualType ResultType,
5797 Selector Sel,
5798 llvm::Value *Receiver,
Daniel Dunbaraff9fca2009-09-17 04:01:22 +00005799 const CallArgList &CallArgs,
David Chisnall01aa4672010-04-28 19:33:36 +00005800 const ObjCInterfaceDecl *Class,
Daniel Dunbaraff9fca2009-09-17 04:01:22 +00005801 const ObjCMethodDecl *Method) {
John McCall9e8bb002011-05-14 03:10:52 +00005802 return isVTableDispatchedSelector(Sel)
5803 ? EmitVTableMessageSend(CGF, Return, ResultType, Sel,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005804 Receiver, CGF.getContext().getObjCIdType(),
John McCall9e8bb002011-05-14 03:10:52 +00005805 false, CallArgs, Method)
5806 : EmitMessageSend(CGF, Return, ResultType,
5807 EmitSelector(CGF.Builder, Sel),
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005808 Receiver, CGF.getContext().getObjCIdType(),
John McCall9e8bb002011-05-14 03:10:52 +00005809 false, CallArgs, Method, ObjCTypes);
Fariborz Jahanian3d9296e2009-02-04 00:22:57 +00005810}
5811
Daniel Dunbarc6928bb2009-03-01 04:40:10 +00005812llvm::GlobalVariable *
Fariborz Jahanian899e7eb2009-04-14 18:41:56 +00005813CGObjCNonFragileABIMac::GetClassGlobal(const std::string &Name) {
Daniel Dunbarc6928bb2009-03-01 04:40:10 +00005814 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
5815
Daniel Dunbara6468342009-03-02 05:18:14 +00005816 if (!GV) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005817 GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABITy,
Owen Andersonc10c8d32009-07-08 19:05:04 +00005818 false, llvm::GlobalValue::ExternalLinkage,
5819 0, Name);
Daniel Dunbarc6928bb2009-03-01 04:40:10 +00005820 }
5821
5822 return GV;
5823}
5824
John McCall31168b02011-06-15 23:02:42 +00005825llvm::Value *CGObjCNonFragileABIMac::EmitClassRefFromId(CGBuilderTy &Builder,
5826 IdentifierInfo *II) {
5827 llvm::GlobalVariable *&Entry = ClassReferences[II];
5828
Fariborz Jahanian33f66e62009-02-05 20:41:40 +00005829 if (!Entry) {
John McCall31168b02011-06-15 23:02:42 +00005830 std::string ClassName(getClassSymbolPrefix() + II->getName().str());
Daniel Dunbarc6928bb2009-03-01 04:40:10 +00005831 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005832 Entry =
John McCall31168b02011-06-15 23:02:42 +00005833 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy,
5834 false, llvm::GlobalValue::InternalLinkage,
5835 ClassGV,
5836 "\01L_OBJC_CLASSLIST_REFERENCES_$_");
Fariborz Jahanian33f66e62009-02-05 20:41:40 +00005837 Entry->setAlignment(
John McCall31168b02011-06-15 23:02:42 +00005838 CGM.getTargetData().getABITypeAlignment(
5839 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005840 Entry->setSection("__DATA, __objc_classrefs, regular, no_dead_strip");
Chris Lattnerf56501c2009-07-17 23:57:13 +00005841 CGM.AddUsedGlobal(Entry);
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005842 }
John McCall31168b02011-06-15 23:02:42 +00005843
Benjamin Kramer76399eb2011-09-27 21:06:10 +00005844 return Builder.CreateLoad(Entry);
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005845}
Fariborz Jahanian33f66e62009-02-05 20:41:40 +00005846
John McCall31168b02011-06-15 23:02:42 +00005847llvm::Value *CGObjCNonFragileABIMac::EmitClassRef(CGBuilderTy &Builder,
5848 const ObjCInterfaceDecl *ID) {
5849 return EmitClassRefFromId(Builder, ID->getIdentifier());
5850}
5851
5852llvm::Value *CGObjCNonFragileABIMac::EmitNSAutoreleasePoolClassRef(
5853 CGBuilderTy &Builder) {
5854 IdentifierInfo *II = &CGM.getContext().Idents.get("NSAutoreleasePool");
5855 return EmitClassRefFromId(Builder, II);
5856}
5857
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005858llvm::Value *
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005859CGObjCNonFragileABIMac::EmitSuperClassRef(CGBuilderTy &Builder,
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005860 const ObjCInterfaceDecl *ID) {
5861 llvm::GlobalVariable *&Entry = SuperClassReferences[ID->getIdentifier()];
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005862
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005863 if (!Entry) {
5864 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5865 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005866 Entry =
5867 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy,
Owen Andersonc10c8d32009-07-08 19:05:04 +00005868 false, llvm::GlobalValue::InternalLinkage,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005869 ClassGV,
Owen Andersonc10c8d32009-07-08 19:05:04 +00005870 "\01L_OBJC_CLASSLIST_SUP_REFS_$_");
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005871 Entry->setAlignment(
Daniel Dunbar710cb202010-04-25 20:39:32 +00005872 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005873 ObjCTypes.ClassnfABIPtrTy));
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005874 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Chris Lattnerf56501c2009-07-17 23:57:13 +00005875 CGM.AddUsedGlobal(Entry);
Fariborz Jahanian33f66e62009-02-05 20:41:40 +00005876 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005877
Benjamin Kramer76399eb2011-09-27 21:06:10 +00005878 return Builder.CreateLoad(Entry);
Fariborz Jahanian33f66e62009-02-05 20:41:40 +00005879}
5880
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005881/// EmitMetaClassRef - Return a Value * of the address of _class_t
5882/// meta-data
5883///
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005884llvm::Value *CGObjCNonFragileABIMac::EmitMetaClassRef(CGBuilderTy &Builder,
5885 const ObjCInterfaceDecl *ID) {
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005886 llvm::GlobalVariable * &Entry = MetaClassReferences[ID->getIdentifier()];
5887 if (Entry)
Benjamin Kramer76399eb2011-09-27 21:06:10 +00005888 return Builder.CreateLoad(Entry);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005889
Daniel Dunbar15894b72009-04-07 05:48:37 +00005890 std::string MetaClassName(getMetaclassSymbolPrefix() + ID->getNameAsString());
Fariborz Jahanian899e7eb2009-04-14 18:41:56 +00005891 llvm::GlobalVariable *MetaClassGV = GetClassGlobal(MetaClassName);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005892 Entry =
Owen Andersonc10c8d32009-07-08 19:05:04 +00005893 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy, false,
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005894 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005895 MetaClassGV,
Owen Andersonc10c8d32009-07-08 19:05:04 +00005896 "\01L_OBJC_CLASSLIST_SUP_REFS_$_");
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005897 Entry->setAlignment(
Daniel Dunbar710cb202010-04-25 20:39:32 +00005898 CGM.getTargetData().getABITypeAlignment(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005899 ObjCTypes.ClassnfABIPtrTy));
5900
Daniel Dunbare60aa052009-04-15 19:03:14 +00005901 Entry->setSection("__DATA, __objc_superrefs, regular, no_dead_strip");
Chris Lattnerf56501c2009-07-17 23:57:13 +00005902 CGM.AddUsedGlobal(Entry);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005903
Benjamin Kramer76399eb2011-09-27 21:06:10 +00005904 return Builder.CreateLoad(Entry);
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005905}
5906
Fariborz Jahanian33f66e62009-02-05 20:41:40 +00005907/// GetClass - Return a reference to the class for the given interface
5908/// decl.
5909llvm::Value *CGObjCNonFragileABIMac::GetClass(CGBuilderTy &Builder,
5910 const ObjCInterfaceDecl *ID) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00005911 if (ID->isWeakImported()) {
Fariborz Jahanian95ace552009-11-17 22:42:00 +00005912 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
5913 llvm::GlobalVariable *ClassGV = GetClassGlobal(ClassName);
5914 ClassGV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
5915 }
5916
Fariborz Jahanian33f66e62009-02-05 20:41:40 +00005917 return EmitClassRef(Builder, ID);
5918}
5919
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005920/// Generates a message send where the super is the receiver. This is
5921/// a message send to self with special delivery semantics indicating
5922/// which class's method should be called.
5923CodeGen::RValue
5924CGObjCNonFragileABIMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCall78a15112010-05-22 01:48:05 +00005925 ReturnValueSlot Return,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005926 QualType ResultType,
5927 Selector Sel,
5928 const ObjCInterfaceDecl *Class,
5929 bool isCategoryImpl,
5930 llvm::Value *Receiver,
5931 bool IsClassMessage,
Daniel Dunbaraff9fca2009-09-17 04:01:22 +00005932 const CodeGen::CallArgList &CallArgs,
5933 const ObjCMethodDecl *Method) {
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005934 // ...
5935 // Create and init a super structure; this is a (receiver, class)
5936 // pair we will pass to objc_msgSendSuper.
5937 llvm::Value *ObjCSuper =
John McCall66475842011-03-04 08:00:29 +00005938 CGF.CreateTempAlloca(ObjCTypes.SuperTy, "objc_super");
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005939
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005940 llvm::Value *ReceiverAsObject =
5941 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
5942 CGF.Builder.CreateStore(ReceiverAsObject,
5943 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005944
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005945 // If this is a class message the metaclass is passed as the target.
Fariborz Jahanianbac73ac2009-02-28 20:07:56 +00005946 llvm::Value *Target;
5947 if (IsClassMessage) {
5948 if (isCategoryImpl) {
5949 // Message sent to "super' in a class method defined in
5950 // a category implementation.
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005951 Target = EmitClassRef(CGF.Builder, Class);
Fariborz Jahanianbac73ac2009-02-28 20:07:56 +00005952 Target = CGF.Builder.CreateStructGEP(Target, 0);
5953 Target = CGF.Builder.CreateLoad(Target);
Mike Stump658fe022009-07-30 22:28:39 +00005954 } else
Fariborz Jahanianbac73ac2009-02-28 20:07:56 +00005955 Target = EmitMetaClassRef(CGF.Builder, Class);
Mike Stump658fe022009-07-30 22:28:39 +00005956 } else
Daniel Dunbar508a7dd2009-04-18 08:51:00 +00005957 Target = EmitSuperClassRef(CGF.Builder, Class);
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005958
Mike Stump18bb9282009-05-16 07:57:57 +00005959 // FIXME: We shouldn't need to do this cast, rectify the ASTContext and
5960 // ObjCTypes types.
Chris Lattner2192fe52011-07-18 04:24:23 +00005961 llvm::Type *ClassTy =
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005962 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
5963 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
5964 CGF.Builder.CreateStore(Target,
5965 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005966
John McCall9e8bb002011-05-14 03:10:52 +00005967 return (isVTableDispatchedSelector(Sel))
5968 ? EmitVTableMessageSend(CGF, Return, ResultType, Sel,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005969 ObjCSuper, ObjCTypes.SuperPtrCTy,
John McCall9e8bb002011-05-14 03:10:52 +00005970 true, CallArgs, Method)
5971 : EmitMessageSend(CGF, Return, ResultType,
5972 EmitSelector(CGF.Builder, Sel),
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005973 ObjCSuper, ObjCTypes.SuperPtrCTy,
John McCall9e8bb002011-05-14 03:10:52 +00005974 true, CallArgs, Method, ObjCTypes);
Fariborz Jahanian6b7cd6e2009-02-06 20:09:23 +00005975}
Fariborz Jahanian74b77222009-02-11 20:51:17 +00005976
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005977llvm::Value *CGObjCNonFragileABIMac::EmitSelector(CGBuilderTy &Builder,
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00005978 Selector Sel, bool lval) {
Fariborz Jahanian74b77222009-02-11 20:51:17 +00005979 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005980
Fariborz Jahanian74b77222009-02-11 20:51:17 +00005981 if (!Entry) {
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005982 llvm::Constant *Casted =
5983 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
5984 ObjCTypes.SelectorPtrTy);
5985 Entry =
5986 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.SelectorPtrTy, false,
5987 llvm::GlobalValue::InternalLinkage,
5988 Casted, "\01L_OBJC_SELECTOR_REFERENCES_");
Fariborz Jahanian5d5ed2d2009-05-11 19:25:47 +00005989 Entry->setSection("__DATA, __objc_selrefs, literal_pointers, no_dead_strip");
Chris Lattnerf56501c2009-07-17 23:57:13 +00005990 CGM.AddUsedGlobal(Entry);
Fariborz Jahanian74b77222009-02-11 20:51:17 +00005991 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00005992
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00005993 if (lval)
5994 return Entry;
Pete Cooper9d605512011-11-10 21:45:06 +00005995 llvm::LoadInst* LI = Builder.CreateLoad(Entry);
5996
5997 LI->setMetadata(CGM.getModule().getMDKindID("invariant.load"),
5998 llvm::MDNode::get(VMContext,
5999 ArrayRef<llvm::Value*>()));
6000 return LI;
Fariborz Jahanian74b77222009-02-11 20:51:17 +00006001}
Fariborz Jahanian06292952009-02-16 22:52:32 +00006002/// EmitObjCIvarAssign - Code gen for assigning to a __strong object.
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00006003/// objc_assign_ivar (id src, id *dst, ptrdiff_t)
Fariborz Jahanian06292952009-02-16 22:52:32 +00006004///
6005void CGObjCNonFragileABIMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump11289f42009-09-09 15:08:12 +00006006 llvm::Value *src,
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00006007 llvm::Value *dst,
6008 llvm::Value *ivarOffset) {
Chris Lattner2192fe52011-07-18 04:24:23 +00006009 llvm::Type * SrcTy = src->getType();
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00006010 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00006011 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00006012 assert(Size <= 8 && "does not support size > 8");
6013 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
6014 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian1b074a32009-03-13 00:42:52 +00006015 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
6016 }
Fariborz Jahanian06292952009-02-16 22:52:32 +00006017 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
6018 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00006019 CGF.Builder.CreateCall3(ObjCTypes.getGcAssignIvarFn(),
6020 src, dst, ivarOffset);
Fariborz Jahanian06292952009-02-16 22:52:32 +00006021 return;
6022}
6023
6024/// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object.
6025/// objc_assign_strongCast (id src, id *dst)
6026///
6027void CGObjCNonFragileABIMac::EmitObjCStrongCastAssign(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006028 CodeGen::CodeGenFunction &CGF,
Mike Stump11289f42009-09-09 15:08:12 +00006029 llvm::Value *src, llvm::Value *dst) {
Chris Lattner2192fe52011-07-18 04:24:23 +00006030 llvm::Type * SrcTy = src->getType();
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00006031 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00006032 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00006033 assert(Size <= 8 && "does not support size > 8");
6034 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006035 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian1b074a32009-03-13 00:42:52 +00006036 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
6037 }
Fariborz Jahanian06292952009-02-16 22:52:32 +00006038 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
6039 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner0a696a422009-04-22 02:38:11 +00006040 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignStrongCastFn(),
Fariborz Jahanian06292952009-02-16 22:52:32 +00006041 src, dst, "weakassign");
6042 return;
6043}
6044
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +00006045void CGObjCNonFragileABIMac::EmitGCMemmoveCollectable(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006046 CodeGen::CodeGenFunction &CGF,
6047 llvm::Value *DestPtr,
6048 llvm::Value *SrcPtr,
Fariborz Jahanian021510e2010-06-15 22:44:06 +00006049 llvm::Value *Size) {
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +00006050 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy);
6051 DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy);
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +00006052 CGF.Builder.CreateCall3(ObjCTypes.GcMemmoveCollectableFn(),
Fariborz Jahanian021510e2010-06-15 22:44:06 +00006053 DestPtr, SrcPtr, Size);
Fariborz Jahanian5f21d2f2009-07-08 01:18:33 +00006054 return;
6055}
6056
Fariborz Jahanian06292952009-02-16 22:52:32 +00006057/// EmitObjCWeakRead - Code gen for loading value of a __weak
6058/// object: objc_read_weak (id *src)
6059///
6060llvm::Value * CGObjCNonFragileABIMac::EmitObjCWeakRead(
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006061 CodeGen::CodeGenFunction &CGF,
Mike Stump11289f42009-09-09 15:08:12 +00006062 llvm::Value *AddrWeakObj) {
Chris Lattner2192fe52011-07-18 04:24:23 +00006063 llvm::Type* DestTy =
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006064 cast<llvm::PointerType>(AddrWeakObj->getType())->getElementType();
6065 AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj, ObjCTypes.PtrObjectPtrTy);
Chris Lattnerce8754e2009-04-22 02:44:54 +00006066 llvm::Value *read_weak = CGF.Builder.CreateCall(ObjCTypes.getGcReadWeakFn(),
Fariborz Jahanian06292952009-02-16 22:52:32 +00006067 AddrWeakObj, "weakread");
Eli Friedmana374b682009-03-07 03:57:15 +00006068 read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy);
Fariborz Jahanian06292952009-02-16 22:52:32 +00006069 return read_weak;
6070}
6071
6072/// EmitObjCWeakAssign - Code gen for assigning to a __weak object.
6073/// objc_assign_weak (id src, id *dst)
6074///
6075void CGObjCNonFragileABIMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
Mike Stump11289f42009-09-09 15:08:12 +00006076 llvm::Value *src, llvm::Value *dst) {
Chris Lattner2192fe52011-07-18 04:24:23 +00006077 llvm::Type * SrcTy = src->getType();
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00006078 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00006079 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00006080 assert(Size <= 8 && "does not support size > 8");
6081 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
6082 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian1b074a32009-03-13 00:42:52 +00006083 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
6084 }
Fariborz Jahanian06292952009-02-16 22:52:32 +00006085 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
6086 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Chris Lattner6fdd57c2009-04-17 22:12:36 +00006087 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignWeakFn(),
Fariborz Jahanian06292952009-02-16 22:52:32 +00006088 src, dst, "weakassign");
6089 return;
6090}
6091
6092/// EmitObjCGlobalAssign - Code gen for assigning to a __strong object.
6093/// objc_assign_global (id src, id *dst)
6094///
6095void CGObjCNonFragileABIMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian217af242010-07-20 20:30:03 +00006096 llvm::Value *src, llvm::Value *dst,
6097 bool threadlocal) {
Chris Lattner2192fe52011-07-18 04:24:23 +00006098 llvm::Type * SrcTy = src->getType();
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00006099 if (!isa<llvm::PointerType>(SrcTy)) {
Duncan Sandsc76fe8b2009-05-09 07:08:47 +00006100 unsigned Size = CGM.getTargetData().getTypeAllocSize(SrcTy);
Fariborz Jahanianaedcfa42009-03-23 19:10:40 +00006101 assert(Size <= 8 && "does not support size > 8");
6102 src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy)
6103 : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy));
Fariborz Jahanian1b074a32009-03-13 00:42:52 +00006104 src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy);
6105 }
Fariborz Jahanian06292952009-02-16 22:52:32 +00006106 src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy);
6107 dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy);
Fariborz Jahanian217af242010-07-20 20:30:03 +00006108 if (!threadlocal)
6109 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignGlobalFn(),
6110 src, dst, "globalassign");
6111 else
6112 CGF.Builder.CreateCall2(ObjCTypes.getGcAssignThreadLocalFn(),
6113 src, dst, "threadlocalassign");
Fariborz Jahanian06292952009-02-16 22:52:32 +00006114 return;
6115}
Fariborz Jahanian74b77222009-02-11 20:51:17 +00006116
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006117void
John McCallbd309292010-07-06 01:34:17 +00006118CGObjCNonFragileABIMac::EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
6119 const ObjCAtSynchronizedStmt &S) {
David Chisnall3e575602011-03-25 17:46:35 +00006120 EmitAtSynchronizedStmt(CGF, S,
6121 cast<llvm::Function>(ObjCTypes.getSyncEnterFn()),
6122 cast<llvm::Function>(ObjCTypes.getSyncExitFn()));
John McCallbd309292010-07-06 01:34:17 +00006123}
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006124
John McCall2ca705e2010-07-24 00:37:23 +00006125llvm::Constant *
Fariborz Jahanian831f0fc2011-06-23 19:00:08 +00006126CGObjCNonFragileABIMac::GetEHType(QualType T) {
John McCall2ca705e2010-07-24 00:37:23 +00006127 // There's a particular fixed type info for 'id'.
6128 if (T->isObjCIdType() ||
6129 T->isObjCQualifiedIdType()) {
6130 llvm::Constant *IDEHType =
6131 CGM.getModule().getGlobalVariable("OBJC_EHTYPE_id");
6132 if (!IDEHType)
6133 IDEHType =
6134 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy,
6135 false,
6136 llvm::GlobalValue::ExternalLinkage,
6137 0, "OBJC_EHTYPE_id");
6138 return IDEHType;
6139 }
6140
6141 // All other types should be Objective-C interface pointer types.
6142 const ObjCObjectPointerType *PT =
6143 T->getAs<ObjCObjectPointerType>();
6144 assert(PT && "Invalid @catch type.");
6145 const ObjCInterfaceType *IT = PT->getInterfaceType();
6146 assert(IT && "Invalid @catch type.");
6147 return GetInterfaceEHType(IT->getDecl(), false);
6148}
6149
John McCallbd309292010-07-06 01:34:17 +00006150void CGObjCNonFragileABIMac::EmitTryStmt(CodeGen::CodeGenFunction &CGF,
6151 const ObjCAtTryStmt &S) {
David Chisnall3e575602011-03-25 17:46:35 +00006152 EmitTryCatchStmt(CGF, S,
6153 cast<llvm::Function>(ObjCTypes.getObjCBeginCatchFn()),
6154 cast<llvm::Function>(ObjCTypes.getObjCEndCatchFn()),
6155 cast<llvm::Function>(ObjCTypes.getExceptionRethrowFn()));
Daniel Dunbar0b0dcd92009-02-24 07:47:38 +00006156}
6157
Anders Carlsson9ab53d12009-02-16 22:59:18 +00006158/// EmitThrowStmt - Generate code for a throw statement.
6159void CGObjCNonFragileABIMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
6160 const ObjCAtThrowStmt &S) {
Anders Carlsson9ab53d12009-02-16 22:59:18 +00006161 if (const Expr *ThrowExpr = S.getThrowExpr()) {
John McCall248512a2011-10-01 10:32:24 +00006162 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr);
Benjamin Kramer76399eb2011-09-27 21:06:10 +00006163 Exception = CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy);
Jay Foad5bd375a2011-07-15 08:37:34 +00006164 CGF.EmitCallOrInvoke(ObjCTypes.getExceptionThrowFn(), Exception)
John McCall17afe452010-10-16 08:21:07 +00006165 .setDoesNotReturn();
Anders Carlsson9ab53d12009-02-16 22:59:18 +00006166 } else {
Jay Foad5bd375a2011-07-15 08:37:34 +00006167 CGF.EmitCallOrInvoke(ObjCTypes.getExceptionRethrowFn())
John McCall17afe452010-10-16 08:21:07 +00006168 .setDoesNotReturn();
Anders Carlsson9ab53d12009-02-16 22:59:18 +00006169 }
6170
John McCall17afe452010-10-16 08:21:07 +00006171 CGF.Builder.CreateUnreachable();
Anders Carlsson9ab53d12009-02-16 22:59:18 +00006172 CGF.Builder.ClearInsertionPoint();
6173}
Daniel Dunbarb1559a42009-03-01 04:46:24 +00006174
John McCall2ca705e2010-07-24 00:37:23 +00006175llvm::Constant *
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006176CGObjCNonFragileABIMac::GetInterfaceEHType(const ObjCInterfaceDecl *ID,
Daniel Dunbar8f28d012009-04-08 04:21:03 +00006177 bool ForDefinition) {
Daniel Dunbarb1559a42009-03-01 04:46:24 +00006178 llvm::GlobalVariable * &Entry = EHTypeReferences[ID->getIdentifier()];
Daniel Dunbarb1559a42009-03-01 04:46:24 +00006179
Daniel Dunbar8f28d012009-04-08 04:21:03 +00006180 // If we don't need a definition, return the entry if found or check
6181 // if we use an external reference.
6182 if (!ForDefinition) {
6183 if (Entry)
6184 return Entry;
Daniel Dunbard7beeea2009-04-07 06:43:45 +00006185
Daniel Dunbar8f28d012009-04-08 04:21:03 +00006186 // If this type (or a super class) has the __objc_exception__
6187 // attribute, emit an external reference.
Douglas Gregor78bd61f2009-06-18 16:11:24 +00006188 if (hasObjCExceptionAttribute(CGM.getContext(), ID))
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006189 return Entry =
Owen Andersonc10c8d32009-07-08 19:05:04 +00006190 new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false,
Daniel Dunbar8f28d012009-04-08 04:21:03 +00006191 llvm::GlobalValue::ExternalLinkage,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006192 0,
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00006193 ("OBJC_EHTYPE_$_" +
Daniel Dunbar07d07852009-10-18 21:17:35 +00006194 ID->getIdentifier()->getName()));
Daniel Dunbar8f28d012009-04-08 04:21:03 +00006195 }
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006196
Daniel Dunbar8f28d012009-04-08 04:21:03 +00006197 // Otherwise we need to either make a new entry or fill in the
6198 // initializer.
6199 assert((!Entry || !Entry->hasInitializer()) && "Duplicate EHType definition");
Daniel Dunbar15894b72009-04-07 05:48:37 +00006200 std::string ClassName(getClassSymbolPrefix() + ID->getNameAsString());
Daniel Dunbarb1559a42009-03-01 04:46:24 +00006201 std::string VTableName = "objc_ehtype_vtable";
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006202 llvm::GlobalVariable *VTableGV =
Daniel Dunbarb1559a42009-03-01 04:46:24 +00006203 CGM.getModule().getGlobalVariable(VTableName);
6204 if (!VTableGV)
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006205 VTableGV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.Int8PtrTy,
6206 false,
Daniel Dunbarb1559a42009-03-01 04:46:24 +00006207 llvm::GlobalValue::ExternalLinkage,
Owen Andersonc10c8d32009-07-08 19:05:04 +00006208 0, VTableName);
Daniel Dunbarb1559a42009-03-01 04:46:24 +00006209
Chris Lattner5e016ae2010-06-27 07:15:29 +00006210 llvm::Value *VTableIdx =
6211 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 2);
Daniel Dunbarb1559a42009-03-01 04:46:24 +00006212
Benjamin Kramer22d24c22011-10-15 12:20:02 +00006213 llvm::Constant *Values[] = {
6214 llvm::ConstantExpr::getGetElementPtr(VTableGV, VTableIdx),
6215 GetClassName(ID->getIdentifier()),
6216 GetClassGlobal(ClassName)
6217 };
Owen Anderson170229f2009-07-14 23:10:40 +00006218 llvm::Constant *Init =
Owen Anderson0e0189d2009-07-27 22:29:56 +00006219 llvm::ConstantStruct::get(ObjCTypes.EHTypeTy, Values);
Daniel Dunbarb1559a42009-03-01 04:46:24 +00006220
Daniel Dunbar8f28d012009-04-08 04:21:03 +00006221 if (Entry) {
6222 Entry->setInitializer(Init);
6223 } else {
Owen Andersonc10c8d32009-07-08 19:05:04 +00006224 Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false,
Daniel Dunbar8f28d012009-04-08 04:21:03 +00006225 llvm::GlobalValue::WeakAnyLinkage,
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006226 Init,
Daniel Dunbar349e6fb2009-10-18 20:48:59 +00006227 ("OBJC_EHTYPE_$_" +
Daniel Dunbar07d07852009-10-18 21:17:35 +00006228 ID->getIdentifier()->getName()));
Daniel Dunbar8f28d012009-04-08 04:21:03 +00006229 }
6230
John McCall457a04e2010-10-22 21:05:15 +00006231 if (CGM.getLangOptions().getVisibilityMode() == HiddenVisibility)
Daniel Dunbar15894b72009-04-07 05:48:37 +00006232 Entry->setVisibility(llvm::GlobalValue::HiddenVisibility);
Daniel Dunbar710cb202010-04-25 20:39:32 +00006233 Entry->setAlignment(CGM.getTargetData().getABITypeAlignment(
6234 ObjCTypes.EHTypeTy));
Daniel Dunbar8f28d012009-04-08 04:21:03 +00006235
6236 if (ForDefinition) {
6237 Entry->setSection("__DATA,__objc_const");
6238 Entry->setLinkage(llvm::GlobalValue::ExternalLinkage);
6239 } else {
6240 Entry->setSection("__DATA,__datacoal_nt,coalesced");
6241 }
Daniel Dunbarb1559a42009-03-01 04:46:24 +00006242
6243 return Entry;
6244}
Daniel Dunbar59e476b2009-08-03 17:06:42 +00006245
Daniel Dunbar8b8683f2008-08-12 00:12:39 +00006246/* *** */
6247
Daniel Dunbarb036db82008-08-13 03:21:16 +00006248CodeGen::CGObjCRuntime *
6249CodeGen::CreateMacObjCRuntime(CodeGen::CodeGenModule &CGM) {
David Chisnall067f0ed2011-03-22 21:21:24 +00006250 if (CGM.getLangOptions().ObjCNonFragileABI)
6251 return new CGObjCNonFragileABIMac(CGM);
Daniel Dunbar303e2c22008-08-11 02:45:11 +00006252 return new CGObjCMac(CGM);
6253}