blob: 3ea7fb9cf70316d913beb79994dcfbf6971a52b8 [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 Dunbarc17a4d32008-08-11 02:45:11 +000024#include "llvm/Support/IRBuilder.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 Dunbar14c80b72008-08-23 09:25:55 +000044 llvm::Function *MessageSendFn, *MessageSendStretFn;
45 llvm::Function *MessageSendSuperFn, *MessageSendSuperStretFn;
Daniel Dunbar259d93d2008-08-12 03:39:23 +000046
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000047public:
Daniel Dunbar27f9d772008-08-21 04:36:09 +000048 const llvm::Type *ShortTy, *IntTy, *LongTy;
49 const llvm::Type *Int8PtrTy;
Daniel Dunbar259d93d2008-08-12 03:39:23 +000050
Daniel Dunbar2bedbf82008-08-12 05:28:47 +000051 /// ObjectPtrTy - LLVM type for object handles (typeof(id))
52 const llvm::Type *ObjectPtrTy;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000053 /// SelectorPtrTy - LLVM type for selector handles (typeof(SEL))
Daniel Dunbar2bedbf82008-08-12 05:28:47 +000054 const llvm::Type *SelectorPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +000055 /// ProtocolPtrTy - LLVM type for external protocol handles
56 /// (typeof(Protocol))
57 const llvm::Type *ExternalProtocolPtrTy;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000058
Daniel Dunbar19cd87e2008-08-30 03:02:31 +000059 // SuperCTy - clang type for struct objc_super.
60 QualType SuperCTy;
61 // SuperPtrCTy - clang type for struct objc_super *.
62 QualType SuperPtrCTy;
63
Daniel Dunbare8b470d2008-08-23 04:28:29 +000064 /// SuperTy - LLVM type for struct objc_super.
65 const llvm::StructType *SuperTy;
Daniel Dunbar14c80b72008-08-23 09:25:55 +000066 /// SuperPtrTy - LLVM type for struct objc_super *.
67 const llvm::Type *SuperPtrTy;
Daniel Dunbare8b470d2008-08-23 04:28:29 +000068
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000069 /// SymtabTy - LLVM type for struct objc_symtab.
70 const llvm::StructType *SymtabTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +000071 /// SymtabPtrTy - LLVM type for struct objc_symtab *.
72 const llvm::Type *SymtabPtrTy;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +000073 /// ModuleTy - LLVM type for struct objc_module.
74 const llvm::StructType *ModuleTy;
Daniel Dunbar259d93d2008-08-12 03:39:23 +000075
Daniel Dunbar6efc0c52008-08-13 03:21:16 +000076 /// ProtocolTy - LLVM type for struct objc_protocol.
77 const llvm::StructType *ProtocolTy;
78 /// ProtocolPtrTy - LLVM type for struct objc_protocol *.
79 const llvm::Type *ProtocolPtrTy;
80 /// ProtocolExtensionTy - LLVM type for struct
81 /// objc_protocol_extension.
82 const llvm::StructType *ProtocolExtensionTy;
83 /// ProtocolExtensionTy - LLVM type for struct
84 /// objc_protocol_extension *.
85 const llvm::Type *ProtocolExtensionPtrTy;
86 /// MethodDescriptionTy - LLVM type for struct
87 /// objc_method_description.
88 const llvm::StructType *MethodDescriptionTy;
89 /// MethodDescriptionListTy - LLVM type for struct
90 /// objc_method_description_list.
91 const llvm::StructType *MethodDescriptionListTy;
92 /// MethodDescriptionListPtrTy - LLVM type for struct
93 /// objc_method_description_list *.
94 const llvm::Type *MethodDescriptionListPtrTy;
Daniel Dunbarc8ef5512008-08-23 00:19:03 +000095 /// PropertyTy - LLVM type for struct objc_property (struct _prop_t
96 /// in GCC parlance).
97 const llvm::StructType *PropertyTy;
98 /// PropertyListTy - LLVM type for struct objc_property_list
99 /// (_prop_list_t in GCC parlance).
100 const llvm::StructType *PropertyListTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000101 /// PropertyListPtrTy - LLVM type for struct objc_property_list*.
102 const llvm::Type *PropertyListPtrTy;
103 /// ProtocolListTy - LLVM type for struct objc_property_list.
104 const llvm::Type *ProtocolListTy;
105 /// ProtocolListPtrTy - LLVM type for struct objc_property_list*.
106 const llvm::Type *ProtocolListPtrTy;
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000107 /// CategoryTy - LLVM type for struct objc_category.
108 const llvm::StructType *CategoryTy;
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000109 /// ClassTy - LLVM type for struct objc_class.
110 const llvm::StructType *ClassTy;
111 /// ClassPtrTy - LLVM type for struct objc_class *.
112 const llvm::Type *ClassPtrTy;
113 /// ClassExtensionTy - LLVM type for struct objc_class_ext.
114 const llvm::StructType *ClassExtensionTy;
115 /// ClassExtensionPtrTy - LLVM type for struct objc_class_ext *.
116 const llvm::Type *ClassExtensionPtrTy;
117 /// CacheTy - LLVM type for struct objc_cache.
118 const llvm::Type *CacheTy;
119 /// CachePtrTy - LLVM type for struct objc_cache *.
120 const llvm::Type *CachePtrTy;
121 // IvarTy - LLVM type for struct objc_ivar.
122 const llvm::StructType *IvarTy;
123 /// IvarListTy - LLVM type for struct objc_ivar_list.
124 const llvm::Type *IvarListTy;
125 /// IvarListPtrTy - LLVM type for struct objc_ivar_list *.
126 const llvm::Type *IvarListPtrTy;
127 // MethodTy - LLVM type for struct objc_method.
128 const llvm::StructType *MethodTy;
129 /// MethodListTy - LLVM type for struct objc_method_list.
130 const llvm::Type *MethodListTy;
131 /// MethodListPtrTy - LLVM type for struct objc_method_list *.
132 const llvm::Type *MethodListPtrTy;
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000133
Daniel Dunbar49f66022008-09-24 03:38:44 +0000134 llvm::Function *GetPropertyFn, *SetPropertyFn;
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000135 llvm::Function *EnumerationMutationFn;
Anders Carlsson124526b2008-09-09 10:10:21 +0000136
137 /// ExceptionDataTy - LLVM type for struct _objc_exception_data.
138 const llvm::Type *ExceptionDataTy;
139
140 /// ExceptionThrowFn - LLVM objc_exception_throw function.
141 llvm::Function *ExceptionThrowFn;
142
143 /// ExceptionTryEnterFn - LLVM objc_exception_try_enter function.
144 llvm::Function *ExceptionTryEnterFn;
145
146 /// ExceptionTryExitFn - LLVM objc_exception_try_exit function.
147 llvm::Function *ExceptionTryExitFn;
148
149 /// ExceptionExtractFn - LLVM objc_exception_extract function.
150 llvm::Function *ExceptionExtractFn;
151
152 /// ExceptionMatchFn - LLVM objc_exception_match function.
153 llvm::Function *ExceptionMatchFn;
154
155 /// SetJmpFn - LLVM _setjmp function.
156 llvm::Function *SetJmpFn;
157
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000158public:
159 ObjCTypesHelper(CodeGen::CodeGenModule &cgm);
160 ~ObjCTypesHelper();
161
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +0000162 llvm::Constant *getMessageSendFn(bool IsSuper, bool isStret);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000163};
164
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000165class CGObjCMac : public CodeGen::CGObjCRuntime {
166private:
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000167 CodeGen::CodeGenModule &CGM;
168 ObjCTypesHelper ObjCTypes;
169 /// ObjCABI - FIXME: Not sure yet.
170 unsigned ObjCABI;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000171
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000172 /// LazySymbols - Symbols to generate a lazy reference for. See
173 /// DefinedSymbols and FinishModule().
174 std::set<IdentifierInfo*> LazySymbols;
175
176 /// DefinedSymbols - External symbols which are defined by this
177 /// module. The symbols in this list and LazySymbols are used to add
178 /// special linker symbols which ensure that Objective-C modules are
179 /// linked properly.
180 std::set<IdentifierInfo*> DefinedSymbols;
181
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000182 /// ClassNames - uniqued class names.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000183 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassNames;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000184
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000185 /// MethodVarNames - uniqued method variable names.
186 llvm::DenseMap<Selector, llvm::GlobalVariable*> MethodVarNames;
187
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000188 /// MethodVarTypes - uniqued method type signatures. We have to use
189 /// a StringMap here because have no other unique reference.
190 llvm::StringMap<llvm::GlobalVariable*> MethodVarTypes;
191
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000192 /// MethodDefinitions - map of methods which have been defined in
193 /// this translation unit.
194 llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*> MethodDefinitions;
195
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000196 /// PropertyNames - uniqued method variable names.
197 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> PropertyNames;
198
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000199 /// ClassReferences - uniqued class references.
200 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassReferences;
201
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000202 /// SelectorReferences - uniqued selector references.
203 llvm::DenseMap<Selector, llvm::GlobalVariable*> SelectorReferences;
204
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000205 /// Protocols - Protocols for which an objc_protocol structure has
206 /// been emitted. Forward declarations are handled by creating an
207 /// empty structure whose initializer is filled in when/if defined.
208 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols;
209
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000210 /// DefinedClasses - List of defined classes.
211 std::vector<llvm::GlobalValue*> DefinedClasses;
212
213 /// DefinedCategories - List of defined categories.
214 std::vector<llvm::GlobalValue*> DefinedCategories;
215
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000216 /// UsedGlobals - List of globals to pack into the llvm.used metadata
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000217 /// to prevent them from being clobbered.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000218 std::vector<llvm::GlobalVariable*> UsedGlobals;
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000219
220 /// EmitImageInfo - Emit the image info marker used to encode some module
221 /// level information.
222 void EmitImageInfo();
223
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000224 /// EmitModuleInfo - Another marker encoding module level
225 /// information.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000226 void EmitModuleInfo();
227
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000228 /// EmitModuleSymols - Emit module symbols, the list of defined
229 /// classes and categories. The result has type SymtabPtrTy.
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000230 llvm::Constant *EmitModuleSymbols();
231
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000232 /// FinishModule - Write out global data structures at the end of
233 /// processing a translation unit.
234 void FinishModule();
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000235
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000236 /// EmitClassExtension - Generate the class extension structure used
237 /// to store the weak ivar layout and properties. The return value
238 /// has type ClassExtensionPtrTy.
239 llvm::Constant *EmitClassExtension(const ObjCImplementationDecl *ID);
240
241 /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy,
242 /// for the given class.
243 llvm::Value *EmitClassRef(llvm::IRBuilder<> &Builder,
244 const ObjCInterfaceDecl *ID);
245
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000246 CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000247 QualType ResultType,
248 Selector Sel,
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000249 llvm::Value *Arg0,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000250 QualType Arg0Ty,
251 bool IsSuper,
252 const CallArgList &CallArgs);
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000253
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000254 /// EmitIvarList - Emit the ivar list for the given
255 /// implementation. If ForClass is true the list of class ivars
256 /// (i.e. metaclass ivars) is emitted, otherwise the list of
257 /// interface ivars will be emitted. The return value has type
258 /// IvarListPtrTy.
259 llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID,
260 bool ForClass,
261 const llvm::Type *InterfaceTy);
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000262
263 /// EmitMetaClass - Emit a forward reference to the class structure
264 /// for the metaclass of the given interface. The return value has
265 /// type ClassPtrTy.
266 llvm::Constant *EmitMetaClassRef(const ObjCInterfaceDecl *ID);
267
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000268 /// EmitMetaClass - Emit a class structure for the metaclass of the
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000269 /// given implementation. The return value has type ClassPtrTy.
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000270 llvm::Constant *EmitMetaClass(const ObjCImplementationDecl *ID,
271 llvm::Constant *Protocols,
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000272 const llvm::Type *InterfaceTy,
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000273 const ConstantVector &Methods);
274
275 llvm::Constant *GetMethodConstant(const ObjCMethodDecl *MD);
276
277 llvm::Constant *GetMethodDescriptionConstant(const ObjCMethodDecl *MD);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000278
279 /// EmitMethodList - Emit the method list for the given
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000280 /// implementation. The return value has type MethodListPtrTy.
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000281 llvm::Constant *EmitMethodList(const std::string &Name,
282 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000283 const ConstantVector &Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000284
285 /// EmitMethodDescList - Emit a method description list for a list of
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000286 /// method declarations.
287 /// - TypeName: The name for the type containing the methods.
288 /// - IsProtocol: True iff these methods are for a protocol.
289 /// - ClassMethds: True iff these are class methods.
290 /// - Required: When true, only "required" methods are
291 /// listed. Similarly, when false only "optional" methods are
292 /// listed. For classes this should always be true.
293 /// - begin, end: The method list to output.
294 ///
295 /// The return value has type MethodDescriptionListPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000296 llvm::Constant *EmitMethodDescList(const std::string &Name,
297 const char *Section,
298 const ConstantVector &Methods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000299
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000300 /// EmitPropertyList - Emit the given property list. The return
301 /// value has type PropertyListPtrTy.
302 llvm::Constant *EmitPropertyList(const std::string &Name,
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000303 const Decl *Container,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000304 ObjCPropertyDecl * const *begin,
305 ObjCPropertyDecl * const *end);
306
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000307 /// EmitProtocolExtension - Generate the protocol extension
308 /// structure used to store optional instance and class methods, and
309 /// protocol properties. The return value has type
310 /// ProtocolExtensionPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000311 llvm::Constant *
312 EmitProtocolExtension(const ObjCProtocolDecl *PD,
313 const ConstantVector &OptInstanceMethods,
314 const ConstantVector &OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000315
316 /// EmitProtocolList - Generate the list of referenced
317 /// protocols. The return value has type ProtocolListPtrTy.
Daniel Dunbardbc933702008-08-21 21:57:41 +0000318 llvm::Constant *EmitProtocolList(const std::string &Name,
319 ObjCProtocolDecl::protocol_iterator begin,
320 ObjCProtocolDecl::protocol_iterator end);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000321
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000322 /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy,
323 /// for the given selector.
324 llvm::Value *EmitSelector(llvm::IRBuilder<> &Builder, Selector Sel);
325
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000326 /// GetProtocolRef - Return a reference to the internal protocol
327 /// description, creating an empty one if it has not been
328 /// defined. The return value has type pointer-to ProtocolTy.
329 llvm::GlobalVariable *GetProtocolRef(const ObjCProtocolDecl *PD);
330
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000331 /// GetClassName - Return a unique constant for the given selector's
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000332 /// name. The return value has type char *.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000333 llvm::Constant *GetClassName(IdentifierInfo *Ident);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +0000334
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000335 /// GetMethodVarName - Return a unique constant for the given
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000336 /// selector's name. The return value has type char *.
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000337 llvm::Constant *GetMethodVarName(Selector Sel);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000338 llvm::Constant *GetMethodVarName(IdentifierInfo *Ident);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000339 llvm::Constant *GetMethodVarName(const std::string &Name);
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000340
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000341 /// GetMethodVarType - Return a unique constant for the given
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000342 /// selector's name. The return value has type char *.
343
344 // FIXME: This is a horrible name.
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000345 llvm::Constant *GetMethodVarType(const ObjCMethodDecl *D);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000346 llvm::Constant *GetMethodVarType(const std::string &Name);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000347
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000348 /// GetPropertyName - Return a unique constant for the given
349 /// name. The return value has type char *.
350 llvm::Constant *GetPropertyName(IdentifierInfo *Ident);
351
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000352 // FIXME: This can be dropped once string functions are unified.
353 llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD,
354 const Decl *Container);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000355
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000356 /// GetNameForMethod - Return a name for the given method.
357 /// \param[out] NameOut - The return value.
358 void GetNameForMethod(const ObjCMethodDecl *OMD,
359 std::string &NameOut);
360
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000361public:
362 CGObjCMac(CodeGen::CodeGenModule &cgm);
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000363 virtual llvm::Constant *GenerateConstantString(const std::string &String);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000364
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000365 virtual CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000366 QualType ResultType,
367 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000368 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000369 bool IsClassMessage,
370 const CallArgList &CallArgs);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000371
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000372 virtual CodeGen::RValue
373 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000374 QualType ResultType,
375 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000376 const ObjCInterfaceDecl *Class,
377 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000378 bool IsClassMessage,
379 const CallArgList &CallArgs);
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +0000380
381 virtual llvm::Value *GetClass(llvm::IRBuilder<> &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000382 const ObjCInterfaceDecl *ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000383
384 virtual llvm::Value *GetSelector(llvm::IRBuilder<> &Builder, Selector Sel);
385
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000386 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000387
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000388 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000389
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000390 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000391
392 virtual llvm::Value *GenerateProtocolRef(llvm::IRBuilder<> &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000393 const ObjCProtocolDecl *PD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000394
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000395 virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000396
397 virtual llvm::Function *ModuleInitFunction();
Daniel Dunbar49f66022008-09-24 03:38:44 +0000398 virtual llvm::Function *GetPropertyGetFunction();
399 virtual llvm::Function *GetPropertySetFunction();
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000400 virtual llvm::Function *EnumerationMutationFunction();
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000401
402 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
403 const ObjCAtTryStmt &S);
404 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
405 const ObjCAtThrowStmt &S);
406
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000407};
408} // end anonymous namespace
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000409
410/* *** Helper Functions *** */
411
412/// getConstantGEP() - Help routine to construct simple GEPs.
413static llvm::Constant *getConstantGEP(llvm::Constant *C,
414 unsigned idx0,
415 unsigned idx1) {
416 llvm::Value *Idxs[] = {
417 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx0),
418 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx1)
419 };
420 return llvm::ConstantExpr::getGetElementPtr(C, Idxs, 2);
421}
422
423/* *** CGObjCMac Public Interface *** */
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000424
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000425CGObjCMac::CGObjCMac(CodeGen::CodeGenModule &cgm)
426 : CGM(cgm),
427 ObjCTypes(cgm),
428 ObjCABI(1)
429{
430 // FIXME: How does this get set in GCC? And what does it even mean?
431 if (ObjCTypes.LongTy != CGM.getTypes().ConvertType(CGM.getContext().IntTy))
432 ObjCABI = 2;
433
434 EmitImageInfo();
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000435}
436
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +0000437/// GetClass - Return a reference to the class for the given interface
438/// decl.
439llvm::Value *CGObjCMac::GetClass(llvm::IRBuilder<> &Builder,
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000440 const ObjCInterfaceDecl *ID) {
441 return EmitClassRef(Builder, ID);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000442}
443
444/// GetSelector - Return the pointer to the unique'd string for this selector.
445llvm::Value *CGObjCMac::GetSelector(llvm::IRBuilder<> &Builder, Selector Sel) {
Daniel Dunbar259d93d2008-08-12 03:39:23 +0000446 return EmitSelector(Builder, Sel);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000447}
448
Daniel Dunbarbbce49b2008-08-12 00:12:39 +0000449/// Generate a constant CFString object.
450/*
451 struct __builtin_CFString {
452 const int *isa; // point to __CFConstantStringClassReference
453 int flags;
454 const char *str;
455 long length;
456 };
457*/
458
459llvm::Constant *CGObjCMac::GenerateConstantString(const std::string &String) {
Daniel Dunbar3e9df992008-08-23 18:37:06 +0000460 return CGM.GetAddrOfConstantCFString(String);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000461}
462
463/// Generates a message send where the super is the receiver. This is
464/// a message send to self with special delivery semantics indicating
465/// which class's method should be called.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000466CodeGen::RValue
467CGObjCMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000468 QualType ResultType,
469 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000470 const ObjCInterfaceDecl *Class,
471 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000472 bool IsClassMessage,
Daniel Dunbar46f45b92008-09-09 01:06:48 +0000473 const CodeGen::CallArgList &CallArgs) {
Daniel Dunbare8b470d2008-08-23 04:28:29 +0000474 // Create and init a super structure; this is a (receiver, class)
475 // pair we will pass to objc_msgSendSuper.
476 llvm::Value *ObjCSuper =
477 CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super");
478 llvm::Value *ReceiverAsObject =
479 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy);
480 CGF.Builder.CreateStore(ReceiverAsObject,
481 CGF.Builder.CreateStructGEP(ObjCSuper, 0));
Daniel Dunbare8b470d2008-08-23 04:28:29 +0000482
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000483 // If this is a class message the metaclass is passed as the target.
484 llvm::Value *Target;
485 if (IsClassMessage) {
486 llvm::Value *MetaClassPtr = EmitMetaClassRef(Class);
487 llvm::Value *SuperPtr = CGF.Builder.CreateStructGEP(MetaClassPtr, 1);
488 llvm::Value *Super = CGF.Builder.CreateLoad(SuperPtr);
489 Target = Super;
490 } else {
491 Target = EmitClassRef(CGF.Builder, Class->getSuperClass());
492 }
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000493 // FIXME: We shouldn't need to do this cast, rectify the ASTContext
494 // and ObjCTypes types.
495 const llvm::Type *ClassTy =
496 CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType());
497 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000498 CGF.Builder.CreateStore(Target,
499 CGF.Builder.CreateStructGEP(ObjCSuper, 1));
500
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000501 return EmitMessageSend(CGF, ResultType, Sel,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000502 ObjCSuper, ObjCTypes.SuperPtrCTy,
503 true, CallArgs);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000504}
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000505
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000506/// Generate code for a message send expression.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000507CodeGen::RValue CGObjCMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000508 QualType ResultType,
509 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000510 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000511 bool IsClassMessage,
512 const CallArgList &CallArgs) {
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000513 llvm::Value *Arg0 =
514 CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy, "tmp");
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000515 return EmitMessageSend(CGF, ResultType, Sel,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000516 Arg0, CGF.getContext().getObjCIdType(),
517 false, CallArgs);
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000518}
519
520CodeGen::RValue CGObjCMac::EmitMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000521 QualType ResultType,
522 Selector Sel,
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000523 llvm::Value *Arg0,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000524 QualType Arg0Ty,
525 bool IsSuper,
526 const CallArgList &CallArgs) {
527 CallArgList ActualArgs;
Daniel Dunbar46f45b92008-09-09 01:06:48 +0000528 ActualArgs.push_back(std::make_pair(RValue::get(Arg0), Arg0Ty));
529 ActualArgs.push_back(std::make_pair(RValue::get(EmitSelector(CGF.Builder,
530 Sel)),
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000531 CGF.getContext().getObjCSelType()));
532 ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000533
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +0000534 const llvm::FunctionType *FTy =
535 CGM.getTypes().GetFunctionType(CGCallInfo(ResultType, ActualArgs),
536 false);
537 llvm::Constant *Fn =
538 ObjCTypes.getMessageSendFn(IsSuper, CGM.ReturnTypeUsesSret(ResultType));
539 Fn = llvm::ConstantExpr::getBitCast(Fn, llvm::PointerType::getUnqual(FTy));
Daniel Dunbar3913f182008-09-09 23:48:28 +0000540 return CGF.EmitCall(Fn, ResultType, ActualArgs);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000541}
542
543llvm::Value *CGObjCMac::GenerateProtocolRef(llvm::IRBuilder<> &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000544 const ObjCProtocolDecl *PD) {
Daniel Dunbarc67876d2008-09-04 04:33:15 +0000545 // FIXME: I don't understand why gcc generates this, or where it is
546 // resolved. Investigate. Its also wasteful to look this up over and
547 // over.
548 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
549
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000550 return llvm::ConstantExpr::getBitCast(GetProtocolRef(PD),
551 ObjCTypes.ExternalProtocolPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000552}
553
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000554/*
555 // APPLE LOCAL radar 4585769 - Objective-C 1.0 extensions
556 struct _objc_protocol {
557 struct _objc_protocol_extension *isa;
558 char *protocol_name;
559 struct _objc_protocol_list *protocol_list;
560 struct _objc__method_prototype_list *instance_methods;
561 struct _objc__method_prototype_list *class_methods
562 };
563
564 See EmitProtocolExtension().
565*/
566void CGObjCMac::GenerateProtocol(const ObjCProtocolDecl *PD) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000567 // FIXME: I don't understand why gcc generates this, or where it is
568 // resolved. Investigate. Its also wasteful to look this up over and
569 // over.
570 LazySymbols.insert(&CGM.getContext().Idents.get("Protocol"));
571
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000572 const char *ProtocolName = PD->getName();
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000573
574 // Construct method lists.
575 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
576 std::vector<llvm::Constant*> OptInstanceMethods, OptClassMethods;
577 for (ObjCProtocolDecl::instmeth_iterator i = PD->instmeth_begin(),
578 e = PD->instmeth_end(); i != e; ++i) {
579 ObjCMethodDecl *MD = *i;
580 llvm::Constant *C = GetMethodDescriptionConstant(MD);
581 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
582 OptInstanceMethods.push_back(C);
583 } else {
584 InstanceMethods.push_back(C);
585 }
586 }
587
588 for (ObjCProtocolDecl::classmeth_iterator i = PD->classmeth_begin(),
589 e = PD->classmeth_end(); i != e; ++i) {
590 ObjCMethodDecl *MD = *i;
591 llvm::Constant *C = GetMethodDescriptionConstant(MD);
592 if (MD->getImplementationControl() == ObjCMethodDecl::Optional) {
593 OptClassMethods.push_back(C);
594 } else {
595 ClassMethods.push_back(C);
596 }
597 }
598
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000599 std::vector<llvm::Constant*> Values(5);
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000600 Values[0] = EmitProtocolExtension(PD, OptInstanceMethods, OptClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000601 Values[1] = GetClassName(PD->getIdentifier());
Daniel Dunbardbc933702008-08-21 21:57:41 +0000602 Values[2] =
603 EmitProtocolList(std::string("\01L_OBJC_PROTOCOL_REFS_")+PD->getName(),
604 PD->protocol_begin(),
605 PD->protocol_end());
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000606 Values[3] =
607 EmitMethodDescList(std::string("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_")
608 + PD->getName(),
609 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
610 InstanceMethods);
611 Values[4] =
612 EmitMethodDescList(std::string("\01L_OBJC_PROTOCOL_CLASS_METHODS_")
613 + PD->getName(),
614 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
615 ClassMethods);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000616 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
617 Values);
618
619 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
620 if (Entry) {
621 // Already created, just update the initializer
622 Entry->setInitializer(Init);
623 } else {
624 Entry =
625 new llvm::GlobalVariable(ObjCTypes.ProtocolTy, false,
626 llvm::GlobalValue::InternalLinkage,
627 Init,
628 std::string("\01L_OBJC_PROTOCOL_")+ProtocolName,
629 &CGM.getModule());
630 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
631 UsedGlobals.push_back(Entry);
632 // FIXME: Is this necessary? Why only for protocol?
633 Entry->setAlignment(4);
634 }
635}
636
637llvm::GlobalVariable *CGObjCMac::GetProtocolRef(const ObjCProtocolDecl *PD) {
638 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()];
639
640 if (!Entry) {
641 std::vector<llvm::Constant*> Values(5);
642 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
643 Values[1] = GetClassName(PD->getIdentifier());
644 Values[2] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
645 Values[3] = Values[4] =
646 llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
647 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ProtocolTy,
648 Values);
649
650 Entry =
651 new llvm::GlobalVariable(ObjCTypes.ProtocolTy, false,
652 llvm::GlobalValue::InternalLinkage,
653 Init,
654 std::string("\01L_OBJC_PROTOCOL_")+PD->getName(),
655 &CGM.getModule());
656 Entry->setSection("__OBJC,__protocol,regular,no_dead_strip");
657 UsedGlobals.push_back(Entry);
658 // FIXME: Is this necessary? Why only for protocol?
659 Entry->setAlignment(4);
660 }
661
662 return Entry;
663}
664
665/*
666 struct _objc_protocol_extension {
667 uint32_t size;
668 struct objc_method_description_list *optional_instance_methods;
669 struct objc_method_description_list *optional_class_methods;
670 struct objc_property_list *instance_properties;
671 };
672*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000673llvm::Constant *
674CGObjCMac::EmitProtocolExtension(const ObjCProtocolDecl *PD,
675 const ConstantVector &OptInstanceMethods,
676 const ConstantVector &OptClassMethods) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000677 uint64_t Size =
678 CGM.getTargetData().getABITypeSize(ObjCTypes.ProtocolExtensionTy);
679 std::vector<llvm::Constant*> Values(4);
680 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000681 Values[1] =
682 EmitMethodDescList(std::string("\01L_OBJC_PROTOCOL_INSTANCE_METHODS_OPT_")
683 + PD->getName(),
684 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
685 OptInstanceMethods);
686 Values[2] =
687 EmitMethodDescList(std::string("\01L_OBJC_PROTOCOL_CLASS_METHODS_OPT_")
688 + PD->getName(),
689 "__OBJC,__cat_cls_meth,regular,no_dead_strip",
690 OptClassMethods);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000691 Values[3] = EmitPropertyList(std::string("\01L_OBJC_$_PROP_PROTO_LIST_") +
692 PD->getName(),
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000693 0,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000694 PD->classprop_begin(),
695 PD->classprop_end());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000696
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000697 // Return null if no extension bits are used.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000698 if (Values[1]->isNullValue() && Values[2]->isNullValue() &&
699 Values[3]->isNullValue())
700 return llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy);
701
702 llvm::Constant *Init =
703 llvm::ConstantStruct::get(ObjCTypes.ProtocolExtensionTy, Values);
704 llvm::GlobalVariable *GV =
705 new llvm::GlobalVariable(ObjCTypes.ProtocolExtensionTy, false,
706 llvm::GlobalValue::InternalLinkage,
707 Init,
708 (std::string("\01L_OBJC_PROTOCOLEXT_") +
709 PD->getName()),
710 &CGM.getModule());
711 // No special section, but goes in llvm.used
712 UsedGlobals.push_back(GV);
713
714 return GV;
715}
716
717/*
718 struct objc_protocol_list {
719 struct objc_protocol_list *next;
720 long count;
721 Protocol *list[];
722 };
723*/
Daniel Dunbardbc933702008-08-21 21:57:41 +0000724llvm::Constant *
725CGObjCMac::EmitProtocolList(const std::string &Name,
726 ObjCProtocolDecl::protocol_iterator begin,
727 ObjCProtocolDecl::protocol_iterator end) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000728 std::vector<llvm::Constant*> ProtocolRefs;
729
Daniel Dunbardbc933702008-08-21 21:57:41 +0000730 for (; begin != end; ++begin)
731 ProtocolRefs.push_back(GetProtocolRef(*begin));
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000732
733 // Just return null for empty protocol lists
734 if (ProtocolRefs.empty())
735 return llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
736
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000737 // This list is null terminated.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000738 ProtocolRefs.push_back(llvm::Constant::getNullValue(ObjCTypes.ProtocolPtrTy));
739
740 std::vector<llvm::Constant*> Values(3);
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000741 // This field is only used by the runtime.
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000742 Values[0] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
743 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy, ProtocolRefs.size() - 1);
744 Values[2] =
745 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.ProtocolPtrTy,
746 ProtocolRefs.size()),
747 ProtocolRefs);
748
749 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
750 llvm::GlobalVariable *GV =
751 new llvm::GlobalVariable(Init->getType(), false,
752 llvm::GlobalValue::InternalLinkage,
753 Init,
Daniel Dunbardbc933702008-08-21 21:57:41 +0000754 Name,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000755 &CGM.getModule());
756 GV->setSection("__OBJC,__cat_cls_meth,regular,no_dead_strip");
757 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListPtrTy);
758}
759
760/*
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000761 struct _objc_property {
762 const char * const name;
763 const char * const attributes;
764 };
765
766 struct _objc_property_list {
767 uint32_t entsize; // sizeof (struct _objc_property)
768 uint32_t prop_count;
769 struct _objc_property[prop_count];
770 };
771*/
772llvm::Constant *CGObjCMac::EmitPropertyList(const std::string &Name,
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000773 const Decl *Container,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000774 ObjCPropertyDecl * const *begin,
775 ObjCPropertyDecl * const *end) {
776 std::vector<llvm::Constant*> Properties, Prop(2);
777 for (; begin != end; ++begin) {
778 const ObjCPropertyDecl *PD = *begin;
779 Prop[0] = GetPropertyName(PD->getIdentifier());
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000780 Prop[1] = GetPropertyTypeString(PD, Container);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000781 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy,
782 Prop));
783 }
784
785 // Return null for empty list.
786 if (Properties.empty())
787 return llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
788
789 unsigned PropertySize =
790 CGM.getTargetData().getABITypeSize(ObjCTypes.PropertyTy);
791 std::vector<llvm::Constant*> Values(3);
792 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, PropertySize);
793 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Properties.size());
794 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.PropertyTy,
795 Properties.size());
796 Values[2] = llvm::ConstantArray::get(AT, Properties);
797 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
798
799 llvm::GlobalVariable *GV =
800 new llvm::GlobalVariable(Init->getType(), false,
801 llvm::GlobalValue::InternalLinkage,
802 Init,
803 Name,
804 &CGM.getModule());
805 // No special section on property lists?
806 UsedGlobals.push_back(GV);
807 return llvm::ConstantExpr::getBitCast(GV,
808 ObjCTypes.PropertyListPtrTy);
809
810}
811
812/*
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000813 struct objc_method_description_list {
814 int count;
815 struct objc_method_description list[];
816 };
817*/
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000818llvm::Constant *
819CGObjCMac::GetMethodDescriptionConstant(const ObjCMethodDecl *MD) {
820 std::vector<llvm::Constant*> Desc(2);
821 Desc[0] = llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
822 ObjCTypes.SelectorPtrTy);
823 Desc[1] = GetMethodVarType(MD);
824 return llvm::ConstantStruct::get(ObjCTypes.MethodDescriptionTy,
825 Desc);
826}
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000827
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000828llvm::Constant *CGObjCMac::EmitMethodDescList(const std::string &Name,
829 const char *Section,
830 const ConstantVector &Methods) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000831 // Return null for empty list.
832 if (Methods.empty())
833 return llvm::Constant::getNullValue(ObjCTypes.MethodDescriptionListPtrTy);
834
835 std::vector<llvm::Constant*> Values(2);
836 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
837 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodDescriptionTy,
838 Methods.size());
839 Values[1] = llvm::ConstantArray::get(AT, Methods);
840 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
841
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000842 llvm::GlobalVariable *GV =
843 new llvm::GlobalVariable(Init->getType(), false,
844 llvm::GlobalValue::InternalLinkage,
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000845 Init, Name, &CGM.getModule());
846 GV->setSection(Section);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +0000847 UsedGlobals.push_back(GV);
848 return llvm::ConstantExpr::getBitCast(GV,
849 ObjCTypes.MethodDescriptionListPtrTy);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000850}
851
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000852/*
853 struct _objc_category {
854 char *category_name;
855 char *class_name;
856 struct _objc_method_list *instance_methods;
857 struct _objc_method_list *class_methods;
858 struct _objc_protocol_list *protocols;
859 uint32_t size; // <rdar://4585769>
860 struct _objc_property_list *instance_properties;
861 };
862 */
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000863void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000864 unsigned Size = CGM.getTargetData().getABITypeSize(ObjCTypes.CategoryTy);
865
Daniel Dunbar86e2f402008-08-26 23:03:11 +0000866 // FIXME: This is poor design, the OCD should have a pointer to the
867 // category decl. Additionally, note that Category can be null for
868 // the @implementation w/o an @interface case. Sema should just
869 // create one for us as it does for @implementation so everyone else
870 // can live life under a clear blue sky.
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000871 const ObjCInterfaceDecl *Interface = OCD->getClassInterface();
Daniel Dunbar86e2f402008-08-26 23:03:11 +0000872 const ObjCCategoryDecl *Category =
873 Interface->FindCategoryDeclaration(OCD->getIdentifier());
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000874 std::string ExtName(std::string(Interface->getName()) +
875 "_" +
876 OCD->getName());
877
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000878 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
879 for (ObjCCategoryImplDecl::instmeth_iterator i = OCD->instmeth_begin(),
880 e = OCD->instmeth_end(); i != e; ++i) {
881 // Instance methods should always be defined.
882 InstanceMethods.push_back(GetMethodConstant(*i));
883 }
884 for (ObjCCategoryImplDecl::classmeth_iterator i = OCD->classmeth_begin(),
885 e = OCD->classmeth_end(); i != e; ++i) {
886 // Class methods should always be defined.
887 ClassMethods.push_back(GetMethodConstant(*i));
888 }
889
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000890 std::vector<llvm::Constant*> Values(7);
891 Values[0] = GetClassName(OCD->getIdentifier());
892 Values[1] = GetClassName(Interface->getIdentifier());
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000893 Values[2] =
894 EmitMethodList(std::string("\01L_OBJC_CATEGORY_INSTANCE_METHODS_") +
895 ExtName,
896 "__OBJC,__cat_inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000897 InstanceMethods);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +0000898 Values[3] =
899 EmitMethodList(std::string("\01L_OBJC_CATEGORY_CLASS_METHODS_") + ExtName,
900 "__OBJC,__cat_class_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +0000901 ClassMethods);
Daniel Dunbarae226fa2008-08-27 02:31:56 +0000902 if (Category) {
903 Values[4] =
904 EmitProtocolList(std::string("\01L_OBJC_CATEGORY_PROTOCOLS_") + ExtName,
905 Category->protocol_begin(),
906 Category->protocol_end());
907 } else {
908 Values[4] = llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy);
909 }
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000910 Values[5] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar86e2f402008-08-26 23:03:11 +0000911
912 // If there is no category @interface then there can be no properties.
913 if (Category) {
914 Values[6] = EmitPropertyList(std::string("\01L_OBJC_$_PROP_LIST_") + ExtName,
Daniel Dunbarc56f34a2008-08-28 04:38:10 +0000915 OCD,
Daniel Dunbar86e2f402008-08-26 23:03:11 +0000916 Category->classprop_begin(),
917 Category->classprop_end());
918 } else {
919 Values[6] = llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy);
920 }
Daniel Dunbar86e253a2008-08-22 20:34:54 +0000921
922 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.CategoryTy,
923 Values);
924
925 llvm::GlobalVariable *GV =
926 new llvm::GlobalVariable(ObjCTypes.CategoryTy, false,
927 llvm::GlobalValue::InternalLinkage,
928 Init,
929 std::string("\01L_OBJC_CATEGORY_")+ExtName,
930 &CGM.getModule());
931 GV->setSection("__OBJC,__category,regular,no_dead_strip");
932 UsedGlobals.push_back(GV);
933 DefinedCategories.push_back(GV);
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000934}
935
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000936// FIXME: Get from somewhere?
937enum ClassFlags {
938 eClassFlags_Factory = 0x00001,
939 eClassFlags_Meta = 0x00002,
940 // <rdr://5142207>
941 eClassFlags_HasCXXStructors = 0x02000,
942 eClassFlags_Hidden = 0x20000,
943 eClassFlags_ABI2_Hidden = 0x00010,
944 eClassFlags_ABI2_HasCXXStructors = 0x00004 // <rdr://4923634>
945};
946
947// <rdr://5142207&4705298&4843145>
948static bool IsClassHidden(const ObjCInterfaceDecl *ID) {
949 if (const VisibilityAttr *attr = ID->getAttr<VisibilityAttr>()) {
950 // FIXME: Support -fvisibility
951 switch (attr->getVisibility()) {
952 default:
953 assert(0 && "Unknown visibility");
954 return false;
955 case VisibilityAttr::DefaultVisibility:
956 case VisibilityAttr::ProtectedVisibility: // FIXME: What do we do here?
957 return false;
958 case VisibilityAttr::HiddenVisibility:
959 return true;
960 }
961 } else {
962 return false; // FIXME: Support -fvisibility
963 }
964}
965
966/*
967 struct _objc_class {
968 Class isa;
969 Class super_class;
970 const char *name;
971 long version;
972 long info;
973 long instance_size;
974 struct _objc_ivar_list *ivars;
975 struct _objc_method_list *methods;
976 struct _objc_cache *cache;
977 struct _objc_protocol_list *protocols;
978 // Objective-C 1.0 extensions (<rdr://4585769>)
979 const char *ivar_layout;
980 struct _objc_class_ext *ext;
981 };
982
983 See EmitClassExtension();
984 */
985void CGObjCMac::GenerateClass(const ObjCImplementationDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +0000986 DefinedSymbols.insert(ID->getIdentifier());
987
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000988 const char *ClassName = ID->getName();
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000989 // FIXME: Gross
990 ObjCInterfaceDecl *Interface =
991 const_cast<ObjCInterfaceDecl*>(ID->getClassInterface());
Daniel Dunbardbc933702008-08-21 21:57:41 +0000992 llvm::Constant *Protocols =
993 EmitProtocolList(std::string("\01L_OBJC_CLASS_PROTOCOLS_") + ID->getName(),
994 Interface->protocol_begin(),
995 Interface->protocol_end());
Daniel Dunbar27f9d772008-08-21 04:36:09 +0000996 const llvm::Type *InterfaceTy =
997 CGM.getTypes().ConvertType(CGM.getContext().getObjCInterfaceType(Interface));
998 unsigned Flags = eClassFlags_Factory;
999 unsigned Size = CGM.getTargetData().getABITypeSize(InterfaceTy);
1000
1001 // FIXME: Set CXX-structors flag.
1002 if (IsClassHidden(ID->getClassInterface()))
1003 Flags |= eClassFlags_Hidden;
1004
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001005 std::vector<llvm::Constant*> InstanceMethods, ClassMethods;
1006 for (ObjCImplementationDecl::instmeth_iterator i = ID->instmeth_begin(),
1007 e = ID->instmeth_end(); i != e; ++i) {
1008 // Instance methods should always be defined.
1009 InstanceMethods.push_back(GetMethodConstant(*i));
1010 }
1011 for (ObjCImplementationDecl::classmeth_iterator i = ID->classmeth_begin(),
1012 e = ID->classmeth_end(); i != e; ++i) {
1013 // Class methods should always be defined.
1014 ClassMethods.push_back(GetMethodConstant(*i));
1015 }
1016
1017 for (ObjCImplementationDecl::propimpl_iterator i = ID->propimpl_begin(),
1018 e = ID->propimpl_end(); i != e; ++i) {
1019 ObjCPropertyImplDecl *PID = *i;
1020
1021 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
1022 ObjCPropertyDecl *PD = PID->getPropertyDecl();
1023
1024 if (ObjCMethodDecl *MD = PD->getGetterMethodDecl())
1025 if (llvm::Constant *C = GetMethodConstant(MD))
1026 InstanceMethods.push_back(C);
1027 if (ObjCMethodDecl *MD = PD->getSetterMethodDecl())
1028 if (llvm::Constant *C = GetMethodConstant(MD))
1029 InstanceMethods.push_back(C);
1030 }
1031 }
1032
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001033 std::vector<llvm::Constant*> Values(12);
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001034 Values[ 0] = EmitMetaClass(ID, Protocols, InterfaceTy, ClassMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001035 if (ObjCInterfaceDecl *Super = Interface->getSuperClass()) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001036 // Record a reference to the super class.
1037 LazySymbols.insert(Super->getIdentifier());
1038
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001039 Values[ 1] =
1040 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
1041 ObjCTypes.ClassPtrTy);
1042 } else {
1043 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
1044 }
1045 Values[ 2] = GetClassName(ID->getIdentifier());
1046 // Version is always 0.
1047 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
1048 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
1049 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
1050 Values[ 6] = EmitIvarList(ID, false, InterfaceTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001051 Values[ 7] =
1052 EmitMethodList(std::string("\01L_OBJC_INSTANCE_METHODS_") + ID->getName(),
1053 "__OBJC,__inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001054 InstanceMethods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001055 // cache is always NULL.
1056 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
1057 Values[ 9] = Protocols;
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001058 // FIXME: Set ivar_layout
1059 Values[10] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001060 Values[11] = EmitClassExtension(ID);
1061 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
1062 Values);
1063
1064 llvm::GlobalVariable *GV =
1065 new llvm::GlobalVariable(ObjCTypes.ClassTy, false,
1066 llvm::GlobalValue::InternalLinkage,
1067 Init,
1068 std::string("\01L_OBJC_CLASS_")+ClassName,
1069 &CGM.getModule());
1070 GV->setSection("__OBJC,__class,regular,no_dead_strip");
1071 UsedGlobals.push_back(GV);
1072 // FIXME: Why?
1073 GV->setAlignment(32);
1074 DefinedClasses.push_back(GV);
1075}
1076
1077llvm::Constant *CGObjCMac::EmitMetaClass(const ObjCImplementationDecl *ID,
1078 llvm::Constant *Protocols,
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001079 const llvm::Type *InterfaceTy,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001080 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001081 const char *ClassName = ID->getName();
1082 unsigned Flags = eClassFlags_Meta;
1083 unsigned Size = CGM.getTargetData().getABITypeSize(ObjCTypes.ClassTy);
1084
1085 if (IsClassHidden(ID->getClassInterface()))
1086 Flags |= eClassFlags_Hidden;
1087
1088 std::vector<llvm::Constant*> Values(12);
1089 // The isa for the metaclass is the root of the hierarchy.
1090 const ObjCInterfaceDecl *Root = ID->getClassInterface();
1091 while (const ObjCInterfaceDecl *Super = Root->getSuperClass())
1092 Root = Super;
1093 Values[ 0] =
1094 llvm::ConstantExpr::getBitCast(GetClassName(Root->getIdentifier()),
1095 ObjCTypes.ClassPtrTy);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001096 // The super class for the metaclass is emitted as the name of the
1097 // super class. The runtime fixes this up to point to the
1098 // *metaclass* for the super class.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001099 if (ObjCInterfaceDecl *Super = ID->getClassInterface()->getSuperClass()) {
1100 Values[ 1] =
1101 llvm::ConstantExpr::getBitCast(GetClassName(Super->getIdentifier()),
1102 ObjCTypes.ClassPtrTy);
1103 } else {
1104 Values[ 1] = llvm::Constant::getNullValue(ObjCTypes.ClassPtrTy);
1105 }
1106 Values[ 2] = GetClassName(ID->getIdentifier());
1107 // Version is always 0.
1108 Values[ 3] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
1109 Values[ 4] = llvm::ConstantInt::get(ObjCTypes.LongTy, Flags);
1110 Values[ 5] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
1111 Values[ 6] = EmitIvarList(ID, true, InterfaceTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001112 Values[ 7] =
1113 EmitMethodList(std::string("\01L_OBJC_CLASS_METHODS_") + ID->getName(),
1114 "__OBJC,__inst_meth,regular,no_dead_strip",
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001115 Methods);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001116 // cache is always NULL.
1117 Values[ 8] = llvm::Constant::getNullValue(ObjCTypes.CachePtrTy);
1118 Values[ 9] = Protocols;
1119 // ivar_layout for metaclass is always NULL.
1120 Values[10] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
1121 // The class extension is always unused for metaclasses.
1122 Values[11] = llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
1123 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
1124 Values);
1125
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001126 std::string Name("\01L_OBJC_METACLASS_");
1127 Name += ClassName;
1128
1129 // Check for a forward reference.
1130 llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name);
1131 if (GV) {
1132 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
1133 "Forward metaclass reference has incorrect type.");
1134 GV->setLinkage(llvm::GlobalValue::InternalLinkage);
1135 GV->setInitializer(Init);
1136 } else {
1137 GV = new llvm::GlobalVariable(ObjCTypes.ClassTy, false,
1138 llvm::GlobalValue::InternalLinkage,
1139 Init, Name,
1140 &CGM.getModule());
1141 }
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001142 GV->setSection("__OBJC,__meta_class,regular,no_dead_strip");
1143 UsedGlobals.push_back(GV);
1144 // FIXME: Why?
1145 GV->setAlignment(32);
1146
1147 return GV;
1148}
1149
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001150llvm::Constant *CGObjCMac::EmitMetaClassRef(const ObjCInterfaceDecl *ID) {
1151 std::string Name("\01L_OBJC_METACLASS_");
1152 Name += ID->getName();
1153
1154 // FIXME: Should we look these up somewhere other than the
1155 // module. Its a bit silly since we only generate these while
1156 // processing an implementation, so exactly one pointer would work
1157 // if know when we entered/exitted an implementation block.
1158
1159 // Check for an existing forward reference.
1160 if (llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name)) {
1161 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
1162 "Forward metaclass reference has incorrect type.");
1163 return GV;
1164 } else {
1165 // Generate as an external reference to keep a consistent
1166 // module. This will be patched up when we emit the metaclass.
1167 return new llvm::GlobalVariable(ObjCTypes.ClassTy, false,
1168 llvm::GlobalValue::ExternalLinkage,
1169 0,
1170 Name,
1171 &CGM.getModule());
1172 }
1173}
1174
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001175/*
1176 struct objc_class_ext {
1177 uint32_t size;
1178 const char *weak_ivar_layout;
1179 struct _objc_property_list *properties;
1180 };
1181*/
1182llvm::Constant *
1183CGObjCMac::EmitClassExtension(const ObjCImplementationDecl *ID) {
1184 uint64_t Size =
1185 CGM.getTargetData().getABITypeSize(ObjCTypes.ClassExtensionTy);
1186
1187 std::vector<llvm::Constant*> Values(3);
1188 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Size);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001189 // FIXME: Output weak_ivar_layout string.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001190 Values[1] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001191 Values[2] = EmitPropertyList(std::string("\01L_OBJC_$_PROP_LIST_") +
1192 ID->getName(),
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001193 ID,
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001194 ID->getClassInterface()->classprop_begin(),
1195 ID->getClassInterface()->classprop_end());
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001196
1197 // Return null if no extension bits are used.
1198 if (Values[1]->isNullValue() && Values[2]->isNullValue())
1199 return llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy);
1200
1201 llvm::Constant *Init =
1202 llvm::ConstantStruct::get(ObjCTypes.ClassExtensionTy, Values);
1203 llvm::GlobalVariable *GV =
1204 new llvm::GlobalVariable(ObjCTypes.ClassExtensionTy, false,
1205 llvm::GlobalValue::InternalLinkage,
1206 Init,
1207 (std::string("\01L_OBJC_CLASSEXT_") +
1208 ID->getName()),
1209 &CGM.getModule());
1210 // No special section, but goes in llvm.used
1211 UsedGlobals.push_back(GV);
1212
1213 return GV;
1214}
1215
1216/*
1217 struct objc_ivar {
1218 char *ivar_name;
1219 char *ivar_type;
1220 int ivar_offset;
1221 };
1222
1223 struct objc_ivar_list {
1224 int ivar_count;
1225 struct objc_ivar list[count];
1226 };
1227 */
1228llvm::Constant *CGObjCMac::EmitIvarList(const ObjCImplementationDecl *ID,
1229 bool ForClass,
1230 const llvm::Type *InterfaceTy) {
1231 std::vector<llvm::Constant*> Ivars, Ivar(3);
1232
1233 // When emitting the root class GCC emits ivar entries for the
1234 // actual class structure. It is not clear if we need to follow this
1235 // behavior; for now lets try and get away with not doing it. If so,
1236 // the cleanest solution would be to make up an ObjCInterfaceDecl
1237 // for the class.
1238 if (ForClass)
1239 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
1240
1241 const llvm::StructLayout *Layout =
1242 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceTy));
1243 for (ObjCInterfaceDecl::ivar_iterator
1244 i = ID->getClassInterface()->ivar_begin(),
1245 e = ID->getClassInterface()->ivar_end(); i != e; ++i) {
1246 ObjCIvarDecl *V = *i;
1247 unsigned Offset =
1248 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(V));
1249 std::string TypeStr;
1250 llvm::SmallVector<const RecordType *, 8> EncodingRecordTypes;
1251 Ivar[0] = GetMethodVarName(V->getIdentifier());
1252 CGM.getContext().getObjCEncodingForType(V->getType(), TypeStr,
1253 EncodingRecordTypes);
1254 Ivar[1] = GetMethodVarType(TypeStr);
1255 Ivar[2] = llvm::ConstantInt::get(ObjCTypes.IntTy, Offset);
1256 Ivars.push_back(llvm::ConstantStruct::get(ObjCTypes.IvarTy,
1257 Ivar));
1258 }
1259
1260 // Return null for empty list.
1261 if (Ivars.empty())
1262 return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy);
1263
1264 std::vector<llvm::Constant*> Values(2);
1265 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Ivars.size());
1266 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.IvarTy,
1267 Ivars.size());
1268 Values[1] = llvm::ConstantArray::get(AT, Ivars);
1269 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
1270
1271 const char *Prefix = (ForClass ? "\01L_OBJC_CLASS_VARIABLES_" :
1272 "\01L_OBJC_INSTANCE_VARIABLES_");
1273 llvm::GlobalVariable *GV =
1274 new llvm::GlobalVariable(Init->getType(), false,
1275 llvm::GlobalValue::InternalLinkage,
1276 Init,
1277 std::string(Prefix) + ID->getName(),
1278 &CGM.getModule());
1279 if (ForClass) {
1280 GV->setSection("__OBJC,__cls_vars,regular,no_dead_strip");
1281 // FIXME: Why is this only here?
1282 GV->setAlignment(32);
1283 } else {
1284 GV->setSection("__OBJC,__instance_vars,regular,no_dead_strip");
1285 }
1286 UsedGlobals.push_back(GV);
1287 return llvm::ConstantExpr::getBitCast(GV,
1288 ObjCTypes.IvarListPtrTy);
1289}
1290
1291/*
1292 struct objc_method {
1293 SEL method_name;
1294 char *method_types;
1295 void *method;
1296 };
1297
1298 struct objc_method_list {
1299 struct objc_method_list *obsolete;
1300 int count;
1301 struct objc_method methods_list[count];
1302 };
1303*/
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001304
1305/// GetMethodConstant - Return a struct objc_method constant for the
1306/// given method if it has been defined. The result is null if the
1307/// method has not been defined. The return value has type MethodPtrTy.
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001308llvm::Constant *CGObjCMac::GetMethodConstant(const ObjCMethodDecl *MD) {
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001309 // FIXME: Use DenseMap::lookup
1310 llvm::Function *Fn = MethodDefinitions[MD];
1311 if (!Fn)
1312 return 0;
1313
1314 std::vector<llvm::Constant*> Method(3);
1315 Method[0] =
1316 llvm::ConstantExpr::getBitCast(GetMethodVarName(MD->getSelector()),
1317 ObjCTypes.SelectorPtrTy);
1318 Method[1] = GetMethodVarType(MD);
1319 Method[2] = llvm::ConstantExpr::getBitCast(Fn, ObjCTypes.Int8PtrTy);
1320 return llvm::ConstantStruct::get(ObjCTypes.MethodTy, Method);
1321}
1322
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001323llvm::Constant *CGObjCMac::EmitMethodList(const std::string &Name,
1324 const char *Section,
Daniel Dunbarae226fa2008-08-27 02:31:56 +00001325 const ConstantVector &Methods) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001326 // Return null for empty list.
1327 if (Methods.empty())
1328 return llvm::Constant::getNullValue(ObjCTypes.MethodListPtrTy);
1329
1330 std::vector<llvm::Constant*> Values(3);
1331 Values[0] = llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy);
1332 Values[1] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size());
1333 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.MethodTy,
1334 Methods.size());
1335 Values[2] = llvm::ConstantArray::get(AT, Methods);
1336 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
1337
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001338 llvm::GlobalVariable *GV =
1339 new llvm::GlobalVariable(Init->getType(), false,
1340 llvm::GlobalValue::InternalLinkage,
1341 Init,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001342 Name,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001343 &CGM.getModule());
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001344 GV->setSection(Section);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001345 UsedGlobals.push_back(GV);
1346 return llvm::ConstantExpr::getBitCast(GV,
1347 ObjCTypes.MethodListPtrTy);
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001348}
1349
1350llvm::Function *CGObjCMac::GenerateMethod(const ObjCMethodDecl *OMD) {
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001351 std::string Name;
1352 GetNameForMethod(OMD, Name);
1353
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001354 const llvm::FunctionType *MethodTy =
1355 CGM.getTypes().GetFunctionType(CGFunctionInfo(OMD, CGM.getContext()));
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001356 llvm::Function *Method =
Daniel Dunbar45c25ba2008-09-10 04:01:49 +00001357 llvm::Function::Create(MethodTy,
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001358 llvm::GlobalValue::InternalLinkage,
1359 Name,
1360 &CGM.getModule());
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001361 MethodDefinitions.insert(std::make_pair(OMD, Method));
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001362
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001363 return Method;
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001364}
1365
1366llvm::Function *CGObjCMac::ModuleInitFunction() {
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001367 // Abuse this interface function as a place to finalize.
1368 FinishModule();
1369
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001370 return NULL;
1371}
1372
Daniel Dunbar49f66022008-09-24 03:38:44 +00001373llvm::Function *CGObjCMac::GetPropertyGetFunction() {
1374 return ObjCTypes.GetPropertyFn;
1375}
1376
1377llvm::Function *CGObjCMac::GetPropertySetFunction() {
1378 return ObjCTypes.SetPropertyFn;
1379}
1380
Anders Carlsson2abd89c2008-08-31 04:05:03 +00001381llvm::Function *CGObjCMac::EnumerationMutationFunction()
1382{
1383 return ObjCTypes.EnumerationMutationFn;
1384}
1385
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001386void CGObjCMac::EmitTryStmt(CodeGen::CodeGenFunction &CGF,
1387 const ObjCAtTryStmt &S)
1388{
Anders Carlsson80f25672008-09-09 17:59:25 +00001389 // Allocate exception data.
1390 llvm::Value *ExceptionData = CGF.CreateTempAlloca(ObjCTypes.ExceptionDataTy,
1391 "exceptiondata.ptr");
1392
1393 // Allocate memory for the rethrow pointer.
1394 llvm::Value *RethrowPtr = CGF.CreateTempAlloca(ObjCTypes.ObjectPtrTy);
1395 CGF.Builder.CreateStore(llvm::Constant::getNullValue(ObjCTypes.ObjectPtrTy),
1396 RethrowPtr);
1397
1398 // Enter a new try block and call setjmp.
1399 CGF.Builder.CreateCall(ObjCTypes.ExceptionTryEnterFn, ExceptionData);
1400 llvm::Value *JmpBufPtr = CGF.Builder.CreateStructGEP(ExceptionData, 0,
1401 "jmpbufarray");
1402 JmpBufPtr = CGF.Builder.CreateStructGEP(JmpBufPtr, 0, "tmp");
1403 llvm::Value *SetJmpResult = CGF.Builder.CreateCall(ObjCTypes.SetJmpFn,
1404 JmpBufPtr, "result");
1405
1406
1407 llvm::BasicBlock *FinallyBlock = llvm::BasicBlock::Create("finally");
1408
1409 llvm::BasicBlock *TryBlock = llvm::BasicBlock::Create("try");
1410 llvm::BasicBlock *ExceptionInTryBlock =
1411 llvm::BasicBlock::Create("exceptionintry");
1412
1413 // If setjmp returns 1, there was an exception in the @try block.
1414 llvm::Value *Zero = llvm::Constant::getNullValue(llvm::Type::Int32Ty);
1415 llvm::Value *IsZero = CGF.Builder.CreateICmpEQ(SetJmpResult, Zero, "iszero");
1416 CGF.Builder.CreateCondBr(IsZero, TryBlock, ExceptionInTryBlock);
1417
1418 // Emit the @try block.
1419 CGF.EmitBlock(TryBlock);
1420 CGF.EmitStmt(S.getTryBody());
1421 CGF.Builder.CreateBr(FinallyBlock);
1422
1423 // Emit the "exception in @try" block.
1424 CGF.EmitBlock(ExceptionInTryBlock);
Daniel Dunbar55e40722008-09-27 07:03:52 +00001425
1426 // Retrieve the exception object. We may emit multiple blocks but
1427 // nothing can cross this so the value is already in SSA form.
1428 llvm::Value *Caught = CGF.Builder.CreateCall(ObjCTypes.ExceptionExtractFn,
1429 ExceptionData,
1430 "caught");
1431 if (const ObjCAtCatchStmt* CatchStmt = S.getCatchStmts()) {
1432 // Enter a new exception try block (in case a @catch block throws
1433 // an exception).
Anders Carlsson80f25672008-09-09 17:59:25 +00001434 CGF.Builder.CreateCall(ObjCTypes.ExceptionTryEnterFn, ExceptionData);
Daniel Dunbar55e40722008-09-27 07:03:52 +00001435
Anders Carlsson80f25672008-09-09 17:59:25 +00001436 llvm::Value *SetJmpResult = CGF.Builder.CreateCall(ObjCTypes.SetJmpFn,
1437 JmpBufPtr, "result");
1438
1439
1440 llvm::Value *Zero = llvm::Constant::getNullValue(llvm::Type::Int32Ty);
1441 llvm::Value *IsZero = CGF.Builder.CreateICmpEQ(SetJmpResult, Zero,
1442 "iszero");
1443
1444 llvm::BasicBlock *CatchBlock = llvm::BasicBlock::Create("catch");
1445 llvm::BasicBlock *ExceptionInCatchBlock =
1446 llvm::BasicBlock::Create("exceptionincatch");
1447 CGF.Builder.CreateCondBr(IsZero, CatchBlock, ExceptionInCatchBlock);
1448
1449 CGF.EmitBlock(CatchBlock);
1450
Daniel Dunbar55e40722008-09-27 07:03:52 +00001451 // Handle catch list. As a special case we check if everything is
1452 // matched and avoid generating code for falling off the end if
1453 // so.
1454 bool AllMatched = false;
Anders Carlsson80f25672008-09-09 17:59:25 +00001455 for (; CatchStmt; CatchStmt = CatchStmt->getNextCatchStmt()) {
1456 llvm::BasicBlock *NextCatchBlock = llvm::BasicBlock::Create("nextcatch");
1457
1458 QualType T;
Anders Carlssondde0a942008-09-11 09:15:33 +00001459 const DeclStmt *CatchParam =
1460 cast_or_null<DeclStmt>(CatchStmt->getCatchParamStmt());
Daniel Dunbar55e40722008-09-27 07:03:52 +00001461 const ValueDecl *VD = 0;
1462
Anders Carlsson80f25672008-09-09 17:59:25 +00001463 // catch(...) always matches.
Daniel Dunbar55e40722008-09-27 07:03:52 +00001464 if (!CatchParam) {
1465 AllMatched = true;
1466 } else {
1467 VD = cast<ValueDecl>(CatchParam->getDecl());
Anders Carlsson80f25672008-09-09 17:59:25 +00001468
1469 // catch(id e) always matches.
Daniel Dunbar55e40722008-09-27 07:03:52 +00001470 const PointerType *PT = VD->getType()->getAsPointerType();
1471 if (PT && CGF.getContext().isObjCIdType(PT->getPointeeType()))
1472 AllMatched = true;
Anders Carlsson80f25672008-09-09 17:59:25 +00001473 }
1474
Daniel Dunbar55e40722008-09-27 07:03:52 +00001475 if (AllMatched) {
Anders Carlssondde0a942008-09-11 09:15:33 +00001476 if (CatchParam) {
1477 CGF.EmitStmt(CatchParam);
1478
1479 const VarDecl *VD = cast<VarDecl>(CatchParam->getDecl());
1480
1481 llvm::Value *V = CGF.GetAddrOfLocalVar(VD);
1482
1483 CGF.Builder.CreateStore(Caught, V);
1484 }
Anders Carlsson1452f552008-09-11 08:21:54 +00001485
Anders Carlssondde0a942008-09-11 09:15:33 +00001486 CGF.EmitStmt(CatchStmt->getCatchBody());
Anders Carlsson80f25672008-09-09 17:59:25 +00001487 CGF.Builder.CreateBr(FinallyBlock);
Anders Carlsson80f25672008-09-09 17:59:25 +00001488 break;
1489 }
1490
Anders Carlsson4b7ff6e2008-09-11 06:35:14 +00001491 const ObjCInterfaceType *ObjCType = T->getAsObjCInterfaceType();
Anders Carlsson80f25672008-09-09 17:59:25 +00001492 assert(ObjCType && "Catch parameter must have Objective-C type!");
1493
1494 // Check if the @catch block matches the exception object.
1495 llvm::Value *Class = EmitClassRef(CGF.Builder, ObjCType->getDecl());
1496
Anders Carlsson80f25672008-09-09 17:59:25 +00001497 llvm::Value *Match = CGF.Builder.CreateCall2(ObjCTypes.ExceptionMatchFn,
1498 Class, Caught, "match");
1499
1500 llvm::Value *DidMatch = CGF.Builder.CreateICmpNE(Match, Zero, "iszero");
1501
1502 llvm::BasicBlock *MatchedBlock = llvm::BasicBlock::Create("matched");
1503
1504 CGF.Builder.CreateCondBr(DidMatch, MatchedBlock, NextCatchBlock);
1505
1506 // Emit the @catch block.
1507 CGF.EmitBlock(MatchedBlock);
Anders Carlssondde0a942008-09-11 09:15:33 +00001508 if (CatchParam) {
1509 CGF.EmitStmt(CatchParam);
1510
1511 const VarDecl *VD = cast<VarDecl>(CatchParam->getDecl());
1512
1513 llvm::Value *Tmp =
1514 CGF.Builder.CreateBitCast(Caught, CGF.ConvertType(VD->getType()),
1515 "tmp");
1516 CGF.Builder.CreateStore(Tmp, CGF.GetAddrOfLocalVar(VD));
1517 }
1518
1519 CGF.EmitStmt(CatchStmt->getCatchBody());
Anders Carlsson80f25672008-09-09 17:59:25 +00001520 CGF.Builder.CreateBr(FinallyBlock);
1521
1522 CGF.EmitBlock(NextCatchBlock);
1523 }
1524
Daniel Dunbar55e40722008-09-27 07:03:52 +00001525 if (!AllMatched) {
1526 // None of the handlers caught the exception, so store it to be
1527 // rethrown at the end of the @finally block.
1528 CGF.Builder.CreateStore(Caught, RethrowPtr);
1529 CGF.Builder.CreateCall(ObjCTypes.ExceptionTryExitFn, ExceptionData);
1530 CGF.Builder.CreateBr(FinallyBlock);
1531 }
1532
1533 // Emit the exception handler for the @catch blocks.
1534 CGF.EmitBlock(ExceptionInCatchBlock);
1535 CGF.Builder.CreateStore(CGF.Builder.CreateCall(ObjCTypes.ExceptionExtractFn,
1536 ExceptionData),
1537 RethrowPtr);
1538 } else {
Anders Carlsson80f25672008-09-09 17:59:25 +00001539 CGF.Builder.CreateStore(Caught, RethrowPtr);
Anders Carlsson80f25672008-09-09 17:59:25 +00001540 }
1541
1542 // Emit the @finally block.
1543 CGF.EmitBlock(FinallyBlock);
1544
1545 llvm::Value *Rethrow = CGF.Builder.CreateLoad(RethrowPtr);
1546 llvm::Value *ZeroPtr = llvm::Constant::getNullValue(ObjCTypes.ObjectPtrTy);
1547
1548 llvm::Value *RethrowIsZero = CGF.Builder.CreateICmpEQ(Rethrow, ZeroPtr);
1549
1550 llvm::BasicBlock *TryExitBlock = llvm::BasicBlock::Create("tryexit");
1551 llvm::BasicBlock *AfterTryExitBlock =
1552 llvm::BasicBlock::Create("aftertryexit");
1553
1554 CGF.Builder.CreateCondBr(RethrowIsZero, TryExitBlock, AfterTryExitBlock);
1555 CGF.EmitBlock(TryExitBlock);
1556 CGF.Builder.CreateCall(ObjCTypes.ExceptionTryExitFn, ExceptionData);
1557 CGF.EmitBlock(AfterTryExitBlock);
1558
1559 if (const ObjCAtFinallyStmt* FinallyStmt = S.getFinallyStmt())
1560 CGF.EmitStmt(FinallyStmt->getFinallyBody());
1561
1562 llvm::Value *RethrowIsNotZero = CGF.Builder.CreateICmpNE(Rethrow, ZeroPtr);
1563
1564 llvm::BasicBlock *RethrowBlock = llvm::BasicBlock::Create("rethrow");
1565 llvm::BasicBlock *FinallyEndBlock = llvm::BasicBlock::Create("finallyend");
1566
1567 // If necessary, rethrow the exception.
1568 CGF.Builder.CreateCondBr(RethrowIsNotZero, RethrowBlock, FinallyEndBlock);
1569 CGF.EmitBlock(RethrowBlock);
1570 CGF.Builder.CreateCall(ObjCTypes.ExceptionThrowFn, Rethrow);
1571 CGF.EmitBlock(FinallyEndBlock);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001572}
1573
1574void CGObjCMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
1575 const ObjCAtThrowStmt &S)
1576{
Anders Carlsson2b1e3112008-09-09 16:16:55 +00001577 llvm::Value *ExceptionAsObject;
1578
1579 if (const Expr *ThrowExpr = S.getThrowExpr()) {
1580 llvm::Value *Exception = CGF.EmitScalarExpr(ThrowExpr);
1581 ExceptionAsObject =
1582 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy, "tmp");
1583 } else {
1584 assert(0 && "FIXME: rethrows not supported!");
1585 }
1586
1587 CGF.Builder.CreateCall(ObjCTypes.ExceptionThrowFn, ExceptionAsObject);
Anders Carlsson80f25672008-09-09 17:59:25 +00001588 CGF.Builder.CreateUnreachable();
1589 CGF.EmitBlock(llvm::BasicBlock::Create("bb"));
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00001590}
1591
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001592/* *** Private Interface *** */
1593
1594/// EmitImageInfo - Emit the image info marker used to encode some module
1595/// level information.
1596///
1597/// See: <rdr://4810609&4810587&4810587>
1598/// struct IMAGE_INFO {
1599/// unsigned version;
1600/// unsigned flags;
1601/// };
1602enum ImageInfoFlags {
1603 eImageInfo_FixAndContinue = (1 << 0), // FIXME: Not sure what this implies
1604 eImageInfo_GarbageCollected = (1 << 1),
1605 eImageInfo_GCOnly = (1 << 2)
1606};
1607
1608void CGObjCMac::EmitImageInfo() {
1609 unsigned version = 0; // Version is unused?
1610 unsigned flags = 0;
1611
1612 // FIXME: Fix and continue?
1613 if (CGM.getLangOptions().getGCMode() != LangOptions::NonGC)
1614 flags |= eImageInfo_GarbageCollected;
1615 if (CGM.getLangOptions().getGCMode() == LangOptions::GCOnly)
1616 flags |= eImageInfo_GCOnly;
1617
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001618 // Emitted as int[2];
1619 llvm::Constant *values[2] = {
1620 llvm::ConstantInt::get(llvm::Type::Int32Ty, version),
1621 llvm::ConstantInt::get(llvm::Type::Int32Ty, flags)
1622 };
1623 llvm::ArrayType *AT = llvm::ArrayType::get(llvm::Type::Int32Ty, 2);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001624 llvm::GlobalVariable *GV =
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001625 new llvm::GlobalVariable(AT, true,
1626 llvm::GlobalValue::InternalLinkage,
1627 llvm::ConstantArray::get(AT, values, 2),
1628 "\01L_OBJC_IMAGE_INFO",
1629 &CGM.getModule());
1630
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001631 if (ObjCABI == 1) {
1632 GV->setSection("__OBJC, __image_info,regular");
1633 } else {
1634 GV->setSection("__DATA, __objc_imageinfo, regular, no_dead_strip");
1635 }
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001636
1637 UsedGlobals.push_back(GV);
1638}
1639
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001640
1641// struct objc_module {
1642// unsigned long version;
1643// unsigned long size;
1644// const char *name;
1645// Symtab symtab;
1646// };
1647
1648// FIXME: Get from somewhere
1649static const int ModuleVersion = 7;
1650
1651void CGObjCMac::EmitModuleInfo() {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001652 uint64_t Size = CGM.getTargetData().getABITypeSize(ObjCTypes.ModuleTy);
1653
1654 std::vector<llvm::Constant*> Values(4);
1655 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, ModuleVersion);
1656 Values[1] = llvm::ConstantInt::get(ObjCTypes.LongTy, Size);
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001657 // This used to be the filename, now it is unused. <rdr://4327263>
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001658 Values[2] = GetClassName(&CGM.getContext().Idents.get(""));
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001659 Values[3] = EmitModuleSymbols();
1660
1661 llvm::GlobalVariable *GV =
1662 new llvm::GlobalVariable(ObjCTypes.ModuleTy, false,
1663 llvm::GlobalValue::InternalLinkage,
1664 llvm::ConstantStruct::get(ObjCTypes.ModuleTy,
1665 Values),
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001666 "\01L_OBJC_MODULES",
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001667 &CGM.getModule());
1668 GV->setSection("__OBJC,__module_info,regular,no_dead_strip");
1669 UsedGlobals.push_back(GV);
1670}
1671
1672llvm::Constant *CGObjCMac::EmitModuleSymbols() {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001673 unsigned NumClasses = DefinedClasses.size();
1674 unsigned NumCategories = DefinedCategories.size();
1675
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001676 // Return null if no symbols were defined.
1677 if (!NumClasses && !NumCategories)
1678 return llvm::Constant::getNullValue(ObjCTypes.SymtabPtrTy);
1679
1680 std::vector<llvm::Constant*> Values(5);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001681 Values[0] = llvm::ConstantInt::get(ObjCTypes.LongTy, 0);
1682 Values[1] = llvm::Constant::getNullValue(ObjCTypes.SelectorPtrTy);
1683 Values[2] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumClasses);
1684 Values[3] = llvm::ConstantInt::get(ObjCTypes.ShortTy, NumCategories);
1685
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001686 // The runtime expects exactly the list of defined classes followed
1687 // by the list of defined categories, in a single array.
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001688 std::vector<llvm::Constant*> Symbols(NumClasses + NumCategories);
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001689 for (unsigned i=0; i<NumClasses; i++)
1690 Symbols[i] = llvm::ConstantExpr::getBitCast(DefinedClasses[i],
1691 ObjCTypes.Int8PtrTy);
1692 for (unsigned i=0; i<NumCategories; i++)
1693 Symbols[NumClasses + i] =
1694 llvm::ConstantExpr::getBitCast(DefinedCategories[i],
1695 ObjCTypes.Int8PtrTy);
1696
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001697 Values[4] =
Daniel Dunbar86e253a2008-08-22 20:34:54 +00001698 llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001699 NumClasses + NumCategories),
1700 Symbols);
1701
1702 llvm::Constant *Init = llvm::ConstantStruct::get(Values);
1703
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001704 llvm::GlobalVariable *GV =
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001705 new llvm::GlobalVariable(Init->getType(), false,
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001706 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001707 Init,
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001708 "\01L_OBJC_SYMBOLS",
1709 &CGM.getModule());
1710 GV->setSection("__OBJC,__symbols,regular,no_dead_strip");
1711 UsedGlobals.push_back(GV);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001712 return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.SymtabPtrTy);
1713}
1714
1715llvm::Value *CGObjCMac::EmitClassRef(llvm::IRBuilder<> &Builder,
1716 const ObjCInterfaceDecl *ID) {
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001717 LazySymbols.insert(ID->getIdentifier());
1718
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001719 llvm::GlobalVariable *&Entry = ClassReferences[ID->getIdentifier()];
1720
1721 if (!Entry) {
1722 llvm::Constant *Casted =
1723 llvm::ConstantExpr::getBitCast(GetClassName(ID->getIdentifier()),
1724 ObjCTypes.ClassPtrTy);
1725 Entry =
1726 new llvm::GlobalVariable(ObjCTypes.ClassPtrTy, false,
1727 llvm::GlobalValue::InternalLinkage,
1728 Casted, "\01L_OBJC_CLASS_REFERENCES_",
1729 &CGM.getModule());
1730 Entry->setSection("__OBJC,__cls_refs,literal_pointers,no_dead_strip");
1731 UsedGlobals.push_back(Entry);
1732 }
1733
1734 return Builder.CreateLoad(Entry, false, "tmp");
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001735}
1736
Daniel Dunbar259d93d2008-08-12 03:39:23 +00001737llvm::Value *CGObjCMac::EmitSelector(llvm::IRBuilder<> &Builder, Selector Sel) {
1738 llvm::GlobalVariable *&Entry = SelectorReferences[Sel];
1739
1740 if (!Entry) {
1741 llvm::Constant *Casted =
1742 llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel),
1743 ObjCTypes.SelectorPtrTy);
1744 Entry =
1745 new llvm::GlobalVariable(ObjCTypes.SelectorPtrTy, false,
1746 llvm::GlobalValue::InternalLinkage,
1747 Casted, "\01L_OBJC_SELECTOR_REFERENCES_",
1748 &CGM.getModule());
1749 Entry->setSection("__OBJC,__message_refs,literal_pointers,no_dead_strip");
1750 UsedGlobals.push_back(Entry);
1751 }
1752
1753 return Builder.CreateLoad(Entry, false, "tmp");
1754}
1755
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001756llvm::Constant *CGObjCMac::GetClassName(IdentifierInfo *Ident) {
1757 llvm::GlobalVariable *&Entry = ClassNames[Ident];
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001758
1759 if (!Entry) {
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001760 llvm::Constant *C = llvm::ConstantArray::get(Ident->getName());
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001761 Entry =
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001762 new llvm::GlobalVariable(C->getType(), false,
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001763 llvm::GlobalValue::InternalLinkage,
1764 C, "\01L_OBJC_CLASS_NAME_",
1765 &CGM.getModule());
1766 Entry->setSection("__TEXT,__cstring,cstring_literals");
1767 UsedGlobals.push_back(Entry);
1768 }
1769
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001770 return getConstantGEP(Entry, 0, 0);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001771}
1772
Daniel Dunbar259d93d2008-08-12 03:39:23 +00001773llvm::Constant *CGObjCMac::GetMethodVarName(Selector Sel) {
1774 llvm::GlobalVariable *&Entry = MethodVarNames[Sel];
1775
1776 if (!Entry) {
1777 llvm::Constant *C = llvm::ConstantArray::get(Sel.getName());
1778 Entry =
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001779 new llvm::GlobalVariable(C->getType(), false,
Daniel Dunbar259d93d2008-08-12 03:39:23 +00001780 llvm::GlobalValue::InternalLinkage,
1781 C, "\01L_OBJC_METH_VAR_NAME_",
1782 &CGM.getModule());
1783 Entry->setSection("__TEXT,__cstring,cstring_literals");
1784 UsedGlobals.push_back(Entry);
1785 }
1786
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001787 return getConstantGEP(Entry, 0, 0);
1788}
1789
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001790// FIXME: Merge into a single cstring creation function.
1791llvm::Constant *CGObjCMac::GetMethodVarName(IdentifierInfo *ID) {
1792 return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID));
1793}
1794
1795// FIXME: Merge into a single cstring creation function.
1796llvm::Constant *CGObjCMac::GetMethodVarName(const std::string &Name) {
1797 return GetMethodVarName(&CGM.getContext().Idents.get(Name));
1798}
1799
1800llvm::Constant *CGObjCMac::GetMethodVarType(const std::string &Name) {
1801 llvm::GlobalVariable *&Entry = MethodVarTypes[Name];
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001802
1803 if (!Entry) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001804 llvm::Constant *C = llvm::ConstantArray::get(Name);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001805 Entry =
1806 new llvm::GlobalVariable(C->getType(), false,
1807 llvm::GlobalValue::InternalLinkage,
1808 C, "\01L_OBJC_METH_VAR_TYPE_",
1809 &CGM.getModule());
1810 Entry->setSection("__TEXT,__cstring,cstring_literals");
1811 UsedGlobals.push_back(Entry);
1812 }
1813
1814 return getConstantGEP(Entry, 0, 0);
Daniel Dunbar259d93d2008-08-12 03:39:23 +00001815}
1816
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001817// FIXME: Merge into a single cstring creation function.
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001818llvm::Constant *CGObjCMac::GetMethodVarType(const ObjCMethodDecl *D) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001819 std::string TypeStr;
Daniel Dunbarc45ef602008-08-26 21:51:14 +00001820 CGM.getContext().getObjCEncodingForMethodDecl(const_cast<ObjCMethodDecl*>(D),
1821 TypeStr);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001822 return GetMethodVarType(TypeStr);
1823}
1824
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001825// FIXME: Merge into a single cstring creation function.
1826llvm::Constant *CGObjCMac::GetPropertyName(IdentifierInfo *Ident) {
1827 llvm::GlobalVariable *&Entry = PropertyNames[Ident];
1828
1829 if (!Entry) {
1830 llvm::Constant *C = llvm::ConstantArray::get(Ident->getName());
1831 Entry =
1832 new llvm::GlobalVariable(C->getType(), false,
1833 llvm::GlobalValue::InternalLinkage,
1834 C, "\01L_OBJC_PROP_NAME_ATTR_",
1835 &CGM.getModule());
1836 Entry->setSection("__TEXT,__cstring,cstring_literals");
1837 UsedGlobals.push_back(Entry);
1838 }
1839
1840 return getConstantGEP(Entry, 0, 0);
1841}
1842
1843// FIXME: Merge into a single cstring creation function.
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001844// FIXME: This Decl should be more precise.
1845llvm::Constant *CGObjCMac::GetPropertyTypeString(const ObjCPropertyDecl *PD,
1846 const Decl *Container) {
1847 std::string TypeStr;
1848 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr);
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001849 return GetPropertyName(&CGM.getContext().Idents.get(TypeStr));
1850}
1851
Daniel Dunbarb7ec2462008-08-16 03:19:19 +00001852void CGObjCMac::GetNameForMethod(const ObjCMethodDecl *D,
1853 std::string &NameOut) {
1854 // FIXME: Find the mangling GCC uses.
1855 std::stringstream s;
1856 s << (D->isInstance() ? "-" : "+");
1857 s << "[";
1858 s << D->getClassInterface()->getName();
1859 s << " ";
1860 s << D->getSelector().getName();
1861 s << "]";
1862 NameOut = s.str();
1863}
1864
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001865void CGObjCMac::FinishModule() {
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001866 EmitModuleInfo();
1867
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001868 std::vector<llvm::Constant*> Used;
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001869
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001870 for (std::vector<llvm::GlobalVariable*>::iterator i = UsedGlobals.begin(),
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001871 e = UsedGlobals.end(); i != e; ++i) {
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001872 Used.push_back(llvm::ConstantExpr::getBitCast(*i, ObjCTypes.Int8PtrTy));
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001873 }
1874
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001875 llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.Int8PtrTy, Used.size());
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001876 llvm::GlobalValue *GV =
1877 new llvm::GlobalVariable(AT, false,
1878 llvm::GlobalValue::AppendingLinkage,
1879 llvm::ConstantArray::get(AT, Used),
1880 "llvm.used",
1881 &CGM.getModule());
1882
1883 GV->setSection("llvm.metadata");
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001884
1885 // Add assembler directives to add lazy undefined symbol references
1886 // for classes which are referenced but not defined. This is
1887 // important for correct linker interaction.
1888
1889 // FIXME: Uh, this isn't particularly portable.
1890 std::stringstream s;
1891 for (std::set<IdentifierInfo*>::iterator i = LazySymbols.begin(),
1892 e = LazySymbols.end(); i != e; ++i) {
1893 s << "\t.lazy_reference .objc_class_name_" << (*i)->getName() << "\n";
1894 }
1895 for (std::set<IdentifierInfo*>::iterator i = DefinedSymbols.begin(),
1896 e = DefinedSymbols.end(); i != e; ++i) {
Daniel Dunbarc56f34a2008-08-28 04:38:10 +00001897 s << "\t.objc_class_name_" << (*i)->getName() << "=0\n"
Daniel Dunbar242d4dc2008-08-25 06:02:07 +00001898 << "\t.globl .objc_class_name_" << (*i)->getName() << "\n";
1899 }
1900 CGM.getModule().appendModuleInlineAsm(s.str());
Daniel Dunbarf77ac862008-08-11 21:35:06 +00001901}
1902
1903/* *** */
1904
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001905ObjCTypesHelper::ObjCTypesHelper(CodeGen::CodeGenModule &cgm)
Daniel Dunbar3e9df992008-08-23 18:37:06 +00001906 : CGM(cgm)
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00001907{
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001908 CodeGen::CodeGenTypes &Types = CGM.getTypes();
1909 ASTContext &Ctx = CGM.getContext();
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001910
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001911 ShortTy = Types.ConvertType(Ctx.ShortTy);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001912 IntTy = Types.ConvertType(Ctx.IntTy);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001913 LongTy = Types.ConvertType(Ctx.LongTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001914 Int8PtrTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
1915
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001916 ObjectPtrTy = Types.ConvertType(Ctx.getObjCIdType());
1917 SelectorPtrTy = Types.ConvertType(Ctx.getObjCSelType());
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001918
1919 // FIXME: It would be nice to unify this with the opaque type, so
1920 // that the IR comes out a bit cleaner.
1921 const llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType());
1922 ExternalProtocolPtrTy = llvm::PointerType::getUnqual(T);
Daniel Dunbar4e2d7d02008-08-12 06:48:42 +00001923
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001924 MethodDescriptionTy =
1925 llvm::StructType::get(SelectorPtrTy,
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001926 Int8PtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001927 NULL);
1928 CGM.getModule().addTypeName("struct._objc_method_description",
1929 MethodDescriptionTy);
1930
1931 MethodDescriptionListTy =
1932 llvm::StructType::get(IntTy,
1933 llvm::ArrayType::get(MethodDescriptionTy, 0),
1934 NULL);
1935 CGM.getModule().addTypeName("struct._objc_method_description_list",
1936 MethodDescriptionListTy);
1937 MethodDescriptionListPtrTy =
1938 llvm::PointerType::getUnqual(MethodDescriptionListTy);
1939
Daniel Dunbarc8ef5512008-08-23 00:19:03 +00001940 PropertyTy = llvm::StructType::get(Int8PtrTy,
1941 Int8PtrTy,
1942 NULL);
1943 CGM.getModule().addTypeName("struct._objc_property",
1944 PropertyTy);
1945
1946 PropertyListTy = llvm::StructType::get(IntTy,
1947 IntTy,
1948 llvm::ArrayType::get(PropertyTy, 0),
1949 NULL);
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001950 CGM.getModule().addTypeName("struct._objc_property_list",
1951 PropertyListTy);
1952 PropertyListPtrTy = llvm::PointerType::getUnqual(PropertyListTy);
1953
1954 // Protocol description structures
1955
1956 ProtocolExtensionTy =
1957 llvm::StructType::get(Types.ConvertType(Ctx.IntTy),
1958 llvm::PointerType::getUnqual(MethodDescriptionListTy),
1959 llvm::PointerType::getUnqual(MethodDescriptionListTy),
1960 PropertyListPtrTy,
1961 NULL);
1962 CGM.getModule().addTypeName("struct._objc_protocol_extension",
1963 ProtocolExtensionTy);
1964 ProtocolExtensionPtrTy = llvm::PointerType::getUnqual(ProtocolExtensionTy);
1965
1966 // Handle recursive construction of Protocl and ProtocolList types
1967
1968 llvm::PATypeHolder ProtocolTyHolder = llvm::OpaqueType::get();
1969 llvm::PATypeHolder ProtocolListTyHolder = llvm::OpaqueType::get();
1970
1971 T = llvm::StructType::get(llvm::PointerType::getUnqual(ProtocolListTyHolder),
1972 LongTy,
1973 llvm::ArrayType::get(ProtocolTyHolder, 0),
1974 NULL);
1975 cast<llvm::OpaqueType>(ProtocolListTyHolder.get())->refineAbstractTypeTo(T);
1976
1977 T = llvm::StructType::get(llvm::PointerType::getUnqual(ProtocolExtensionTy),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001978 Int8PtrTy,
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00001979 llvm::PointerType::getUnqual(ProtocolListTyHolder),
1980 MethodDescriptionListPtrTy,
1981 MethodDescriptionListPtrTy,
1982 NULL);
1983 cast<llvm::OpaqueType>(ProtocolTyHolder.get())->refineAbstractTypeTo(T);
1984
1985 ProtocolListTy = cast<llvm::StructType>(ProtocolListTyHolder.get());
1986 CGM.getModule().addTypeName("struct._objc_protocol_list",
1987 ProtocolListTy);
1988 ProtocolListPtrTy = llvm::PointerType::getUnqual(ProtocolListTy);
1989
1990 ProtocolTy = cast<llvm::StructType>(ProtocolTyHolder.get());
1991 CGM.getModule().addTypeName("struct.__objc_protocol", ProtocolTy);
1992 ProtocolPtrTy = llvm::PointerType::getUnqual(ProtocolTy);
Daniel Dunbar27f9d772008-08-21 04:36:09 +00001993
1994 // Class description structures
1995
1996 IvarTy = llvm::StructType::get(Int8PtrTy,
1997 Int8PtrTy,
1998 IntTy,
1999 NULL);
2000 CGM.getModule().addTypeName("struct._objc_ivar", IvarTy);
2001
2002 IvarListTy = llvm::OpaqueType::get();
2003 CGM.getModule().addTypeName("struct._objc_ivar_list", IvarListTy);
2004 IvarListPtrTy = llvm::PointerType::getUnqual(IvarListTy);
2005
2006 MethodTy = llvm::StructType::get(SelectorPtrTy,
2007 Int8PtrTy,
2008 Int8PtrTy,
2009 NULL);
2010 CGM.getModule().addTypeName("struct._objc_method", MethodTy);
2011
2012 MethodListTy = llvm::OpaqueType::get();
2013 CGM.getModule().addTypeName("struct._objc_method_list", MethodListTy);
2014 MethodListPtrTy = llvm::PointerType::getUnqual(MethodListTy);
2015
2016 CacheTy = llvm::OpaqueType::get();
2017 CGM.getModule().addTypeName("struct._objc_cache", CacheTy);
2018 CachePtrTy = llvm::PointerType::getUnqual(CacheTy);
2019
2020 ClassExtensionTy =
2021 llvm::StructType::get(IntTy,
2022 Int8PtrTy,
2023 PropertyListPtrTy,
2024 NULL);
2025 CGM.getModule().addTypeName("struct._objc_class_extension", ClassExtensionTy);
2026 ClassExtensionPtrTy = llvm::PointerType::getUnqual(ClassExtensionTy);
2027
2028 llvm::PATypeHolder ClassTyHolder = llvm::OpaqueType::get();
2029
2030 T = llvm::StructType::get(llvm::PointerType::getUnqual(ClassTyHolder),
2031 llvm::PointerType::getUnqual(ClassTyHolder),
2032 Int8PtrTy,
2033 LongTy,
2034 LongTy,
2035 LongTy,
2036 IvarListPtrTy,
2037 MethodListPtrTy,
2038 CachePtrTy,
2039 ProtocolListPtrTy,
2040 Int8PtrTy,
2041 ClassExtensionPtrTy,
2042 NULL);
2043 cast<llvm::OpaqueType>(ClassTyHolder.get())->refineAbstractTypeTo(T);
2044
2045 ClassTy = cast<llvm::StructType>(ClassTyHolder.get());
2046 CGM.getModule().addTypeName("struct._objc_class", ClassTy);
2047 ClassPtrTy = llvm::PointerType::getUnqual(ClassTy);
2048
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002049 CategoryTy = llvm::StructType::get(Int8PtrTy,
2050 Int8PtrTy,
2051 MethodListPtrTy,
2052 MethodListPtrTy,
2053 ProtocolListPtrTy,
2054 IntTy,
2055 PropertyListPtrTy,
2056 NULL);
2057 CGM.getModule().addTypeName("struct._objc_category", CategoryTy);
2058
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00002059 // I'm not sure I like this. The implicit coordination is a bit
2060 // gross. We should solve this in a reasonable fashion because this
2061 // is a pretty common task (match some runtime data structure with
2062 // an LLVM data structure).
2063
2064 // FIXME: This is leaked.
2065 // FIXME: Merge with rewriter code?
2066 RecordDecl *RD = RecordDecl::Create(Ctx, TagDecl::TK_struct, 0,
2067 SourceLocation(),
Ted Kremenekdf042e62008-09-05 01:34:33 +00002068 &Ctx.Idents.get("_objc_super"));
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00002069 FieldDecl *FieldDecls[2];
2070 FieldDecls[0] = FieldDecl::Create(Ctx, SourceLocation(), 0,
2071 Ctx.getObjCIdType());
2072 FieldDecls[1] = FieldDecl::Create(Ctx, SourceLocation(), 0,
2073 Ctx.getObjCClassType());
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002074 RD->defineBody(Ctx, FieldDecls, 2);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00002075
2076 SuperCTy = Ctx.getTagDeclType(RD);
2077 SuperPtrCTy = Ctx.getPointerType(SuperCTy);
2078
2079 SuperTy = cast<llvm::StructType>(Types.ConvertType(SuperCTy));
Daniel Dunbar14c80b72008-08-23 09:25:55 +00002080 SuperPtrTy = llvm::PointerType::getUnqual(SuperTy);
Daniel Dunbare8b470d2008-08-23 04:28:29 +00002081
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002082 // Global metadata structures
2083
2084 SymtabTy = llvm::StructType::get(LongTy,
2085 SelectorPtrTy,
2086 ShortTy,
2087 ShortTy,
Daniel Dunbar86e253a2008-08-22 20:34:54 +00002088 llvm::ArrayType::get(Int8PtrTy, 0),
Daniel Dunbar27f9d772008-08-21 04:36:09 +00002089 NULL);
2090 CGM.getModule().addTypeName("struct._objc_symtab", SymtabTy);
2091 SymtabPtrTy = llvm::PointerType::getUnqual(SymtabTy);
2092
2093 ModuleTy =
2094 llvm::StructType::get(LongTy,
2095 LongTy,
2096 Int8PtrTy,
2097 SymtabPtrTy,
2098 NULL);
2099 CGM.getModule().addTypeName("struct._objc_module", ModuleTy);
Daniel Dunbar14c80b72008-08-23 09:25:55 +00002100
Daniel Dunbar49f66022008-09-24 03:38:44 +00002101 // Message send functions.
Daniel Dunbar14c80b72008-08-23 09:25:55 +00002102
2103 std::vector<const llvm::Type*> Params;
2104 Params.push_back(ObjectPtrTy);
2105 Params.push_back(SelectorPtrTy);
2106 MessageSendFn = llvm::Function::Create(llvm::FunctionType::get(ObjectPtrTy,
2107 Params,
2108 true),
2109 llvm::Function::ExternalLinkage,
2110 "objc_msgSend",
2111 &CGM.getModule());
2112
2113 Params.clear();
2114 Params.push_back(Int8PtrTy);
2115 Params.push_back(ObjectPtrTy);
2116 Params.push_back(SelectorPtrTy);
2117 MessageSendStretFn =
2118 llvm::Function::Create(llvm::FunctionType::get(llvm::Type::VoidTy,
2119 Params,
2120 true),
2121 llvm::Function::ExternalLinkage,
2122 "objc_msgSend_stret",
2123 &CGM.getModule());
2124
2125 Params.clear();
2126 Params.push_back(SuperPtrTy);
2127 Params.push_back(SelectorPtrTy);
2128 MessageSendSuperFn =
2129 llvm::Function::Create(llvm::FunctionType::get(ObjectPtrTy,
2130 Params,
2131 true),
2132 llvm::Function::ExternalLinkage,
2133 "objc_msgSendSuper",
2134 &CGM.getModule());
2135
2136 Params.clear();
2137 Params.push_back(Int8PtrTy);
2138 Params.push_back(SuperPtrTy);
2139 Params.push_back(SelectorPtrTy);
2140 MessageSendSuperStretFn =
2141 llvm::Function::Create(llvm::FunctionType::get(llvm::Type::VoidTy,
2142 Params,
2143 true),
2144 llvm::Function::ExternalLinkage,
2145 "objc_msgSendSuper_stret",
2146 &CGM.getModule());
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002147
Daniel Dunbar49f66022008-09-24 03:38:44 +00002148 // Property manipulation functions.
2149
2150 Params.clear();
2151 Params.push_back(ObjectPtrTy);
2152 Params.push_back(SelectorPtrTy);
2153 Params.push_back(LongTy);
2154 Params.push_back(Types.ConvertTypeForMem(Ctx.BoolTy));
2155 GetPropertyFn =
2156 llvm::Function::Create(llvm::FunctionType::get(ObjectPtrTy,
2157 Params,
2158 false),
2159 llvm::Function::ExternalLinkage,
2160 "objc_getProperty",
2161 &CGM.getModule());
2162
2163 Params.clear();
2164 Params.push_back(ObjectPtrTy);
2165 Params.push_back(SelectorPtrTy);
2166 Params.push_back(LongTy);
Daniel Dunbar86957eb2008-09-24 06:32:09 +00002167 Params.push_back(ObjectPtrTy);
Daniel Dunbar49f66022008-09-24 03:38:44 +00002168 Params.push_back(Types.ConvertTypeForMem(Ctx.BoolTy));
2169 Params.push_back(Types.ConvertTypeForMem(Ctx.BoolTy));
2170 SetPropertyFn =
Daniel Dunbar86957eb2008-09-24 06:32:09 +00002171 llvm::Function::Create(llvm::FunctionType::get(llvm::Type::VoidTy,
Daniel Dunbar49f66022008-09-24 03:38:44 +00002172 Params,
2173 false),
2174 llvm::Function::ExternalLinkage,
2175 "objc_setProperty",
2176 &CGM.getModule());
2177
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002178 // Enumeration mutation.
Daniel Dunbar49f66022008-09-24 03:38:44 +00002179
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002180 Params.clear();
2181 Params.push_back(ObjectPtrTy);
2182 EnumerationMutationFn =
2183 llvm::Function::Create(llvm::FunctionType::get(llvm::Type::VoidTy,
2184 Params,
2185 false),
2186 llvm::Function::ExternalLinkage,
2187 "objc_enumerationMutation",
2188 &CGM.getModule());
Anders Carlsson124526b2008-09-09 10:10:21 +00002189
2190 // FIXME: This is the size of the setjmp buffer and should be
2191 // target specific. 18 is what's used on 32-bit X86.
2192 uint64_t SetJmpBufferSize = 18;
2193
2194 // Exceptions
2195 const llvm::Type *StackPtrTy =
Daniel Dunbar10004912008-09-27 06:32:25 +00002196 llvm::ArrayType::get(llvm::PointerType::getUnqual(llvm::Type::Int8Ty), 4);
Anders Carlsson124526b2008-09-09 10:10:21 +00002197
2198 ExceptionDataTy =
2199 llvm::StructType::get(llvm::ArrayType::get(llvm::Type::Int32Ty,
2200 SetJmpBufferSize),
2201 StackPtrTy, NULL);
2202 CGM.getModule().addTypeName("struct._objc_exception_data",
2203 ExceptionDataTy);
2204
2205 Params.clear();
2206 Params.push_back(ObjectPtrTy);
2207 ExceptionThrowFn =
2208 llvm::Function::Create(llvm::FunctionType::get(llvm::Type::VoidTy,
2209 Params,
2210 false),
2211 llvm::Function::ExternalLinkage,
2212 "objc_exception_throw",
2213 &CGM.getModule());
2214
2215 Params.clear();
2216 Params.push_back(llvm::PointerType::getUnqual(ExceptionDataTy));
2217 ExceptionTryEnterFn =
2218 llvm::Function::Create(llvm::FunctionType::get(llvm::Type::VoidTy,
2219 Params,
2220 false),
2221 llvm::Function::ExternalLinkage,
2222 "objc_exception_try_enter",
2223 &CGM.getModule());
2224 ExceptionTryExitFn =
2225 llvm::Function::Create(llvm::FunctionType::get(llvm::Type::VoidTy,
2226 Params,
2227 false),
2228 llvm::Function::ExternalLinkage,
2229 "objc_exception_try_exit",
2230 &CGM.getModule());
2231 ExceptionExtractFn =
2232 llvm::Function::Create(llvm::FunctionType::get(ObjectPtrTy,
2233 Params,
2234 false),
2235 llvm::Function::ExternalLinkage,
2236 "objc_exception_extract",
2237 &CGM.getModule());
2238
2239 Params.clear();
2240 Params.push_back(ClassPtrTy);
2241 Params.push_back(ObjectPtrTy);
2242 ExceptionMatchFn =
2243 llvm::Function::Create(llvm::FunctionType::get(llvm::Type::Int32Ty,
2244 Params,
2245 false),
2246 llvm::Function::ExternalLinkage,
2247 "objc_exception_match",
2248 &CGM.getModule());
2249
2250 Params.clear();
2251 Params.push_back(llvm::PointerType::getUnqual(llvm::Type::Int32Ty));
2252 SetJmpFn =
2253 llvm::Function::Create(llvm::FunctionType::get(llvm::Type::Int32Ty,
2254 Params,
2255 false),
2256 llvm::Function::ExternalLinkage,
2257 "_setjmp",
2258 &CGM.getModule());
2259
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00002260}
2261
2262ObjCTypesHelper::~ObjCTypesHelper() {
2263}
2264
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +00002265llvm::Constant *ObjCTypesHelper::getMessageSendFn(bool IsSuper, bool IsStret) {
Daniel Dunbar3913f182008-09-09 23:48:28 +00002266 if (IsStret) {
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +00002267 return IsSuper ? MessageSendSuperStretFn : MessageSendStretFn;
Daniel Dunbar662174c82008-08-29 17:28:43 +00002268 } else { // FIXME: floating point?
Daniel Dunbar62d5c1b2008-09-10 07:00:50 +00002269 return IsSuper ? MessageSendSuperFn : MessageSendFn;
Daniel Dunbar259d93d2008-08-12 03:39:23 +00002270 }
Daniel Dunbare8b470d2008-08-23 04:28:29 +00002271}
2272
Daniel Dunbarbbce49b2008-08-12 00:12:39 +00002273/* *** */
2274
Daniel Dunbar6efc0c52008-08-13 03:21:16 +00002275CodeGen::CGObjCRuntime *
2276CodeGen::CreateMacObjCRuntime(CodeGen::CodeGenModule &CGM) {
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00002277 return new CGObjCMac(CGM);
2278}