Daniel Dunbar | c17a4d3 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1 | //===----- CGObjCRuntime.h - Interface to ObjC Runtimes ---------*- C++ -*-===// |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This provides 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 Dunbar | 45d196b | 2008-11-01 01:53:16 +0000 | [diff] [blame] | 18 | #include "CGBuilder.h" |
Daniel Dunbar | 46f45b9 | 2008-09-09 01:06:48 +0000 | [diff] [blame] | 19 | #include "CGCall.h" |
Daniel Dunbar | 45d196b | 2008-11-01 01:53:16 +0000 | [diff] [blame] | 20 | #include "CGValue.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclObjC.h" |
| 22 | #include "clang/Basic/IdentifierTable.h" // Selector |
Daniel Dunbar | 8f2926b | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 23 | |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 24 | namespace llvm { |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 25 | class Constant; |
Daniel Dunbar | 9777687 | 2009-04-22 07:32:20 +0000 | [diff] [blame] | 26 | class Function; |
| 27 | class Module; |
| 28 | class StructLayout; |
Daniel Dunbar | 84ad77a | 2009-04-22 09:39:34 +0000 | [diff] [blame] | 29 | class StructType; |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 30 | class Type; |
| 31 | class Value; |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | namespace clang { |
Daniel Dunbar | 46f45b9 | 2008-09-09 01:06:48 +0000 | [diff] [blame] | 35 | namespace CodeGen { |
| 36 | class CodeGenFunction; |
| 37 | } |
Daniel Dunbar | 8f2926b | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 38 | |
Daniel Dunbar | 9777687 | 2009-04-22 07:32:20 +0000 | [diff] [blame] | 39 | class FieldDecl; |
Anders Carlsson | 64d5d6c | 2008-09-09 10:04:29 +0000 | [diff] [blame] | 40 | class ObjCAtTryStmt; |
| 41 | class ObjCAtThrowStmt; |
Chris Lattner | 10cac6f | 2008-11-15 21:26:17 +0000 | [diff] [blame] | 42 | class ObjCAtSynchronizedStmt; |
Fariborz Jahanian | 679a502 | 2009-01-10 21:06:09 +0000 | [diff] [blame] | 43 | class ObjCContainerDecl; |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 44 | class ObjCCategoryImplDecl; |
| 45 | class ObjCImplementationDecl; |
Daniel Dunbar | ddb2a3d | 2008-08-16 00:25:02 +0000 | [diff] [blame] | 46 | class ObjCInterfaceDecl; |
Daniel Dunbar | 8f2926b | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 47 | class ObjCMessageExpr; |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 48 | class ObjCMethodDecl; |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 49 | class ObjCProtocolDecl; |
Chris Lattner | 8e67b63 | 2008-06-26 04:37:12 +0000 | [diff] [blame] | 50 | class Selector; |
Fariborz Jahanian | 0bb2036 | 2009-02-02 20:02:29 +0000 | [diff] [blame] | 51 | class ObjCIvarDecl; |
Steve Naroff | 33fdb73 | 2009-03-31 16:53:37 +0000 | [diff] [blame] | 52 | class ObjCStringLiteral; |
Fariborz Jahanian | 89ecd41 | 2010-08-04 16:57:49 +0000 | [diff] [blame] | 53 | class BlockDeclRefExpr; |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 54 | |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 55 | namespace CodeGen { |
Chris Lattner | dce1406 | 2008-06-26 04:19:03 +0000 | [diff] [blame] | 56 | class CodeGenModule; |
John McCall | 6b5a61b | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 57 | class CGBlockInfo; |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 58 | |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 59 | // FIXME: Several methods should be pure virtual but aren't to avoid the |
| 60 | // partially-implemented subclass breaking. |
Anton Korobeynikov | 20ff310 | 2008-06-01 14:13:53 +0000 | [diff] [blame] | 61 | |
| 62 | /// Implements runtime-specific code generation functions. |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 63 | class CGObjCRuntime { |
Daniel Dunbar | f0fe5bc | 2010-04-05 21:36:35 +0000 | [diff] [blame] | 64 | protected: |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 65 | CodeGen::CodeGenModule &CGM; |
| 66 | CGObjCRuntime(CodeGen::CodeGenModule &CGM) : CGM(CGM) {} |
| 67 | |
Daniel Dunbar | 9777687 | 2009-04-22 07:32:20 +0000 | [diff] [blame] | 68 | // Utility functions for unified ivar access. These need to |
| 69 | // eventually be folded into other places (the structure layout |
| 70 | // code). |
| 71 | |
Daniel Dunbar | 84ad77a | 2009-04-22 09:39:34 +0000 | [diff] [blame] | 72 | /// Compute an offset to the given ivar, suitable for passing to |
| 73 | /// EmitValueForIvarAtOffset. Note that the correct handling of |
| 74 | /// bit-fields is carefully coordinated by these two, use caution! |
Daniel Dunbar | 9f89f2b | 2009-05-03 12:57:56 +0000 | [diff] [blame] | 75 | /// |
| 76 | /// The latter overload is suitable for computing the offset of a |
| 77 | /// sythesized ivar. |
Eli Friedman | e5b4666 | 2012-11-06 22:15:52 +0000 | [diff] [blame] | 78 | uint64_t ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM, |
| 79 | const ObjCInterfaceDecl *OID, |
| 80 | const ObjCIvarDecl *Ivar); |
| 81 | uint64_t ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM, |
| 82 | const ObjCImplementationDecl *OID, |
| 83 | const ObjCIvarDecl *Ivar); |
Daniel Dunbar | 9777687 | 2009-04-22 07:32:20 +0000 | [diff] [blame] | 84 | |
| 85 | LValue EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF, |
| 86 | const ObjCInterfaceDecl *OID, |
| 87 | llvm::Value *BaseValue, |
| 88 | const ObjCIvarDecl *Ivar, |
| 89 | unsigned CVRQualifiers, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 90 | llvm::Value *Offset); |
David Chisnall | 9735ca6 | 2011-03-25 11:57:33 +0000 | [diff] [blame] | 91 | /// Emits a try / catch statement. This function is intended to be called by |
| 92 | /// subclasses, and provides a generic mechanism for generating these, which |
James Dennett | 2ee5ba3 | 2012-06-15 22:10:14 +0000 | [diff] [blame] | 93 | /// should be usable by all runtimes. The caller must provide the functions |
| 94 | /// to call when entering and exiting a \@catch() block, and the function |
| 95 | /// used to rethrow exceptions. If the begin and end catch functions are |
| 96 | /// NULL, then the function assumes that the EH personality function provides |
| 97 | /// the thrown object directly. |
David Chisnall | 9735ca6 | 2011-03-25 11:57:33 +0000 | [diff] [blame] | 98 | void EmitTryCatchStmt(CodeGenFunction &CGF, |
| 99 | const ObjCAtTryStmt &S, |
David Chisnall | 789ecde | 2011-05-23 22:33:28 +0000 | [diff] [blame] | 100 | llvm::Constant *beginCatchFn, |
| 101 | llvm::Constant *endCatchFn, |
| 102 | llvm::Constant *exceptionRethrowFn); |
James Dennett | 2ee5ba3 | 2012-06-15 22:10:14 +0000 | [diff] [blame] | 103 | /// Emits an \@synchronize() statement, using the \p syncEnterFn and |
| 104 | /// \p syncExitFn arguments as the functions called to lock and unlock |
| 105 | /// the object. This function can be called by subclasses that use |
| 106 | /// zero-cost exception handling. |
David Chisnall | 9735ca6 | 2011-03-25 11:57:33 +0000 | [diff] [blame] | 107 | void EmitAtSynchronizedStmt(CodeGenFunction &CGF, |
| 108 | const ObjCAtSynchronizedStmt &S, |
| 109 | llvm::Function *syncEnterFn, |
| 110 | llvm::Function *syncExitFn); |
Daniel Dunbar | 58bf610 | 2008-08-11 16:50:21 +0000 | [diff] [blame] | 111 | |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 112 | public: |
| 113 | virtual ~CGObjCRuntime(); |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 114 | |
| 115 | /// Generate the function required to register all Objective-C components in |
| 116 | /// this compilation unit with the runtime library. |
| 117 | virtual llvm::Function *ModuleInitFunction() = 0; |
| 118 | |
| 119 | /// Get a selector for the specified name and type values. The |
| 120 | /// return value should have the LLVM type for pointer-to |
| 121 | /// ASTContext::getObjCSelType(). |
John McCall | bd7370a | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 122 | virtual llvm::Value *GetSelector(CodeGenFunction &CGF, |
Fariborz Jahanian | 03b2960 | 2010-06-17 19:56:20 +0000 | [diff] [blame] | 123 | Selector Sel, bool lval=false) = 0; |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 124 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 125 | /// Get a typed selector. |
John McCall | bd7370a | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 126 | virtual llvm::Value *GetSelector(CodeGenFunction &CGF, |
Fariborz Jahanian | df9ccc6 | 2009-05-05 21:36:57 +0000 | [diff] [blame] | 127 | const ObjCMethodDecl *Method) = 0; |
| 128 | |
John McCall | 5a18039 | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 129 | /// Get the type constant to catch for the given ObjC pointer type. |
| 130 | /// This is used externally to implement catching ObjC types in C++. |
| 131 | /// Runtimes which don't support this should add the appropriate |
| 132 | /// error to Sema. |
Fariborz Jahanian | cf5abc7 | 2011-06-23 19:00:08 +0000 | [diff] [blame] | 133 | virtual llvm::Constant *GetEHType(QualType T) = 0; |
John McCall | 5a18039 | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 134 | |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 135 | /// Generate a constant string object. |
David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 136 | virtual llvm::Constant *GenerateConstantString(const StringLiteral *) = 0; |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 137 | |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 138 | /// Generate a category. A category contains a list of methods (and |
| 139 | /// accompanying metadata) and a list of protocols. |
| 140 | virtual void GenerateCategory(const ObjCCategoryImplDecl *OCD) = 0; |
| 141 | |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 142 | /// Generate a class structure for this class. |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 143 | virtual void GenerateClass(const ObjCImplementationDecl *OID) = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 144 | |
David Chisnall | 29254f4 | 2012-01-31 18:59:20 +0000 | [diff] [blame] | 145 | /// Register an class alias. |
| 146 | virtual void RegisterAlias(const ObjCCompatibleAliasDecl *OAD) = 0; |
| 147 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 148 | /// Generate an Objective-C message send operation. |
Daniel Dunbar | d6c93d7 | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 149 | /// |
| 150 | /// \param Method - The method being called, this may be null if synthesizing |
| 151 | /// a property setter or getter. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 152 | virtual CodeGen::RValue |
Daniel Dunbar | 8f2926b | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 153 | GenerateMessageSend(CodeGen::CodeGenFunction &CGF, |
John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 154 | ReturnValueSlot ReturnSlot, |
Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 155 | QualType ResultType, |
| 156 | Selector Sel, |
Daniel Dunbar | f56f191 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 157 | llvm::Value *Receiver, |
Fariborz Jahanian | df9ccc6 | 2009-05-05 21:36:57 +0000 | [diff] [blame] | 158 | const CallArgList &CallArgs, |
David Chisnall | c6cd5fd | 2010-04-28 19:33:36 +0000 | [diff] [blame] | 159 | const ObjCInterfaceDecl *Class = 0, |
Daniel Dunbar | d6c93d7 | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 160 | const ObjCMethodDecl *Method = 0) = 0; |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 161 | |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 162 | /// Generate an Objective-C message send operation to the super |
Daniel Dunbar | f56f191 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 163 | /// class initiated in a method for Class and with the given Self |
| 164 | /// object. |
Daniel Dunbar | d6c93d7 | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 165 | /// |
| 166 | /// \param Method - The method being called, this may be null if synthesizing |
| 167 | /// a property setter or getter. |
Daniel Dunbar | 8f2926b | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 168 | virtual CodeGen::RValue |
| 169 | GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, |
John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 170 | ReturnValueSlot ReturnSlot, |
Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 171 | QualType ResultType, |
| 172 | Selector Sel, |
Daniel Dunbar | f56f191 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 173 | const ObjCInterfaceDecl *Class, |
Fariborz Jahanian | 7ce7792 | 2009-02-28 20:07:56 +0000 | [diff] [blame] | 174 | bool isCategoryImpl, |
Daniel Dunbar | f56f191 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 175 | llvm::Value *Self, |
Daniel Dunbar | 19cd87e | 2008-08-30 03:02:31 +0000 | [diff] [blame] | 176 | bool IsClassMessage, |
Daniel Dunbar | d6c93d7 | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 177 | const CallArgList &CallArgs, |
| 178 | const ObjCMethodDecl *Method = 0) = 0; |
Daniel Dunbar | 98c5ead | 2008-08-12 05:08:18 +0000 | [diff] [blame] | 179 | |
| 180 | /// Emit the code to return the named protocol as an object, as in a |
James Dennett | 17d26a6 | 2012-06-11 06:19:40 +0000 | [diff] [blame] | 181 | /// \@protocol expression. |
John McCall | bd7370a | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 182 | virtual llvm::Value *GenerateProtocolRef(CodeGenFunction &CGF, |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 183 | const ObjCProtocolDecl *OPD) = 0; |
Daniel Dunbar | 98c5ead | 2008-08-12 05:08:18 +0000 | [diff] [blame] | 184 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 185 | /// Generate the named protocol. Protocols contain method metadata but no |
| 186 | /// implementations. |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 187 | virtual void GenerateProtocol(const ObjCProtocolDecl *OPD) = 0; |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 188 | |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 189 | /// Generate a function preamble for a method with the specified |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 190 | /// types. |
Daniel Dunbar | 7ded7f4 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 191 | |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 192 | // FIXME: Current this just generates the Function definition, but really this |
| 193 | // should also be generating the loads of the parameters, as the runtime |
| 194 | // should have full control over how parameters are passed. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 195 | virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD, |
Fariborz Jahanian | 679a502 | 2009-01-10 21:06:09 +0000 | [diff] [blame] | 196 | const ObjCContainerDecl *CD) = 0; |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 197 | |
Daniel Dunbar | 49f6602 | 2008-09-24 03:38:44 +0000 | [diff] [blame] | 198 | /// Return the runtime function for getting properties. |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 199 | virtual llvm::Constant *GetPropertyGetFunction() = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 200 | |
Daniel Dunbar | 49f6602 | 2008-09-24 03:38:44 +0000 | [diff] [blame] | 201 | /// Return the runtime function for setting properties. |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 202 | virtual llvm::Constant *GetPropertySetFunction() = 0; |
Daniel Dunbar | 49f6602 | 2008-09-24 03:38:44 +0000 | [diff] [blame] | 203 | |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 204 | /// Return the runtime function for optimized setting properties. |
| 205 | virtual llvm::Constant *GetOptimizedPropertySetFunction(bool atomic, |
| 206 | bool copy) = 0; |
| 207 | |
David Chisnall | 8fac25d | 2010-12-26 22:13:16 +0000 | [diff] [blame] | 208 | // API for atomic copying of qualified aggregates in getter. |
| 209 | virtual llvm::Constant *GetGetStructFunction() = 0; |
| 210 | // API for atomic copying of qualified aggregates in setter. |
| 211 | virtual llvm::Constant *GetSetStructFunction() = 0; |
David Chisnall | d397cfe | 2012-12-17 18:54:24 +0000 | [diff] [blame] | 212 | /// API for atomic copying of qualified aggregates with non-trivial copy |
| 213 | /// assignment (c++) in setter. |
| 214 | virtual llvm::Constant *GetCppAtomicObjectSetFunction() = 0; |
| 215 | /// API for atomic copying of qualified aggregates with non-trivial copy |
| 216 | /// assignment (c++) in getter. |
| 217 | virtual llvm::Constant *GetCppAtomicObjectGetFunction() = 0; |
Fariborz Jahanian | 6cc5906 | 2010-04-12 18:18:10 +0000 | [diff] [blame] | 218 | |
Daniel Dunbar | ddb2a3d | 2008-08-16 00:25:02 +0000 | [diff] [blame] | 219 | /// GetClass - Return a reference to the class for the given |
| 220 | /// interface decl. |
John McCall | bd7370a | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 221 | virtual llvm::Value *GetClass(CodeGenFunction &CGF, |
Daniel Dunbar | ddb2a3d | 2008-08-16 00:25:02 +0000 | [diff] [blame] | 222 | const ObjCInterfaceDecl *OID) = 0; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 223 | |
| 224 | |
John McCall | bd7370a | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 225 | virtual llvm::Value *EmitNSAutoreleasePoolClassRef(CodeGenFunction &CGF) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 226 | llvm_unreachable("autoreleasepool unsupported in this ABI"); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 227 | } |
| 228 | |
Anders Carlsson | 2abd89c | 2008-08-31 04:05:03 +0000 | [diff] [blame] | 229 | /// EnumerationMutationFunction - Return the function that's called by the |
| 230 | /// compiler when a mutation is detected during foreach iteration. |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 231 | virtual llvm::Constant *EnumerationMutationFunction() = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 232 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 233 | virtual void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF, |
| 234 | const ObjCAtSynchronizedStmt &S) = 0; |
| 235 | virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF, |
| 236 | const ObjCAtTryStmt &S) = 0; |
Anders Carlsson | 64d5d6c | 2008-09-09 10:04:29 +0000 | [diff] [blame] | 237 | virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, |
Fariborz Jahanian | 6a3c70e | 2013-01-10 19:02:56 +0000 | [diff] [blame] | 238 | const ObjCAtThrowStmt &S, |
| 239 | bool ClearInsertionPoint=true) = 0; |
Daniel Dunbar | 6bf2ae0 | 2009-04-21 00:49:20 +0000 | [diff] [blame] | 240 | virtual llvm::Value *EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF, |
| 241 | llvm::Value *AddrWeakObj) = 0; |
Fariborz Jahanian | 3e283e3 | 2008-11-18 22:37:34 +0000 | [diff] [blame] | 242 | virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF, |
| 243 | llvm::Value *src, llvm::Value *dest) = 0; |
Fariborz Jahanian | 5862650 | 2008-11-19 00:59:10 +0000 | [diff] [blame] | 244 | virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF, |
Fariborz Jahanian | 021a7a6 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 245 | llvm::Value *src, llvm::Value *dest, |
| 246 | bool threadlocal=false) = 0; |
Fariborz Jahanian | 7eda836 | 2008-11-20 19:23:36 +0000 | [diff] [blame] | 247 | virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF, |
Fariborz Jahanian | 6c7a1f3 | 2009-09-24 22:25:38 +0000 | [diff] [blame] | 248 | llvm::Value *src, llvm::Value *dest, |
| 249 | llvm::Value *ivarOffset) = 0; |
Fariborz Jahanian | 5862650 | 2008-11-19 00:59:10 +0000 | [diff] [blame] | 250 | virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF, |
| 251 | llvm::Value *src, llvm::Value *dest) = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 252 | |
Fariborz Jahanian | 598d3f6 | 2009-02-03 19:03:09 +0000 | [diff] [blame] | 253 | virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF, |
| 254 | QualType ObjectTy, |
| 255 | llvm::Value *BaseValue, |
| 256 | const ObjCIvarDecl *Ivar, |
Fariborz Jahanian | 598d3f6 | 2009-02-03 19:03:09 +0000 | [diff] [blame] | 257 | unsigned CVRQualifiers) = 0; |
Fariborz Jahanian | f63aa3f | 2009-02-10 19:02:04 +0000 | [diff] [blame] | 258 | virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF, |
Daniel Dunbar | 2a03192 | 2009-04-22 05:08:15 +0000 | [diff] [blame] | 259 | const ObjCInterfaceDecl *Interface, |
Fariborz Jahanian | f63aa3f | 2009-02-10 19:02:04 +0000 | [diff] [blame] | 260 | const ObjCIvarDecl *Ivar) = 0; |
Fariborz Jahanian | 082b02e | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 261 | virtual void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 262 | llvm::Value *DestPtr, |
Fariborz Jahanian | 082b02e | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 263 | llvm::Value *SrcPtr, |
Fariborz Jahanian | 55bcace | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 264 | llvm::Value *Size) = 0; |
John McCall | 6b5a61b | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 265 | virtual llvm::Constant *BuildGCBlockLayout(CodeGen::CodeGenModule &CGM, |
| 266 | const CodeGen::CGBlockInfo &blockInfo) = 0; |
Fariborz Jahanian | c46b435 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 267 | virtual llvm::Constant *BuildRCBlockLayout(CodeGen::CodeGenModule &CGM, |
| 268 | const CodeGen::CGBlockInfo &blockInfo) = 0; |
Fariborz Jahanian | 3ca23d7 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 269 | virtual llvm::Constant *BuildByrefLayout(CodeGen::CodeGenModule &CGM, |
| 270 | QualType T) = 0; |
Fariborz Jahanian | 6f40e22 | 2011-05-17 22:21:16 +0000 | [diff] [blame] | 271 | virtual llvm::GlobalVariable *GetClassGlobal(const std::string &Name) = 0; |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 272 | |
| 273 | struct MessageSendInfo { |
| 274 | const CGFunctionInfo &CallInfo; |
| 275 | llvm::PointerType *MessengerType; |
| 276 | |
| 277 | MessageSendInfo(const CGFunctionInfo &callInfo, |
| 278 | llvm::PointerType *messengerType) |
| 279 | : CallInfo(callInfo), MessengerType(messengerType) {} |
| 280 | }; |
| 281 | |
| 282 | MessageSendInfo getMessageSendInfo(const ObjCMethodDecl *method, |
| 283 | QualType resultType, |
| 284 | CallArgList &callArgs); |
Eli Friedman | 7745786 | 2012-11-06 23:40:48 +0000 | [diff] [blame] | 285 | |
| 286 | // FIXME: This probably shouldn't be here, but the code to compute |
| 287 | // it is here. |
| 288 | unsigned ComputeBitfieldBitOffset(CodeGen::CodeGenModule &CGM, |
| 289 | const ObjCInterfaceDecl *ID, |
| 290 | const ObjCIvarDecl *Ivar); |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 291 | }; |
| 292 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 293 | /// Creates an instance of an Objective-C runtime class. |
Chris Lattner | 391d77a | 2008-03-30 23:03:07 +0000 | [diff] [blame] | 294 | //TODO: This should include some way of selecting which runtime to target. |
Daniel Dunbar | c17a4d3 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 295 | CGObjCRuntime *CreateGNUObjCRuntime(CodeGenModule &CGM); |
| 296 | CGObjCRuntime *CreateMacObjCRuntime(CodeGenModule &CGM); |
Chris Lattner | 0f98426 | 2008-03-01 08:50:34 +0000 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | #endif |