blob: 245c8914b1637051365818899647fc1dc9241ec4 [file] [log] [blame]
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001//===------- CGObjCGNU.cpp - Emit LLVM Code from ASTs for a Module --------===//
Chris Lattner0f984262008-03-01 08:50:34 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Chris Lattnerfc8f0e12011-04-15 05:22:18 +000010// This provides Objective-C code generation targeting the GNU runtime. The
Anton Korobeynikov20ff3102008-06-01 14:13:53 +000011// class in this file generates structures used by the GNU Objective-C runtime
12// library. These structures are defined in objc/objc.h and objc/objc-api.h in
13// the GNU runtime distribution.
Chris Lattner0f984262008-03-01 08:50:34 +000014//
15//===----------------------------------------------------------------------===//
16
17#include "CGObjCRuntime.h"
John McCall36f893c2011-01-28 11:13:47 +000018#include "CGCleanup.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000019#include "CodeGenFunction.h"
20#include "CodeGenModule.h"
Chris Lattnerdce14062008-06-26 04:19:03 +000021#include "clang/AST/ASTContext.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000022#include "clang/AST/Decl.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000023#include "clang/AST/DeclObjC.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000024#include "clang/AST/RecordLayout.h"
Chris Lattner16f00492009-04-26 01:32:48 +000025#include "clang/AST/StmtObjC.h"
David Chisnall9f6614e2011-03-23 16:36:54 +000026#include "clang/Basic/FileManager.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000027#include "clang/Basic/SourceManager.h"
Chris Lattner0f984262008-03-01 08:50:34 +000028#include "llvm/ADT/SmallVector.h"
Anton Korobeynikov20ff3102008-06-01 14:13:53 +000029#include "llvm/ADT/StringMap.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000030#include "llvm/DataLayout.h"
31#include "llvm/Intrinsics.h"
32#include "llvm/LLVMContext.h"
33#include "llvm/Module.h"
David Chisnall80558d22011-03-20 21:35:39 +000034#include "llvm/Support/CallSite.h"
Daniel Dunbar7ded7f42008-08-15 22:20:32 +000035#include "llvm/Support/Compiler.h"
Chris Lattner5f9e2722011-07-23 10:55:15 +000036#include <cstdarg>
Chris Lattnere160c9b2009-01-27 05:06:01 +000037
38
Chris Lattnerdce14062008-06-26 04:19:03 +000039using namespace clang;
Daniel Dunbar46f45b92008-09-09 01:06:48 +000040using namespace CodeGen;
Anton Korobeynikov20ff3102008-06-01 14:13:53 +000041
Chris Lattner0f984262008-03-01 08:50:34 +000042
Chris Lattner0f984262008-03-01 08:50:34 +000043namespace {
David Chisnall81a65f52011-03-26 11:48:37 +000044/// Class that lazily initialises the runtime function. Avoids inserting the
45/// types and the function declaration into a module if they're not used, and
46/// avoids constructing the type more than once if it's used more than once.
David Chisnall9f6614e2011-03-23 16:36:54 +000047class LazyRuntimeFunction {
48 CodeGenModule *CGM;
Chris Lattner9cbe4f02011-07-09 17:41:47 +000049 std::vector<llvm::Type*> ArgTys;
David Chisnall9f6614e2011-03-23 16:36:54 +000050 const char *FunctionName;
David Chisnall789ecde2011-05-23 22:33:28 +000051 llvm::Constant *Function;
David Chisnall9f6614e2011-03-23 16:36:54 +000052 public:
David Chisnall81a65f52011-03-26 11:48:37 +000053 /// Constructor leaves this class uninitialized, because it is intended to
54 /// be used as a field in another class and not all of the types that are
55 /// used as arguments will necessarily be available at construction time.
David Chisnall9f6614e2011-03-23 16:36:54 +000056 LazyRuntimeFunction() : CGM(0), FunctionName(0), Function(0) {}
57
David Chisnall81a65f52011-03-26 11:48:37 +000058 /// Initialises the lazy function with the name, return type, and the types
59 /// of the arguments.
David Chisnall9f6614e2011-03-23 16:36:54 +000060 END_WITH_NULL
61 void init(CodeGenModule *Mod, const char *name,
Chris Lattner9cbe4f02011-07-09 17:41:47 +000062 llvm::Type *RetTy, ...) {
David Chisnall9f6614e2011-03-23 16:36:54 +000063 CGM =Mod;
64 FunctionName = name;
65 Function = 0;
David Chisnall9735ca62011-03-25 11:57:33 +000066 ArgTys.clear();
David Chisnall9f6614e2011-03-23 16:36:54 +000067 va_list Args;
68 va_start(Args, RetTy);
Chris Lattner9cbe4f02011-07-09 17:41:47 +000069 while (llvm::Type *ArgTy = va_arg(Args, llvm::Type*))
David Chisnall9f6614e2011-03-23 16:36:54 +000070 ArgTys.push_back(ArgTy);
71 va_end(Args);
72 // Push the return type on at the end so we can pop it off easily
73 ArgTys.push_back(RetTy);
74 }
David Chisnall81a65f52011-03-26 11:48:37 +000075 /// Overloaded cast operator, allows the class to be implicitly cast to an
76 /// LLVM constant.
David Chisnall789ecde2011-05-23 22:33:28 +000077 operator llvm::Constant*() {
David Chisnall9f6614e2011-03-23 16:36:54 +000078 if (!Function) {
David Chisnall9735ca62011-03-25 11:57:33 +000079 if (0 == FunctionName) return 0;
80 // We put the return type on the end of the vector, so pop it back off
Chris Lattner2acc6e32011-07-18 04:24:23 +000081 llvm::Type *RetTy = ArgTys.back();
David Chisnall9f6614e2011-03-23 16:36:54 +000082 ArgTys.pop_back();
83 llvm::FunctionType *FTy = llvm::FunctionType::get(RetTy, ArgTys, false);
84 Function =
David Chisnall789ecde2011-05-23 22:33:28 +000085 cast<llvm::Constant>(CGM->CreateRuntimeFunction(FTy, FunctionName));
David Chisnall9735ca62011-03-25 11:57:33 +000086 // We won't need to use the types again, so we may as well clean up the
87 // vector now
David Chisnall9f6614e2011-03-23 16:36:54 +000088 ArgTys.resize(0);
89 }
90 return Function;
91 }
David Chisnall789ecde2011-05-23 22:33:28 +000092 operator llvm::Function*() {
David Chisnall5f0bcc42011-05-23 23:15:11 +000093 return cast<llvm::Function>((llvm::Constant*)*this);
David Chisnall789ecde2011-05-23 22:33:28 +000094 }
David Chisnall5f0bcc42011-05-23 23:15:11 +000095
David Chisnall9f6614e2011-03-23 16:36:54 +000096};
97
98
David Chisnall81a65f52011-03-26 11:48:37 +000099/// GNU Objective-C runtime code generation. This class implements the parts of
John McCallf7226fb2012-07-12 02:07:58 +0000100/// Objective-C support that are specific to the GNU family of runtimes (GCC,
101/// GNUstep and ObjFW).
David Chisnall9f6614e2011-03-23 16:36:54 +0000102class CGObjCGNU : public CGObjCRuntime {
David Chisnallc7ef4622011-03-23 22:52:06 +0000103protected:
David Chisnall81a65f52011-03-26 11:48:37 +0000104 /// The LLVM module into which output is inserted
Chris Lattner0f984262008-03-01 08:50:34 +0000105 llvm::Module &TheModule;
David Chisnall81a65f52011-03-26 11:48:37 +0000106 /// strut objc_super. Used for sending messages to super. This structure
107 /// contains the receiver (object) and the expected class.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000108 llvm::StructType *ObjCSuperTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000109 /// struct objc_super*. The type of the argument to the superclass message
110 /// lookup functions.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000111 llvm::PointerType *PtrToObjCSuperTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000112 /// LLVM type for selectors. Opaque pointer (i8*) unless a header declaring
113 /// SEL is included in a header somewhere, in which case it will be whatever
114 /// type is declared in that header, most likely {i8*, i8*}.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000115 llvm::PointerType *SelectorTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000116 /// LLVM i8 type. Cached here to avoid repeatedly getting it in all of the
117 /// places where it's used
Chris Lattner2acc6e32011-07-18 04:24:23 +0000118 llvm::IntegerType *Int8Ty;
David Chisnall81a65f52011-03-26 11:48:37 +0000119 /// Pointer to i8 - LLVM type of char*, for all of the places where the
120 /// runtime needs to deal with C strings.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000121 llvm::PointerType *PtrToInt8Ty;
David Chisnall81a65f52011-03-26 11:48:37 +0000122 /// Instance Method Pointer type. This is a pointer to a function that takes,
123 /// at a minimum, an object and a selector, and is the generic type for
124 /// Objective-C methods. Due to differences between variadic / non-variadic
125 /// calling conventions, it must always be cast to the correct type before
126 /// actually being used.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000127 llvm::PointerType *IMPTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000128 /// Type of an untyped Objective-C object. Clang treats id as a built-in type
129 /// when compiling Objective-C code, so this may be an opaque pointer (i8*),
130 /// but if the runtime header declaring it is included then it may be a
131 /// pointer to a structure.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000132 llvm::PointerType *IdTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000133 /// Pointer to a pointer to an Objective-C object. Used in the new ABI
134 /// message lookup function and some GC-related functions.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000135 llvm::PointerType *PtrToIdTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000136 /// The clang type of id. Used when using the clang CGCall infrastructure to
137 /// call Objective-C methods.
John McCallead608a2010-02-26 00:48:12 +0000138 CanQualType ASTIdTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000139 /// LLVM type for C int type.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000140 llvm::IntegerType *IntTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000141 /// LLVM type for an opaque pointer. This is identical to PtrToInt8Ty, but is
142 /// used in the code to document the difference between i8* meaning a pointer
143 /// to a C string and i8* meaning a pointer to some opaque type.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000144 llvm::PointerType *PtrTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000145 /// LLVM type for C long type. The runtime uses this in a lot of places where
146 /// it should be using intptr_t, but we can't fix this without breaking
147 /// compatibility with GCC...
Jay Foadef6de3d2011-07-11 09:56:20 +0000148 llvm::IntegerType *LongTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000149 /// LLVM type for C size_t. Used in various runtime data structures.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000150 llvm::IntegerType *SizeTy;
David Chisnall49de5282011-10-08 08:54:36 +0000151 /// LLVM type for C intptr_t.
152 llvm::IntegerType *IntPtrTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000153 /// LLVM type for C ptrdiff_t. Mainly used in property accessor functions.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000154 llvm::IntegerType *PtrDiffTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000155 /// LLVM type for C int*. Used for GCC-ABI-compatible non-fragile instance
156 /// variables.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000157 llvm::PointerType *PtrToIntTy;
David Chisnall81a65f52011-03-26 11:48:37 +0000158 /// LLVM type for Objective-C BOOL type.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000159 llvm::Type *BoolTy;
David Chisnall917b28b2011-10-04 15:35:30 +0000160 /// 32-bit integer type, to save us needing to look it up every time it's used.
161 llvm::IntegerType *Int32Ty;
162 /// 64-bit integer type, to save us needing to look it up every time it's used.
163 llvm::IntegerType *Int64Ty;
David Chisnall81a65f52011-03-26 11:48:37 +0000164 /// Metadata kind used to tie method lookups to message sends. The GNUstep
165 /// runtime provides some LLVM passes that can use this to do things like
166 /// automatic IMP caching and speculative inlining.
David Chisnallc7ef4622011-03-23 22:52:06 +0000167 unsigned msgSendMDKind;
David Chisnall81a65f52011-03-26 11:48:37 +0000168 /// Helper function that generates a constant string and returns a pointer to
169 /// the start of the string. The result of this function can be used anywhere
170 /// where the C code specifies const char*.
David Chisnall9735ca62011-03-25 11:57:33 +0000171 llvm::Constant *MakeConstantString(const std::string &Str,
172 const std::string &Name="") {
173 llvm::Constant *ConstStr = CGM.GetAddrOfConstantCString(Str, Name.c_str());
Jay Foada5c04342011-07-21 14:31:17 +0000174 return llvm::ConstantExpr::getGetElementPtr(ConstStr, Zeros);
David Chisnall9735ca62011-03-25 11:57:33 +0000175 }
David Chisnall81a65f52011-03-26 11:48:37 +0000176 /// Emits a linkonce_odr string, whose name is the prefix followed by the
177 /// string value. This allows the linker to combine the strings between
178 /// different modules. Used for EH typeinfo names, selector strings, and a
179 /// few other things.
David Chisnall9735ca62011-03-25 11:57:33 +0000180 llvm::Constant *ExportUniqueString(const std::string &Str,
181 const std::string prefix) {
182 std::string name = prefix + Str;
183 llvm::Constant *ConstStr = TheModule.getGlobalVariable(name);
184 if (!ConstStr) {
Chris Lattner94010692012-02-05 02:30:40 +0000185 llvm::Constant *value = llvm::ConstantDataArray::getString(VMContext,Str);
David Chisnall9735ca62011-03-25 11:57:33 +0000186 ConstStr = new llvm::GlobalVariable(TheModule, value->getType(), true,
187 llvm::GlobalValue::LinkOnceODRLinkage, value, prefix + Str);
188 }
Jay Foada5c04342011-07-21 14:31:17 +0000189 return llvm::ConstantExpr::getGetElementPtr(ConstStr, Zeros);
David Chisnall9735ca62011-03-25 11:57:33 +0000190 }
David Chisnall81a65f52011-03-26 11:48:37 +0000191 /// Generates a global structure, initialized by the elements in the vector.
192 /// The element types must match the types of the structure elements in the
193 /// first argument.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000194 llvm::GlobalVariable *MakeGlobal(llvm::StructType *Ty,
David Chisnall917b28b2011-10-04 15:35:30 +0000195 llvm::ArrayRef<llvm::Constant*> V,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000196 StringRef Name="",
David Chisnall9735ca62011-03-25 11:57:33 +0000197 llvm::GlobalValue::LinkageTypes linkage
198 =llvm::GlobalValue::InternalLinkage) {
199 llvm::Constant *C = llvm::ConstantStruct::get(Ty, V);
200 return new llvm::GlobalVariable(TheModule, Ty, false,
201 linkage, C, Name);
202 }
David Chisnall81a65f52011-03-26 11:48:37 +0000203 /// Generates a global array. The vector must contain the same number of
204 /// elements that the array type declares, of the type specified as the array
205 /// element type.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000206 llvm::GlobalVariable *MakeGlobal(llvm::ArrayType *Ty,
David Chisnall917b28b2011-10-04 15:35:30 +0000207 llvm::ArrayRef<llvm::Constant*> V,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000208 StringRef Name="",
David Chisnall9735ca62011-03-25 11:57:33 +0000209 llvm::GlobalValue::LinkageTypes linkage
210 =llvm::GlobalValue::InternalLinkage) {
211 llvm::Constant *C = llvm::ConstantArray::get(Ty, V);
212 return new llvm::GlobalVariable(TheModule, Ty, false,
213 linkage, C, Name);
214 }
David Chisnall81a65f52011-03-26 11:48:37 +0000215 /// Generates a global array, inferring the array type from the specified
216 /// element type and the size of the initialiser.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000217 llvm::GlobalVariable *MakeGlobalArray(llvm::Type *Ty,
David Chisnall917b28b2011-10-04 15:35:30 +0000218 llvm::ArrayRef<llvm::Constant*> V,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000219 StringRef Name="",
David Chisnall9735ca62011-03-25 11:57:33 +0000220 llvm::GlobalValue::LinkageTypes linkage
221 =llvm::GlobalValue::InternalLinkage) {
222 llvm::ArrayType *ArrayTy = llvm::ArrayType::get(Ty, V.size());
223 return MakeGlobal(ArrayTy, V, Name, linkage);
224 }
David Chisnall891dac72012-10-16 15:11:55 +0000225 /// Returns a property name and encoding string.
226 llvm::Constant *MakePropertyEncodingString(const ObjCPropertyDecl *PD,
227 const Decl *Container) {
228 ObjCRuntime R = CGM.getLangOpts().ObjCRuntime;
229 if ((R.getKind() == ObjCRuntime::GNUstep) &&
230 (R.getVersion() >= VersionTuple(1, 6))) {
231 std::string NameAndAttributes;
232 std::string TypeStr;
233 CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container, TypeStr);
234 NameAndAttributes += '\0';
235 NameAndAttributes += TypeStr.length() + 3;
236 NameAndAttributes += TypeStr;
237 NameAndAttributes += '\0';
238 NameAndAttributes += PD->getNameAsString();
239 return llvm::ConstantExpr::getGetElementPtr(
240 CGM.GetAddrOfConstantString(NameAndAttributes), Zeros);
241 }
242 return MakeConstantString(PD->getNameAsString());
243 }
David Chisnall81a65f52011-03-26 11:48:37 +0000244 /// Ensures that the value has the required type, by inserting a bitcast if
245 /// required. This function lets us avoid inserting bitcasts that are
246 /// redundant.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000247 llvm::Value* EnforceType(CGBuilderTy B, llvm::Value *V, llvm::Type *Ty){
David Chisnallc7ef4622011-03-23 22:52:06 +0000248 if (V->getType() == Ty) return V;
249 return B.CreateBitCast(V, Ty);
250 }
251 // Some zeros used for GEPs in lots of places.
252 llvm::Constant *Zeros[2];
David Chisnall81a65f52011-03-26 11:48:37 +0000253 /// Null pointer value. Mainly used as a terminator in various arrays.
David Chisnallc7ef4622011-03-23 22:52:06 +0000254 llvm::Constant *NULLPtr;
David Chisnall81a65f52011-03-26 11:48:37 +0000255 /// LLVM context.
David Chisnallc7ef4622011-03-23 22:52:06 +0000256 llvm::LLVMContext &VMContext;
257private:
David Chisnall81a65f52011-03-26 11:48:37 +0000258 /// Placeholder for the class. Lots of things refer to the class before we've
259 /// actually emitted it. We use this alias as a placeholder, and then replace
260 /// it with a pointer to the class structure before finally emitting the
261 /// module.
Daniel Dunbar5efccb12009-05-04 15:31:17 +0000262 llvm::GlobalAlias *ClassPtrAlias;
David Chisnall81a65f52011-03-26 11:48:37 +0000263 /// Placeholder for the metaclass. Lots of things refer to the class before
264 /// we've / actually emitted it. We use this alias as a placeholder, and then
265 /// replace / it with a pointer to the metaclass structure before finally
266 /// emitting the / module.
Daniel Dunbar5efccb12009-05-04 15:31:17 +0000267 llvm::GlobalAlias *MetaClassPtrAlias;
David Chisnall81a65f52011-03-26 11:48:37 +0000268 /// All of the classes that have been generated for this compilation units.
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000269 std::vector<llvm::Constant*> Classes;
David Chisnall81a65f52011-03-26 11:48:37 +0000270 /// All of the categories that have been generated for this compilation units.
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000271 std::vector<llvm::Constant*> Categories;
David Chisnall81a65f52011-03-26 11:48:37 +0000272 /// All of the Objective-C constant strings that have been generated for this
273 /// compilation units.
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000274 std::vector<llvm::Constant*> ConstantStrings;
David Chisnall81a65f52011-03-26 11:48:37 +0000275 /// Map from string values to Objective-C constant strings in the output.
276 /// Used to prevent emitting Objective-C strings more than once. This should
277 /// not be required at all - CodeGenModule should manage this list.
David Chisnall48272a02010-01-27 12:49:23 +0000278 llvm::StringMap<llvm::Constant*> ObjCStrings;
David Chisnall81a65f52011-03-26 11:48:37 +0000279 /// All of the protocols that have been declared.
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000280 llvm::StringMap<llvm::Constant*> ExistingProtocols;
David Chisnall81a65f52011-03-26 11:48:37 +0000281 /// For each variant of a selector, we store the type encoding and a
282 /// placeholder value. For an untyped selector, the type will be the empty
283 /// string. Selector references are all done via the module's selector table,
284 /// so we create an alias as a placeholder and then replace it with the real
285 /// value later.
David Chisnall9f6614e2011-03-23 16:36:54 +0000286 typedef std::pair<std::string, llvm::GlobalAlias*> TypedSelector;
David Chisnall81a65f52011-03-26 11:48:37 +0000287 /// Type of the selector map. This is roughly equivalent to the structure
288 /// used in the GNUstep runtime, which maintains a list of all of the valid
289 /// types for a selector in a table.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000290 typedef llvm::DenseMap<Selector, SmallVector<TypedSelector, 2> >
David Chisnall9f6614e2011-03-23 16:36:54 +0000291 SelectorMap;
David Chisnall81a65f52011-03-26 11:48:37 +0000292 /// A map from selectors to selector types. This allows us to emit all
293 /// selectors of the same name and type together.
David Chisnall9f6614e2011-03-23 16:36:54 +0000294 SelectorMap SelectorTable;
295
David Chisnall81a65f52011-03-26 11:48:37 +0000296 /// Selectors related to memory management. When compiling in GC mode, we
297 /// omit these.
David Chisnallef6e0f32010-02-03 15:59:02 +0000298 Selector RetainSel, ReleaseSel, AutoreleaseSel;
David Chisnall81a65f52011-03-26 11:48:37 +0000299 /// Runtime functions used for memory management in GC mode. Note that clang
300 /// supports code generation for calling these functions, but neither GNU
301 /// runtime actually supports this API properly yet.
David Chisnall9f6614e2011-03-23 16:36:54 +0000302 LazyRuntimeFunction IvarAssignFn, StrongCastAssignFn, MemMoveFn, WeakReadFn,
303 WeakAssignFn, GlobalAssignFn;
David Chisnall9f6614e2011-03-23 16:36:54 +0000304
David Chisnall29254f42012-01-31 18:59:20 +0000305 typedef std::pair<std::string, std::string> ClassAliasPair;
306 /// All classes that have aliases set for them.
307 std::vector<ClassAliasPair> ClassAliases;
308
David Chisnall9735ca62011-03-25 11:57:33 +0000309protected:
David Chisnall81a65f52011-03-26 11:48:37 +0000310 /// Function used for throwing Objective-C exceptions.
David Chisnall9f6614e2011-03-23 16:36:54 +0000311 LazyRuntimeFunction ExceptionThrowFn;
James Dennett809d1be2012-06-13 22:07:09 +0000312 /// Function used for rethrowing exceptions, used at the end of \@finally or
313 /// \@synchronize blocks.
David Chisnall9735ca62011-03-25 11:57:33 +0000314 LazyRuntimeFunction ExceptionReThrowFn;
David Chisnall81a65f52011-03-26 11:48:37 +0000315 /// Function called when entering a catch function. This is required for
316 /// differentiating Objective-C exceptions and foreign exceptions.
David Chisnall9735ca62011-03-25 11:57:33 +0000317 LazyRuntimeFunction EnterCatchFn;
David Chisnall81a65f52011-03-26 11:48:37 +0000318 /// Function called when exiting from a catch block. Used to do exception
319 /// cleanup.
David Chisnall9735ca62011-03-25 11:57:33 +0000320 LazyRuntimeFunction ExitCatchFn;
James Dennett809d1be2012-06-13 22:07:09 +0000321 /// Function called when entering an \@synchronize block. Acquires the lock.
David Chisnall9f6614e2011-03-23 16:36:54 +0000322 LazyRuntimeFunction SyncEnterFn;
James Dennett809d1be2012-06-13 22:07:09 +0000323 /// Function called when exiting an \@synchronize block. Releases the lock.
David Chisnall9f6614e2011-03-23 16:36:54 +0000324 LazyRuntimeFunction SyncExitFn;
325
David Chisnall9735ca62011-03-25 11:57:33 +0000326private:
327
David Chisnall81a65f52011-03-26 11:48:37 +0000328 /// Function called if fast enumeration detects that the collection is
329 /// modified during the update.
David Chisnall9f6614e2011-03-23 16:36:54 +0000330 LazyRuntimeFunction EnumerationMutationFn;
David Chisnall81a65f52011-03-26 11:48:37 +0000331 /// Function for implementing synthesized property getters that return an
332 /// object.
David Chisnall9f6614e2011-03-23 16:36:54 +0000333 LazyRuntimeFunction GetPropertyFn;
David Chisnall81a65f52011-03-26 11:48:37 +0000334 /// Function for implementing synthesized property setters that return an
335 /// object.
David Chisnall9f6614e2011-03-23 16:36:54 +0000336 LazyRuntimeFunction SetPropertyFn;
David Chisnall81a65f52011-03-26 11:48:37 +0000337 /// Function used for non-object declared property getters.
David Chisnall9f6614e2011-03-23 16:36:54 +0000338 LazyRuntimeFunction GetStructPropertyFn;
David Chisnall81a65f52011-03-26 11:48:37 +0000339 /// Function used for non-object declared property setters.
David Chisnall9f6614e2011-03-23 16:36:54 +0000340 LazyRuntimeFunction SetStructPropertyFn;
341
David Chisnall81a65f52011-03-26 11:48:37 +0000342 /// The version of the runtime that this class targets. Must match the
343 /// version in the runtime.
David Chisnalla2120032011-05-22 22:37:08 +0000344 int RuntimeVersion;
David Chisnall81a65f52011-03-26 11:48:37 +0000345 /// The version of the protocol class. Used to differentiate between ObjC1
346 /// and ObjC2 protocols. Objective-C 1 protocols can not contain optional
347 /// components and can not contain declared properties. We always emit
348 /// Objective-C 2 property structures, but we have to pretend that they're
349 /// Objective-C 1 property structures when targeting the GCC runtime or it
350 /// will abort.
David Chisnall9f6614e2011-03-23 16:36:54 +0000351 const int ProtocolVersion;
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000352private:
David Chisnall81a65f52011-03-26 11:48:37 +0000353 /// Generates an instance variable list structure. This is a structure
354 /// containing a size and an array of structures containing instance variable
355 /// metadata. This is used purely for introspection in the fragile ABI. In
356 /// the non-fragile ABI, it's used for instance variable fixup.
Bill Wendling795b1002012-02-22 09:30:11 +0000357 llvm::Constant *GenerateIvarList(ArrayRef<llvm::Constant *> IvarNames,
358 ArrayRef<llvm::Constant *> IvarTypes,
359 ArrayRef<llvm::Constant *> IvarOffsets);
David Chisnall81a65f52011-03-26 11:48:37 +0000360 /// Generates a method list structure. This is a structure containing a size
361 /// and an array of structures containing method metadata.
362 ///
363 /// This structure is used by both classes and categories, and contains a next
364 /// pointer allowing them to be chained together in a linked list.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000365 llvm::Constant *GenerateMethodList(const StringRef &ClassName,
366 const StringRef &CategoryName,
Bill Wendling795b1002012-02-22 09:30:11 +0000367 ArrayRef<Selector> MethodSels,
368 ArrayRef<llvm::Constant *> MethodTypes,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000369 bool isClassMethodList);
James Dennett809d1be2012-06-13 22:07:09 +0000370 /// Emits an empty protocol. This is used for \@protocol() where no protocol
David Chisnall81a65f52011-03-26 11:48:37 +0000371 /// is found. The runtime will (hopefully) fix up the pointer to refer to the
372 /// real protocol.
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +0000373 llvm::Constant *GenerateEmptyProtocol(const std::string &ProtocolName);
David Chisnall81a65f52011-03-26 11:48:37 +0000374 /// Generates a list of property metadata structures. This follows the same
375 /// pattern as method and instance variable metadata lists.
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +0000376 llvm::Constant *GeneratePropertyList(const ObjCImplementationDecl *OID,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000377 SmallVectorImpl<Selector> &InstanceMethodSels,
378 SmallVectorImpl<llvm::Constant*> &InstanceMethodTypes);
David Chisnall81a65f52011-03-26 11:48:37 +0000379 /// Generates a list of referenced protocols. Classes, categories, and
380 /// protocols all use this structure.
Bill Wendling795b1002012-02-22 09:30:11 +0000381 llvm::Constant *GenerateProtocolList(ArrayRef<std::string> Protocols);
David Chisnall81a65f52011-03-26 11:48:37 +0000382 /// To ensure that all protocols are seen by the runtime, we add a category on
383 /// a class defined in the runtime, declaring no methods, but adopting the
384 /// protocols. This is a horribly ugly hack, but it allows us to collect all
385 /// of the protocols without changing the ABI.
Dmitri Gribenkoc4a77902012-11-15 14:28:07 +0000386 void GenerateProtocolHolderCategory();
David Chisnall81a65f52011-03-26 11:48:37 +0000387 /// Generates a class structure.
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000388 llvm::Constant *GenerateClassStructure(
389 llvm::Constant *MetaClass,
390 llvm::Constant *SuperClass,
391 unsigned info,
Chris Lattnerd002cc62008-06-26 04:47:04 +0000392 const char *Name,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000393 llvm::Constant *Version,
394 llvm::Constant *InstanceSize,
395 llvm::Constant *IVars,
396 llvm::Constant *Methods,
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +0000397 llvm::Constant *Protocols,
398 llvm::Constant *IvarOffsets,
David Chisnall8c757f92010-04-28 14:29:56 +0000399 llvm::Constant *Properties,
David Chisnall917b28b2011-10-04 15:35:30 +0000400 llvm::Constant *StrongIvarBitmap,
401 llvm::Constant *WeakIvarBitmap,
David Chisnall8c757f92010-04-28 14:29:56 +0000402 bool isMeta=false);
David Chisnall81a65f52011-03-26 11:48:37 +0000403 /// Generates a method list. This is used by protocols to define the required
404 /// and optional methods.
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000405 llvm::Constant *GenerateProtocolMethodList(
Bill Wendling795b1002012-02-22 09:30:11 +0000406 ArrayRef<llvm::Constant *> MethodNames,
407 ArrayRef<llvm::Constant *> MethodTypes);
David Chisnall81a65f52011-03-26 11:48:37 +0000408 /// Returns a selector with the specified type encoding. An empty string is
409 /// used to return an untyped selector (with the types field set to NULL).
David Chisnall9f6614e2011-03-23 16:36:54 +0000410 llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
411 const std::string &TypeEncoding, bool lval);
David Chisnall81a65f52011-03-26 11:48:37 +0000412 /// Returns the variable used to store the offset of an instance variable.
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +0000413 llvm::GlobalVariable *ObjCIvarOffsetVariable(const ObjCInterfaceDecl *ID,
414 const ObjCIvarDecl *Ivar);
David Chisnall81a65f52011-03-26 11:48:37 +0000415 /// Emits a reference to a class. This allows the linker to object if there
416 /// is no class of the matching name.
John McCallf7226fb2012-07-12 02:07:58 +0000417protected:
Chris Lattner2a8e4e12009-06-15 01:09:11 +0000418 void EmitClassRef(const std::string &className);
David Chisnallc7aed3b2011-06-29 13:16:41 +0000419 /// Emits a pointer to the named class
John McCallf7226fb2012-07-12 02:07:58 +0000420 virtual llvm::Value *GetClassNamed(CGBuilderTy &Builder,
421 const std::string &Name, bool isWeak);
David Chisnall81a65f52011-03-26 11:48:37 +0000422 /// Looks up the method for sending a message to the specified object. This
423 /// mechanism differs between the GCC and GNU runtimes, so this method must be
424 /// overridden in subclasses.
David Chisnallc7ef4622011-03-23 22:52:06 +0000425 virtual llvm::Value *LookupIMP(CodeGenFunction &CGF,
426 llvm::Value *&Receiver,
427 llvm::Value *cmd,
428 llvm::MDNode *node) = 0;
David Chisnall917b28b2011-10-04 15:35:30 +0000429 /// Looks up the method for sending a message to a superclass. This
430 /// mechanism differs between the GCC and GNU runtimes, so this method must
431 /// be overridden in subclasses.
David Chisnallc7ef4622011-03-23 22:52:06 +0000432 virtual llvm::Value *LookupIMPSuper(CodeGenFunction &CGF,
433 llvm::Value *ObjCSuper,
434 llvm::Value *cmd) = 0;
David Chisnall917b28b2011-10-04 15:35:30 +0000435 /// Libobjc2 uses a bitfield representation where small(ish) bitfields are
436 /// stored in a 64-bit value with the low bit set to 1 and the remaining 63
437 /// bits set to their values, LSB first, while larger ones are stored in a
438 /// structure of this / form:
439 ///
440 /// struct { int32_t length; int32_t values[length]; };
441 ///
442 /// The values in the array are stored in host-endian format, with the least
443 /// significant bit being assumed to come first in the bitfield. Therefore,
444 /// a bitfield with the 64th bit set will be (int64_t)&{ 2, [0, 1<<31] },
445 /// while a bitfield / with the 63rd bit set will be 1<<64.
Bill Wendling795b1002012-02-22 09:30:11 +0000446 llvm::Constant *MakeBitField(ArrayRef<bool> bits);
Chris Lattner0f984262008-03-01 08:50:34 +0000447public:
David Chisnall9f6614e2011-03-23 16:36:54 +0000448 CGObjCGNU(CodeGenModule &cgm, unsigned runtimeABIVersion,
449 unsigned protocolClassVersion);
450
David Chisnall0d13f6f2010-01-23 02:40:42 +0000451 virtual llvm::Constant *GenerateConstantString(const StringLiteral *);
David Chisnall9f6614e2011-03-23 16:36:54 +0000452
453 virtual RValue
454 GenerateMessageSend(CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +0000455 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000456 QualType ResultType,
457 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000458 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +0000459 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +0000460 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +0000461 const ObjCMethodDecl *Method);
David Chisnall9f6614e2011-03-23 16:36:54 +0000462 virtual RValue
463 GenerateMessageSendSuper(CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +0000464 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000465 QualType ResultType,
466 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000467 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +0000468 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000469 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000470 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +0000471 const CallArgList &CallArgs,
472 const ObjCMethodDecl *Method);
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000473 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +0000474 const ObjCInterfaceDecl *OID);
Fariborz Jahanian03b29602010-06-17 19:56:20 +0000475 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel,
476 bool lval = false);
Daniel Dunbar6d5a1c22010-02-03 20:11:42 +0000477 virtual llvm::Value *GetSelector(CGBuilderTy &Builder, const ObjCMethodDecl
478 *Method);
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +0000479 virtual llvm::Constant *GetEHType(QualType T);
Mike Stump1eb44332009-09-09 15:08:12 +0000480
481 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000482 const ObjCContainerDecl *CD);
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000483 virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
484 virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
David Chisnall29254f42012-01-31 18:59:20 +0000485 virtual void RegisterAlias(const ObjCCompatibleAliasDecl *OAD);
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000486 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000487 const ObjCProtocolDecl *PD);
488 virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000489 virtual llvm::Function *ModuleInitFunction();
David Chisnall789ecde2011-05-23 22:33:28 +0000490 virtual llvm::Constant *GetPropertyGetFunction();
491 virtual llvm::Constant *GetPropertySetFunction();
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000492 virtual llvm::Constant *GetOptimizedPropertySetFunction(bool atomic,
493 bool copy);
David Chisnall789ecde2011-05-23 22:33:28 +0000494 virtual llvm::Constant *GetSetStructFunction();
Fariborz Jahaniane3173022012-01-06 18:07:23 +0000495 virtual llvm::Constant *GetCppAtomicObjectFunction();
David Chisnall789ecde2011-05-23 22:33:28 +0000496 virtual llvm::Constant *GetGetStructFunction();
Daniel Dunbar309a4362009-07-24 07:40:24 +0000497 virtual llvm::Constant *EnumerationMutationFunction();
Mike Stump1eb44332009-09-09 15:08:12 +0000498
David Chisnall9f6614e2011-03-23 16:36:54 +0000499 virtual void EmitTryStmt(CodeGenFunction &CGF,
John McCallf1549f62010-07-06 01:34:17 +0000500 const ObjCAtTryStmt &S);
David Chisnall9f6614e2011-03-23 16:36:54 +0000501 virtual void EmitSynchronizedStmt(CodeGenFunction &CGF,
John McCallf1549f62010-07-06 01:34:17 +0000502 const ObjCAtSynchronizedStmt &S);
David Chisnall9f6614e2011-03-23 16:36:54 +0000503 virtual void EmitThrowStmt(CodeGenFunction &CGF,
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000504 const ObjCAtThrowStmt &S);
David Chisnall9f6614e2011-03-23 16:36:54 +0000505 virtual llvm::Value * EmitObjCWeakRead(CodeGenFunction &CGF,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000506 llvm::Value *AddrWeakObj);
David Chisnall9f6614e2011-03-23 16:36:54 +0000507 virtual void EmitObjCWeakAssign(CodeGenFunction &CGF,
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000508 llvm::Value *src, llvm::Value *dst);
David Chisnall9f6614e2011-03-23 16:36:54 +0000509 virtual void EmitObjCGlobalAssign(CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +0000510 llvm::Value *src, llvm::Value *dest,
511 bool threadlocal=false);
David Chisnall9f6614e2011-03-23 16:36:54 +0000512 virtual void EmitObjCIvarAssign(CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000513 llvm::Value *src, llvm::Value *dest,
514 llvm::Value *ivarOffset);
David Chisnall9f6614e2011-03-23 16:36:54 +0000515 virtual void EmitObjCStrongCastAssign(CodeGenFunction &CGF,
Fariborz Jahanian58626502008-11-19 00:59:10 +0000516 llvm::Value *src, llvm::Value *dest);
David Chisnall9f6614e2011-03-23 16:36:54 +0000517 virtual void EmitGCMemmoveCollectable(CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +0000518 llvm::Value *DestPtr,
Fariborz Jahanian082b02e2009-07-08 01:18:33 +0000519 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000520 llvm::Value *Size);
David Chisnall9f6614e2011-03-23 16:36:54 +0000521 virtual LValue EmitObjCValueForIvar(CodeGenFunction &CGF,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000522 QualType ObjectTy,
523 llvm::Value *BaseValue,
524 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000525 unsigned CVRQualifiers);
David Chisnall9f6614e2011-03-23 16:36:54 +0000526 virtual llvm::Value *EmitIvarOffset(CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +0000527 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +0000528 const ObjCIvarDecl *Ivar);
David Chisnallc7aed3b2011-06-29 13:16:41 +0000529 virtual llvm::Value *EmitNSAutoreleasePoolClassRef(CGBuilderTy &Builder);
David Chisnall9f6614e2011-03-23 16:36:54 +0000530 virtual llvm::Constant *BuildGCBlockLayout(CodeGenModule &CGM,
John McCall6b5a61b2011-02-07 10:33:21 +0000531 const CGBlockInfo &blockInfo) {
Fariborz Jahanian89ecd412010-08-04 16:57:49 +0000532 return NULLPtr;
533 }
Fariborz Jahanianc46b4352012-10-27 21:10:38 +0000534 virtual llvm::Constant *BuildRCBlockLayout(CodeGenModule &CGM,
535 const CGBlockInfo &blockInfo) {
536 return NULLPtr;
537 }
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +0000538
539 virtual llvm::Constant *BuildByrefLayout(CodeGenModule &CGM,
540 QualType T) {
541 return NULLPtr;
542 }
543
Fariborz Jahanian6f40e222011-05-17 22:21:16 +0000544 virtual llvm::GlobalVariable *GetClassGlobal(const std::string &Name) {
545 return 0;
546 }
Chris Lattner0f984262008-03-01 08:50:34 +0000547};
David Chisnall81a65f52011-03-26 11:48:37 +0000548/// Class representing the legacy GCC Objective-C ABI. This is the default when
549/// -fobjc-nonfragile-abi is not specified.
550///
551/// The GCC ABI target actually generates code that is approximately compatible
552/// with the new GNUstep runtime ABI, but refrains from using any features that
553/// would not work with the GCC runtime. For example, clang always generates
554/// the extended form of the class structure, and the extra fields are simply
555/// ignored by GCC libobjc.
David Chisnall9f6614e2011-03-23 16:36:54 +0000556class CGObjCGCC : public CGObjCGNU {
David Chisnall81a65f52011-03-26 11:48:37 +0000557 /// The GCC ABI message lookup function. Returns an IMP pointing to the
558 /// method implementation for this message.
David Chisnallc7ef4622011-03-23 22:52:06 +0000559 LazyRuntimeFunction MsgLookupFn;
David Chisnall81a65f52011-03-26 11:48:37 +0000560 /// The GCC ABI superclass message lookup function. Takes a pointer to a
561 /// structure describing the receiver and the class, and a selector as
562 /// arguments. Returns the IMP for the corresponding method.
David Chisnallc7ef4622011-03-23 22:52:06 +0000563 LazyRuntimeFunction MsgLookupSuperFn;
564protected:
565 virtual llvm::Value *LookupIMP(CodeGenFunction &CGF,
566 llvm::Value *&Receiver,
567 llvm::Value *cmd,
568 llvm::MDNode *node) {
569 CGBuilderTy &Builder = CGF.Builder;
David Chisnall6f3887e2011-10-28 17:55:06 +0000570 llvm::Value *args[] = {
David Chisnallc7ef4622011-03-23 22:52:06 +0000571 EnforceType(Builder, Receiver, IdTy),
David Chisnall6f3887e2011-10-28 17:55:06 +0000572 EnforceType(Builder, cmd, SelectorTy) };
573 llvm::CallSite imp = CGF.EmitCallOrInvoke(MsgLookupFn, args);
574 imp->setMetadata(msgSendMDKind, node);
575 return imp.getInstruction();
David Chisnallc7ef4622011-03-23 22:52:06 +0000576 }
577 virtual llvm::Value *LookupIMPSuper(CodeGenFunction &CGF,
578 llvm::Value *ObjCSuper,
579 llvm::Value *cmd) {
580 CGBuilderTy &Builder = CGF.Builder;
581 llvm::Value *lookupArgs[] = {EnforceType(Builder, ObjCSuper,
582 PtrToObjCSuperTy), cmd};
Jay Foad4c7d9f12011-07-15 08:37:34 +0000583 return Builder.CreateCall(MsgLookupSuperFn, lookupArgs);
David Chisnallc7ef4622011-03-23 22:52:06 +0000584 }
David Chisnall9f6614e2011-03-23 16:36:54 +0000585 public:
David Chisnallc7ef4622011-03-23 22:52:06 +0000586 CGObjCGCC(CodeGenModule &Mod) : CGObjCGNU(Mod, 8, 2) {
587 // IMP objc_msg_lookup(id, SEL);
588 MsgLookupFn.init(&CGM, "objc_msg_lookup", IMPTy, IdTy, SelectorTy, NULL);
589 // IMP objc_msg_lookup_super(struct objc_super*, SEL);
590 MsgLookupSuperFn.init(&CGM, "objc_msg_lookup_super", IMPTy,
591 PtrToObjCSuperTy, SelectorTy, NULL);
592 }
David Chisnall9f6614e2011-03-23 16:36:54 +0000593};
David Chisnall81a65f52011-03-26 11:48:37 +0000594/// Class used when targeting the new GNUstep runtime ABI.
David Chisnall9f6614e2011-03-23 16:36:54 +0000595class CGObjCGNUstep : public CGObjCGNU {
David Chisnall81a65f52011-03-26 11:48:37 +0000596 /// The slot lookup function. Returns a pointer to a cacheable structure
597 /// that contains (among other things) the IMP.
David Chisnallc7ef4622011-03-23 22:52:06 +0000598 LazyRuntimeFunction SlotLookupFn;
David Chisnall81a65f52011-03-26 11:48:37 +0000599 /// The GNUstep ABI superclass message lookup function. Takes a pointer to
600 /// a structure describing the receiver and the class, and a selector as
601 /// arguments. Returns the slot for the corresponding method. Superclass
602 /// message lookup rarely changes, so this is a good caching opportunity.
David Chisnallc7ef4622011-03-23 22:52:06 +0000603 LazyRuntimeFunction SlotLookupSuperFn;
David Chisnall81a65f52011-03-26 11:48:37 +0000604 /// Type of an slot structure pointer. This is returned by the various
605 /// lookup functions.
David Chisnallc7ef4622011-03-23 22:52:06 +0000606 llvm::Type *SlotTy;
John McCall2b07dd32012-11-14 09:08:34 +0000607 public:
608 virtual llvm::Constant *GetEHType(QualType T);
David Chisnallc7ef4622011-03-23 22:52:06 +0000609 protected:
610 virtual llvm::Value *LookupIMP(CodeGenFunction &CGF,
611 llvm::Value *&Receiver,
612 llvm::Value *cmd,
613 llvm::MDNode *node) {
614 CGBuilderTy &Builder = CGF.Builder;
615 llvm::Function *LookupFn = SlotLookupFn;
616
617 // Store the receiver on the stack so that we can reload it later
618 llvm::Value *ReceiverPtr = CGF.CreateTempAlloca(Receiver->getType());
619 Builder.CreateStore(Receiver, ReceiverPtr);
620
621 llvm::Value *self;
622
623 if (isa<ObjCMethodDecl>(CGF.CurCodeDecl)) {
624 self = CGF.LoadObjCSelf();
625 } else {
626 self = llvm::ConstantPointerNull::get(IdTy);
627 }
628
629 // The lookup function is guaranteed not to capture the receiver pointer.
630 LookupFn->setDoesNotCapture(1);
631
David Chisnall6f3887e2011-10-28 17:55:06 +0000632 llvm::Value *args[] = {
David Chisnallc7ef4622011-03-23 22:52:06 +0000633 EnforceType(Builder, ReceiverPtr, PtrToIdTy),
634 EnforceType(Builder, cmd, SelectorTy),
David Chisnall6f3887e2011-10-28 17:55:06 +0000635 EnforceType(Builder, self, IdTy) };
636 llvm::CallSite slot = CGF.EmitCallOrInvoke(LookupFn, args);
637 slot.setOnlyReadsMemory();
David Chisnallc7ef4622011-03-23 22:52:06 +0000638 slot->setMetadata(msgSendMDKind, node);
639
640 // Load the imp from the slot
David Chisnall6f3887e2011-10-28 17:55:06 +0000641 llvm::Value *imp =
642 Builder.CreateLoad(Builder.CreateStructGEP(slot.getInstruction(), 4));
David Chisnallc7ef4622011-03-23 22:52:06 +0000643
644 // The lookup function may have changed the receiver, so make sure we use
645 // the new one.
646 Receiver = Builder.CreateLoad(ReceiverPtr, true);
647 return imp;
648 }
649 virtual llvm::Value *LookupIMPSuper(CodeGenFunction &CGF,
650 llvm::Value *ObjCSuper,
651 llvm::Value *cmd) {
652 CGBuilderTy &Builder = CGF.Builder;
653 llvm::Value *lookupArgs[] = {ObjCSuper, cmd};
654
Jay Foad4c7d9f12011-07-15 08:37:34 +0000655 llvm::CallInst *slot = Builder.CreateCall(SlotLookupSuperFn, lookupArgs);
David Chisnallc7ef4622011-03-23 22:52:06 +0000656 slot->setOnlyReadsMemory();
657
658 return Builder.CreateLoad(Builder.CreateStructGEP(slot, 4));
659 }
David Chisnall9f6614e2011-03-23 16:36:54 +0000660 public:
David Chisnallc7ef4622011-03-23 22:52:06 +0000661 CGObjCGNUstep(CodeGenModule &Mod) : CGObjCGNU(Mod, 9, 3) {
Chris Lattner7650d952011-06-18 22:49:11 +0000662 llvm::StructType *SlotStructTy = llvm::StructType::get(PtrTy,
David Chisnallc7ef4622011-03-23 22:52:06 +0000663 PtrTy, PtrTy, IntTy, IMPTy, NULL);
664 SlotTy = llvm::PointerType::getUnqual(SlotStructTy);
665 // Slot_t objc_msg_lookup_sender(id *receiver, SEL selector, id sender);
666 SlotLookupFn.init(&CGM, "objc_msg_lookup_sender", SlotTy, PtrToIdTy,
667 SelectorTy, IdTy, NULL);
668 // Slot_t objc_msg_lookup_super(struct objc_super*, SEL);
669 SlotLookupSuperFn.init(&CGM, "objc_slot_lookup_super", SlotTy,
670 PtrToObjCSuperTy, SelectorTy, NULL);
David Chisnall9735ca62011-03-25 11:57:33 +0000671 // If we're in ObjC++ mode, then we want to make
David Blaikie4e4d0842012-03-11 07:00:24 +0000672 if (CGM.getLangOpts().CPlusPlus) {
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000673 llvm::Type *VoidTy = llvm::Type::getVoidTy(VMContext);
David Chisnall9735ca62011-03-25 11:57:33 +0000674 // void *__cxa_begin_catch(void *e)
675 EnterCatchFn.init(&CGM, "__cxa_begin_catch", PtrTy, PtrTy, NULL);
676 // void __cxa_end_catch(void)
David Chisnall4bd5d092011-08-08 17:26:06 +0000677 ExitCatchFn.init(&CGM, "__cxa_end_catch", VoidTy, NULL);
David Chisnall9735ca62011-03-25 11:57:33 +0000678 // void _Unwind_Resume_or_Rethrow(void*)
David Chisnall978d4152011-04-05 17:15:18 +0000679 ExceptionReThrowFn.init(&CGM, "_Unwind_Resume_or_Rethrow", VoidTy, PtrTy, NULL);
David Chisnall9735ca62011-03-25 11:57:33 +0000680 }
David Chisnallc7ef4622011-03-23 22:52:06 +0000681 }
David Chisnall9f6614e2011-03-23 16:36:54 +0000682};
683
John McCall0a7dd782012-08-21 02:47:43 +0000684/// Support for the ObjFW runtime. Support here is due to
685/// Jonathan Schleifer <js@webkeks.org>, the ObjFW maintainer.
686class CGObjCObjFW: public CGObjCGNU {
687protected:
688 /// The GCC ABI message lookup function. Returns an IMP pointing to the
689 /// method implementation for this message.
690 LazyRuntimeFunction MsgLookupFn;
691 /// The GCC ABI superclass message lookup function. Takes a pointer to a
692 /// structure describing the receiver and the class, and a selector as
693 /// arguments. Returns the IMP for the corresponding method.
694 LazyRuntimeFunction MsgLookupSuperFn;
695
696 virtual llvm::Value *LookupIMP(CodeGenFunction &CGF,
697 llvm::Value *&Receiver,
698 llvm::Value *cmd,
699 llvm::MDNode *node) {
700 CGBuilderTy &Builder = CGF.Builder;
701 llvm::Value *args[] = {
702 EnforceType(Builder, Receiver, IdTy),
703 EnforceType(Builder, cmd, SelectorTy) };
704 llvm::CallSite imp = CGF.EmitCallOrInvoke(MsgLookupFn, args);
705 imp->setMetadata(msgSendMDKind, node);
706 return imp.getInstruction();
707 }
708
709 virtual llvm::Value *LookupIMPSuper(CodeGenFunction &CGF,
710 llvm::Value *ObjCSuper,
711 llvm::Value *cmd) {
712 CGBuilderTy &Builder = CGF.Builder;
713 llvm::Value *lookupArgs[] = {EnforceType(Builder, ObjCSuper,
714 PtrToObjCSuperTy), cmd};
715 return Builder.CreateCall(MsgLookupSuperFn, lookupArgs);
716 }
717
John McCallf7226fb2012-07-12 02:07:58 +0000718 virtual llvm::Value *GetClassNamed(CGBuilderTy &Builder,
719 const std::string &Name, bool isWeak) {
720 if (isWeak)
721 return CGObjCGNU::GetClassNamed(Builder, Name, isWeak);
722
723 EmitClassRef(Name);
724
725 std::string SymbolName = "_OBJC_CLASS_" + Name;
726
727 llvm::GlobalVariable *ClassSymbol = TheModule.getGlobalVariable(SymbolName);
728
729 if (!ClassSymbol)
730 ClassSymbol = new llvm::GlobalVariable(TheModule, LongTy, false,
731 llvm::GlobalValue::ExternalLinkage,
732 0, SymbolName);
733
734 return ClassSymbol;
735 }
736
737public:
John McCall0a7dd782012-08-21 02:47:43 +0000738 CGObjCObjFW(CodeGenModule &Mod): CGObjCGNU(Mod, 9, 3) {
739 // IMP objc_msg_lookup(id, SEL);
740 MsgLookupFn.init(&CGM, "objc_msg_lookup", IMPTy, IdTy, SelectorTy, NULL);
741 // IMP objc_msg_lookup_super(struct objc_super*, SEL);
742 MsgLookupSuperFn.init(&CGM, "objc_msg_lookup_super", IMPTy,
743 PtrToObjCSuperTy, SelectorTy, NULL);
744 }
John McCallf7226fb2012-07-12 02:07:58 +0000745};
Chris Lattner0f984262008-03-01 08:50:34 +0000746} // end anonymous namespace
747
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000748
Chris Lattner2a8e4e12009-06-15 01:09:11 +0000749/// Emits a reference to a dummy variable which is emitted with each class.
750/// This ensures that a linker error will be generated when trying to link
751/// together modules where a referenced class is not defined.
Mike Stumpbb1c8602009-07-31 21:31:32 +0000752void CGObjCGNU::EmitClassRef(const std::string &className) {
Chris Lattner2a8e4e12009-06-15 01:09:11 +0000753 std::string symbolRef = "__objc_class_ref_" + className;
754 // Don't emit two copies of the same symbol
Mike Stumpbb1c8602009-07-31 21:31:32 +0000755 if (TheModule.getGlobalVariable(symbolRef))
756 return;
Chris Lattner2a8e4e12009-06-15 01:09:11 +0000757 std::string symbolName = "__objc_class_name_" + className;
758 llvm::GlobalVariable *ClassSymbol = TheModule.getGlobalVariable(symbolName);
759 if (!ClassSymbol) {
Owen Anderson1c431b32009-07-08 19:05:04 +0000760 ClassSymbol = new llvm::GlobalVariable(TheModule, LongTy, false,
761 llvm::GlobalValue::ExternalLinkage, 0, symbolName);
Chris Lattner2a8e4e12009-06-15 01:09:11 +0000762 }
Owen Anderson1c431b32009-07-08 19:05:04 +0000763 new llvm::GlobalVariable(TheModule, ClassSymbol->getType(), true,
Chris Lattnerf35271b2009-08-05 05:25:18 +0000764 llvm::GlobalValue::WeakAnyLinkage, ClassSymbol, symbolRef);
Chris Lattner2a8e4e12009-06-15 01:09:11 +0000765}
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000766
Chris Lattner5f9e2722011-07-23 10:55:15 +0000767static std::string SymbolNameForMethod(const StringRef &ClassName,
768 const StringRef &CategoryName, const Selector MethodName,
David Chisnall9f6614e2011-03-23 16:36:54 +0000769 bool isClassMethod) {
770 std::string MethodNameColonStripped = MethodName.getAsString();
David Chisnalld3467362010-01-14 14:08:19 +0000771 std::replace(MethodNameColonStripped.begin(), MethodNameColonStripped.end(),
772 ':', '_');
Chris Lattner5f9e2722011-07-23 10:55:15 +0000773 return (Twine(isClassMethod ? "_c_" : "_i_") + ClassName + "_" +
David Chisnall9f6614e2011-03-23 16:36:54 +0000774 CategoryName + "_" + MethodNameColonStripped).str();
David Chisnall87935a82010-05-08 20:58:05 +0000775}
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000776
David Chisnall9f6614e2011-03-23 16:36:54 +0000777CGObjCGNU::CGObjCGNU(CodeGenModule &cgm, unsigned runtimeABIVersion,
778 unsigned protocolClassVersion)
John McCallde5d3c72012-02-17 03:33:10 +0000779 : CGObjCRuntime(cgm), TheModule(CGM.getModule()),
780 VMContext(cgm.getLLVMContext()), ClassPtrAlias(0), MetaClassPtrAlias(0),
781 RuntimeVersion(runtimeABIVersion), ProtocolVersion(protocolClassVersion) {
David Chisnallc6cd5fd2010-04-28 19:33:36 +0000782
783 msgSendMDKind = VMContext.getMDKindID("GNUObjCMessageSend");
784
David Chisnall9f6614e2011-03-23 16:36:54 +0000785 CodeGenTypes &Types = CGM.getTypes();
Chris Lattnere160c9b2009-01-27 05:06:01 +0000786 IntTy = cast<llvm::IntegerType>(
David Chisnall9f6614e2011-03-23 16:36:54 +0000787 Types.ConvertType(CGM.getContext().IntTy));
Chris Lattnere160c9b2009-01-27 05:06:01 +0000788 LongTy = cast<llvm::IntegerType>(
David Chisnall9f6614e2011-03-23 16:36:54 +0000789 Types.ConvertType(CGM.getContext().LongTy));
David Chisnall8fac25d2010-12-26 22:13:16 +0000790 SizeTy = cast<llvm::IntegerType>(
David Chisnall9f6614e2011-03-23 16:36:54 +0000791 Types.ConvertType(CGM.getContext().getSizeType()));
David Chisnall8fac25d2010-12-26 22:13:16 +0000792 PtrDiffTy = cast<llvm::IntegerType>(
David Chisnall9f6614e2011-03-23 16:36:54 +0000793 Types.ConvertType(CGM.getContext().getPointerDiffType()));
David Chisnall8fac25d2010-12-26 22:13:16 +0000794 BoolTy = CGM.getTypes().ConvertType(CGM.getContext().BoolTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000795
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +0000796 Int8Ty = llvm::Type::getInt8Ty(VMContext);
797 // C string type. Used in lots of places.
798 PtrToInt8Ty = llvm::PointerType::getUnqual(Int8Ty);
799
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000800 Zeros[0] = llvm::ConstantInt::get(LongTy, 0);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000801 Zeros[1] = Zeros[0];
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +0000802 NULLPtr = llvm::ConstantPointerNull::get(PtrToInt8Ty);
Chris Lattner391d77a2008-03-30 23:03:07 +0000803 // Get the selector Type.
David Chisnall0d13f6f2010-01-23 02:40:42 +0000804 QualType selTy = CGM.getContext().getObjCSelType();
805 if (QualType() == selTy) {
806 SelectorTy = PtrToInt8Ty;
807 } else {
808 SelectorTy = cast<llvm::PointerType>(CGM.getTypes().ConvertType(selTy));
809 }
Chris Lattnere160c9b2009-01-27 05:06:01 +0000810
Owen Anderson96e0fc72009-07-29 22:16:19 +0000811 PtrToIntTy = llvm::PointerType::getUnqual(IntTy);
Chris Lattner391d77a2008-03-30 23:03:07 +0000812 PtrTy = PtrToInt8Ty;
Mike Stump1eb44332009-09-09 15:08:12 +0000813
David Chisnall917b28b2011-10-04 15:35:30 +0000814 Int32Ty = llvm::Type::getInt32Ty(VMContext);
815 Int64Ty = llvm::Type::getInt64Ty(VMContext);
816
David Chisnall49de5282011-10-08 08:54:36 +0000817 IntPtrTy =
818 TheModule.getPointerSize() == llvm::Module::Pointer32 ? Int32Ty : Int64Ty;
819
Chris Lattner391d77a2008-03-30 23:03:07 +0000820 // Object type
David Chisnall7bcf6c32011-04-29 14:10:35 +0000821 QualType UnqualIdTy = CGM.getContext().getObjCIdType();
822 ASTIdTy = CanQualType();
823 if (UnqualIdTy != QualType()) {
824 ASTIdTy = CGM.getContext().getCanonicalType(UnqualIdTy);
David Chisnall0d13f6f2010-01-23 02:40:42 +0000825 IdTy = cast<llvm::PointerType>(CGM.getTypes().ConvertType(ASTIdTy));
David Chisnall7bcf6c32011-04-29 14:10:35 +0000826 } else {
827 IdTy = PtrToInt8Ty;
David Chisnall0d13f6f2010-01-23 02:40:42 +0000828 }
David Chisnallef6e0f32010-02-03 15:59:02 +0000829 PtrToIdTy = llvm::PointerType::getUnqual(IdTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000830
Chris Lattner7650d952011-06-18 22:49:11 +0000831 ObjCSuperTy = llvm::StructType::get(IdTy, IdTy, NULL);
David Chisnallc7ef4622011-03-23 22:52:06 +0000832 PtrToObjCSuperTy = llvm::PointerType::getUnqual(ObjCSuperTy);
833
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000834 llvm::Type *VoidTy = llvm::Type::getVoidTy(VMContext);
David Chisnall9f6614e2011-03-23 16:36:54 +0000835
836 // void objc_exception_throw(id);
837 ExceptionThrowFn.init(&CGM, "objc_exception_throw", VoidTy, IdTy, NULL);
David Chisnall9735ca62011-03-25 11:57:33 +0000838 ExceptionReThrowFn.init(&CGM, "objc_exception_throw", VoidTy, IdTy, NULL);
David Chisnall9f6614e2011-03-23 16:36:54 +0000839 // int objc_sync_enter(id);
840 SyncEnterFn.init(&CGM, "objc_sync_enter", IntTy, IdTy, NULL);
841 // int objc_sync_exit(id);
842 SyncExitFn.init(&CGM, "objc_sync_exit", IntTy, IdTy, NULL);
843
844 // void objc_enumerationMutation (id)
845 EnumerationMutationFn.init(&CGM, "objc_enumerationMutation", VoidTy,
846 IdTy, NULL);
847
848 // id objc_getProperty(id, SEL, ptrdiff_t, BOOL)
849 GetPropertyFn.init(&CGM, "objc_getProperty", IdTy, IdTy, SelectorTy,
850 PtrDiffTy, BoolTy, NULL);
851 // void objc_setProperty(id, SEL, ptrdiff_t, id, BOOL, BOOL)
852 SetPropertyFn.init(&CGM, "objc_setProperty", VoidTy, IdTy, SelectorTy,
853 PtrDiffTy, IdTy, BoolTy, BoolTy, NULL);
854 // void objc_setPropertyStruct(void*, void*, ptrdiff_t, BOOL, BOOL)
855 GetStructPropertyFn.init(&CGM, "objc_getPropertyStruct", VoidTy, PtrTy, PtrTy,
856 PtrDiffTy, BoolTy, BoolTy, NULL);
857 // void objc_setPropertyStruct(void*, void*, ptrdiff_t, BOOL, BOOL)
858 SetStructPropertyFn.init(&CGM, "objc_setPropertyStruct", VoidTy, PtrTy, PtrTy,
859 PtrDiffTy, BoolTy, BoolTy, NULL);
860
Chris Lattner391d77a2008-03-30 23:03:07 +0000861 // IMP type
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000862 llvm::Type *IMPArgs[] = { IdTy, SelectorTy };
David Chisnallc7ef4622011-03-23 22:52:06 +0000863 IMPTy = llvm::PointerType::getUnqual(llvm::FunctionType::get(IdTy, IMPArgs,
864 true));
David Chisnallef6e0f32010-02-03 15:59:02 +0000865
David Blaikie4e4d0842012-03-11 07:00:24 +0000866 const LangOptions &Opts = CGM.getLangOpts();
Douglas Gregore289d812011-09-13 17:21:33 +0000867 if ((Opts.getGC() != LangOptions::NonGC) || Opts.ObjCAutoRefCount)
David Chisnallf0748852011-07-07 11:22:31 +0000868 RuntimeVersion = 10;
869
David Chisnall9735ca62011-03-25 11:57:33 +0000870 // Don't bother initialising the GC stuff unless we're compiling in GC mode
Douglas Gregore289d812011-09-13 17:21:33 +0000871 if (Opts.getGC() != LangOptions::NonGC) {
David Chisnalla2120032011-05-22 22:37:08 +0000872 // This is a bit of an hack. We should sort this out by having a proper
873 // CGObjCGNUstep subclass for GC, but we may want to really support the old
874 // ABI and GC added in ObjectiveC2.framework, so we fudge it a bit for now
David Chisnallef6e0f32010-02-03 15:59:02 +0000875 // Get selectors needed in GC mode
876 RetainSel = GetNullarySelector("retain", CGM.getContext());
877 ReleaseSel = GetNullarySelector("release", CGM.getContext());
878 AutoreleaseSel = GetNullarySelector("autorelease", CGM.getContext());
879
880 // Get functions needed in GC mode
881
882 // id objc_assign_ivar(id, id, ptrdiff_t);
David Chisnall9f6614e2011-03-23 16:36:54 +0000883 IvarAssignFn.init(&CGM, "objc_assign_ivar", IdTy, IdTy, IdTy, PtrDiffTy,
884 NULL);
David Chisnallef6e0f32010-02-03 15:59:02 +0000885 // id objc_assign_strongCast (id, id*)
David Chisnall9f6614e2011-03-23 16:36:54 +0000886 StrongCastAssignFn.init(&CGM, "objc_assign_strongCast", IdTy, IdTy,
887 PtrToIdTy, NULL);
David Chisnallef6e0f32010-02-03 15:59:02 +0000888 // id objc_assign_global(id, id*);
David Chisnall9f6614e2011-03-23 16:36:54 +0000889 GlobalAssignFn.init(&CGM, "objc_assign_global", IdTy, IdTy, PtrToIdTy,
890 NULL);
David Chisnallef6e0f32010-02-03 15:59:02 +0000891 // id objc_assign_weak(id, id*);
David Chisnall9f6614e2011-03-23 16:36:54 +0000892 WeakAssignFn.init(&CGM, "objc_assign_weak", IdTy, IdTy, PtrToIdTy, NULL);
David Chisnallef6e0f32010-02-03 15:59:02 +0000893 // id objc_read_weak(id*);
David Chisnall9f6614e2011-03-23 16:36:54 +0000894 WeakReadFn.init(&CGM, "objc_read_weak", IdTy, PtrToIdTy, NULL);
David Chisnallef6e0f32010-02-03 15:59:02 +0000895 // void *objc_memmove_collectable(void*, void *, size_t);
David Chisnall9f6614e2011-03-23 16:36:54 +0000896 MemMoveFn.init(&CGM, "objc_memmove_collectable", PtrTy, PtrTy, PtrTy,
897 SizeTy, NULL);
David Chisnallef6e0f32010-02-03 15:59:02 +0000898 }
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000899}
Mike Stumpbb1c8602009-07-31 21:31:32 +0000900
David Chisnallc7aed3b2011-06-29 13:16:41 +0000901llvm::Value *CGObjCGNU::GetClassNamed(CGBuilderTy &Builder,
David Chisnalld3fc7292011-06-30 10:14:37 +0000902 const std::string &Name,
903 bool isWeak) {
David Chisnallc7aed3b2011-06-29 13:16:41 +0000904 llvm::Value *ClassName = CGM.GetAddrOfConstantCString(Name);
David Chisnall41d63ed2010-01-08 00:14:31 +0000905 // With the incompatible ABI, this will need to be replaced with a direct
906 // reference to the class symbol. For the compatible nonfragile ABI we are
907 // still performing this lookup at run time but emitting the symbol for the
908 // class externally so that we can make the switch later.
David Chisnallc7aed3b2011-06-29 13:16:41 +0000909 //
910 // Libobjc2 contains an LLVM pass that replaces calls to objc_lookup_class
911 // with memoized versions or with static references if it's safe to do so.
David Chisnalld3fc7292011-06-30 10:14:37 +0000912 if (!isWeak)
913 EmitClassRef(Name);
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +0000914 ClassName = Builder.CreateStructGEP(ClassName, 0);
915
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000916 llvm::Constant *ClassLookupFn =
Jay Foadda549e82011-07-29 13:56:53 +0000917 CGM.CreateRuntimeFunction(llvm::FunctionType::get(IdTy, PtrToInt8Ty, true),
Fariborz Jahanian26c82942009-03-30 18:02:14 +0000918 "objc_lookup_class");
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000919 return Builder.CreateCall(ClassLookupFn, ClassName);
Chris Lattner391d77a2008-03-30 23:03:07 +0000920}
921
David Chisnallc7aed3b2011-06-29 13:16:41 +0000922// This has to perform the lookup every time, since posing and related
923// techniques can modify the name -> class mapping.
924llvm::Value *CGObjCGNU::GetClass(CGBuilderTy &Builder,
925 const ObjCInterfaceDecl *OID) {
David Chisnalld3fc7292011-06-30 10:14:37 +0000926 return GetClassNamed(Builder, OID->getNameAsString(), OID->isWeakImported());
David Chisnallc7aed3b2011-06-29 13:16:41 +0000927}
928llvm::Value *CGObjCGNU::EmitNSAutoreleasePoolClassRef(CGBuilderTy &Builder) {
David Chisnalld3fc7292011-06-30 10:14:37 +0000929 return GetClassNamed(Builder, "NSAutoreleasePool", false);
David Chisnallc7aed3b2011-06-29 13:16:41 +0000930}
931
Fariborz Jahanian03b29602010-06-17 19:56:20 +0000932llvm::Value *CGObjCGNU::GetSelector(CGBuilderTy &Builder, Selector Sel,
David Chisnall9f6614e2011-03-23 16:36:54 +0000933 const std::string &TypeEncoding, bool lval) {
934
Chris Lattner5f9e2722011-07-23 10:55:15 +0000935 SmallVector<TypedSelector, 2> &Types = SelectorTable[Sel];
David Chisnall9f6614e2011-03-23 16:36:54 +0000936 llvm::GlobalAlias *SelValue = 0;
937
938
Chris Lattner5f9e2722011-07-23 10:55:15 +0000939 for (SmallVectorImpl<TypedSelector>::iterator i = Types.begin(),
David Chisnall9f6614e2011-03-23 16:36:54 +0000940 e = Types.end() ; i!=e ; i++) {
941 if (i->first == TypeEncoding) {
942 SelValue = i->second;
943 break;
944 }
945 }
946 if (0 == SelValue) {
David Chisnallc7ef4622011-03-23 22:52:06 +0000947 SelValue = new llvm::GlobalAlias(SelectorTy,
David Chisnall9f6614e2011-03-23 16:36:54 +0000948 llvm::GlobalValue::PrivateLinkage,
949 ".objc_selector_"+Sel.getAsString(), NULL,
950 &TheModule);
951 Types.push_back(TypedSelector(TypeEncoding, SelValue));
952 }
953
David Chisnallc7ef4622011-03-23 22:52:06 +0000954 if (lval) {
955 llvm::Value *tmp = Builder.CreateAlloca(SelValue->getType());
956 Builder.CreateStore(SelValue, tmp);
957 return tmp;
958 }
959 return SelValue;
David Chisnall9f6614e2011-03-23 16:36:54 +0000960}
961
962llvm::Value *CGObjCGNU::GetSelector(CGBuilderTy &Builder, Selector Sel,
963 bool lval) {
964 return GetSelector(Builder, Sel, std::string(), lval);
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +0000965}
966
Daniel Dunbar6d5a1c22010-02-03 20:11:42 +0000967llvm::Value *CGObjCGNU::GetSelector(CGBuilderTy &Builder, const ObjCMethodDecl
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +0000968 *Method) {
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +0000969 std::string SelTypes;
970 CGM.getContext().getObjCEncodingForMethodDecl(Method, SelTypes);
David Chisnall9f6614e2011-03-23 16:36:54 +0000971 return GetSelector(Builder, Method->getSelector(), SelTypes, false);
Chris Lattner8e67b632008-06-26 04:37:12 +0000972}
973
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +0000974llvm::Constant *CGObjCGNU::GetEHType(QualType T) {
John McCall2b07dd32012-11-14 09:08:34 +0000975 if (T->isObjCIdType() || T->isObjCQualifiedIdType()) {
976 // With the old ABI, there was only one kind of catchall, which broke
977 // foreign exceptions. With the new ABI, we use __objc_id_typeinfo as
978 // a pointer indicating object catchalls, and NULL to indicate real
979 // catchalls
980 if (CGM.getLangOpts().ObjCRuntime.isNonFragile()) {
981 return MakeConstantString("@id");
982 } else {
983 return 0;
984 }
David Chisnall9735ca62011-03-25 11:57:33 +0000985 }
John McCall2b07dd32012-11-14 09:08:34 +0000986
987 // All other types should be Objective-C interface pointer types.
988 const ObjCObjectPointerType *OPT = T->getAs<ObjCObjectPointerType>();
989 assert(OPT && "Invalid @catch type.");
990 const ObjCInterfaceDecl *IDecl = OPT->getObjectType()->getInterface();
991 assert(IDecl && "Invalid @catch type.");
992 return MakeConstantString(IDecl->getIdentifier()->getName());
993}
994
995llvm::Constant *CGObjCGNUstep::GetEHType(QualType T) {
996 if (!CGM.getLangOpts().CPlusPlus)
997 return CGObjCGNU::GetEHType(T);
998
David Chisnall80558d22011-03-20 21:35:39 +0000999 // For Objective-C++, we want to provide the ability to catch both C++ and
1000 // Objective-C objects in the same function.
1001
1002 // There's a particular fixed type info for 'id'.
1003 if (T->isObjCIdType() ||
1004 T->isObjCQualifiedIdType()) {
1005 llvm::Constant *IDEHType =
1006 CGM.getModule().getGlobalVariable("__objc_id_type_info");
1007 if (!IDEHType)
1008 IDEHType =
1009 new llvm::GlobalVariable(CGM.getModule(), PtrToInt8Ty,
1010 false,
1011 llvm::GlobalValue::ExternalLinkage,
1012 0, "__objc_id_type_info");
1013 return llvm::ConstantExpr::getBitCast(IDEHType, PtrToInt8Ty);
1014 }
1015
1016 const ObjCObjectPointerType *PT =
1017 T->getAs<ObjCObjectPointerType>();
1018 assert(PT && "Invalid @catch type.");
1019 const ObjCInterfaceType *IT = PT->getInterfaceType();
1020 assert(IT && "Invalid @catch type.");
1021 std::string className = IT->getDecl()->getIdentifier()->getName();
1022
1023 std::string typeinfoName = "__objc_eh_typeinfo_" + className;
1024
1025 // Return the existing typeinfo if it exists
1026 llvm::Constant *typeinfo = TheModule.getGlobalVariable(typeinfoName);
David Chisnallacd76fe2012-03-20 16:25:52 +00001027 if (typeinfo)
1028 return llvm::ConstantExpr::getBitCast(typeinfo, PtrToInt8Ty);
David Chisnall80558d22011-03-20 21:35:39 +00001029
1030 // Otherwise create it.
1031
1032 // vtable for gnustep::libobjc::__objc_class_type_info
1033 // It's quite ugly hard-coding this. Ideally we'd generate it using the host
1034 // platform's name mangling.
1035 const char *vtableName = "_ZTVN7gnustep7libobjc22__objc_class_type_infoE";
1036 llvm::Constant *Vtable = TheModule.getGlobalVariable(vtableName);
1037 if (!Vtable) {
1038 Vtable = new llvm::GlobalVariable(TheModule, PtrToInt8Ty, true,
1039 llvm::GlobalValue::ExternalLinkage, 0, vtableName);
1040 }
1041 llvm::Constant *Two = llvm::ConstantInt::get(IntTy, 2);
Jay Foada5c04342011-07-21 14:31:17 +00001042 Vtable = llvm::ConstantExpr::getGetElementPtr(Vtable, Two);
David Chisnall80558d22011-03-20 21:35:39 +00001043 Vtable = llvm::ConstantExpr::getBitCast(Vtable, PtrToInt8Ty);
1044
1045 llvm::Constant *typeName =
1046 ExportUniqueString(className, "__objc_eh_typename_");
1047
1048 std::vector<llvm::Constant*> fields;
1049 fields.push_back(Vtable);
1050 fields.push_back(typeName);
1051 llvm::Constant *TI =
Chris Lattner7650d952011-06-18 22:49:11 +00001052 MakeGlobal(llvm::StructType::get(PtrToInt8Ty, PtrToInt8Ty,
David Chisnall80558d22011-03-20 21:35:39 +00001053 NULL), fields, "__objc_eh_typeinfo_" + className,
1054 llvm::GlobalValue::LinkOnceODRLinkage);
1055 return llvm::ConstantExpr::getBitCast(TI, PtrToInt8Ty);
John McCall5a180392010-07-24 00:37:23 +00001056}
1057
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001058/// Generate an NSConstantString object.
David Chisnall0d13f6f2010-01-23 02:40:42 +00001059llvm::Constant *CGObjCGNU::GenerateConstantString(const StringLiteral *SL) {
David Chisnall48272a02010-01-27 12:49:23 +00001060
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +00001061 std::string Str = SL->getString().str();
David Chisnall0d13f6f2010-01-23 02:40:42 +00001062
David Chisnall48272a02010-01-27 12:49:23 +00001063 // Look for an existing one
1064 llvm::StringMap<llvm::Constant*>::iterator old = ObjCStrings.find(Str);
1065 if (old != ObjCStrings.end())
1066 return old->getValue();
1067
David Blaikie4e4d0842012-03-11 07:00:24 +00001068 StringRef StringClass = CGM.getLangOpts().ObjCConstantStringClass;
David Chisnall13df6f62012-01-04 12:02:13 +00001069
1070 if (StringClass.empty()) StringClass = "NXConstantString";
1071
1072 std::string Sym = "_OBJC_CLASS_";
1073 Sym += StringClass;
1074
1075 llvm::Constant *isa = TheModule.getNamedGlobal(Sym);
1076
1077 if (!isa)
1078 isa = new llvm::GlobalVariable(TheModule, IdTy, /* isConstant */false,
1079 llvm::GlobalValue::ExternalWeakLinkage, 0, Sym);
1080 else if (isa->getType() != PtrToIdTy)
1081 isa = llvm::ConstantExpr::getBitCast(isa, PtrToIdTy);
1082
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001083 std::vector<llvm::Constant*> Ivars;
David Chisnall13df6f62012-01-04 12:02:13 +00001084 Ivars.push_back(isa);
Chris Lattner13fd7e52008-06-21 21:44:18 +00001085 Ivars.push_back(MakeConstantString(Str));
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001086 Ivars.push_back(llvm::ConstantInt::get(IntTy, Str.size()));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001087 llvm::Constant *ObjCStr = MakeGlobal(
David Chisnall13df6f62012-01-04 12:02:13 +00001088 llvm::StructType::get(PtrToIdTy, PtrToInt8Ty, IntTy, NULL),
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001089 Ivars, ".objc_str");
David Chisnall48272a02010-01-27 12:49:23 +00001090 ObjCStr = llvm::ConstantExpr::getBitCast(ObjCStr, PtrToInt8Ty);
1091 ObjCStrings[Str] = ObjCStr;
1092 ConstantStrings.push_back(ObjCStr);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001093 return ObjCStr;
1094}
1095
1096///Generates a message send where the super is the receiver. This is a message
1097///send to self with special delivery semantics indicating which class's method
1098///should be called.
David Chisnall9f6614e2011-03-23 16:36:54 +00001099RValue
1100CGObjCGNU::GenerateMessageSendSuper(CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001101 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001102 QualType ResultType,
1103 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001104 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00001105 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001106 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001107 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +00001108 const CallArgList &CallArgs,
1109 const ObjCMethodDecl *Method) {
David Chisnall0bbe0cf2011-05-28 14:09:01 +00001110 CGBuilderTy &Builder = CGF.Builder;
David Blaikie4e4d0842012-03-11 07:00:24 +00001111 if (CGM.getLangOpts().getGC() == LangOptions::GCOnly) {
David Chisnallef6e0f32010-02-03 15:59:02 +00001112 if (Sel == RetainSel || Sel == AutoreleaseSel) {
David Chisnall0bbe0cf2011-05-28 14:09:01 +00001113 return RValue::get(EnforceType(Builder, Receiver,
1114 CGM.getTypes().ConvertType(ResultType)));
David Chisnallef6e0f32010-02-03 15:59:02 +00001115 }
1116 if (Sel == ReleaseSel) {
1117 return RValue::get(0);
1118 }
1119 }
David Chisnalldb831942010-05-01 12:37:16 +00001120
David Chisnalldb831942010-05-01 12:37:16 +00001121 llvm::Value *cmd = GetSelector(Builder, Sel);
1122
Fariborz Jahanianb3716ef2009-02-04 20:31:19 +00001123
1124 CallArgList ActualArgs;
1125
Eli Friedman04c9a492011-05-02 17:57:46 +00001126 ActualArgs.add(RValue::get(EnforceType(Builder, Receiver, IdTy)), ASTIdTy);
1127 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
John McCallf85e1932011-06-15 23:02:42 +00001128 ActualArgs.addFrom(CallArgs);
Fariborz Jahanianb3716ef2009-02-04 20:31:19 +00001129
John McCallde5d3c72012-02-17 03:33:10 +00001130 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
Fariborz Jahanianb3716ef2009-02-04 20:31:19 +00001131
Daniel Dunbar5efccb12009-05-04 15:31:17 +00001132 llvm::Value *ReceiverClass = 0;
Chris Lattner48e6e7e2009-05-08 15:39:58 +00001133 if (isCategoryImpl) {
1134 llvm::Constant *classLookupFunction = 0;
Chris Lattner48e6e7e2009-05-08 15:39:58 +00001135 if (IsClassMessage) {
Owen Anderson96e0fc72009-07-29 22:16:19 +00001136 classLookupFunction = CGM.CreateRuntimeFunction(llvm::FunctionType::get(
Jay Foadda549e82011-07-29 13:56:53 +00001137 IdTy, PtrTy, true), "objc_get_meta_class");
Chris Lattner48e6e7e2009-05-08 15:39:58 +00001138 } else {
Owen Anderson96e0fc72009-07-29 22:16:19 +00001139 classLookupFunction = CGM.CreateRuntimeFunction(llvm::FunctionType::get(
Jay Foadda549e82011-07-29 13:56:53 +00001140 IdTy, PtrTy, true), "objc_get_class");
Daniel Dunbar5efccb12009-05-04 15:31:17 +00001141 }
David Chisnalldb831942010-05-01 12:37:16 +00001142 ReceiverClass = Builder.CreateCall(classLookupFunction,
Chris Lattner48e6e7e2009-05-08 15:39:58 +00001143 MakeConstantString(Class->getNameAsString()));
Daniel Dunbar5efccb12009-05-04 15:31:17 +00001144 } else {
Chris Lattner48e6e7e2009-05-08 15:39:58 +00001145 // Set up global aliases for the metaclass or class pointer if they do not
1146 // already exist. These will are forward-references which will be set to
Mike Stumpbb1c8602009-07-31 21:31:32 +00001147 // pointers to the class and metaclass structure created for the runtime
1148 // load function. To send a message to super, we look up the value of the
Chris Lattner48e6e7e2009-05-08 15:39:58 +00001149 // super_class pointer from either the class or metaclass structure.
1150 if (IsClassMessage) {
1151 if (!MetaClassPtrAlias) {
1152 MetaClassPtrAlias = new llvm::GlobalAlias(IdTy,
1153 llvm::GlobalValue::InternalLinkage, ".objc_metaclass_ref" +
1154 Class->getNameAsString(), NULL, &TheModule);
1155 }
1156 ReceiverClass = MetaClassPtrAlias;
1157 } else {
1158 if (!ClassPtrAlias) {
1159 ClassPtrAlias = new llvm::GlobalAlias(IdTy,
1160 llvm::GlobalValue::InternalLinkage, ".objc_class_ref" +
1161 Class->getNameAsString(), NULL, &TheModule);
1162 }
1163 ReceiverClass = ClassPtrAlias;
Daniel Dunbar5efccb12009-05-04 15:31:17 +00001164 }
Chris Lattner71238f62009-04-25 23:19:45 +00001165 }
Daniel Dunbar5efccb12009-05-04 15:31:17 +00001166 // Cast the pointer to a simplified version of the class structure
David Chisnalldb831942010-05-01 12:37:16 +00001167 ReceiverClass = Builder.CreateBitCast(ReceiverClass,
Owen Anderson96e0fc72009-07-29 22:16:19 +00001168 llvm::PointerType::getUnqual(
Chris Lattner7650d952011-06-18 22:49:11 +00001169 llvm::StructType::get(IdTy, IdTy, NULL)));
Daniel Dunbar5efccb12009-05-04 15:31:17 +00001170 // Get the superclass pointer
David Chisnalldb831942010-05-01 12:37:16 +00001171 ReceiverClass = Builder.CreateStructGEP(ReceiverClass, 1);
Daniel Dunbar5efccb12009-05-04 15:31:17 +00001172 // Load the superclass pointer
David Chisnalldb831942010-05-01 12:37:16 +00001173 ReceiverClass = Builder.CreateLoad(ReceiverClass);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001174 // Construct the structure used to look up the IMP
Chris Lattner7650d952011-06-18 22:49:11 +00001175 llvm::StructType *ObjCSuperTy = llvm::StructType::get(
Owen Anderson47a434f2009-08-05 23:18:46 +00001176 Receiver->getType(), IdTy, NULL);
David Chisnalldb831942010-05-01 12:37:16 +00001177 llvm::Value *ObjCSuper = Builder.CreateAlloca(ObjCSuperTy);
Fariborz Jahanianb3716ef2009-02-04 20:31:19 +00001178
David Chisnalldb831942010-05-01 12:37:16 +00001179 Builder.CreateStore(Receiver, Builder.CreateStructGEP(ObjCSuper, 0));
1180 Builder.CreateStore(ReceiverClass, Builder.CreateStructGEP(ObjCSuper, 1));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001181
David Chisnallc7ef4622011-03-23 22:52:06 +00001182 ObjCSuper = EnforceType(Builder, ObjCSuper, PtrToObjCSuperTy);
David Chisnallc7ef4622011-03-23 22:52:06 +00001183
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001184 // Get the IMP
David Chisnallc7ef4622011-03-23 22:52:06 +00001185 llvm::Value *imp = LookupIMPSuper(CGF, ObjCSuper, cmd);
John McCallde5d3c72012-02-17 03:33:10 +00001186 imp = EnforceType(Builder, imp, MSI.MessengerType);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001187
David Chisnalldd5c98f2010-05-01 11:15:56 +00001188 llvm::Value *impMD[] = {
1189 llvm::MDString::get(VMContext, Sel.getAsString()),
1190 llvm::MDString::get(VMContext, Class->getSuperClass()->getNameAsString()),
1191 llvm::ConstantInt::get(llvm::Type::getInt1Ty(VMContext), IsClassMessage)
1192 };
Jay Foad6f141652011-04-21 19:59:12 +00001193 llvm::MDNode *node = llvm::MDNode::get(VMContext, impMD);
David Chisnalldd5c98f2010-05-01 11:15:56 +00001194
David Chisnall4b02afc2010-05-02 13:41:58 +00001195 llvm::Instruction *call;
John McCallde5d3c72012-02-17 03:33:10 +00001196 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs, 0, &call);
David Chisnall4b02afc2010-05-02 13:41:58 +00001197 call->setMetadata(msgSendMDKind, node);
1198 return msgRet;
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001199}
1200
Mike Stump1eb44332009-09-09 15:08:12 +00001201/// Generate code for a message send expression.
David Chisnall9f6614e2011-03-23 16:36:54 +00001202RValue
1203CGObjCGNU::GenerateMessageSend(CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +00001204 ReturnValueSlot Return,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001205 QualType ResultType,
1206 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +00001207 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001208 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +00001209 const ObjCInterfaceDecl *Class,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001210 const ObjCMethodDecl *Method) {
David Chisnall0bbe0cf2011-05-28 14:09:01 +00001211 CGBuilderTy &Builder = CGF.Builder;
1212
David Chisnall664b7c72010-04-27 15:08:48 +00001213 // Strip out message sends to retain / release in GC mode
David Blaikie4e4d0842012-03-11 07:00:24 +00001214 if (CGM.getLangOpts().getGC() == LangOptions::GCOnly) {
David Chisnallef6e0f32010-02-03 15:59:02 +00001215 if (Sel == RetainSel || Sel == AutoreleaseSel) {
David Chisnall0bbe0cf2011-05-28 14:09:01 +00001216 return RValue::get(EnforceType(Builder, Receiver,
1217 CGM.getTypes().ConvertType(ResultType)));
David Chisnallef6e0f32010-02-03 15:59:02 +00001218 }
1219 if (Sel == ReleaseSel) {
1220 return RValue::get(0);
1221 }
1222 }
David Chisnall664b7c72010-04-27 15:08:48 +00001223
David Chisnall664b7c72010-04-27 15:08:48 +00001224 // If the return type is something that goes in an integer register, the
1225 // runtime will handle 0 returns. For other cases, we fill in the 0 value
1226 // ourselves.
1227 //
1228 // The language spec says the result of this kind of message send is
1229 // undefined, but lots of people seem to have forgotten to read that
1230 // paragraph and insist on sending messages to nil that have structure
1231 // returns. With GCC, this generates a random return value (whatever happens
1232 // to be on the stack / in those registers at the time) on most platforms,
David Chisnallc7ef4622011-03-23 22:52:06 +00001233 // and generates an illegal instruction trap on SPARC. With LLVM it corrupts
1234 // the stack.
1235 bool isPointerSizedReturn = (ResultType->isAnyPointerType() ||
1236 ResultType->isIntegralOrEnumerationType() || ResultType->isVoidType());
David Chisnall664b7c72010-04-27 15:08:48 +00001237
1238 llvm::BasicBlock *startBB = 0;
1239 llvm::BasicBlock *messageBB = 0;
David Chisnalla54da052010-05-20 13:45:48 +00001240 llvm::BasicBlock *continueBB = 0;
David Chisnall664b7c72010-04-27 15:08:48 +00001241
1242 if (!isPointerSizedReturn) {
1243 startBB = Builder.GetInsertBlock();
1244 messageBB = CGF.createBasicBlock("msgSend");
David Chisnalla54da052010-05-20 13:45:48 +00001245 continueBB = CGF.createBasicBlock("continue");
David Chisnall664b7c72010-04-27 15:08:48 +00001246
1247 llvm::Value *isNil = Builder.CreateICmpEQ(Receiver,
1248 llvm::Constant::getNullValue(Receiver->getType()));
David Chisnalla54da052010-05-20 13:45:48 +00001249 Builder.CreateCondBr(isNil, continueBB, messageBB);
David Chisnall664b7c72010-04-27 15:08:48 +00001250 CGF.EmitBlock(messageBB);
1251 }
1252
David Chisnall0f436562009-08-17 16:35:33 +00001253 IdTy = cast<llvm::PointerType>(CGM.getTypes().ConvertType(ASTIdTy));
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001254 llvm::Value *cmd;
1255 if (Method)
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001256 cmd = GetSelector(Builder, Method);
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +00001257 else
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001258 cmd = GetSelector(Builder, Sel);
David Chisnallc7ef4622011-03-23 22:52:06 +00001259 cmd = EnforceType(Builder, cmd, SelectorTy);
1260 Receiver = EnforceType(Builder, Receiver, IdTy);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001261
David Chisnallc7ef4622011-03-23 22:52:06 +00001262 llvm::Value *impMD[] = {
1263 llvm::MDString::get(VMContext, Sel.getAsString()),
1264 llvm::MDString::get(VMContext, Class ? Class->getNameAsString() :""),
1265 llvm::ConstantInt::get(llvm::Type::getInt1Ty(VMContext), Class!=0)
1266 };
Jay Foad6f141652011-04-21 19:59:12 +00001267 llvm::MDNode *node = llvm::MDNode::get(VMContext, impMD);
David Chisnallc7ef4622011-03-23 22:52:06 +00001268
David Chisnallc7ef4622011-03-23 22:52:06 +00001269 CallArgList ActualArgs;
Eli Friedman04c9a492011-05-02 17:57:46 +00001270 ActualArgs.add(RValue::get(Receiver), ASTIdTy);
1271 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
John McCallf85e1932011-06-15 23:02:42 +00001272 ActualArgs.addFrom(CallArgs);
John McCallde5d3c72012-02-17 03:33:10 +00001273
1274 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1275
David Chisnall89c30042011-10-24 14:07:03 +00001276 // Get the IMP to call
1277 llvm::Value *imp;
1278
1279 // If we have non-legacy dispatch specified, we try using the objc_msgSend()
1280 // functions. These are not supported on all platforms (or all runtimes on a
1281 // given platform), so we
1282 switch (CGM.getCodeGenOpts().getObjCDispatchMethod()) {
David Chisnall89c30042011-10-24 14:07:03 +00001283 case CodeGenOptions::Legacy:
David Chisnall89c30042011-10-24 14:07:03 +00001284 imp = LookupIMP(CGF, Receiver, cmd, node);
1285 break;
1286 case CodeGenOptions::Mixed:
David Chisnall89c30042011-10-24 14:07:03 +00001287 case CodeGenOptions::NonLegacy:
David Chisnall6f3887e2011-10-28 17:55:06 +00001288 if (CGM.ReturnTypeUsesFPRet(ResultType)) {
1289 imp = CGM.CreateRuntimeFunction(llvm::FunctionType::get(IdTy, IdTy, true),
1290 "objc_msgSend_fpret");
John McCallde5d3c72012-02-17 03:33:10 +00001291 } else if (CGM.ReturnTypeUsesSRet(MSI.CallInfo)) {
David Chisnall89c30042011-10-24 14:07:03 +00001292 // The actual types here don't matter - we're going to bitcast the
1293 // function anyway
1294 imp = CGM.CreateRuntimeFunction(llvm::FunctionType::get(IdTy, IdTy, true),
1295 "objc_msgSend_stret");
1296 } else {
1297 imp = CGM.CreateRuntimeFunction(llvm::FunctionType::get(IdTy, IdTy, true),
1298 "objc_msgSend");
1299 }
1300 }
1301
David Chisnall403bc3f2011-12-01 18:40:09 +00001302 // Reset the receiver in case the lookup modified it
1303 ActualArgs[0] = CallArg(RValue::get(Receiver), ASTIdTy, false);
David Chisnall89c30042011-10-24 14:07:03 +00001304
John McCallde5d3c72012-02-17 03:33:10 +00001305 imp = EnforceType(Builder, imp, MSI.MessengerType);
David Chisnall63e742b2010-05-01 12:56:56 +00001306
David Chisnall4b02afc2010-05-02 13:41:58 +00001307 llvm::Instruction *call;
John McCallde5d3c72012-02-17 03:33:10 +00001308 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs,
David Chisnall4b02afc2010-05-02 13:41:58 +00001309 0, &call);
1310 call->setMetadata(msgSendMDKind, node);
David Chisnall664b7c72010-04-27 15:08:48 +00001311
David Chisnalla54da052010-05-20 13:45:48 +00001312
David Chisnall664b7c72010-04-27 15:08:48 +00001313 if (!isPointerSizedReturn) {
David Chisnalla54da052010-05-20 13:45:48 +00001314 messageBB = CGF.Builder.GetInsertBlock();
1315 CGF.Builder.CreateBr(continueBB);
1316 CGF.EmitBlock(continueBB);
David Chisnall664b7c72010-04-27 15:08:48 +00001317 if (msgRet.isScalar()) {
1318 llvm::Value *v = msgRet.getScalarVal();
Jay Foadbbf3bac2011-03-30 11:28:58 +00001319 llvm::PHINode *phi = Builder.CreatePHI(v->getType(), 2);
David Chisnall664b7c72010-04-27 15:08:48 +00001320 phi->addIncoming(v, messageBB);
1321 phi->addIncoming(llvm::Constant::getNullValue(v->getType()), startBB);
1322 msgRet = RValue::get(phi);
1323 } else if (msgRet.isAggregate()) {
1324 llvm::Value *v = msgRet.getAggregateAddr();
Jay Foadbbf3bac2011-03-30 11:28:58 +00001325 llvm::PHINode *phi = Builder.CreatePHI(v->getType(), 2);
Chris Lattner2acc6e32011-07-18 04:24:23 +00001326 llvm::PointerType *RetTy = cast<llvm::PointerType>(v->getType());
David Chisnall866163b2010-04-30 13:36:12 +00001327 llvm::AllocaInst *NullVal =
1328 CGF.CreateTempAlloca(RetTy->getElementType(), "null");
David Chisnall664b7c72010-04-27 15:08:48 +00001329 CGF.InitTempAlloca(NullVal,
1330 llvm::Constant::getNullValue(RetTy->getElementType()));
1331 phi->addIncoming(v, messageBB);
1332 phi->addIncoming(NullVal, startBB);
1333 msgRet = RValue::getAggregate(phi);
1334 } else /* isComplex() */ {
1335 std::pair<llvm::Value*,llvm::Value*> v = msgRet.getComplexVal();
Jay Foadbbf3bac2011-03-30 11:28:58 +00001336 llvm::PHINode *phi = Builder.CreatePHI(v.first->getType(), 2);
David Chisnall664b7c72010-04-27 15:08:48 +00001337 phi->addIncoming(v.first, messageBB);
1338 phi->addIncoming(llvm::Constant::getNullValue(v.first->getType()),
1339 startBB);
Jay Foadbbf3bac2011-03-30 11:28:58 +00001340 llvm::PHINode *phi2 = Builder.CreatePHI(v.second->getType(), 2);
David Chisnall664b7c72010-04-27 15:08:48 +00001341 phi2->addIncoming(v.second, messageBB);
1342 phi2->addIncoming(llvm::Constant::getNullValue(v.second->getType()),
1343 startBB);
1344 msgRet = RValue::getComplex(phi, phi2);
1345 }
1346 }
1347 return msgRet;
Chris Lattner0f984262008-03-01 08:50:34 +00001348}
1349
Mike Stump1eb44332009-09-09 15:08:12 +00001350/// Generates a MethodList. Used in construction of a objc_class and
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001351/// objc_category structures.
Bill Wendling795b1002012-02-22 09:30:11 +00001352llvm::Constant *CGObjCGNU::
1353GenerateMethodList(const StringRef &ClassName,
1354 const StringRef &CategoryName,
1355 ArrayRef<Selector> MethodSels,
1356 ArrayRef<llvm::Constant *> MethodTypes,
1357 bool isClassMethodList) {
David Chisnall0f436562009-08-17 16:35:33 +00001358 if (MethodSels.empty())
1359 return NULLPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001360 // Get the method structure type.
Chris Lattner7650d952011-06-18 22:49:11 +00001361 llvm::StructType *ObjCMethodTy = llvm::StructType::get(
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001362 PtrToInt8Ty, // Really a selector, but the runtime creates it us.
1363 PtrToInt8Ty, // Method types
David Chisnallc7ef4622011-03-23 22:52:06 +00001364 IMPTy, //Method pointer
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001365 NULL);
1366 std::vector<llvm::Constant*> Methods;
1367 std::vector<llvm::Constant*> Elements;
1368 for (unsigned int i = 0, e = MethodTypes.size(); i < e; ++i) {
1369 Elements.clear();
David Chisnall9f6614e2011-03-23 16:36:54 +00001370 llvm::Constant *Method =
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001371 TheModule.getFunction(SymbolNameForMethod(ClassName, CategoryName,
David Chisnall9f6614e2011-03-23 16:36:54 +00001372 MethodSels[i],
1373 isClassMethodList));
1374 assert(Method && "Can't generate metadata for method that doesn't exist");
1375 llvm::Constant *C = MakeConstantString(MethodSels[i].getAsString());
1376 Elements.push_back(C);
1377 Elements.push_back(MethodTypes[i]);
1378 Method = llvm::ConstantExpr::getBitCast(Method,
David Chisnallc7ef4622011-03-23 22:52:06 +00001379 IMPTy);
David Chisnall9f6614e2011-03-23 16:36:54 +00001380 Elements.push_back(Method);
1381 Methods.push_back(llvm::ConstantStruct::get(ObjCMethodTy, Elements));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001382 }
1383
1384 // Array of method structures
Owen Anderson96e0fc72009-07-29 22:16:19 +00001385 llvm::ArrayType *ObjCMethodArrayTy = llvm::ArrayType::get(ObjCMethodTy,
Fariborz Jahanian1e64a952009-05-17 16:49:27 +00001386 Methods.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00001387 llvm::Constant *MethodArray = llvm::ConstantArray::get(ObjCMethodArrayTy,
Chris Lattnerfba67632008-06-26 04:52:29 +00001388 Methods);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001389
1390 // Structure containing list pointer, array and array count
Chris Lattnerc1c20112011-08-12 17:43:31 +00001391 llvm::StructType *ObjCMethodListTy = llvm::StructType::create(VMContext);
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001392 llvm::Type *NextPtrTy = llvm::PointerType::getUnqual(ObjCMethodListTy);
1393 ObjCMethodListTy->setBody(
Mike Stump1eb44332009-09-09 15:08:12 +00001394 NextPtrTy,
1395 IntTy,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001396 ObjCMethodArrayTy,
1397 NULL);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001398
1399 Methods.clear();
Owen Anderson03e20502009-07-30 23:11:26 +00001400 Methods.push_back(llvm::ConstantPointerNull::get(
Owen Anderson96e0fc72009-07-29 22:16:19 +00001401 llvm::PointerType::getUnqual(ObjCMethodListTy)));
David Chisnall917b28b2011-10-04 15:35:30 +00001402 Methods.push_back(llvm::ConstantInt::get(Int32Ty, MethodTypes.size()));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001403 Methods.push_back(MethodArray);
Mike Stump1eb44332009-09-09 15:08:12 +00001404
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001405 // Create an instance of the structure
1406 return MakeGlobal(ObjCMethodListTy, Methods, ".objc_method_list");
1407}
1408
1409/// Generates an IvarList. Used in construction of a objc_class.
Bill Wendling795b1002012-02-22 09:30:11 +00001410llvm::Constant *CGObjCGNU::
1411GenerateIvarList(ArrayRef<llvm::Constant *> IvarNames,
1412 ArrayRef<llvm::Constant *> IvarTypes,
1413 ArrayRef<llvm::Constant *> IvarOffsets) {
David Chisnall18044632009-11-16 19:05:54 +00001414 if (IvarNames.size() == 0)
1415 return NULLPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001416 // Get the method structure type.
Chris Lattner7650d952011-06-18 22:49:11 +00001417 llvm::StructType *ObjCIvarTy = llvm::StructType::get(
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001418 PtrToInt8Ty,
1419 PtrToInt8Ty,
1420 IntTy,
1421 NULL);
1422 std::vector<llvm::Constant*> Ivars;
1423 std::vector<llvm::Constant*> Elements;
1424 for (unsigned int i = 0, e = IvarNames.size() ; i < e ; i++) {
1425 Elements.clear();
David Chisnall8a5a9aa2009-08-31 16:41:57 +00001426 Elements.push_back(IvarNames[i]);
1427 Elements.push_back(IvarTypes[i]);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001428 Elements.push_back(IvarOffsets[i]);
Owen Anderson08e25242009-07-27 22:29:56 +00001429 Ivars.push_back(llvm::ConstantStruct::get(ObjCIvarTy, Elements));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001430 }
1431
1432 // Array of method structures
Owen Anderson96e0fc72009-07-29 22:16:19 +00001433 llvm::ArrayType *ObjCIvarArrayTy = llvm::ArrayType::get(ObjCIvarTy,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001434 IvarNames.size());
1435
Mike Stump1eb44332009-09-09 15:08:12 +00001436
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001437 Elements.clear();
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001438 Elements.push_back(llvm::ConstantInt::get(IntTy, (int)IvarNames.size()));
Owen Anderson7db6d832009-07-28 18:33:04 +00001439 Elements.push_back(llvm::ConstantArray::get(ObjCIvarArrayTy, Ivars));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001440 // Structure containing array and array count
Chris Lattner7650d952011-06-18 22:49:11 +00001441 llvm::StructType *ObjCIvarListTy = llvm::StructType::get(IntTy,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001442 ObjCIvarArrayTy,
1443 NULL);
1444
1445 // Create an instance of the structure
1446 return MakeGlobal(ObjCIvarListTy, Elements, ".objc_ivar_list");
1447}
1448
1449/// Generate a class structure
1450llvm::Constant *CGObjCGNU::GenerateClassStructure(
1451 llvm::Constant *MetaClass,
1452 llvm::Constant *SuperClass,
1453 unsigned info,
Chris Lattnerd002cc62008-06-26 04:47:04 +00001454 const char *Name,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001455 llvm::Constant *Version,
1456 llvm::Constant *InstanceSize,
1457 llvm::Constant *IVars,
1458 llvm::Constant *Methods,
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001459 llvm::Constant *Protocols,
1460 llvm::Constant *IvarOffsets,
David Chisnall8c757f92010-04-28 14:29:56 +00001461 llvm::Constant *Properties,
David Chisnall917b28b2011-10-04 15:35:30 +00001462 llvm::Constant *StrongIvarBitmap,
1463 llvm::Constant *WeakIvarBitmap,
David Chisnall8c757f92010-04-28 14:29:56 +00001464 bool isMeta) {
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001465 // Set up the class structure
1466 // Note: Several of these are char*s when they should be ids. This is
1467 // because the runtime performs this translation on load.
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001468 //
1469 // Fields marked New ABI are part of the GNUstep runtime. We emit them
1470 // anyway; the classes will still work with the GNU runtime, they will just
1471 // be ignored.
Chris Lattner7650d952011-06-18 22:49:11 +00001472 llvm::StructType *ClassTy = llvm::StructType::get(
David Chisnall13df6f62012-01-04 12:02:13 +00001473 PtrToInt8Ty, // isa
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001474 PtrToInt8Ty, // super_class
1475 PtrToInt8Ty, // name
1476 LongTy, // version
1477 LongTy, // info
1478 LongTy, // instance_size
1479 IVars->getType(), // ivars
1480 Methods->getType(), // methods
Mike Stump1eb44332009-09-09 15:08:12 +00001481 // These are all filled in by the runtime, so we pretend
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001482 PtrTy, // dtable
1483 PtrTy, // subclass_list
1484 PtrTy, // sibling_class
1485 PtrTy, // protocols
1486 PtrTy, // gc_object_type
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001487 // New ABI:
1488 LongTy, // abi_version
1489 IvarOffsets->getType(), // ivar_offsets
1490 Properties->getType(), // properties
David Chisnall9d06ba82011-10-25 10:12:21 +00001491 IntPtrTy, // strong_pointers
1492 IntPtrTy, // weak_pointers
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001493 NULL);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001494 llvm::Constant *Zero = llvm::ConstantInt::get(LongTy, 0);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001495 // Fill in the structure
1496 std::vector<llvm::Constant*> Elements;
Owen Anderson3c4972d2009-07-29 18:54:39 +00001497 Elements.push_back(llvm::ConstantExpr::getBitCast(MetaClass, PtrToInt8Ty));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001498 Elements.push_back(SuperClass);
Chris Lattnerd002cc62008-06-26 04:47:04 +00001499 Elements.push_back(MakeConstantString(Name, ".class_name"));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001500 Elements.push_back(Zero);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001501 Elements.push_back(llvm::ConstantInt::get(LongTy, info));
David Chisnall05f3a502011-02-21 23:47:40 +00001502 if (isMeta) {
Micah Villmow25a6a842012-10-08 16:25:52 +00001503 llvm::DataLayout td(&TheModule);
Ken Dycke0afc892011-04-22 17:59:22 +00001504 Elements.push_back(
1505 llvm::ConstantInt::get(LongTy,
1506 td.getTypeSizeInBits(ClassTy) /
1507 CGM.getContext().getCharWidth()));
David Chisnall05f3a502011-02-21 23:47:40 +00001508 } else
1509 Elements.push_back(InstanceSize);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001510 Elements.push_back(IVars);
1511 Elements.push_back(Methods);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001512 Elements.push_back(NULLPtr);
1513 Elements.push_back(NULLPtr);
1514 Elements.push_back(NULLPtr);
Owen Anderson3c4972d2009-07-29 18:54:39 +00001515 Elements.push_back(llvm::ConstantExpr::getBitCast(Protocols, PtrTy));
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001516 Elements.push_back(NULLPtr);
David Chisnall917b28b2011-10-04 15:35:30 +00001517 Elements.push_back(llvm::ConstantInt::get(LongTy, 1));
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001518 Elements.push_back(IvarOffsets);
1519 Elements.push_back(Properties);
David Chisnall917b28b2011-10-04 15:35:30 +00001520 Elements.push_back(StrongIvarBitmap);
1521 Elements.push_back(WeakIvarBitmap);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001522 // Create an instance of the structure
David Chisnall41d63ed2010-01-08 00:14:31 +00001523 // This is now an externally visible symbol, so that we can speed up class
David Chisnall13df6f62012-01-04 12:02:13 +00001524 // messages in the next ABI. We may already have some weak references to
1525 // this, so check and fix them properly.
1526 std::string ClassSym((isMeta ? "_OBJC_METACLASS_": "_OBJC_CLASS_") +
1527 std::string(Name));
1528 llvm::GlobalVariable *ClassRef = TheModule.getNamedGlobal(ClassSym);
1529 llvm::Constant *Class = MakeGlobal(ClassTy, Elements, ClassSym,
1530 llvm::GlobalValue::ExternalLinkage);
1531 if (ClassRef) {
1532 ClassRef->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(Class,
1533 ClassRef->getType()));
1534 ClassRef->removeFromParent();
1535 Class->setName(ClassSym);
1536 }
1537 return Class;
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001538}
1539
Bill Wendling795b1002012-02-22 09:30:11 +00001540llvm::Constant *CGObjCGNU::
1541GenerateProtocolMethodList(ArrayRef<llvm::Constant *> MethodNames,
1542 ArrayRef<llvm::Constant *> MethodTypes) {
Mike Stump1eb44332009-09-09 15:08:12 +00001543 // Get the method structure type.
Chris Lattner7650d952011-06-18 22:49:11 +00001544 llvm::StructType *ObjCMethodDescTy = llvm::StructType::get(
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001545 PtrToInt8Ty, // Really a selector, but the runtime does the casting for us.
1546 PtrToInt8Ty,
1547 NULL);
1548 std::vector<llvm::Constant*> Methods;
1549 std::vector<llvm::Constant*> Elements;
1550 for (unsigned int i = 0, e = MethodTypes.size() ; i < e ; i++) {
1551 Elements.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001552 Elements.push_back(MethodNames[i]);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00001553 Elements.push_back(MethodTypes[i]);
Owen Anderson08e25242009-07-27 22:29:56 +00001554 Methods.push_back(llvm::ConstantStruct::get(ObjCMethodDescTy, Elements));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001555 }
Owen Anderson96e0fc72009-07-29 22:16:19 +00001556 llvm::ArrayType *ObjCMethodArrayTy = llvm::ArrayType::get(ObjCMethodDescTy,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001557 MethodNames.size());
Owen Anderson7db6d832009-07-28 18:33:04 +00001558 llvm::Constant *Array = llvm::ConstantArray::get(ObjCMethodArrayTy,
Mike Stumpbb1c8602009-07-31 21:31:32 +00001559 Methods);
Chris Lattner7650d952011-06-18 22:49:11 +00001560 llvm::StructType *ObjCMethodDescListTy = llvm::StructType::get(
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001561 IntTy, ObjCMethodArrayTy, NULL);
1562 Methods.clear();
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001563 Methods.push_back(llvm::ConstantInt::get(IntTy, MethodNames.size()));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001564 Methods.push_back(Array);
1565 return MakeGlobal(ObjCMethodDescListTy, Methods, ".objc_method_list");
1566}
Mike Stumpbb1c8602009-07-31 21:31:32 +00001567
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001568// Create the protocol list structure used in classes, categories and so on
Bill Wendling795b1002012-02-22 09:30:11 +00001569llvm::Constant *CGObjCGNU::GenerateProtocolList(ArrayRef<std::string>Protocols){
Owen Anderson96e0fc72009-07-29 22:16:19 +00001570 llvm::ArrayType *ProtocolArrayTy = llvm::ArrayType::get(PtrToInt8Ty,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001571 Protocols.size());
Chris Lattner7650d952011-06-18 22:49:11 +00001572 llvm::StructType *ProtocolListTy = llvm::StructType::get(
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001573 PtrTy, //Should be a recurisve pointer, but it's always NULL here.
David Chisnall8fac25d2010-12-26 22:13:16 +00001574 SizeTy,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001575 ProtocolArrayTy,
1576 NULL);
Mike Stump1eb44332009-09-09 15:08:12 +00001577 std::vector<llvm::Constant*> Elements;
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001578 for (const std::string *iter = Protocols.begin(), *endIter = Protocols.end();
1579 iter != endIter ; iter++) {
David Chisnallff80fab2009-11-20 14:50:59 +00001580 llvm::Constant *protocol = 0;
1581 llvm::StringMap<llvm::Constant*>::iterator value =
1582 ExistingProtocols.find(*iter);
1583 if (value == ExistingProtocols.end()) {
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001584 protocol = GenerateEmptyProtocol(*iter);
David Chisnallff80fab2009-11-20 14:50:59 +00001585 } else {
1586 protocol = value->getValue();
1587 }
Owen Anderson3c4972d2009-07-29 18:54:39 +00001588 llvm::Constant *Ptr = llvm::ConstantExpr::getBitCast(protocol,
Owen Andersona1cf15f2009-07-14 23:10:40 +00001589 PtrToInt8Ty);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001590 Elements.push_back(Ptr);
1591 }
Owen Anderson7db6d832009-07-28 18:33:04 +00001592 llvm::Constant * ProtocolArray = llvm::ConstantArray::get(ProtocolArrayTy,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001593 Elements);
1594 Elements.clear();
1595 Elements.push_back(NULLPtr);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001596 Elements.push_back(llvm::ConstantInt::get(LongTy, Protocols.size()));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001597 Elements.push_back(ProtocolArray);
1598 return MakeGlobal(ProtocolListTy, Elements, ".objc_protocol_list");
1599}
1600
Mike Stump1eb44332009-09-09 15:08:12 +00001601llvm::Value *CGObjCGNU::GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001602 const ObjCProtocolDecl *PD) {
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001603 llvm::Value *protocol = ExistingProtocols[PD->getNameAsString()];
Chris Lattner2acc6e32011-07-18 04:24:23 +00001604 llvm::Type *T =
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001605 CGM.getTypes().ConvertType(CGM.getContext().getObjCProtoType());
Owen Anderson96e0fc72009-07-29 22:16:19 +00001606 return Builder.CreateBitCast(protocol, llvm::PointerType::getUnqual(T));
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001607}
1608
1609llvm::Constant *CGObjCGNU::GenerateEmptyProtocol(
1610 const std::string &ProtocolName) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001611 SmallVector<std::string, 0> EmptyStringVector;
1612 SmallVector<llvm::Constant*, 0> EmptyConstantVector;
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001613
1614 llvm::Constant *ProtocolList = GenerateProtocolList(EmptyStringVector);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001615 llvm::Constant *MethodList =
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001616 GenerateProtocolMethodList(EmptyConstantVector, EmptyConstantVector);
1617 // Protocols are objects containing lists of the methods implemented and
1618 // protocols adopted.
Chris Lattner7650d952011-06-18 22:49:11 +00001619 llvm::StructType *ProtocolTy = llvm::StructType::get(IdTy,
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001620 PtrToInt8Ty,
1621 ProtocolList->getType(),
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001622 MethodList->getType(),
1623 MethodList->getType(),
1624 MethodList->getType(),
1625 MethodList->getType(),
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001626 NULL);
Mike Stump1eb44332009-09-09 15:08:12 +00001627 std::vector<llvm::Constant*> Elements;
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001628 // The isa pointer must be set to a magic number so the runtime knows it's
1629 // the correct layout.
Owen Anderson3c4972d2009-07-29 18:54:39 +00001630 Elements.push_back(llvm::ConstantExpr::getIntToPtr(
David Chisnall917b28b2011-10-04 15:35:30 +00001631 llvm::ConstantInt::get(Int32Ty, ProtocolVersion), IdTy));
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001632 Elements.push_back(MakeConstantString(ProtocolName, ".objc_protocol_name"));
1633 Elements.push_back(ProtocolList);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001634 Elements.push_back(MethodList);
1635 Elements.push_back(MethodList);
1636 Elements.push_back(MethodList);
1637 Elements.push_back(MethodList);
Fariborz Jahanianf8c4f542009-03-31 18:27:22 +00001638 return MakeGlobal(ProtocolTy, Elements, ".objc_protocol");
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001639}
1640
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001641void CGObjCGNU::GenerateProtocol(const ObjCProtocolDecl *PD) {
1642 ASTContext &Context = CGM.getContext();
Chris Lattner8ec03f52008-11-24 03:54:41 +00001643 std::string ProtocolName = PD->getNameAsString();
Douglas Gregor1d784b22012-01-01 19:51:50 +00001644
1645 // Use the protocol definition, if there is one.
1646 if (const ObjCProtocolDecl *Def = PD->getDefinition())
1647 PD = Def;
1648
Chris Lattner5f9e2722011-07-23 10:55:15 +00001649 SmallVector<std::string, 16> Protocols;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001650 for (ObjCProtocolDecl::protocol_iterator PI = PD->protocol_begin(),
1651 E = PD->protocol_end(); PI != E; ++PI)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001652 Protocols.push_back((*PI)->getNameAsString());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001653 SmallVector<llvm::Constant*, 16> InstanceMethodNames;
1654 SmallVector<llvm::Constant*, 16> InstanceMethodTypes;
1655 SmallVector<llvm::Constant*, 16> OptionalInstanceMethodNames;
1656 SmallVector<llvm::Constant*, 16> OptionalInstanceMethodTypes;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001657 for (ObjCProtocolDecl::instmeth_iterator iter = PD->instmeth_begin(),
1658 E = PD->instmeth_end(); iter != E; iter++) {
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001659 std::string TypeStr;
1660 Context.getObjCEncodingForMethodDecl(*iter, TypeStr);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001661 if ((*iter)->getImplementationControl() == ObjCMethodDecl::Optional) {
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001662 OptionalInstanceMethodNames.push_back(
1663 MakeConstantString((*iter)->getSelector().getAsString()));
1664 OptionalInstanceMethodTypes.push_back(MakeConstantString(TypeStr));
David Chisnalla904e012012-08-23 12:17:21 +00001665 } else {
1666 InstanceMethodNames.push_back(
1667 MakeConstantString((*iter)->getSelector().getAsString()));
1668 InstanceMethodTypes.push_back(MakeConstantString(TypeStr));
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001669 }
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001670 }
1671 // Collect information about class methods:
Chris Lattner5f9e2722011-07-23 10:55:15 +00001672 SmallVector<llvm::Constant*, 16> ClassMethodNames;
1673 SmallVector<llvm::Constant*, 16> ClassMethodTypes;
1674 SmallVector<llvm::Constant*, 16> OptionalClassMethodNames;
1675 SmallVector<llvm::Constant*, 16> OptionalClassMethodTypes;
Mike Stump1eb44332009-09-09 15:08:12 +00001676 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001677 iter = PD->classmeth_begin(), endIter = PD->classmeth_end();
1678 iter != endIter ; iter++) {
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001679 std::string TypeStr;
1680 Context.getObjCEncodingForMethodDecl((*iter),TypeStr);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001681 if ((*iter)->getImplementationControl() == ObjCMethodDecl::Optional) {
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001682 OptionalClassMethodNames.push_back(
1683 MakeConstantString((*iter)->getSelector().getAsString()));
1684 OptionalClassMethodTypes.push_back(MakeConstantString(TypeStr));
David Chisnalla904e012012-08-23 12:17:21 +00001685 } else {
1686 ClassMethodNames.push_back(
1687 MakeConstantString((*iter)->getSelector().getAsString()));
1688 ClassMethodTypes.push_back(MakeConstantString(TypeStr));
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001689 }
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +00001690 }
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001691
1692 llvm::Constant *ProtocolList = GenerateProtocolList(Protocols);
1693 llvm::Constant *InstanceMethodList =
1694 GenerateProtocolMethodList(InstanceMethodNames, InstanceMethodTypes);
1695 llvm::Constant *ClassMethodList =
1696 GenerateProtocolMethodList(ClassMethodNames, ClassMethodTypes);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001697 llvm::Constant *OptionalInstanceMethodList =
1698 GenerateProtocolMethodList(OptionalInstanceMethodNames,
1699 OptionalInstanceMethodTypes);
1700 llvm::Constant *OptionalClassMethodList =
1701 GenerateProtocolMethodList(OptionalClassMethodNames,
1702 OptionalClassMethodTypes);
1703
1704 // Property metadata: name, attributes, isSynthesized, setter name, setter
1705 // types, getter name, getter types.
1706 // The isSynthesized value is always set to 0 in a protocol. It exists to
1707 // simplify the runtime library by allowing it to use the same data
1708 // structures for protocol metadata everywhere.
Chris Lattner7650d952011-06-18 22:49:11 +00001709 llvm::StructType *PropertyMetadataTy = llvm::StructType::get(
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001710 PtrToInt8Ty, Int8Ty, Int8Ty, PtrToInt8Ty, PtrToInt8Ty, PtrToInt8Ty,
1711 PtrToInt8Ty, NULL);
1712 std::vector<llvm::Constant*> Properties;
1713 std::vector<llvm::Constant*> OptionalProperties;
1714
1715 // Add all of the property methods need adding to the method list and to the
1716 // property metadata list.
1717 for (ObjCContainerDecl::prop_iterator
1718 iter = PD->prop_begin(), endIter = PD->prop_end();
1719 iter != endIter ; iter++) {
1720 std::vector<llvm::Constant*> Fields;
David Blaikie581deb32012-06-06 20:45:41 +00001721 ObjCPropertyDecl *property = *iter;
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001722
David Chisnall891dac72012-10-16 15:11:55 +00001723
1724 Fields.push_back(MakePropertyEncodingString(property, PD));
1725
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001726 Fields.push_back(llvm::ConstantInt::get(Int8Ty,
1727 property->getPropertyAttributes()));
1728 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0));
1729 if (ObjCMethodDecl *getter = property->getGetterMethodDecl()) {
1730 std::string TypeStr;
1731 Context.getObjCEncodingForMethodDecl(getter,TypeStr);
1732 llvm::Constant *TypeEncoding = MakeConstantString(TypeStr);
1733 InstanceMethodTypes.push_back(TypeEncoding);
1734 Fields.push_back(MakeConstantString(getter->getSelector().getAsString()));
1735 Fields.push_back(TypeEncoding);
1736 } else {
1737 Fields.push_back(NULLPtr);
1738 Fields.push_back(NULLPtr);
1739 }
1740 if (ObjCMethodDecl *setter = property->getSetterMethodDecl()) {
1741 std::string TypeStr;
1742 Context.getObjCEncodingForMethodDecl(setter,TypeStr);
1743 llvm::Constant *TypeEncoding = MakeConstantString(TypeStr);
1744 InstanceMethodTypes.push_back(TypeEncoding);
1745 Fields.push_back(MakeConstantString(setter->getSelector().getAsString()));
1746 Fields.push_back(TypeEncoding);
1747 } else {
1748 Fields.push_back(NULLPtr);
1749 Fields.push_back(NULLPtr);
1750 }
1751 if (property->getPropertyImplementation() == ObjCPropertyDecl::Optional) {
1752 OptionalProperties.push_back(llvm::ConstantStruct::get(PropertyMetadataTy, Fields));
1753 } else {
1754 Properties.push_back(llvm::ConstantStruct::get(PropertyMetadataTy, Fields));
1755 }
1756 }
1757 llvm::Constant *PropertyArray = llvm::ConstantArray::get(
1758 llvm::ArrayType::get(PropertyMetadataTy, Properties.size()), Properties);
1759 llvm::Constant* PropertyListInitFields[] =
1760 {llvm::ConstantInt::get(IntTy, Properties.size()), NULLPtr, PropertyArray};
1761
1762 llvm::Constant *PropertyListInit =
Chris Lattnerc5cbb902011-06-20 04:01:35 +00001763 llvm::ConstantStruct::getAnon(PropertyListInitFields);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001764 llvm::Constant *PropertyList = new llvm::GlobalVariable(TheModule,
1765 PropertyListInit->getType(), false, llvm::GlobalValue::InternalLinkage,
1766 PropertyListInit, ".objc_property_list");
1767
1768 llvm::Constant *OptionalPropertyArray =
1769 llvm::ConstantArray::get(llvm::ArrayType::get(PropertyMetadataTy,
1770 OptionalProperties.size()) , OptionalProperties);
1771 llvm::Constant* OptionalPropertyListInitFields[] = {
1772 llvm::ConstantInt::get(IntTy, OptionalProperties.size()), NULLPtr,
1773 OptionalPropertyArray };
1774
1775 llvm::Constant *OptionalPropertyListInit =
Chris Lattnerc5cbb902011-06-20 04:01:35 +00001776 llvm::ConstantStruct::getAnon(OptionalPropertyListInitFields);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001777 llvm::Constant *OptionalPropertyList = new llvm::GlobalVariable(TheModule,
1778 OptionalPropertyListInit->getType(), false,
1779 llvm::GlobalValue::InternalLinkage, OptionalPropertyListInit,
1780 ".objc_property_list");
1781
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001782 // Protocols are objects containing lists of the methods implemented and
1783 // protocols adopted.
Chris Lattner7650d952011-06-18 22:49:11 +00001784 llvm::StructType *ProtocolTy = llvm::StructType::get(IdTy,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001785 PtrToInt8Ty,
1786 ProtocolList->getType(),
1787 InstanceMethodList->getType(),
1788 ClassMethodList->getType(),
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001789 OptionalInstanceMethodList->getType(),
1790 OptionalClassMethodList->getType(),
1791 PropertyList->getType(),
1792 OptionalPropertyList->getType(),
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001793 NULL);
Mike Stump1eb44332009-09-09 15:08:12 +00001794 std::vector<llvm::Constant*> Elements;
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001795 // The isa pointer must be set to a magic number so the runtime knows it's
1796 // the correct layout.
Owen Anderson3c4972d2009-07-29 18:54:39 +00001797 Elements.push_back(llvm::ConstantExpr::getIntToPtr(
David Chisnall917b28b2011-10-04 15:35:30 +00001798 llvm::ConstantInt::get(Int32Ty, ProtocolVersion), IdTy));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001799 Elements.push_back(MakeConstantString(ProtocolName, ".objc_protocol_name"));
1800 Elements.push_back(ProtocolList);
1801 Elements.push_back(InstanceMethodList);
1802 Elements.push_back(ClassMethodList);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001803 Elements.push_back(OptionalInstanceMethodList);
1804 Elements.push_back(OptionalClassMethodList);
1805 Elements.push_back(PropertyList);
1806 Elements.push_back(OptionalPropertyList);
Mike Stump1eb44332009-09-09 15:08:12 +00001807 ExistingProtocols[ProtocolName] =
Owen Anderson3c4972d2009-07-29 18:54:39 +00001808 llvm::ConstantExpr::getBitCast(MakeGlobal(ProtocolTy, Elements,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001809 ".objc_protocol"), IdTy);
1810}
Dmitri Gribenkoc4a77902012-11-15 14:28:07 +00001811void CGObjCGNU::GenerateProtocolHolderCategory() {
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001812 // Collect information about instance methods
Chris Lattner5f9e2722011-07-23 10:55:15 +00001813 SmallVector<Selector, 1> MethodSels;
1814 SmallVector<llvm::Constant*, 1> MethodTypes;
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001815
1816 std::vector<llvm::Constant*> Elements;
1817 const std::string ClassName = "__ObjC_Protocol_Holder_Ugly_Hack";
1818 const std::string CategoryName = "AnotherHack";
1819 Elements.push_back(MakeConstantString(CategoryName));
1820 Elements.push_back(MakeConstantString(ClassName));
1821 // Instance method list
1822 Elements.push_back(llvm::ConstantExpr::getBitCast(GenerateMethodList(
1823 ClassName, CategoryName, MethodSels, MethodTypes, false), PtrTy));
1824 // Class method list
1825 Elements.push_back(llvm::ConstantExpr::getBitCast(GenerateMethodList(
1826 ClassName, CategoryName, MethodSels, MethodTypes, true), PtrTy));
1827 // Protocol list
1828 llvm::ArrayType *ProtocolArrayTy = llvm::ArrayType::get(PtrTy,
1829 ExistingProtocols.size());
Chris Lattner7650d952011-06-18 22:49:11 +00001830 llvm::StructType *ProtocolListTy = llvm::StructType::get(
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001831 PtrTy, //Should be a recurisve pointer, but it's always NULL here.
David Chisnall8fac25d2010-12-26 22:13:16 +00001832 SizeTy,
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001833 ProtocolArrayTy,
1834 NULL);
1835 std::vector<llvm::Constant*> ProtocolElements;
1836 for (llvm::StringMapIterator<llvm::Constant*> iter =
1837 ExistingProtocols.begin(), endIter = ExistingProtocols.end();
1838 iter != endIter ; iter++) {
1839 llvm::Constant *Ptr = llvm::ConstantExpr::getBitCast(iter->getValue(),
1840 PtrTy);
1841 ProtocolElements.push_back(Ptr);
1842 }
1843 llvm::Constant * ProtocolArray = llvm::ConstantArray::get(ProtocolArrayTy,
1844 ProtocolElements);
1845 ProtocolElements.clear();
1846 ProtocolElements.push_back(NULLPtr);
1847 ProtocolElements.push_back(llvm::ConstantInt::get(LongTy,
1848 ExistingProtocols.size()));
1849 ProtocolElements.push_back(ProtocolArray);
1850 Elements.push_back(llvm::ConstantExpr::getBitCast(MakeGlobal(ProtocolListTy,
1851 ProtocolElements, ".objc_protocol_list"), PtrTy));
1852 Categories.push_back(llvm::ConstantExpr::getBitCast(
Chris Lattner7650d952011-06-18 22:49:11 +00001853 MakeGlobal(llvm::StructType::get(PtrToInt8Ty, PtrToInt8Ty,
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001854 PtrTy, PtrTy, PtrTy, NULL), Elements), PtrTy));
1855}
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001856
David Chisnall917b28b2011-10-04 15:35:30 +00001857/// Libobjc2 uses a bitfield representation where small(ish) bitfields are
1858/// stored in a 64-bit value with the low bit set to 1 and the remaining 63
1859/// bits set to their values, LSB first, while larger ones are stored in a
1860/// structure of this / form:
1861///
1862/// struct { int32_t length; int32_t values[length]; };
1863///
1864/// The values in the array are stored in host-endian format, with the least
1865/// significant bit being assumed to come first in the bitfield. Therefore, a
1866/// bitfield with the 64th bit set will be (int64_t)&{ 2, [0, 1<<31] }, while a
1867/// bitfield / with the 63rd bit set will be 1<<64.
Bill Wendling795b1002012-02-22 09:30:11 +00001868llvm::Constant *CGObjCGNU::MakeBitField(ArrayRef<bool> bits) {
David Chisnall917b28b2011-10-04 15:35:30 +00001869 int bitCount = bits.size();
David Chisnall9d06ba82011-10-25 10:12:21 +00001870 int ptrBits =
1871 (TheModule.getPointerSize() == llvm::Module::Pointer32) ? 32 : 64;
1872 if (bitCount < ptrBits) {
David Chisnall917b28b2011-10-04 15:35:30 +00001873 uint64_t val = 1;
1874 for (int i=0 ; i<bitCount ; ++i) {
Eli Friedmane3c944a2011-10-08 01:03:47 +00001875 if (bits[i]) val |= 1ULL<<(i+1);
David Chisnall917b28b2011-10-04 15:35:30 +00001876 }
David Chisnall9d06ba82011-10-25 10:12:21 +00001877 return llvm::ConstantInt::get(IntPtrTy, val);
David Chisnall917b28b2011-10-04 15:35:30 +00001878 }
1879 llvm::SmallVector<llvm::Constant*, 8> values;
1880 int v=0;
1881 while (v < bitCount) {
1882 int32_t word = 0;
1883 for (int i=0 ; (i<32) && (v<bitCount) ; ++i) {
1884 if (bits[v]) word |= 1<<i;
1885 v++;
1886 }
1887 values.push_back(llvm::ConstantInt::get(Int32Ty, word));
1888 }
1889 llvm::ArrayType *arrayTy = llvm::ArrayType::get(Int32Ty, values.size());
1890 llvm::Constant *array = llvm::ConstantArray::get(arrayTy, values);
1891 llvm::Constant *fields[2] = {
1892 llvm::ConstantInt::get(Int32Ty, values.size()),
1893 array };
1894 llvm::Constant *GS = MakeGlobal(llvm::StructType::get(Int32Ty, arrayTy,
1895 NULL), fields);
David Chisnall49de5282011-10-08 08:54:36 +00001896 llvm::Constant *ptr = llvm::ConstantExpr::getPtrToInt(GS, IntPtrTy);
David Chisnall49de5282011-10-08 08:54:36 +00001897 return ptr;
David Chisnall917b28b2011-10-04 15:35:30 +00001898}
1899
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001900void CGObjCGNU::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
Chris Lattner8ec03f52008-11-24 03:54:41 +00001901 std::string ClassName = OCD->getClassInterface()->getNameAsString();
1902 std::string CategoryName = OCD->getNameAsString();
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001903 // Collect information about instance methods
Chris Lattner5f9e2722011-07-23 10:55:15 +00001904 SmallVector<Selector, 16> InstanceMethodSels;
1905 SmallVector<llvm::Constant*, 16> InstanceMethodTypes;
Douglas Gregor653f1b12009-04-23 01:02:12 +00001906 for (ObjCCategoryImplDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001907 iter = OCD->instmeth_begin(), endIter = OCD->instmeth_end();
Douglas Gregor653f1b12009-04-23 01:02:12 +00001908 iter != endIter ; iter++) {
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001909 InstanceMethodSels.push_back((*iter)->getSelector());
1910 std::string TypeStr;
1911 CGM.getContext().getObjCEncodingForMethodDecl(*iter,TypeStr);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00001912 InstanceMethodTypes.push_back(MakeConstantString(TypeStr));
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001913 }
1914
1915 // Collect information about class methods
Chris Lattner5f9e2722011-07-23 10:55:15 +00001916 SmallVector<Selector, 16> ClassMethodSels;
1917 SmallVector<llvm::Constant*, 16> ClassMethodTypes;
Mike Stump1eb44332009-09-09 15:08:12 +00001918 for (ObjCCategoryImplDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001919 iter = OCD->classmeth_begin(), endIter = OCD->classmeth_end();
Douglas Gregor653f1b12009-04-23 01:02:12 +00001920 iter != endIter ; iter++) {
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001921 ClassMethodSels.push_back((*iter)->getSelector());
1922 std::string TypeStr;
1923 CGM.getContext().getObjCEncodingForMethodDecl(*iter,TypeStr);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00001924 ClassMethodTypes.push_back(MakeConstantString(TypeStr));
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001925 }
1926
1927 // Collect the names of referenced protocols
Chris Lattner5f9e2722011-07-23 10:55:15 +00001928 SmallVector<std::string, 16> Protocols;
David Chisnallad9e06d2010-03-13 22:20:45 +00001929 const ObjCCategoryDecl *CatDecl = OCD->getCategoryDecl();
1930 const ObjCList<ObjCProtocolDecl> &Protos = CatDecl->getReferencedProtocols();
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001931 for (ObjCList<ObjCProtocolDecl>::iterator I = Protos.begin(),
1932 E = Protos.end(); I != E; ++I)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001933 Protocols.push_back((*I)->getNameAsString());
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001934
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001935 std::vector<llvm::Constant*> Elements;
1936 Elements.push_back(MakeConstantString(CategoryName));
1937 Elements.push_back(MakeConstantString(ClassName));
Mike Stump1eb44332009-09-09 15:08:12 +00001938 // Instance method list
Owen Anderson3c4972d2009-07-29 18:54:39 +00001939 Elements.push_back(llvm::ConstantExpr::getBitCast(GenerateMethodList(
Chris Lattnera4210072008-06-26 05:08:00 +00001940 ClassName, CategoryName, InstanceMethodSels, InstanceMethodTypes,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001941 false), PtrTy));
1942 // Class method list
Owen Anderson3c4972d2009-07-29 18:54:39 +00001943 Elements.push_back(llvm::ConstantExpr::getBitCast(GenerateMethodList(
Chris Lattnera4210072008-06-26 05:08:00 +00001944 ClassName, CategoryName, ClassMethodSels, ClassMethodTypes, true),
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001945 PtrTy));
1946 // Protocol list
Owen Anderson3c4972d2009-07-29 18:54:39 +00001947 Elements.push_back(llvm::ConstantExpr::getBitCast(
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001948 GenerateProtocolList(Protocols), PtrTy));
Owen Anderson3c4972d2009-07-29 18:54:39 +00001949 Categories.push_back(llvm::ConstantExpr::getBitCast(
Chris Lattner7650d952011-06-18 22:49:11 +00001950 MakeGlobal(llvm::StructType::get(PtrToInt8Ty, PtrToInt8Ty,
Owen Anderson47a434f2009-08-05 23:18:46 +00001951 PtrTy, PtrTy, PtrTy, NULL), Elements), PtrTy));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00001952}
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00001953
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001954llvm::Constant *CGObjCGNU::GeneratePropertyList(const ObjCImplementationDecl *OID,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001955 SmallVectorImpl<Selector> &InstanceMethodSels,
1956 SmallVectorImpl<llvm::Constant*> &InstanceMethodTypes) {
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001957 ASTContext &Context = CGM.getContext();
1958 //
1959 // Property metadata: name, attributes, isSynthesized, setter name, setter
1960 // types, getter name, getter types.
Chris Lattner7650d952011-06-18 22:49:11 +00001961 llvm::StructType *PropertyMetadataTy = llvm::StructType::get(
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001962 PtrToInt8Ty, Int8Ty, Int8Ty, PtrToInt8Ty, PtrToInt8Ty, PtrToInt8Ty,
1963 PtrToInt8Ty, NULL);
1964 std::vector<llvm::Constant*> Properties;
1965
1966
1967 // Add all of the property methods need adding to the method list and to the
1968 // property metadata list.
1969 for (ObjCImplDecl::propimpl_iterator
1970 iter = OID->propimpl_begin(), endIter = OID->propimpl_end();
1971 iter != endIter ; iter++) {
1972 std::vector<llvm::Constant*> Fields;
David Blaikie262bc182012-04-30 02:36:29 +00001973 ObjCPropertyDecl *property = iter->getPropertyDecl();
David Blaikie581deb32012-06-06 20:45:41 +00001974 ObjCPropertyImplDecl *propertyImpl = *iter;
David Chisnall42ba04a2010-02-26 01:11:38 +00001975 bool isSynthesized = (propertyImpl->getPropertyImplementation() ==
1976 ObjCPropertyImplDecl::Synthesize);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001977
David Chisnall891dac72012-10-16 15:11:55 +00001978 Fields.push_back(MakePropertyEncodingString(property, OID));
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001979 Fields.push_back(llvm::ConstantInt::get(Int8Ty,
1980 property->getPropertyAttributes()));
David Chisnall42ba04a2010-02-26 01:11:38 +00001981 Fields.push_back(llvm::ConstantInt::get(Int8Ty, isSynthesized));
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001982 if (ObjCMethodDecl *getter = property->getGetterMethodDecl()) {
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001983 std::string TypeStr;
1984 Context.getObjCEncodingForMethodDecl(getter,TypeStr);
1985 llvm::Constant *TypeEncoding = MakeConstantString(TypeStr);
David Chisnall42ba04a2010-02-26 01:11:38 +00001986 if (isSynthesized) {
1987 InstanceMethodTypes.push_back(TypeEncoding);
1988 InstanceMethodSels.push_back(getter->getSelector());
1989 }
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001990 Fields.push_back(MakeConstantString(getter->getSelector().getAsString()));
1991 Fields.push_back(TypeEncoding);
1992 } else {
1993 Fields.push_back(NULLPtr);
1994 Fields.push_back(NULLPtr);
1995 }
1996 if (ObjCMethodDecl *setter = property->getSetterMethodDecl()) {
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00001997 std::string TypeStr;
1998 Context.getObjCEncodingForMethodDecl(setter,TypeStr);
1999 llvm::Constant *TypeEncoding = MakeConstantString(TypeStr);
David Chisnall42ba04a2010-02-26 01:11:38 +00002000 if (isSynthesized) {
2001 InstanceMethodTypes.push_back(TypeEncoding);
2002 InstanceMethodSels.push_back(setter->getSelector());
2003 }
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002004 Fields.push_back(MakeConstantString(setter->getSelector().getAsString()));
2005 Fields.push_back(TypeEncoding);
2006 } else {
2007 Fields.push_back(NULLPtr);
2008 Fields.push_back(NULLPtr);
2009 }
2010 Properties.push_back(llvm::ConstantStruct::get(PropertyMetadataTy, Fields));
2011 }
2012 llvm::ArrayType *PropertyArrayTy =
2013 llvm::ArrayType::get(PropertyMetadataTy, Properties.size());
2014 llvm::Constant *PropertyArray = llvm::ConstantArray::get(PropertyArrayTy,
2015 Properties);
2016 llvm::Constant* PropertyListInitFields[] =
2017 {llvm::ConstantInt::get(IntTy, Properties.size()), NULLPtr, PropertyArray};
2018
2019 llvm::Constant *PropertyListInit =
Chris Lattnerc5cbb902011-06-20 04:01:35 +00002020 llvm::ConstantStruct::getAnon(PropertyListInitFields);
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002021 return new llvm::GlobalVariable(TheModule, PropertyListInit->getType(), false,
2022 llvm::GlobalValue::InternalLinkage, PropertyListInit,
2023 ".objc_property_list");
2024}
2025
David Chisnall29254f42012-01-31 18:59:20 +00002026void CGObjCGNU::RegisterAlias(const ObjCCompatibleAliasDecl *OAD) {
2027 // Get the class declaration for which the alias is specified.
2028 ObjCInterfaceDecl *ClassDecl =
2029 const_cast<ObjCInterfaceDecl *>(OAD->getClassInterface());
2030 std::string ClassName = ClassDecl->getNameAsString();
2031 std::string AliasName = OAD->getNameAsString();
2032 ClassAliases.push_back(ClassAliasPair(ClassName,AliasName));
2033}
2034
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002035void CGObjCGNU::GenerateClass(const ObjCImplementationDecl *OID) {
2036 ASTContext &Context = CGM.getContext();
2037
2038 // Get the superclass name.
Mike Stump1eb44332009-09-09 15:08:12 +00002039 const ObjCInterfaceDecl * SuperClassDecl =
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002040 OID->getClassInterface()->getSuperClass();
Chris Lattner8ec03f52008-11-24 03:54:41 +00002041 std::string SuperClassName;
Chris Lattner2a8e4e12009-06-15 01:09:11 +00002042 if (SuperClassDecl) {
Chris Lattner8ec03f52008-11-24 03:54:41 +00002043 SuperClassName = SuperClassDecl->getNameAsString();
Chris Lattner2a8e4e12009-06-15 01:09:11 +00002044 EmitClassRef(SuperClassName);
2045 }
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002046
2047 // Get the class name
Chris Lattner09dc6662009-04-01 02:00:48 +00002048 ObjCInterfaceDecl *ClassDecl =
2049 const_cast<ObjCInterfaceDecl *>(OID->getClassInterface());
Chris Lattner8ec03f52008-11-24 03:54:41 +00002050 std::string ClassName = ClassDecl->getNameAsString();
Chris Lattner2a8e4e12009-06-15 01:09:11 +00002051 // Emit the symbol that is used to generate linker errors if this class is
2052 // referenced in other modules but not declared.
Fariborz Jahanianc51db232009-07-03 15:10:14 +00002053 std::string classSymbolName = "__objc_class_name_" + ClassName;
Mike Stump1eb44332009-09-09 15:08:12 +00002054 if (llvm::GlobalVariable *symbol =
Fariborz Jahanianc51db232009-07-03 15:10:14 +00002055 TheModule.getGlobalVariable(classSymbolName)) {
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002056 symbol->setInitializer(llvm::ConstantInt::get(LongTy, 0));
Fariborz Jahanianc51db232009-07-03 15:10:14 +00002057 } else {
Owen Anderson1c431b32009-07-08 19:05:04 +00002058 new llvm::GlobalVariable(TheModule, LongTy, false,
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002059 llvm::GlobalValue::ExternalLinkage, llvm::ConstantInt::get(LongTy, 0),
Owen Anderson1c431b32009-07-08 19:05:04 +00002060 classSymbolName);
Fariborz Jahanianc51db232009-07-03 15:10:14 +00002061 }
Mike Stump1eb44332009-09-09 15:08:12 +00002062
Daniel Dunbar2bebbf02009-05-03 10:46:44 +00002063 // Get the size of instances.
Ken Dyck5f022d82011-02-09 01:59:34 +00002064 int instanceSize =
2065 Context.getASTObjCImplementationLayout(OID).getSize().getQuantity();
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002066
2067 // Collect information about instance variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002068 SmallVector<llvm::Constant*, 16> IvarNames;
2069 SmallVector<llvm::Constant*, 16> IvarTypes;
2070 SmallVector<llvm::Constant*, 16> IvarOffsets;
Mike Stump1eb44332009-09-09 15:08:12 +00002071
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002072 std::vector<llvm::Constant*> IvarOffsetValues;
David Chisnall917b28b2011-10-04 15:35:30 +00002073 SmallVector<bool, 16> WeakIvars;
2074 SmallVector<bool, 16> StrongIvars;
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002075
Mike Stump1eb44332009-09-09 15:08:12 +00002076 int superInstanceSize = !SuperClassDecl ? 0 :
Ken Dyck5f022d82011-02-09 01:59:34 +00002077 Context.getASTObjCInterfaceLayout(SuperClassDecl).getSize().getQuantity();
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002078 // For non-fragile ivars, set the instance size to 0 - {the size of just this
2079 // class}. The runtime will then set this to the correct value on load.
Richard Smith7edf9e32012-11-01 22:30:59 +00002080 if (CGM.getLangOpts().ObjCRuntime.isNonFragile()) {
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002081 instanceSize = 0 - (instanceSize - superInstanceSize);
2082 }
David Chisnall7f63cb02010-04-19 00:45:34 +00002083
Jordy Rosedb8264e2011-07-22 02:08:32 +00002084 for (const ObjCIvarDecl *IVD = ClassDecl->all_declared_ivar_begin(); IVD;
2085 IVD = IVD->getNextIvar()) {
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002086 // Store the name
David Chisnall7f63cb02010-04-19 00:45:34 +00002087 IvarNames.push_back(MakeConstantString(IVD->getNameAsString()));
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002088 // Get the type encoding for this ivar
2089 std::string TypeStr;
David Chisnall7f63cb02010-04-19 00:45:34 +00002090 Context.getObjCEncodingForType(IVD->getType(), TypeStr);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002091 IvarTypes.push_back(MakeConstantString(TypeStr));
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002092 // Get the offset
Eli Friedmane5b46662012-11-06 22:15:52 +00002093 uint64_t BaseOffset = ComputeIvarBaseOffset(CGM, OID, IVD);
David Chisnallaecbf242009-11-17 19:32:15 +00002094 uint64_t Offset = BaseOffset;
Richard Smith7edf9e32012-11-01 22:30:59 +00002095 if (CGM.getLangOpts().ObjCRuntime.isNonFragile()) {
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002096 Offset = BaseOffset - superInstanceSize;
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002097 }
David Chisnall63ff7032011-07-07 12:34:51 +00002098 llvm::Constant *OffsetValue = llvm::ConstantInt::get(IntTy, Offset);
2099 // Create the direct offset value
2100 std::string OffsetName = "__objc_ivar_offset_value_" + ClassName +"." +
2101 IVD->getNameAsString();
2102 llvm::GlobalVariable *OffsetVar = TheModule.getGlobalVariable(OffsetName);
2103 if (OffsetVar) {
2104 OffsetVar->setInitializer(OffsetValue);
2105 // If this is the real definition, change its linkage type so that
2106 // different modules will use this one, rather than their private
2107 // copy.
2108 OffsetVar->setLinkage(llvm::GlobalValue::ExternalLinkage);
2109 } else
2110 OffsetVar = new llvm::GlobalVariable(TheModule, IntTy,
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002111 false, llvm::GlobalValue::ExternalLinkage,
David Chisnall63ff7032011-07-07 12:34:51 +00002112 OffsetValue,
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002113 "__objc_ivar_offset_value_" + ClassName +"." +
David Chisnall63ff7032011-07-07 12:34:51 +00002114 IVD->getNameAsString());
2115 IvarOffsets.push_back(OffsetValue);
2116 IvarOffsetValues.push_back(OffsetVar);
David Chisnall917b28b2011-10-04 15:35:30 +00002117 Qualifiers::ObjCLifetime lt = IVD->getType().getQualifiers().getObjCLifetime();
2118 switch (lt) {
2119 case Qualifiers::OCL_Strong:
2120 StrongIvars.push_back(true);
2121 WeakIvars.push_back(false);
2122 break;
2123 case Qualifiers::OCL_Weak:
2124 StrongIvars.push_back(false);
2125 WeakIvars.push_back(true);
2126 break;
2127 default:
2128 StrongIvars.push_back(false);
2129 WeakIvars.push_back(false);
2130 }
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002131 }
David Chisnall917b28b2011-10-04 15:35:30 +00002132 llvm::Constant *StrongIvarBitmap = MakeBitField(StrongIvars);
2133 llvm::Constant *WeakIvarBitmap = MakeBitField(WeakIvars);
David Chisnall9f6614e2011-03-23 16:36:54 +00002134 llvm::GlobalVariable *IvarOffsetArray =
2135 MakeGlobalArray(PtrToIntTy, IvarOffsetValues, ".ivar.offsets");
2136
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002137
2138 // Collect information about instance methods
Chris Lattner5f9e2722011-07-23 10:55:15 +00002139 SmallVector<Selector, 16> InstanceMethodSels;
2140 SmallVector<llvm::Constant*, 16> InstanceMethodTypes;
Mike Stump1eb44332009-09-09 15:08:12 +00002141 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002142 iter = OID->instmeth_begin(), endIter = OID->instmeth_end();
Douglas Gregor653f1b12009-04-23 01:02:12 +00002143 iter != endIter ; iter++) {
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002144 InstanceMethodSels.push_back((*iter)->getSelector());
2145 std::string TypeStr;
2146 Context.getObjCEncodingForMethodDecl((*iter),TypeStr);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002147 InstanceMethodTypes.push_back(MakeConstantString(TypeStr));
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002148 }
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002149
2150 llvm::Constant *Properties = GeneratePropertyList(OID, InstanceMethodSels,
2151 InstanceMethodTypes);
2152
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002153
2154 // Collect information about class methods
Chris Lattner5f9e2722011-07-23 10:55:15 +00002155 SmallVector<Selector, 16> ClassMethodSels;
2156 SmallVector<llvm::Constant*, 16> ClassMethodTypes;
Douglas Gregor653f1b12009-04-23 01:02:12 +00002157 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002158 iter = OID->classmeth_begin(), endIter = OID->classmeth_end();
Douglas Gregor653f1b12009-04-23 01:02:12 +00002159 iter != endIter ; iter++) {
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002160 ClassMethodSels.push_back((*iter)->getSelector());
2161 std::string TypeStr;
2162 Context.getObjCEncodingForMethodDecl((*iter),TypeStr);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002163 ClassMethodTypes.push_back(MakeConstantString(TypeStr));
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002164 }
2165 // Collect the names of referenced protocols
Chris Lattner5f9e2722011-07-23 10:55:15 +00002166 SmallVector<std::string, 16> Protocols;
Argyrios Kyrtzidisa5f44412012-03-13 01:09:41 +00002167 for (ObjCInterfaceDecl::protocol_iterator
2168 I = ClassDecl->protocol_begin(),
2169 E = ClassDecl->protocol_end(); I != E; ++I)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002170 Protocols.push_back((*I)->getNameAsString());
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002171
2172
2173
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002174 // Get the superclass pointer.
2175 llvm::Constant *SuperClass;
Chris Lattner8ec03f52008-11-24 03:54:41 +00002176 if (!SuperClassName.empty()) {
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002177 SuperClass = MakeConstantString(SuperClassName, ".super_class_name");
2178 } else {
Owen Anderson03e20502009-07-30 23:11:26 +00002179 SuperClass = llvm::ConstantPointerNull::get(PtrToInt8Ty);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002180 }
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002181 // Empty vector used to construct empty method lists
Chris Lattner5f9e2722011-07-23 10:55:15 +00002182 SmallVector<llvm::Constant*, 1> empty;
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002183 // Generate the method and instance variable lists
2184 llvm::Constant *MethodList = GenerateMethodList(ClassName, "",
Chris Lattnera4210072008-06-26 05:08:00 +00002185 InstanceMethodSels, InstanceMethodTypes, false);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002186 llvm::Constant *ClassMethodList = GenerateMethodList(ClassName, "",
Chris Lattnera4210072008-06-26 05:08:00 +00002187 ClassMethodSels, ClassMethodTypes, true);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002188 llvm::Constant *IvarList = GenerateIvarList(IvarNames, IvarTypes,
2189 IvarOffsets);
Mike Stump1eb44332009-09-09 15:08:12 +00002190 // Irrespective of whether we are compiling for a fragile or non-fragile ABI,
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002191 // we emit a symbol containing the offset for each ivar in the class. This
2192 // allows code compiled for the non-Fragile ABI to inherit from code compiled
2193 // for the legacy ABI, without causing problems. The converse is also
2194 // possible, but causes all ivar accesses to be fragile.
David Chisnalle0d98762010-11-03 16:12:44 +00002195
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002196 // Offset pointer for getting at the correct field in the ivar list when
2197 // setting up the alias. These are: The base address for the global, the
2198 // ivar array (second field), the ivar in this list (set for each ivar), and
2199 // the offset (third field in ivar structure)
David Chisnall917b28b2011-10-04 15:35:30 +00002200 llvm::Type *IndexTy = Int32Ty;
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002201 llvm::Constant *offsetPointerIndexes[] = {Zeros[0],
Mike Stump1eb44332009-09-09 15:08:12 +00002202 llvm::ConstantInt::get(IndexTy, 1), 0,
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002203 llvm::ConstantInt::get(IndexTy, 2) };
2204
Jordy Rosedb8264e2011-07-22 02:08:32 +00002205 unsigned ivarIndex = 0;
2206 for (const ObjCIvarDecl *IVD = ClassDecl->all_declared_ivar_begin(); IVD;
2207 IVD = IVD->getNextIvar()) {
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002208 const std::string Name = "__objc_ivar_offset_" + ClassName + '.'
David Chisnalle0d98762010-11-03 16:12:44 +00002209 + IVD->getNameAsString();
Jordy Rosedb8264e2011-07-22 02:08:32 +00002210 offsetPointerIndexes[2] = llvm::ConstantInt::get(IndexTy, ivarIndex);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002211 // Get the correct ivar field
2212 llvm::Constant *offsetValue = llvm::ConstantExpr::getGetElementPtr(
Jay Foada5c04342011-07-21 14:31:17 +00002213 IvarList, offsetPointerIndexes);
David Chisnalle0d98762010-11-03 16:12:44 +00002214 // Get the existing variable, if one exists.
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002215 llvm::GlobalVariable *offset = TheModule.getNamedGlobal(Name);
2216 if (offset) {
Ted Kremenek74a1a1f2012-04-04 00:55:25 +00002217 offset->setInitializer(offsetValue);
2218 // If this is the real definition, change its linkage type so that
2219 // different modules will use this one, rather than their private
2220 // copy.
2221 offset->setLinkage(llvm::GlobalValue::ExternalLinkage);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002222 } else {
Ted Kremenek74a1a1f2012-04-04 00:55:25 +00002223 // Add a new alias if there isn't one already.
2224 offset = new llvm::GlobalVariable(TheModule, offsetValue->getType(),
2225 false, llvm::GlobalValue::ExternalLinkage, offsetValue, Name);
2226 (void) offset; // Silence dead store warning.
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002227 }
Jordy Rosedb8264e2011-07-22 02:08:32 +00002228 ++ivarIndex;
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002229 }
David Chisnall9d06ba82011-10-25 10:12:21 +00002230 llvm::Constant *ZeroPtr = llvm::ConstantInt::get(IntPtrTy, 0);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002231 //Generate metaclass for class methods
2232 llvm::Constant *MetaClassStruct = GenerateClassStructure(NULLPtr,
David Chisnall18044632009-11-16 19:05:54 +00002233 NULLPtr, 0x12L, ClassName.c_str(), 0, Zeros[0], GenerateIvarList(
David Chisnall917b28b2011-10-04 15:35:30 +00002234 empty, empty, empty), ClassMethodList, NULLPtr,
David Chisnall9d06ba82011-10-25 10:12:21 +00002235 NULLPtr, NULLPtr, ZeroPtr, ZeroPtr, true);
Daniel Dunbar5efccb12009-05-04 15:31:17 +00002236
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002237 // Generate the class structure
Chris Lattner8ec03f52008-11-24 03:54:41 +00002238 llvm::Constant *ClassStruct =
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002239 GenerateClassStructure(MetaClassStruct, SuperClass, 0x11L,
Chris Lattner8ec03f52008-11-24 03:54:41 +00002240 ClassName.c_str(), 0,
Owen Anderson4a28d5d2009-07-24 23:12:58 +00002241 llvm::ConstantInt::get(LongTy, instanceSize), IvarList,
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002242 MethodList, GenerateProtocolList(Protocols), IvarOffsetArray,
David Chisnall917b28b2011-10-04 15:35:30 +00002243 Properties, StrongIvarBitmap, WeakIvarBitmap);
Daniel Dunbar5efccb12009-05-04 15:31:17 +00002244
2245 // Resolve the class aliases, if they exist.
2246 if (ClassPtrAlias) {
David Chisnall0b9c22b2010-11-09 11:21:43 +00002247 ClassPtrAlias->replaceAllUsesWith(
Owen Anderson3c4972d2009-07-29 18:54:39 +00002248 llvm::ConstantExpr::getBitCast(ClassStruct, IdTy));
David Chisnall0b9c22b2010-11-09 11:21:43 +00002249 ClassPtrAlias->eraseFromParent();
Daniel Dunbar5efccb12009-05-04 15:31:17 +00002250 ClassPtrAlias = 0;
2251 }
2252 if (MetaClassPtrAlias) {
David Chisnall0b9c22b2010-11-09 11:21:43 +00002253 MetaClassPtrAlias->replaceAllUsesWith(
Owen Anderson3c4972d2009-07-29 18:54:39 +00002254 llvm::ConstantExpr::getBitCast(MetaClassStruct, IdTy));
David Chisnall0b9c22b2010-11-09 11:21:43 +00002255 MetaClassPtrAlias->eraseFromParent();
Daniel Dunbar5efccb12009-05-04 15:31:17 +00002256 MetaClassPtrAlias = 0;
2257 }
2258
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002259 // Add class structure to list to be added to the symtab later
Owen Anderson3c4972d2009-07-29 18:54:39 +00002260 ClassStruct = llvm::ConstantExpr::getBitCast(ClassStruct, PtrToInt8Ty);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002261 Classes.push_back(ClassStruct);
2262}
2263
Fariborz Jahanianc38e9af2009-06-23 21:47:46 +00002264
Mike Stump1eb44332009-09-09 15:08:12 +00002265llvm::Function *CGObjCGNU::ModuleInitFunction() {
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002266 // Only emit an ObjC load function if no Objective-C stuff has been called
2267 if (Classes.empty() && Categories.empty() && ConstantStrings.empty() &&
David Chisnall9f6614e2011-03-23 16:36:54 +00002268 ExistingProtocols.empty() && SelectorTable.empty())
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002269 return NULL;
Eli Friedman1b8956e2008-06-01 16:00:02 +00002270
Fariborz Jahaniand9a1db32009-09-10 21:48:21 +00002271 // Add all referenced protocols to a category.
2272 GenerateProtocolHolderCategory();
2273
Chris Lattner2acc6e32011-07-18 04:24:23 +00002274 llvm::StructType *SelStructTy = dyn_cast<llvm::StructType>(
Chris Lattnere160c9b2009-01-27 05:06:01 +00002275 SelectorTy->getElementType());
Jay Foadef6de3d2011-07-11 09:56:20 +00002276 llvm::Type *SelStructPtrTy = SelectorTy;
Chris Lattnere160c9b2009-01-27 05:06:01 +00002277 if (SelStructTy == 0) {
Chris Lattner7650d952011-06-18 22:49:11 +00002278 SelStructTy = llvm::StructType::get(PtrToInt8Ty, PtrToInt8Ty, NULL);
Owen Anderson96e0fc72009-07-29 22:16:19 +00002279 SelStructPtrTy = llvm::PointerType::getUnqual(SelStructTy);
Chris Lattnere160c9b2009-01-27 05:06:01 +00002280 }
2281
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002282 std::vector<llvm::Constant*> Elements;
Chris Lattner71238f62009-04-25 23:19:45 +00002283 llvm::Constant *Statics = NULLPtr;
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002284 // Generate statics list:
Chris Lattner71238f62009-04-25 23:19:45 +00002285 if (ConstantStrings.size()) {
Owen Anderson96e0fc72009-07-29 22:16:19 +00002286 llvm::ArrayType *StaticsArrayTy = llvm::ArrayType::get(PtrToInt8Ty,
Chris Lattner71238f62009-04-25 23:19:45 +00002287 ConstantStrings.size() + 1);
2288 ConstantStrings.push_back(NULLPtr);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002289
David Blaikie4e4d0842012-03-11 07:00:24 +00002290 StringRef StringClass = CGM.getLangOpts().ObjCConstantStringClass;
David Chisnall9f6614e2011-03-23 16:36:54 +00002291
Daniel Dunbar1b096952009-11-29 02:38:47 +00002292 if (StringClass.empty()) StringClass = "NXConstantString";
David Chisnall9f6614e2011-03-23 16:36:54 +00002293
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002294 Elements.push_back(MakeConstantString(StringClass,
2295 ".objc_static_class_name"));
Owen Anderson7db6d832009-07-28 18:33:04 +00002296 Elements.push_back(llvm::ConstantArray::get(StaticsArrayTy,
Chris Lattner71238f62009-04-25 23:19:45 +00002297 ConstantStrings));
Mike Stump1eb44332009-09-09 15:08:12 +00002298 llvm::StructType *StaticsListTy =
Chris Lattner7650d952011-06-18 22:49:11 +00002299 llvm::StructType::get(PtrToInt8Ty, StaticsArrayTy, NULL);
Owen Andersona1cf15f2009-07-14 23:10:40 +00002300 llvm::Type *StaticsListPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +00002301 llvm::PointerType::getUnqual(StaticsListTy);
Chris Lattner71238f62009-04-25 23:19:45 +00002302 Statics = MakeGlobal(StaticsListTy, Elements, ".objc_statics");
Mike Stump1eb44332009-09-09 15:08:12 +00002303 llvm::ArrayType *StaticsListArrayTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +00002304 llvm::ArrayType::get(StaticsListPtrTy, 2);
Chris Lattner71238f62009-04-25 23:19:45 +00002305 Elements.clear();
2306 Elements.push_back(Statics);
Owen Andersonc9c88b42009-07-31 20:28:54 +00002307 Elements.push_back(llvm::Constant::getNullValue(StaticsListPtrTy));
Chris Lattner71238f62009-04-25 23:19:45 +00002308 Statics = MakeGlobal(StaticsListArrayTy, Elements, ".objc_statics_ptr");
Owen Anderson3c4972d2009-07-29 18:54:39 +00002309 Statics = llvm::ConstantExpr::getBitCast(Statics, PtrTy);
Chris Lattner71238f62009-04-25 23:19:45 +00002310 }
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002311 // Array of classes, categories, and constant objects
Owen Anderson96e0fc72009-07-29 22:16:19 +00002312 llvm::ArrayType *ClassListTy = llvm::ArrayType::get(PtrToInt8Ty,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002313 Classes.size() + Categories.size() + 2);
Chris Lattner7650d952011-06-18 22:49:11 +00002314 llvm::StructType *SymTabTy = llvm::StructType::get(LongTy, SelStructPtrTy,
Owen Anderson0032b272009-08-13 21:57:51 +00002315 llvm::Type::getInt16Ty(VMContext),
2316 llvm::Type::getInt16Ty(VMContext),
Chris Lattner630404b2008-06-26 04:10:42 +00002317 ClassListTy, NULL);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002318
2319 Elements.clear();
2320 // Pointer to an array of selectors used in this module.
2321 std::vector<llvm::Constant*> Selectors;
David Chisnall9f6614e2011-03-23 16:36:54 +00002322 std::vector<llvm::GlobalAlias*> SelectorAliases;
2323 for (SelectorMap::iterator iter = SelectorTable.begin(),
2324 iterEnd = SelectorTable.end(); iter != iterEnd ; ++iter) {
2325
2326 std::string SelNameStr = iter->first.getAsString();
2327 llvm::Constant *SelName = ExportUniqueString(SelNameStr, ".objc_sel_name");
2328
Chris Lattner5f9e2722011-07-23 10:55:15 +00002329 SmallVectorImpl<TypedSelector> &Types = iter->second;
2330 for (SmallVectorImpl<TypedSelector>::iterator i = Types.begin(),
David Chisnall9f6614e2011-03-23 16:36:54 +00002331 e = Types.end() ; i!=e ; i++) {
2332
2333 llvm::Constant *SelectorTypeEncoding = NULLPtr;
2334 if (!i->first.empty())
2335 SelectorTypeEncoding = MakeConstantString(i->first, ".objc_sel_types");
2336
2337 Elements.push_back(SelName);
2338 Elements.push_back(SelectorTypeEncoding);
2339 Selectors.push_back(llvm::ConstantStruct::get(SelStructTy, Elements));
2340 Elements.clear();
2341
2342 // Store the selector alias for later replacement
2343 SelectorAliases.push_back(i->second);
2344 }
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002345 }
David Chisnall9f6614e2011-03-23 16:36:54 +00002346 unsigned SelectorCount = Selectors.size();
2347 // NULL-terminate the selector list. This should not actually be required,
2348 // because the selector list has a length field. Unfortunately, the GCC
2349 // runtime decides to ignore the length field and expects a NULL terminator,
2350 // and GCC cooperates with this by always setting the length to 0.
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002351 Elements.push_back(NULLPtr);
2352 Elements.push_back(NULLPtr);
Owen Anderson08e25242009-07-27 22:29:56 +00002353 Selectors.push_back(llvm::ConstantStruct::get(SelStructTy, Elements));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002354 Elements.clear();
David Chisnall9f6614e2011-03-23 16:36:54 +00002355
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002356 // Number of static selectors
David Chisnall9f6614e2011-03-23 16:36:54 +00002357 Elements.push_back(llvm::ConstantInt::get(LongTy, SelectorCount));
2358 llvm::Constant *SelectorList = MakeGlobalArray(SelStructTy, Selectors,
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002359 ".objc_selector_list");
Mike Stump1eb44332009-09-09 15:08:12 +00002360 Elements.push_back(llvm::ConstantExpr::getBitCast(SelectorList,
Chris Lattnere160c9b2009-01-27 05:06:01 +00002361 SelStructPtrTy));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002362
2363 // Now that all of the static selectors exist, create pointers to them.
David Chisnall9f6614e2011-03-23 16:36:54 +00002364 for (unsigned int i=0 ; i<SelectorCount ; i++) {
2365
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002366 llvm::Constant *Idxs[] = {Zeros[0],
David Chisnall917b28b2011-10-04 15:35:30 +00002367 llvm::ConstantInt::get(Int32Ty, i), Zeros[0]};
David Chisnall9f6614e2011-03-23 16:36:54 +00002368 // FIXME: We're generating redundant loads and stores here!
David Chisnallc7ef4622011-03-23 22:52:06 +00002369 llvm::Constant *SelPtr = llvm::ConstantExpr::getGetElementPtr(SelectorList,
Jay Foada5c04342011-07-21 14:31:17 +00002370 makeArrayRef(Idxs, 2));
Chris Lattnere160c9b2009-01-27 05:06:01 +00002371 // If selectors are defined as an opaque type, cast the pointer to this
2372 // type.
David Chisnallc7ef4622011-03-23 22:52:06 +00002373 SelPtr = llvm::ConstantExpr::getBitCast(SelPtr, SelectorTy);
David Chisnall9f6614e2011-03-23 16:36:54 +00002374 SelectorAliases[i]->replaceAllUsesWith(SelPtr);
2375 SelectorAliases[i]->eraseFromParent();
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002376 }
David Chisnall9f6614e2011-03-23 16:36:54 +00002377
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002378 // Number of classes defined.
Mike Stump1eb44332009-09-09 15:08:12 +00002379 Elements.push_back(llvm::ConstantInt::get(llvm::Type::getInt16Ty(VMContext),
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002380 Classes.size()));
2381 // Number of categories defined
Mike Stump1eb44332009-09-09 15:08:12 +00002382 Elements.push_back(llvm::ConstantInt::get(llvm::Type::getInt16Ty(VMContext),
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002383 Categories.size()));
2384 // Create an array of classes, then categories, then static object instances
2385 Classes.insert(Classes.end(), Categories.begin(), Categories.end());
2386 // NULL-terminated list of static object instances (mainly constant strings)
2387 Classes.push_back(Statics);
2388 Classes.push_back(NULLPtr);
Owen Anderson7db6d832009-07-28 18:33:04 +00002389 llvm::Constant *ClassList = llvm::ConstantArray::get(ClassListTy, Classes);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002390 Elements.push_back(ClassList);
Mike Stump1eb44332009-09-09 15:08:12 +00002391 // Construct the symbol table
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002392 llvm::Constant *SymTab= MakeGlobal(SymTabTy, Elements);
2393
2394 // The symbol table is contained in a module which has some version-checking
2395 // constants
Chris Lattner7650d952011-06-18 22:49:11 +00002396 llvm::StructType * ModuleTy = llvm::StructType::get(LongTy, LongTy,
David Chisnalla2120032011-05-22 22:37:08 +00002397 PtrToInt8Ty, llvm::PointerType::getUnqual(SymTabTy),
David Chisnallf0748852011-07-07 11:22:31 +00002398 (RuntimeVersion >= 10) ? IntTy : NULL, NULL);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002399 Elements.clear();
David Chisnall9f6614e2011-03-23 16:36:54 +00002400 // Runtime version, used for ABI compatibility checking.
2401 Elements.push_back(llvm::ConstantInt::get(LongTy, RuntimeVersion));
Fariborz Jahanian91a0b512009-04-01 19:49:42 +00002402 // sizeof(ModuleTy)
Micah Villmow25a6a842012-10-08 16:25:52 +00002403 llvm::DataLayout td(&TheModule);
Ken Dycke0afc892011-04-22 17:59:22 +00002404 Elements.push_back(
2405 llvm::ConstantInt::get(LongTy,
2406 td.getTypeSizeInBits(ModuleTy) /
2407 CGM.getContext().getCharWidth()));
David Chisnall9f6614e2011-03-23 16:36:54 +00002408
2409 // The path to the source file where this module was declared
2410 SourceManager &SM = CGM.getContext().getSourceManager();
2411 const FileEntry *mainFile = SM.getFileEntryForID(SM.getMainFileID());
2412 std::string path =
2413 std::string(mainFile->getDir()->getName()) + '/' + mainFile->getName();
2414 Elements.push_back(MakeConstantString(path, ".objc_source_file_name"));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002415 Elements.push_back(SymTab);
David Chisnalla2120032011-05-22 22:37:08 +00002416
David Chisnallf0748852011-07-07 11:22:31 +00002417 if (RuntimeVersion >= 10)
David Blaikie4e4d0842012-03-11 07:00:24 +00002418 switch (CGM.getLangOpts().getGC()) {
David Chisnallf0748852011-07-07 11:22:31 +00002419 case LangOptions::GCOnly:
David Chisnalla2120032011-05-22 22:37:08 +00002420 Elements.push_back(llvm::ConstantInt::get(IntTy, 2));
David Chisnalla2120032011-05-22 22:37:08 +00002421 break;
David Chisnallf0748852011-07-07 11:22:31 +00002422 case LangOptions::NonGC:
David Blaikie4e4d0842012-03-11 07:00:24 +00002423 if (CGM.getLangOpts().ObjCAutoRefCount)
David Chisnallf0748852011-07-07 11:22:31 +00002424 Elements.push_back(llvm::ConstantInt::get(IntTy, 1));
2425 else
2426 Elements.push_back(llvm::ConstantInt::get(IntTy, 0));
2427 break;
2428 case LangOptions::HybridGC:
2429 Elements.push_back(llvm::ConstantInt::get(IntTy, 1));
2430 break;
2431 }
David Chisnalla2120032011-05-22 22:37:08 +00002432
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002433 llvm::Value *Module = MakeGlobal(ModuleTy, Elements);
2434
2435 // Create the load function calling the runtime entry point with the module
2436 // structure
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002437 llvm::Function * LoadFunction = llvm::Function::Create(
Owen Anderson0032b272009-08-13 21:57:51 +00002438 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext), false),
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002439 llvm::GlobalValue::InternalLinkage, ".objc_load_function",
2440 &TheModule);
Owen Anderson0032b272009-08-13 21:57:51 +00002441 llvm::BasicBlock *EntryBB =
2442 llvm::BasicBlock::Create(VMContext, "entry", LoadFunction);
Owen Andersona1cf15f2009-07-14 23:10:40 +00002443 CGBuilderTy Builder(VMContext);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002444 Builder.SetInsertPoint(EntryBB);
Fariborz Jahanian26c82942009-03-30 18:02:14 +00002445
Benjamin Kramer95d318c2011-05-28 14:26:31 +00002446 llvm::FunctionType *FT =
Jay Foadda549e82011-07-29 13:56:53 +00002447 llvm::FunctionType::get(Builder.getVoidTy(),
2448 llvm::PointerType::getUnqual(ModuleTy), true);
Benjamin Kramer95d318c2011-05-28 14:26:31 +00002449 llvm::Value *Register = CGM.CreateRuntimeFunction(FT, "__objc_exec_class");
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002450 Builder.CreateCall(Register, Module);
David Chisnall29254f42012-01-31 18:59:20 +00002451
David Chisnalldccaa232012-02-01 19:16:56 +00002452 if (!ClassAliases.empty()) {
David Chisnall29254f42012-01-31 18:59:20 +00002453 llvm::Type *ArgTypes[2] = {PtrTy, PtrToInt8Ty};
2454 llvm::FunctionType *RegisterAliasTy =
2455 llvm::FunctionType::get(Builder.getVoidTy(),
2456 ArgTypes, false);
2457 llvm::Function *RegisterAlias = llvm::Function::Create(
2458 RegisterAliasTy,
2459 llvm::GlobalValue::ExternalWeakLinkage, "class_registerAlias_np",
2460 &TheModule);
2461 llvm::BasicBlock *AliasBB =
2462 llvm::BasicBlock::Create(VMContext, "alias", LoadFunction);
2463 llvm::BasicBlock *NoAliasBB =
2464 llvm::BasicBlock::Create(VMContext, "no_alias", LoadFunction);
2465
2466 // Branch based on whether the runtime provided class_registerAlias_np()
2467 llvm::Value *HasRegisterAlias = Builder.CreateICmpNE(RegisterAlias,
2468 llvm::Constant::getNullValue(RegisterAlias->getType()));
2469 Builder.CreateCondBr(HasRegisterAlias, AliasBB, NoAliasBB);
2470
2471 // The true branch (has alias registration fucntion):
2472 Builder.SetInsertPoint(AliasBB);
2473 // Emit alias registration calls:
2474 for (std::vector<ClassAliasPair>::iterator iter = ClassAliases.begin();
2475 iter != ClassAliases.end(); ++iter) {
2476 llvm::Constant *TheClass =
2477 TheModule.getGlobalVariable(("_OBJC_CLASS_" + iter->first).c_str(),
2478 true);
2479 if (0 != TheClass) {
2480 TheClass = llvm::ConstantExpr::getBitCast(TheClass, PtrTy);
2481 Builder.CreateCall2(RegisterAlias, TheClass,
2482 MakeConstantString(iter->second));
2483 }
2484 }
2485 // Jump to end:
2486 Builder.CreateBr(NoAliasBB);
2487
2488 // Missing alias registration function, just return from the function:
2489 Builder.SetInsertPoint(NoAliasBB);
2490 }
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002491 Builder.CreateRetVoid();
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002492
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002493 return LoadFunction;
2494}
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002495
Fariborz Jahanian679a5022009-01-10 21:06:09 +00002496llvm::Function *CGObjCGNU::GenerateMethod(const ObjCMethodDecl *OMD,
Mike Stump1eb44332009-09-09 15:08:12 +00002497 const ObjCContainerDecl *CD) {
2498 const ObjCCategoryImplDecl *OCD =
Steve Naroff3e0a5402009-01-08 19:41:02 +00002499 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext());
Chris Lattner5f9e2722011-07-23 10:55:15 +00002500 StringRef CategoryName = OCD ? OCD->getName() : "";
2501 StringRef ClassName = CD->getName();
David Chisnall9f6614e2011-03-23 16:36:54 +00002502 Selector MethodName = OMD->getSelector();
Douglas Gregorf8d49f62009-01-09 17:18:27 +00002503 bool isClassMethod = !OMD->isInstanceMethod();
Daniel Dunbar7ded7f42008-08-15 22:20:32 +00002504
Daniel Dunbar541b63b2009-02-02 23:23:47 +00002505 CodeGenTypes &Types = CGM.getTypes();
Chris Lattner2acc6e32011-07-18 04:24:23 +00002506 llvm::FunctionType *MethodTy =
John McCallde5d3c72012-02-17 03:33:10 +00002507 Types.GetFunctionType(Types.arrangeObjCMethodDeclaration(OMD));
Anton Korobeynikov20ff3102008-06-01 14:13:53 +00002508 std::string FunctionName = SymbolNameForMethod(ClassName, CategoryName,
2509 MethodName, isClassMethod);
2510
Daniel Dunbard6c93d72009-09-17 04:01:22 +00002511 llvm::Function *Method
Mike Stump1eb44332009-09-09 15:08:12 +00002512 = llvm::Function::Create(MethodTy,
2513 llvm::GlobalValue::InternalLinkage,
2514 FunctionName,
2515 &TheModule);
Chris Lattner391d77a2008-03-30 23:03:07 +00002516 return Method;
2517}
2518
David Chisnall789ecde2011-05-23 22:33:28 +00002519llvm::Constant *CGObjCGNU::GetPropertyGetFunction() {
David Chisnall9f6614e2011-03-23 16:36:54 +00002520 return GetPropertyFn;
Daniel Dunbar49f66022008-09-24 03:38:44 +00002521}
2522
David Chisnall789ecde2011-05-23 22:33:28 +00002523llvm::Constant *CGObjCGNU::GetPropertySetFunction() {
David Chisnall9f6614e2011-03-23 16:36:54 +00002524 return SetPropertyFn;
Daniel Dunbar49f66022008-09-24 03:38:44 +00002525}
2526
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002527llvm::Constant *CGObjCGNU::GetOptimizedPropertySetFunction(bool atomic,
2528 bool copy) {
2529 return 0;
2530}
2531
David Chisnall789ecde2011-05-23 22:33:28 +00002532llvm::Constant *CGObjCGNU::GetGetStructFunction() {
David Chisnall9f6614e2011-03-23 16:36:54 +00002533 return GetStructPropertyFn;
David Chisnall8fac25d2010-12-26 22:13:16 +00002534}
David Chisnall789ecde2011-05-23 22:33:28 +00002535llvm::Constant *CGObjCGNU::GetSetStructFunction() {
David Chisnall9f6614e2011-03-23 16:36:54 +00002536 return SetStructPropertyFn;
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00002537}
Fariborz Jahaniane3173022012-01-06 18:07:23 +00002538llvm::Constant *CGObjCGNU::GetCppAtomicObjectFunction() {
2539 return 0;
2540}
Fariborz Jahanian6cc59062010-04-12 18:18:10 +00002541
Daniel Dunbar309a4362009-07-24 07:40:24 +00002542llvm::Constant *CGObjCGNU::EnumerationMutationFunction() {
David Chisnall9f6614e2011-03-23 16:36:54 +00002543 return EnumerationMutationFn;
Anders Carlsson2abd89c2008-08-31 04:05:03 +00002544}
2545
David Chisnall9f6614e2011-03-23 16:36:54 +00002546void CGObjCGNU::EmitSynchronizedStmt(CodeGenFunction &CGF,
John McCallf1549f62010-07-06 01:34:17 +00002547 const ObjCAtSynchronizedStmt &S) {
David Chisnall9735ca62011-03-25 11:57:33 +00002548 EmitAtSynchronizedStmt(CGF, S, SyncEnterFn, SyncExitFn);
John McCallf1549f62010-07-06 01:34:17 +00002549}
Chris Lattner5dc08672009-05-08 00:11:50 +00002550
David Chisnall0faa5162009-12-24 02:26:34 +00002551
David Chisnall9f6614e2011-03-23 16:36:54 +00002552void CGObjCGNU::EmitTryStmt(CodeGenFunction &CGF,
John McCallf1549f62010-07-06 01:34:17 +00002553 const ObjCAtTryStmt &S) {
2554 // Unlike the Apple non-fragile runtimes, which also uses
2555 // unwind-based zero cost exceptions, the GNU Objective C runtime's
2556 // EH support isn't a veneer over C++ EH. Instead, exception
David Chisnallc6860042012-11-07 16:50:40 +00002557 // objects are created by objc_exception_throw and destroyed by
John McCallf1549f62010-07-06 01:34:17 +00002558 // the personality function; this avoids the need for bracketing
2559 // catch handlers with calls to __blah_begin_catch/__blah_end_catch
2560 // (or even _Unwind_DeleteException), but probably doesn't
2561 // interoperate very well with foreign exceptions.
David Chisnall9735ca62011-03-25 11:57:33 +00002562 //
David Chisnall80558d22011-03-20 21:35:39 +00002563 // In Objective-C++ mode, we actually emit something equivalent to the C++
David Chisnall9735ca62011-03-25 11:57:33 +00002564 // exception handler.
2565 EmitTryCatchStmt(CGF, S, EnterCatchFn, ExitCatchFn, ExceptionReThrowFn);
2566 return ;
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00002567}
2568
David Chisnall9f6614e2011-03-23 16:36:54 +00002569void CGObjCGNU::EmitThrowStmt(CodeGenFunction &CGF,
Daniel Dunbar49f66022008-09-24 03:38:44 +00002570 const ObjCAtThrowStmt &S) {
Chris Lattner5dc08672009-05-08 00:11:50 +00002571 llvm::Value *ExceptionAsObject;
2572
Chris Lattner5dc08672009-05-08 00:11:50 +00002573 if (const Expr *ThrowExpr = S.getThrowExpr()) {
John McCall2b014d62011-10-01 10:32:24 +00002574 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr);
Fariborz Jahanian1e64a952009-05-17 16:49:27 +00002575 ExceptionAsObject = Exception;
Chris Lattner5dc08672009-05-08 00:11:50 +00002576 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00002577 assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
Chris Lattner5dc08672009-05-08 00:11:50 +00002578 "Unexpected rethrow outside @catch block.");
2579 ExceptionAsObject = CGF.ObjCEHValueStack.back();
2580 }
Benjamin Kramer578faa82011-09-27 21:06:10 +00002581 ExceptionAsObject = CGF.Builder.CreateBitCast(ExceptionAsObject, IdTy);
David Chisnallc6860042012-11-07 16:50:40 +00002582 llvm::CallSite Throw =
2583 CGF.EmitCallOrInvoke(ExceptionThrowFn, ExceptionAsObject);
2584 Throw.setDoesNotReturn();
Eli Friedmanc972c922012-08-10 21:26:17 +00002585 CGF.Builder.CreateUnreachable();
Chris Lattner5dc08672009-05-08 00:11:50 +00002586 CGF.Builder.ClearInsertionPoint();
Anders Carlsson64d5d6c2008-09-09 10:04:29 +00002587}
2588
David Chisnall9f6614e2011-03-23 16:36:54 +00002589llvm::Value * CGObjCGNU::EmitObjCWeakRead(CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00002590 llvm::Value *AddrWeakObj) {
David Chisnallef6e0f32010-02-03 15:59:02 +00002591 CGBuilderTy B = CGF.Builder;
David Chisnall31fc0c12011-05-30 12:00:26 +00002592 AddrWeakObj = EnforceType(B, AddrWeakObj, PtrToIdTy);
David Chisnallef6e0f32010-02-03 15:59:02 +00002593 return B.CreateCall(WeakReadFn, AddrWeakObj);
Fariborz Jahanian6dc23172008-11-18 21:45:40 +00002594}
2595
David Chisnall9f6614e2011-03-23 16:36:54 +00002596void CGObjCGNU::EmitObjCWeakAssign(CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00002597 llvm::Value *src, llvm::Value *dst) {
David Chisnallef6e0f32010-02-03 15:59:02 +00002598 CGBuilderTy B = CGF.Builder;
2599 src = EnforceType(B, src, IdTy);
2600 dst = EnforceType(B, dst, PtrToIdTy);
2601 B.CreateCall2(WeakAssignFn, src, dst);
Fariborz Jahanian3e283e32008-11-18 22:37:34 +00002602}
2603
David Chisnall9f6614e2011-03-23 16:36:54 +00002604void CGObjCGNU::EmitObjCGlobalAssign(CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00002605 llvm::Value *src, llvm::Value *dst,
2606 bool threadlocal) {
David Chisnallef6e0f32010-02-03 15:59:02 +00002607 CGBuilderTy B = CGF.Builder;
2608 src = EnforceType(B, src, IdTy);
2609 dst = EnforceType(B, dst, PtrToIdTy);
Fariborz Jahanian021a7a62010-07-20 20:30:03 +00002610 if (!threadlocal)
2611 B.CreateCall2(GlobalAssignFn, src, dst);
2612 else
2613 // FIXME. Add threadloca assign API
David Blaikieb219cfc2011-09-23 05:06:16 +00002614 llvm_unreachable("EmitObjCGlobalAssign - Threal Local API NYI");
Fariborz Jahanian58626502008-11-19 00:59:10 +00002615}
2616
David Chisnall9f6614e2011-03-23 16:36:54 +00002617void CGObjCGNU::EmitObjCIvarAssign(CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +00002618 llvm::Value *src, llvm::Value *dst,
2619 llvm::Value *ivarOffset) {
David Chisnallef6e0f32010-02-03 15:59:02 +00002620 CGBuilderTy B = CGF.Builder;
2621 src = EnforceType(B, src, IdTy);
David Chisnallb44eda32011-05-25 20:33:17 +00002622 dst = EnforceType(B, dst, IdTy);
David Chisnallef6e0f32010-02-03 15:59:02 +00002623 B.CreateCall3(IvarAssignFn, src, dst, ivarOffset);
Fariborz Jahanian7eda8362008-11-20 19:23:36 +00002624}
2625
David Chisnall9f6614e2011-03-23 16:36:54 +00002626void CGObjCGNU::EmitObjCStrongCastAssign(CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00002627 llvm::Value *src, llvm::Value *dst) {
David Chisnallef6e0f32010-02-03 15:59:02 +00002628 CGBuilderTy B = CGF.Builder;
2629 src = EnforceType(B, src, IdTy);
2630 dst = EnforceType(B, dst, PtrToIdTy);
2631 B.CreateCall2(StrongCastAssignFn, src, dst);
Fariborz Jahanian58626502008-11-19 00:59:10 +00002632}
2633
David Chisnall9f6614e2011-03-23 16:36:54 +00002634void CGObjCGNU::EmitGCMemmoveCollectable(CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +00002635 llvm::Value *DestPtr,
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00002636 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00002637 llvm::Value *Size) {
David Chisnallef6e0f32010-02-03 15:59:02 +00002638 CGBuilderTy B = CGF.Builder;
David Chisnall68e5e132011-05-28 14:23:43 +00002639 DestPtr = EnforceType(B, DestPtr, PtrTy);
2640 SrcPtr = EnforceType(B, SrcPtr, PtrTy);
David Chisnallef6e0f32010-02-03 15:59:02 +00002641
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00002642 B.CreateCall3(MemMoveFn, DestPtr, SrcPtr, Size);
Fariborz Jahanian082b02e2009-07-08 01:18:33 +00002643}
2644
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002645llvm::GlobalVariable *CGObjCGNU::ObjCIvarOffsetVariable(
2646 const ObjCInterfaceDecl *ID,
2647 const ObjCIvarDecl *Ivar) {
2648 const std::string Name = "__objc_ivar_offset_" + ID->getNameAsString()
2649 + '.' + Ivar->getNameAsString();
2650 // Emit the variable and initialize it with what we think the correct value
2651 // is. This allows code compiled with non-fragile ivars to work correctly
2652 // when linked against code which isn't (most of the time).
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002653 llvm::GlobalVariable *IvarOffsetPointer = TheModule.getNamedGlobal(Name);
2654 if (!IvarOffsetPointer) {
David Chisnalle0d98762010-11-03 16:12:44 +00002655 // This will cause a run-time crash if we accidentally use it. A value of
2656 // 0 would seem more sensible, but will silently overwrite the isa pointer
2657 // causing a great deal of confusion.
2658 uint64_t Offset = -1;
2659 // We can't call ComputeIvarBaseOffset() here if we have the
2660 // implementation, because it will create an invalid ASTRecordLayout object
2661 // that we are then stuck with forever, so we only initialize the ivar
2662 // offset variable with a guess if we only have the interface. The
2663 // initializer will be reset later anyway, when we are generating the class
2664 // description.
2665 if (!CGM.getContext().getObjCImplementation(
Dan Gohmancb421fa2010-04-19 16:39:44 +00002666 const_cast<ObjCInterfaceDecl *>(ID)))
Eli Friedmane5b46662012-11-06 22:15:52 +00002667 Offset = ComputeIvarBaseOffset(CGM, ID, Ivar);
David Chisnalld901da52010-04-19 01:37:25 +00002668
David Chisnall49de5282011-10-08 08:54:36 +00002669 llvm::ConstantInt *OffsetGuess = llvm::ConstantInt::get(Int32Ty, Offset,
Richard Trieu243f1082011-09-21 02:46:06 +00002670 /*isSigned*/true);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002671 // Don't emit the guess in non-PIC code because the linker will not be able
2672 // to replace it with the real version for a library. In non-PIC code you
2673 // must compile with the fragile ABI if you want to use ivars from a
Mike Stump1eb44332009-09-09 15:08:12 +00002674 // GCC-compiled class.
Chandler Carruth5e219cf2012-04-08 16:40:35 +00002675 if (CGM.getLangOpts().PICLevel || CGM.getLangOpts().PIELevel) {
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002676 llvm::GlobalVariable *IvarOffsetGV = new llvm::GlobalVariable(TheModule,
David Chisnall917b28b2011-10-04 15:35:30 +00002677 Int32Ty, false,
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002678 llvm::GlobalValue::PrivateLinkage, OffsetGuess, Name+".guess");
2679 IvarOffsetPointer = new llvm::GlobalVariable(TheModule,
2680 IvarOffsetGV->getType(), false, llvm::GlobalValue::LinkOnceAnyLinkage,
2681 IvarOffsetGV, Name);
2682 } else {
2683 IvarOffsetPointer = new llvm::GlobalVariable(TheModule,
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00002684 llvm::Type::getInt32PtrTy(VMContext), false,
2685 llvm::GlobalValue::ExternalLinkage, 0, Name);
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002686 }
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002687 }
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002688 return IvarOffsetPointer;
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002689}
2690
David Chisnall9f6614e2011-03-23 16:36:54 +00002691LValue CGObjCGNU::EmitObjCValueForIvar(CodeGenFunction &CGF,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00002692 QualType ObjectTy,
2693 llvm::Value *BaseValue,
2694 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00002695 unsigned CVRQualifiers) {
John McCallc12c5bb2010-05-15 11:32:37 +00002696 const ObjCInterfaceDecl *ID =
2697 ObjectTy->getAs<ObjCObjectType>()->getInterface();
Daniel Dunbar97776872009-04-22 07:32:20 +00002698 return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
2699 EmitIvarOffset(CGF, ID, Ivar));
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00002700}
Mike Stumpbb1c8602009-07-31 21:31:32 +00002701
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002702static const ObjCInterfaceDecl *FindIvarInterface(ASTContext &Context,
2703 const ObjCInterfaceDecl *OID,
2704 const ObjCIvarDecl *OIVD) {
Jordy Rosedb8264e2011-07-22 02:08:32 +00002705 for (const ObjCIvarDecl *next = OID->all_declared_ivar_begin(); next;
2706 next = next->getNextIvar()) {
2707 if (OIVD == next)
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002708 return OID;
2709 }
Mike Stump1eb44332009-09-09 15:08:12 +00002710
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002711 // Otherwise check in the super class.
2712 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())
2713 return FindIvarInterface(Context, Super, OIVD);
Mike Stump1eb44332009-09-09 15:08:12 +00002714
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002715 return 0;
2716}
Fariborz Jahanian0bb20362009-02-02 20:02:29 +00002717
David Chisnall9f6614e2011-03-23 16:36:54 +00002718llvm::Value *CGObjCGNU::EmitIvarOffset(CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +00002719 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00002720 const ObjCIvarDecl *Ivar) {
John McCall260611a2012-06-20 06:18:46 +00002721 if (CGM.getLangOpts().ObjCRuntime.isNonFragile()) {
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002722 Interface = FindIvarInterface(CGM.getContext(), Interface, Ivar);
David Chisnall63ff7032011-07-07 12:34:51 +00002723 if (RuntimeVersion < 10)
2724 return CGF.Builder.CreateZExtOrBitCast(
2725 CGF.Builder.CreateLoad(CGF.Builder.CreateLoad(
2726 ObjCIvarOffsetVariable(Interface, Ivar), false, "ivar")),
2727 PtrDiffTy);
2728 std::string name = "__objc_ivar_offset_value_" +
2729 Interface->getNameAsString() +"." + Ivar->getNameAsString();
2730 llvm::Value *Offset = TheModule.getGlobalVariable(name);
2731 if (!Offset)
2732 Offset = new llvm::GlobalVariable(TheModule, IntTy,
David Chisnall3fc81d32011-08-01 17:36:53 +00002733 false, llvm::GlobalValue::LinkOnceAnyLinkage,
2734 llvm::Constant::getNullValue(IntTy), name);
David Chisnall66148452012-04-06 15:39:12 +00002735 Offset = CGF.Builder.CreateLoad(Offset);
2736 if (Offset->getType() != PtrDiffTy)
2737 Offset = CGF.Builder.CreateZExtOrBitCast(Offset, PtrDiffTy);
2738 return Offset;
Fariborz Jahanian9cd96ff2009-05-20 18:41:51 +00002739 }
Eli Friedmane5b46662012-11-06 22:15:52 +00002740 uint64_t Offset = ComputeIvarBaseOffset(CGF.CGM, Interface, Ivar);
2741 return llvm::ConstantInt::get(PtrDiffTy, Offset, /*isSigned*/true);
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00002742}
2743
David Chisnall9f6614e2011-03-23 16:36:54 +00002744CGObjCRuntime *
2745clang::CodeGen::CreateGNUObjCRuntime(CodeGenModule &CGM) {
John McCall260611a2012-06-20 06:18:46 +00002746 switch (CGM.getLangOpts().ObjCRuntime.getKind()) {
David Chisnall11d3f4c2012-07-03 20:49:52 +00002747 case ObjCRuntime::GNUstep:
David Chisnall9f6614e2011-03-23 16:36:54 +00002748 return new CGObjCGNUstep(CGM);
John McCall260611a2012-06-20 06:18:46 +00002749
David Chisnall11d3f4c2012-07-03 20:49:52 +00002750 case ObjCRuntime::GCC:
John McCall260611a2012-06-20 06:18:46 +00002751 return new CGObjCGCC(CGM);
2752
John McCallf7226fb2012-07-12 02:07:58 +00002753 case ObjCRuntime::ObjFW:
2754 return new CGObjCObjFW(CGM);
2755
John McCall260611a2012-06-20 06:18:46 +00002756 case ObjCRuntime::FragileMacOSX:
2757 case ObjCRuntime::MacOSX:
2758 case ObjCRuntime::iOS:
2759 llvm_unreachable("these runtimes are not GNU runtimes");
2760 }
2761 llvm_unreachable("bad runtime");
Chris Lattner0f984262008-03-01 08:50:34 +00002762}