blob: d690289f140b4b01fd50f6932d23e86ac6cecca3 [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
Anton Korobeynikov20ff3102008-06-01 14:13:53 +000019#include "llvm/ADT/SmallVector.h"
Argyrios Kyrtzidis8ef07c02008-06-01 21:23:24 +000020#include <string>
Chris Lattner0f984262008-03-01 08:50:34 +000021
Daniel Dunbar45d196b2008-11-01 01:53:16 +000022#include "CGBuilder.h"
Daniel Dunbar46f45b92008-09-09 01:06:48 +000023#include "CGCall.h"
Daniel Dunbar45d196b2008-11-01 01:53:16 +000024#include "CGValue.h"
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000025
Chris Lattner0f984262008-03-01 08:50:34 +000026namespace llvm {
Chris Lattner0f984262008-03-01 08:50:34 +000027 class Constant;
28 class Type;
29 class Value;
30 class Module;
Chris Lattner391d77a2008-03-30 23:03:07 +000031 class Function;
Chris Lattner0f984262008-03-01 08:50:34 +000032}
33
34namespace clang {
Daniel Dunbar46f45b92008-09-09 01:06:48 +000035namespace CodeGen {
36 class CodeGenFunction;
37}
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000038
Anders Carlsson64d5d6c2008-09-09 10:04:29 +000039 class ObjCAtTryStmt;
40 class ObjCAtThrowStmt;
Daniel Dunbar7ded7f42008-08-15 22:20:32 +000041 class ObjCCategoryImplDecl;
42 class ObjCImplementationDecl;
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +000043 class ObjCInterfaceDecl;
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000044 class ObjCMessageExpr;
Daniel Dunbar7ded7f42008-08-15 22:20:32 +000045 class ObjCMethodDecl;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000046 class ObjCProtocolDecl;
Chris Lattner8e67b632008-06-26 04:37:12 +000047 class Selector;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000048
Chris Lattner0f984262008-03-01 08:50:34 +000049namespace CodeGen {
Chris Lattnerdce14062008-06-26 04:19:03 +000050 class CodeGenModule;
Chris Lattner0f984262008-03-01 08:50:34 +000051
Anton Korobeynikov20ff3102008-06-01 14:13:53 +000052//FIXME Several methods should be pure virtual but aren't to avoid the
53//partially-implemented subclass breaking.
54
55/// Implements runtime-specific code generation functions.
Chris Lattner0f984262008-03-01 08:50:34 +000056class CGObjCRuntime {
Daniel Dunbar58bf6102008-08-11 16:50:21 +000057
Chris Lattner0f984262008-03-01 08:50:34 +000058public:
59 virtual ~CGObjCRuntime();
Daniel Dunbar7ded7f42008-08-15 22:20:32 +000060
61 /// Generate the function required to register all Objective-C components in
62 /// this compilation unit with the runtime library.
63 virtual llvm::Function *ModuleInitFunction() = 0;
64
65 /// Get a selector for the specified name and type values. The
66 /// return value should have the LLVM type for pointer-to
67 /// ASTContext::getObjCSelType().
Daniel Dunbar45d196b2008-11-01 01:53:16 +000068 virtual llvm::Value *GetSelector(CGBuilderTy &Builder,
Daniel Dunbar7ded7f42008-08-15 22:20:32 +000069 Selector Sel) = 0;
70
71 /// Generate a constant string object.
72 virtual llvm::Constant *GenerateConstantString(const std::string &String) = 0;
73
74 /// Generate a category. A category contains a list of methods (and
75 /// accompanying metadata) and a list of protocols.
76 virtual void GenerateCategory(const ObjCCategoryImplDecl *OCD) = 0;
77
78 /// Generate a class stucture for this class.
79 virtual void GenerateClass(const ObjCImplementationDecl *OID) = 0;
Chris Lattner0f984262008-03-01 08:50:34 +000080
Daniel Dunbar7ded7f42008-08-15 22:20:32 +000081 /// Generate an Objective-C message send operation.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000082 virtual CodeGen::RValue
83 GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +000084 QualType ResultType,
85 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +000086 llvm::Value *Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +000087 bool IsClassMessage,
88 const CallArgList &CallArgs) = 0;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000089
Daniel Dunbar7ded7f42008-08-15 22:20:32 +000090 /// Generate an Objective-C message send operation to the super
Daniel Dunbarf56f1912008-08-25 08:19:24 +000091 /// class initiated in a method for Class and with the given Self
92 /// object.
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000093 virtual CodeGen::RValue
94 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +000095 QualType ResultType,
96 Selector Sel,
Daniel Dunbarf56f1912008-08-25 08:19:24 +000097 const ObjCInterfaceDecl *Class,
98 llvm::Value *Self,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +000099 bool IsClassMessage,
100 const CallArgList &CallArgs) = 0;
Daniel Dunbar98c5ead2008-08-12 05:08:18 +0000101
102 /// Emit the code to return the named protocol as an object, as in a
103 /// @protocol expression.
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000104 virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000105 const ObjCProtocolDecl *OPD) = 0;
Daniel Dunbar98c5ead2008-08-12 05:08:18 +0000106
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000107 /// Generate the named protocol. Protocols contain method metadata but no
108 /// implementations.
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000109 virtual void GenerateProtocol(const ObjCProtocolDecl *OPD) = 0;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000110
Daniel Dunbar7ded7f42008-08-15 22:20:32 +0000111 /// Generate a function preamble for a method with the specified
112 /// types.
113
114 // FIXME: Current this just generates the Function definition, but
115 // really this should also be generating the loads of the
116 // parameters, as the runtime should have full control over how
117 // parameters are passed.
118 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD) = 0;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000119
Daniel Dunbar49f66022008-09-24 03:38:44 +0000120 /// Return the runtime function for getting properties.
121 virtual llvm::Function *GetPropertyGetFunction() = 0;
122
123 /// Return the runtime function for setting properties.
124 virtual llvm::Function *GetPropertySetFunction() = 0;
125
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +0000126 /// GetClass - Return a reference to the class for the given
127 /// interface decl.
Daniel Dunbar45d196b2008-11-01 01:53:16 +0000128 virtual llvm::Value *GetClass(CGBuilderTy &Builder,
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +0000129 const ObjCInterfaceDecl *OID) = 0;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +0000130
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000131 /// EnumerationMutationFunction - Return the function that's called by the
132 /// compiler when a mutation is detected during foreach iteration.
133 virtual llvm::Function *EnumerationMutationFunction() = 0;
134
Chris Lattner391d77a2008-03-30 23:03:07 +0000135 /// If instance variable addresses are determined at runtime then this should
136 /// return true, otherwise instance variables will be accessed directly from
137 /// the structure. If this returns true then @defs is invalid for this
138 /// runtime and a warning should be generated.
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000139 virtual bool LateBoundIVars() const { return false; }
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000140
141 virtual void EmitTryStmt(CodeGen::CodeGenFunction &CGF,
142 const ObjCAtTryStmt &S) = 0;
143 virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
144 const ObjCAtThrowStmt &S) = 0;
Chris Lattner0f984262008-03-01 08:50:34 +0000145};
146
Chris Lattner391d77a2008-03-30 23:03:07 +0000147/// Creates an instance of an Objective-C runtime class.
148//TODO: This should include some way of selecting which runtime to target.
Daniel Dunbarc17a4d32008-08-11 02:45:11 +0000149CGObjCRuntime *CreateGNUObjCRuntime(CodeGenModule &CGM);
150CGObjCRuntime *CreateMacObjCRuntime(CodeGenModule &CGM);
Chris Lattner0f984262008-03-01 08:50:34 +0000151}
152}
153#endif