blob: df3226d128a8a56db56c422fd739a48abbce5de6 [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 }
Daniel Dunbar31fe9c32008-08-13 23:20:05 +000055 llvm::Value *ClassName = CGM.GetAddrOfConstantCString(classname);
Chris Lattner6ee20e32008-06-24 17:04:18 +000056 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) {
Daniel Dunbarac93e472008-08-15 22:20:32 +0000106 CurFn = CGM.getObjCRuntime().GenerateMethod(OMD);
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000107 llvm::BasicBlock *EntryBB = llvm::BasicBlock::Create("entry", CurFn);
108
109 // Create a marker to make it easy to insert allocas into the entryblock
110 // later. Don't create this with the builder, because we don't want it
111 // folded.
112 llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::Int32Ty);
113 AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "allocapt",
114 EntryBB);
115
116 FnRetTy = OMD->getResultType();
117 CurFuncDecl = OMD;
118
119 Builder.SetInsertPoint(EntryBB);
120
121 // Emit allocs for param decls. Give the LLVM Argument nodes names.
122 llvm::Function::arg_iterator AI = CurFn->arg_begin();
123
124 if (hasAggregateLLVMType(OMD->getResultType())) {
125 ++AI;
126 }
127 // Add implicit parameters to the decl map.
128 // TODO: Add something to AST to let the runtime specify the names and types
129 // of these.
130
131 llvm::Value *&SelfEntry = LocalDeclMap[OMD->getSelfDecl()];
132 const llvm::Type *IPTy = AI->getType();
133 llvm::Value *DeclPtr = new llvm::AllocaInst(IPTy, 0, AI->getName() +
134 ".addr", AllocaInsertPt);
135 // Store the initial value into the alloca.
136 Builder.CreateStore(AI, DeclPtr);
137 SelfEntry = DeclPtr;
138 ++AI;
139 llvm::Value *&CmdEntry = LocalDeclMap[OMD->getCmdDecl()];
140 IPTy = AI->getType();
141 DeclPtr = new llvm::AllocaInst(IPTy, 0, AI->getName() +
142 ".addr", AllocaInsertPt);
143 // Store the initial value into the alloca.
144 Builder.CreateStore(AI, DeclPtr);
145 CmdEntry = DeclPtr;
146
147 for (unsigned i = 0, e = OMD->getNumParams(); i != e; ++i, ++AI) {
148 assert(AI != CurFn->arg_end() && "Argument mismatch!");
149 EmitParmDecl(*OMD->getParamDecl(i), AI);
150 }
151
152 GenerateFunction(OMD->getBody());
153}
154
155llvm::Value *CodeGenFunction::LoadObjCSelf(void)
156{
157 if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(CurFuncDecl)) {
158 ValueDecl *Decl = OMD->getSelfDecl();
159 llvm::Value *SelfPtr = LocalDeclMap[&(*(Decl))];
160 return Builder.CreateLoad(SelfPtr, "self");
161 }
162 return NULL;
163}
164
Ted Kremenekfa4ebab2008-04-09 15:51:31 +0000165CGObjCRuntime::~CGObjCRuntime() {}