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); |
Daniel Dunbar | f1f7f19 | 2008-08-20 00:28:19 +0000 | [diff] [blame] | 26 | // FIXME: This bitcast should just be made an invariant on the Runtime. |
Daniel Dunbar | daf4ad4 | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 27 | return llvm::ConstantExpr::getBitCast(C, ConvertType(E->getType())); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | /// Emit a selector. |
| 31 | llvm::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 Dunbar | fc69bde | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 36 | return CGM.getObjCRuntime().GetSelector(Builder, E->getSelector()); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 37 | } |
| 38 | |
Daniel Dunbar | f1f7f19 | 2008-08-20 00:28:19 +0000 | [diff] [blame] | 39 | llvm::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 Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 43 | |
| 44 | |
Daniel Dunbar | a04840b | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 45 | RValue CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E) { |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 46 | // 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 Dunbar | fc69bde | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 50 | CGObjCRuntime &Runtime = CGM.getObjCRuntime(); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 51 | const Expr *ReceiverExpr = E->getReceiver(); |
| 52 | bool isSuperMessage = false; |
Daniel Dunbar | b1ee5d6 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 53 | bool isClassMessage = false; |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 54 | // Find the receiver |
| 55 | llvm::Value *Receiver; |
| 56 | if (!ReceiverExpr) { |
Daniel Dunbar | 434627a | 2008-08-16 00:25:02 +0000 | [diff] [blame] | 57 | 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 Dunbar | 434627a | 2008-08-16 00:25:02 +0000 | [diff] [blame] | 64 | isSuperMessage = true; |
Daniel Dunbar | b1ee5d6 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 65 | Receiver = LoadObjCSelf(); |
| 66 | } else { |
| 67 | Receiver = Runtime.GetClass(Builder, OID); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 68 | } |
Daniel Dunbar | b1ee5d6 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 69 | |
| 70 | isClassMessage = true; |
Chris Lattner | 6990929 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 71 | } else if (const PredefinedExpr *PDE = |
| 72 | dyn_cast<PredefinedExpr>(E->getReceiver())) { |
| 73 | assert(PDE->getIdentType() == PredefinedExpr::ObjCSuper); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 74 | isSuperMessage = true; |
| 75 | Receiver = LoadObjCSelf(); |
| 76 | } else { |
Daniel Dunbar | 6fa3daf | 2008-08-12 05:28:47 +0000 | [diff] [blame] | 77 | Receiver = EmitScalarExpr(E->getReceiver()); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 80 | if (isSuperMessage) { |
Chris Lattner | 8384c14 | 2008-06-26 04:42:20 +0000 | [diff] [blame] | 81 | // super is only valid in an Objective-C method |
| 82 | const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl); |
Daniel Dunbar | a04840b | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 83 | return Runtime.GenerateMessageSendSuper(*this, E, |
Daniel Dunbar | b1ee5d6 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 84 | OMD->getClassInterface(), |
| 85 | Receiver, |
| 86 | isClassMessage); |
Chris Lattner | 6ee20e3 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 87 | } |
Daniel Dunbar | b1ee5d6 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 88 | return Runtime.GenerateMessageSend(*this, E, Receiver, isClassMessage); |
Anders Carlsson | a66cad4 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Daniel Dunbar | 6b57d43 | 2008-08-26 08:29:31 +0000 | [diff] [blame^] | 91 | /// StartObjCMethod - Begin emission of an ObjCMethod. This generates |
| 92 | /// the LLVM function and sets the other context used by |
| 93 | /// CodeGenFunction. |
| 94 | |
| 95 | // FIXME: This should really be merged with GenerateCode. |
| 96 | void CodeGenFunction::StartObjCMethod(const ObjCMethodDecl *OMD) { |
Daniel Dunbar | ac93e47 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 97 | CurFn = CGM.getObjCRuntime().GenerateMethod(OMD); |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 98 | llvm::BasicBlock *EntryBB = llvm::BasicBlock::Create("entry", CurFn); |
| 99 | |
| 100 | // Create a marker to make it easy to insert allocas into the entryblock |
| 101 | // later. Don't create this with the builder, because we don't want it |
| 102 | // folded. |
| 103 | llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::Int32Ty); |
| 104 | AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::Int32Ty, "allocapt", |
| 105 | EntryBB); |
| 106 | |
| 107 | FnRetTy = OMD->getResultType(); |
| 108 | CurFuncDecl = OMD; |
| 109 | |
| 110 | Builder.SetInsertPoint(EntryBB); |
| 111 | |
| 112 | // Emit allocs for param decls. Give the LLVM Argument nodes names. |
| 113 | llvm::Function::arg_iterator AI = CurFn->arg_begin(); |
| 114 | |
Daniel Dunbar | ace3329 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 115 | // Name the struct return argument. |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 116 | if (hasAggregateLLVMType(OMD->getResultType())) { |
Daniel Dunbar | ace3329 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 117 | AI->setName("agg.result"); |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 118 | ++AI; |
| 119 | } |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 120 | |
Daniel Dunbar | ace3329 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 121 | // Add implicit parameters to the decl map. |
| 122 | EmitParmDecl(*OMD->getSelfDecl(), AI); |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 123 | ++AI; |
Daniel Dunbar | ace3329 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 124 | |
| 125 | EmitParmDecl(*OMD->getCmdDecl(), AI); |
| 126 | ++AI; |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 127 | |
| 128 | for (unsigned i = 0, e = OMD->getNumParams(); i != e; ++i, ++AI) { |
| 129 | assert(AI != CurFn->arg_end() && "Argument mismatch!"); |
| 130 | EmitParmDecl(*OMD->getParamDecl(i), AI); |
| 131 | } |
Daniel Dunbar | ace3329 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 132 | assert(AI == CurFn->arg_end() && "Argument mismatch"); |
Daniel Dunbar | 6b57d43 | 2008-08-26 08:29:31 +0000 | [diff] [blame^] | 133 | } |
Daniel Dunbar | ace3329 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 134 | |
Daniel Dunbar | 6b57d43 | 2008-08-26 08:29:31 +0000 | [diff] [blame^] | 135 | /// Generate an Objective-C method. An Objective-C method is a C function with |
| 136 | /// its pointer, name, and types registered in the class struture. |
| 137 | void CodeGenFunction::GenerateObjCMethod(const ObjCMethodDecl *OMD) { |
| 138 | StartObjCMethod(OMD); |
| 139 | EmitStmt(OMD->getBody()); |
| 140 | |
| 141 | const CompoundStmt *S = dyn_cast<CompoundStmt>(OMD->getBody()); |
| 142 | if (S) { |
| 143 | FinishFunction(S->getRBracLoc()); |
| 144 | } else { |
| 145 | FinishFunction(); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | // FIXME: I wasn't sure about the synthesis approach. If we end up |
| 150 | // generating an AST for the whole body we can just fall back to |
| 151 | // having a GenerateFunction which takes the body Stmt. |
| 152 | |
| 153 | /// GenerateObjCGetter - Generate an Objective-C property getter |
| 154 | /// function. The given Decl must be either an ObjCCategoryImplDecl |
| 155 | /// or an ObjCImplementationDecl. |
| 156 | void CodeGenFunction::GenerateObjCGetter(const ObjCPropertyImplDecl *PID) { |
| 157 | const ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
| 158 | ObjCMethodDecl *OMD = PD->getGetterMethodDecl(); |
| 159 | assert(OMD && "Invalid call to generate getter (empty method)"); |
| 160 | // FIXME: This is rather murky, we create this here since they will |
| 161 | // not have been created by Sema for us. |
| 162 | OMD->createImplicitParams(getContext()); |
| 163 | StartObjCMethod(OMD); |
| 164 | |
| 165 | // FIXME: What about nonatomic? |
| 166 | SourceLocation Loc = PD->getLocation(); |
| 167 | ValueDecl *Self = OMD->getSelfDecl(); |
| 168 | ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl(); |
| 169 | DeclRefExpr Base(Self, Self->getType(), Loc); |
| 170 | ObjCIvarRefExpr IvarRef(Ivar, Ivar->getType(), Loc, &Base, |
| 171 | true, true); |
| 172 | ReturnStmt Return(Loc, &IvarRef); |
| 173 | EmitStmt(&Return); |
| 174 | |
| 175 | FinishFunction(); |
| 176 | } |
| 177 | |
| 178 | /// GenerateObjCSetter - Generate an Objective-C property setter |
| 179 | /// function. The given Decl must be either an ObjCCategoryImplDecl |
| 180 | /// or an ObjCImplementationDecl. |
| 181 | void CodeGenFunction::GenerateObjCSetter(const ObjCPropertyImplDecl *PID) { |
| 182 | const ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
| 183 | ObjCMethodDecl *OMD = PD->getSetterMethodDecl(); |
| 184 | assert(OMD && "Invalid call to generate setter (empty method)"); |
| 185 | // FIXME: This is rather murky, we create this here since they will |
| 186 | // not have been created by Sema for us. |
| 187 | OMD->createImplicitParams(getContext()); |
| 188 | StartObjCMethod(OMD); |
| 189 | |
| 190 | switch (PD->getSetterKind()) { |
| 191 | case ObjCPropertyDecl::Assign: break; |
| 192 | case ObjCPropertyDecl::Copy: |
| 193 | CGM.ErrorUnsupported(PID, "Obj-C setter with 'copy'"); |
| 194 | break; |
| 195 | case ObjCPropertyDecl::Retain: |
| 196 | CGM.ErrorUnsupported(PID, "Obj-C setter with 'retain'"); |
| 197 | break; |
| 198 | } |
| 199 | |
| 200 | // FIXME: What about nonatomic? |
| 201 | SourceLocation Loc = PD->getLocation(); |
| 202 | ValueDecl *Self = OMD->getSelfDecl(); |
| 203 | ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl(); |
| 204 | DeclRefExpr Base(Self, Self->getType(), Loc); |
| 205 | ParmVarDecl *ArgDecl = OMD->getParamDecl(0); |
| 206 | DeclRefExpr Arg(ArgDecl, ArgDecl->getType(), Loc); |
| 207 | ObjCIvarRefExpr IvarRef(Ivar, Ivar->getType(), Loc, &Base, |
| 208 | true, true); |
| 209 | BinaryOperator Assign(&IvarRef, &Arg, BinaryOperator::Assign, |
| 210 | Ivar->getType(), Loc); |
| 211 | EmitStmt(&Assign); |
| 212 | |
| 213 | FinishFunction(); |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 214 | } |
| 215 | |
Daniel Dunbar | ace3329 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 216 | llvm::Value *CodeGenFunction::LoadObjCSelf(void) { |
| 217 | const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl); |
| 218 | return Builder.CreateLoad(LocalDeclMap[OMD->getSelfDecl()], "self"); |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Ted Kremenek | fa4ebab | 2008-04-09 15:51:31 +0000 | [diff] [blame] | 221 | CGObjCRuntime::~CGObjCRuntime() {} |