Anders Carlsson | 5508518 | 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 | 0bc735f | 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 | 5508518 | 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 | 2979ec7 | 2008-04-09 15:51:31 +0000 | [diff] [blame] | 14 | #include "CGObjCRuntime.h" |
Anders Carlsson | 5508518 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 15 | #include "CodeGenFunction.h" |
| 16 | #include "CodeGenModule.h" |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclObjC.h" |
Chris Lattner | 16f0049 | 2009-04-26 01:32:48 +0000 | [diff] [blame] | 19 | #include "clang/AST/StmtObjC.h" |
Daniel Dunbar | e66f4e3 | 2008-09-03 00:27:26 +0000 | [diff] [blame] | 20 | #include "clang/Basic/Diagnostic.h" |
Anders Carlsson | 3d8400d | 2008-08-30 19:51:14 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/STLExtras.h" |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetData.h" |
Anders Carlsson | 5508518 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 23 | using namespace clang; |
| 24 | using namespace CodeGen; |
| 25 | |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 26 | /// Emits an instance of NSConstantString representing the object. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 27 | llvm::Value *CodeGenFunction::EmitObjCStringLiteral(const ObjCStringLiteral *E) |
Daniel Dunbar | 71fcec9 | 2008-11-25 21:53:21 +0000 | [diff] [blame] | 28 | { |
David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 29 | llvm::Constant *C = |
| 30 | CGM.getObjCRuntime().GenerateConstantString(E->getString()); |
Daniel Dunbar | ed7c618 | 2008-08-20 00:28:19 +0000 | [diff] [blame] | 31 | // FIXME: This bitcast should just be made an invariant on the Runtime. |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 32 | return llvm::ConstantExpr::getBitCast(C, ConvertType(E->getType())); |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | /// Emit a selector. |
| 36 | llvm::Value *CodeGenFunction::EmitObjCSelectorExpr(const ObjCSelectorExpr *E) { |
| 37 | // Untyped selector. |
| 38 | // Note that this implementation allows for non-constant strings to be passed |
| 39 | // as arguments to @selector(). Currently, the only thing preventing this |
| 40 | // behaviour is the type checking in the front end. |
Daniel Dunbar | 6d5a1c2 | 2010-02-03 20:11:42 +0000 | [diff] [blame] | 41 | return CGM.getObjCRuntime().GetSelector(Builder, E->getSelector()); |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 42 | } |
| 43 | |
Daniel Dunbar | ed7c618 | 2008-08-20 00:28:19 +0000 | [diff] [blame] | 44 | llvm::Value *CodeGenFunction::EmitObjCProtocolExpr(const ObjCProtocolExpr *E) { |
| 45 | // FIXME: This should pass the Decl not the name. |
| 46 | return CGM.getObjCRuntime().GenerateProtocolRef(Builder, E->getProtocol()); |
| 47 | } |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 48 | |
| 49 | |
John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 50 | RValue CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E, |
| 51 | ReturnValueSlot Return) { |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 52 | // Only the lookup mechanism and first two arguments of the method |
| 53 | // implementation vary between runtimes. We can get the receiver and |
| 54 | // arguments in generic code. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 55 | |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 56 | CGObjCRuntime &Runtime = CGM.getObjCRuntime(); |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 57 | bool isSuperMessage = false; |
Daniel Dunbar | f56f191 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 58 | bool isClassMessage = false; |
David Chisnall | c6cd5fd | 2010-04-28 19:33:36 +0000 | [diff] [blame] | 59 | ObjCInterfaceDecl *OID = 0; |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 60 | // Find the receiver |
Daniel Dunbar | 0b647a6 | 2010-04-22 03:17:06 +0000 | [diff] [blame] | 61 | llvm::Value *Receiver = 0; |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 62 | switch (E->getReceiverKind()) { |
| 63 | case ObjCMessageExpr::Instance: |
| 64 | Receiver = EmitScalarExpr(E->getInstanceReceiver()); |
| 65 | break; |
Daniel Dunbar | ddb2a3d | 2008-08-16 00:25:02 +0000 | [diff] [blame] | 66 | |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 67 | case ObjCMessageExpr::Class: { |
John McCall | 3031c63 | 2010-05-17 20:12:43 +0000 | [diff] [blame] | 68 | const ObjCObjectType *ObjTy |
| 69 | = E->getClassReceiver()->getAs<ObjCObjectType>(); |
| 70 | assert(ObjTy && "Invalid Objective-C class message send"); |
| 71 | OID = ObjTy->getInterface(); |
| 72 | assert(OID && "Invalid Objective-C class message send"); |
David Chisnall | c6cd5fd | 2010-04-28 19:33:36 +0000 | [diff] [blame] | 73 | Receiver = Runtime.GetClass(Builder, OID); |
Daniel Dunbar | f56f191 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 74 | isClassMessage = true; |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 75 | break; |
| 76 | } |
| 77 | |
| 78 | case ObjCMessageExpr::SuperInstance: |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 79 | Receiver = LoadObjCSelf(); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 80 | isSuperMessage = true; |
| 81 | break; |
| 82 | |
| 83 | case ObjCMessageExpr::SuperClass: |
| 84 | Receiver = LoadObjCSelf(); |
| 85 | isSuperMessage = true; |
| 86 | isClassMessage = true; |
| 87 | break; |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Daniel Dunbar | 19cd87e | 2008-08-30 03:02:31 +0000 | [diff] [blame] | 90 | CallArgList Args; |
Anders Carlsson | 131038e | 2009-04-18 20:29:27 +0000 | [diff] [blame] | 91 | EmitCallArgs(Args, E->getMethodDecl(), E->arg_begin(), E->arg_end()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 92 | |
Anders Carlsson | 7e70fb2 | 2010-06-21 20:59:55 +0000 | [diff] [blame] | 93 | QualType ResultType = |
| 94 | E->getMethodDecl() ? E->getMethodDecl()->getResultType() : E->getType(); |
| 95 | |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 96 | if (isSuperMessage) { |
Chris Lattner | 9384c76 | 2008-06-26 04:42:20 +0000 | [diff] [blame] | 97 | // super is only valid in an Objective-C method |
| 98 | const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl); |
Fariborz Jahanian | 7ce7792 | 2009-02-28 20:07:56 +0000 | [diff] [blame] | 99 | bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext()); |
Anders Carlsson | 7e70fb2 | 2010-06-21 20:59:55 +0000 | [diff] [blame] | 100 | return Runtime.GenerateMessageSendSuper(*this, Return, ResultType, |
Daniel Dunbar | 7f8ea5c | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 101 | E->getSelector(), |
Daniel Dunbar | f56f191 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 102 | OMD->getClassInterface(), |
Fariborz Jahanian | 7ce7792 | 2009-02-28 20:07:56 +0000 | [diff] [blame] | 103 | isCategoryImpl, |
Daniel Dunbar | f56f191 | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 104 | Receiver, |
Daniel Dunbar | 19cd87e | 2008-08-30 03:02:31 +0000 | [diff] [blame] | 105 | isClassMessage, |
Daniel Dunbar | d6c93d7 | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 106 | Args, |
| 107 | E->getMethodDecl()); |
Chris Lattner | 8fdf328 | 2008-06-24 17:04:18 +0000 | [diff] [blame] | 108 | } |
Daniel Dunbar | d6c93d7 | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 109 | |
Anders Carlsson | 7e70fb2 | 2010-06-21 20:59:55 +0000 | [diff] [blame] | 110 | return Runtime.GenerateMessageSend(*this, Return, ResultType, |
John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 111 | E->getSelector(), |
David Chisnall | c6cd5fd | 2010-04-28 19:33:36 +0000 | [diff] [blame] | 112 | Receiver, Args, OID, |
Fariborz Jahanian | df9ccc6 | 2009-05-05 21:36:57 +0000 | [diff] [blame] | 113 | E->getMethodDecl()); |
Anders Carlsson | 5508518 | 2007-08-21 17:43:55 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 116 | /// StartObjCMethod - Begin emission of an ObjCMethod. This generates |
| 117 | /// the LLVM function and sets the other context used by |
| 118 | /// CodeGenFunction. |
Fariborz Jahanian | 679a502 | 2009-01-10 21:06:09 +0000 | [diff] [blame] | 119 | void CodeGenFunction::StartObjCMethod(const ObjCMethodDecl *OMD, |
| 120 | const ObjCContainerDecl *CD) { |
Daniel Dunbar | 7c08651 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 121 | FunctionArgList Args; |
Devang Patel | 4800ea6 | 2010-04-05 21:09:15 +0000 | [diff] [blame] | 122 | // Check if we should generate debug info for this method. |
| 123 | if (CGM.getDebugInfo() && !OMD->hasAttr<NoDebugAttr>()) |
| 124 | DebugInfo = CGM.getDebugInfo(); |
| 125 | |
Fariborz Jahanian | 679a502 | 2009-01-10 21:06:09 +0000 | [diff] [blame] | 126 | llvm::Function *Fn = CGM.getObjCRuntime().GenerateMethod(OMD, CD); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 127 | |
Daniel Dunbar | 0e4f40e | 2009-04-17 00:48:04 +0000 | [diff] [blame] | 128 | const CGFunctionInfo &FI = CGM.getTypes().getFunctionInfo(OMD); |
| 129 | CGM.SetInternalFunctionAttributes(OMD, Fn, FI); |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 130 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 131 | Args.push_back(std::make_pair(OMD->getSelfDecl(), |
Daniel Dunbar | 7c08651 | 2008-09-09 23:14:03 +0000 | [diff] [blame] | 132 | OMD->getSelfDecl()->getType())); |
| 133 | Args.push_back(std::make_pair(OMD->getCmdDecl(), |
| 134 | OMD->getCmdDecl()->getType())); |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 135 | |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 136 | for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(), |
| 137 | E = OMD->param_end(); PI != E; ++PI) |
| 138 | Args.push_back(std::make_pair(*PI, (*PI)->getType())); |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 139 | |
Devang Patel | a92d613 | 2010-02-15 18:08:38 +0000 | [diff] [blame] | 140 | StartFunction(OMD, OMD->getResultType(), Fn, Args, OMD->getLocStart()); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 141 | } |
Daniel Dunbar | b7ec246 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 142 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 143 | /// Generate an Objective-C method. An Objective-C method is a C function with |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 144 | /// its pointer, name, and types registered in the class struture. |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 145 | void CodeGenFunction::GenerateObjCMethod(const ObjCMethodDecl *OMD) { |
Fariborz Jahanian | 679a502 | 2009-01-10 21:06:09 +0000 | [diff] [blame] | 146 | StartObjCMethod(OMD, OMD->getClassInterface()); |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 147 | EmitStmt(OMD->getBody()); |
| 148 | FinishFunction(OMD->getBodyRBrace()); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 151 | // FIXME: I wasn't sure about the synthesis approach. If we end up generating an |
| 152 | // AST for the whole body we can just fall back to having a GenerateFunction |
| 153 | // which takes the body Stmt. |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 154 | |
| 155 | /// GenerateObjCGetter - Generate an Objective-C property getter |
Steve Naroff | 489034c | 2009-01-10 22:55:25 +0000 | [diff] [blame] | 156 | /// function. The given Decl must be an ObjCImplementationDecl. @synthesize |
| 157 | /// is illegal within a category. |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 158 | void CodeGenFunction::GenerateObjCGetter(ObjCImplementationDecl *IMP, |
| 159 | const ObjCPropertyImplDecl *PID) { |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 160 | ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl(); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 161 | const ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
Fariborz Jahanian | 15bd588 | 2010-04-13 18:32:24 +0000 | [diff] [blame] | 162 | bool IsAtomic = |
| 163 | !(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 164 | ObjCMethodDecl *OMD = PD->getGetterMethodDecl(); |
| 165 | assert(OMD && "Invalid call to generate getter (empty method)"); |
Fariborz Jahanian | 679a502 | 2009-01-10 21:06:09 +0000 | [diff] [blame] | 166 | StartObjCMethod(OMD, IMP->getClassInterface()); |
Fariborz Jahanian | 15bd588 | 2010-04-13 18:32:24 +0000 | [diff] [blame] | 167 | |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 168 | // Determine if we should use an objc_getProperty call for |
Fariborz Jahanian | 447d7ae | 2008-12-08 23:56:17 +0000 | [diff] [blame] | 169 | // this. Non-atomic properties are directly evaluated. |
| 170 | // atomic 'copy' and 'retain' properties are also directly |
| 171 | // evaluated in gc-only mode. |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 172 | if (CGM.getLangOptions().getGCMode() != LangOptions::GCOnly && |
Fariborz Jahanian | 15bd588 | 2010-04-13 18:32:24 +0000 | [diff] [blame] | 173 | IsAtomic && |
Fariborz Jahanian | 447d7ae | 2008-12-08 23:56:17 +0000 | [diff] [blame] | 174 | (PD->getSetterKind() == ObjCPropertyDecl::Copy || |
| 175 | PD->getSetterKind() == ObjCPropertyDecl::Retain)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 176 | llvm::Value *GetPropertyFn = |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 177 | CGM.getObjCRuntime().GetPropertyGetFunction(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 178 | |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 179 | if (!GetPropertyFn) { |
| 180 | CGM.ErrorUnsupported(PID, "Obj-C getter requiring atomic copy"); |
| 181 | FinishFunction(); |
| 182 | return; |
| 183 | } |
| 184 | |
| 185 | // Return (ivar-type) objc_getProperty((id) self, _cmd, offset, true). |
| 186 | // FIXME: Can't this be simpler? This might even be worse than the |
| 187 | // corresponding gcc code. |
| 188 | CodeGenTypes &Types = CGM.getTypes(); |
| 189 | ValueDecl *Cmd = OMD->getCmdDecl(); |
| 190 | llvm::Value *CmdVal = Builder.CreateLoad(LocalDeclMap[Cmd], "cmd"); |
| 191 | QualType IdTy = getContext().getObjCIdType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 192 | llvm::Value *SelfAsId = |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 193 | Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy)); |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 194 | llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar); |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 195 | llvm::Value *True = |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 196 | llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1); |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 197 | CallArgList Args; |
| 198 | Args.push_back(std::make_pair(RValue::get(SelfAsId), IdTy)); |
| 199 | Args.push_back(std::make_pair(RValue::get(CmdVal), Cmd->getType())); |
| 200 | Args.push_back(std::make_pair(RValue::get(Offset), getContext().LongTy)); |
| 201 | Args.push_back(std::make_pair(RValue::get(True), getContext().BoolTy)); |
Daniel Dunbar | e4be5a6 | 2009-02-03 23:43:59 +0000 | [diff] [blame] | 202 | // FIXME: We shouldn't need to get the function info here, the |
| 203 | // runtime already should have computed it to build the function. |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 204 | RValue RV = EmitCall(Types.getFunctionInfo(PD->getType(), Args, |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 205 | FunctionType::ExtInfo()), |
Anders Carlsson | f3c47c9 | 2009-12-24 19:25:24 +0000 | [diff] [blame] | 206 | GetPropertyFn, ReturnValueSlot(), Args); |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 207 | // We need to fix the type here. Ivars with copy & retain are |
| 208 | // always objects so we don't need to worry about complex or |
| 209 | // aggregates. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 210 | RV = RValue::get(Builder.CreateBitCast(RV.getScalarVal(), |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 211 | Types.ConvertType(PD->getType()))); |
| 212 | EmitReturnOfRValue(RV, PD->getType()); |
| 213 | } else { |
Fariborz Jahanian | 1b23fe6 | 2010-03-25 21:56:43 +0000 | [diff] [blame] | 214 | if (Ivar->getType()->isAnyComplexType()) { |
Fariborz Jahanian | 97a73cd | 2010-05-06 15:45:36 +0000 | [diff] [blame] | 215 | LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), |
| 216 | Ivar, 0); |
Fariborz Jahanian | 1b23fe6 | 2010-03-25 21:56:43 +0000 | [diff] [blame] | 217 | ComplexPairTy Pair = LoadComplexFromAddr(LV.getAddress(), |
| 218 | LV.isVolatileQualified()); |
| 219 | StoreComplexToAddr(Pair, ReturnValue, LV.isVolatileQualified()); |
| 220 | } |
| 221 | else if (hasAggregateLLVMType(Ivar->getType())) { |
Fariborz Jahanian | 15bd588 | 2010-04-13 18:32:24 +0000 | [diff] [blame] | 222 | bool IsStrong = false; |
| 223 | if ((IsAtomic || (IsStrong = IvarTypeWithAggrGCObjects(Ivar->getType()))) |
Fariborz Jahanian | 0b2bd47 | 2010-04-13 00:38:05 +0000 | [diff] [blame] | 224 | && CurFnInfo->getReturnInfo().getKind() == ABIArgInfo::Indirect |
David Chisnall | 8fac25d | 2010-12-26 22:13:16 +0000 | [diff] [blame] | 225 | && CGM.getObjCRuntime().GetGetStructFunction()) { |
Fariborz Jahanian | 97a73cd | 2010-05-06 15:45:36 +0000 | [diff] [blame] | 226 | LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), |
| 227 | Ivar, 0); |
Fariborz Jahanian | 0b2bd47 | 2010-04-13 00:38:05 +0000 | [diff] [blame] | 228 | llvm::Value *GetCopyStructFn = |
David Chisnall | 8fac25d | 2010-12-26 22:13:16 +0000 | [diff] [blame] | 229 | CGM.getObjCRuntime().GetGetStructFunction(); |
Fariborz Jahanian | 0b2bd47 | 2010-04-13 00:38:05 +0000 | [diff] [blame] | 230 | CodeGenTypes &Types = CGM.getTypes(); |
| 231 | // objc_copyStruct (ReturnValue, &structIvar, |
| 232 | // sizeof (Type of Ivar), isAtomic, false); |
| 233 | CallArgList Args; |
| 234 | RValue RV = RValue::get(Builder.CreateBitCast(ReturnValue, |
| 235 | Types.ConvertType(getContext().VoidPtrTy))); |
| 236 | Args.push_back(std::make_pair(RV, getContext().VoidPtrTy)); |
| 237 | RV = RValue::get(Builder.CreateBitCast(LV.getAddress(), |
| 238 | Types.ConvertType(getContext().VoidPtrTy))); |
| 239 | Args.push_back(std::make_pair(RV, getContext().VoidPtrTy)); |
| 240 | // sizeof (Type of Ivar) |
| 241 | uint64_t Size = getContext().getTypeSize(Ivar->getType()) / 8; |
| 242 | llvm::Value *SizeVal = |
| 243 | llvm::ConstantInt::get(Types.ConvertType(getContext().LongTy), Size); |
| 244 | Args.push_back(std::make_pair(RValue::get(SizeVal), |
| 245 | getContext().LongTy)); |
Fariborz Jahanian | 0b2bd47 | 2010-04-13 00:38:05 +0000 | [diff] [blame] | 246 | llvm::Value *isAtomic = |
Fariborz Jahanian | 08adf32 | 2010-04-13 18:43:37 +0000 | [diff] [blame] | 247 | llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), |
| 248 | IsAtomic ? 1 : 0); |
Fariborz Jahanian | 0b2bd47 | 2010-04-13 00:38:05 +0000 | [diff] [blame] | 249 | Args.push_back(std::make_pair(RValue::get(isAtomic), |
| 250 | getContext().BoolTy)); |
Fariborz Jahanian | 15bd588 | 2010-04-13 18:32:24 +0000 | [diff] [blame] | 251 | llvm::Value *hasStrong = |
| 252 | llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), |
| 253 | IsStrong ? 1 : 0); |
| 254 | Args.push_back(std::make_pair(RValue::get(hasStrong), |
| 255 | getContext().BoolTy)); |
Fariborz Jahanian | 0b2bd47 | 2010-04-13 00:38:05 +0000 | [diff] [blame] | 256 | EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args, |
| 257 | FunctionType::ExtInfo()), |
| 258 | GetCopyStructFn, ReturnValueSlot(), Args); |
| 259 | } |
Fariborz Jahanian | 97a73cd | 2010-05-06 15:45:36 +0000 | [diff] [blame] | 260 | else { |
| 261 | if (PID->getGetterCXXConstructor()) { |
| 262 | ReturnStmt *Stmt = |
| 263 | new (getContext()) ReturnStmt(SourceLocation(), |
Douglas Gregor | 5077c38 | 2010-05-15 06:01:05 +0000 | [diff] [blame] | 264 | PID->getGetterCXXConstructor(), |
| 265 | 0); |
Fariborz Jahanian | 97a73cd | 2010-05-06 15:45:36 +0000 | [diff] [blame] | 266 | EmitReturnStmt(*Stmt); |
| 267 | } |
| 268 | else { |
| 269 | LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), |
| 270 | Ivar, 0); |
| 271 | EmitAggregateCopy(ReturnValue, LV.getAddress(), Ivar->getType()); |
| 272 | } |
| 273 | } |
Mike Stump | b3589f4 | 2009-07-30 22:28:39 +0000 | [diff] [blame] | 274 | } else { |
Fariborz Jahanian | 97a73cd | 2010-05-06 15:45:36 +0000 | [diff] [blame] | 275 | LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), |
| 276 | Ivar, 0); |
Fariborz Jahanian | ed1d29d | 2009-03-03 18:49:40 +0000 | [diff] [blame] | 277 | CodeGenTypes &Types = CGM.getTypes(); |
| 278 | RValue RV = EmitLoadOfLValue(LV, Ivar->getType()); |
| 279 | RV = RValue::get(Builder.CreateBitCast(RV.getScalarVal(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 280 | Types.ConvertType(PD->getType()))); |
Fariborz Jahanian | ed1d29d | 2009-03-03 18:49:40 +0000 | [diff] [blame] | 281 | EmitReturnOfRValue(RV, PD->getType()); |
| 282 | } |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 283 | } |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 284 | |
| 285 | FinishFunction(); |
| 286 | } |
| 287 | |
| 288 | /// GenerateObjCSetter - Generate an Objective-C property setter |
Steve Naroff | 489034c | 2009-01-10 22:55:25 +0000 | [diff] [blame] | 289 | /// function. The given Decl must be an ObjCImplementationDecl. @synthesize |
| 290 | /// is illegal within a category. |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 291 | void CodeGenFunction::GenerateObjCSetter(ObjCImplementationDecl *IMP, |
| 292 | const ObjCPropertyImplDecl *PID) { |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 293 | ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl(); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 294 | const ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
| 295 | ObjCMethodDecl *OMD = PD->getSetterMethodDecl(); |
| 296 | assert(OMD && "Invalid call to generate setter (empty method)"); |
Fariborz Jahanian | 679a502 | 2009-01-10 21:06:09 +0000 | [diff] [blame] | 297 | StartObjCMethod(OMD, IMP->getClassInterface()); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 298 | |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 299 | bool IsCopy = PD->getSetterKind() == ObjCPropertyDecl::Copy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 300 | bool IsAtomic = |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 301 | !(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic); |
| 302 | |
| 303 | // Determine if we should use an objc_setProperty call for |
| 304 | // this. Properties with 'copy' semantics always use it, as do |
| 305 | // non-atomic properties with 'release' semantics as long as we are |
| 306 | // not in gc-only mode. |
| 307 | if (IsCopy || |
| 308 | (CGM.getLangOptions().getGCMode() != LangOptions::GCOnly && |
| 309 | PD->getSetterKind() == ObjCPropertyDecl::Retain)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 310 | llvm::Value *SetPropertyFn = |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 311 | CGM.getObjCRuntime().GetPropertySetFunction(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 312 | |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 313 | if (!SetPropertyFn) { |
| 314 | CGM.ErrorUnsupported(PID, "Obj-C getter requiring atomic copy"); |
| 315 | FinishFunction(); |
| 316 | return; |
| 317 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 318 | |
| 319 | // Emit objc_setProperty((id) self, _cmd, offset, arg, |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 320 | // <is-atomic>, <is-copy>). |
| 321 | // FIXME: Can't this be simpler? This might even be worse than the |
| 322 | // corresponding gcc code. |
| 323 | CodeGenTypes &Types = CGM.getTypes(); |
| 324 | ValueDecl *Cmd = OMD->getCmdDecl(); |
| 325 | llvm::Value *CmdVal = Builder.CreateLoad(LocalDeclMap[Cmd], "cmd"); |
| 326 | QualType IdTy = getContext().getObjCIdType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 327 | llvm::Value *SelfAsId = |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 328 | Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy)); |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 329 | llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar); |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 330 | llvm::Value *Arg = LocalDeclMap[*OMD->param_begin()]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 331 | llvm::Value *ArgAsId = |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 332 | Builder.CreateBitCast(Builder.CreateLoad(Arg, "arg"), |
| 333 | Types.ConvertType(IdTy)); |
| 334 | llvm::Value *True = |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 335 | llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1); |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 336 | llvm::Value *False = |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 337 | llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 0); |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 338 | CallArgList Args; |
| 339 | Args.push_back(std::make_pair(RValue::get(SelfAsId), IdTy)); |
| 340 | Args.push_back(std::make_pair(RValue::get(CmdVal), Cmd->getType())); |
| 341 | Args.push_back(std::make_pair(RValue::get(Offset), getContext().LongTy)); |
| 342 | Args.push_back(std::make_pair(RValue::get(ArgAsId), IdTy)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 343 | Args.push_back(std::make_pair(RValue::get(IsAtomic ? True : False), |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 344 | getContext().BoolTy)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 345 | Args.push_back(std::make_pair(RValue::get(IsCopy ? True : False), |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 346 | getContext().BoolTy)); |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 347 | // FIXME: We shouldn't need to get the function info here, the runtime |
| 348 | // already should have computed it to build the function. |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 349 | EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args, |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 350 | FunctionType::ExtInfo()), |
| 351 | SetPropertyFn, |
Anders Carlsson | f3c47c9 | 2009-12-24 19:25:24 +0000 | [diff] [blame] | 352 | ReturnValueSlot(), Args); |
Fariborz Jahanian | 0b2bd47 | 2010-04-13 00:38:05 +0000 | [diff] [blame] | 353 | } else if (IsAtomic && hasAggregateLLVMType(Ivar->getType()) && |
| 354 | !Ivar->getType()->isAnyComplexType() && |
| 355 | IndirectObjCSetterArg(*CurFnInfo) |
David Chisnall | 8fac25d | 2010-12-26 22:13:16 +0000 | [diff] [blame] | 356 | && CGM.getObjCRuntime().GetSetStructFunction()) { |
Fariborz Jahanian | 0b2bd47 | 2010-04-13 00:38:05 +0000 | [diff] [blame] | 357 | // objc_copyStruct (&structIvar, &Arg, |
| 358 | // sizeof (struct something), true, false); |
| 359 | llvm::Value *GetCopyStructFn = |
David Chisnall | 8fac25d | 2010-12-26 22:13:16 +0000 | [diff] [blame] | 360 | CGM.getObjCRuntime().GetSetStructFunction(); |
Fariborz Jahanian | 0b2bd47 | 2010-04-13 00:38:05 +0000 | [diff] [blame] | 361 | CodeGenTypes &Types = CGM.getTypes(); |
| 362 | CallArgList Args; |
| 363 | LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), Ivar, 0); |
| 364 | RValue RV = RValue::get(Builder.CreateBitCast(LV.getAddress(), |
| 365 | Types.ConvertType(getContext().VoidPtrTy))); |
| 366 | Args.push_back(std::make_pair(RV, getContext().VoidPtrTy)); |
| 367 | llvm::Value *Arg = LocalDeclMap[*OMD->param_begin()]; |
| 368 | llvm::Value *ArgAsPtrTy = |
| 369 | Builder.CreateBitCast(Arg, |
| 370 | Types.ConvertType(getContext().VoidPtrTy)); |
| 371 | RV = RValue::get(ArgAsPtrTy); |
| 372 | Args.push_back(std::make_pair(RV, getContext().VoidPtrTy)); |
| 373 | // sizeof (Type of Ivar) |
| 374 | uint64_t Size = getContext().getTypeSize(Ivar->getType()) / 8; |
| 375 | llvm::Value *SizeVal = |
| 376 | llvm::ConstantInt::get(Types.ConvertType(getContext().LongTy), Size); |
| 377 | Args.push_back(std::make_pair(RValue::get(SizeVal), |
| 378 | getContext().LongTy)); |
| 379 | llvm::Value *True = |
| 380 | llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1); |
| 381 | Args.push_back(std::make_pair(RValue::get(True), getContext().BoolTy)); |
| 382 | llvm::Value *False = |
| 383 | llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 0); |
| 384 | Args.push_back(std::make_pair(RValue::get(False), getContext().BoolTy)); |
| 385 | EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args, |
| 386 | FunctionType::ExtInfo()), |
| 387 | GetCopyStructFn, ReturnValueSlot(), Args); |
Fariborz Jahanian | 97a73cd | 2010-05-06 15:45:36 +0000 | [diff] [blame] | 388 | } else if (PID->getSetterCXXAssignment()) { |
John McCall | 2a41637 | 2010-12-05 02:00:02 +0000 | [diff] [blame] | 389 | EmitIgnoredExpr(PID->getSetterCXXAssignment()); |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 390 | } else { |
Daniel Dunbar | 45e8423 | 2009-10-27 19:21:30 +0000 | [diff] [blame] | 391 | // FIXME: Find a clean way to avoid AST node creation. |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 392 | SourceLocation Loc = PD->getLocation(); |
| 393 | ValueDecl *Self = OMD->getSelfDecl(); |
| 394 | ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 395 | DeclRefExpr Base(Self, Self->getType(), VK_RValue, Loc); |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 396 | ParmVarDecl *ArgDecl = *OMD->param_begin(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 397 | DeclRefExpr Arg(ArgDecl, ArgDecl->getType(), VK_LValue, Loc); |
Daniel Dunbar | 45e8423 | 2009-10-27 19:21:30 +0000 | [diff] [blame] | 398 | ObjCIvarRefExpr IvarRef(Ivar, Ivar->getType(), Loc, &Base, true, true); |
| 399 | |
| 400 | // The property type can differ from the ivar type in some situations with |
| 401 | // Objective-C pointer types, we can always bit cast the RHS in these cases. |
| 402 | if (getContext().getCanonicalType(Ivar->getType()) != |
| 403 | getContext().getCanonicalType(ArgDecl->getType())) { |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 404 | ImplicitCastExpr ArgCasted(ImplicitCastExpr::OnStack, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 405 | Ivar->getType(), CK_BitCast, &Arg, |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 406 | VK_RValue); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 407 | BinaryOperator Assign(&IvarRef, &ArgCasted, BO_Assign, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 408 | Ivar->getType(), VK_RValue, OK_Ordinary, Loc); |
Daniel Dunbar | 45e8423 | 2009-10-27 19:21:30 +0000 | [diff] [blame] | 409 | EmitStmt(&Assign); |
| 410 | } else { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 411 | BinaryOperator Assign(&IvarRef, &Arg, BO_Assign, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 412 | Ivar->getType(), VK_RValue, OK_Ordinary, Loc); |
Daniel Dunbar | 45e8423 | 2009-10-27 19:21:30 +0000 | [diff] [blame] | 413 | EmitStmt(&Assign); |
| 414 | } |
Daniel Dunbar | 86957eb | 2008-09-24 06:32:09 +0000 | [diff] [blame] | 415 | } |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 416 | |
| 417 | FinishFunction(); |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 418 | } |
| 419 | |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 420 | void CodeGenFunction::GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP, |
| 421 | ObjCMethodDecl *MD, |
| 422 | bool ctor) { |
Sean Hunt | cbb6748 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 423 | llvm::SmallVector<CXXCtorInitializer *, 8> IvarInitializers; |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 424 | MD->createImplicitParams(CGM.getContext(), IMP->getClassInterface()); |
| 425 | StartObjCMethod(MD, IMP->getClassInterface()); |
| 426 | for (ObjCImplementationDecl::init_const_iterator B = IMP->init_begin(), |
| 427 | E = IMP->init_end(); B != E; ++B) { |
Sean Hunt | cbb6748 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 428 | CXXCtorInitializer *Member = (*B); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 429 | IvarInitializers.push_back(Member); |
| 430 | } |
| 431 | if (ctor) { |
| 432 | for (unsigned I = 0, E = IvarInitializers.size(); I != E; ++I) { |
Sean Hunt | cbb6748 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 433 | CXXCtorInitializer *IvarInit = IvarInitializers[I]; |
Francois Pichet | 00eb3f9 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 434 | FieldDecl *Field = IvarInit->getAnyMember(); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 435 | QualType FieldType = Field->getType(); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 436 | ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(Field); |
Fariborz Jahanian | 9b4d4fc | 2010-04-28 22:30:33 +0000 | [diff] [blame] | 437 | LValue LV = EmitLValueForIvar(TypeOfSelfObject(), |
| 438 | LoadObjCSelf(), Ivar, 0); |
John McCall | 558d2ab | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 439 | EmitAggExpr(IvarInit->getInit(), AggValueSlot::forLValue(LV, true)); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 440 | } |
| 441 | // constructor returns 'self'. |
| 442 | CodeGenTypes &Types = CGM.getTypes(); |
| 443 | QualType IdTy(CGM.getContext().getObjCIdType()); |
| 444 | llvm::Value *SelfAsId = |
| 445 | Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy)); |
| 446 | EmitReturnOfRValue(RValue::get(SelfAsId), IdTy); |
Chandler Carruth | bc397cf | 2010-05-06 00:20:39 +0000 | [diff] [blame] | 447 | } else { |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 448 | // dtor |
| 449 | for (size_t i = IvarInitializers.size(); i > 0; --i) { |
Francois Pichet | 00eb3f9 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 450 | FieldDecl *Field = IvarInitializers[i - 1]->getAnyMember(); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 451 | QualType FieldType = Field->getType(); |
Fariborz Jahanian | 9b4d4fc | 2010-04-28 22:30:33 +0000 | [diff] [blame] | 452 | const ConstantArrayType *Array = |
| 453 | getContext().getAsConstantArrayType(FieldType); |
| 454 | if (Array) |
| 455 | FieldType = getContext().getBaseElementType(FieldType); |
| 456 | |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 457 | ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(Field); |
| 458 | LValue LV = EmitLValueForIvar(TypeOfSelfObject(), |
| 459 | LoadObjCSelf(), Ivar, 0); |
| 460 | const RecordType *RT = FieldType->getAs<RecordType>(); |
| 461 | CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl()); |
Douglas Gregor | 1d110e0 | 2010-07-01 14:13:13 +0000 | [diff] [blame] | 462 | CXXDestructorDecl *Dtor = FieldClassDecl->getDestructor(); |
Chandler Carruth | bc397cf | 2010-05-06 00:20:39 +0000 | [diff] [blame] | 463 | if (!Dtor->isTrivial()) { |
Fariborz Jahanian | 8b688ed | 2010-05-04 19:29:32 +0000 | [diff] [blame] | 464 | if (Array) { |
| 465 | const llvm::Type *BasePtr = ConvertType(FieldType); |
| 466 | BasePtr = llvm::PointerType::getUnqual(BasePtr); |
| 467 | llvm::Value *BaseAddrPtr = |
| 468 | Builder.CreateBitCast(LV.getAddress(), BasePtr); |
| 469 | EmitCXXAggrDestructorCall(Dtor, |
| 470 | Array, BaseAddrPtr); |
Chandler Carruth | bc397cf | 2010-05-06 00:20:39 +0000 | [diff] [blame] | 471 | } else { |
Fariborz Jahanian | 8b688ed | 2010-05-04 19:29:32 +0000 | [diff] [blame] | 472 | EmitCXXDestructorCall(Dtor, |
| 473 | Dtor_Complete, /*ForVirtualBase=*/false, |
| 474 | LV.getAddress()); |
Chandler Carruth | bc397cf | 2010-05-06 00:20:39 +0000 | [diff] [blame] | 475 | } |
| 476 | } |
| 477 | } |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 478 | } |
| 479 | FinishFunction(); |
| 480 | } |
| 481 | |
Fariborz Jahanian | 0b2bd47 | 2010-04-13 00:38:05 +0000 | [diff] [blame] | 482 | bool CodeGenFunction::IndirectObjCSetterArg(const CGFunctionInfo &FI) { |
| 483 | CGFunctionInfo::const_arg_iterator it = FI.arg_begin(); |
| 484 | it++; it++; |
| 485 | const ABIArgInfo &AI = it->info; |
| 486 | // FIXME. Is this sufficient check? |
| 487 | return (AI.getKind() == ABIArgInfo::Indirect); |
| 488 | } |
| 489 | |
Fariborz Jahanian | 15bd588 | 2010-04-13 18:32:24 +0000 | [diff] [blame] | 490 | bool CodeGenFunction::IvarTypeWithAggrGCObjects(QualType Ty) { |
| 491 | if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC) |
| 492 | return false; |
| 493 | if (const RecordType *FDTTy = Ty.getTypePtr()->getAs<RecordType>()) |
| 494 | return FDTTy->getDecl()->hasObjectMember(); |
| 495 | return false; |
| 496 | } |
| 497 | |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 498 | llvm::Value *CodeGenFunction::LoadObjCSelf() { |
Daniel Dunbar | b7ec246 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 499 | const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl); |
| 500 | return Builder.CreateLoad(LocalDeclMap[OMD->getSelfDecl()], "self"); |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 501 | } |
| 502 | |
Fariborz Jahanian | 45012a7 | 2009-02-03 00:09:52 +0000 | [diff] [blame] | 503 | QualType CodeGenFunction::TypeOfSelfObject() { |
| 504 | const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl); |
| 505 | ImplicitParamDecl *selfDecl = OMD->getSelfDecl(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 506 | const ObjCObjectPointerType *PTy = cast<ObjCObjectPointerType>( |
| 507 | getContext().getCanonicalType(selfDecl->getType())); |
Fariborz Jahanian | 45012a7 | 2009-02-03 00:09:52 +0000 | [diff] [blame] | 508 | return PTy->getPointeeType(); |
| 509 | } |
| 510 | |
John McCall | e68b984 | 2010-12-04 03:11:00 +0000 | [diff] [blame] | 511 | LValue |
| 512 | CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) { |
| 513 | // This is a special l-value that just issues sends when we load or |
| 514 | // store through it. |
| 515 | |
| 516 | // For certain base kinds, we need to emit the base immediately. |
| 517 | llvm::Value *Base; |
| 518 | if (E->isSuperReceiver()) |
| 519 | Base = LoadObjCSelf(); |
| 520 | else if (E->isClassReceiver()) |
| 521 | Base = CGM.getObjCRuntime().GetClass(Builder, E->getClassReceiver()); |
| 522 | else |
| 523 | Base = EmitScalarExpr(E->getBase()); |
| 524 | return LValue::MakePropertyRef(E, Base); |
| 525 | } |
| 526 | |
| 527 | static RValue GenerateMessageSendSuper(CodeGenFunction &CGF, |
| 528 | ReturnValueSlot Return, |
| 529 | QualType ResultType, |
| 530 | Selector S, |
| 531 | llvm::Value *Receiver, |
| 532 | const CallArgList &CallArgs) { |
| 533 | const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CGF.CurFuncDecl); |
Fariborz Jahanian | f469557 | 2009-03-20 19:18:21 +0000 | [diff] [blame] | 534 | bool isClassMessage = OMD->isClassMethod(); |
| 535 | bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext()); |
John McCall | e68b984 | 2010-12-04 03:11:00 +0000 | [diff] [blame] | 536 | return CGF.CGM.getObjCRuntime() |
| 537 | .GenerateMessageSendSuper(CGF, Return, ResultType, |
| 538 | S, OMD->getClassInterface(), |
| 539 | isCategoryImpl, Receiver, |
| 540 | isClassMessage, CallArgs); |
Fariborz Jahanian | f469557 | 2009-03-20 19:18:21 +0000 | [diff] [blame] | 541 | } |
| 542 | |
John McCall | 119a1c6 | 2010-12-04 02:32:38 +0000 | [diff] [blame] | 543 | RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV, |
| 544 | ReturnValueSlot Return) { |
| 545 | const ObjCPropertyRefExpr *E = LV.getPropertyRefExpr(); |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 546 | QualType ResultType; |
| 547 | Selector S; |
| 548 | if (E->isExplicitProperty()) { |
| 549 | const ObjCPropertyDecl *Property = E->getExplicitProperty(); |
| 550 | S = Property->getGetterName(); |
| 551 | ResultType = E->getType(); |
Mike Stump | b3589f4 | 2009-07-30 22:28:39 +0000 | [diff] [blame] | 552 | } else { |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 553 | const ObjCMethodDecl *Getter = E->getImplicitPropertyGetter(); |
| 554 | S = Getter->getSelector(); |
| 555 | ResultType = Getter->getResultType(); // with reference! |
Fariborz Jahanian | 43f4470 | 2008-11-22 22:30:21 +0000 | [diff] [blame] | 556 | } |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 557 | |
John McCall | 119a1c6 | 2010-12-04 02:32:38 +0000 | [diff] [blame] | 558 | llvm::Value *Receiver = LV.getPropertyRefBaseAddr(); |
John McCall | e68b984 | 2010-12-04 03:11:00 +0000 | [diff] [blame] | 559 | |
| 560 | // Accesses to 'super' follow a different code path. |
| 561 | if (E->isSuperReceiver()) |
| 562 | return GenerateMessageSendSuper(*this, Return, ResultType, |
| 563 | S, Receiver, CallArgList()); |
| 564 | |
John McCall | 119a1c6 | 2010-12-04 02:32:38 +0000 | [diff] [blame] | 565 | const ObjCInterfaceDecl *ReceiverClass |
| 566 | = (E->isClassReceiver() ? E->getClassReceiver() : 0); |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 567 | return CGM.getObjCRuntime(). |
| 568 | GenerateMessageSend(*this, Return, ResultType, S, |
| 569 | Receiver, CallArgList(), ReceiverClass); |
Daniel Dunbar | 9c3fc70 | 2008-08-27 06:57:25 +0000 | [diff] [blame] | 570 | } |
| 571 | |
John McCall | 119a1c6 | 2010-12-04 02:32:38 +0000 | [diff] [blame] | 572 | void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src, |
| 573 | LValue Dst) { |
| 574 | const ObjCPropertyRefExpr *E = Dst.getPropertyRefExpr(); |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 575 | Selector S = E->getSetterSelector(); |
| 576 | QualType ArgType; |
| 577 | if (E->isImplicitProperty()) { |
| 578 | const ObjCMethodDecl *Setter = E->getImplicitPropertySetter(); |
| 579 | ObjCMethodDecl::param_iterator P = Setter->param_begin(); |
| 580 | ArgType = (*P)->getType(); |
| 581 | } else { |
| 582 | ArgType = E->getType(); |
| 583 | } |
| 584 | |
John McCall | e68b984 | 2010-12-04 03:11:00 +0000 | [diff] [blame] | 585 | CallArgList Args; |
| 586 | Args.push_back(std::make_pair(Src, ArgType)); |
| 587 | |
| 588 | llvm::Value *Receiver = Dst.getPropertyRefBaseAddr(); |
| 589 | QualType ResultType = getContext().VoidTy; |
| 590 | |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 591 | if (E->isSuperReceiver()) { |
John McCall | e68b984 | 2010-12-04 03:11:00 +0000 | [diff] [blame] | 592 | GenerateMessageSendSuper(*this, ReturnValueSlot(), |
| 593 | ResultType, S, Receiver, Args); |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 594 | return; |
| 595 | } |
| 596 | |
John McCall | 119a1c6 | 2010-12-04 02:32:38 +0000 | [diff] [blame] | 597 | const ObjCInterfaceDecl *ReceiverClass |
| 598 | = (E->isClassReceiver() ? E->getClassReceiver() : 0); |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 599 | |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 600 | CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(), |
John McCall | e68b984 | 2010-12-04 03:11:00 +0000 | [diff] [blame] | 601 | ResultType, S, Receiver, Args, |
| 602 | ReceiverClass); |
Daniel Dunbar | 85c59ed | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 603 | } |
| 604 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 605 | void CodeGenFunction::EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S){ |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 606 | llvm::Constant *EnumerationMutationFn = |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 607 | CGM.getObjCRuntime().EnumerationMutationFunction(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 608 | |
Daniel Dunbar | c1cf4a5 | 2008-09-24 04:04:31 +0000 | [diff] [blame] | 609 | if (!EnumerationMutationFn) { |
| 610 | CGM.ErrorUnsupported(&S, "Obj-C fast enumeration for this runtime"); |
| 611 | return; |
| 612 | } |
| 613 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 614 | JumpDest LoopEnd = getJumpDestInCurrentScope("forcoll.end"); |
| 615 | JumpDest AfterBody = getJumpDestInCurrentScope("forcoll.next"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 616 | |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 617 | // Fast enumeration state. |
| 618 | QualType StateTy = getContext().getObjCFastEnumerationStateType(); |
Daniel Dunbar | 195337d | 2010-02-09 02:48:28 +0000 | [diff] [blame] | 619 | llvm::Value *StatePtr = CreateMemTemp(StateTy, "state.ptr"); |
Anders Carlsson | 1884eb0 | 2010-05-22 17:35:42 +0000 | [diff] [blame] | 620 | EmitNullInitialization(StatePtr, StateTy); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 621 | |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 622 | // Number of elements in the items array. |
Anders Carlsson | 2abd89c | 2008-08-31 04:05:03 +0000 | [diff] [blame] | 623 | static const unsigned NumItems = 16; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 624 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 625 | // Fetch the countByEnumeratingWithState:objects:count: selector. |
Benjamin Kramer | ad46886 | 2010-03-30 11:36:44 +0000 | [diff] [blame] | 626 | IdentifierInfo *II[] = { |
| 627 | &CGM.getContext().Idents.get("countByEnumeratingWithState"), |
| 628 | &CGM.getContext().Idents.get("objects"), |
| 629 | &CGM.getContext().Idents.get("count") |
| 630 | }; |
| 631 | Selector FastEnumSel = |
| 632 | CGM.getContext().Selectors.getSelector(llvm::array_lengthof(II), &II[0]); |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 633 | |
| 634 | QualType ItemsTy = |
| 635 | getContext().getConstantArrayType(getContext().getObjCIdType(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 636 | llvm::APInt(32, NumItems), |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 637 | ArrayType::Normal, 0); |
Daniel Dunbar | 195337d | 2010-02-09 02:48:28 +0000 | [diff] [blame] | 638 | llvm::Value *ItemsPtr = CreateMemTemp(ItemsTy, "items.ptr"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 639 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 640 | // Emit the collection pointer. |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 641 | llvm::Value *Collection = EmitScalarExpr(S.getCollection()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 642 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 643 | // Send it our message: |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 644 | CallArgList Args; |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 645 | |
| 646 | // The first argument is a temporary of the enumeration-state type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 647 | Args.push_back(std::make_pair(RValue::get(StatePtr), |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 648 | getContext().getPointerType(StateTy))); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 649 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 650 | // The second argument is a temporary array with space for NumItems |
| 651 | // pointers. We'll actually be loading elements from the array |
| 652 | // pointer written into the control state; this buffer is so that |
| 653 | // collections that *aren't* backed by arrays can still queue up |
| 654 | // batches of elements. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 655 | Args.push_back(std::make_pair(RValue::get(ItemsPtr), |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 656 | getContext().getPointerType(ItemsTy))); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 657 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 658 | // The third argument is the capacity of that temporary array. |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 659 | const llvm::Type *UnsignedLongLTy = ConvertType(getContext().UnsignedLongTy); |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 660 | llvm::Constant *Count = llvm::ConstantInt::get(UnsignedLongLTy, NumItems); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 661 | Args.push_back(std::make_pair(RValue::get(Count), |
Daniel Dunbar | 46f45b9 | 2008-09-09 01:06:48 +0000 | [diff] [blame] | 662 | getContext().UnsignedLongTy)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 663 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 664 | // Start the enumeration. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 665 | RValue CountRV = |
John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 666 | CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(), |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 667 | getContext().UnsignedLongTy, |
| 668 | FastEnumSel, |
David Chisnall | c6cd5fd | 2010-04-28 19:33:36 +0000 | [diff] [blame] | 669 | Collection, Args); |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 670 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 671 | // The initial number of objects that were returned in the buffer. |
| 672 | llvm::Value *initialBufferLimit = CountRV.getScalarVal(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 673 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 674 | llvm::BasicBlock *EmptyBB = createBasicBlock("forcoll.empty"); |
| 675 | llvm::BasicBlock *LoopInitBB = createBasicBlock("forcoll.loopinit"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 676 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 677 | llvm::Value *zero = llvm::Constant::getNullValue(UnsignedLongLTy); |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 678 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 679 | // If the limit pointer was zero to begin with, the collection is |
| 680 | // empty; skip all this. |
| 681 | Builder.CreateCondBr(Builder.CreateICmpEQ(initialBufferLimit, zero, "iszero"), |
| 682 | EmptyBB, LoopInitBB); |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 683 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 684 | // Otherwise, initialize the loop. |
| 685 | EmitBlock(LoopInitBB); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 686 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 687 | // Save the initial mutations value. This is the value at an |
| 688 | // address that was written into the state object by |
| 689 | // countByEnumeratingWithState:objects:count:. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 690 | llvm::Value *StateMutationsPtrPtr = |
Anders Carlsson | 2abd89c | 2008-08-31 04:05:03 +0000 | [diff] [blame] | 691 | Builder.CreateStructGEP(StatePtr, 2, "mutationsptr.ptr"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 692 | llvm::Value *StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr, |
Anders Carlsson | 2abd89c | 2008-08-31 04:05:03 +0000 | [diff] [blame] | 693 | "mutationsptr"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 694 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 695 | llvm::Value *initialMutations = |
| 696 | Builder.CreateLoad(StateMutationsPtr, "forcoll.initial-mutations"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 697 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 698 | // Start looping. This is the point we return to whenever we have a |
| 699 | // fresh, non-empty batch of objects. |
| 700 | llvm::BasicBlock *LoopBodyBB = createBasicBlock("forcoll.loopbody"); |
| 701 | EmitBlock(LoopBodyBB); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 702 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 703 | // The current index into the buffer. |
| 704 | llvm::PHINode *index = Builder.CreatePHI(UnsignedLongLTy, "forcoll.index"); |
| 705 | index->addIncoming(zero, LoopInitBB); |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 706 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 707 | // The current buffer size. |
| 708 | llvm::PHINode *count = Builder.CreatePHI(UnsignedLongLTy, "forcoll.count"); |
| 709 | count->addIncoming(initialBufferLimit, LoopInitBB); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 710 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 711 | // Check whether the mutations value has changed from where it was |
| 712 | // at start. StateMutationsPtr should actually be invariant between |
| 713 | // refreshes. |
Anders Carlsson | 2abd89c | 2008-08-31 04:05:03 +0000 | [diff] [blame] | 714 | StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr, "mutationsptr"); |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 715 | llvm::Value *currentMutations |
| 716 | = Builder.CreateLoad(StateMutationsPtr, "statemutations"); |
Anders Carlsson | 2abd89c | 2008-08-31 04:05:03 +0000 | [diff] [blame] | 717 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 718 | llvm::BasicBlock *WasMutatedBB = createBasicBlock("forcoll.mutated"); |
| 719 | llvm::BasicBlock *WasNotMutatedBB = createBasicBlock("forcool.notmutated"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 720 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 721 | Builder.CreateCondBr(Builder.CreateICmpEQ(currentMutations, initialMutations), |
| 722 | WasNotMutatedBB, WasMutatedBB); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 723 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 724 | // If so, call the enumeration-mutation function. |
| 725 | EmitBlock(WasMutatedBB); |
Anders Carlsson | 2abd89c | 2008-08-31 04:05:03 +0000 | [diff] [blame] | 726 | llvm::Value *V = |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 727 | Builder.CreateBitCast(Collection, |
Anders Carlsson | 2abd89c | 2008-08-31 04:05:03 +0000 | [diff] [blame] | 728 | ConvertType(getContext().getObjCIdType()), |
| 729 | "tmp"); |
Daniel Dunbar | 2b2105e | 2009-02-03 23:55:40 +0000 | [diff] [blame] | 730 | CallArgList Args2; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 731 | Args2.push_back(std::make_pair(RValue::get(V), |
Daniel Dunbar | 2b2105e | 2009-02-03 23:55:40 +0000 | [diff] [blame] | 732 | getContext().getObjCIdType())); |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 733 | // FIXME: We shouldn't need to get the function info here, the runtime already |
| 734 | // should have computed it to build the function. |
John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 735 | EmitCall(CGM.getTypes().getFunctionInfo(getContext().VoidTy, Args2, |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 736 | FunctionType::ExtInfo()), |
Anders Carlsson | f3c47c9 | 2009-12-24 19:25:24 +0000 | [diff] [blame] | 737 | EnumerationMutationFn, ReturnValueSlot(), Args2); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 738 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 739 | // Otherwise, or if the mutation function returns, just continue. |
| 740 | EmitBlock(WasNotMutatedBB); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 741 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 742 | // Initialize the element variable. |
| 743 | RunCleanupsScope elementVariableScope(*this); |
| 744 | bool elementIsDecl; |
| 745 | LValue elementLValue; |
| 746 | QualType elementType; |
| 747 | if (const DeclStmt *SD = dyn_cast<DeclStmt>(S.getElement())) { |
| 748 | EmitStmt(SD); |
| 749 | const VarDecl* D = cast<VarDecl>(SD->getSingleDecl()); |
| 750 | |
| 751 | DeclRefExpr tempDRE(const_cast<VarDecl*>(D), D->getType(), |
| 752 | VK_LValue, SourceLocation()); |
| 753 | elementLValue = EmitLValue(&tempDRE); |
| 754 | elementType = D->getType(); |
| 755 | elementIsDecl = true; |
| 756 | } else { |
| 757 | elementLValue = LValue(); // suppress warning |
| 758 | elementType = cast<Expr>(S.getElement())->getType(); |
| 759 | elementIsDecl = false; |
| 760 | } |
| 761 | const llvm::Type *convertedElementType = ConvertType(elementType); |
| 762 | |
| 763 | // Fetch the buffer out of the enumeration state. |
| 764 | // TODO: this pointer should actually be invariant between |
| 765 | // refreshes, which would help us do certain loop optimizations. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 766 | llvm::Value *StateItemsPtr = |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 767 | Builder.CreateStructGEP(StatePtr, 1, "stateitems.ptr"); |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 768 | llvm::Value *EnumStateItems = |
| 769 | Builder.CreateLoad(StateItemsPtr, "stateitems"); |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 770 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 771 | // Fetch the value at the current index from the buffer. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 772 | llvm::Value *CurrentItemPtr = |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 773 | Builder.CreateGEP(EnumStateItems, index, "currentitem.ptr"); |
| 774 | llvm::Value *CurrentItem = Builder.CreateLoad(CurrentItemPtr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 775 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 776 | // Cast that value to the right type. |
| 777 | CurrentItem = Builder.CreateBitCast(CurrentItem, convertedElementType, |
| 778 | "currentitem"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 779 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 780 | // Make sure we have an l-value. Yes, this gets evaluated every |
| 781 | // time through the loop. |
| 782 | if (!elementIsDecl) |
| 783 | elementLValue = EmitLValue(cast<Expr>(S.getElement())); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 784 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 785 | EmitStoreThroughLValue(RValue::get(CurrentItem), elementLValue, elementType); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 786 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 787 | // Perform the loop body, setting up break and continue labels. |
Anders Carlsson | e4b6d34 | 2009-02-10 05:52:02 +0000 | [diff] [blame] | 788 | BreakContinueStack.push_back(BreakContinue(LoopEnd, AfterBody)); |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 789 | { |
| 790 | RunCleanupsScope Scope(*this); |
| 791 | EmitStmt(S.getBody()); |
| 792 | } |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 793 | BreakContinueStack.pop_back(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 794 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 795 | // Destroy the element variable now. |
| 796 | elementVariableScope.ForceCleanup(); |
| 797 | |
| 798 | // Check whether there are more elements. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 799 | EmitBlock(AfterBody.getBlock()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 800 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 801 | llvm::BasicBlock *FetchMoreBB = createBasicBlock("forcoll.refetch"); |
Fariborz Jahanian | f0906c4 | 2009-01-06 18:56:31 +0000 | [diff] [blame] | 802 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 803 | // First we check in the local buffer. |
| 804 | llvm::Value *indexPlusOne |
| 805 | = Builder.CreateAdd(index, llvm::ConstantInt::get(UnsignedLongLTy, 1)); |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 806 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 807 | // If we haven't overrun the buffer yet, we can continue. |
| 808 | Builder.CreateCondBr(Builder.CreateICmpULT(indexPlusOne, count), |
| 809 | LoopBodyBB, FetchMoreBB); |
| 810 | |
| 811 | index->addIncoming(indexPlusOne, AfterBody.getBlock()); |
| 812 | count->addIncoming(count, AfterBody.getBlock()); |
| 813 | |
| 814 | // Otherwise, we have to fetch more elements. |
| 815 | EmitBlock(FetchMoreBB); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 816 | |
| 817 | CountRV = |
John McCall | ef072fd | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 818 | CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(), |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 819 | getContext().UnsignedLongTy, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 820 | FastEnumSel, |
David Chisnall | c6cd5fd | 2010-04-28 19:33:36 +0000 | [diff] [blame] | 821 | Collection, Args); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 822 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 823 | // If we got a zero count, we're done. |
| 824 | llvm::Value *refetchCount = CountRV.getScalarVal(); |
| 825 | |
| 826 | // (note that the message send might split FetchMoreBB) |
| 827 | index->addIncoming(zero, Builder.GetInsertBlock()); |
| 828 | count->addIncoming(refetchCount, Builder.GetInsertBlock()); |
| 829 | |
| 830 | Builder.CreateCondBr(Builder.CreateICmpEQ(refetchCount, zero), |
| 831 | EmptyBB, LoopBodyBB); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 832 | |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 833 | // No more elements. |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 834 | EmitBlock(EmptyBB); |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 835 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 836 | if (!elementIsDecl) { |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 837 | // If the element was not a declaration, set it to be null. |
| 838 | |
John McCall | d88687f | 2011-01-07 01:49:06 +0000 | [diff] [blame] | 839 | llvm::Value *null = llvm::Constant::getNullValue(convertedElementType); |
| 840 | elementLValue = EmitLValue(cast<Expr>(S.getElement())); |
| 841 | EmitStoreThroughLValue(RValue::get(null), elementLValue, elementType); |
Anders Carlsson | f484c31 | 2008-08-31 02:33:12 +0000 | [diff] [blame] | 842 | } |
| 843 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 844 | EmitBlock(LoopEnd.getBlock()); |
Anders Carlsson | 3d8400d | 2008-08-30 19:51:14 +0000 | [diff] [blame] | 845 | } |
| 846 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 847 | void CodeGenFunction::EmitObjCAtTryStmt(const ObjCAtTryStmt &S) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 848 | CGM.getObjCRuntime().EmitTryStmt(*this, S); |
Anders Carlsson | 64d5d6c | 2008-09-09 10:04:29 +0000 | [diff] [blame] | 849 | } |
| 850 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 851 | void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { |
Anders Carlsson | 64d5d6c | 2008-09-09 10:04:29 +0000 | [diff] [blame] | 852 | CGM.getObjCRuntime().EmitThrowStmt(*this, S); |
| 853 | } |
| 854 | |
Chris Lattner | 10cac6f | 2008-11-15 21:26:17 +0000 | [diff] [blame] | 855 | void CodeGenFunction::EmitObjCAtSynchronizedStmt( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 856 | const ObjCAtSynchronizedStmt &S) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 857 | CGM.getObjCRuntime().EmitSynchronizedStmt(*this, S); |
Chris Lattner | 10cac6f | 2008-11-15 21:26:17 +0000 | [diff] [blame] | 858 | } |
| 859 | |
Ted Kremenek | 2979ec7 | 2008-04-09 15:51:31 +0000 | [diff] [blame] | 860 | CGObjCRuntime::~CGObjCRuntime() {} |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 861 | |
| 862 | |