blob: 34f9952252858641fdd81c15e6da9055eac84573 [file] [log] [blame]
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001//===------- CGObjCMac.cpp - Interface to Apple Objective-C Runtime -------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This provides Objective-C code generation targetting the Apple runtime.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CGObjCRuntime.h"
Daniel Dunbarf77ac862008-08-11 21:35:06 +000015
16#include "CodeGenModule.h"
Daniel Dunbarb7ec2462008-08-16 03:19:19 +000017#include "CodeGenFunction.h"
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000019#include "clang/AST/Decl.h"
Daniel Dunbar6efc0c52008-08-13 03:21:16 +000020#include "clang/AST/DeclObjC.h"
Daniel Dunbarf77ac862008-08-11 21:35:06 +000021#include "clang/Basic/LangOptions.h"
22
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000023#include "llvm/Module.h"
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +000024#include "llvm/ADT/DenseSet.h"
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000025#include "llvm/Target/TargetData.h"
Daniel Dunbarb7ec2462008-08-16 03:19:19 +000026#include <sstream>
Daniel Dunbarc17a4d32008-08-11 02:45:11 +000027
28using namespace clang;
Daniel Dunbar46f45b92008-09-09 01:06:48 +000029using namespace CodeGen;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +000030
31namespace {
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000032
Daniel Dunbarae226fa2008-08-27 02:31:56 +000033 typedef std::vector<llvm::Constant*> ConstantVector;
34
Daniel Dunbar6efc0c52008-08-13 03:21:16 +000035 // FIXME: We should find a nicer way to make the labels for
36 // metadata, string concatenation is lame.
37
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000038/// ObjCTypesHelper - Helper class that encapsulates lazy
39/// construction of varies types used during ObjC generation.
40class ObjCTypesHelper {
41private:
42 CodeGen::CodeGenModule &CGM;
43
Daniel Dunbar5669e572008-10-17 03:24:53 +000044 llvm::Function *MessageSendFn, *MessageSendStretFn, *MessageSendFpretFn;
45 llvm::Function *MessageSendSuperFn, *MessageSendSuperStretFn,
46 *MessageSendSuperFpretFn;
Daniel Dunbar259d93d2008-08-12 03:39:23 +000047
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000048public:
Daniel Dunbar27f9d772008-08-21 04:36:09 +000049 const llvm::Type *ShortTy, *IntTy, *LongTy;
50 const llvm::Type *Int8PtrTy;
Daniel Dunbar259d93d2008-08-12 03:39:23 +000051
Daniel Dunbar2bedbf82008-08-12 05:28:47 +000052 /// ObjectPtrTy - LLVM type for object handles (typeof(id))
53 const llvm::Type *ObjectPtrTy;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000054 /// SelectorPtrTy - LLVM type for selector handles (typeof(SEL))
Daniel Dunbar2bedbf82008-08-12 05:28:47 +000055 const llvm::Type *SelectorPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +000056 /// ProtocolPtrTy - LLVM type for external protocol handles
57 /// (typeof(Protocol))
58 const llvm::Type *ExternalProtocolPtrTy;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000059
Daniel Dunbar19cd87e2008-08-30 03:02:31 +000060 // SuperCTy - clang type for struct objc_super.
61 QualType SuperCTy;
62 // SuperPtrCTy - clang type for struct objc_super *.
63 QualType SuperPtrCTy;
64
Daniel Dunbare8b470d2008-08-23 04:28:29 +000065 /// SuperTy - LLVM type for struct objc_super.
66 const llvm::StructType *SuperTy;
Daniel Dunbar14c80b72008-08-23 09:25:55 +000067 /// SuperPtrTy - LLVM type for struct objc_super *.
68 const llvm::Type *SuperPtrTy;
Daniel Dunbare8b470d2008-08-23 04:28:29 +000069
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000070 /// SymtabTy - LLVM type for struct objc_symtab.
71 const llvm::StructType *SymtabTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +000072 /// SymtabPtrTy - LLVM type for struct objc_symtab *.
73 const llvm::Type *SymtabPtrTy;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000074 /// ModuleTy - LLVM type for struct objc_module.
75 const llvm::StructType *ModuleTy;
Daniel Dunbar259d93d2008-08-12 03:39:23 +000076
Daniel Dunbar6efc0c52008-08-13 03:21:16 +000077 /// ProtocolTy - LLVM type for struct objc_protocol.
78 const llvm::StructType *ProtocolTy;
79 /// ProtocolPtrTy - LLVM type for struct objc_protocol *.
80 const llvm::Type *ProtocolPtrTy;
81 /// ProtocolExtensionTy - LLVM type for struct
82 /// objc_protocol_extension.
83 const llvm::StructType *ProtocolExtensionTy;
84 /// ProtocolExtensionTy - LLVM type for struct
85 /// objc_protocol_extension *.
86 const llvm::Type *ProtocolExtensionPtrTy;
87 /// MethodDescriptionTy - LLVM type for struct
88 /// objc_method_description.
89 const llvm::StructType *MethodDescriptionTy;
90 /// MethodDescriptionListTy - LLVM type for struct
91 /// objc_method_description_list.
92 const llvm::StructType *MethodDescriptionListTy;
93 /// MethodDescriptionListPtrTy - LLVM type for struct
94 /// objc_method_description_list *.
95 const llvm::Type *MethodDescriptionListPtrTy;
Daniel Dunbarc8ef5512008-08-23 00:19:03 +000096 /// PropertyTy - LLVM type for struct objc_property (struct _prop_t
97 /// in GCC parlance).
98 const llvm::StructType *PropertyTy;
99 /// PropertyListTy - LLVM type for struct objc_property_list
100 /// (_prop_list_t in GCC parlance).
101 const llvm::StructType *PropertyListTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000102 /// PropertyListPtrTy - LLVM type for struct objc_property_list*.
103 const llvm::Type *PropertyListPtrTy;
104 /// ProtocolListTy - LLVM type for struct objc_property_list.
105 const llvm::Type *ProtocolListTy;
106 /// ProtocolListPtrTy - LLVM type for struct objc_property_list*.
107 const llvm::Type *ProtocolListPtrTy;
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000108 /// CategoryTy - LLVM type for struct objc_category.
109 const llvm::StructType *CategoryTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000110 /// ClassTy - LLVM type for struct objc_class.
111 const llvm::StructType *ClassTy;
112 /// ClassPtrTy - LLVM type for struct objc_class *.
113 const llvm::Type *ClassPtrTy;
114 /// ClassExtensionTy - LLVM type for struct objc_class_ext.
115 const llvm::StructType *ClassExtensionTy;
116 /// ClassExtensionPtrTy - LLVM type for struct objc_class_ext *.
117 const llvm::Type *ClassExtensionPtrTy;
118 /// CacheTy - LLVM type for struct objc_cache.
119 const llvm::Type *CacheTy;
120 /// CachePtrTy - LLVM type for struct objc_cache *.
121 const llvm::Type *CachePtrTy;
122 // IvarTy - LLVM type for struct objc_ivar.
123 const llvm::StructType *IvarTy;
124 /// IvarListTy - LLVM type for struct objc_ivar_list.
125 const llvm::Type *IvarListTy;
126 /// IvarListPtrTy - LLVM type for struct objc_ivar_list *.
127 const llvm::Type *IvarListPtrTy;
128 // MethodTy - LLVM type for struct objc_method.
129 const llvm::StructType *MethodTy;
130 /// MethodListTy - LLVM type for struct objc_method_list.
131 const llvm::Type *MethodListTy;
132 /// MethodListPtrTy - LLVM type for struct objc_method_list *.
133 const llvm::Type *MethodListPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000134
Daniel Dunbar49f66022008-09-24 03:38:44 +0000135 llvm::Function *GetPropertyFn, *SetPropertyFn;
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000136 llvm::Function *EnumerationMutationFn;
Anders Carlsson124526b2008-09-09 10:10:21 +0000137
138 /// ExceptionDataTy - LLVM type for struct _objc_exception_data.
139 const llvm::Type *ExceptionDataTy;
140
141 /// ExceptionThrowFn - LLVM objc_exception_throw function.
142 llvm::Function *ExceptionThrowFn;
143
144 /// ExceptionTryEnterFn - LLVM objc_exception_try_enter function.
145 llvm::Function *ExceptionTryEnterFn;
146
147 /// ExceptionTryExitFn - LLVM objc_exception_try_exit function.
148 llvm::Function *ExceptionTryExitFn;
149
150 /// ExceptionExtractFn - LLVM objc_exception_extract function.
151 llvm::Function *ExceptionExtractFn;
152
153 /// ExceptionMatchFn - LLVM objc_exception_match function.
154 llvm::Function *ExceptionMatchFn;
155
156 /// SetJmpFn - LLVM _setjmp function.
157 llvm::Function *SetJmpFn;
158
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000159public:
160 ObjCTypesHelper(CodeGen::CodeGenModule &cgm);
161 ~ObjCTypesHelper();
Daniel Dunbar5669e572008-10-17 03:24:53 +0000162
163
164 llvm::Function *getSendFn(bool IsSuper) {
165 return IsSuper ? MessageSendSuperFn : MessageSendFn;
166 }
167
168 llvm::Function *getSendStretFn(bool IsSuper) {
169 return IsSuper ? MessageSendSuperStretFn : MessageSendStretFn;
170 }
171
172 llvm::Function *getSendFpretFn(bool IsSuper) {
173 return IsSuper ? MessageSendSuperFpretFn : MessageSendFpretFn;
174 }
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000175};
176
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000177class CGObjCMac : public CodeGen::CGObjCRuntime {
178private:
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000179 CodeGen::CodeGenModule &CGM;
180 ObjCTypesHelper ObjCTypes;
181 /// ObjCABI - FIXME: Not sure yet.
182 unsigned ObjCABI;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000183
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000184 /// LazySymbols - Symbols to generate a lazy reference for. See
185 /// DefinedSymbols and FinishModule().
186 std::set<IdentifierInfo*> LazySymbols;
187
188 /// DefinedSymbols - External symbols which are defined by this
189 /// module. The symbols in this list and LazySymbols are used to add
190 /// special linker symbols which ensure that Objective-C modules are
191 /// linked properly.
192 std::set<IdentifierInfo*> DefinedSymbols;
193
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000194 /// ClassNames - uniqued class names.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000195 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassNames;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000196
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000197 /// MethodVarNames - uniqued method variable names.
198 llvm::DenseMap<Selector, llvm::GlobalVariable*> MethodVarNames;
199
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000200 /// MethodVarTypes - uniqued method type signatures. We have to use
201 /// a StringMap here because have no other unique reference.
202 llvm::StringMap<llvm::GlobalVariable*> MethodVarTypes;
203
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000204 /// MethodDefinitions - map of methods which have been defined in
205 /// this translation unit.
206 llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*> MethodDefinitions;
207
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000208 /// PropertyNames - uniqued method variable names.
209 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> PropertyNames;
210
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000211 /// ClassReferences - uniqued class references.
212 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassReferences;
213
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000214 /// SelectorReferences - uniqued selector references.
215 llvm::DenseMap<Selector, llvm::GlobalVariable*> SelectorReferences;
216
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000217 /// Protocols - Protocols for which an objc_protocol structure has
218 /// been emitted. Forward declarations are handled by creating an
219 /// empty structure whose initializer is filled in when/if defined.
220 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols;
221
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000222 /// DefinedProtocols - Protocols which have actually been
223 /// defined. We should not need this, see FIXME in GenerateProtocol.
224 llvm::DenseSet<IdentifierInfo*> DefinedProtocols;
225
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000226 /// DefinedClasses - List of defined classes.
227 std::vector<llvm::GlobalValue*> DefinedClasses;
228
229 /// DefinedCategories - List of defined categories.
230 std::vector<llvm::GlobalValue*> DefinedCategories;
231
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000232 /// UsedGlobals - List of globals to pack into the llvm.used metadata
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000233 /// to prevent them from being clobbered.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000234 std::vector<llvm::GlobalVariable*> UsedGlobals;
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000235
236 /// EmitImageInfo - Emit the image info marker used to encode some module
237 /// level information.
238 void EmitImageInfo();
239
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000240 /// EmitModuleInfo - Another marker encoding module level
241 /// information.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000242 void EmitModuleInfo();
243
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000244 /// EmitModuleSymols - Emit module symbols, the list of defined
245 /// classes and categories. The result has type SymtabPtrTy.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000246 llvm::Constant *EmitModuleSymbols();
247
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000248 /// FinishModule - Write out global data structures at the end of
249 /// processing a translation unit.
250 void FinishModule();
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000251
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000252 /// EmitClassExtension - Generate the class extension structure used
253 /// to store the weak ivar layout and properties. The return value
254 /// has type ClassExtensionPtrTy.
255 llvm::Constant *EmitClassExtension(const ObjCImplementationDecl *ID);
256
257 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
258 /// for the given class.
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000259 llvm::Value *EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000260 const ObjCInterfaceDecl *ID);
261
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000262 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000263 QualType ResultType,
264 Selector Sel,
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000265 llvm::Value *Arg0,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000266 QualType Arg0Ty,
267 bool IsSuper,
268 const CallArgList &CallArgs);
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000269
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000270 /// EmitIvarList - Emit the ivar list for the given
271 /// implementation. If ForClass is true the list of class ivars
272 /// (i.e. metaclass ivars) is emitted, otherwise the list of
273 /// interface ivars will be emitted. The return value has type
274 /// IvarListPtrTy.
275 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID,
276 bool ForClass,
277 const llvm::Type *InterfaceTy);
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000278
279 /// EmitMetaClass - Emit a forward reference to the class structure
280 /// for the metaclass of the given interface. The return value has
281 /// type ClassPtrTy.
282 llvm::Constant *EmitMetaClassRef(const ObjCInterfaceDecl *ID);
283
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000284 /// EmitMetaClass - Emit a class structure for the metaclass of the
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000285 /// given implementation. The return value has type ClassPtrTy.
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000286 llvm::Constant *EmitMetaClass(const ObjCImplementationDecl *ID,
287 llvm::Constant *Protocols,
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000288 const llvm::Type *InterfaceTy,
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000289 const ConstantVector &Methods);
290
291 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
292
293 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000294
295 /// EmitMethodList - Emit the method list for the given
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000296 /// implementation. The return value has type MethodListPtrTy.
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000297 llvm::Constant *EmitMethodList(const std::string &Name,
298 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000299 const ConstantVector &Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000300
301 /// EmitMethodDescList - Emit a method description list for a list of
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000302 /// method declarations.
303 /// - TypeName: The name for the type containing the methods.
304 /// - IsProtocol: True iff these methods are for a protocol.
305 /// - ClassMethds: True iff these are class methods.
306 /// - Required: When true, only "required" methods are
307 /// listed. Similarly, when false only "optional" methods are
308 /// listed. For classes this should always be true.
309 /// - begin, end: The method list to output.
310 ///
311 /// The return value has type MethodDescriptionListPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000312 llvm::Constant *EmitMethodDescList(const std::string &Name,
313 const char *Section,
314 const ConstantVector &Methods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000315
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000316 /// EmitPropertyList - Emit the given property list. The return
317 /// value has type PropertyListPtrTy.
318 llvm::Constant *EmitPropertyList(const std::string &Name,
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000319 const Decl *Container,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000320 ObjCPropertyDecl * const *begin,
321 ObjCPropertyDecl * const *end);
322
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000323 /// GetOrEmitProtocol - Get the protocol object for the given
324 /// declaration, emitting it if necessary. The return value has type
325 /// ProtocolPtrTy.
326 llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD);
327
328 /// GetOrEmitProtocolRef - Get a forward reference to the protocol
329 /// object for the given declaration, emitting it if needed. These
330 /// forward references will be filled in with empty bodies if no
331 /// definition is seen. The return value has type ProtocolPtrTy.
332 llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD);
333
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000334 /// EmitProtocolExtension - Generate the protocol extension
335 /// structure used to store optional instance and class methods, and
336 /// protocol properties. The return value has type
337 /// ProtocolExtensionPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000338 llvm::Constant *
339 EmitProtocolExtension(const ObjCProtocolDecl *PD,
340 const ConstantVector &OptInstanceMethods,
341 const ConstantVector &OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000342
343 /// EmitProtocolList - Generate the list of referenced
344 /// protocols. The return value has type ProtocolListPtrTy.
Daniel Dunbardbc93372008-08-21 21:57:41 +0000345 llvm::Constant *EmitProtocolList(const std::string &Name,
346 ObjCProtocolDecl::protocol_iterator begin,
347 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000348
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000349 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
350 /// for the given selector.
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000351 llvm::Value *EmitSelector(CGBuilderTy &Builder, Selector Sel);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000352
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000353 /// GetProtocolRef - Return a reference to the internal protocol
354 /// description, creating an empty one if it has not been
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000355 /// defined. The return value has type ProtocolPtrTy.
356 llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000357
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000358 /// GetClassName - Return a unique constant for the given selector's
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000359 /// name. The return value has type char *.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000360 llvm::Constant *GetClassName(IdentifierInfo *Ident);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000361
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000362 /// GetMethodVarName - Return a unique constant for the given
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000363 /// selector's name. The return value has type char *.
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000364 llvm::Constant *GetMethodVarName(Selector Sel);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000365 llvm::Constant *GetMethodVarName(IdentifierInfo *Ident);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000366 llvm::Constant *GetMethodVarName(const std::string &Name);
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000367
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000368 /// GetMethodVarType - Return a unique constant for the given
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000369 /// selector's name. The return value has type char *.
370
371 // FIXME: This is a horrible name.
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000372 llvm::Constant *GetMethodVarType(const ObjCMethodDecl *D);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000373 llvm::Constant *GetMethodVarType(const std::string &Name);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000374
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000375 /// GetPropertyName - Return a unique constant for the given
376 /// name. The return value has type char *.
377 llvm::Constant *GetPropertyName(IdentifierInfo *Ident);
378
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000379 // FIXME: This can be dropped once string functions are unified.
380 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
381 const Decl *Container);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000382
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000383 /// GetNameForMethod - Return a name for the given method.
384 /// \param[out] NameOut - The return value.
385 void GetNameForMethod(const ObjCMethodDecl *OMD,
386 std::string &NameOut);
387
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000388public:
389 CGObjCMac(CodeGen::CodeGenModule &cgm);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000390 virtual llvm::Constant *GenerateConstantString(const std::string &String);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000391
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000392 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000393 QualType ResultType,
394 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000395 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000396 bool IsClassMessage,
397 const CallArgList &CallArgs);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000398
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000399 virtual CodeGen::RValue
400 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000401 QualType ResultType,
402 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000403 const ObjCInterfaceDecl *Class,
404 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000405 bool IsClassMessage,
406 const CallArgList &CallArgs);
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +0000407
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000408 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000409 const ObjCInterfaceDecl *ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000410
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000411 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000412
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000413 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000414
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000415 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000416
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000417 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000418
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000419 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000420 const ObjCProtocolDecl *PD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000421
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000422 virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000423
424 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar49f66022008-09-24 03:38:44 +0000425 virtual llvm::Function *GetPropertyGetFunction();
426 virtual llvm::Function *GetPropertySetFunction();
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000427 virtual llvm::Function *EnumerationMutationFunction();
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000428
429 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
430 const ObjCAtTryStmt &S);
431 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
432 const ObjCAtThrowStmt &S);
433
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000434};
435} // end anonymous namespace
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000436
437/* *** Helper Functions *** */
438
439/// getConstantGEP() - Help routine to construct simple GEPs.
440static llvm::Constant *getConstantGEP(llvm::Constant *C,
441 unsigned idx0,
442 unsigned idx1) {
443 llvm::Value *Idxs[] = {
444 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx0),
445 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx1)
446 };
447 return llvm::ConstantExpr::getGetElementPtr(C, Idxs, 2);
448}
449
450/* *** CGObjCMac Public Interface *** */
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000451
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000452CGObjCMac::CGObjCMac(CodeGen::CodeGenModule &cgm)
453 : CGM(cgm),
454 ObjCTypes(cgm),
455 ObjCABI(1)
456{
457 // FIXME: How does this get set in GCC? And what does it even mean?
458 if (ObjCTypes.LongTy != CGM.getTypes().ConvertType(CGM.getContext().IntTy))
459 ObjCABI = 2;
460
461 EmitImageInfo();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000462}
463
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +0000464/// GetClass - Return a reference to the class for the given interface
465/// decl.
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000466llvm::Value *CGObjCMac::GetClass(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000467 const ObjCInterfaceDecl *ID) {
468 return EmitClassRef(Builder, ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000469}
470
471/// GetSelector - Return the pointer to the unique'd string for this selector.
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000472llvm::Value *CGObjCMac::GetSelector(CGBuilderTy &Builder, Selector Sel) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000473 return EmitSelector(Builder, Sel);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000474}
475
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000476/// Generate a constant CFString object.
477/*
478 struct __builtin_CFString {
479 const int *isa; // point to __CFConstantStringClassReference
480 int flags;
481 const char *str;
482 long length;
483 };
484*/
485
486llvm::Constant *CGObjCMac::GenerateConstantString(const std::string &String) {
Daniel Dunbar3e9df992008-08-23 18:37:06 +0000487 return CGM.GetAddrOfConstantCFString(String);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000488}
489
490/// Generates a message send where the super is the receiver. This is
491/// a message send to self with special delivery semantics indicating
492/// which class's method should be called.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000493CodeGen::RValue
494CGObjCMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000495 QualType ResultType,
496 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000497 const ObjCInterfaceDecl *Class,
498 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000499 bool IsClassMessage,
Daniel Dunbar46f45b92008-09-09 01:06:48 +0000500 const CodeGen::CallArgList &CallArgs) {
Daniel Dunbare8b470d2008-08-23 04:28:29 +0000501 // Create and init a super structure; this is a (receiver, class)
502 // pair we will pass to objc_msgSendSuper.
503 llvm::Value *ObjCSuper =
504 CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super");
505 llvm::Value *ReceiverAsObject =
506 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
507 CGF.Builder.CreateStore(ReceiverAsObject,
508 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbare8b470d2008-08-23 04:28:29 +0000509
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000510 // If this is a class message the metaclass is passed as the target.
511 llvm::Value *Target;
512 if (IsClassMessage) {
513 llvm::Value *MetaClassPtr = EmitMetaClassRef(Class);
514 llvm::Value *SuperPtr = CGF.Builder.CreateStructGEP(MetaClassPtr, 1);
515 llvm::Value *Super = CGF.Builder.CreateLoad(SuperPtr);
516 Target = Super;
517 } else {
518 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
519 }
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000520 // FIXME: We shouldn't need to do this cast, rectify the ASTContext
521 // and ObjCTypes types.
522 const llvm::Type *ClassTy =
523 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000524 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000525 CGF.Builder.CreateStore(Target,
526 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
527
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000528 return EmitMessageSend(CGF, ResultType, Sel,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000529 ObjCSuper, ObjCTypes.SuperPtrCTy,
530 true, CallArgs);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000531}
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000532
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000533/// Generate code for a message send expression.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000534CodeGen::RValue CGObjCMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000535 QualType ResultType,
536 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000537 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000538 bool IsClassMessage,
539 const CallArgList &CallArgs) {
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000540 llvm::Value *Arg0 =
541 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy, "tmp");
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000542 return EmitMessageSend(CGF, ResultType, Sel,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000543 Arg0, CGF.getContext().getObjCIdType(),
544 false, CallArgs);
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000545}
546
547CodeGen::RValue CGObjCMac::EmitMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000548 QualType ResultType,
549 Selector Sel,
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000550 llvm::Value *Arg0,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000551 QualType Arg0Ty,
552 bool IsSuper,
553 const CallArgList &CallArgs) {
554 CallArgList ActualArgs;
Daniel Dunbar46f45b92008-09-09 01:06:48 +0000555 ActualArgs.push_back(std::make_pair(RValue::get(Arg0), Arg0Ty));
556 ActualArgs.push_back(std::make_pair(RValue::get(EmitSelector(CGF.Builder,
557 Sel)),
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000558 CGF.getContext().getObjCSelType()));
559 ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000560
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +0000561 const llvm::FunctionType *FTy =
562 CGM.getTypes().GetFunctionType(CGCallInfo(ResultType, ActualArgs),
563 false);
Daniel Dunbar5669e572008-10-17 03:24:53 +0000564
565 llvm::Constant *Fn;
566 if (CGM.ReturnTypeUsesSret(ResultType)) {
567 Fn = ObjCTypes.getSendStretFn(IsSuper);
568 } else if (ResultType->isFloatingType()) {
569 // FIXME: Sadly, this is wrong. This actually depends on the
570 // architecture. This happens to be right for x86-32 though.
571 Fn = ObjCTypes.getSendFpretFn(IsSuper);
572 } else {
573 Fn = ObjCTypes.getSendFn(IsSuper);
574 }
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +0000575 Fn = llvm::ConstantExpr::getBitCast(Fn, llvm::PointerType::getUnqual(FTy));
Daniel Dunbar3913f182008-09-09 23:48:28 +0000576 return CGF.EmitCall(Fn, ResultType, ActualArgs);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000577}
578
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000579llvm::Value *CGObjCMac::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000580 const ObjCProtocolDecl *PD) {
Daniel Dunbarc67876d2008-09-04 04:33:15 +0000581 // FIXME: I don't understand why gcc generates this, or where it is
582 // resolved. Investigate. Its also wasteful to look this up over and
583 // over.
584 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
585
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000586 return llvm::ConstantExpr::getBitCast(GetProtocolRef(PD),
587 ObjCTypes.ExternalProtocolPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000588}
589
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000590void CGObjCMac::GenerateProtocol(const ObjCProtocolDecl *PD) {
591 // FIXME: We shouldn't need this, the protocol decl should contain
592 // enough information to tell us whether this was a declaration or a
593 // definition.
594 DefinedProtocols.insert(PD->getIdentifier());
595
596 // If we have generated a forward reference to this protocol, emit
597 // it now. Otherwise do nothing, the protocol objects are lazily
598 // emitted.
599 if (Protocols.count(PD->getIdentifier()))
600 GetOrEmitProtocol(PD);
601}
602
603llvm::Constant *CGObjCMac::GetProtocolRef(const ObjCProtocolDecl *PD) {
604 if (DefinedProtocols.count(PD->getIdentifier()))
605 return GetOrEmitProtocol(PD);
606 return GetOrEmitProtocolRef(PD);
607}
608
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000609/*
610 // APPLE LOCAL radar 4585769 - Objective-C 1.0 extensions
611 struct _objc_protocol {
612 struct _objc_protocol_extension *isa;
613 char *protocol_name;
614 struct _objc_protocol_list *protocol_list;
615 struct _objc__method_prototype_list *instance_methods;
616 struct _objc__method_prototype_list *class_methods
617 };
618
619 See EmitProtocolExtension().
620*/
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000621llvm::Constant *CGObjCMac::GetOrEmitProtocol(const ObjCProtocolDecl *PD) {
622 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
623
624 // Early exit if a defining object has already been generated.
625 if (Entry && Entry->hasInitializer())
626 return Entry;
627
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000628 // FIXME: I don't understand why gcc generates this, or where it is
629 // resolved. Investigate. Its also wasteful to look this up over and
630 // over.
631 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
632
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000633 const char *ProtocolName = PD->getName();
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000634
635 // Construct method lists.
636 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
637 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
638 for (ObjCProtocolDecl::instmeth_iterator i = PD->instmeth_begin(),
639 e = PD->instmeth_end(); i != e; ++i) {
640 ObjCMethodDecl *MD = *i;
641 llvm::Constant *C = GetMethodDescriptionConstant(MD);
642 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
643 OptInstanceMethods.push_back(C);
644 } else {
645 InstanceMethods.push_back(C);
646 }
647 }
648
649 for (ObjCProtocolDecl::classmeth_iterator i = PD->classmeth_begin(),
650 e = PD->classmeth_end(); i != e; ++i) {
651 ObjCMethodDecl *MD = *i;
652 llvm::Constant *C = GetMethodDescriptionConstant(MD);
653 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
654 OptClassMethods.push_back(C);
655 } else {
656 ClassMethods.push_back(C);
657 }
658 }
659
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000660 std::vector<llvm::Constant*> Values(5);
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000661 Values[0] = EmitProtocolExtension(PD, OptInstanceMethods, OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000662 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbardbc93372008-08-21 21:57:41 +0000663 Values[2] =
664 EmitProtocolList(std::string("\01L_OBJC_PROTOCOL_REFS_")+PD->getName(),
665 PD->protocol_begin(),
666 PD->protocol_end());
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000667 Values[3] =
668 EmitMethodDescList(std::string("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_")
669 + PD->getName(),
670 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
671 InstanceMethods);
672 Values[4] =
673 EmitMethodDescList(std::string("\01L_OBJC_PROTOCOL_CLASS_METHODS_")
674 + PD->getName(),
675 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
676 ClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000677 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
678 Values);
679
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000680 if (Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000681 // Already created, fix the linkage and update the initializer.
682 Entry->setLinkage(llvm::GlobalValue::InternalLinkage);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000683 Entry->setInitializer(Init);
684 } else {
685 Entry =
686 new llvm::GlobalVariable(ObjCTypes.ProtocolTy, false,
687 llvm::GlobalValue::InternalLinkage,
688 Init,
689 std::string("\01L_OBJC_PROTOCOL_")+ProtocolName,
690 &CGM.getModule());
691 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
692 UsedGlobals.push_back(Entry);
693 // FIXME: Is this necessary? Why only for protocol?
694 Entry->setAlignment(4);
695 }
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000696
697 return Entry;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000698}
699
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000700llvm::Constant *CGObjCMac::GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000701 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
702
703 if (!Entry) {
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000704 // We use the initializer as a marker of whether this is a forward
705 // reference or not. At module finalization we add the empty
706 // contents for protocols which were referenced but never defined.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000707 Entry =
708 new llvm::GlobalVariable(ObjCTypes.ProtocolTy, false,
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +0000709 llvm::GlobalValue::ExternalLinkage,
710 0,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000711 std::string("\01L_OBJC_PROTOCOL_")+PD->getName(),
712 &CGM.getModule());
713 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
714 UsedGlobals.push_back(Entry);
715 // FIXME: Is this necessary? Why only for protocol?
716 Entry->setAlignment(4);
717 }
718
719 return Entry;
720}
721
722/*
723 struct _objc_protocol_extension {
724 uint32_t size;
725 struct objc_method_description_list *optional_instance_methods;
726 struct objc_method_description_list *optional_class_methods;
727 struct objc_property_list *instance_properties;
728 };
729*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000730llvm::Constant *
731CGObjCMac::EmitProtocolExtension(const ObjCProtocolDecl *PD,
732 const ConstantVector &OptInstanceMethods,
733 const ConstantVector &OptClassMethods) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000734 uint64_t Size =
735 CGM.getTargetData().getABITypeSize(ObjCTypes.ProtocolExtensionTy);
736 std::vector<llvm::Constant*> Values(4);
737 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000738 Values[1] =
739 EmitMethodDescList(std::string("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_OPT_")
740 + PD->getName(),
741 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
742 OptInstanceMethods);
743 Values[2] =
744 EmitMethodDescList(std::string("\01L_OBJC_PROTOCOL_CLASS_METHODS_OPT_")
745 + PD->getName(),
746 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
747 OptClassMethods);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000748 Values[3] = EmitPropertyList(std::string("\01L_OBJC_$_PROP_PROTO_LIST_") +
749 PD->getName(),
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000750 0,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000751 PD->classprop_begin(),
752 PD->classprop_end());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000753
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000754 // Return null if no extension bits are used.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000755 if (Values[1]->isNullValue() && Values[2]->isNullValue() &&
756 Values[3]->isNullValue())
757 return llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
758
759 llvm::Constant *Init =
760 llvm::ConstantStruct::get(ObjCTypes.ProtocolExtensionTy, Values);
761 llvm::GlobalVariable *GV =
762 new llvm::GlobalVariable(ObjCTypes.ProtocolExtensionTy, false,
763 llvm::GlobalValue::InternalLinkage,
764 Init,
765 (std::string("\01L_OBJC_PROTOCOLEXT_") +
766 PD->getName()),
767 &CGM.getModule());
768 // No special section, but goes in llvm.used
769 UsedGlobals.push_back(GV);
770
771 return GV;
772}
773
774/*
775 struct objc_protocol_list {
776 struct objc_protocol_list *next;
777 long count;
778 Protocol *list[];
779 };
780*/
Daniel Dunbardbc93372008-08-21 21:57:41 +0000781llvm::Constant *
782CGObjCMac::EmitProtocolList(const std::string &Name,
783 ObjCProtocolDecl::protocol_iterator begin,
784 ObjCProtocolDecl::protocol_iterator end) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000785 std::vector<llvm::Constant*> ProtocolRefs;
786
Daniel Dunbardbc93372008-08-21 21:57:41 +0000787 for (; begin != end; ++begin)
788 ProtocolRefs.push_back(GetProtocolRef(*begin));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000789
790 // Just return null for empty protocol lists
791 if (ProtocolRefs.empty())
792 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
793
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000794 // This list is null terminated.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000795 ProtocolRefs.push_back(llvm::Constant::getNullValue(ObjCTypes.ProtocolPtrTy));
796
797 std::vector<llvm::Constant*> Values(3);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000798 // This field is only used by the runtime.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000799 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
800 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy, ProtocolRefs.size() - 1);
801 Values[2] =
802 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.ProtocolPtrTy,
803 ProtocolRefs.size()),
804 ProtocolRefs);
805
806 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
807 llvm::GlobalVariable *GV =
808 new llvm::GlobalVariable(Init->getType(), false,
809 llvm::GlobalValue::InternalLinkage,
810 Init,
Daniel Dunbardbc93372008-08-21 21:57:41 +0000811 Name,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000812 &CGM.getModule());
813 GV->setSection("__OBJC,__cat_cls_meth,regular,no_dead_strip");
814 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListPtrTy);
815}
816
817/*
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000818 struct _objc_property {
819 const char * const name;
820 const char * const attributes;
821 };
822
823 struct _objc_property_list {
824 uint32_t entsize; // sizeof (struct _objc_property)
825 uint32_t prop_count;
826 struct _objc_property[prop_count];
827 };
828*/
829llvm::Constant *CGObjCMac::EmitPropertyList(const std::string &Name,
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000830 const Decl *Container,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000831 ObjCPropertyDecl * const *begin,
832 ObjCPropertyDecl * const *end) {
833 std::vector<llvm::Constant*> Properties, Prop(2);
834 for (; begin != end; ++begin) {
835 const ObjCPropertyDecl *PD = *begin;
836 Prop[0] = GetPropertyName(PD->getIdentifier());
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000837 Prop[1] = GetPropertyTypeString(PD, Container);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000838 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy,
839 Prop));
840 }
841
842 // Return null for empty list.
843 if (Properties.empty())
844 return llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
845
846 unsigned PropertySize =
847 CGM.getTargetData().getABITypeSize(ObjCTypes.PropertyTy);
848 std::vector<llvm::Constant*> Values(3);
849 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, PropertySize);
850 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Properties.size());
851 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.PropertyTy,
852 Properties.size());
853 Values[2] = llvm::ConstantArray::get(AT, Properties);
854 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
855
856 llvm::GlobalVariable *GV =
857 new llvm::GlobalVariable(Init->getType(), false,
858 llvm::GlobalValue::InternalLinkage,
859 Init,
860 Name,
861 &CGM.getModule());
862 // No special section on property lists?
863 UsedGlobals.push_back(GV);
864 return llvm::ConstantExpr::getBitCast(GV,
865 ObjCTypes.PropertyListPtrTy);
866
867}
868
869/*
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000870 struct objc_method_description_list {
871 int count;
872 struct objc_method_description list[];
873 };
874*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000875llvm::Constant *
876CGObjCMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
877 std::vector<llvm::Constant*> Desc(2);
878 Desc[0] = llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
879 ObjCTypes.SelectorPtrTy);
880 Desc[1] = GetMethodVarType(MD);
881 return llvm::ConstantStruct::get(ObjCTypes.MethodDescriptionTy,
882 Desc);
883}
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000884
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000885llvm::Constant *CGObjCMac::EmitMethodDescList(const std::string &Name,
886 const char *Section,
887 const ConstantVector &Methods) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000888 // Return null for empty list.
889 if (Methods.empty())
890 return llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
891
892 std::vector<llvm::Constant*> Values(2);
893 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
894 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodDescriptionTy,
895 Methods.size());
896 Values[1] = llvm::ConstantArray::get(AT, Methods);
897 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
898
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000899 llvm::GlobalVariable *GV =
900 new llvm::GlobalVariable(Init->getType(), false,
901 llvm::GlobalValue::InternalLinkage,
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000902 Init, Name, &CGM.getModule());
903 GV->setSection(Section);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000904 UsedGlobals.push_back(GV);
905 return llvm::ConstantExpr::getBitCast(GV,
906 ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000907}
908
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000909/*
910 struct _objc_category {
911 char *category_name;
912 char *class_name;
913 struct _objc_method_list *instance_methods;
914 struct _objc_method_list *class_methods;
915 struct _objc_protocol_list *protocols;
916 uint32_t size; // <rdar://4585769>
917 struct _objc_property_list *instance_properties;
918 };
919 */
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000920void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000921 unsigned Size = CGM.getTargetData().getABITypeSize(ObjCTypes.CategoryTy);
922
Daniel Dunbar86e2f402008-08-26 23:03:11 +0000923 // FIXME: This is poor design, the OCD should have a pointer to the
924 // category decl. Additionally, note that Category can be null for
925 // the @implementation w/o an @interface case. Sema should just
926 // create one for us as it does for @implementation so everyone else
927 // can live life under a clear blue sky.
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000928 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Daniel Dunbar86e2f402008-08-26 23:03:11 +0000929 const ObjCCategoryDecl *Category =
930 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000931 std::string ExtName(std::string(Interface->getName()) +
932 "_" +
933 OCD->getName());
934
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000935 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
936 for (ObjCCategoryImplDecl::instmeth_iterator i = OCD->instmeth_begin(),
937 e = OCD->instmeth_end(); i != e; ++i) {
938 // Instance methods should always be defined.
939 InstanceMethods.push_back(GetMethodConstant(*i));
940 }
941 for (ObjCCategoryImplDecl::classmeth_iterator i = OCD->classmeth_begin(),
942 e = OCD->classmeth_end(); i != e; ++i) {
943 // Class methods should always be defined.
944 ClassMethods.push_back(GetMethodConstant(*i));
945 }
946
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000947 std::vector<llvm::Constant*> Values(7);
948 Values[0] = GetClassName(OCD->getIdentifier());
949 Values[1] = GetClassName(Interface->getIdentifier());
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000950 Values[2] =
951 EmitMethodList(std::string("\01L_OBJC_CATEGORY_INSTANCE_METHODS_") +
952 ExtName,
953 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000954 InstanceMethods);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000955 Values[3] =
956 EmitMethodList(std::string("\01L_OBJC_CATEGORY_CLASS_METHODS_") + ExtName,
957 "__OBJC,__cat_class_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000958 ClassMethods);
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000959 if (Category) {
960 Values[4] =
961 EmitProtocolList(std::string("\01L_OBJC_CATEGORY_PROTOCOLS_") + ExtName,
962 Category->protocol_begin(),
963 Category->protocol_end());
964 } else {
965 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
966 }
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000967 Values[5] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar86e2f402008-08-26 23:03:11 +0000968
969 // If there is no category @interface then there can be no properties.
970 if (Category) {
971 Values[6] = EmitPropertyList(std::string("\01L_OBJC_$_PROP_LIST_") + ExtName,
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000972 OCD,
Daniel Dunbar86e2f402008-08-26 23:03:11 +0000973 Category->classprop_begin(),
974 Category->classprop_end());
975 } else {
976 Values[6] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
977 }
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000978
979 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.CategoryTy,
980 Values);
981
982 llvm::GlobalVariable *GV =
983 new llvm::GlobalVariable(ObjCTypes.CategoryTy, false,
984 llvm::GlobalValue::InternalLinkage,
985 Init,
986 std::string("\01L_OBJC_CATEGORY_")+ExtName,
987 &CGM.getModule());
988 GV->setSection("__OBJC,__category,regular,no_dead_strip");
989 UsedGlobals.push_back(GV);
990 DefinedCategories.push_back(GV);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000991}
992
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000993// FIXME: Get from somewhere?
994enum ClassFlags {
995 eClassFlags_Factory = 0x00001,
996 eClassFlags_Meta = 0x00002,
997 // <rdr://5142207>
998 eClassFlags_HasCXXStructors = 0x02000,
999 eClassFlags_Hidden = 0x20000,
1000 eClassFlags_ABI2_Hidden = 0x00010,
1001 eClassFlags_ABI2_HasCXXStructors = 0x00004 // <rdr://4923634>
1002};
1003
1004// <rdr://5142207&4705298&4843145>
1005static bool IsClassHidden(const ObjCInterfaceDecl *ID) {
1006 if (const VisibilityAttr *attr = ID->getAttr<VisibilityAttr>()) {
1007 // FIXME: Support -fvisibility
1008 switch (attr->getVisibility()) {
1009 default:
1010 assert(0 && "Unknown visibility");
1011 return false;
1012 case VisibilityAttr::DefaultVisibility:
1013 case VisibilityAttr::ProtectedVisibility: // FIXME: What do we do here?
1014 return false;
1015 case VisibilityAttr::HiddenVisibility:
1016 return true;
1017 }
1018 } else {
1019 return false; // FIXME: Support -fvisibility
1020 }
1021}
1022
1023/*
1024 struct _objc_class {
1025 Class isa;
1026 Class super_class;
1027 const char *name;
1028 long version;
1029 long info;
1030 long instance_size;
1031 struct _objc_ivar_list *ivars;
1032 struct _objc_method_list *methods;
1033 struct _objc_cache *cache;
1034 struct _objc_protocol_list *protocols;
1035 // Objective-C 1.0 extensions (<rdr://4585769>)
1036 const char *ivar_layout;
1037 struct _objc_class_ext *ext;
1038 };
1039
1040 See EmitClassExtension();
1041 */
1042void CGObjCMac::GenerateClass(const ObjCImplementationDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001043 DefinedSymbols.insert(ID->getIdentifier());
1044
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001045 const char *ClassName = ID->getName();
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001046 // FIXME: Gross
1047 ObjCInterfaceDecl *Interface =
1048 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbardbc93372008-08-21 21:57:41 +00001049 llvm::Constant *Protocols =
1050 EmitProtocolList(std::string("\01L_OBJC_CLASS_PROTOCOLS_") + ID->getName(),
1051 Interface->protocol_begin(),
1052 Interface->protocol_end());
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001053 const llvm::Type *InterfaceTy =
1054 CGM.getTypes().ConvertType(CGM.getContext().getObjCInterfaceType(Interface));
1055 unsigned Flags = eClassFlags_Factory;
1056 unsigned Size = CGM.getTargetData().getABITypeSize(InterfaceTy);
1057
1058 // FIXME: Set CXX-structors flag.
1059 if (IsClassHidden(ID->getClassInterface()))
1060 Flags |= eClassFlags_Hidden;
1061
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001062 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
1063 for (ObjCImplementationDecl::instmeth_iterator i = ID->instmeth_begin(),
1064 e = ID->instmeth_end(); i != e; ++i) {
1065 // Instance methods should always be defined.
1066 InstanceMethods.push_back(GetMethodConstant(*i));
1067 }
1068 for (ObjCImplementationDecl::classmeth_iterator i = ID->classmeth_begin(),
1069 e = ID->classmeth_end(); i != e; ++i) {
1070 // Class methods should always be defined.
1071 ClassMethods.push_back(GetMethodConstant(*i));
1072 }
1073
1074 for (ObjCImplementationDecl::propimpl_iterator i = ID->propimpl_begin(),
1075 e = ID->propimpl_end(); i != e; ++i) {
1076 ObjCPropertyImplDecl *PID = *i;
1077
1078 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
1079 ObjCPropertyDecl *PD = PID->getPropertyDecl();
1080
1081 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
1082 if (llvm::Constant *C = GetMethodConstant(MD))
1083 InstanceMethods.push_back(C);
1084 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
1085 if (llvm::Constant *C = GetMethodConstant(MD))
1086 InstanceMethods.push_back(C);
1087 }
1088 }
1089
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001090 std::vector<llvm::Constant*> Values(12);
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001091 Values[ 0] = EmitMetaClass(ID, Protocols, InterfaceTy, ClassMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001092 if (ObjCInterfaceDecl *Super = Interface->getSuperClass()) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001093 // Record a reference to the super class.
1094 LazySymbols.insert(Super->getIdentifier());
1095
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001096 Values[ 1] =
1097 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
1098 ObjCTypes.ClassPtrTy);
1099 } else {
1100 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
1101 }
1102 Values[ 2] = GetClassName(ID->getIdentifier());
1103 // Version is always 0.
1104 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
1105 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
1106 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
1107 Values[ 6] = EmitIvarList(ID, false, InterfaceTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001108 Values[ 7] =
1109 EmitMethodList(std::string("\01L_OBJC_INSTANCE_METHODS_") + ID->getName(),
1110 "__OBJC,__inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001111 InstanceMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001112 // cache is always NULL.
1113 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
1114 Values[ 9] = Protocols;
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001115 // FIXME: Set ivar_layout
1116 Values[10] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001117 Values[11] = EmitClassExtension(ID);
1118 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
1119 Values);
1120
1121 llvm::GlobalVariable *GV =
1122 new llvm::GlobalVariable(ObjCTypes.ClassTy, false,
1123 llvm::GlobalValue::InternalLinkage,
1124 Init,
1125 std::string("\01L_OBJC_CLASS_")+ClassName,
1126 &CGM.getModule());
1127 GV->setSection("__OBJC,__class,regular,no_dead_strip");
1128 UsedGlobals.push_back(GV);
1129 // FIXME: Why?
1130 GV->setAlignment(32);
1131 DefinedClasses.push_back(GV);
1132}
1133
1134llvm::Constant *CGObjCMac::EmitMetaClass(const ObjCImplementationDecl *ID,
1135 llvm::Constant *Protocols,
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001136 const llvm::Type *InterfaceTy,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001137 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001138 const char *ClassName = ID->getName();
1139 unsigned Flags = eClassFlags_Meta;
1140 unsigned Size = CGM.getTargetData().getABITypeSize(ObjCTypes.ClassTy);
1141
1142 if (IsClassHidden(ID->getClassInterface()))
1143 Flags |= eClassFlags_Hidden;
1144
1145 std::vector<llvm::Constant*> Values(12);
1146 // The isa for the metaclass is the root of the hierarchy.
1147 const ObjCInterfaceDecl *Root = ID->getClassInterface();
1148 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
1149 Root = Super;
1150 Values[ 0] =
1151 llvm::ConstantExpr::getBitCast(GetClassName(Root->getIdentifier()),
1152 ObjCTypes.ClassPtrTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001153 // The super class for the metaclass is emitted as the name of the
1154 // super class. The runtime fixes this up to point to the
1155 // *metaclass* for the super class.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001156 if (ObjCInterfaceDecl *Super = ID->getClassInterface()->getSuperClass()) {
1157 Values[ 1] =
1158 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
1159 ObjCTypes.ClassPtrTy);
1160 } else {
1161 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
1162 }
1163 Values[ 2] = GetClassName(ID->getIdentifier());
1164 // Version is always 0.
1165 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
1166 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
1167 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
1168 Values[ 6] = EmitIvarList(ID, true, InterfaceTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001169 Values[ 7] =
1170 EmitMethodList(std::string("\01L_OBJC_CLASS_METHODS_") + ID->getName(),
1171 "__OBJC,__inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001172 Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001173 // cache is always NULL.
1174 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
1175 Values[ 9] = Protocols;
1176 // ivar_layout for metaclass is always NULL.
1177 Values[10] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
1178 // The class extension is always unused for metaclasses.
1179 Values[11] = llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
1180 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
1181 Values);
1182
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001183 std::string Name("\01L_OBJC_METACLASS_");
1184 Name += ClassName;
1185
1186 // Check for a forward reference.
1187 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
1188 if (GV) {
1189 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
1190 "Forward metaclass reference has incorrect type.");
1191 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
1192 GV->setInitializer(Init);
1193 } else {
1194 GV = new llvm::GlobalVariable(ObjCTypes.ClassTy, false,
1195 llvm::GlobalValue::InternalLinkage,
1196 Init, Name,
1197 &CGM.getModule());
1198 }
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001199 GV->setSection("__OBJC,__meta_class,regular,no_dead_strip");
1200 UsedGlobals.push_back(GV);
1201 // FIXME: Why?
1202 GV->setAlignment(32);
1203
1204 return GV;
1205}
1206
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001207llvm::Constant *CGObjCMac::EmitMetaClassRef(const ObjCInterfaceDecl *ID) {
1208 std::string Name("\01L_OBJC_METACLASS_");
1209 Name += ID->getName();
1210
1211 // FIXME: Should we look these up somewhere other than the
1212 // module. Its a bit silly since we only generate these while
1213 // processing an implementation, so exactly one pointer would work
1214 // if know when we entered/exitted an implementation block.
1215
1216 // Check for an existing forward reference.
1217 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name)) {
1218 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
1219 "Forward metaclass reference has incorrect type.");
1220 return GV;
1221 } else {
1222 // Generate as an external reference to keep a consistent
1223 // module. This will be patched up when we emit the metaclass.
1224 return new llvm::GlobalVariable(ObjCTypes.ClassTy, false,
1225 llvm::GlobalValue::ExternalLinkage,
1226 0,
1227 Name,
1228 &CGM.getModule());
1229 }
1230}
1231
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001232/*
1233 struct objc_class_ext {
1234 uint32_t size;
1235 const char *weak_ivar_layout;
1236 struct _objc_property_list *properties;
1237 };
1238*/
1239llvm::Constant *
1240CGObjCMac::EmitClassExtension(const ObjCImplementationDecl *ID) {
1241 uint64_t Size =
1242 CGM.getTargetData().getABITypeSize(ObjCTypes.ClassExtensionTy);
1243
1244 std::vector<llvm::Constant*> Values(3);
1245 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001246 // FIXME: Output weak_ivar_layout string.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001247 Values[1] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001248 Values[2] = EmitPropertyList(std::string("\01L_OBJC_$_PROP_LIST_") +
1249 ID->getName(),
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001250 ID,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001251 ID->getClassInterface()->classprop_begin(),
1252 ID->getClassInterface()->classprop_end());
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001253
1254 // Return null if no extension bits are used.
1255 if (Values[1]->isNullValue() && Values[2]->isNullValue())
1256 return llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
1257
1258 llvm::Constant *Init =
1259 llvm::ConstantStruct::get(ObjCTypes.ClassExtensionTy, Values);
1260 llvm::GlobalVariable *GV =
1261 new llvm::GlobalVariable(ObjCTypes.ClassExtensionTy, false,
1262 llvm::GlobalValue::InternalLinkage,
1263 Init,
1264 (std::string("\01L_OBJC_CLASSEXT_") +
1265 ID->getName()),
1266 &CGM.getModule());
1267 // No special section, but goes in llvm.used
1268 UsedGlobals.push_back(GV);
1269
1270 return GV;
1271}
1272
1273/*
1274 struct objc_ivar {
1275 char *ivar_name;
1276 char *ivar_type;
1277 int ivar_offset;
1278 };
1279
1280 struct objc_ivar_list {
1281 int ivar_count;
1282 struct objc_ivar list[count];
1283 };
1284 */
1285llvm::Constant *CGObjCMac::EmitIvarList(const ObjCImplementationDecl *ID,
1286 bool ForClass,
1287 const llvm::Type *InterfaceTy) {
1288 std::vector<llvm::Constant*> Ivars, Ivar(3);
1289
1290 // When emitting the root class GCC emits ivar entries for the
1291 // actual class structure. It is not clear if we need to follow this
1292 // behavior; for now lets try and get away with not doing it. If so,
1293 // the cleanest solution would be to make up an ObjCInterfaceDecl
1294 // for the class.
1295 if (ForClass)
1296 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
1297
1298 const llvm::StructLayout *Layout =
1299 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceTy));
1300 for (ObjCInterfaceDecl::ivar_iterator
1301 i = ID->getClassInterface()->ivar_begin(),
1302 e = ID->getClassInterface()->ivar_end(); i != e; ++i) {
1303 ObjCIvarDecl *V = *i;
1304 unsigned Offset =
1305 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(V));
1306 std::string TypeStr;
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001307 Ivar[0] = GetMethodVarName(V->getIdentifier());
Daniel Dunbar0d504c12008-10-17 20:21:44 +00001308 CGM.getContext().getObjCEncodingForType(V->getType(), TypeStr, true);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001309 Ivar[1] = GetMethodVarType(TypeStr);
1310 Ivar[2] = llvm::ConstantInt::get(ObjCTypes.IntTy, Offset);
Daniel Dunbar0d504c12008-10-17 20:21:44 +00001311 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarTy, Ivar));
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001312 }
1313
1314 // Return null for empty list.
1315 if (Ivars.empty())
1316 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
1317
1318 std::vector<llvm::Constant*> Values(2);
1319 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
1320 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarTy,
1321 Ivars.size());
1322 Values[1] = llvm::ConstantArray::get(AT, Ivars);
1323 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
1324
1325 const char *Prefix = (ForClass ? "\01L_OBJC_CLASS_VARIABLES_" :
1326 "\01L_OBJC_INSTANCE_VARIABLES_");
1327 llvm::GlobalVariable *GV =
1328 new llvm::GlobalVariable(Init->getType(), false,
1329 llvm::GlobalValue::InternalLinkage,
1330 Init,
1331 std::string(Prefix) + ID->getName(),
1332 &CGM.getModule());
1333 if (ForClass) {
1334 GV->setSection("__OBJC,__cls_vars,regular,no_dead_strip");
1335 // FIXME: Why is this only here?
1336 GV->setAlignment(32);
1337 } else {
1338 GV->setSection("__OBJC,__instance_vars,regular,no_dead_strip");
1339 }
1340 UsedGlobals.push_back(GV);
1341 return llvm::ConstantExpr::getBitCast(GV,
1342 ObjCTypes.IvarListPtrTy);
1343}
1344
1345/*
1346 struct objc_method {
1347 SEL method_name;
1348 char *method_types;
1349 void *method;
1350 };
1351
1352 struct objc_method_list {
1353 struct objc_method_list *obsolete;
1354 int count;
1355 struct objc_method methods_list[count];
1356 };
1357*/
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001358
1359/// GetMethodConstant - Return a struct objc_method constant for the
1360/// given method if it has been defined. The result is null if the
1361/// method has not been defined. The return value has type MethodPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001362llvm::Constant *CGObjCMac::GetMethodConstant(const ObjCMethodDecl *MD) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001363 // FIXME: Use DenseMap::lookup
1364 llvm::Function *Fn = MethodDefinitions[MD];
1365 if (!Fn)
1366 return 0;
1367
1368 std::vector<llvm::Constant*> Method(3);
1369 Method[0] =
1370 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
1371 ObjCTypes.SelectorPtrTy);
1372 Method[1] = GetMethodVarType(MD);
1373 Method[2] = llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy);
1374 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
1375}
1376
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001377llvm::Constant *CGObjCMac::EmitMethodList(const std::string &Name,
1378 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001379 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001380 // Return null for empty list.
1381 if (Methods.empty())
1382 return llvm::Constant::getNullValue(ObjCTypes.MethodListPtrTy);
1383
1384 std::vector<llvm::Constant*> Values(3);
1385 Values[0] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
1386 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
1387 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
1388 Methods.size());
1389 Values[2] = llvm::ConstantArray::get(AT, Methods);
1390 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
1391
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001392 llvm::GlobalVariable *GV =
1393 new llvm::GlobalVariable(Init->getType(), false,
1394 llvm::GlobalValue::InternalLinkage,
1395 Init,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001396 Name,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001397 &CGM.getModule());
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001398 GV->setSection(Section);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001399 UsedGlobals.push_back(GV);
1400 return llvm::ConstantExpr::getBitCast(GV,
1401 ObjCTypes.MethodListPtrTy);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001402}
1403
1404llvm::Function *CGObjCMac::GenerateMethod(const ObjCMethodDecl *OMD) {
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001405 std::string Name;
1406 GetNameForMethod(OMD, Name);
1407
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001408 const llvm::FunctionType *MethodTy =
1409 CGM.getTypes().GetFunctionType(CGFunctionInfo(OMD, CGM.getContext()));
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001410 llvm::Function *Method =
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001411 llvm::Function::Create(MethodTy,
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001412 llvm::GlobalValue::InternalLinkage,
1413 Name,
1414 &CGM.getModule());
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001415 MethodDefinitions.insert(std::make_pair(OMD, Method));
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001416
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001417 return Method;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001418}
1419
1420llvm::Function *CGObjCMac::ModuleInitFunction() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001421 // Abuse this interface function as a place to finalize.
1422 FinishModule();
1423
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001424 return NULL;
1425}
1426
Daniel Dunbar49f66022008-09-24 03:38:44 +00001427llvm::Function *CGObjCMac::GetPropertyGetFunction() {
1428 return ObjCTypes.GetPropertyFn;
1429}
1430
1431llvm::Function *CGObjCMac::GetPropertySetFunction() {
1432 return ObjCTypes.SetPropertyFn;
1433}
1434
Anders Carlsson2abd89c2008-08-31 04:05:03 +00001435llvm::Function *CGObjCMac::EnumerationMutationFunction()
1436{
1437 return ObjCTypes.EnumerationMutationFn;
1438}
1439
Daniel Dunbar18ccc772008-09-28 01:03:14 +00001440/*
1441
1442Objective-C setjmp-longjmp (sjlj) Exception Handling
1443--
1444
1445The basic framework for a @try-catch-finally is as follows:
1446{
1447 objc_exception_data d;
1448 id _rethrow = null;
1449
1450 objc_exception_try_enter(&d);
1451 if (!setjmp(d.jmp_buf)) {
1452 ... try body ...
1453 } else {
1454 // exception path
1455 id _caught = objc_exception_extract(&d);
1456
1457 // enter new try scope for handlers
1458 if (!setjmp(d.jmp_buf)) {
1459 ... match exception and execute catch blocks ...
1460
1461 // fell off end, rethrow.
1462 _rethrow = _caught;
Daniel Dunbar898d5082008-09-30 01:06:03 +00001463 ... jump-through-finally to finally_rethrow ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00001464 } else {
1465 // exception in catch block
1466 _rethrow = objc_exception_extract(&d);
Daniel Dunbar898d5082008-09-30 01:06:03 +00001467 ... jump-through-finally_no_exit to finally_rethrow ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00001468 }
1469 }
Daniel Dunbar898d5082008-09-30 01:06:03 +00001470 ... jump-through-finally to finally_end ...
Daniel Dunbar18ccc772008-09-28 01:03:14 +00001471
1472finally:
1473 // match either the initial try_enter or the catch try_enter,
1474 // depending on the path followed.
1475 objc_exception_try_exit(&d);
1476finally_no_exit:
1477 ... finally block ....
Daniel Dunbar898d5082008-09-30 01:06:03 +00001478 ... dispatch to finally destination ...
1479
1480finally_rethrow:
1481 objc_exception_throw(_rethrow);
1482
1483finally_end:
Daniel Dunbar18ccc772008-09-28 01:03:14 +00001484}
1485
1486This framework differs slightly from the one gcc uses, in that gcc
Daniel Dunbar898d5082008-09-30 01:06:03 +00001487uses _rethrow to determine if objc_exception_try_exit should be called
1488and if the object should be rethrown. This breaks in the face of
1489throwing nil and introduces unnecessary branches.
Daniel Dunbar18ccc772008-09-28 01:03:14 +00001490
1491We specialize this framework for a few particular circumstances:
1492
1493 - If there are no catch blocks, then we avoid emitting the second
1494 exception handling context.
1495
1496 - If there is a catch-all catch block (i.e. @catch(...) or @catch(id
1497 e)) we avoid emitting the code to rethrow an uncaught exception.
1498
1499 - FIXME: If there is no @finally block we can do a few more
1500 simplifications.
1501
1502Rethrows and Jumps-Through-Finally
1503--
1504
1505Support for implicit rethrows and jumping through the finally block is
1506handled by storing the current exception-handling context in
1507ObjCEHStack.
1508
Daniel Dunbar898d5082008-09-30 01:06:03 +00001509In order to implement proper @finally semantics, we support one basic
1510mechanism for jumping through the finally block to an arbitrary
1511destination. Constructs which generate exits from a @try or @catch
1512block use this mechanism to implement the proper semantics by chaining
1513jumps, as necessary.
1514
1515This mechanism works like the one used for indirect goto: we
1516arbitrarily assign an ID to each destination and store the ID for the
1517destination in a variable prior to entering the finally block. At the
1518end of the finally block we simply create a switch to the proper
1519destination.
1520
Daniel Dunbar18ccc772008-09-28 01:03:14 +00001521*/
1522
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001523void CGObjCMac::EmitTryStmt(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar898d5082008-09-30 01:06:03 +00001524 const ObjCAtTryStmt &S) {
1525 // Create various blocks we refer to for handling @finally.
Daniel Dunbar55e87422008-11-11 02:29:29 +00001526 llvm::BasicBlock *FinallyBlock = CGF.createBasicBlock("finally");
1527 llvm::BasicBlock *FinallyNoExit = CGF.createBasicBlock("finally.noexit");
1528 llvm::BasicBlock *FinallyRethrow = CGF.createBasicBlock("finally.throw");
1529 llvm::BasicBlock *FinallyEnd = CGF.createBasicBlock("finally.end");
Daniel Dunbar898d5082008-09-30 01:06:03 +00001530 llvm::Value *DestCode =
1531 CGF.CreateTempAlloca(llvm::Type::Int32Ty, "finally.dst");
1532
1533 // Generate jump code. Done here so we can directly add things to
1534 // the switch instruction.
Daniel Dunbar55e87422008-11-11 02:29:29 +00001535 llvm::BasicBlock *FinallyJump = CGF.createBasicBlock("finally.jump");
Daniel Dunbar898d5082008-09-30 01:06:03 +00001536 llvm::SwitchInst *FinallySwitch =
1537 llvm::SwitchInst::Create(new llvm::LoadInst(DestCode, "", FinallyJump),
1538 FinallyEnd, 10, FinallyJump);
1539
1540 // Push an EH context entry, used for handling rethrows and jumps
1541 // through finally.
1542 CodeGenFunction::ObjCEHEntry EHEntry(FinallyBlock, FinallyNoExit,
1543 FinallySwitch, DestCode);
1544 CGF.ObjCEHStack.push_back(&EHEntry);
1545
1546 // Allocate memory for the exception data and rethrow pointer.
Anders Carlsson80f25672008-09-09 17:59:25 +00001547 llvm::Value *ExceptionData = CGF.CreateTempAlloca(ObjCTypes.ExceptionDataTy,
1548 "exceptiondata.ptr");
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00001549 llvm::Value *RethrowPtr = CGF.CreateTempAlloca(ObjCTypes.ObjectPtrTy,
1550 "_rethrow");
Anders Carlsson80f25672008-09-09 17:59:25 +00001551
1552 // Enter a new try block and call setjmp.
1553 CGF.Builder.CreateCall(ObjCTypes.ExceptionTryEnterFn, ExceptionData);
1554 llvm::Value *JmpBufPtr = CGF.Builder.CreateStructGEP(ExceptionData, 0,
1555 "jmpbufarray");
1556 JmpBufPtr = CGF.Builder.CreateStructGEP(JmpBufPtr, 0, "tmp");
1557 llvm::Value *SetJmpResult = CGF.Builder.CreateCall(ObjCTypes.SetJmpFn,
1558 JmpBufPtr, "result");
Daniel Dunbar898d5082008-09-30 01:06:03 +00001559
Daniel Dunbar55e87422008-11-11 02:29:29 +00001560 llvm::BasicBlock *TryBlock = CGF.createBasicBlock("try");
1561 llvm::BasicBlock *TryHandler = CGF.createBasicBlock("try.handler");
Daniel Dunbar91cd3202008-10-02 17:05:36 +00001562 CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(SetJmpResult, "threw"),
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00001563 TryHandler, TryBlock);
Anders Carlsson80f25672008-09-09 17:59:25 +00001564
1565 // Emit the @try block.
1566 CGF.EmitBlock(TryBlock);
1567 CGF.EmitStmt(S.getTryBody());
Daniel Dunbar898d5082008-09-30 01:06:03 +00001568 CGF.EmitJumpThroughFinally(&EHEntry, FinallyEnd);
Anders Carlsson80f25672008-09-09 17:59:25 +00001569
1570 // Emit the "exception in @try" block.
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00001571 CGF.EmitBlock(TryHandler);
Daniel Dunbar55e40722008-09-27 07:03:52 +00001572
1573 // Retrieve the exception object. We may emit multiple blocks but
1574 // nothing can cross this so the value is already in SSA form.
1575 llvm::Value *Caught = CGF.Builder.CreateCall(ObjCTypes.ExceptionExtractFn,
1576 ExceptionData,
1577 "caught");
Daniel Dunbar898d5082008-09-30 01:06:03 +00001578 EHEntry.Exception = Caught;
Daniel Dunbar55e40722008-09-27 07:03:52 +00001579 if (const ObjCAtCatchStmt* CatchStmt = S.getCatchStmts()) {
1580 // Enter a new exception try block (in case a @catch block throws
1581 // an exception).
Anders Carlsson80f25672008-09-09 17:59:25 +00001582 CGF.Builder.CreateCall(ObjCTypes.ExceptionTryEnterFn, ExceptionData);
Daniel Dunbar55e40722008-09-27 07:03:52 +00001583
Anders Carlsson80f25672008-09-09 17:59:25 +00001584 llvm::Value *SetJmpResult = CGF.Builder.CreateCall(ObjCTypes.SetJmpFn,
1585 JmpBufPtr, "result");
Daniel Dunbar91cd3202008-10-02 17:05:36 +00001586 llvm::Value *Threw = CGF.Builder.CreateIsNotNull(SetJmpResult, "threw");
Anders Carlsson80f25672008-09-09 17:59:25 +00001587
Daniel Dunbar55e87422008-11-11 02:29:29 +00001588 llvm::BasicBlock *CatchBlock = CGF.createBasicBlock("catch");
1589 llvm::BasicBlock *CatchHandler = CGF.createBasicBlock("catch.handler");
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00001590 CGF.Builder.CreateCondBr(Threw, CatchHandler, CatchBlock);
Anders Carlsson80f25672008-09-09 17:59:25 +00001591
1592 CGF.EmitBlock(CatchBlock);
1593
Daniel Dunbar55e40722008-09-27 07:03:52 +00001594 // Handle catch list. As a special case we check if everything is
1595 // matched and avoid generating code for falling off the end if
1596 // so.
1597 bool AllMatched = false;
Anders Carlsson80f25672008-09-09 17:59:25 +00001598 for (; CatchStmt; CatchStmt = CatchStmt->getNextCatchStmt()) {
Daniel Dunbar55e87422008-11-11 02:29:29 +00001599 llvm::BasicBlock *NextCatchBlock = CGF.createBasicBlock("catch");
Anders Carlsson80f25672008-09-09 17:59:25 +00001600
Anders Carlssondde0a942008-09-11 09:15:33 +00001601 const DeclStmt *CatchParam =
1602 cast_or_null<DeclStmt>(CatchStmt->getCatchParamStmt());
Daniel Dunbar129271a2008-09-27 07:36:24 +00001603 const VarDecl *VD = 0;
1604 const PointerType *PT = 0;
1605
Anders Carlsson80f25672008-09-09 17:59:25 +00001606 // catch(...) always matches.
Daniel Dunbar55e40722008-09-27 07:03:52 +00001607 if (!CatchParam) {
1608 AllMatched = true;
1609 } else {
Ted Kremenekde3b8fb2008-10-06 20:58:56 +00001610 VD = cast<VarDecl>(CatchParam->getSolitaryDecl());
Daniel Dunbar129271a2008-09-27 07:36:24 +00001611 PT = VD->getType()->getAsPointerType();
Anders Carlsson80f25672008-09-09 17:59:25 +00001612
Daniel Dunbar97f61d12008-09-27 22:21:14 +00001613 // catch(id e) always matches.
1614 // FIXME: For the time being we also match id<X>; this should
1615 // be rejected by Sema instead.
1616 if ((PT && CGF.getContext().isObjCIdType(PT->getPointeeType())) ||
1617 VD->getType()->isObjCQualifiedIdType())
Daniel Dunbar55e40722008-09-27 07:03:52 +00001618 AllMatched = true;
Anders Carlsson80f25672008-09-09 17:59:25 +00001619 }
1620
Daniel Dunbar55e40722008-09-27 07:03:52 +00001621 if (AllMatched) {
Anders Carlssondde0a942008-09-11 09:15:33 +00001622 if (CatchParam) {
1623 CGF.EmitStmt(CatchParam);
Daniel Dunbar129271a2008-09-27 07:36:24 +00001624 CGF.Builder.CreateStore(Caught, CGF.GetAddrOfLocalVar(VD));
Anders Carlssondde0a942008-09-11 09:15:33 +00001625 }
Anders Carlsson1452f552008-09-11 08:21:54 +00001626
Anders Carlssondde0a942008-09-11 09:15:33 +00001627 CGF.EmitStmt(CatchStmt->getCatchBody());
Daniel Dunbar898d5082008-09-30 01:06:03 +00001628 CGF.EmitJumpThroughFinally(&EHEntry, FinallyEnd);
Anders Carlsson80f25672008-09-09 17:59:25 +00001629 break;
1630 }
1631
Daniel Dunbar129271a2008-09-27 07:36:24 +00001632 assert(PT && "Unexpected non-pointer type in @catch");
1633 QualType T = PT->getPointeeType();
Anders Carlsson4b7ff6e2008-09-11 06:35:14 +00001634 const ObjCInterfaceType *ObjCType = T->getAsObjCInterfaceType();
Anders Carlsson80f25672008-09-09 17:59:25 +00001635 assert(ObjCType && "Catch parameter must have Objective-C type!");
1636
1637 // Check if the @catch block matches the exception object.
1638 llvm::Value *Class = EmitClassRef(CGF.Builder, ObjCType->getDecl());
1639
Anders Carlsson80f25672008-09-09 17:59:25 +00001640 llvm::Value *Match = CGF.Builder.CreateCall2(ObjCTypes.ExceptionMatchFn,
1641 Class, Caught, "match");
Anders Carlsson80f25672008-09-09 17:59:25 +00001642
Daniel Dunbar55e87422008-11-11 02:29:29 +00001643 llvm::BasicBlock *MatchedBlock = CGF.createBasicBlock("matched");
Anders Carlsson80f25672008-09-09 17:59:25 +00001644
Daniel Dunbar91cd3202008-10-02 17:05:36 +00001645 CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(Match, "matched"),
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00001646 MatchedBlock, NextCatchBlock);
Anders Carlsson80f25672008-09-09 17:59:25 +00001647
1648 // Emit the @catch block.
1649 CGF.EmitBlock(MatchedBlock);
Daniel Dunbar18ccc772008-09-28 01:03:14 +00001650 CGF.EmitStmt(CatchParam);
1651
1652 llvm::Value *Tmp =
1653 CGF.Builder.CreateBitCast(Caught, CGF.ConvertType(VD->getType()),
1654 "tmp");
1655 CGF.Builder.CreateStore(Tmp, CGF.GetAddrOfLocalVar(VD));
Anders Carlssondde0a942008-09-11 09:15:33 +00001656
1657 CGF.EmitStmt(CatchStmt->getCatchBody());
Daniel Dunbar898d5082008-09-30 01:06:03 +00001658 CGF.EmitJumpThroughFinally(&EHEntry, FinallyEnd);
Anders Carlsson80f25672008-09-09 17:59:25 +00001659
1660 CGF.EmitBlock(NextCatchBlock);
1661 }
1662
Daniel Dunbar55e40722008-09-27 07:03:52 +00001663 if (!AllMatched) {
1664 // None of the handlers caught the exception, so store it to be
1665 // rethrown at the end of the @finally block.
1666 CGF.Builder.CreateStore(Caught, RethrowPtr);
Daniel Dunbar898d5082008-09-30 01:06:03 +00001667 CGF.EmitJumpThroughFinally(&EHEntry, FinallyRethrow);
Daniel Dunbar55e40722008-09-27 07:03:52 +00001668 }
1669
1670 // Emit the exception handler for the @catch blocks.
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00001671 CGF.EmitBlock(CatchHandler);
Daniel Dunbar55e40722008-09-27 07:03:52 +00001672 CGF.Builder.CreateStore(CGF.Builder.CreateCall(ObjCTypes.ExceptionExtractFn,
1673 ExceptionData),
1674 RethrowPtr);
Daniel Dunbar898d5082008-09-30 01:06:03 +00001675 CGF.EmitJumpThroughFinally(&EHEntry, FinallyRethrow, false);
Daniel Dunbar55e40722008-09-27 07:03:52 +00001676 } else {
Anders Carlsson80f25672008-09-09 17:59:25 +00001677 CGF.Builder.CreateStore(Caught, RethrowPtr);
Daniel Dunbar898d5082008-09-30 01:06:03 +00001678 CGF.EmitJumpThroughFinally(&EHEntry, FinallyRethrow, false);
Anders Carlsson80f25672008-09-09 17:59:25 +00001679 }
1680
Daniel Dunbar898d5082008-09-30 01:06:03 +00001681 // Pop the exception-handling stack entry. It is important to do
1682 // this now, because the code in the @finally block is not in this
1683 // context.
1684 CGF.ObjCEHStack.pop_back();
1685
Anders Carlsson80f25672008-09-09 17:59:25 +00001686 // Emit the @finally block.
1687 CGF.EmitBlock(FinallyBlock);
Anders Carlsson80f25672008-09-09 17:59:25 +00001688 CGF.Builder.CreateCall(ObjCTypes.ExceptionTryExitFn, ExceptionData);
Daniel Dunbar129271a2008-09-27 07:36:24 +00001689
1690 CGF.EmitBlock(FinallyNoExit);
Anders Carlsson80f25672008-09-09 17:59:25 +00001691 if (const ObjCAtFinallyStmt* FinallyStmt = S.getFinallyStmt())
1692 CGF.EmitStmt(FinallyStmt->getFinallyBody());
1693
Daniel Dunbar898d5082008-09-30 01:06:03 +00001694 CGF.EmitBlock(FinallyJump);
1695
1696 CGF.EmitBlock(FinallyRethrow);
1697 CGF.Builder.CreateCall(ObjCTypes.ExceptionThrowFn,
1698 CGF.Builder.CreateLoad(RethrowPtr));
Daniel Dunbare4b5ee02008-09-27 23:30:04 +00001699 CGF.Builder.CreateUnreachable();
Daniel Dunbar898d5082008-09-30 01:06:03 +00001700
1701 CGF.EmitBlock(FinallyEnd);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001702}
1703
1704void CGObjCMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar898d5082008-09-30 01:06:03 +00001705 const ObjCAtThrowStmt &S) {
Anders Carlsson2b1e3112008-09-09 16:16:55 +00001706 llvm::Value *ExceptionAsObject;
1707
1708 if (const Expr *ThrowExpr = S.getThrowExpr()) {
1709 llvm::Value *Exception = CGF.EmitScalarExpr(ThrowExpr);
1710 ExceptionAsObject =
1711 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy, "tmp");
1712 } else {
Daniel Dunbar898d5082008-09-30 01:06:03 +00001713 assert((!CGF.ObjCEHStack.empty() && CGF.ObjCEHStack.back()->Exception) &&
Daniel Dunbar18ccc772008-09-28 01:03:14 +00001714 "Unexpected rethrow outside @catch block.");
Daniel Dunbar898d5082008-09-30 01:06:03 +00001715 ExceptionAsObject = CGF.ObjCEHStack.back()->Exception;
Anders Carlsson2b1e3112008-09-09 16:16:55 +00001716 }
1717
1718 CGF.Builder.CreateCall(ObjCTypes.ExceptionThrowFn, ExceptionAsObject);
Anders Carlsson80f25672008-09-09 17:59:25 +00001719 CGF.Builder.CreateUnreachable();
Daniel Dunbar55e87422008-11-11 02:29:29 +00001720 CGF.EmitBlock(CGF.createBasicBlock("bb"));
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001721}
1722
Daniel Dunbar898d5082008-09-30 01:06:03 +00001723void CodeGenFunction::EmitJumpThroughFinally(ObjCEHEntry *E,
1724 llvm::BasicBlock *Dst,
1725 bool ExecuteTryExit) {
1726 llvm::BasicBlock *Src = Builder.GetInsertBlock();
1727
1728 if (isDummyBlock(Src))
1729 return;
1730
1731 // Find the destination code for this block. We always use 0 for the
1732 // fallthrough block (default destination).
1733 llvm::SwitchInst *SI = E->FinallySwitch;
1734 llvm::ConstantInt *ID;
1735 if (Dst == SI->getDefaultDest()) {
1736 ID = llvm::ConstantInt::get(llvm::Type::Int32Ty, 0);
1737 } else {
1738 ID = SI->findCaseDest(Dst);
1739 if (!ID) {
1740 // No code found, get a new unique one by just using the number
1741 // of switch successors.
1742 ID = llvm::ConstantInt::get(llvm::Type::Int32Ty, SI->getNumSuccessors());
1743 SI->addCase(ID, Dst);
1744 }
1745 }
1746
1747 // Set the destination code and branch.
1748 Builder.CreateStore(ID, E->DestCode);
1749 Builder.CreateBr(ExecuteTryExit ? E->FinallyBlock : E->FinallyNoExit);
1750}
1751
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001752/* *** Private Interface *** */
1753
1754/// EmitImageInfo - Emit the image info marker used to encode some module
1755/// level information.
1756///
1757/// See: <rdr://4810609&4810587&4810587>
1758/// struct IMAGE_INFO {
1759/// unsigned version;
1760/// unsigned flags;
1761/// };
1762enum ImageInfoFlags {
1763 eImageInfo_FixAndContinue = (1 << 0), // FIXME: Not sure what this implies
1764 eImageInfo_GarbageCollected = (1 << 1),
1765 eImageInfo_GCOnly = (1 << 2)
1766};
1767
1768void CGObjCMac::EmitImageInfo() {
1769 unsigned version = 0; // Version is unused?
1770 unsigned flags = 0;
1771
1772 // FIXME: Fix and continue?
1773 if (CGM.getLangOptions().getGCMode() != LangOptions::NonGC)
1774 flags |= eImageInfo_GarbageCollected;
1775 if (CGM.getLangOptions().getGCMode() == LangOptions::GCOnly)
1776 flags |= eImageInfo_GCOnly;
1777
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001778 // Emitted as int[2];
1779 llvm::Constant *values[2] = {
1780 llvm::ConstantInt::get(llvm::Type::Int32Ty, version),
1781 llvm::ConstantInt::get(llvm::Type::Int32Ty, flags)
1782 };
1783 llvm::ArrayType *AT = llvm::ArrayType::get(llvm::Type::Int32Ty, 2);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001784 llvm::GlobalVariable *GV =
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001785 new llvm::GlobalVariable(AT, true,
1786 llvm::GlobalValue::InternalLinkage,
1787 llvm::ConstantArray::get(AT, values, 2),
1788 "\01L_OBJC_IMAGE_INFO",
1789 &CGM.getModule());
1790
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001791 if (ObjCABI == 1) {
1792 GV->setSection("__OBJC, __image_info,regular");
1793 } else {
1794 GV->setSection("__DATA, __objc_imageinfo, regular, no_dead_strip");
1795 }
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001796
1797 UsedGlobals.push_back(GV);
1798}
1799
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001800
1801// struct objc_module {
1802// unsigned long version;
1803// unsigned long size;
1804// const char *name;
1805// Symtab symtab;
1806// };
1807
1808// FIXME: Get from somewhere
1809static const int ModuleVersion = 7;
1810
1811void CGObjCMac::EmitModuleInfo() {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001812 uint64_t Size = CGM.getTargetData().getABITypeSize(ObjCTypes.ModuleTy);
1813
1814 std::vector<llvm::Constant*> Values(4);
1815 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, ModuleVersion);
1816 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001817 // This used to be the filename, now it is unused. <rdr://4327263>
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001818 Values[2] = GetClassName(&CGM.getContext().Idents.get(""));
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001819 Values[3] = EmitModuleSymbols();
1820
1821 llvm::GlobalVariable *GV =
1822 new llvm::GlobalVariable(ObjCTypes.ModuleTy, false,
1823 llvm::GlobalValue::InternalLinkage,
1824 llvm::ConstantStruct::get(ObjCTypes.ModuleTy,
1825 Values),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001826 "\01L_OBJC_MODULES",
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001827 &CGM.getModule());
1828 GV->setSection("__OBJC,__module_info,regular,no_dead_strip");
1829 UsedGlobals.push_back(GV);
1830}
1831
1832llvm::Constant *CGObjCMac::EmitModuleSymbols() {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001833 unsigned NumClasses = DefinedClasses.size();
1834 unsigned NumCategories = DefinedCategories.size();
1835
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001836 // Return null if no symbols were defined.
1837 if (!NumClasses && !NumCategories)
1838 return llvm::Constant::getNullValue(ObjCTypes.SymtabPtrTy);
1839
1840 std::vector<llvm::Constant*> Values(5);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001841 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
1842 Values[1] = llvm::Constant::getNullValue(ObjCTypes.SelectorPtrTy);
1843 Values[2] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumClasses);
1844 Values[3] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumCategories);
1845
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001846 // The runtime expects exactly the list of defined classes followed
1847 // by the list of defined categories, in a single array.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001848 std::vector<llvm::Constant*> Symbols(NumClasses + NumCategories);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001849 for (unsigned i=0; i<NumClasses; i++)
1850 Symbols[i] = llvm::ConstantExpr::getBitCast(DefinedClasses[i],
1851 ObjCTypes.Int8PtrTy);
1852 for (unsigned i=0; i<NumCategories; i++)
1853 Symbols[NumClasses + i] =
1854 llvm::ConstantExpr::getBitCast(DefinedCategories[i],
1855 ObjCTypes.Int8PtrTy);
1856
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001857 Values[4] =
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001858 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001859 NumClasses + NumCategories),
1860 Symbols);
1861
1862 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
1863
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001864 llvm::GlobalVariable *GV =
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001865 new llvm::GlobalVariable(Init->getType(), false,
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001866 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001867 Init,
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001868 "\01L_OBJC_SYMBOLS",
1869 &CGM.getModule());
1870 GV->setSection("__OBJC,__symbols,regular,no_dead_strip");
1871 UsedGlobals.push_back(GV);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001872 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.SymtabPtrTy);
1873}
1874
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001875llvm::Value *CGObjCMac::EmitClassRef(CGBuilderTy &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001876 const ObjCInterfaceDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001877 LazySymbols.insert(ID->getIdentifier());
1878
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001879 llvm::GlobalVariable *&Entry = ClassReferences[ID->getIdentifier()];
1880
1881 if (!Entry) {
1882 llvm::Constant *Casted =
1883 llvm::ConstantExpr::getBitCast(GetClassName(ID->getIdentifier()),
1884 ObjCTypes.ClassPtrTy);
1885 Entry =
1886 new llvm::GlobalVariable(ObjCTypes.ClassPtrTy, false,
1887 llvm::GlobalValue::InternalLinkage,
1888 Casted, "\01L_OBJC_CLASS_REFERENCES_",
1889 &CGM.getModule());
1890 Entry->setSection("__OBJC,__cls_refs,literal_pointers,no_dead_strip");
1891 UsedGlobals.push_back(Entry);
1892 }
1893
1894 return Builder.CreateLoad(Entry, false, "tmp");
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001895}
1896
Daniel Dunbar45d196b2008-11-01 01:53:16 +00001897llvm::Value *CGObjCMac::EmitSelector(CGBuilderTy &Builder, Selector Sel) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +00001898 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
1899
1900 if (!Entry) {
1901 llvm::Constant *Casted =
1902 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
1903 ObjCTypes.SelectorPtrTy);
1904 Entry =
1905 new llvm::GlobalVariable(ObjCTypes.SelectorPtrTy, false,
1906 llvm::GlobalValue::InternalLinkage,
1907 Casted, "\01L_OBJC_SELECTOR_REFERENCES_",
1908 &CGM.getModule());
1909 Entry->setSection("__OBJC,__message_refs,literal_pointers,no_dead_strip");
1910 UsedGlobals.push_back(Entry);
1911 }
1912
1913 return Builder.CreateLoad(Entry, false, "tmp");
1914}
1915
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001916llvm::Constant *CGObjCMac::GetClassName(IdentifierInfo *Ident) {
1917 llvm::GlobalVariable *&Entry = ClassNames[Ident];
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001918
1919 if (!Entry) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001920 llvm::Constant *C = llvm::ConstantArray::get(Ident->getName());
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001921 Entry =
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001922 new llvm::GlobalVariable(C->getType(), false,
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001923 llvm::GlobalValue::InternalLinkage,
1924 C, "\01L_OBJC_CLASS_NAME_",
1925 &CGM.getModule());
1926 Entry->setSection("__TEXT,__cstring,cstring_literals");
1927 UsedGlobals.push_back(Entry);
1928 }
1929
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001930 return getConstantGEP(Entry, 0, 0);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001931}
1932
Daniel Dunbar259d93d2008-08-12 03:39:23 +00001933llvm::Constant *CGObjCMac::GetMethodVarName(Selector Sel) {
1934 llvm::GlobalVariable *&Entry = MethodVarNames[Sel];
1935
1936 if (!Entry) {
1937 llvm::Constant *C = llvm::ConstantArray::get(Sel.getName());
1938 Entry =
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001939 new llvm::GlobalVariable(C->getType(), false,
Daniel Dunbar259d93d2008-08-12 03:39:23 +00001940 llvm::GlobalValue::InternalLinkage,
1941 C, "\01L_OBJC_METH_VAR_NAME_",
1942 &CGM.getModule());
1943 Entry->setSection("__TEXT,__cstring,cstring_literals");
1944 UsedGlobals.push_back(Entry);
1945 }
1946
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001947 return getConstantGEP(Entry, 0, 0);
1948}
1949
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001950// FIXME: Merge into a single cstring creation function.
1951llvm::Constant *CGObjCMac::GetMethodVarName(IdentifierInfo *ID) {
1952 return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID));
1953}
1954
1955// FIXME: Merge into a single cstring creation function.
1956llvm::Constant *CGObjCMac::GetMethodVarName(const std::string &Name) {
1957 return GetMethodVarName(&CGM.getContext().Idents.get(Name));
1958}
1959
1960llvm::Constant *CGObjCMac::GetMethodVarType(const std::string &Name) {
1961 llvm::GlobalVariable *&Entry = MethodVarTypes[Name];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001962
1963 if (!Entry) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001964 llvm::Constant *C = llvm::ConstantArray::get(Name);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001965 Entry =
1966 new llvm::GlobalVariable(C->getType(), false,
1967 llvm::GlobalValue::InternalLinkage,
1968 C, "\01L_OBJC_METH_VAR_TYPE_",
1969 &CGM.getModule());
1970 Entry->setSection("__TEXT,__cstring,cstring_literals");
1971 UsedGlobals.push_back(Entry);
1972 }
1973
1974 return getConstantGEP(Entry, 0, 0);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00001975}
1976
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001977// FIXME: Merge into a single cstring creation function.
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001978llvm::Constant *CGObjCMac::GetMethodVarType(const ObjCMethodDecl *D) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001979 std::string TypeStr;
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001980 CGM.getContext().getObjCEncodingForMethodDecl(const_cast<ObjCMethodDecl*>(D),
1981 TypeStr);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001982 return GetMethodVarType(TypeStr);
1983}
1984
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001985// FIXME: Merge into a single cstring creation function.
1986llvm::Constant *CGObjCMac::GetPropertyName(IdentifierInfo *Ident) {
1987 llvm::GlobalVariable *&Entry = PropertyNames[Ident];
1988
1989 if (!Entry) {
1990 llvm::Constant *C = llvm::ConstantArray::get(Ident->getName());
1991 Entry =
1992 new llvm::GlobalVariable(C->getType(), false,
1993 llvm::GlobalValue::InternalLinkage,
1994 C, "\01L_OBJC_PROP_NAME_ATTR_",
1995 &CGM.getModule());
1996 Entry->setSection("__TEXT,__cstring,cstring_literals");
1997 UsedGlobals.push_back(Entry);
1998 }
1999
2000 return getConstantGEP(Entry, 0, 0);
2001}
2002
2003// FIXME: Merge into a single cstring creation function.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002004// FIXME: This Decl should be more precise.
2005llvm::Constant *CGObjCMac::GetPropertyTypeString(const ObjCPropertyDecl *PD,
2006 const Decl *Container) {
2007 std::string TypeStr;
2008 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002009 return GetPropertyName(&CGM.getContext().Idents.get(TypeStr));
2010}
2011
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00002012void CGObjCMac::GetNameForMethod(const ObjCMethodDecl *D,
2013 std::string &NameOut) {
2014 // FIXME: Find the mangling GCC uses.
2015 std::stringstream s;
2016 s << (D->isInstance() ? "-" : "+");
2017 s << "[";
2018 s << D->getClassInterface()->getName();
2019 s << " ";
2020 s << D->getSelector().getName();
2021 s << "]";
2022 NameOut = s.str();
2023}
2024
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002025void CGObjCMac::FinishModule() {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002026 EmitModuleInfo();
2027
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00002028 // Emit the dummy bodies for any protocols which were referenced but
2029 // never defined.
2030 for (llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*>::iterator
2031 i = Protocols.begin(), e = Protocols.end(); i != e; ++i) {
2032 if (i->second->hasInitializer())
2033 continue;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002034
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00002035 std::vector<llvm::Constant*> Values(5);
2036 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
2037 Values[1] = GetClassName(i->first);
2038 Values[2] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
2039 Values[3] = Values[4] =
2040 llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
2041 i->second->setLinkage(llvm::GlobalValue::InternalLinkage);
2042 i->second->setInitializer(llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
2043 Values));
2044 }
2045
2046 std::vector<llvm::Constant*> Used;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002047 for (std::vector<llvm::GlobalVariable*>::iterator i = UsedGlobals.begin(),
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002048 e = UsedGlobals.end(); i != e; ++i) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002049 Used.push_back(llvm::ConstantExpr::getBitCast(*i, ObjCTypes.Int8PtrTy));
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002050 }
2051
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002052 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.Int8PtrTy, Used.size());
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002053 llvm::GlobalValue *GV =
2054 new llvm::GlobalVariable(AT, false,
2055 llvm::GlobalValue::AppendingLinkage,
2056 llvm::ConstantArray::get(AT, Used),
2057 "llvm.used",
2058 &CGM.getModule());
2059
2060 GV->setSection("llvm.metadata");
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002061
2062 // Add assembler directives to add lazy undefined symbol references
2063 // for classes which are referenced but not defined. This is
2064 // important for correct linker interaction.
2065
2066 // FIXME: Uh, this isn't particularly portable.
2067 std::stringstream s;
2068 for (std::set<IdentifierInfo*>::iterator i = LazySymbols.begin(),
2069 e = LazySymbols.end(); i != e; ++i) {
2070 s << "\t.lazy_reference .objc_class_name_" << (*i)->getName() << "\n";
2071 }
2072 for (std::set<IdentifierInfo*>::iterator i = DefinedSymbols.begin(),
2073 e = DefinedSymbols.end(); i != e; ++i) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00002074 s << "\t.objc_class_name_" << (*i)->getName() << "=0\n"
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00002075 << "\t.globl .objc_class_name_" << (*i)->getName() << "\n";
2076 }
2077 CGM.getModule().appendModuleInlineAsm(s.str());
Daniel Dunbarf77ac862008-08-11 21:35:06 +00002078}
2079
2080/* *** */
2081
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00002082ObjCTypesHelper::ObjCTypesHelper(CodeGen::CodeGenModule &cgm)
Daniel Dunbar3e9df992008-08-23 18:37:06 +00002083 : CGM(cgm)
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00002084{
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002085 CodeGen::CodeGenTypes &Types = CGM.getTypes();
2086 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002087
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002088 ShortTy = Types.ConvertType(Ctx.ShortTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002089 IntTy = Types.ConvertType(Ctx.IntTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002090 LongTy = Types.ConvertType(Ctx.LongTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002091 Int8PtrTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
2092
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002093 ObjectPtrTy = Types.ConvertType(Ctx.getObjCIdType());
2094 SelectorPtrTy = Types.ConvertType(Ctx.getObjCSelType());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002095
2096 // FIXME: It would be nice to unify this with the opaque type, so
2097 // that the IR comes out a bit cleaner.
2098 const llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType());
2099 ExternalProtocolPtrTy = llvm::PointerType::getUnqual(T);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00002100
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002101 MethodDescriptionTy =
2102 llvm::StructType::get(SelectorPtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002103 Int8PtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002104 NULL);
2105 CGM.getModule().addTypeName("struct._objc_method_description",
2106 MethodDescriptionTy);
2107
2108 MethodDescriptionListTy =
2109 llvm::StructType::get(IntTy,
2110 llvm::ArrayType::get(MethodDescriptionTy, 0),
2111 NULL);
2112 CGM.getModule().addTypeName("struct._objc_method_description_list",
2113 MethodDescriptionListTy);
2114 MethodDescriptionListPtrTy =
2115 llvm::PointerType::getUnqual(MethodDescriptionListTy);
2116
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00002117 PropertyTy = llvm::StructType::get(Int8PtrTy,
2118 Int8PtrTy,
2119 NULL);
2120 CGM.getModule().addTypeName("struct._objc_property",
2121 PropertyTy);
2122
2123 PropertyListTy = llvm::StructType::get(IntTy,
2124 IntTy,
2125 llvm::ArrayType::get(PropertyTy, 0),
2126 NULL);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002127 CGM.getModule().addTypeName("struct._objc_property_list",
2128 PropertyListTy);
2129 PropertyListPtrTy = llvm::PointerType::getUnqual(PropertyListTy);
2130
2131 // Protocol description structures
2132
2133 ProtocolExtensionTy =
2134 llvm::StructType::get(Types.ConvertType(Ctx.IntTy),
2135 llvm::PointerType::getUnqual(MethodDescriptionListTy),
2136 llvm::PointerType::getUnqual(MethodDescriptionListTy),
2137 PropertyListPtrTy,
2138 NULL);
2139 CGM.getModule().addTypeName("struct._objc_protocol_extension",
2140 ProtocolExtensionTy);
2141 ProtocolExtensionPtrTy = llvm::PointerType::getUnqual(ProtocolExtensionTy);
2142
Daniel Dunbar0c0e7a62008-10-29 22:36:39 +00002143 // Handle recursive construction of Protocol and ProtocolList types
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002144
2145 llvm::PATypeHolder ProtocolTyHolder = llvm::OpaqueType::get();
2146 llvm::PATypeHolder ProtocolListTyHolder = llvm::OpaqueType::get();
2147
2148 T = llvm::StructType::get(llvm::PointerType::getUnqual(ProtocolListTyHolder),
2149 LongTy,
2150 llvm::ArrayType::get(ProtocolTyHolder, 0),
2151 NULL);
2152 cast<llvm::OpaqueType>(ProtocolListTyHolder.get())->refineAbstractTypeTo(T);
2153
2154 T = llvm::StructType::get(llvm::PointerType::getUnqual(ProtocolExtensionTy),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002155 Int8PtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002156 llvm::PointerType::getUnqual(ProtocolListTyHolder),
2157 MethodDescriptionListPtrTy,
2158 MethodDescriptionListPtrTy,
2159 NULL);
2160 cast<llvm::OpaqueType>(ProtocolTyHolder.get())->refineAbstractTypeTo(T);
2161
2162 ProtocolListTy = cast<llvm::StructType>(ProtocolListTyHolder.get());
2163 CGM.getModule().addTypeName("struct._objc_protocol_list",
2164 ProtocolListTy);
2165 ProtocolListPtrTy = llvm::PointerType::getUnqual(ProtocolListTy);
2166
2167 ProtocolTy = cast<llvm::StructType>(ProtocolTyHolder.get());
2168 CGM.getModule().addTypeName("struct.__objc_protocol", ProtocolTy);
2169 ProtocolPtrTy = llvm::PointerType::getUnqual(ProtocolTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002170
2171 // Class description structures
2172
2173 IvarTy = llvm::StructType::get(Int8PtrTy,
2174 Int8PtrTy,
2175 IntTy,
2176 NULL);
2177 CGM.getModule().addTypeName("struct._objc_ivar", IvarTy);
2178
2179 IvarListTy = llvm::OpaqueType::get();
2180 CGM.getModule().addTypeName("struct._objc_ivar_list", IvarListTy);
2181 IvarListPtrTy = llvm::PointerType::getUnqual(IvarListTy);
2182
2183 MethodTy = llvm::StructType::get(SelectorPtrTy,
2184 Int8PtrTy,
2185 Int8PtrTy,
2186 NULL);
2187 CGM.getModule().addTypeName("struct._objc_method", MethodTy);
2188
2189 MethodListTy = llvm::OpaqueType::get();
2190 CGM.getModule().addTypeName("struct._objc_method_list", MethodListTy);
2191 MethodListPtrTy = llvm::PointerType::getUnqual(MethodListTy);
2192
2193 CacheTy = llvm::OpaqueType::get();
2194 CGM.getModule().addTypeName("struct._objc_cache", CacheTy);
2195 CachePtrTy = llvm::PointerType::getUnqual(CacheTy);
2196
2197 ClassExtensionTy =
2198 llvm::StructType::get(IntTy,
2199 Int8PtrTy,
2200 PropertyListPtrTy,
2201 NULL);
2202 CGM.getModule().addTypeName("struct._objc_class_extension", ClassExtensionTy);
2203 ClassExtensionPtrTy = llvm::PointerType::getUnqual(ClassExtensionTy);
2204
2205 llvm::PATypeHolder ClassTyHolder = llvm::OpaqueType::get();
2206
2207 T = llvm::StructType::get(llvm::PointerType::getUnqual(ClassTyHolder),
2208 llvm::PointerType::getUnqual(ClassTyHolder),
2209 Int8PtrTy,
2210 LongTy,
2211 LongTy,
2212 LongTy,
2213 IvarListPtrTy,
2214 MethodListPtrTy,
2215 CachePtrTy,
2216 ProtocolListPtrTy,
2217 Int8PtrTy,
2218 ClassExtensionPtrTy,
2219 NULL);
2220 cast<llvm::OpaqueType>(ClassTyHolder.get())->refineAbstractTypeTo(T);
2221
2222 ClassTy = cast<llvm::StructType>(ClassTyHolder.get());
2223 CGM.getModule().addTypeName("struct._objc_class", ClassTy);
2224 ClassPtrTy = llvm::PointerType::getUnqual(ClassTy);
2225
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002226 CategoryTy = llvm::StructType::get(Int8PtrTy,
2227 Int8PtrTy,
2228 MethodListPtrTy,
2229 MethodListPtrTy,
2230 ProtocolListPtrTy,
2231 IntTy,
2232 PropertyListPtrTy,
2233 NULL);
2234 CGM.getModule().addTypeName("struct._objc_category", CategoryTy);
2235
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00002236 // I'm not sure I like this. The implicit coordination is a bit
2237 // gross. We should solve this in a reasonable fashion because this
2238 // is a pretty common task (match some runtime data structure with
2239 // an LLVM data structure).
2240
2241 // FIXME: This is leaked.
2242 // FIXME: Merge with rewriter code?
2243 RecordDecl *RD = RecordDecl::Create(Ctx, TagDecl::TK_struct, 0,
2244 SourceLocation(),
Ted Kremenekdf042e62008-09-05 01:34:33 +00002245 &Ctx.Idents.get("_objc_super"));
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00002246 FieldDecl *FieldDecls[2];
2247 FieldDecls[0] = FieldDecl::Create(Ctx, SourceLocation(), 0,
2248 Ctx.getObjCIdType());
2249 FieldDecls[1] = FieldDecl::Create(Ctx, SourceLocation(), 0,
2250 Ctx.getObjCClassType());
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002251 RD->defineBody(Ctx, FieldDecls, 2);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00002252
2253 SuperCTy = Ctx.getTagDeclType(RD);
2254 SuperPtrCTy = Ctx.getPointerType(SuperCTy);
2255
2256 SuperTy = cast<llvm::StructType>(Types.ConvertType(SuperCTy));
Daniel Dunbar14c80b72008-08-23 09:25:55 +00002257 SuperPtrTy = llvm::PointerType::getUnqual(SuperTy);
Daniel Dunbare8b470d2008-08-23 04:28:29 +00002258
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002259 // Global metadata structures
2260
2261 SymtabTy = llvm::StructType::get(LongTy,
2262 SelectorPtrTy,
2263 ShortTy,
2264 ShortTy,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002265 llvm::ArrayType::get(Int8PtrTy, 0),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002266 NULL);
2267 CGM.getModule().addTypeName("struct._objc_symtab", SymtabTy);
2268 SymtabPtrTy = llvm::PointerType::getUnqual(SymtabTy);
2269
2270 ModuleTy =
2271 llvm::StructType::get(LongTy,
2272 LongTy,
2273 Int8PtrTy,
2274 SymtabPtrTy,
2275 NULL);
2276 CGM.getModule().addTypeName("struct._objc_module", ModuleTy);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00002277
Daniel Dunbar49f66022008-09-24 03:38:44 +00002278 // Message send functions.
Daniel Dunbar14c80b72008-08-23 09:25:55 +00002279
2280 std::vector<const llvm::Type*> Params;
2281 Params.push_back(ObjectPtrTy);
2282 Params.push_back(SelectorPtrTy);
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002283 MessageSendFn =
2284 CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
2285 Params,
2286 true),
2287 "objc_msgSend");
Daniel Dunbar14c80b72008-08-23 09:25:55 +00002288
2289 Params.clear();
2290 Params.push_back(Int8PtrTy);
2291 Params.push_back(ObjectPtrTy);
2292 Params.push_back(SelectorPtrTy);
2293 MessageSendStretFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002294 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
2295 Params,
2296 true),
2297 "objc_msgSend_stret");
Daniel Dunbar5669e572008-10-17 03:24:53 +00002298
2299 Params.clear();
2300 Params.push_back(ObjectPtrTy);
2301 Params.push_back(SelectorPtrTy);
2302 // FIXME: This should be long double on x86_64?
2303 MessageSendFpretFn =
2304 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::DoubleTy,
2305 Params,
2306 true),
2307 "objc_msgSend_fpret");
Daniel Dunbar14c80b72008-08-23 09:25:55 +00002308
2309 Params.clear();
2310 Params.push_back(SuperPtrTy);
2311 Params.push_back(SelectorPtrTy);
2312 MessageSendSuperFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002313 CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
2314 Params,
2315 true),
2316 "objc_msgSendSuper");
Daniel Dunbar14c80b72008-08-23 09:25:55 +00002317
2318 Params.clear();
2319 Params.push_back(Int8PtrTy);
2320 Params.push_back(SuperPtrTy);
2321 Params.push_back(SelectorPtrTy);
2322 MessageSendSuperStretFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002323 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
2324 Params,
2325 true),
2326 "objc_msgSendSuper_stret");
Daniel Dunbar5669e572008-10-17 03:24:53 +00002327
2328 // There is no objc_msgSendSuper_fpret? How can that work?
2329 MessageSendSuperFpretFn = MessageSendSuperFn;
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002330
Daniel Dunbar49f66022008-09-24 03:38:44 +00002331 // Property manipulation functions.
2332
2333 Params.clear();
2334 Params.push_back(ObjectPtrTy);
2335 Params.push_back(SelectorPtrTy);
2336 Params.push_back(LongTy);
2337 Params.push_back(Types.ConvertTypeForMem(Ctx.BoolTy));
2338 GetPropertyFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002339 CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
2340 Params,
2341 false),
2342 "objc_getProperty");
2343
Daniel Dunbar49f66022008-09-24 03:38:44 +00002344 Params.clear();
2345 Params.push_back(ObjectPtrTy);
2346 Params.push_back(SelectorPtrTy);
2347 Params.push_back(LongTy);
Daniel Dunbar86957eb2008-09-24 06:32:09 +00002348 Params.push_back(ObjectPtrTy);
Daniel Dunbar49f66022008-09-24 03:38:44 +00002349 Params.push_back(Types.ConvertTypeForMem(Ctx.BoolTy));
2350 Params.push_back(Types.ConvertTypeForMem(Ctx.BoolTy));
2351 SetPropertyFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002352 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
2353 Params,
2354 false),
2355 "objc_setProperty");
Daniel Dunbar49f66022008-09-24 03:38:44 +00002356
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002357 // Enumeration mutation.
Daniel Dunbar49f66022008-09-24 03:38:44 +00002358
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002359 Params.clear();
2360 Params.push_back(ObjectPtrTy);
2361 EnumerationMutationFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002362 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
2363 Params,
2364 false),
2365 "objc_enumerationMutation");
Anders Carlsson124526b2008-09-09 10:10:21 +00002366
2367 // FIXME: This is the size of the setjmp buffer and should be
2368 // target specific. 18 is what's used on 32-bit X86.
2369 uint64_t SetJmpBufferSize = 18;
2370
2371 // Exceptions
2372 const llvm::Type *StackPtrTy =
Daniel Dunbar10004912008-09-27 06:32:25 +00002373 llvm::ArrayType::get(llvm::PointerType::getUnqual(llvm::Type::Int8Ty), 4);
Anders Carlsson124526b2008-09-09 10:10:21 +00002374
2375 ExceptionDataTy =
2376 llvm::StructType::get(llvm::ArrayType::get(llvm::Type::Int32Ty,
2377 SetJmpBufferSize),
2378 StackPtrTy, NULL);
2379 CGM.getModule().addTypeName("struct._objc_exception_data",
2380 ExceptionDataTy);
2381
2382 Params.clear();
2383 Params.push_back(ObjectPtrTy);
2384 ExceptionThrowFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002385 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
2386 Params,
2387 false),
2388 "objc_exception_throw");
Anders Carlsson124526b2008-09-09 10:10:21 +00002389
2390 Params.clear();
2391 Params.push_back(llvm::PointerType::getUnqual(ExceptionDataTy));
2392 ExceptionTryEnterFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002393 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
2394 Params,
2395 false),
2396 "objc_exception_try_enter");
Anders Carlsson124526b2008-09-09 10:10:21 +00002397 ExceptionTryExitFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002398 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
2399 Params,
2400 false),
2401 "objc_exception_try_exit");
Anders Carlsson124526b2008-09-09 10:10:21 +00002402 ExceptionExtractFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002403 CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy,
2404 Params,
2405 false),
2406 "objc_exception_extract");
Anders Carlsson124526b2008-09-09 10:10:21 +00002407
2408 Params.clear();
2409 Params.push_back(ClassPtrTy);
2410 Params.push_back(ObjectPtrTy);
2411 ExceptionMatchFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002412 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::Int32Ty,
2413 Params,
2414 false),
2415 "objc_exception_match");
Anders Carlsson124526b2008-09-09 10:10:21 +00002416
2417 Params.clear();
2418 Params.push_back(llvm::PointerType::getUnqual(llvm::Type::Int32Ty));
2419 SetJmpFn =
Daniel Dunbarad2dc712008-10-01 01:06:06 +00002420 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::Int32Ty,
2421 Params,
2422 false),
2423 "_setjmp");
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00002424}
2425
2426ObjCTypesHelper::~ObjCTypesHelper() {
2427}
2428
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00002429/* *** */
2430
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002431CodeGen::CGObjCRuntime *
2432CodeGen::CreateMacObjCRuntime(CodeGen::CodeGenModule &CGM) {
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002433 return new CGObjCMac(CGM);
2434}