blob: 4fa47a740aafb771070b5bb1ef7b3aee41f4d538 [file] [log] [blame]
Daniel Dunbarc17a4d32008-08-11 02:45:11 +00001//===----- CGObjCRuntime.h - Interface to ObjC Runtimes ---------*- C++ -*-===//
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//
10// This provides an abstract class for Objective-C code generation. Concrete
11// subclasses of this implement code generation for specific Objective-C
12// runtime libraries.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef CLANG_CODEGEN_OBCJRUNTIME_H
17#define CLANG_CODEGEN_OBCJRUNTIME_H
Daniel Dunbare91593e2008-08-11 04:54:23 +000018#include "clang/Basic/IdentifierTable.h" // Selector
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +000019#include "clang/AST/DeclObjC.h"
Chris Lattner0f984262008-03-01 08:50:34 +000020
Daniel Dunbar45d196b2008-11-01 01:53:16 +000021#include "CGBuilder.h"
Daniel Dunbar46f45b92008-09-09 01:06:48 +000022#include "CGCall.h"
Daniel Dunbar45d196b2008-11-01 01:53:16 +000023#include "CGValue.h"
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000024
Chris Lattner0f984262008-03-01 08:50:34 +000025namespace llvm {
Chris Lattner0f984262008-03-01 08:50:34 +000026 class Constant;
Daniel Dunbar97776872009-04-22 07:32:20 +000027 class Function;
28 class Module;
29 class StructLayout;
Daniel Dunbar84ad77a2009-04-22 09:39:34 +000030 class StructType;
Chris Lattner0f984262008-03-01 08:50:34 +000031 class Type;
32 class Value;
Chris Lattner0f984262008-03-01 08:50:34 +000033}
34
35namespace clang {
Daniel Dunbar46f45b92008-09-09 01:06:48 +000036namespace CodeGen {
37 class CodeGenFunction;
38}
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000039
Daniel Dunbar97776872009-04-22 07:32:20 +000040 class FieldDecl;
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000041 class ObjCAtTryStmt;
42 class ObjCAtThrowStmt;
Chris Lattner10cac6f2008-11-15 21:26:17 +000043 class ObjCAtSynchronizedStmt;
Fariborz Jahanian679a5022009-01-10 21:06:09 +000044 class ObjCContainerDecl;
Daniel Dunbar7ded7f42008-08-15 22:20:32 +000045 class ObjCCategoryImplDecl;
46 class ObjCImplementationDecl;
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +000047 class ObjCInterfaceDecl;
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000048 class ObjCMessageExpr;
Daniel Dunbar7ded7f42008-08-15 22:20:32 +000049 class ObjCMethodDecl;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000050 class ObjCProtocolDecl;
Chris Lattner8e67b632008-06-26 04:37:12 +000051 class Selector;
Fariborz Jahanian0bb20362009-02-02 20:02:29 +000052 class ObjCIvarDecl;
Steve Naroff33fdb732009-03-31 16:53:37 +000053 class ObjCStringLiteral;
Fariborz Jahanian89ecd412010-08-04 16:57:49 +000054 class BlockDeclRefExpr;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000055
Chris Lattner0f984262008-03-01 08:50:34 +000056namespace CodeGen {
Chris Lattnerdce14062008-06-26 04:19:03 +000057 class CodeGenModule;
John McCall6b5a61b2011-02-07 10:33:21 +000058 class CGBlockInfo;
Chris Lattner0f984262008-03-01 08:50:34 +000059
Mike Stumpf5408fe2009-05-16 07:57:57 +000060// FIXME: Several methods should be pure virtual but aren't to avoid the
61// partially-implemented subclass breaking.
Anton Korobeynikov20ff3102008-06-01 14:13:53 +000062
63/// Implements runtime-specific code generation functions.
Chris Lattner0f984262008-03-01 08:50:34 +000064class CGObjCRuntime {
Daniel Dunbarf0fe5bc2010-04-05 21:36:35 +000065protected:
Daniel Dunbar97776872009-04-22 07:32:20 +000066 // Utility functions for unified ivar access. These need to
67 // eventually be folded into other places (the structure layout
68 // code).
69
Daniel Dunbar84ad77a2009-04-22 09:39:34 +000070 /// Compute an offset to the given ivar, suitable for passing to
71 /// EmitValueForIvarAtOffset. Note that the correct handling of
72 /// bit-fields is carefully coordinated by these two, use caution!
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +000073 ///
74 /// The latter overload is suitable for computing the offset of a
75 /// sythesized ivar.
Daniel Dunbar97776872009-04-22 07:32:20 +000076 uint64_t ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
77 const ObjCInterfaceDecl *OID,
78 const ObjCIvarDecl *Ivar);
Daniel Dunbar9f89f2b2009-05-03 12:57:56 +000079 uint64_t ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM,
80 const ObjCImplementationDecl *OID,
81 const ObjCIvarDecl *Ivar);
Daniel Dunbar97776872009-04-22 07:32:20 +000082
83 LValue EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF,
84 const ObjCInterfaceDecl *OID,
85 llvm::Value *BaseValue,
86 const ObjCIvarDecl *Ivar,
87 unsigned CVRQualifiers,
Mike Stump1eb44332009-09-09 15:08:12 +000088 llvm::Value *Offset);
David Chisnall9735ca62011-03-25 11:57:33 +000089 /// Emits a try / catch statement. This function is intended to be called by
90 /// subclasses, and provides a generic mechanism for generating these, which
91 /// should be usable by all runtimes. The caller must provide the functions to
92 /// call when entering and exiting a @catch() block, and the function used to
93 /// rethrow exceptions. If the begin and end catch functions are NULL, then
94 /// the function assumes that the EH personality function provides the
95 /// thrown object directly.
96 void EmitTryCatchStmt(CodeGenFunction &CGF,
97 const ObjCAtTryStmt &S,
David Chisnall789ecde2011-05-23 22:33:28 +000098 llvm::Constant *beginCatchFn,
99 llvm::Constant *endCatchFn,
100 llvm::Constant *exceptionRethrowFn);
David Chisnall9735ca62011-03-25 11:57:33 +0000101 /// Emits an @synchronize() statement, using the syncEnterFn and syncExitFn
102 /// arguments as the functions called to lock and unlock the object. This
103 /// function can be called by subclasses that use zero-cost exception
104 /// handling.
105 void EmitAtSynchronizedStmt(CodeGenFunction &CGF,
106 const ObjCAtSynchronizedStmt &S,
107 llvm::Function *syncEnterFn,
108 llvm::Function *syncExitFn);
Daniel Dunbar58bf6102008-08-11 16:50:21 +0000109
Chris Lattner0f984262008-03-01 08:50:34 +0000110public:
111 virtual ~CGObjCRuntime();
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000112
113 /// Generate the function required to register all Objective-C components in
114 /// this compilation unit with the runtime library.
115 virtual llvm::Function *ModuleInitFunction() = 0;
116
117 /// Get a selector for the specified name and type values. The
118 /// return value should have the LLVM type for pointer-to
119 /// ASTContext::getObjCSelType().
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000120 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
Fariborz Jahanian03b29602010-06-17 19:56:20 +0000121 Selector Sel, bool lval=false) = 0;
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000122
Mike Stump1eb44332009-09-09 15:08:12 +0000123 /// Get a typed selector.
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +0000124 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
125 const ObjCMethodDecl *Method) = 0;
126
John McCall5a180392010-07-24 00:37:23 +0000127 /// Get the type constant to catch for the given ObjC pointer type.
128 /// This is used externally to implement catching ObjC types in C++.
129 /// Runtimes which don't support this should add the appropriate
130 /// error to Sema.
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +0000131 virtual llvm::Constant *GetEHType(QualType T) = 0;
John McCall5a180392010-07-24 00:37:23 +0000132
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000133 /// Generate a constant string object.
David Chisnall0d13f6f2010-01-23 02:40:42 +0000134 virtual llvm::Constant *GenerateConstantString(const StringLiteral *) = 0;
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000135
136 /// Generate a category. A category contains a list of methods (and
137 /// accompanying metadata) and a list of protocols.
138 virtual void GenerateCategory(const ObjCCategoryImplDecl *OCD) = 0;
139
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000140 /// Generate a class structure for this class.
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000141 virtual void GenerateClass(const ObjCImplementationDecl *OID) = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000142
143 /// Generate an Objective-C message send operation.
Daniel Dunbard6c93d72009-09-17 04:01:22 +0000144 ///
145 /// \param Method - The method being called, this may be null if synthesizing
146 /// a property setter or getter.
Mike Stump1eb44332009-09-09 15:08:12 +0000147 virtual CodeGen::RValue
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000148 GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +0000149 ReturnValueSlot ReturnSlot,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000150 QualType ResultType,
151 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000152 llvm::Value *Receiver,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +0000153 const CallArgList &CallArgs,
David Chisnallc6cd5fd2010-04-28 19:33:36 +0000154 const ObjCInterfaceDecl *Class = 0,
Daniel Dunbard6c93d72009-09-17 04:01:22 +0000155 const ObjCMethodDecl *Method = 0) = 0;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000156
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000157 /// Generate an Objective-C message send operation to the super
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000158 /// class initiated in a method for Class and with the given Self
159 /// object.
Daniel Dunbard6c93d72009-09-17 04:01:22 +0000160 ///
161 /// \param Method - The method being called, this may be null if synthesizing
162 /// a property setter or getter.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000163 virtual CodeGen::RValue
164 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
John McCallef072fd2010-05-22 01:48:05 +0000165 ReturnValueSlot ReturnSlot,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000166 QualType ResultType,
167 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000168 const ObjCInterfaceDecl *Class,
Fariborz Jahanian7ce77922009-02-28 20:07:56 +0000169 bool isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000170 llvm::Value *Self,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000171 bool IsClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +0000172 const CallArgList &CallArgs,
173 const ObjCMethodDecl *Method = 0) = 0;
Daniel Dunbar98c5ead2008-08-12 05:08:18 +0000174
175 /// Emit the code to return the named protocol as an object, as in a
176 /// @protocol expression.
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000177 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000178 const ObjCProtocolDecl *OPD) = 0;
Daniel Dunbar98c5ead2008-08-12 05:08:18 +0000179
Mike Stump1eb44332009-09-09 15:08:12 +0000180 /// Generate the named protocol. Protocols contain method metadata but no
181 /// implementations.
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000182 virtual void GenerateProtocol(const ObjCProtocolDecl *OPD) = 0;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000183
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000184 /// Generate a function preamble for a method with the specified
Mike Stump1eb44332009-09-09 15:08:12 +0000185 /// types.
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000186
Mike Stumpf5408fe2009-05-16 07:57:57 +0000187 // FIXME: Current this just generates the Function definition, but really this
188 // should also be generating the loads of the parameters, as the runtime
189 // should have full control over how parameters are passed.
Mike Stump1eb44332009-09-09 15:08:12 +0000190 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000191 const ObjCContainerDecl *CD) = 0;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000192
Daniel Dunbar49f66022008-09-24 03:38:44 +0000193 /// Return the runtime function for getting properties.
Chris Lattner74391b42009-03-22 21:03:39 +0000194 virtual llvm::Constant *GetPropertyGetFunction() = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000195
Daniel Dunbar49f66022008-09-24 03:38:44 +0000196 /// Return the runtime function for setting properties.
Chris Lattner74391b42009-03-22 21:03:39 +0000197 virtual llvm::Constant *GetPropertySetFunction() = 0;
Daniel Dunbar49f66022008-09-24 03:38:44 +0000198
David Chisnall8fac25d2010-12-26 22:13:16 +0000199 // API for atomic copying of qualified aggregates in getter.
200 virtual llvm::Constant *GetGetStructFunction() = 0;
201 // API for atomic copying of qualified aggregates in setter.
202 virtual llvm::Constant *GetSetStructFunction() = 0;
Fariborz Jahanian6cc59062010-04-12 18:18:10 +0000203
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +0000204 /// GetClass - Return a reference to the class for the given
205 /// interface decl.
Mike Stump1eb44332009-09-09 15:08:12 +0000206 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +0000207 const ObjCInterfaceDecl *OID) = 0;
John McCallf85e1932011-06-15 23:02:42 +0000208
209
210 virtual llvm::Value *EmitNSAutoreleasePoolClassRef(CGBuilderTy &Builder) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000211 llvm_unreachable("autoreleasepool unsupported in this ABI");
John McCallf85e1932011-06-15 23:02:42 +0000212 }
213
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000214 /// EnumerationMutationFunction - Return the function that's called by the
215 /// compiler when a mutation is detected during foreach iteration.
Chris Lattner74391b42009-03-22 21:03:39 +0000216 virtual llvm::Constant *EnumerationMutationFunction() = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000217
John McCallf1549f62010-07-06 01:34:17 +0000218 virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
219 const ObjCAtSynchronizedStmt &S) = 0;
220 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
221 const ObjCAtTryStmt &S) = 0;
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000222 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
223 const ObjCAtThrowStmt &S) = 0;
Daniel Dunbar6bf2ae02009-04-21 00:49:20 +0000224 virtual llvm::Value *EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
225 llvm::Value *AddrWeakObj) = 0;
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000226 virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
227 llvm::Value *src, llvm::Value *dest) = 0;
Fariborz Jahanian58626502008-11-19 00:59:10 +0000228 virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian021a7a62010-07-20 20:30:03 +0000229 llvm::Value *src, llvm::Value *dest,
230 bool threadlocal=false) = 0;
Fariborz Jahanian7eda8362008-11-20 19:23:36 +0000231 virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000232 llvm::Value *src, llvm::Value *dest,
233 llvm::Value *ivarOffset) = 0;
Fariborz Jahanian58626502008-11-19 00:59:10 +0000234 virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
235 llvm::Value *src, llvm::Value *dest) = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000236
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000237 virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
238 QualType ObjectTy,
239 llvm::Value *BaseValue,
240 const ObjCIvarDecl *Ivar,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000241 unsigned CVRQualifiers) = 0;
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +0000242 virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar2a031922009-04-22 05:08:15 +0000243 const ObjCInterfaceDecl *Interface,
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +0000244 const ObjCIvarDecl *Ivar) = 0;
Fariborz Jahanian082b02e2009-07-08 01:18:33 +0000245 virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF,
Mike Stump1eb44332009-09-09 15:08:12 +0000246 llvm::Value *DestPtr,
Fariborz Jahanian082b02e2009-07-08 01:18:33 +0000247 llvm::Value *SrcPtr,
Fariborz Jahanian55bcace2010-06-15 22:44:06 +0000248 llvm::Value *Size) = 0;
John McCall6b5a61b2011-02-07 10:33:21 +0000249 virtual llvm::Constant *BuildGCBlockLayout(CodeGen::CodeGenModule &CGM,
250 const CodeGen::CGBlockInfo &blockInfo) = 0;
Fariborz Jahanian6f40e222011-05-17 22:21:16 +0000251 virtual llvm::GlobalVariable *GetClassGlobal(const std::string &Name) = 0;
Chris Lattner0f984262008-03-01 08:50:34 +0000252};
253
Mike Stump1eb44332009-09-09 15:08:12 +0000254/// Creates an instance of an Objective-C runtime class.
Chris Lattner391d77a2008-03-30 23:03:07 +0000255//TODO: This should include some way of selecting which runtime to target.
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000256CGObjCRuntime *CreateGNUObjCRuntime(CodeGenModule &CGM);
257CGObjCRuntime *CreateMacObjCRuntime(CodeGenModule &CGM);
Chris Lattner0f984262008-03-01 08:50:34 +0000258}
259}
260#endif