blob: 7270884572263687a8702231663f3a2f381d371b [file] [log] [blame]
Anders Carlssona66cad42007-08-21 17:43:55 +00001//===---- CGBuiltin.cpp - Emit LLVM Code for builtins ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-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 Carlssona66cad42007-08-21 17:43:55 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Objective-C code as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
Ted Kremenekfa4ebab2008-04-09 15:51:31 +000014#include "CGObjCRuntime.h"
Anders Carlssona66cad42007-08-21 17:43:55 +000015#include "CodeGenFunction.h"
16#include "CodeGenModule.h"
Daniel Dunbar64789f82008-08-11 05:35:13 +000017#include "clang/AST/DeclObjC.h"
Chris Lattner8c7c6a12008-06-17 18:05:57 +000018
Anders Carlssona66cad42007-08-21 17:43:55 +000019using namespace clang;
20using namespace CodeGen;
21
Chris Lattner6ee20e32008-06-24 17:04:18 +000022/// Emits an instance of NSConstantString representing the object.
Daniel Dunbardaf4ad42008-08-12 00:12:39 +000023llvm::Value *CodeGenFunction::EmitObjCStringLiteral(const ObjCStringLiteral *E) {
24 std::string String(E->getString()->getStrData(), E->getString()->getByteLength());
25 llvm::Constant *C = CGM.getObjCRuntime().GenerateConstantString(String);
26 return llvm::ConstantExpr::getBitCast(C, ConvertType(E->getType()));
Chris Lattner6ee20e32008-06-24 17:04:18 +000027}
28
29/// Emit a selector.
30llvm::Value *CodeGenFunction::EmitObjCSelectorExpr(const ObjCSelectorExpr *E) {
31 // Untyped selector.
32 // Note that this implementation allows for non-constant strings to be passed
33 // as arguments to @selector(). Currently, the only thing preventing this
34 // behaviour is the type checking in the front end.
Daniel Dunbarfc69bde2008-08-11 18:12:00 +000035 return CGM.getObjCRuntime().GetSelector(Builder, E->getSelector());
Chris Lattner6ee20e32008-06-24 17:04:18 +000036}
37
38
39
40llvm::Value *CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E) {
41 // Only the lookup mechanism and first two arguments of the method
42 // implementation vary between runtimes. We can get the receiver and
43 // arguments in generic code.
44
Daniel Dunbarfc69bde2008-08-11 18:12:00 +000045 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
Chris Lattner6ee20e32008-06-24 17:04:18 +000046 const Expr *ReceiverExpr = E->getReceiver();
47 bool isSuperMessage = false;
48 // Find the receiver
49 llvm::Value *Receiver;
50 if (!ReceiverExpr) {
51 const char * classname = E->getClassName()->getName();
52 if (!strcmp(classname, "super")) {
53 classname = E->getMethodDecl()->getClassInterface()->getName();
54 }
55 llvm::Value *ClassName = CGM.GetAddrOfConstantString(classname);
56 ClassName = Builder.CreateStructGEP(ClassName, 0);
Daniel Dunbarfc69bde2008-08-11 18:12:00 +000057 Receiver = Runtime.LookupClass(Builder, ClassName);
Chris Lattner69909292008-08-10 01:53:14 +000058 } else if (const PredefinedExpr *PDE =
59 dyn_cast<PredefinedExpr>(E->getReceiver())) {
60 assert(PDE->getIdentType() == PredefinedExpr::ObjCSuper);
Chris Lattner6ee20e32008-06-24 17:04:18 +000061 isSuperMessage = true;
62 Receiver = LoadObjCSelf();
63 } else {
Daniel Dunbar6fa3daf2008-08-12 05:28:47 +000064 Receiver = EmitScalarExpr(E->getReceiver());
Chris Lattner6ee20e32008-06-24 17:04:18 +000065 }
66
67 // Process the arguments
68 unsigned ArgC = E->getNumArgs();
69 llvm::SmallVector<llvm::Value*, 16> Args;
70 for (unsigned i = 0; i != ArgC; ++i) {
71 const Expr *ArgExpr = E->getArg(i);
72 QualType ArgTy = ArgExpr->getType();
73 if (!hasAggregateLLVMType(ArgTy)) {
74 // Scalar argument is passed by-value.
75 Args.push_back(EmitScalarExpr(ArgExpr));
76 } else if (ArgTy->isAnyComplexType()) {
77 // Make a temporary alloca to pass the argument.
78 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
79 EmitComplexExprIntoAddr(ArgExpr, DestMem, false);
80 Args.push_back(DestMem);
81 } else {
82 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
83 EmitAggExpr(ArgExpr, DestMem, false);
84 Args.push_back(DestMem);
85 }
86 }
87
Chris Lattner6ee20e32008-06-24 17:04:18 +000088 if (isSuperMessage) {
Chris Lattner8384c142008-06-26 04:42:20 +000089 // super is only valid in an Objective-C method
90 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
Chris Lattneref843042008-06-26 04:10:42 +000091 const char *SuperClass =
92 OMD->getClassInterface()->getSuperClass()->getName();
Daniel Dunbarfc69bde2008-08-11 18:12:00 +000093 return Runtime.GenerateMessageSendSuper(Builder, ConvertType(E->getType()),
Daniel Dunbar6fa3daf2008-08-12 05:28:47 +000094 SuperClass,
Chris Lattnerd71288e2008-06-26 04:37:12 +000095 Receiver, E->getSelector(),
Chris Lattneref843042008-06-26 04:10:42 +000096 &Args[0], Args.size());
Chris Lattner6ee20e32008-06-24 17:04:18 +000097 }
Daniel Dunbarfc69bde2008-08-11 18:12:00 +000098 return Runtime.GenerateMessageSend(Builder, ConvertType(E->getType()),
Chris Lattner8384c142008-06-26 04:42:20 +000099 Receiver, E->getSelector(),
Chris Lattner6ee20e32008-06-24 17:04:18 +0000100 &Args[0], Args.size());
Anders Carlssona66cad42007-08-21 17:43:55 +0000101}
102
Chris Lattner8c7c6a12008-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 Lattneref843042008-06-26 04:10:42 +0000120 const llvm::Type *ReturnTy =
121 CGM.getTypes().ConvertReturnType(OMD->getResultType());
Daniel Dunbarfc69bde2008-08-11 18:12:00 +0000122 CurFn = CGM.getObjCRuntime().MethodPreamble(
Chris Lattneref843042008-06-26 04:10:42 +0000123 OMD->getClassInterface()->getName(),
Chris Lattner8c7c6a12008-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 Kremenekfa4ebab2008-04-09 15:51:31 +0000191CGObjCRuntime::~CGObjCRuntime() {}