blob: e152488bfae9ce0539b49242d12cffb298c627e7 [file] [log] [blame]
Anders Carlsson55085182007-08-21 17:43:55 +00001//===---- CGBuiltin.cpp - Emit LLVM Code for builtins ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Anders Carlsson55085182007-08-21 17:43:55 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Objective-C code as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
Ted Kremenek2979ec72008-04-09 15:51:31 +000014#include "CGObjCRuntime.h"
Anders Carlsson55085182007-08-21 17:43:55 +000015#include "CodeGenFunction.h"
16#include "CodeGenModule.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000017#include "clang/AST/DeclObjC.h"
Chris Lattner41110242008-06-17 18:05:57 +000018
Anders Carlsson55085182007-08-21 17:43:55 +000019using namespace clang;
20using namespace CodeGen;
21
Chris Lattner8fdf3282008-06-24 17:04:18 +000022/// Emits an instance of NSConstantString representing the object.
Chris Lattner7f02f722007-08-24 05:35:26 +000023llvm::Value *CodeGenFunction::EmitObjCStringLiteral(const ObjCStringLiteral *E){
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000024 return CGM.getObjCRuntime().GenerateConstantString(
Chris Lattner8fdf3282008-06-24 17:04:18 +000025 E->getString()->getStrData(), E->getString()->getByteLength());
26}
27
28/// Emit a selector.
29llvm::Value *CodeGenFunction::EmitObjCSelectorExpr(const ObjCSelectorExpr *E) {
30 // Untyped selector.
31 // Note that this implementation allows for non-constant strings to be passed
32 // as arguments to @selector(). Currently, the only thing preventing this
33 // behaviour is the type checking in the front end.
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000034 return CGM.getObjCRuntime().GetSelector(Builder, E->getSelector());
Chris Lattner8fdf3282008-06-24 17:04:18 +000035}
36
37
38
39llvm::Value *CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E) {
40 // Only the lookup mechanism and first two arguments of the method
41 // implementation vary between runtimes. We can get the receiver and
42 // arguments in generic code.
43
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000044 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
Chris Lattner8fdf3282008-06-24 17:04:18 +000045 const Expr *ReceiverExpr = E->getReceiver();
46 bool isSuperMessage = false;
47 // Find the receiver
48 llvm::Value *Receiver;
49 if (!ReceiverExpr) {
50 const char * classname = E->getClassName()->getName();
51 if (!strcmp(classname, "super")) {
52 classname = E->getMethodDecl()->getClassInterface()->getName();
53 }
54 llvm::Value *ClassName = CGM.GetAddrOfConstantString(classname);
55 ClassName = Builder.CreateStructGEP(ClassName, 0);
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000056 Receiver = Runtime.LookupClass(Builder, ClassName);
Chris Lattnerd9f69102008-08-10 01:53:14 +000057 } else if (const PredefinedExpr *PDE =
58 dyn_cast<PredefinedExpr>(E->getReceiver())) {
59 assert(PDE->getIdentType() == PredefinedExpr::ObjCSuper);
Chris Lattner8fdf3282008-06-24 17:04:18 +000060 isSuperMessage = true;
61 Receiver = LoadObjCSelf();
62 } else {
63 Receiver = EmitScalarExpr(E->getReceiver());
64 }
65
66 // Process the arguments
67 unsigned ArgC = E->getNumArgs();
68 llvm::SmallVector<llvm::Value*, 16> Args;
69 for (unsigned i = 0; i != ArgC; ++i) {
70 const Expr *ArgExpr = E->getArg(i);
71 QualType ArgTy = ArgExpr->getType();
72 if (!hasAggregateLLVMType(ArgTy)) {
73 // Scalar argument is passed by-value.
74 Args.push_back(EmitScalarExpr(ArgExpr));
75 } else if (ArgTy->isAnyComplexType()) {
76 // Make a temporary alloca to pass the argument.
77 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
78 EmitComplexExprIntoAddr(ArgExpr, DestMem, false);
79 Args.push_back(DestMem);
80 } else {
81 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
82 EmitAggExpr(ArgExpr, DestMem, false);
83 Args.push_back(DestMem);
84 }
85 }
86
Chris Lattner8fdf3282008-06-24 17:04:18 +000087 if (isSuperMessage) {
Chris Lattner9384c762008-06-26 04:42:20 +000088 // super is only valid in an Objective-C method
89 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
Chris Lattner630404b2008-06-26 04:10:42 +000090 const char *SuperClass =
91 OMD->getClassInterface()->getSuperClass()->getName();
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000092 return Runtime.GenerateMessageSendSuper(Builder, ConvertType(E->getType()),
Chris Lattner630404b2008-06-26 04:10:42 +000093 Receiver, SuperClass,
Chris Lattner8e67b632008-06-26 04:37:12 +000094 Receiver, E->getSelector(),
Chris Lattner630404b2008-06-26 04:10:42 +000095 &Args[0], Args.size());
Chris Lattner8fdf3282008-06-24 17:04:18 +000096 }
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000097 return Runtime.GenerateMessageSend(Builder, ConvertType(E->getType()),
Chris Lattner8fdf3282008-06-24 17:04:18 +000098 LoadObjCSelf(),
Chris Lattner9384c762008-06-26 04:42:20 +000099 Receiver, E->getSelector(),
Chris Lattner8fdf3282008-06-24 17:04:18 +0000100 &Args[0], Args.size());
Anders Carlsson55085182007-08-21 17:43:55 +0000101}
102
Chris Lattner41110242008-06-17 18:05:57 +0000103/// Generate an Objective-C method. An Objective-C method is a C function with
104/// its pointer, name, and types registered in the class struture.
105void CodeGenFunction::GenerateObjCMethod(const ObjCMethodDecl *OMD) {
106
107 llvm::SmallVector<const llvm::Type *, 16> ParamTypes;
108 for (unsigned i=0 ; i<OMD->param_size() ; i++) {
109 const llvm::Type *Ty = ConvertType(OMD->getParamDecl(i)->getType());
110 if (Ty->isFirstClassType())
111 ParamTypes.push_back(Ty);
112 else
113 ParamTypes.push_back(llvm::PointerType::getUnqual(Ty));
114 }
115 std::string CategoryName = "";
116 if (ObjCCategoryImplDecl *OCD =
117 dyn_cast<ObjCCategoryImplDecl>(OMD->getMethodContext())) {
118 CategoryName = OCD->getName();
119 }
Chris Lattner630404b2008-06-26 04:10:42 +0000120 const llvm::Type *ReturnTy =
121 CGM.getTypes().ConvertReturnType(OMD->getResultType());
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000122 CurFn = CGM.getObjCRuntime().MethodPreamble(
Chris Lattner630404b2008-06-26 04:10:42 +0000123 OMD->getClassInterface()->getName(),
Chris Lattner41110242008-06-17 18:05:57 +0000124 CategoryName,
125 OMD->getSelector().getName(),
126 ReturnTy,
127 llvm::PointerType::getUnqual(
128 llvm::Type::Int32Ty),
129 ParamTypes.begin(),
130 OMD->param_size(),
131 !OMD->isInstance(),
132 OMD->isVariadic());
133 llvm::BasicBlock *EntryBB = llvm::BasicBlock::Create("entry", CurFn);
134
135 // Create a marker to make it easy to insert allocas into the entryblock
136 // later. Don't create this with the builder, because we don't want it
137 // folded.
138 llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::Int32Ty);
139 AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "allocapt",
140 EntryBB);
141
142 FnRetTy = OMD->getResultType();
143 CurFuncDecl = OMD;
144
145 Builder.SetInsertPoint(EntryBB);
146
147 // Emit allocs for param decls. Give the LLVM Argument nodes names.
148 llvm::Function::arg_iterator AI = CurFn->arg_begin();
149
150 if (hasAggregateLLVMType(OMD->getResultType())) {
151 ++AI;
152 }
153 // Add implicit parameters to the decl map.
154 // TODO: Add something to AST to let the runtime specify the names and types
155 // of these.
156
157 llvm::Value *&SelfEntry = LocalDeclMap[OMD->getSelfDecl()];
158 const llvm::Type *IPTy = AI->getType();
159 llvm::Value *DeclPtr = new llvm::AllocaInst(IPTy, 0, AI->getName() +
160 ".addr", AllocaInsertPt);
161 // Store the initial value into the alloca.
162 Builder.CreateStore(AI, DeclPtr);
163 SelfEntry = DeclPtr;
164 ++AI;
165 llvm::Value *&CmdEntry = LocalDeclMap[OMD->getCmdDecl()];
166 IPTy = AI->getType();
167 DeclPtr = new llvm::AllocaInst(IPTy, 0, AI->getName() +
168 ".addr", AllocaInsertPt);
169 // Store the initial value into the alloca.
170 Builder.CreateStore(AI, DeclPtr);
171 CmdEntry = DeclPtr;
172
173 for (unsigned i = 0, e = OMD->getNumParams(); i != e; ++i, ++AI) {
174 assert(AI != CurFn->arg_end() && "Argument mismatch!");
175 EmitParmDecl(*OMD->getParamDecl(i), AI);
176 }
177
178 GenerateFunction(OMD->getBody());
179}
180
181llvm::Value *CodeGenFunction::LoadObjCSelf(void)
182{
183 if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(CurFuncDecl)) {
184 ValueDecl *Decl = OMD->getSelfDecl();
185 llvm::Value *SelfPtr = LocalDeclMap[&(*(Decl))];
186 return Builder.CreateLoad(SelfPtr, "self");
187 }
188 return NULL;
189}
190
Ted Kremenek2979ec72008-04-09 15:51:31 +0000191CGObjCRuntime::~CGObjCRuntime() {}