Anders Carlsson | a66cad4 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 1 | //===---- CGBuiltin.cpp - Emit LLVM Code for builtins ---------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 959e5be | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Anders Carlsson | a66cad4 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code to emit Objective-C code as LLVM code. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Ted Kremenek | fa4ebab | 2008-04-09 15:51:31 +0000 | [diff] [blame] | 14 | #include "CGObjCRuntime.h" |
Anders Carlsson | a66cad4 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 15 | #include "CodeGenFunction.h" |
| 16 | #include "CodeGenModule.h" |
Daniel Dunbar | 64789f8 | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclObjC.h" |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 18 | |
Anders Carlsson | a66cad4 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 19 | using namespace clang; |
| 20 | using namespace CodeGen; |
| 21 | |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 22 | /// Emits an instance of NSConstantString representing the object. |
Daniel Dunbar | daf4ad4 | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 23 | llvm::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 Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 27 | } |
| 28 | |
| 29 | /// Emit a selector. |
| 30 | llvm::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 Dunbar | fc69bde | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 35 | return CGM.getObjCRuntime().GetSelector(Builder, E->getSelector()); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | |
| 39 | |
| 40 | llvm::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 Dunbar | fc69bde | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 45 | CGObjCRuntime &Runtime = CGM.getObjCRuntime(); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 46 | 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 Dunbar | 31fe9c3 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 55 | llvm::Value *ClassName = CGM.GetAddrOfConstantCString(classname); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 56 | ClassName = Builder.CreateStructGEP(ClassName, 0); |
Daniel Dunbar | fc69bde | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 57 | Receiver = Runtime.LookupClass(Builder, ClassName); |
Chris Lattner | 6990929 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 58 | } else if (const PredefinedExpr *PDE = |
| 59 | dyn_cast<PredefinedExpr>(E->getReceiver())) { |
| 60 | assert(PDE->getIdentType() == PredefinedExpr::ObjCSuper); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 61 | isSuperMessage = true; |
| 62 | Receiver = LoadObjCSelf(); |
| 63 | } else { |
Daniel Dunbar | 6fa3daf | 2008-08-12 05:28:47 +0000 | [diff] [blame] | 64 | Receiver = EmitScalarExpr(E->getReceiver()); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 65 | } |
| 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 Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 88 | if (isSuperMessage) { |
Chris Lattner | 8384c14 | 2008-06-26 04:42:20 +0000 | [diff] [blame] | 89 | // super is only valid in an Objective-C method |
| 90 | const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl); |
Chris Lattner | ef84304 | 2008-06-26 04:10:42 +0000 | [diff] [blame] | 91 | const char *SuperClass = |
| 92 | OMD->getClassInterface()->getSuperClass()->getName(); |
Daniel Dunbar | fc69bde | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 93 | return Runtime.GenerateMessageSendSuper(Builder, ConvertType(E->getType()), |
Daniel Dunbar | 6fa3daf | 2008-08-12 05:28:47 +0000 | [diff] [blame] | 94 | SuperClass, |
Chris Lattner | d71288e | 2008-06-26 04:37:12 +0000 | [diff] [blame] | 95 | Receiver, E->getSelector(), |
Chris Lattner | ef84304 | 2008-06-26 04:10:42 +0000 | [diff] [blame] | 96 | &Args[0], Args.size()); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 97 | } |
Daniel Dunbar | fc69bde | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 98 | return Runtime.GenerateMessageSend(Builder, ConvertType(E->getType()), |
Chris Lattner | 8384c14 | 2008-06-26 04:42:20 +0000 | [diff] [blame] | 99 | Receiver, E->getSelector(), |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 100 | &Args[0], Args.size()); |
Anders Carlsson | a66cad4 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 103 | /// 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. |
| 105 | void CodeGenFunction::GenerateObjCMethod(const ObjCMethodDecl *OMD) { |
Daniel Dunbar | ac93e47 | 2008-08-15 22:20:32 +0000 | [diff] [blame^] | 106 | CurFn = CGM.getObjCRuntime().GenerateMethod(OMD); |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 107 | 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 | |
| 155 | llvm::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 Kremenek | fa4ebab | 2008-04-09 15:51:31 +0000 | [diff] [blame] | 165 | CGObjCRuntime::~CGObjCRuntime() {} |