blob: ddd7c8119be4ff8551b10684aead8f621197c0ef [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.
Daniel Dunbarbbce49b2008-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);
Daniel Dunbared7c6182008-08-20 00:28:19 +000026 // FIXME: This bitcast should just be made an invariant on the Runtime.
Daniel Dunbarbbce49b2008-08-12 00:12:39 +000027 return llvm::ConstantExpr::getBitCast(C, ConvertType(E->getType()));
Chris Lattner8fdf3282008-06-24 17:04:18 +000028}
29
30/// Emit a selector.
31llvm::Value *CodeGenFunction::EmitObjCSelectorExpr(const ObjCSelectorExpr *E) {
32 // Untyped selector.
33 // Note that this implementation allows for non-constant strings to be passed
34 // as arguments to @selector(). Currently, the only thing preventing this
35 // behaviour is the type checking in the front end.
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000036 return CGM.getObjCRuntime().GetSelector(Builder, E->getSelector());
Chris Lattner8fdf3282008-06-24 17:04:18 +000037}
38
Daniel Dunbared7c6182008-08-20 00:28:19 +000039llvm::Value *CodeGenFunction::EmitObjCProtocolExpr(const ObjCProtocolExpr *E) {
40 // FIXME: This should pass the Decl not the name.
41 return CGM.getObjCRuntime().GenerateProtocolRef(Builder, E->getProtocol());
42}
Chris Lattner8fdf3282008-06-24 17:04:18 +000043
44
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000045RValue CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E) {
Chris Lattner8fdf3282008-06-24 17:04:18 +000046 // Only the lookup mechanism and first two arguments of the method
47 // implementation vary between runtimes. We can get the receiver and
48 // arguments in generic code.
49
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000050 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
Chris Lattner8fdf3282008-06-24 17:04:18 +000051 const Expr *ReceiverExpr = E->getReceiver();
52 bool isSuperMessage = false;
Daniel Dunbarf56f1912008-08-25 08:19:24 +000053 bool isClassMessage = false;
Chris Lattner8fdf3282008-06-24 17:04:18 +000054 // Find the receiver
55 llvm::Value *Receiver;
56 if (!ReceiverExpr) {
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +000057 const ObjCInterfaceDecl *OID = E->getClassInfo().first;
58
59 // Very special case, super send in class method. The receiver is
60 // self (the class object) and the send uses super semantics.
61 if (!OID) {
62 assert(!strcmp(E->getClassName()->getName(), "super") &&
63 "Unexpected missing class interface in message send.");
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +000064 isSuperMessage = true;
Daniel Dunbarf56f1912008-08-25 08:19:24 +000065 Receiver = LoadObjCSelf();
66 } else {
67 Receiver = Runtime.GetClass(Builder, OID);
Chris Lattner8fdf3282008-06-24 17:04:18 +000068 }
Daniel Dunbarf56f1912008-08-25 08:19:24 +000069
70 isClassMessage = true;
Chris Lattnerd9f69102008-08-10 01:53:14 +000071 } else if (const PredefinedExpr *PDE =
72 dyn_cast<PredefinedExpr>(E->getReceiver())) {
73 assert(PDE->getIdentType() == PredefinedExpr::ObjCSuper);
Chris Lattner8fdf3282008-06-24 17:04:18 +000074 isSuperMessage = true;
75 Receiver = LoadObjCSelf();
76 } else {
Daniel Dunbar2bedbf82008-08-12 05:28:47 +000077 Receiver = EmitScalarExpr(E->getReceiver());
Chris Lattner8fdf3282008-06-24 17:04:18 +000078 }
79
Chris Lattner8fdf3282008-06-24 17:04:18 +000080 if (isSuperMessage) {
Chris Lattner9384c762008-06-26 04:42:20 +000081 // super is only valid in an Objective-C method
82 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000083 return Runtime.GenerateMessageSendSuper(*this, E,
Daniel Dunbarf56f1912008-08-25 08:19:24 +000084 OMD->getClassInterface(),
85 Receiver,
86 isClassMessage);
Chris Lattner8fdf3282008-06-24 17:04:18 +000087 }
Daniel Dunbarf56f1912008-08-25 08:19:24 +000088 return Runtime.GenerateMessageSend(*this, E, Receiver, isClassMessage);
Anders Carlsson55085182007-08-21 17:43:55 +000089}
90
Chris Lattner41110242008-06-17 18:05:57 +000091/// Generate an Objective-C method. An Objective-C method is a C function with
92/// its pointer, name, and types registered in the class struture.
93void CodeGenFunction::GenerateObjCMethod(const ObjCMethodDecl *OMD) {
Daniel Dunbar7ded7f42008-08-15 22:20:32 +000094 CurFn = CGM.getObjCRuntime().GenerateMethod(OMD);
Chris Lattner41110242008-06-17 18:05:57 +000095 llvm::BasicBlock *EntryBB = llvm::BasicBlock::Create("entry", CurFn);
96
97 // Create a marker to make it easy to insert allocas into the entryblock
98 // later. Don't create this with the builder, because we don't want it
99 // folded.
100 llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::Int32Ty);
101 AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "allocapt",
102 EntryBB);
103
104 FnRetTy = OMD->getResultType();
105 CurFuncDecl = OMD;
106
107 Builder.SetInsertPoint(EntryBB);
108
109 // Emit allocs for param decls. Give the LLVM Argument nodes names.
110 llvm::Function::arg_iterator AI = CurFn->arg_begin();
111
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000112 // Name the struct return argument.
Chris Lattner41110242008-06-17 18:05:57 +0000113 if (hasAggregateLLVMType(OMD->getResultType())) {
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000114 AI->setName("agg.result");
Chris Lattner41110242008-06-17 18:05:57 +0000115 ++AI;
116 }
Chris Lattner41110242008-06-17 18:05:57 +0000117
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000118 // Add implicit parameters to the decl map.
119 EmitParmDecl(*OMD->getSelfDecl(), AI);
Chris Lattner41110242008-06-17 18:05:57 +0000120 ++AI;
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000121
122 EmitParmDecl(*OMD->getCmdDecl(), AI);
123 ++AI;
Chris Lattner41110242008-06-17 18:05:57 +0000124
125 for (unsigned i = 0, e = OMD->getNumParams(); i != e; ++i, ++AI) {
126 assert(AI != CurFn->arg_end() && "Argument mismatch!");
127 EmitParmDecl(*OMD->getParamDecl(i), AI);
128 }
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000129 assert(AI == CurFn->arg_end() && "Argument mismatch");
130
Chris Lattner41110242008-06-17 18:05:57 +0000131 GenerateFunction(OMD->getBody());
132}
133
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000134llvm::Value *CodeGenFunction::LoadObjCSelf(void) {
135 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
136 return Builder.CreateLoad(LocalDeclMap[OMD->getSelfDecl()], "self");
Chris Lattner41110242008-06-17 18:05:57 +0000137}
138
Ted Kremenek2979ec72008-04-09 15:51:31 +0000139CGObjCRuntime::~CGObjCRuntime() {}