blob: 0837c578a79122f3458d21da412bbefa192dac19 [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
Devang Patelbcbd03a2011-01-19 01:36:36 +000014#include "CGDebugInfo.h"
Ted Kremenek2979ec72008-04-09 15:51:31 +000015#include "CGObjCRuntime.h"
Anders Carlsson55085182007-08-21 17:43:55 +000016#include "CodeGenFunction.h"
17#include "CodeGenModule.h"
Daniel Dunbar85c59ed2008-08-29 08:11:39 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Chris Lattner16f00492009-04-26 01:32:48 +000020#include "clang/AST/StmtObjC.h"
Daniel Dunbare66f4e32008-09-03 00:27:26 +000021#include "clang/Basic/Diagnostic.h"
Anders Carlsson3d8400d2008-08-30 19:51:14 +000022#include "llvm/ADT/STLExtras.h"
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +000023#include "llvm/Target/TargetData.h"
Anders Carlsson55085182007-08-21 17:43:55 +000024using namespace clang;
25using namespace CodeGen;
26
Chris Lattner8fdf3282008-06-24 17:04:18 +000027/// Emits an instance of NSConstantString representing the object.
Mike Stump1eb44332009-09-09 15:08:12 +000028llvm::Value *CodeGenFunction::EmitObjCStringLiteral(const ObjCStringLiteral *E)
Daniel Dunbar71fcec92008-11-25 21:53:21 +000029{
David Chisnall0d13f6f2010-01-23 02:40:42 +000030 llvm::Constant *C =
31 CGM.getObjCRuntime().GenerateConstantString(E->getString());
Daniel Dunbared7c6182008-08-20 00:28:19 +000032 // FIXME: This bitcast should just be made an invariant on the Runtime.
Owen Anderson3c4972d2009-07-29 18:54:39 +000033 return llvm::ConstantExpr::getBitCast(C, ConvertType(E->getType()));
Chris Lattner8fdf3282008-06-24 17:04:18 +000034}
35
36/// Emit a selector.
37llvm::Value *CodeGenFunction::EmitObjCSelectorExpr(const ObjCSelectorExpr *E) {
38 // Untyped selector.
39 // Note that this implementation allows for non-constant strings to be passed
40 // as arguments to @selector(). Currently, the only thing preventing this
41 // behaviour is the type checking in the front end.
Daniel Dunbar6d5a1c22010-02-03 20:11:42 +000042 return CGM.getObjCRuntime().GetSelector(Builder, E->getSelector());
Chris Lattner8fdf3282008-06-24 17:04:18 +000043}
44
Daniel Dunbared7c6182008-08-20 00:28:19 +000045llvm::Value *CodeGenFunction::EmitObjCProtocolExpr(const ObjCProtocolExpr *E) {
46 // FIXME: This should pass the Decl not the name.
47 return CGM.getObjCRuntime().GenerateProtocolRef(Builder, E->getProtocol());
48}
Chris Lattner8fdf3282008-06-24 17:04:18 +000049
50
John McCallef072fd2010-05-22 01:48:05 +000051RValue CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E,
52 ReturnValueSlot Return) {
Chris Lattner8fdf3282008-06-24 17:04:18 +000053 // Only the lookup mechanism and first two arguments of the method
54 // implementation vary between runtimes. We can get the receiver and
55 // arguments in generic code.
Mike Stump1eb44332009-09-09 15:08:12 +000056
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000057 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
Chris Lattner8fdf3282008-06-24 17:04:18 +000058 bool isSuperMessage = false;
Daniel Dunbarf56f1912008-08-25 08:19:24 +000059 bool isClassMessage = false;
David Chisnallc6cd5fd2010-04-28 19:33:36 +000060 ObjCInterfaceDecl *OID = 0;
Chris Lattner8fdf3282008-06-24 17:04:18 +000061 // Find the receiver
Daniel Dunbar0b647a62010-04-22 03:17:06 +000062 llvm::Value *Receiver = 0;
Douglas Gregor04badcf2010-04-21 00:45:42 +000063 switch (E->getReceiverKind()) {
64 case ObjCMessageExpr::Instance:
65 Receiver = EmitScalarExpr(E->getInstanceReceiver());
66 break;
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +000067
Douglas Gregor04badcf2010-04-21 00:45:42 +000068 case ObjCMessageExpr::Class: {
John McCall3031c632010-05-17 20:12:43 +000069 const ObjCObjectType *ObjTy
70 = E->getClassReceiver()->getAs<ObjCObjectType>();
71 assert(ObjTy && "Invalid Objective-C class message send");
72 OID = ObjTy->getInterface();
73 assert(OID && "Invalid Objective-C class message send");
David Chisnallc6cd5fd2010-04-28 19:33:36 +000074 Receiver = Runtime.GetClass(Builder, OID);
Daniel Dunbarf56f1912008-08-25 08:19:24 +000075 isClassMessage = true;
Douglas Gregor04badcf2010-04-21 00:45:42 +000076 break;
77 }
78
79 case ObjCMessageExpr::SuperInstance:
Chris Lattner8fdf3282008-06-24 17:04:18 +000080 Receiver = LoadObjCSelf();
Douglas Gregor04badcf2010-04-21 00:45:42 +000081 isSuperMessage = true;
82 break;
83
84 case ObjCMessageExpr::SuperClass:
85 Receiver = LoadObjCSelf();
86 isSuperMessage = true;
87 isClassMessage = true;
88 break;
Chris Lattner8fdf3282008-06-24 17:04:18 +000089 }
90
Daniel Dunbar19cd87e2008-08-30 03:02:31 +000091 CallArgList Args;
Anders Carlsson131038e2009-04-18 20:29:27 +000092 EmitCallArgs(Args, E->getMethodDecl(), E->arg_begin(), E->arg_end());
Mike Stump1eb44332009-09-09 15:08:12 +000093
Anders Carlsson7e70fb22010-06-21 20:59:55 +000094 QualType ResultType =
95 E->getMethodDecl() ? E->getMethodDecl()->getResultType() : E->getType();
96
Chris Lattner8fdf3282008-06-24 17:04:18 +000097 if (isSuperMessage) {
Chris Lattner9384c762008-06-26 04:42:20 +000098 // super is only valid in an Objective-C method
99 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
Fariborz Jahanian7ce77922009-02-28 20:07:56 +0000100 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
Anders Carlsson7e70fb22010-06-21 20:59:55 +0000101 return Runtime.GenerateMessageSendSuper(*this, Return, ResultType,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000102 E->getSelector(),
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000103 OMD->getClassInterface(),
Fariborz Jahanian7ce77922009-02-28 20:07:56 +0000104 isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000105 Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000106 isClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +0000107 Args,
108 E->getMethodDecl());
Chris Lattner8fdf3282008-06-24 17:04:18 +0000109 }
Daniel Dunbard6c93d72009-09-17 04:01:22 +0000110
Anders Carlsson7e70fb22010-06-21 20:59:55 +0000111 return Runtime.GenerateMessageSend(*this, Return, ResultType,
John McCallef072fd2010-05-22 01:48:05 +0000112 E->getSelector(),
David Chisnallc6cd5fd2010-04-28 19:33:36 +0000113 Receiver, Args, OID,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +0000114 E->getMethodDecl());
Anders Carlsson55085182007-08-21 17:43:55 +0000115}
116
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000117/// StartObjCMethod - Begin emission of an ObjCMethod. This generates
118/// the LLVM function and sets the other context used by
119/// CodeGenFunction.
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000120void CodeGenFunction::StartObjCMethod(const ObjCMethodDecl *OMD,
121 const ObjCContainerDecl *CD) {
Daniel Dunbar7c086512008-09-09 23:14:03 +0000122 FunctionArgList Args;
Devang Patel4800ea62010-04-05 21:09:15 +0000123 // Check if we should generate debug info for this method.
124 if (CGM.getDebugInfo() && !OMD->hasAttr<NoDebugAttr>())
125 DebugInfo = CGM.getDebugInfo();
126
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000127 llvm::Function *Fn = CGM.getObjCRuntime().GenerateMethod(OMD, CD);
Daniel Dunbarf80519b2008-09-04 23:41:35 +0000128
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000129 const CGFunctionInfo &FI = CGM.getTypes().getFunctionInfo(OMD);
130 CGM.SetInternalFunctionAttributes(OMD, Fn, FI);
Chris Lattner41110242008-06-17 18:05:57 +0000131
Mike Stump1eb44332009-09-09 15:08:12 +0000132 Args.push_back(std::make_pair(OMD->getSelfDecl(),
Daniel Dunbar7c086512008-09-09 23:14:03 +0000133 OMD->getSelfDecl()->getType()));
134 Args.push_back(std::make_pair(OMD->getCmdDecl(),
135 OMD->getCmdDecl()->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000136
Chris Lattner89951a82009-02-20 18:43:26 +0000137 for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(),
138 E = OMD->param_end(); PI != E; ++PI)
139 Args.push_back(std::make_pair(*PI, (*PI)->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000140
Peter Collingbourne14110472011-01-13 18:57:25 +0000141 CurGD = OMD;
142
Devang Patela92d6132010-02-15 18:08:38 +0000143 StartFunction(OMD, OMD->getResultType(), Fn, Args, OMD->getLocStart());
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000144}
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000145
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000146/// Generate an Objective-C method. An Objective-C method is a C function with
Mike Stump1eb44332009-09-09 15:08:12 +0000147/// its pointer, name, and types registered in the class struture.
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000148void CodeGenFunction::GenerateObjCMethod(const ObjCMethodDecl *OMD) {
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000149 StartObjCMethod(OMD, OMD->getClassInterface());
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000150 EmitStmt(OMD->getBody());
151 FinishFunction(OMD->getBodyRBrace());
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000152}
153
Mike Stumpf5408fe2009-05-16 07:57:57 +0000154// FIXME: I wasn't sure about the synthesis approach. If we end up generating an
155// AST for the whole body we can just fall back to having a GenerateFunction
156// which takes the body Stmt.
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000157
158/// GenerateObjCGetter - Generate an Objective-C property getter
Steve Naroff489034c2009-01-10 22:55:25 +0000159/// function. The given Decl must be an ObjCImplementationDecl. @synthesize
160/// is illegal within a category.
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000161void CodeGenFunction::GenerateObjCGetter(ObjCImplementationDecl *IMP,
162 const ObjCPropertyImplDecl *PID) {
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000163 ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000164 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000165 bool IsAtomic =
166 !(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic);
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000167 ObjCMethodDecl *OMD = PD->getGetterMethodDecl();
168 assert(OMD && "Invalid call to generate getter (empty method)");
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000169 StartObjCMethod(OMD, IMP->getClassInterface());
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000170
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000171 // Determine if we should use an objc_getProperty call for
Fariborz Jahanian447d7ae2008-12-08 23:56:17 +0000172 // this. Non-atomic properties are directly evaluated.
173 // atomic 'copy' and 'retain' properties are also directly
174 // evaluated in gc-only mode.
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000175 if (CGM.getLangOptions().getGCMode() != LangOptions::GCOnly &&
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000176 IsAtomic &&
Fariborz Jahanian447d7ae2008-12-08 23:56:17 +0000177 (PD->getSetterKind() == ObjCPropertyDecl::Copy ||
178 PD->getSetterKind() == ObjCPropertyDecl::Retain)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000179 llvm::Value *GetPropertyFn =
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000180 CGM.getObjCRuntime().GetPropertyGetFunction();
Mike Stump1eb44332009-09-09 15:08:12 +0000181
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000182 if (!GetPropertyFn) {
183 CGM.ErrorUnsupported(PID, "Obj-C getter requiring atomic copy");
184 FinishFunction();
185 return;
186 }
187
188 // Return (ivar-type) objc_getProperty((id) self, _cmd, offset, true).
189 // FIXME: Can't this be simpler? This might even be worse than the
190 // corresponding gcc code.
191 CodeGenTypes &Types = CGM.getTypes();
192 ValueDecl *Cmd = OMD->getCmdDecl();
193 llvm::Value *CmdVal = Builder.CreateLoad(LocalDeclMap[Cmd], "cmd");
194 QualType IdTy = getContext().getObjCIdType();
Mike Stump1eb44332009-09-09 15:08:12 +0000195 llvm::Value *SelfAsId =
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000196 Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000197 llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar);
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000198 llvm::Value *True =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000199 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000200 CallArgList Args;
201 Args.push_back(std::make_pair(RValue::get(SelfAsId), IdTy));
202 Args.push_back(std::make_pair(RValue::get(CmdVal), Cmd->getType()));
203 Args.push_back(std::make_pair(RValue::get(Offset), getContext().LongTy));
204 Args.push_back(std::make_pair(RValue::get(True), getContext().BoolTy));
Daniel Dunbare4be5a62009-02-03 23:43:59 +0000205 // FIXME: We shouldn't need to get the function info here, the
206 // runtime already should have computed it to build the function.
John McCall04a67a62010-02-05 21:31:56 +0000207 RValue RV = EmitCall(Types.getFunctionInfo(PD->getType(), Args,
Rafael Espindola264ba482010-03-30 20:24:48 +0000208 FunctionType::ExtInfo()),
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000209 GetPropertyFn, ReturnValueSlot(), Args);
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000210 // We need to fix the type here. Ivars with copy & retain are
211 // always objects so we don't need to worry about complex or
212 // aggregates.
Mike Stump1eb44332009-09-09 15:08:12 +0000213 RV = RValue::get(Builder.CreateBitCast(RV.getScalarVal(),
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000214 Types.ConvertType(PD->getType())));
215 EmitReturnOfRValue(RV, PD->getType());
216 } else {
Fariborz Jahanian1b23fe62010-03-25 21:56:43 +0000217 if (Ivar->getType()->isAnyComplexType()) {
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000218 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
219 Ivar, 0);
Fariborz Jahanian1b23fe62010-03-25 21:56:43 +0000220 ComplexPairTy Pair = LoadComplexFromAddr(LV.getAddress(),
221 LV.isVolatileQualified());
222 StoreComplexToAddr(Pair, ReturnValue, LV.isVolatileQualified());
223 }
224 else if (hasAggregateLLVMType(Ivar->getType())) {
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000225 bool IsStrong = false;
226 if ((IsAtomic || (IsStrong = IvarTypeWithAggrGCObjects(Ivar->getType())))
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000227 && CurFnInfo->getReturnInfo().getKind() == ABIArgInfo::Indirect
David Chisnall8fac25d2010-12-26 22:13:16 +0000228 && CGM.getObjCRuntime().GetGetStructFunction()) {
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000229 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
230 Ivar, 0);
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000231 llvm::Value *GetCopyStructFn =
David Chisnall8fac25d2010-12-26 22:13:16 +0000232 CGM.getObjCRuntime().GetGetStructFunction();
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000233 CodeGenTypes &Types = CGM.getTypes();
234 // objc_copyStruct (ReturnValue, &structIvar,
235 // sizeof (Type of Ivar), isAtomic, false);
236 CallArgList Args;
237 RValue RV = RValue::get(Builder.CreateBitCast(ReturnValue,
238 Types.ConvertType(getContext().VoidPtrTy)));
239 Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
240 RV = RValue::get(Builder.CreateBitCast(LV.getAddress(),
241 Types.ConvertType(getContext().VoidPtrTy)));
242 Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
243 // sizeof (Type of Ivar)
244 uint64_t Size = getContext().getTypeSize(Ivar->getType()) / 8;
245 llvm::Value *SizeVal =
246 llvm::ConstantInt::get(Types.ConvertType(getContext().LongTy), Size);
247 Args.push_back(std::make_pair(RValue::get(SizeVal),
248 getContext().LongTy));
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000249 llvm::Value *isAtomic =
Fariborz Jahanian08adf322010-04-13 18:43:37 +0000250 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy),
251 IsAtomic ? 1 : 0);
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000252 Args.push_back(std::make_pair(RValue::get(isAtomic),
253 getContext().BoolTy));
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000254 llvm::Value *hasStrong =
255 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy),
256 IsStrong ? 1 : 0);
257 Args.push_back(std::make_pair(RValue::get(hasStrong),
258 getContext().BoolTy));
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000259 EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
260 FunctionType::ExtInfo()),
261 GetCopyStructFn, ReturnValueSlot(), Args);
262 }
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000263 else {
264 if (PID->getGetterCXXConstructor()) {
265 ReturnStmt *Stmt =
266 new (getContext()) ReturnStmt(SourceLocation(),
Douglas Gregor5077c382010-05-15 06:01:05 +0000267 PID->getGetterCXXConstructor(),
268 0);
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000269 EmitReturnStmt(*Stmt);
270 }
271 else {
272 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
273 Ivar, 0);
274 EmitAggregateCopy(ReturnValue, LV.getAddress(), Ivar->getType());
275 }
276 }
Mike Stumpb3589f42009-07-30 22:28:39 +0000277 } else {
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000278 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
279 Ivar, 0);
Fariborz Jahanianed1d29d2009-03-03 18:49:40 +0000280 CodeGenTypes &Types = CGM.getTypes();
281 RValue RV = EmitLoadOfLValue(LV, Ivar->getType());
282 RV = RValue::get(Builder.CreateBitCast(RV.getScalarVal(),
Mike Stump1eb44332009-09-09 15:08:12 +0000283 Types.ConvertType(PD->getType())));
Fariborz Jahanianed1d29d2009-03-03 18:49:40 +0000284 EmitReturnOfRValue(RV, PD->getType());
285 }
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000286 }
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000287
288 FinishFunction();
289}
290
291/// GenerateObjCSetter - Generate an Objective-C property setter
Steve Naroff489034c2009-01-10 22:55:25 +0000292/// function. The given Decl must be an ObjCImplementationDecl. @synthesize
293/// is illegal within a category.
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000294void CodeGenFunction::GenerateObjCSetter(ObjCImplementationDecl *IMP,
295 const ObjCPropertyImplDecl *PID) {
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000296 ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000297 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
298 ObjCMethodDecl *OMD = PD->getSetterMethodDecl();
299 assert(OMD && "Invalid call to generate setter (empty method)");
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000300 StartObjCMethod(OMD, IMP->getClassInterface());
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000301
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000302 bool IsCopy = PD->getSetterKind() == ObjCPropertyDecl::Copy;
Mike Stump1eb44332009-09-09 15:08:12 +0000303 bool IsAtomic =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000304 !(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic);
305
306 // Determine if we should use an objc_setProperty call for
307 // this. Properties with 'copy' semantics always use it, as do
308 // non-atomic properties with 'release' semantics as long as we are
309 // not in gc-only mode.
310 if (IsCopy ||
311 (CGM.getLangOptions().getGCMode() != LangOptions::GCOnly &&
312 PD->getSetterKind() == ObjCPropertyDecl::Retain)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000313 llvm::Value *SetPropertyFn =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000314 CGM.getObjCRuntime().GetPropertySetFunction();
Mike Stump1eb44332009-09-09 15:08:12 +0000315
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000316 if (!SetPropertyFn) {
317 CGM.ErrorUnsupported(PID, "Obj-C getter requiring atomic copy");
318 FinishFunction();
319 return;
320 }
Mike Stump1eb44332009-09-09 15:08:12 +0000321
322 // Emit objc_setProperty((id) self, _cmd, offset, arg,
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000323 // <is-atomic>, <is-copy>).
324 // FIXME: Can't this be simpler? This might even be worse than the
325 // corresponding gcc code.
326 CodeGenTypes &Types = CGM.getTypes();
327 ValueDecl *Cmd = OMD->getCmdDecl();
328 llvm::Value *CmdVal = Builder.CreateLoad(LocalDeclMap[Cmd], "cmd");
329 QualType IdTy = getContext().getObjCIdType();
Mike Stump1eb44332009-09-09 15:08:12 +0000330 llvm::Value *SelfAsId =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000331 Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000332 llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar);
Chris Lattner89951a82009-02-20 18:43:26 +0000333 llvm::Value *Arg = LocalDeclMap[*OMD->param_begin()];
Mike Stump1eb44332009-09-09 15:08:12 +0000334 llvm::Value *ArgAsId =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000335 Builder.CreateBitCast(Builder.CreateLoad(Arg, "arg"),
336 Types.ConvertType(IdTy));
337 llvm::Value *True =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000338 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000339 llvm::Value *False =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000340 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 0);
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000341 CallArgList Args;
342 Args.push_back(std::make_pair(RValue::get(SelfAsId), IdTy));
343 Args.push_back(std::make_pair(RValue::get(CmdVal), Cmd->getType()));
344 Args.push_back(std::make_pair(RValue::get(Offset), getContext().LongTy));
345 Args.push_back(std::make_pair(RValue::get(ArgAsId), IdTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000346 Args.push_back(std::make_pair(RValue::get(IsAtomic ? True : False),
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000347 getContext().BoolTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000348 Args.push_back(std::make_pair(RValue::get(IsCopy ? True : False),
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000349 getContext().BoolTy));
Mike Stumpf5408fe2009-05-16 07:57:57 +0000350 // FIXME: We shouldn't need to get the function info here, the runtime
351 // already should have computed it to build the function.
John McCall04a67a62010-02-05 21:31:56 +0000352 EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
Rafael Espindola264ba482010-03-30 20:24:48 +0000353 FunctionType::ExtInfo()),
354 SetPropertyFn,
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000355 ReturnValueSlot(), Args);
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000356 } else if (IsAtomic && hasAggregateLLVMType(Ivar->getType()) &&
357 !Ivar->getType()->isAnyComplexType() &&
358 IndirectObjCSetterArg(*CurFnInfo)
David Chisnall8fac25d2010-12-26 22:13:16 +0000359 && CGM.getObjCRuntime().GetSetStructFunction()) {
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000360 // objc_copyStruct (&structIvar, &Arg,
361 // sizeof (struct something), true, false);
362 llvm::Value *GetCopyStructFn =
David Chisnall8fac25d2010-12-26 22:13:16 +0000363 CGM.getObjCRuntime().GetSetStructFunction();
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000364 CodeGenTypes &Types = CGM.getTypes();
365 CallArgList Args;
366 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), Ivar, 0);
367 RValue RV = RValue::get(Builder.CreateBitCast(LV.getAddress(),
368 Types.ConvertType(getContext().VoidPtrTy)));
369 Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
370 llvm::Value *Arg = LocalDeclMap[*OMD->param_begin()];
371 llvm::Value *ArgAsPtrTy =
372 Builder.CreateBitCast(Arg,
373 Types.ConvertType(getContext().VoidPtrTy));
374 RV = RValue::get(ArgAsPtrTy);
375 Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
376 // sizeof (Type of Ivar)
377 uint64_t Size = getContext().getTypeSize(Ivar->getType()) / 8;
378 llvm::Value *SizeVal =
379 llvm::ConstantInt::get(Types.ConvertType(getContext().LongTy), Size);
380 Args.push_back(std::make_pair(RValue::get(SizeVal),
381 getContext().LongTy));
382 llvm::Value *True =
383 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
384 Args.push_back(std::make_pair(RValue::get(True), getContext().BoolTy));
385 llvm::Value *False =
386 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 0);
387 Args.push_back(std::make_pair(RValue::get(False), getContext().BoolTy));
388 EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
389 FunctionType::ExtInfo()),
390 GetCopyStructFn, ReturnValueSlot(), Args);
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000391 } else if (PID->getSetterCXXAssignment()) {
John McCall2a416372010-12-05 02:00:02 +0000392 EmitIgnoredExpr(PID->getSetterCXXAssignment());
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000393 } else {
Daniel Dunbar45e84232009-10-27 19:21:30 +0000394 // FIXME: Find a clean way to avoid AST node creation.
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000395 SourceLocation Loc = PD->getLocation();
396 ValueDecl *Self = OMD->getSelfDecl();
397 ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
John McCallf89e55a2010-11-18 06:31:45 +0000398 DeclRefExpr Base(Self, Self->getType(), VK_RValue, Loc);
Chris Lattner89951a82009-02-20 18:43:26 +0000399 ParmVarDecl *ArgDecl = *OMD->param_begin();
John McCallf89e55a2010-11-18 06:31:45 +0000400 DeclRefExpr Arg(ArgDecl, ArgDecl->getType(), VK_LValue, Loc);
Daniel Dunbar45e84232009-10-27 19:21:30 +0000401 ObjCIvarRefExpr IvarRef(Ivar, Ivar->getType(), Loc, &Base, true, true);
402
403 // The property type can differ from the ivar type in some situations with
404 // Objective-C pointer types, we can always bit cast the RHS in these cases.
405 if (getContext().getCanonicalType(Ivar->getType()) !=
406 getContext().getCanonicalType(ArgDecl->getType())) {
John McCallf871d0c2010-08-07 06:22:56 +0000407 ImplicitCastExpr ArgCasted(ImplicitCastExpr::OnStack,
John McCall2de56d12010-08-25 11:45:40 +0000408 Ivar->getType(), CK_BitCast, &Arg,
John McCall5baba9d2010-08-25 10:28:54 +0000409 VK_RValue);
John McCall2de56d12010-08-25 11:45:40 +0000410 BinaryOperator Assign(&IvarRef, &ArgCasted, BO_Assign,
John McCallf89e55a2010-11-18 06:31:45 +0000411 Ivar->getType(), VK_RValue, OK_Ordinary, Loc);
Daniel Dunbar45e84232009-10-27 19:21:30 +0000412 EmitStmt(&Assign);
413 } else {
John McCall2de56d12010-08-25 11:45:40 +0000414 BinaryOperator Assign(&IvarRef, &Arg, BO_Assign,
John McCallf89e55a2010-11-18 06:31:45 +0000415 Ivar->getType(), VK_RValue, OK_Ordinary, Loc);
Daniel Dunbar45e84232009-10-27 19:21:30 +0000416 EmitStmt(&Assign);
417 }
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000418 }
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000419
420 FinishFunction();
Chris Lattner41110242008-06-17 18:05:57 +0000421}
422
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000423void CodeGenFunction::GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP,
424 ObjCMethodDecl *MD,
425 bool ctor) {
Sean Huntcbb67482011-01-08 20:30:50 +0000426 llvm::SmallVector<CXXCtorInitializer *, 8> IvarInitializers;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000427 MD->createImplicitParams(CGM.getContext(), IMP->getClassInterface());
428 StartObjCMethod(MD, IMP->getClassInterface());
429 for (ObjCImplementationDecl::init_const_iterator B = IMP->init_begin(),
430 E = IMP->init_end(); B != E; ++B) {
Sean Huntcbb67482011-01-08 20:30:50 +0000431 CXXCtorInitializer *Member = (*B);
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000432 IvarInitializers.push_back(Member);
433 }
434 if (ctor) {
435 for (unsigned I = 0, E = IvarInitializers.size(); I != E; ++I) {
Sean Huntcbb67482011-01-08 20:30:50 +0000436 CXXCtorInitializer *IvarInit = IvarInitializers[I];
Francois Pichet00eb3f92010-12-04 09:14:42 +0000437 FieldDecl *Field = IvarInit->getAnyMember();
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000438 ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(Field);
Fariborz Jahanian9b4d4fc2010-04-28 22:30:33 +0000439 LValue LV = EmitLValueForIvar(TypeOfSelfObject(),
440 LoadObjCSelf(), Ivar, 0);
John McCall558d2ab2010-09-15 10:14:12 +0000441 EmitAggExpr(IvarInit->getInit(), AggValueSlot::forLValue(LV, true));
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000442 }
443 // constructor returns 'self'.
444 CodeGenTypes &Types = CGM.getTypes();
445 QualType IdTy(CGM.getContext().getObjCIdType());
446 llvm::Value *SelfAsId =
447 Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
448 EmitReturnOfRValue(RValue::get(SelfAsId), IdTy);
Chandler Carruthbc397cf2010-05-06 00:20:39 +0000449 } else {
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000450 // dtor
451 for (size_t i = IvarInitializers.size(); i > 0; --i) {
Francois Pichet00eb3f92010-12-04 09:14:42 +0000452 FieldDecl *Field = IvarInitializers[i - 1]->getAnyMember();
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000453 QualType FieldType = Field->getType();
Fariborz Jahanian9b4d4fc2010-04-28 22:30:33 +0000454 const ConstantArrayType *Array =
455 getContext().getAsConstantArrayType(FieldType);
456 if (Array)
457 FieldType = getContext().getBaseElementType(FieldType);
458
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000459 ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(Field);
460 LValue LV = EmitLValueForIvar(TypeOfSelfObject(),
461 LoadObjCSelf(), Ivar, 0);
462 const RecordType *RT = FieldType->getAs<RecordType>();
463 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Douglas Gregor1d110e02010-07-01 14:13:13 +0000464 CXXDestructorDecl *Dtor = FieldClassDecl->getDestructor();
Chandler Carruthbc397cf2010-05-06 00:20:39 +0000465 if (!Dtor->isTrivial()) {
Fariborz Jahanian8b688ed2010-05-04 19:29:32 +0000466 if (Array) {
467 const llvm::Type *BasePtr = ConvertType(FieldType);
468 BasePtr = llvm::PointerType::getUnqual(BasePtr);
469 llvm::Value *BaseAddrPtr =
470 Builder.CreateBitCast(LV.getAddress(), BasePtr);
471 EmitCXXAggrDestructorCall(Dtor,
472 Array, BaseAddrPtr);
Chandler Carruthbc397cf2010-05-06 00:20:39 +0000473 } else {
Fariborz Jahanian8b688ed2010-05-04 19:29:32 +0000474 EmitCXXDestructorCall(Dtor,
475 Dtor_Complete, /*ForVirtualBase=*/false,
476 LV.getAddress());
Chandler Carruthbc397cf2010-05-06 00:20:39 +0000477 }
478 }
479 }
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000480 }
481 FinishFunction();
482}
483
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000484bool CodeGenFunction::IndirectObjCSetterArg(const CGFunctionInfo &FI) {
485 CGFunctionInfo::const_arg_iterator it = FI.arg_begin();
486 it++; it++;
487 const ABIArgInfo &AI = it->info;
488 // FIXME. Is this sufficient check?
489 return (AI.getKind() == ABIArgInfo::Indirect);
490}
491
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000492bool CodeGenFunction::IvarTypeWithAggrGCObjects(QualType Ty) {
493 if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC)
494 return false;
495 if (const RecordType *FDTTy = Ty.getTypePtr()->getAs<RecordType>())
496 return FDTTy->getDecl()->hasObjectMember();
497 return false;
498}
499
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000500llvm::Value *CodeGenFunction::LoadObjCSelf() {
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000501 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
502 return Builder.CreateLoad(LocalDeclMap[OMD->getSelfDecl()], "self");
Chris Lattner41110242008-06-17 18:05:57 +0000503}
504
Fariborz Jahanian45012a72009-02-03 00:09:52 +0000505QualType CodeGenFunction::TypeOfSelfObject() {
506 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
507 ImplicitParamDecl *selfDecl = OMD->getSelfDecl();
Steve Naroff14108da2009-07-10 23:34:53 +0000508 const ObjCObjectPointerType *PTy = cast<ObjCObjectPointerType>(
509 getContext().getCanonicalType(selfDecl->getType()));
Fariborz Jahanian45012a72009-02-03 00:09:52 +0000510 return PTy->getPointeeType();
511}
512
John McCalle68b9842010-12-04 03:11:00 +0000513LValue
514CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
515 // This is a special l-value that just issues sends when we load or
516 // store through it.
517
518 // For certain base kinds, we need to emit the base immediately.
519 llvm::Value *Base;
520 if (E->isSuperReceiver())
521 Base = LoadObjCSelf();
522 else if (E->isClassReceiver())
523 Base = CGM.getObjCRuntime().GetClass(Builder, E->getClassReceiver());
524 else
525 Base = EmitScalarExpr(E->getBase());
526 return LValue::MakePropertyRef(E, Base);
527}
528
529static RValue GenerateMessageSendSuper(CodeGenFunction &CGF,
530 ReturnValueSlot Return,
531 QualType ResultType,
532 Selector S,
533 llvm::Value *Receiver,
534 const CallArgList &CallArgs) {
535 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CGF.CurFuncDecl);
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000536 bool isClassMessage = OMD->isClassMethod();
537 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
John McCalle68b9842010-12-04 03:11:00 +0000538 return CGF.CGM.getObjCRuntime()
539 .GenerateMessageSendSuper(CGF, Return, ResultType,
540 S, OMD->getClassInterface(),
541 isCategoryImpl, Receiver,
542 isClassMessage, CallArgs);
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000543}
544
John McCall119a1c62010-12-04 02:32:38 +0000545RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
546 ReturnValueSlot Return) {
547 const ObjCPropertyRefExpr *E = LV.getPropertyRefExpr();
John McCall12f78a62010-12-02 01:19:52 +0000548 QualType ResultType;
549 Selector S;
550 if (E->isExplicitProperty()) {
551 const ObjCPropertyDecl *Property = E->getExplicitProperty();
552 S = Property->getGetterName();
553 ResultType = E->getType();
Mike Stumpb3589f42009-07-30 22:28:39 +0000554 } else {
John McCall12f78a62010-12-02 01:19:52 +0000555 const ObjCMethodDecl *Getter = E->getImplicitPropertyGetter();
556 S = Getter->getSelector();
557 ResultType = Getter->getResultType(); // with reference!
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000558 }
John McCall12f78a62010-12-02 01:19:52 +0000559
John McCall119a1c62010-12-04 02:32:38 +0000560 llvm::Value *Receiver = LV.getPropertyRefBaseAddr();
John McCalle68b9842010-12-04 03:11:00 +0000561
562 // Accesses to 'super' follow a different code path.
563 if (E->isSuperReceiver())
564 return GenerateMessageSendSuper(*this, Return, ResultType,
565 S, Receiver, CallArgList());
566
John McCall119a1c62010-12-04 02:32:38 +0000567 const ObjCInterfaceDecl *ReceiverClass
568 = (E->isClassReceiver() ? E->getClassReceiver() : 0);
John McCall12f78a62010-12-02 01:19:52 +0000569 return CGM.getObjCRuntime().
570 GenerateMessageSend(*this, Return, ResultType, S,
571 Receiver, CallArgList(), ReceiverClass);
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000572}
573
John McCall119a1c62010-12-04 02:32:38 +0000574void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
575 LValue Dst) {
576 const ObjCPropertyRefExpr *E = Dst.getPropertyRefExpr();
John McCall12f78a62010-12-02 01:19:52 +0000577 Selector S = E->getSetterSelector();
578 QualType ArgType;
579 if (E->isImplicitProperty()) {
580 const ObjCMethodDecl *Setter = E->getImplicitPropertySetter();
581 ObjCMethodDecl::param_iterator P = Setter->param_begin();
582 ArgType = (*P)->getType();
583 } else {
584 ArgType = E->getType();
585 }
586
John McCalle68b9842010-12-04 03:11:00 +0000587 CallArgList Args;
588 Args.push_back(std::make_pair(Src, ArgType));
589
590 llvm::Value *Receiver = Dst.getPropertyRefBaseAddr();
591 QualType ResultType = getContext().VoidTy;
592
John McCall12f78a62010-12-02 01:19:52 +0000593 if (E->isSuperReceiver()) {
John McCalle68b9842010-12-04 03:11:00 +0000594 GenerateMessageSendSuper(*this, ReturnValueSlot(),
595 ResultType, S, Receiver, Args);
John McCall12f78a62010-12-02 01:19:52 +0000596 return;
597 }
598
John McCall119a1c62010-12-04 02:32:38 +0000599 const ObjCInterfaceDecl *ReceiverClass
600 = (E->isClassReceiver() ? E->getClassReceiver() : 0);
John McCall12f78a62010-12-02 01:19:52 +0000601
John McCall12f78a62010-12-02 01:19:52 +0000602 CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(),
John McCalle68b9842010-12-04 03:11:00 +0000603 ResultType, S, Receiver, Args,
604 ReceiverClass);
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000605}
606
Chris Lattner74391b42009-03-22 21:03:39 +0000607void CodeGenFunction::EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S){
Mike Stump1eb44332009-09-09 15:08:12 +0000608 llvm::Constant *EnumerationMutationFn =
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000609 CGM.getObjCRuntime().EnumerationMutationFunction();
Mike Stump1eb44332009-09-09 15:08:12 +0000610
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000611 if (!EnumerationMutationFn) {
612 CGM.ErrorUnsupported(&S, "Obj-C fast enumeration for this runtime");
613 return;
614 }
615
Devang Patelbcbd03a2011-01-19 01:36:36 +0000616 CGDebugInfo *DI = getDebugInfo();
617 if (DI) {
618 DI->setLocation(S.getSourceRange().getBegin());
619 DI->EmitRegionStart(Builder);
620 }
621
John McCalld88687f2011-01-07 01:49:06 +0000622 JumpDest LoopEnd = getJumpDestInCurrentScope("forcoll.end");
623 JumpDest AfterBody = getJumpDestInCurrentScope("forcoll.next");
Mike Stump1eb44332009-09-09 15:08:12 +0000624
Anders Carlssonf484c312008-08-31 02:33:12 +0000625 // Fast enumeration state.
626 QualType StateTy = getContext().getObjCFastEnumerationStateType();
Daniel Dunbar195337d2010-02-09 02:48:28 +0000627 llvm::Value *StatePtr = CreateMemTemp(StateTy, "state.ptr");
Anders Carlsson1884eb02010-05-22 17:35:42 +0000628 EmitNullInitialization(StatePtr, StateTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000629
Anders Carlssonf484c312008-08-31 02:33:12 +0000630 // Number of elements in the items array.
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000631 static const unsigned NumItems = 16;
Mike Stump1eb44332009-09-09 15:08:12 +0000632
John McCalld88687f2011-01-07 01:49:06 +0000633 // Fetch the countByEnumeratingWithState:objects:count: selector.
Benjamin Kramerad468862010-03-30 11:36:44 +0000634 IdentifierInfo *II[] = {
635 &CGM.getContext().Idents.get("countByEnumeratingWithState"),
636 &CGM.getContext().Idents.get("objects"),
637 &CGM.getContext().Idents.get("count")
638 };
639 Selector FastEnumSel =
640 CGM.getContext().Selectors.getSelector(llvm::array_lengthof(II), &II[0]);
Anders Carlssonf484c312008-08-31 02:33:12 +0000641
642 QualType ItemsTy =
643 getContext().getConstantArrayType(getContext().getObjCIdType(),
Mike Stump1eb44332009-09-09 15:08:12 +0000644 llvm::APInt(32, NumItems),
Anders Carlssonf484c312008-08-31 02:33:12 +0000645 ArrayType::Normal, 0);
Daniel Dunbar195337d2010-02-09 02:48:28 +0000646 llvm::Value *ItemsPtr = CreateMemTemp(ItemsTy, "items.ptr");
Mike Stump1eb44332009-09-09 15:08:12 +0000647
John McCalld88687f2011-01-07 01:49:06 +0000648 // Emit the collection pointer.
Anders Carlssonf484c312008-08-31 02:33:12 +0000649 llvm::Value *Collection = EmitScalarExpr(S.getCollection());
Mike Stump1eb44332009-09-09 15:08:12 +0000650
John McCalld88687f2011-01-07 01:49:06 +0000651 // Send it our message:
Anders Carlssonf484c312008-08-31 02:33:12 +0000652 CallArgList Args;
John McCalld88687f2011-01-07 01:49:06 +0000653
654 // The first argument is a temporary of the enumeration-state type.
Mike Stump1eb44332009-09-09 15:08:12 +0000655 Args.push_back(std::make_pair(RValue::get(StatePtr),
Anders Carlssonf484c312008-08-31 02:33:12 +0000656 getContext().getPointerType(StateTy)));
Mike Stump1eb44332009-09-09 15:08:12 +0000657
John McCalld88687f2011-01-07 01:49:06 +0000658 // The second argument is a temporary array with space for NumItems
659 // pointers. We'll actually be loading elements from the array
660 // pointer written into the control state; this buffer is so that
661 // collections that *aren't* backed by arrays can still queue up
662 // batches of elements.
Mike Stump1eb44332009-09-09 15:08:12 +0000663 Args.push_back(std::make_pair(RValue::get(ItemsPtr),
Anders Carlssonf484c312008-08-31 02:33:12 +0000664 getContext().getPointerType(ItemsTy)));
Mike Stump1eb44332009-09-09 15:08:12 +0000665
John McCalld88687f2011-01-07 01:49:06 +0000666 // The third argument is the capacity of that temporary array.
Anders Carlssonf484c312008-08-31 02:33:12 +0000667 const llvm::Type *UnsignedLongLTy = ConvertType(getContext().UnsignedLongTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000668 llvm::Constant *Count = llvm::ConstantInt::get(UnsignedLongLTy, NumItems);
Mike Stump1eb44332009-09-09 15:08:12 +0000669 Args.push_back(std::make_pair(RValue::get(Count),
Daniel Dunbar46f45b92008-09-09 01:06:48 +0000670 getContext().UnsignedLongTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000671
John McCalld88687f2011-01-07 01:49:06 +0000672 // Start the enumeration.
Mike Stump1eb44332009-09-09 15:08:12 +0000673 RValue CountRV =
John McCallef072fd2010-05-22 01:48:05 +0000674 CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(),
Anders Carlssonf484c312008-08-31 02:33:12 +0000675 getContext().UnsignedLongTy,
676 FastEnumSel,
David Chisnallc6cd5fd2010-04-28 19:33:36 +0000677 Collection, Args);
Anders Carlssonf484c312008-08-31 02:33:12 +0000678
John McCalld88687f2011-01-07 01:49:06 +0000679 // The initial number of objects that were returned in the buffer.
680 llvm::Value *initialBufferLimit = CountRV.getScalarVal();
Mike Stump1eb44332009-09-09 15:08:12 +0000681
John McCalld88687f2011-01-07 01:49:06 +0000682 llvm::BasicBlock *EmptyBB = createBasicBlock("forcoll.empty");
683 llvm::BasicBlock *LoopInitBB = createBasicBlock("forcoll.loopinit");
Mike Stump1eb44332009-09-09 15:08:12 +0000684
John McCalld88687f2011-01-07 01:49:06 +0000685 llvm::Value *zero = llvm::Constant::getNullValue(UnsignedLongLTy);
Anders Carlssonf484c312008-08-31 02:33:12 +0000686
John McCalld88687f2011-01-07 01:49:06 +0000687 // If the limit pointer was zero to begin with, the collection is
688 // empty; skip all this.
689 Builder.CreateCondBr(Builder.CreateICmpEQ(initialBufferLimit, zero, "iszero"),
690 EmptyBB, LoopInitBB);
Anders Carlssonf484c312008-08-31 02:33:12 +0000691
John McCalld88687f2011-01-07 01:49:06 +0000692 // Otherwise, initialize the loop.
693 EmitBlock(LoopInitBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000694
John McCalld88687f2011-01-07 01:49:06 +0000695 // Save the initial mutations value. This is the value at an
696 // address that was written into the state object by
697 // countByEnumeratingWithState:objects:count:.
Mike Stump1eb44332009-09-09 15:08:12 +0000698 llvm::Value *StateMutationsPtrPtr =
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000699 Builder.CreateStructGEP(StatePtr, 2, "mutationsptr.ptr");
Mike Stump1eb44332009-09-09 15:08:12 +0000700 llvm::Value *StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr,
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000701 "mutationsptr");
Mike Stump1eb44332009-09-09 15:08:12 +0000702
John McCalld88687f2011-01-07 01:49:06 +0000703 llvm::Value *initialMutations =
704 Builder.CreateLoad(StateMutationsPtr, "forcoll.initial-mutations");
Mike Stump1eb44332009-09-09 15:08:12 +0000705
John McCalld88687f2011-01-07 01:49:06 +0000706 // Start looping. This is the point we return to whenever we have a
707 // fresh, non-empty batch of objects.
708 llvm::BasicBlock *LoopBodyBB = createBasicBlock("forcoll.loopbody");
709 EmitBlock(LoopBodyBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000710
John McCalld88687f2011-01-07 01:49:06 +0000711 // The current index into the buffer.
712 llvm::PHINode *index = Builder.CreatePHI(UnsignedLongLTy, "forcoll.index");
713 index->addIncoming(zero, LoopInitBB);
Anders Carlssonf484c312008-08-31 02:33:12 +0000714
John McCalld88687f2011-01-07 01:49:06 +0000715 // The current buffer size.
716 llvm::PHINode *count = Builder.CreatePHI(UnsignedLongLTy, "forcoll.count");
717 count->addIncoming(initialBufferLimit, LoopInitBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000718
John McCalld88687f2011-01-07 01:49:06 +0000719 // Check whether the mutations value has changed from where it was
720 // at start. StateMutationsPtr should actually be invariant between
721 // refreshes.
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000722 StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr, "mutationsptr");
John McCalld88687f2011-01-07 01:49:06 +0000723 llvm::Value *currentMutations
724 = Builder.CreateLoad(StateMutationsPtr, "statemutations");
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000725
John McCalld88687f2011-01-07 01:49:06 +0000726 llvm::BasicBlock *WasMutatedBB = createBasicBlock("forcoll.mutated");
727 llvm::BasicBlock *WasNotMutatedBB = createBasicBlock("forcool.notmutated");
Mike Stump1eb44332009-09-09 15:08:12 +0000728
John McCalld88687f2011-01-07 01:49:06 +0000729 Builder.CreateCondBr(Builder.CreateICmpEQ(currentMutations, initialMutations),
730 WasNotMutatedBB, WasMutatedBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000731
John McCalld88687f2011-01-07 01:49:06 +0000732 // If so, call the enumeration-mutation function.
733 EmitBlock(WasMutatedBB);
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000734 llvm::Value *V =
Mike Stump1eb44332009-09-09 15:08:12 +0000735 Builder.CreateBitCast(Collection,
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000736 ConvertType(getContext().getObjCIdType()),
737 "tmp");
Daniel Dunbar2b2105e2009-02-03 23:55:40 +0000738 CallArgList Args2;
Mike Stump1eb44332009-09-09 15:08:12 +0000739 Args2.push_back(std::make_pair(RValue::get(V),
Daniel Dunbar2b2105e2009-02-03 23:55:40 +0000740 getContext().getObjCIdType()));
Mike Stumpf5408fe2009-05-16 07:57:57 +0000741 // FIXME: We shouldn't need to get the function info here, the runtime already
742 // should have computed it to build the function.
John McCall04a67a62010-02-05 21:31:56 +0000743 EmitCall(CGM.getTypes().getFunctionInfo(getContext().VoidTy, Args2,
Rafael Espindola264ba482010-03-30 20:24:48 +0000744 FunctionType::ExtInfo()),
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000745 EnumerationMutationFn, ReturnValueSlot(), Args2);
Mike Stump1eb44332009-09-09 15:08:12 +0000746
John McCalld88687f2011-01-07 01:49:06 +0000747 // Otherwise, or if the mutation function returns, just continue.
748 EmitBlock(WasNotMutatedBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000749
John McCalld88687f2011-01-07 01:49:06 +0000750 // Initialize the element variable.
751 RunCleanupsScope elementVariableScope(*this);
752 bool elementIsDecl;
753 LValue elementLValue;
754 QualType elementType;
755 if (const DeclStmt *SD = dyn_cast<DeclStmt>(S.getElement())) {
756 EmitStmt(SD);
757 const VarDecl* D = cast<VarDecl>(SD->getSingleDecl());
758
759 DeclRefExpr tempDRE(const_cast<VarDecl*>(D), D->getType(),
760 VK_LValue, SourceLocation());
761 elementLValue = EmitLValue(&tempDRE);
762 elementType = D->getType();
763 elementIsDecl = true;
764 } else {
765 elementLValue = LValue(); // suppress warning
766 elementType = cast<Expr>(S.getElement())->getType();
767 elementIsDecl = false;
768 }
769 const llvm::Type *convertedElementType = ConvertType(elementType);
770
771 // Fetch the buffer out of the enumeration state.
772 // TODO: this pointer should actually be invariant between
773 // refreshes, which would help us do certain loop optimizations.
Mike Stump1eb44332009-09-09 15:08:12 +0000774 llvm::Value *StateItemsPtr =
Anders Carlssonf484c312008-08-31 02:33:12 +0000775 Builder.CreateStructGEP(StatePtr, 1, "stateitems.ptr");
John McCalld88687f2011-01-07 01:49:06 +0000776 llvm::Value *EnumStateItems =
777 Builder.CreateLoad(StateItemsPtr, "stateitems");
Anders Carlssonf484c312008-08-31 02:33:12 +0000778
John McCalld88687f2011-01-07 01:49:06 +0000779 // Fetch the value at the current index from the buffer.
Mike Stump1eb44332009-09-09 15:08:12 +0000780 llvm::Value *CurrentItemPtr =
John McCalld88687f2011-01-07 01:49:06 +0000781 Builder.CreateGEP(EnumStateItems, index, "currentitem.ptr");
782 llvm::Value *CurrentItem = Builder.CreateLoad(CurrentItemPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000783
John McCalld88687f2011-01-07 01:49:06 +0000784 // Cast that value to the right type.
785 CurrentItem = Builder.CreateBitCast(CurrentItem, convertedElementType,
786 "currentitem");
Mike Stump1eb44332009-09-09 15:08:12 +0000787
John McCalld88687f2011-01-07 01:49:06 +0000788 // Make sure we have an l-value. Yes, this gets evaluated every
789 // time through the loop.
790 if (!elementIsDecl)
791 elementLValue = EmitLValue(cast<Expr>(S.getElement()));
Mike Stump1eb44332009-09-09 15:08:12 +0000792
John McCalld88687f2011-01-07 01:49:06 +0000793 EmitStoreThroughLValue(RValue::get(CurrentItem), elementLValue, elementType);
Mike Stump1eb44332009-09-09 15:08:12 +0000794
John McCalld88687f2011-01-07 01:49:06 +0000795 // Perform the loop body, setting up break and continue labels.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000796 BreakContinueStack.push_back(BreakContinue(LoopEnd, AfterBody));
John McCalld88687f2011-01-07 01:49:06 +0000797 {
798 RunCleanupsScope Scope(*this);
799 EmitStmt(S.getBody());
800 }
Anders Carlssonf484c312008-08-31 02:33:12 +0000801 BreakContinueStack.pop_back();
Mike Stump1eb44332009-09-09 15:08:12 +0000802
John McCalld88687f2011-01-07 01:49:06 +0000803 // Destroy the element variable now.
804 elementVariableScope.ForceCleanup();
805
806 // Check whether there are more elements.
John McCallff8e1152010-07-23 21:56:41 +0000807 EmitBlock(AfterBody.getBlock());
Mike Stump1eb44332009-09-09 15:08:12 +0000808
John McCalld88687f2011-01-07 01:49:06 +0000809 llvm::BasicBlock *FetchMoreBB = createBasicBlock("forcoll.refetch");
Fariborz Jahanianf0906c42009-01-06 18:56:31 +0000810
John McCalld88687f2011-01-07 01:49:06 +0000811 // First we check in the local buffer.
812 llvm::Value *indexPlusOne
813 = Builder.CreateAdd(index, llvm::ConstantInt::get(UnsignedLongLTy, 1));
Anders Carlssonf484c312008-08-31 02:33:12 +0000814
John McCalld88687f2011-01-07 01:49:06 +0000815 // If we haven't overrun the buffer yet, we can continue.
816 Builder.CreateCondBr(Builder.CreateICmpULT(indexPlusOne, count),
817 LoopBodyBB, FetchMoreBB);
818
819 index->addIncoming(indexPlusOne, AfterBody.getBlock());
820 count->addIncoming(count, AfterBody.getBlock());
821
822 // Otherwise, we have to fetch more elements.
823 EmitBlock(FetchMoreBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000824
825 CountRV =
John McCallef072fd2010-05-22 01:48:05 +0000826 CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(),
Anders Carlssonf484c312008-08-31 02:33:12 +0000827 getContext().UnsignedLongTy,
Mike Stump1eb44332009-09-09 15:08:12 +0000828 FastEnumSel,
David Chisnallc6cd5fd2010-04-28 19:33:36 +0000829 Collection, Args);
Mike Stump1eb44332009-09-09 15:08:12 +0000830
John McCalld88687f2011-01-07 01:49:06 +0000831 // If we got a zero count, we're done.
832 llvm::Value *refetchCount = CountRV.getScalarVal();
833
834 // (note that the message send might split FetchMoreBB)
835 index->addIncoming(zero, Builder.GetInsertBlock());
836 count->addIncoming(refetchCount, Builder.GetInsertBlock());
837
838 Builder.CreateCondBr(Builder.CreateICmpEQ(refetchCount, zero),
839 EmptyBB, LoopBodyBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000840
Anders Carlssonf484c312008-08-31 02:33:12 +0000841 // No more elements.
John McCalld88687f2011-01-07 01:49:06 +0000842 EmitBlock(EmptyBB);
Anders Carlssonf484c312008-08-31 02:33:12 +0000843
John McCalld88687f2011-01-07 01:49:06 +0000844 if (!elementIsDecl) {
Anders Carlssonf484c312008-08-31 02:33:12 +0000845 // If the element was not a declaration, set it to be null.
846
John McCalld88687f2011-01-07 01:49:06 +0000847 llvm::Value *null = llvm::Constant::getNullValue(convertedElementType);
848 elementLValue = EmitLValue(cast<Expr>(S.getElement()));
849 EmitStoreThroughLValue(RValue::get(null), elementLValue, elementType);
Anders Carlssonf484c312008-08-31 02:33:12 +0000850 }
851
Devang Patelbcbd03a2011-01-19 01:36:36 +0000852 if (DI) {
853 DI->setLocation(S.getSourceRange().getEnd());
854 DI->EmitRegionEnd(Builder);
855 }
856
John McCallff8e1152010-07-23 21:56:41 +0000857 EmitBlock(LoopEnd.getBlock());
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000858}
859
Mike Stump1eb44332009-09-09 15:08:12 +0000860void CodeGenFunction::EmitObjCAtTryStmt(const ObjCAtTryStmt &S) {
John McCallf1549f62010-07-06 01:34:17 +0000861 CGM.getObjCRuntime().EmitTryStmt(*this, S);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000862}
863
Mike Stump1eb44332009-09-09 15:08:12 +0000864void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) {
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000865 CGM.getObjCRuntime().EmitThrowStmt(*this, S);
866}
867
Chris Lattner10cac6f2008-11-15 21:26:17 +0000868void CodeGenFunction::EmitObjCAtSynchronizedStmt(
Mike Stump1eb44332009-09-09 15:08:12 +0000869 const ObjCAtSynchronizedStmt &S) {
John McCallf1549f62010-07-06 01:34:17 +0000870 CGM.getObjCRuntime().EmitSynchronizedStmt(*this, S);
Chris Lattner10cac6f2008-11-15 21:26:17 +0000871}
872
Ted Kremenek2979ec72008-04-09 15:51:31 +0000873CGObjCRuntime::~CGObjCRuntime() {}