blob: 3574ba2c185337349c67177fbe059b80c733d4da [file] [log] [blame]
Anders Carlsson55085182007-08-21 17:43:55 +00001//===---- CGBuiltin.cpp - Emit LLVM Code for builtins ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Anders Carlsson55085182007-08-21 17:43:55 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Objective-C code as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
Ted Kremenek2979ec72008-04-09 15:51:31 +000014#include "CGObjCRuntime.h"
Anders Carlsson55085182007-08-21 17:43:55 +000015#include "CodeGenFunction.h"
16#include "CodeGenModule.h"
Daniel Dunbar85c59ed2008-08-29 08:11:39 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Chris Lattner16f00492009-04-26 01:32:48 +000019#include "clang/AST/StmtObjC.h"
Daniel Dunbare66f4e32008-09-03 00:27:26 +000020#include "clang/Basic/Diagnostic.h"
Anders Carlsson3d8400d2008-08-30 19:51:14 +000021#include "llvm/ADT/STLExtras.h"
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +000022#include "llvm/Target/TargetData.h"
Anders Carlsson55085182007-08-21 17:43:55 +000023using namespace clang;
24using namespace CodeGen;
25
Chris Lattner8fdf3282008-06-24 17:04:18 +000026/// Emits an instance of NSConstantString representing the object.
Mike Stump1eb44332009-09-09 15:08:12 +000027llvm::Value *CodeGenFunction::EmitObjCStringLiteral(const ObjCStringLiteral *E)
Daniel Dunbar71fcec92008-11-25 21:53:21 +000028{
David Chisnall0d13f6f2010-01-23 02:40:42 +000029 llvm::Constant *C =
30 CGM.getObjCRuntime().GenerateConstantString(E->getString());
Daniel Dunbared7c6182008-08-20 00:28:19 +000031 // FIXME: This bitcast should just be made an invariant on the Runtime.
Owen Anderson3c4972d2009-07-29 18:54:39 +000032 return llvm::ConstantExpr::getBitCast(C, ConvertType(E->getType()));
Chris Lattner8fdf3282008-06-24 17:04:18 +000033}
34
35/// Emit a selector.
36llvm::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 Dunbar6d5a1c22010-02-03 20:11:42 +000041 return CGM.getObjCRuntime().GetSelector(Builder, E->getSelector());
Chris Lattner8fdf3282008-06-24 17:04:18 +000042}
43
Daniel Dunbared7c6182008-08-20 00:28:19 +000044llvm::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 Lattner8fdf3282008-06-24 17:04:18 +000048
49
John McCallef072fd2010-05-22 01:48:05 +000050RValue CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E,
51 ReturnValueSlot Return) {
Chris Lattner8fdf3282008-06-24 17:04:18 +000052 // 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 Stump1eb44332009-09-09 15:08:12 +000055
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000056 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
Chris Lattner8fdf3282008-06-24 17:04:18 +000057 bool isSuperMessage = false;
Daniel Dunbarf56f1912008-08-25 08:19:24 +000058 bool isClassMessage = false;
David Chisnallc6cd5fd2010-04-28 19:33:36 +000059 ObjCInterfaceDecl *OID = 0;
Chris Lattner8fdf3282008-06-24 17:04:18 +000060 // Find the receiver
Daniel Dunbar0b647a62010-04-22 03:17:06 +000061 llvm::Value *Receiver = 0;
Douglas Gregor04badcf2010-04-21 00:45:42 +000062 switch (E->getReceiverKind()) {
63 case ObjCMessageExpr::Instance:
64 Receiver = EmitScalarExpr(E->getInstanceReceiver());
65 break;
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +000066
Douglas Gregor04badcf2010-04-21 00:45:42 +000067 case ObjCMessageExpr::Class: {
John McCall3031c632010-05-17 20:12:43 +000068 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 Chisnallc6cd5fd2010-04-28 19:33:36 +000073 Receiver = Runtime.GetClass(Builder, OID);
Daniel Dunbarf56f1912008-08-25 08:19:24 +000074 isClassMessage = true;
Douglas Gregor04badcf2010-04-21 00:45:42 +000075 break;
76 }
77
78 case ObjCMessageExpr::SuperInstance:
Chris Lattner8fdf3282008-06-24 17:04:18 +000079 Receiver = LoadObjCSelf();
Douglas Gregor04badcf2010-04-21 00:45:42 +000080 isSuperMessage = true;
81 break;
82
83 case ObjCMessageExpr::SuperClass:
84 Receiver = LoadObjCSelf();
85 isSuperMessage = true;
86 isClassMessage = true;
87 break;
Chris Lattner8fdf3282008-06-24 17:04:18 +000088 }
89
Daniel Dunbar19cd87e2008-08-30 03:02:31 +000090 CallArgList Args;
Anders Carlsson131038e2009-04-18 20:29:27 +000091 EmitCallArgs(Args, E->getMethodDecl(), E->arg_begin(), E->arg_end());
Mike Stump1eb44332009-09-09 15:08:12 +000092
Anders Carlsson7e70fb22010-06-21 20:59:55 +000093 QualType ResultType =
94 E->getMethodDecl() ? E->getMethodDecl()->getResultType() : E->getType();
95
Chris Lattner8fdf3282008-06-24 17:04:18 +000096 if (isSuperMessage) {
Chris Lattner9384c762008-06-26 04:42:20 +000097 // super is only valid in an Objective-C method
98 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
Fariborz Jahanian7ce77922009-02-28 20:07:56 +000099 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
Anders Carlsson7e70fb22010-06-21 20:59:55 +0000100 return Runtime.GenerateMessageSendSuper(*this, Return, ResultType,
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000101 E->getSelector(),
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000102 OMD->getClassInterface(),
Fariborz Jahanian7ce77922009-02-28 20:07:56 +0000103 isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +0000104 Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000105 isClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +0000106 Args,
107 E->getMethodDecl());
Chris Lattner8fdf3282008-06-24 17:04:18 +0000108 }
Daniel Dunbard6c93d72009-09-17 04:01:22 +0000109
Anders Carlsson7e70fb22010-06-21 20:59:55 +0000110 return Runtime.GenerateMessageSend(*this, Return, ResultType,
John McCallef072fd2010-05-22 01:48:05 +0000111 E->getSelector(),
David Chisnallc6cd5fd2010-04-28 19:33:36 +0000112 Receiver, Args, OID,
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +0000113 E->getMethodDecl());
Anders Carlsson55085182007-08-21 17:43:55 +0000114}
115
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000116/// StartObjCMethod - Begin emission of an ObjCMethod. This generates
117/// the LLVM function and sets the other context used by
118/// CodeGenFunction.
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000119void CodeGenFunction::StartObjCMethod(const ObjCMethodDecl *OMD,
120 const ObjCContainerDecl *CD) {
Daniel Dunbar7c086512008-09-09 23:14:03 +0000121 FunctionArgList Args;
Devang Patel4800ea62010-04-05 21:09:15 +0000122 // Check if we should generate debug info for this method.
123 if (CGM.getDebugInfo() && !OMD->hasAttr<NoDebugAttr>())
124 DebugInfo = CGM.getDebugInfo();
125
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000126 llvm::Function *Fn = CGM.getObjCRuntime().GenerateMethod(OMD, CD);
Daniel Dunbarf80519b2008-09-04 23:41:35 +0000127
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000128 const CGFunctionInfo &FI = CGM.getTypes().getFunctionInfo(OMD);
129 CGM.SetInternalFunctionAttributes(OMD, Fn, FI);
Chris Lattner41110242008-06-17 18:05:57 +0000130
Mike Stump1eb44332009-09-09 15:08:12 +0000131 Args.push_back(std::make_pair(OMD->getSelfDecl(),
Daniel Dunbar7c086512008-09-09 23:14:03 +0000132 OMD->getSelfDecl()->getType()));
133 Args.push_back(std::make_pair(OMD->getCmdDecl(),
134 OMD->getCmdDecl()->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000135
Chris Lattner89951a82009-02-20 18:43:26 +0000136 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 Lattner41110242008-06-17 18:05:57 +0000139
Devang Patela92d6132010-02-15 18:08:38 +0000140 StartFunction(OMD, OMD->getResultType(), Fn, Args, OMD->getLocStart());
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000141}
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000142
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000143/// Generate an Objective-C method. An Objective-C method is a C function with
Mike Stump1eb44332009-09-09 15:08:12 +0000144/// its pointer, name, and types registered in the class struture.
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000145void CodeGenFunction::GenerateObjCMethod(const ObjCMethodDecl *OMD) {
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000146 StartObjCMethod(OMD, OMD->getClassInterface());
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000147 EmitStmt(OMD->getBody());
148 FinishFunction(OMD->getBodyRBrace());
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000149}
150
Mike Stumpf5408fe2009-05-16 07:57:57 +0000151// 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 Dunbaraf05bb92008-08-26 08:29:31 +0000154
155/// GenerateObjCGetter - Generate an Objective-C property getter
Steve Naroff489034c2009-01-10 22:55:25 +0000156/// function. The given Decl must be an ObjCImplementationDecl. @synthesize
157/// is illegal within a category.
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000158void CodeGenFunction::GenerateObjCGetter(ObjCImplementationDecl *IMP,
159 const ObjCPropertyImplDecl *PID) {
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000160 ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000161 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000162 bool IsAtomic =
163 !(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic);
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000164 ObjCMethodDecl *OMD = PD->getGetterMethodDecl();
165 assert(OMD && "Invalid call to generate getter (empty method)");
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000166 StartObjCMethod(OMD, IMP->getClassInterface());
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000167
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000168 // Determine if we should use an objc_getProperty call for
Fariborz Jahanian447d7ae2008-12-08 23:56:17 +0000169 // this. Non-atomic properties are directly evaluated.
170 // atomic 'copy' and 'retain' properties are also directly
171 // evaluated in gc-only mode.
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000172 if (CGM.getLangOptions().getGCMode() != LangOptions::GCOnly &&
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000173 IsAtomic &&
Fariborz Jahanian447d7ae2008-12-08 23:56:17 +0000174 (PD->getSetterKind() == ObjCPropertyDecl::Copy ||
175 PD->getSetterKind() == ObjCPropertyDecl::Retain)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000176 llvm::Value *GetPropertyFn =
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000177 CGM.getObjCRuntime().GetPropertyGetFunction();
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000179 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 Stump1eb44332009-09-09 15:08:12 +0000192 llvm::Value *SelfAsId =
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000193 Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000194 llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar);
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000195 llvm::Value *True =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000196 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000197 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 Dunbare4be5a62009-02-03 23:43:59 +0000202 // FIXME: We shouldn't need to get the function info here, the
203 // runtime already should have computed it to build the function.
John McCall04a67a62010-02-05 21:31:56 +0000204 RValue RV = EmitCall(Types.getFunctionInfo(PD->getType(), Args,
Rafael Espindola264ba482010-03-30 20:24:48 +0000205 FunctionType::ExtInfo()),
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000206 GetPropertyFn, ReturnValueSlot(), Args);
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000207 // 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 Stump1eb44332009-09-09 15:08:12 +0000210 RV = RValue::get(Builder.CreateBitCast(RV.getScalarVal(),
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000211 Types.ConvertType(PD->getType())));
212 EmitReturnOfRValue(RV, PD->getType());
213 } else {
Fariborz Jahanian1b23fe62010-03-25 21:56:43 +0000214 if (Ivar->getType()->isAnyComplexType()) {
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000215 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
216 Ivar, 0);
Fariborz Jahanian1b23fe62010-03-25 21:56:43 +0000217 ComplexPairTy Pair = LoadComplexFromAddr(LV.getAddress(),
218 LV.isVolatileQualified());
219 StoreComplexToAddr(Pair, ReturnValue, LV.isVolatileQualified());
220 }
221 else if (hasAggregateLLVMType(Ivar->getType())) {
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000222 bool IsStrong = false;
223 if ((IsAtomic || (IsStrong = IvarTypeWithAggrGCObjects(Ivar->getType())))
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000224 && CurFnInfo->getReturnInfo().getKind() == ABIArgInfo::Indirect
David Chisnall8fac25d2010-12-26 22:13:16 +0000225 && CGM.getObjCRuntime().GetGetStructFunction()) {
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000226 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
227 Ivar, 0);
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000228 llvm::Value *GetCopyStructFn =
David Chisnall8fac25d2010-12-26 22:13:16 +0000229 CGM.getObjCRuntime().GetGetStructFunction();
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000230 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 Jahanian0b2bd472010-04-13 00:38:05 +0000246 llvm::Value *isAtomic =
Fariborz Jahanian08adf322010-04-13 18:43:37 +0000247 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy),
248 IsAtomic ? 1 : 0);
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000249 Args.push_back(std::make_pair(RValue::get(isAtomic),
250 getContext().BoolTy));
Fariborz Jahanian15bd5882010-04-13 18:32:24 +0000251 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 Jahanian0b2bd472010-04-13 00:38:05 +0000256 EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
257 FunctionType::ExtInfo()),
258 GetCopyStructFn, ReturnValueSlot(), Args);
259 }
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000260 else {
261 if (PID->getGetterCXXConstructor()) {
262 ReturnStmt *Stmt =
263 new (getContext()) ReturnStmt(SourceLocation(),
Douglas Gregor5077c382010-05-15 06:01:05 +0000264 PID->getGetterCXXConstructor(),
265 0);
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000266 EmitReturnStmt(*Stmt);
267 }
268 else {
269 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
270 Ivar, 0);
271 EmitAggregateCopy(ReturnValue, LV.getAddress(), Ivar->getType());
272 }
273 }
Mike Stumpb3589f42009-07-30 22:28:39 +0000274 } else {
Fariborz Jahanian97a73cd2010-05-06 15:45:36 +0000275 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
276 Ivar, 0);
Fariborz Jahanianed1d29d2009-03-03 18:49:40 +0000277 CodeGenTypes &Types = CGM.getTypes();
278 RValue RV = EmitLoadOfLValue(LV, Ivar->getType());
279 RV = RValue::get(Builder.CreateBitCast(RV.getScalarVal(),
Mike Stump1eb44332009-09-09 15:08:12 +0000280 Types.ConvertType(PD->getType())));
Fariborz Jahanianed1d29d2009-03-03 18:49:40 +0000281 EmitReturnOfRValue(RV, PD->getType());
282 }
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000283 }
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000284
285 FinishFunction();
286}
287
288/// GenerateObjCSetter - Generate an Objective-C property setter
Steve Naroff489034c2009-01-10 22:55:25 +0000289/// function. The given Decl must be an ObjCImplementationDecl. @synthesize
290/// is illegal within a category.
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000291void CodeGenFunction::GenerateObjCSetter(ObjCImplementationDecl *IMP,
292 const ObjCPropertyImplDecl *PID) {
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000293 ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000294 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
295 ObjCMethodDecl *OMD = PD->getSetterMethodDecl();
296 assert(OMD && "Invalid call to generate setter (empty method)");
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000297 StartObjCMethod(OMD, IMP->getClassInterface());
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000298
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000299 bool IsCopy = PD->getSetterKind() == ObjCPropertyDecl::Copy;
Mike Stump1eb44332009-09-09 15:08:12 +0000300 bool IsAtomic =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000301 !(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 Stump1eb44332009-09-09 15:08:12 +0000310 llvm::Value *SetPropertyFn =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000311 CGM.getObjCRuntime().GetPropertySetFunction();
Mike Stump1eb44332009-09-09 15:08:12 +0000312
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000313 if (!SetPropertyFn) {
314 CGM.ErrorUnsupported(PID, "Obj-C getter requiring atomic copy");
315 FinishFunction();
316 return;
317 }
Mike Stump1eb44332009-09-09 15:08:12 +0000318
319 // Emit objc_setProperty((id) self, _cmd, offset, arg,
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000320 // <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 Stump1eb44332009-09-09 15:08:12 +0000327 llvm::Value *SelfAsId =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000328 Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000329 llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar);
Chris Lattner89951a82009-02-20 18:43:26 +0000330 llvm::Value *Arg = LocalDeclMap[*OMD->param_begin()];
Mike Stump1eb44332009-09-09 15:08:12 +0000331 llvm::Value *ArgAsId =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000332 Builder.CreateBitCast(Builder.CreateLoad(Arg, "arg"),
333 Types.ConvertType(IdTy));
334 llvm::Value *True =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000335 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000336 llvm::Value *False =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000337 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 0);
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000338 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 Stump1eb44332009-09-09 15:08:12 +0000343 Args.push_back(std::make_pair(RValue::get(IsAtomic ? True : False),
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000344 getContext().BoolTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000345 Args.push_back(std::make_pair(RValue::get(IsCopy ? True : False),
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000346 getContext().BoolTy));
Mike Stumpf5408fe2009-05-16 07:57:57 +0000347 // FIXME: We shouldn't need to get the function info here, the runtime
348 // already should have computed it to build the function.
John McCall04a67a62010-02-05 21:31:56 +0000349 EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
Rafael Espindola264ba482010-03-30 20:24:48 +0000350 FunctionType::ExtInfo()),
351 SetPropertyFn,
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000352 ReturnValueSlot(), Args);
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000353 } else if (IsAtomic && hasAggregateLLVMType(Ivar->getType()) &&
354 !Ivar->getType()->isAnyComplexType() &&
355 IndirectObjCSetterArg(*CurFnInfo)
David Chisnall8fac25d2010-12-26 22:13:16 +0000356 && CGM.getObjCRuntime().GetSetStructFunction()) {
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000357 // objc_copyStruct (&structIvar, &Arg,
358 // sizeof (struct something), true, false);
359 llvm::Value *GetCopyStructFn =
David Chisnall8fac25d2010-12-26 22:13:16 +0000360 CGM.getObjCRuntime().GetSetStructFunction();
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000361 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 Jahanian97a73cd2010-05-06 15:45:36 +0000388 } else if (PID->getSetterCXXAssignment()) {
John McCall2a416372010-12-05 02:00:02 +0000389 EmitIgnoredExpr(PID->getSetterCXXAssignment());
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000390 } else {
Daniel Dunbar45e84232009-10-27 19:21:30 +0000391 // FIXME: Find a clean way to avoid AST node creation.
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000392 SourceLocation Loc = PD->getLocation();
393 ValueDecl *Self = OMD->getSelfDecl();
394 ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
John McCallf89e55a2010-11-18 06:31:45 +0000395 DeclRefExpr Base(Self, Self->getType(), VK_RValue, Loc);
Chris Lattner89951a82009-02-20 18:43:26 +0000396 ParmVarDecl *ArgDecl = *OMD->param_begin();
John McCallf89e55a2010-11-18 06:31:45 +0000397 DeclRefExpr Arg(ArgDecl, ArgDecl->getType(), VK_LValue, Loc);
Daniel Dunbar45e84232009-10-27 19:21:30 +0000398 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 McCallf871d0c2010-08-07 06:22:56 +0000404 ImplicitCastExpr ArgCasted(ImplicitCastExpr::OnStack,
John McCall2de56d12010-08-25 11:45:40 +0000405 Ivar->getType(), CK_BitCast, &Arg,
John McCall5baba9d2010-08-25 10:28:54 +0000406 VK_RValue);
John McCall2de56d12010-08-25 11:45:40 +0000407 BinaryOperator Assign(&IvarRef, &ArgCasted, BO_Assign,
John McCallf89e55a2010-11-18 06:31:45 +0000408 Ivar->getType(), VK_RValue, OK_Ordinary, Loc);
Daniel Dunbar45e84232009-10-27 19:21:30 +0000409 EmitStmt(&Assign);
410 } else {
John McCall2de56d12010-08-25 11:45:40 +0000411 BinaryOperator Assign(&IvarRef, &Arg, BO_Assign,
John McCallf89e55a2010-11-18 06:31:45 +0000412 Ivar->getType(), VK_RValue, OK_Ordinary, Loc);
Daniel Dunbar45e84232009-10-27 19:21:30 +0000413 EmitStmt(&Assign);
414 }
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000415 }
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000416
417 FinishFunction();
Chris Lattner41110242008-06-17 18:05:57 +0000418}
419
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000420void CodeGenFunction::GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP,
421 ObjCMethodDecl *MD,
422 bool ctor) {
Sean Huntcbb67482011-01-08 20:30:50 +0000423 llvm::SmallVector<CXXCtorInitializer *, 8> IvarInitializers;
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000424 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 Huntcbb67482011-01-08 20:30:50 +0000428 CXXCtorInitializer *Member = (*B);
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000429 IvarInitializers.push_back(Member);
430 }
431 if (ctor) {
432 for (unsigned I = 0, E = IvarInitializers.size(); I != E; ++I) {
Sean Huntcbb67482011-01-08 20:30:50 +0000433 CXXCtorInitializer *IvarInit = IvarInitializers[I];
Francois Pichet00eb3f92010-12-04 09:14:42 +0000434 FieldDecl *Field = IvarInit->getAnyMember();
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000435 QualType FieldType = Field->getType();
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000436 ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(Field);
Fariborz Jahanian9b4d4fc2010-04-28 22:30:33 +0000437 LValue LV = EmitLValueForIvar(TypeOfSelfObject(),
438 LoadObjCSelf(), Ivar, 0);
John McCall558d2ab2010-09-15 10:14:12 +0000439 EmitAggExpr(IvarInit->getInit(), AggValueSlot::forLValue(LV, true));
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000440 }
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 Carruthbc397cf2010-05-06 00:20:39 +0000447 } else {
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000448 // dtor
449 for (size_t i = IvarInitializers.size(); i > 0; --i) {
Francois Pichet00eb3f92010-12-04 09:14:42 +0000450 FieldDecl *Field = IvarInitializers[i - 1]->getAnyMember();
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000451 QualType FieldType = Field->getType();
Fariborz Jahanian9b4d4fc2010-04-28 22:30:33 +0000452 const ConstantArrayType *Array =
453 getContext().getAsConstantArrayType(FieldType);
454 if (Array)
455 FieldType = getContext().getBaseElementType(FieldType);
456
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000457 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 Gregor1d110e02010-07-01 14:13:13 +0000462 CXXDestructorDecl *Dtor = FieldClassDecl->getDestructor();
Chandler Carruthbc397cf2010-05-06 00:20:39 +0000463 if (!Dtor->isTrivial()) {
Fariborz Jahanian8b688ed2010-05-04 19:29:32 +0000464 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 Carruthbc397cf2010-05-06 00:20:39 +0000471 } else {
Fariborz Jahanian8b688ed2010-05-04 19:29:32 +0000472 EmitCXXDestructorCall(Dtor,
473 Dtor_Complete, /*ForVirtualBase=*/false,
474 LV.getAddress());
Chandler Carruthbc397cf2010-05-06 00:20:39 +0000475 }
476 }
477 }
Fariborz Jahanian109dfc62010-04-28 21:28:56 +0000478 }
479 FinishFunction();
480}
481
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000482bool 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 Jahanian15bd5882010-04-13 18:32:24 +0000490bool 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 Dunbarc1cf4a52008-09-24 04:04:31 +0000498llvm::Value *CodeGenFunction::LoadObjCSelf() {
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000499 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
500 return Builder.CreateLoad(LocalDeclMap[OMD->getSelfDecl()], "self");
Chris Lattner41110242008-06-17 18:05:57 +0000501}
502
Fariborz Jahanian45012a72009-02-03 00:09:52 +0000503QualType CodeGenFunction::TypeOfSelfObject() {
504 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
505 ImplicitParamDecl *selfDecl = OMD->getSelfDecl();
Steve Naroff14108da2009-07-10 23:34:53 +0000506 const ObjCObjectPointerType *PTy = cast<ObjCObjectPointerType>(
507 getContext().getCanonicalType(selfDecl->getType()));
Fariborz Jahanian45012a72009-02-03 00:09:52 +0000508 return PTy->getPointeeType();
509}
510
John McCalle68b9842010-12-04 03:11:00 +0000511LValue
512CodeGenFunction::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
527static 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 Jahanianf4695572009-03-20 19:18:21 +0000534 bool isClassMessage = OMD->isClassMethod();
535 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
John McCalle68b9842010-12-04 03:11:00 +0000536 return CGF.CGM.getObjCRuntime()
537 .GenerateMessageSendSuper(CGF, Return, ResultType,
538 S, OMD->getClassInterface(),
539 isCategoryImpl, Receiver,
540 isClassMessage, CallArgs);
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000541}
542
John McCall119a1c62010-12-04 02:32:38 +0000543RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
544 ReturnValueSlot Return) {
545 const ObjCPropertyRefExpr *E = LV.getPropertyRefExpr();
John McCall12f78a62010-12-02 01:19:52 +0000546 QualType ResultType;
547 Selector S;
548 if (E->isExplicitProperty()) {
549 const ObjCPropertyDecl *Property = E->getExplicitProperty();
550 S = Property->getGetterName();
551 ResultType = E->getType();
Mike Stumpb3589f42009-07-30 22:28:39 +0000552 } else {
John McCall12f78a62010-12-02 01:19:52 +0000553 const ObjCMethodDecl *Getter = E->getImplicitPropertyGetter();
554 S = Getter->getSelector();
555 ResultType = Getter->getResultType(); // with reference!
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000556 }
John McCall12f78a62010-12-02 01:19:52 +0000557
John McCall119a1c62010-12-04 02:32:38 +0000558 llvm::Value *Receiver = LV.getPropertyRefBaseAddr();
John McCalle68b9842010-12-04 03:11:00 +0000559
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 McCall119a1c62010-12-04 02:32:38 +0000565 const ObjCInterfaceDecl *ReceiverClass
566 = (E->isClassReceiver() ? E->getClassReceiver() : 0);
John McCall12f78a62010-12-02 01:19:52 +0000567 return CGM.getObjCRuntime().
568 GenerateMessageSend(*this, Return, ResultType, S,
569 Receiver, CallArgList(), ReceiverClass);
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000570}
571
John McCall119a1c62010-12-04 02:32:38 +0000572void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
573 LValue Dst) {
574 const ObjCPropertyRefExpr *E = Dst.getPropertyRefExpr();
John McCall12f78a62010-12-02 01:19:52 +0000575 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 McCalle68b9842010-12-04 03:11:00 +0000585 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 McCall12f78a62010-12-02 01:19:52 +0000591 if (E->isSuperReceiver()) {
John McCalle68b9842010-12-04 03:11:00 +0000592 GenerateMessageSendSuper(*this, ReturnValueSlot(),
593 ResultType, S, Receiver, Args);
John McCall12f78a62010-12-02 01:19:52 +0000594 return;
595 }
596
John McCall119a1c62010-12-04 02:32:38 +0000597 const ObjCInterfaceDecl *ReceiverClass
598 = (E->isClassReceiver() ? E->getClassReceiver() : 0);
John McCall12f78a62010-12-02 01:19:52 +0000599
John McCall12f78a62010-12-02 01:19:52 +0000600 CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(),
John McCalle68b9842010-12-04 03:11:00 +0000601 ResultType, S, Receiver, Args,
602 ReceiverClass);
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000603}
604
Chris Lattner74391b42009-03-22 21:03:39 +0000605void CodeGenFunction::EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S){
Mike Stump1eb44332009-09-09 15:08:12 +0000606 llvm::Constant *EnumerationMutationFn =
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000607 CGM.getObjCRuntime().EnumerationMutationFunction();
Mike Stump1eb44332009-09-09 15:08:12 +0000608
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000609 if (!EnumerationMutationFn) {
610 CGM.ErrorUnsupported(&S, "Obj-C fast enumeration for this runtime");
611 return;
612 }
613
John McCalld88687f2011-01-07 01:49:06 +0000614 JumpDest LoopEnd = getJumpDestInCurrentScope("forcoll.end");
615 JumpDest AfterBody = getJumpDestInCurrentScope("forcoll.next");
Mike Stump1eb44332009-09-09 15:08:12 +0000616
Anders Carlssonf484c312008-08-31 02:33:12 +0000617 // Fast enumeration state.
618 QualType StateTy = getContext().getObjCFastEnumerationStateType();
Daniel Dunbar195337d2010-02-09 02:48:28 +0000619 llvm::Value *StatePtr = CreateMemTemp(StateTy, "state.ptr");
Anders Carlsson1884eb02010-05-22 17:35:42 +0000620 EmitNullInitialization(StatePtr, StateTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Anders Carlssonf484c312008-08-31 02:33:12 +0000622 // Number of elements in the items array.
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000623 static const unsigned NumItems = 16;
Mike Stump1eb44332009-09-09 15:08:12 +0000624
John McCalld88687f2011-01-07 01:49:06 +0000625 // Fetch the countByEnumeratingWithState:objects:count: selector.
Benjamin Kramerad468862010-03-30 11:36:44 +0000626 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 Carlssonf484c312008-08-31 02:33:12 +0000633
634 QualType ItemsTy =
635 getContext().getConstantArrayType(getContext().getObjCIdType(),
Mike Stump1eb44332009-09-09 15:08:12 +0000636 llvm::APInt(32, NumItems),
Anders Carlssonf484c312008-08-31 02:33:12 +0000637 ArrayType::Normal, 0);
Daniel Dunbar195337d2010-02-09 02:48:28 +0000638 llvm::Value *ItemsPtr = CreateMemTemp(ItemsTy, "items.ptr");
Mike Stump1eb44332009-09-09 15:08:12 +0000639
John McCalld88687f2011-01-07 01:49:06 +0000640 // Emit the collection pointer.
Anders Carlssonf484c312008-08-31 02:33:12 +0000641 llvm::Value *Collection = EmitScalarExpr(S.getCollection());
Mike Stump1eb44332009-09-09 15:08:12 +0000642
John McCalld88687f2011-01-07 01:49:06 +0000643 // Send it our message:
Anders Carlssonf484c312008-08-31 02:33:12 +0000644 CallArgList Args;
John McCalld88687f2011-01-07 01:49:06 +0000645
646 // The first argument is a temporary of the enumeration-state type.
Mike Stump1eb44332009-09-09 15:08:12 +0000647 Args.push_back(std::make_pair(RValue::get(StatePtr),
Anders Carlssonf484c312008-08-31 02:33:12 +0000648 getContext().getPointerType(StateTy)));
Mike Stump1eb44332009-09-09 15:08:12 +0000649
John McCalld88687f2011-01-07 01:49:06 +0000650 // 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 Stump1eb44332009-09-09 15:08:12 +0000655 Args.push_back(std::make_pair(RValue::get(ItemsPtr),
Anders Carlssonf484c312008-08-31 02:33:12 +0000656 getContext().getPointerType(ItemsTy)));
Mike Stump1eb44332009-09-09 15:08:12 +0000657
John McCalld88687f2011-01-07 01:49:06 +0000658 // The third argument is the capacity of that temporary array.
Anders Carlssonf484c312008-08-31 02:33:12 +0000659 const llvm::Type *UnsignedLongLTy = ConvertType(getContext().UnsignedLongTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000660 llvm::Constant *Count = llvm::ConstantInt::get(UnsignedLongLTy, NumItems);
Mike Stump1eb44332009-09-09 15:08:12 +0000661 Args.push_back(std::make_pair(RValue::get(Count),
Daniel Dunbar46f45b92008-09-09 01:06:48 +0000662 getContext().UnsignedLongTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000663
John McCalld88687f2011-01-07 01:49:06 +0000664 // Start the enumeration.
Mike Stump1eb44332009-09-09 15:08:12 +0000665 RValue CountRV =
John McCallef072fd2010-05-22 01:48:05 +0000666 CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(),
Anders Carlssonf484c312008-08-31 02:33:12 +0000667 getContext().UnsignedLongTy,
668 FastEnumSel,
David Chisnallc6cd5fd2010-04-28 19:33:36 +0000669 Collection, Args);
Anders Carlssonf484c312008-08-31 02:33:12 +0000670
John McCalld88687f2011-01-07 01:49:06 +0000671 // The initial number of objects that were returned in the buffer.
672 llvm::Value *initialBufferLimit = CountRV.getScalarVal();
Mike Stump1eb44332009-09-09 15:08:12 +0000673
John McCalld88687f2011-01-07 01:49:06 +0000674 llvm::BasicBlock *EmptyBB = createBasicBlock("forcoll.empty");
675 llvm::BasicBlock *LoopInitBB = createBasicBlock("forcoll.loopinit");
Mike Stump1eb44332009-09-09 15:08:12 +0000676
John McCalld88687f2011-01-07 01:49:06 +0000677 llvm::Value *zero = llvm::Constant::getNullValue(UnsignedLongLTy);
Anders Carlssonf484c312008-08-31 02:33:12 +0000678
John McCalld88687f2011-01-07 01:49:06 +0000679 // 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 Carlssonf484c312008-08-31 02:33:12 +0000683
John McCalld88687f2011-01-07 01:49:06 +0000684 // Otherwise, initialize the loop.
685 EmitBlock(LoopInitBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000686
John McCalld88687f2011-01-07 01:49:06 +0000687 // 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 Stump1eb44332009-09-09 15:08:12 +0000690 llvm::Value *StateMutationsPtrPtr =
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000691 Builder.CreateStructGEP(StatePtr, 2, "mutationsptr.ptr");
Mike Stump1eb44332009-09-09 15:08:12 +0000692 llvm::Value *StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr,
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000693 "mutationsptr");
Mike Stump1eb44332009-09-09 15:08:12 +0000694
John McCalld88687f2011-01-07 01:49:06 +0000695 llvm::Value *initialMutations =
696 Builder.CreateLoad(StateMutationsPtr, "forcoll.initial-mutations");
Mike Stump1eb44332009-09-09 15:08:12 +0000697
John McCalld88687f2011-01-07 01:49:06 +0000698 // 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 Stump1eb44332009-09-09 15:08:12 +0000702
John McCalld88687f2011-01-07 01:49:06 +0000703 // The current index into the buffer.
704 llvm::PHINode *index = Builder.CreatePHI(UnsignedLongLTy, "forcoll.index");
705 index->addIncoming(zero, LoopInitBB);
Anders Carlssonf484c312008-08-31 02:33:12 +0000706
John McCalld88687f2011-01-07 01:49:06 +0000707 // The current buffer size.
708 llvm::PHINode *count = Builder.CreatePHI(UnsignedLongLTy, "forcoll.count");
709 count->addIncoming(initialBufferLimit, LoopInitBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000710
John McCalld88687f2011-01-07 01:49:06 +0000711 // Check whether the mutations value has changed from where it was
712 // at start. StateMutationsPtr should actually be invariant between
713 // refreshes.
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000714 StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr, "mutationsptr");
John McCalld88687f2011-01-07 01:49:06 +0000715 llvm::Value *currentMutations
716 = Builder.CreateLoad(StateMutationsPtr, "statemutations");
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000717
John McCalld88687f2011-01-07 01:49:06 +0000718 llvm::BasicBlock *WasMutatedBB = createBasicBlock("forcoll.mutated");
719 llvm::BasicBlock *WasNotMutatedBB = createBasicBlock("forcool.notmutated");
Mike Stump1eb44332009-09-09 15:08:12 +0000720
John McCalld88687f2011-01-07 01:49:06 +0000721 Builder.CreateCondBr(Builder.CreateICmpEQ(currentMutations, initialMutations),
722 WasNotMutatedBB, WasMutatedBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000723
John McCalld88687f2011-01-07 01:49:06 +0000724 // If so, call the enumeration-mutation function.
725 EmitBlock(WasMutatedBB);
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000726 llvm::Value *V =
Mike Stump1eb44332009-09-09 15:08:12 +0000727 Builder.CreateBitCast(Collection,
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000728 ConvertType(getContext().getObjCIdType()),
729 "tmp");
Daniel Dunbar2b2105e2009-02-03 23:55:40 +0000730 CallArgList Args2;
Mike Stump1eb44332009-09-09 15:08:12 +0000731 Args2.push_back(std::make_pair(RValue::get(V),
Daniel Dunbar2b2105e2009-02-03 23:55:40 +0000732 getContext().getObjCIdType()));
Mike Stumpf5408fe2009-05-16 07:57:57 +0000733 // FIXME: We shouldn't need to get the function info here, the runtime already
734 // should have computed it to build the function.
John McCall04a67a62010-02-05 21:31:56 +0000735 EmitCall(CGM.getTypes().getFunctionInfo(getContext().VoidTy, Args2,
Rafael Espindola264ba482010-03-30 20:24:48 +0000736 FunctionType::ExtInfo()),
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000737 EnumerationMutationFn, ReturnValueSlot(), Args2);
Mike Stump1eb44332009-09-09 15:08:12 +0000738
John McCalld88687f2011-01-07 01:49:06 +0000739 // Otherwise, or if the mutation function returns, just continue.
740 EmitBlock(WasNotMutatedBB);
Mike Stump1eb44332009-09-09 15:08:12 +0000741
John McCalld88687f2011-01-07 01:49:06 +0000742 // 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 Stump1eb44332009-09-09 15:08:12 +0000766 llvm::Value *StateItemsPtr =
Anders Carlssonf484c312008-08-31 02:33:12 +0000767 Builder.CreateStructGEP(StatePtr, 1, "stateitems.ptr");
John McCalld88687f2011-01-07 01:49:06 +0000768 llvm::Value *EnumStateItems =
769 Builder.CreateLoad(StateItemsPtr, "stateitems");
Anders Carlssonf484c312008-08-31 02:33:12 +0000770
John McCalld88687f2011-01-07 01:49:06 +0000771 // Fetch the value at the current index from the buffer.
Mike Stump1eb44332009-09-09 15:08:12 +0000772 llvm::Value *CurrentItemPtr =
John McCalld88687f2011-01-07 01:49:06 +0000773 Builder.CreateGEP(EnumStateItems, index, "currentitem.ptr");
774 llvm::Value *CurrentItem = Builder.CreateLoad(CurrentItemPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000775
John McCalld88687f2011-01-07 01:49:06 +0000776 // Cast that value to the right type.
777 CurrentItem = Builder.CreateBitCast(CurrentItem, convertedElementType,
778 "currentitem");
Mike Stump1eb44332009-09-09 15:08:12 +0000779
John McCalld88687f2011-01-07 01:49:06 +0000780 // 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 Stump1eb44332009-09-09 15:08:12 +0000784
John McCalld88687f2011-01-07 01:49:06 +0000785 EmitStoreThroughLValue(RValue::get(CurrentItem), elementLValue, elementType);
Mike Stump1eb44332009-09-09 15:08:12 +0000786
John McCalld88687f2011-01-07 01:49:06 +0000787 // Perform the loop body, setting up break and continue labels.
Anders Carlssone4b6d342009-02-10 05:52:02 +0000788 BreakContinueStack.push_back(BreakContinue(LoopEnd, AfterBody));
John McCalld88687f2011-01-07 01:49:06 +0000789 {
790 RunCleanupsScope Scope(*this);
791 EmitStmt(S.getBody());
792 }
Anders Carlssonf484c312008-08-31 02:33:12 +0000793 BreakContinueStack.pop_back();
Mike Stump1eb44332009-09-09 15:08:12 +0000794
John McCalld88687f2011-01-07 01:49:06 +0000795 // Destroy the element variable now.
796 elementVariableScope.ForceCleanup();
797
798 // Check whether there are more elements.
John McCallff8e1152010-07-23 21:56:41 +0000799 EmitBlock(AfterBody.getBlock());
Mike Stump1eb44332009-09-09 15:08:12 +0000800
John McCalld88687f2011-01-07 01:49:06 +0000801 llvm::BasicBlock *FetchMoreBB = createBasicBlock("forcoll.refetch");
Fariborz Jahanianf0906c42009-01-06 18:56:31 +0000802
John McCalld88687f2011-01-07 01:49:06 +0000803 // First we check in the local buffer.
804 llvm::Value *indexPlusOne
805 = Builder.CreateAdd(index, llvm::ConstantInt::get(UnsignedLongLTy, 1));
Anders Carlssonf484c312008-08-31 02:33:12 +0000806
John McCalld88687f2011-01-07 01:49:06 +0000807 // 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 Stump1eb44332009-09-09 15:08:12 +0000816
817 CountRV =
John McCallef072fd2010-05-22 01:48:05 +0000818 CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(),
Anders Carlssonf484c312008-08-31 02:33:12 +0000819 getContext().UnsignedLongTy,
Mike Stump1eb44332009-09-09 15:08:12 +0000820 FastEnumSel,
David Chisnallc6cd5fd2010-04-28 19:33:36 +0000821 Collection, Args);
Mike Stump1eb44332009-09-09 15:08:12 +0000822
John McCalld88687f2011-01-07 01:49:06 +0000823 // 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 Stump1eb44332009-09-09 15:08:12 +0000832
Anders Carlssonf484c312008-08-31 02:33:12 +0000833 // No more elements.
John McCalld88687f2011-01-07 01:49:06 +0000834 EmitBlock(EmptyBB);
Anders Carlssonf484c312008-08-31 02:33:12 +0000835
John McCalld88687f2011-01-07 01:49:06 +0000836 if (!elementIsDecl) {
Anders Carlssonf484c312008-08-31 02:33:12 +0000837 // If the element was not a declaration, set it to be null.
838
John McCalld88687f2011-01-07 01:49:06 +0000839 llvm::Value *null = llvm::Constant::getNullValue(convertedElementType);
840 elementLValue = EmitLValue(cast<Expr>(S.getElement()));
841 EmitStoreThroughLValue(RValue::get(null), elementLValue, elementType);
Anders Carlssonf484c312008-08-31 02:33:12 +0000842 }
843
John McCallff8e1152010-07-23 21:56:41 +0000844 EmitBlock(LoopEnd.getBlock());
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000845}
846
Mike Stump1eb44332009-09-09 15:08:12 +0000847void CodeGenFunction::EmitObjCAtTryStmt(const ObjCAtTryStmt &S) {
John McCallf1549f62010-07-06 01:34:17 +0000848 CGM.getObjCRuntime().EmitTryStmt(*this, S);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000849}
850
Mike Stump1eb44332009-09-09 15:08:12 +0000851void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) {
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000852 CGM.getObjCRuntime().EmitThrowStmt(*this, S);
853}
854
Chris Lattner10cac6f2008-11-15 21:26:17 +0000855void CodeGenFunction::EmitObjCAtSynchronizedStmt(
Mike Stump1eb44332009-09-09 15:08:12 +0000856 const ObjCAtSynchronizedStmt &S) {
John McCallf1549f62010-07-06 01:34:17 +0000857 CGM.getObjCRuntime().EmitSynchronizedStmt(*this, S);
Chris Lattner10cac6f2008-11-15 21:26:17 +0000858}
859
Ted Kremenek2979ec72008-04-09 15:51:31 +0000860CGObjCRuntime::~CGObjCRuntime() {}
John McCallf1549f62010-07-06 01:34:17 +0000861
862