blob: ffdcbdcdea629fb5631ac2f5fc7d538c78a7d9d3 [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
Daniel Dunbar8f2926b2008-08-23 03:46:30 +000050RValue CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E) {
Chris Lattner8fdf3282008-06-24 17:04:18 +000051 // Only the lookup mechanism and first two arguments of the method
52 // implementation vary between runtimes. We can get the receiver and
53 // arguments in generic code.
Mike Stump1eb44332009-09-09 15:08:12 +000054
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000055 CGObjCRuntime &Runtime = CGM.getObjCRuntime();
Chris Lattner8fdf3282008-06-24 17:04:18 +000056 const Expr *ReceiverExpr = E->getReceiver();
57 bool isSuperMessage = false;
Daniel Dunbarf56f1912008-08-25 08:19:24 +000058 bool isClassMessage = false;
Chris Lattner8fdf3282008-06-24 17:04:18 +000059 // Find the receiver
60 llvm::Value *Receiver;
61 if (!ReceiverExpr) {
Douglas Gregorc2350e52010-03-08 16:40:19 +000062 const ObjCInterfaceDecl *OID = E->getClassInfo().Decl;
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +000063
64 // Very special case, super send in class method. The receiver is
65 // self (the class object) and the send uses super semantics.
66 if (!OID) {
Chris Lattner92e62b02008-11-20 04:42:34 +000067 assert(E->getClassName()->isStr("super") &&
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +000068 "Unexpected missing class interface in message send.");
Daniel Dunbarddb2a3d2008-08-16 00:25:02 +000069 isSuperMessage = true;
Daniel Dunbarf56f1912008-08-25 08:19:24 +000070 Receiver = LoadObjCSelf();
71 } else {
72 Receiver = Runtime.GetClass(Builder, OID);
Chris Lattner8fdf3282008-06-24 17:04:18 +000073 }
Mike Stump1eb44332009-09-09 15:08:12 +000074
Daniel Dunbarf56f1912008-08-25 08:19:24 +000075 isClassMessage = true;
Chris Lattnerc603d092010-04-10 19:33:39 +000076 } else if (isa<ObjCSuperExpr>(E->getReceiver())) {
Chris Lattner8fdf3282008-06-24 17:04:18 +000077 isSuperMessage = true;
78 Receiver = LoadObjCSelf();
79 } else {
Daniel Dunbar2bedbf82008-08-12 05:28:47 +000080 Receiver = EmitScalarExpr(E->getReceiver());
Chris Lattner8fdf3282008-06-24 17:04:18 +000081 }
82
Daniel Dunbar19cd87e2008-08-30 03:02:31 +000083 CallArgList Args;
Anders Carlsson131038e2009-04-18 20:29:27 +000084 EmitCallArgs(Args, E->getMethodDecl(), E->arg_begin(), E->arg_end());
Mike Stump1eb44332009-09-09 15:08:12 +000085
Chris Lattner8fdf3282008-06-24 17:04:18 +000086 if (isSuperMessage) {
Chris Lattner9384c762008-06-26 04:42:20 +000087 // super is only valid in an Objective-C method
88 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
Fariborz Jahanian7ce77922009-02-28 20:07:56 +000089 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +000090 return Runtime.GenerateMessageSendSuper(*this, E->getType(),
91 E->getSelector(),
Daniel Dunbarf56f1912008-08-25 08:19:24 +000092 OMD->getClassInterface(),
Fariborz Jahanian7ce77922009-02-28 20:07:56 +000093 isCategoryImpl,
Daniel Dunbarf56f1912008-08-25 08:19:24 +000094 Receiver,
Daniel Dunbar19cd87e2008-08-30 03:02:31 +000095 isClassMessage,
Daniel Dunbard6c93d72009-09-17 04:01:22 +000096 Args,
97 E->getMethodDecl());
Chris Lattner8fdf3282008-06-24 17:04:18 +000098 }
Daniel Dunbard6c93d72009-09-17 04:01:22 +000099
Mike Stump1eb44332009-09-09 15:08:12 +0000100 return Runtime.GenerateMessageSend(*this, E->getType(), E->getSelector(),
Fariborz Jahaniandf9ccc62009-05-05 21:36:57 +0000101 Receiver, isClassMessage, Args,
102 E->getMethodDecl());
Anders Carlsson55085182007-08-21 17:43:55 +0000103}
104
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000105/// StartObjCMethod - Begin emission of an ObjCMethod. This generates
106/// the LLVM function and sets the other context used by
107/// CodeGenFunction.
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000108void CodeGenFunction::StartObjCMethod(const ObjCMethodDecl *OMD,
109 const ObjCContainerDecl *CD) {
Daniel Dunbar7c086512008-09-09 23:14:03 +0000110 FunctionArgList Args;
Devang Patel4800ea62010-04-05 21:09:15 +0000111 // Check if we should generate debug info for this method.
112 if (CGM.getDebugInfo() && !OMD->hasAttr<NoDebugAttr>())
113 DebugInfo = CGM.getDebugInfo();
114
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000115 llvm::Function *Fn = CGM.getObjCRuntime().GenerateMethod(OMD, CD);
Daniel Dunbarf80519b2008-09-04 23:41:35 +0000116
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000117 const CGFunctionInfo &FI = CGM.getTypes().getFunctionInfo(OMD);
118 CGM.SetInternalFunctionAttributes(OMD, Fn, FI);
Chris Lattner41110242008-06-17 18:05:57 +0000119
Mike Stump1eb44332009-09-09 15:08:12 +0000120 Args.push_back(std::make_pair(OMD->getSelfDecl(),
Daniel Dunbar7c086512008-09-09 23:14:03 +0000121 OMD->getSelfDecl()->getType()));
122 Args.push_back(std::make_pair(OMD->getCmdDecl(),
123 OMD->getCmdDecl()->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000124
Chris Lattner89951a82009-02-20 18:43:26 +0000125 for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(),
126 E = OMD->param_end(); PI != E; ++PI)
127 Args.push_back(std::make_pair(*PI, (*PI)->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000128
Devang Patela92d6132010-02-15 18:08:38 +0000129 StartFunction(OMD, OMD->getResultType(), Fn, Args, OMD->getLocStart());
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000130}
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000131
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000132/// Generate an Objective-C method. An Objective-C method is a C function with
Mike Stump1eb44332009-09-09 15:08:12 +0000133/// its pointer, name, and types registered in the class struture.
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000134void CodeGenFunction::GenerateObjCMethod(const ObjCMethodDecl *OMD) {
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000135 StartObjCMethod(OMD, OMD->getClassInterface());
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000136 EmitStmt(OMD->getBody());
137 FinishFunction(OMD->getBodyRBrace());
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000138}
139
Mike Stumpf5408fe2009-05-16 07:57:57 +0000140// FIXME: I wasn't sure about the synthesis approach. If we end up generating an
141// AST for the whole body we can just fall back to having a GenerateFunction
142// which takes the body Stmt.
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000143
144/// GenerateObjCGetter - Generate an Objective-C property getter
Steve Naroff489034c2009-01-10 22:55:25 +0000145/// function. The given Decl must be an ObjCImplementationDecl. @synthesize
146/// is illegal within a category.
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000147void CodeGenFunction::GenerateObjCGetter(ObjCImplementationDecl *IMP,
148 const ObjCPropertyImplDecl *PID) {
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000149 ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000150 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
151 ObjCMethodDecl *OMD = PD->getGetterMethodDecl();
152 assert(OMD && "Invalid call to generate getter (empty method)");
Mike Stumpf5408fe2009-05-16 07:57:57 +0000153 // FIXME: This is rather murky, we create this here since they will not have
154 // been created by Sema for us.
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000155 OMD->createImplicitParams(getContext(), IMP->getClassInterface());
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000156 StartObjCMethod(OMD, IMP->getClassInterface());
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000157
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000158 // Determine if we should use an objc_getProperty call for
Fariborz Jahanian447d7ae2008-12-08 23:56:17 +0000159 // this. Non-atomic properties are directly evaluated.
160 // atomic 'copy' and 'retain' properties are also directly
161 // evaluated in gc-only mode.
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000162 if (CGM.getLangOptions().getGCMode() != LangOptions::GCOnly &&
Fariborz Jahanian447d7ae2008-12-08 23:56:17 +0000163 !(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic) &&
164 (PD->getSetterKind() == ObjCPropertyDecl::Copy ||
165 PD->getSetterKind() == ObjCPropertyDecl::Retain)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000166 llvm::Value *GetPropertyFn =
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000167 CGM.getObjCRuntime().GetPropertyGetFunction();
Mike Stump1eb44332009-09-09 15:08:12 +0000168
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000169 if (!GetPropertyFn) {
170 CGM.ErrorUnsupported(PID, "Obj-C getter requiring atomic copy");
171 FinishFunction();
172 return;
173 }
174
175 // Return (ivar-type) objc_getProperty((id) self, _cmd, offset, true).
176 // FIXME: Can't this be simpler? This might even be worse than the
177 // corresponding gcc code.
178 CodeGenTypes &Types = CGM.getTypes();
179 ValueDecl *Cmd = OMD->getCmdDecl();
180 llvm::Value *CmdVal = Builder.CreateLoad(LocalDeclMap[Cmd], "cmd");
181 QualType IdTy = getContext().getObjCIdType();
Mike Stump1eb44332009-09-09 15:08:12 +0000182 llvm::Value *SelfAsId =
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000183 Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000184 llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar);
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000185 llvm::Value *True =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000186 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000187 CallArgList Args;
188 Args.push_back(std::make_pair(RValue::get(SelfAsId), IdTy));
189 Args.push_back(std::make_pair(RValue::get(CmdVal), Cmd->getType()));
190 Args.push_back(std::make_pair(RValue::get(Offset), getContext().LongTy));
191 Args.push_back(std::make_pair(RValue::get(True), getContext().BoolTy));
Daniel Dunbare4be5a62009-02-03 23:43:59 +0000192 // FIXME: We shouldn't need to get the function info here, the
193 // runtime already should have computed it to build the function.
John McCall04a67a62010-02-05 21:31:56 +0000194 RValue RV = EmitCall(Types.getFunctionInfo(PD->getType(), Args,
Rafael Espindola264ba482010-03-30 20:24:48 +0000195 FunctionType::ExtInfo()),
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000196 GetPropertyFn, ReturnValueSlot(), Args);
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000197 // We need to fix the type here. Ivars with copy & retain are
198 // always objects so we don't need to worry about complex or
199 // aggregates.
Mike Stump1eb44332009-09-09 15:08:12 +0000200 RV = RValue::get(Builder.CreateBitCast(RV.getScalarVal(),
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000201 Types.ConvertType(PD->getType())));
202 EmitReturnOfRValue(RV, PD->getType());
203 } else {
Daniel Dunbar525c9b72009-04-21 01:19:28 +0000204 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), Ivar, 0);
Fariborz Jahanian1b23fe62010-03-25 21:56:43 +0000205 if (Ivar->getType()->isAnyComplexType()) {
206 ComplexPairTy Pair = LoadComplexFromAddr(LV.getAddress(),
207 LV.isVolatileQualified());
208 StoreComplexToAddr(Pair, ReturnValue, LV.isVolatileQualified());
209 }
210 else if (hasAggregateLLVMType(Ivar->getType())) {
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000211 if (!(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
212 && CurFnInfo->getReturnInfo().getKind() == ABIArgInfo::Indirect
213 && CGM.getObjCRuntime().GetCopyStructFunction()) {
214 llvm::Value *GetCopyStructFn =
215 CGM.getObjCRuntime().GetCopyStructFunction();
216 CodeGenTypes &Types = CGM.getTypes();
217 // objc_copyStruct (ReturnValue, &structIvar,
218 // sizeof (Type of Ivar), isAtomic, false);
219 CallArgList Args;
220 RValue RV = RValue::get(Builder.CreateBitCast(ReturnValue,
221 Types.ConvertType(getContext().VoidPtrTy)));
222 Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
223 RV = RValue::get(Builder.CreateBitCast(LV.getAddress(),
224 Types.ConvertType(getContext().VoidPtrTy)));
225 Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
226 // sizeof (Type of Ivar)
227 uint64_t Size = getContext().getTypeSize(Ivar->getType()) / 8;
228 llvm::Value *SizeVal =
229 llvm::ConstantInt::get(Types.ConvertType(getContext().LongTy), Size);
230 Args.push_back(std::make_pair(RValue::get(SizeVal),
231 getContext().LongTy));
232 // FIXME. Implement when Atomic is false; But when struct has
233 // gc'able data member!
234 llvm::Value *isAtomic =
235 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
236 Args.push_back(std::make_pair(RValue::get(isAtomic),
237 getContext().BoolTy));
238 llvm::Value *False =
239 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 0);
240 Args.push_back(std::make_pair(RValue::get(False), getContext().BoolTy));
241 EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
242 FunctionType::ExtInfo()),
243 GetCopyStructFn, ReturnValueSlot(), Args);
244 }
245 else
246 EmitAggregateCopy(ReturnValue, LV.getAddress(), Ivar->getType());
Mike Stumpb3589f42009-07-30 22:28:39 +0000247 } else {
Fariborz Jahanianed1d29d2009-03-03 18:49:40 +0000248 CodeGenTypes &Types = CGM.getTypes();
249 RValue RV = EmitLoadOfLValue(LV, Ivar->getType());
250 RV = RValue::get(Builder.CreateBitCast(RV.getScalarVal(),
Mike Stump1eb44332009-09-09 15:08:12 +0000251 Types.ConvertType(PD->getType())));
Fariborz Jahanianed1d29d2009-03-03 18:49:40 +0000252 EmitReturnOfRValue(RV, PD->getType());
253 }
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000254 }
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000255
256 FinishFunction();
257}
258
259/// GenerateObjCSetter - Generate an Objective-C property setter
Steve Naroff489034c2009-01-10 22:55:25 +0000260/// function. The given Decl must be an ObjCImplementationDecl. @synthesize
261/// is illegal within a category.
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000262void CodeGenFunction::GenerateObjCSetter(ObjCImplementationDecl *IMP,
263 const ObjCPropertyImplDecl *PID) {
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000264 ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000265 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
266 ObjCMethodDecl *OMD = PD->getSetterMethodDecl();
267 assert(OMD && "Invalid call to generate setter (empty method)");
Mike Stumpf5408fe2009-05-16 07:57:57 +0000268 // FIXME: This is rather murky, we create this here since they will not have
269 // been created by Sema for us.
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000270 OMD->createImplicitParams(getContext(), IMP->getClassInterface());
Fariborz Jahanian679a5022009-01-10 21:06:09 +0000271 StartObjCMethod(OMD, IMP->getClassInterface());
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000272
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000273 bool IsCopy = PD->getSetterKind() == ObjCPropertyDecl::Copy;
Mike Stump1eb44332009-09-09 15:08:12 +0000274 bool IsAtomic =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000275 !(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic);
276
277 // Determine if we should use an objc_setProperty call for
278 // this. Properties with 'copy' semantics always use it, as do
279 // non-atomic properties with 'release' semantics as long as we are
280 // not in gc-only mode.
281 if (IsCopy ||
282 (CGM.getLangOptions().getGCMode() != LangOptions::GCOnly &&
283 PD->getSetterKind() == ObjCPropertyDecl::Retain)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000284 llvm::Value *SetPropertyFn =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000285 CGM.getObjCRuntime().GetPropertySetFunction();
Mike Stump1eb44332009-09-09 15:08:12 +0000286
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000287 if (!SetPropertyFn) {
288 CGM.ErrorUnsupported(PID, "Obj-C getter requiring atomic copy");
289 FinishFunction();
290 return;
291 }
Mike Stump1eb44332009-09-09 15:08:12 +0000292
293 // Emit objc_setProperty((id) self, _cmd, offset, arg,
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000294 // <is-atomic>, <is-copy>).
295 // FIXME: Can't this be simpler? This might even be worse than the
296 // corresponding gcc code.
297 CodeGenTypes &Types = CGM.getTypes();
298 ValueDecl *Cmd = OMD->getCmdDecl();
299 llvm::Value *CmdVal = Builder.CreateLoad(LocalDeclMap[Cmd], "cmd");
300 QualType IdTy = getContext().getObjCIdType();
Mike Stump1eb44332009-09-09 15:08:12 +0000301 llvm::Value *SelfAsId =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000302 Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000303 llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar);
Chris Lattner89951a82009-02-20 18:43:26 +0000304 llvm::Value *Arg = LocalDeclMap[*OMD->param_begin()];
Mike Stump1eb44332009-09-09 15:08:12 +0000305 llvm::Value *ArgAsId =
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000306 Builder.CreateBitCast(Builder.CreateLoad(Arg, "arg"),
307 Types.ConvertType(IdTy));
308 llvm::Value *True =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000309 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000310 llvm::Value *False =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000311 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 0);
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000312 CallArgList Args;
313 Args.push_back(std::make_pair(RValue::get(SelfAsId), IdTy));
314 Args.push_back(std::make_pair(RValue::get(CmdVal), Cmd->getType()));
315 Args.push_back(std::make_pair(RValue::get(Offset), getContext().LongTy));
316 Args.push_back(std::make_pair(RValue::get(ArgAsId), IdTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000317 Args.push_back(std::make_pair(RValue::get(IsAtomic ? True : False),
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000318 getContext().BoolTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000319 Args.push_back(std::make_pair(RValue::get(IsCopy ? True : False),
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000320 getContext().BoolTy));
Mike Stumpf5408fe2009-05-16 07:57:57 +0000321 // FIXME: We shouldn't need to get the function info here, the runtime
322 // already should have computed it to build the function.
John McCall04a67a62010-02-05 21:31:56 +0000323 EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
Rafael Espindola264ba482010-03-30 20:24:48 +0000324 FunctionType::ExtInfo()),
325 SetPropertyFn,
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000326 ReturnValueSlot(), Args);
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000327 } else if (IsAtomic && hasAggregateLLVMType(Ivar->getType()) &&
328 !Ivar->getType()->isAnyComplexType() &&
329 IndirectObjCSetterArg(*CurFnInfo)
330 && CGM.getObjCRuntime().GetCopyStructFunction()) {
331 // objc_copyStruct (&structIvar, &Arg,
332 // sizeof (struct something), true, false);
333 llvm::Value *GetCopyStructFn =
334 CGM.getObjCRuntime().GetCopyStructFunction();
335 CodeGenTypes &Types = CGM.getTypes();
336 CallArgList Args;
337 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), Ivar, 0);
338 RValue RV = RValue::get(Builder.CreateBitCast(LV.getAddress(),
339 Types.ConvertType(getContext().VoidPtrTy)));
340 Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
341 llvm::Value *Arg = LocalDeclMap[*OMD->param_begin()];
342 llvm::Value *ArgAsPtrTy =
343 Builder.CreateBitCast(Arg,
344 Types.ConvertType(getContext().VoidPtrTy));
345 RV = RValue::get(ArgAsPtrTy);
346 Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
347 // sizeof (Type of Ivar)
348 uint64_t Size = getContext().getTypeSize(Ivar->getType()) / 8;
349 llvm::Value *SizeVal =
350 llvm::ConstantInt::get(Types.ConvertType(getContext().LongTy), Size);
351 Args.push_back(std::make_pair(RValue::get(SizeVal),
352 getContext().LongTy));
353 llvm::Value *True =
354 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
355 Args.push_back(std::make_pair(RValue::get(True), getContext().BoolTy));
356 llvm::Value *False =
357 llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 0);
358 Args.push_back(std::make_pair(RValue::get(False), getContext().BoolTy));
359 EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
360 FunctionType::ExtInfo()),
361 GetCopyStructFn, ReturnValueSlot(), Args);
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000362 } else {
Daniel Dunbar45e84232009-10-27 19:21:30 +0000363 // FIXME: Find a clean way to avoid AST node creation.
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000364 SourceLocation Loc = PD->getLocation();
365 ValueDecl *Self = OMD->getSelfDecl();
366 ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
367 DeclRefExpr Base(Self, Self->getType(), Loc);
Chris Lattner89951a82009-02-20 18:43:26 +0000368 ParmVarDecl *ArgDecl = *OMD->param_begin();
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000369 DeclRefExpr Arg(ArgDecl, ArgDecl->getType(), Loc);
Daniel Dunbar45e84232009-10-27 19:21:30 +0000370 ObjCIvarRefExpr IvarRef(Ivar, Ivar->getType(), Loc, &Base, true, true);
371
372 // The property type can differ from the ivar type in some situations with
373 // Objective-C pointer types, we can always bit cast the RHS in these cases.
374 if (getContext().getCanonicalType(Ivar->getType()) !=
375 getContext().getCanonicalType(ArgDecl->getType())) {
376 ImplicitCastExpr ArgCasted(Ivar->getType(), CastExpr::CK_BitCast, &Arg,
377 false);
378 BinaryOperator Assign(&IvarRef, &ArgCasted, BinaryOperator::Assign,
379 Ivar->getType(), Loc);
380 EmitStmt(&Assign);
381 } else {
382 BinaryOperator Assign(&IvarRef, &Arg, BinaryOperator::Assign,
383 Ivar->getType(), Loc);
384 EmitStmt(&Assign);
385 }
Daniel Dunbar86957eb2008-09-24 06:32:09 +0000386 }
Daniel Dunbaraf05bb92008-08-26 08:29:31 +0000387
388 FinishFunction();
Chris Lattner41110242008-06-17 18:05:57 +0000389}
390
Fariborz Jahanian0b2bd472010-04-13 00:38:05 +0000391bool CodeGenFunction::IndirectObjCSetterArg(const CGFunctionInfo &FI) {
392 CGFunctionInfo::const_arg_iterator it = FI.arg_begin();
393 it++; it++;
394 const ABIArgInfo &AI = it->info;
395 // FIXME. Is this sufficient check?
396 return (AI.getKind() == ABIArgInfo::Indirect);
397}
398
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000399llvm::Value *CodeGenFunction::LoadObjCSelf() {
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000400 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
Mike Stump6cc88f72009-03-20 21:53:12 +0000401 // See if we need to lazily forward self inside a block literal.
402 BlockForwardSelf();
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000403 return Builder.CreateLoad(LocalDeclMap[OMD->getSelfDecl()], "self");
Chris Lattner41110242008-06-17 18:05:57 +0000404}
405
Fariborz Jahanian45012a72009-02-03 00:09:52 +0000406QualType CodeGenFunction::TypeOfSelfObject() {
407 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
408 ImplicitParamDecl *selfDecl = OMD->getSelfDecl();
Steve Naroff14108da2009-07-10 23:34:53 +0000409 const ObjCObjectPointerType *PTy = cast<ObjCObjectPointerType>(
410 getContext().getCanonicalType(selfDecl->getType()));
Fariborz Jahanian45012a72009-02-03 00:09:52 +0000411 return PTy->getPointeeType();
412}
413
Mike Stump1eb44332009-09-09 15:08:12 +0000414RValue CodeGenFunction::EmitObjCSuperPropertyGet(const Expr *Exp,
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000415 const Selector &S) {
416 llvm::Value *Receiver = LoadObjCSelf();
417 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
418 bool isClassMessage = OMD->isClassMethod();
419 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000420 return CGM.getObjCRuntime().GenerateMessageSendSuper(*this,
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000421 Exp->getType(),
422 S,
423 OMD->getClassInterface(),
424 isCategoryImpl,
425 Receiver,
426 isClassMessage,
427 CallArgList());
Mike Stump1eb44332009-09-09 15:08:12 +0000428
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000429}
430
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000431RValue CodeGenFunction::EmitObjCPropertyGet(const Expr *Exp) {
Fariborz Jahaniand2e1eb02009-09-01 17:02:21 +0000432 Exp = Exp->IgnoreParens();
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000433 // FIXME: Split it into two separate routines.
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000434 if (const ObjCPropertyRefExpr *E = dyn_cast<ObjCPropertyRefExpr>(Exp)) {
435 Selector S = E->getProperty()->getGetterName();
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000436 if (isa<ObjCSuperExpr>(E->getBase()))
437 return EmitObjCSuperPropertyGet(E, S);
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000438 return CGM.getObjCRuntime().
Mike Stump1eb44332009-09-09 15:08:12 +0000439 GenerateMessageSend(*this, Exp->getType(), S,
440 EmitScalarExpr(E->getBase()),
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000441 false, CallArgList());
Mike Stumpb3589f42009-07-30 22:28:39 +0000442 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000443 const ObjCImplicitSetterGetterRefExpr *KE =
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000444 cast<ObjCImplicitSetterGetterRefExpr>(Exp);
Daniel Dunbarf479cea2009-01-16 01:50:29 +0000445 Selector S = KE->getGetterMethod()->getSelector();
Fariborz Jahanian3523d4f2009-03-10 18:03:11 +0000446 llvm::Value *Receiver;
Fariborz Jahaniand2ae5aa2009-08-18 21:37:33 +0000447 if (KE->getInterfaceDecl()) {
448 const ObjCInterfaceDecl *OID = KE->getInterfaceDecl();
Fariborz Jahanian3523d4f2009-03-10 18:03:11 +0000449 Receiver = CGM.getObjCRuntime().GetClass(Builder, OID);
Mike Stumpb3589f42009-07-30 22:28:39 +0000450 } else if (isa<ObjCSuperExpr>(KE->getBase()))
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000451 return EmitObjCSuperPropertyGet(KE, S);
Mike Stump1eb44332009-09-09 15:08:12 +0000452 else
Fariborz Jahanian3523d4f2009-03-10 18:03:11 +0000453 Receiver = EmitScalarExpr(KE->getBase());
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000454 return CGM.getObjCRuntime().
Mike Stump1eb44332009-09-09 15:08:12 +0000455 GenerateMessageSend(*this, Exp->getType(), S,
456 Receiver,
Fariborz Jahaniand2ae5aa2009-08-18 21:37:33 +0000457 KE->getInterfaceDecl() != 0, CallArgList());
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000458 }
Daniel Dunbar9c3fc702008-08-27 06:57:25 +0000459}
460
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000461void CodeGenFunction::EmitObjCSuperPropertySet(const Expr *Exp,
462 const Selector &S,
463 RValue Src) {
464 CallArgList Args;
465 llvm::Value *Receiver = LoadObjCSelf();
466 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
467 bool isClassMessage = OMD->isClassMethod();
468 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
469 Args.push_back(std::make_pair(Src, Exp->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000470 CGM.getObjCRuntime().GenerateMessageSendSuper(*this,
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000471 Exp->getType(),
472 S,
473 OMD->getClassInterface(),
474 isCategoryImpl,
475 Receiver,
476 isClassMessage,
477 Args);
478 return;
479}
480
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000481void CodeGenFunction::EmitObjCPropertySet(const Expr *Exp,
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000482 RValue Src) {
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000483 // FIXME: Split it into two separate routines.
484 if (const ObjCPropertyRefExpr *E = dyn_cast<ObjCPropertyRefExpr>(Exp)) {
485 Selector S = E->getProperty()->getSetterName();
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000486 if (isa<ObjCSuperExpr>(E->getBase())) {
487 EmitObjCSuperPropertySet(E, S, Src);
488 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000489 }
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000490 CallArgList Args;
491 Args.push_back(std::make_pair(Src, E->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000492 CGM.getObjCRuntime().GenerateMessageSend(*this, getContext().VoidTy, S,
493 EmitScalarExpr(E->getBase()),
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000494 false, Args);
Mike Stump1eb44332009-09-09 15:08:12 +0000495 } else if (const ObjCImplicitSetterGetterRefExpr *E =
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000496 dyn_cast<ObjCImplicitSetterGetterRefExpr>(Exp)) {
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000497 Selector S = E->getSetterMethod()->getSelector();
498 CallArgList Args;
Fariborz Jahanian3523d4f2009-03-10 18:03:11 +0000499 llvm::Value *Receiver;
Fariborz Jahaniand2ae5aa2009-08-18 21:37:33 +0000500 if (E->getInterfaceDecl()) {
501 const ObjCInterfaceDecl *OID = E->getInterfaceDecl();
Fariborz Jahanian3523d4f2009-03-10 18:03:11 +0000502 Receiver = CGM.getObjCRuntime().GetClass(Builder, OID);
Mike Stumpb3589f42009-07-30 22:28:39 +0000503 } else if (isa<ObjCSuperExpr>(E->getBase())) {
Fariborz Jahanianf4695572009-03-20 19:18:21 +0000504 EmitObjCSuperPropertySet(E, S, Src);
Fariborz Jahanian8e5d2322009-03-20 17:22:23 +0000505 return;
Mike Stumpb3589f42009-07-30 22:28:39 +0000506 } else
Fariborz Jahanian3523d4f2009-03-10 18:03:11 +0000507 Receiver = EmitScalarExpr(E->getBase());
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000508 Args.push_back(std::make_pair(Src, E->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000509 CGM.getObjCRuntime().GenerateMessageSend(*this, getContext().VoidTy, S,
510 Receiver,
Fariborz Jahaniand2ae5aa2009-08-18 21:37:33 +0000511 E->getInterfaceDecl() != 0, Args);
Mike Stumpb3589f42009-07-30 22:28:39 +0000512 } else
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000513 assert (0 && "bad expression node in EmitObjCPropertySet");
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000514}
515
Chris Lattner74391b42009-03-22 21:03:39 +0000516void CodeGenFunction::EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S){
Mike Stump1eb44332009-09-09 15:08:12 +0000517 llvm::Constant *EnumerationMutationFn =
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000518 CGM.getObjCRuntime().EnumerationMutationFunction();
Anders Carlssonf484c312008-08-31 02:33:12 +0000519 llvm::Value *DeclAddress;
520 QualType ElementTy;
Mike Stump1eb44332009-09-09 15:08:12 +0000521
Daniel Dunbarc1cf4a52008-09-24 04:04:31 +0000522 if (!EnumerationMutationFn) {
523 CGM.ErrorUnsupported(&S, "Obj-C fast enumeration for this runtime");
524 return;
525 }
526
Anders Carlssonf484c312008-08-31 02:33:12 +0000527 if (const DeclStmt *SD = dyn_cast<DeclStmt>(S.getElement())) {
528 EmitStmt(SD);
Daniel Dunbara448fb22008-11-11 23:11:34 +0000529 assert(HaveInsertPoint() && "DeclStmt destroyed insert point!");
Chris Lattner7e24e822009-03-28 06:33:19 +0000530 const Decl* D = SD->getSingleDecl();
Ted Kremenek39741ce2008-10-06 20:59:48 +0000531 ElementTy = cast<ValueDecl>(D)->getType();
Mike Stump1eb44332009-09-09 15:08:12 +0000532 DeclAddress = LocalDeclMap[D];
Anders Carlssonf484c312008-08-31 02:33:12 +0000533 } else {
534 ElementTy = cast<Expr>(S.getElement())->getType();
535 DeclAddress = 0;
536 }
Mike Stump1eb44332009-09-09 15:08:12 +0000537
Anders Carlssonf484c312008-08-31 02:33:12 +0000538 // Fast enumeration state.
539 QualType StateTy = getContext().getObjCFastEnumerationStateType();
Daniel Dunbar195337d2010-02-09 02:48:28 +0000540 llvm::Value *StatePtr = CreateMemTemp(StateTy, "state.ptr");
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000541 EmitMemSetToZero(StatePtr, StateTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000542
Anders Carlssonf484c312008-08-31 02:33:12 +0000543 // Number of elements in the items array.
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000544 static const unsigned NumItems = 16;
Mike Stump1eb44332009-09-09 15:08:12 +0000545
Anders Carlssonf484c312008-08-31 02:33:12 +0000546 // Get selector
Benjamin Kramerad468862010-03-30 11:36:44 +0000547 IdentifierInfo *II[] = {
548 &CGM.getContext().Idents.get("countByEnumeratingWithState"),
549 &CGM.getContext().Idents.get("objects"),
550 &CGM.getContext().Idents.get("count")
551 };
552 Selector FastEnumSel =
553 CGM.getContext().Selectors.getSelector(llvm::array_lengthof(II), &II[0]);
Anders Carlssonf484c312008-08-31 02:33:12 +0000554
555 QualType ItemsTy =
556 getContext().getConstantArrayType(getContext().getObjCIdType(),
Mike Stump1eb44332009-09-09 15:08:12 +0000557 llvm::APInt(32, NumItems),
Anders Carlssonf484c312008-08-31 02:33:12 +0000558 ArrayType::Normal, 0);
Daniel Dunbar195337d2010-02-09 02:48:28 +0000559 llvm::Value *ItemsPtr = CreateMemTemp(ItemsTy, "items.ptr");
Mike Stump1eb44332009-09-09 15:08:12 +0000560
Anders Carlssonf484c312008-08-31 02:33:12 +0000561 llvm::Value *Collection = EmitScalarExpr(S.getCollection());
Mike Stump1eb44332009-09-09 15:08:12 +0000562
Anders Carlssonf484c312008-08-31 02:33:12 +0000563 CallArgList Args;
Mike Stump1eb44332009-09-09 15:08:12 +0000564 Args.push_back(std::make_pair(RValue::get(StatePtr),
Anders Carlssonf484c312008-08-31 02:33:12 +0000565 getContext().getPointerType(StateTy)));
Mike Stump1eb44332009-09-09 15:08:12 +0000566
567 Args.push_back(std::make_pair(RValue::get(ItemsPtr),
Anders Carlssonf484c312008-08-31 02:33:12 +0000568 getContext().getPointerType(ItemsTy)));
Mike Stump1eb44332009-09-09 15:08:12 +0000569
Anders Carlssonf484c312008-08-31 02:33:12 +0000570 const llvm::Type *UnsignedLongLTy = ConvertType(getContext().UnsignedLongTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000571 llvm::Constant *Count = llvm::ConstantInt::get(UnsignedLongLTy, NumItems);
Mike Stump1eb44332009-09-09 15:08:12 +0000572 Args.push_back(std::make_pair(RValue::get(Count),
Daniel Dunbar46f45b92008-09-09 01:06:48 +0000573 getContext().UnsignedLongTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000574
575 RValue CountRV =
576 CGM.getObjCRuntime().GenerateMessageSend(*this,
Anders Carlssonf484c312008-08-31 02:33:12 +0000577 getContext().UnsignedLongTy,
578 FastEnumSel,
579 Collection, false, Args);
580
Daniel Dunbar195337d2010-02-09 02:48:28 +0000581 llvm::Value *LimitPtr = CreateMemTemp(getContext().UnsignedLongTy,
582 "limit.ptr");
Anders Carlssonf484c312008-08-31 02:33:12 +0000583 Builder.CreateStore(CountRV.getScalarVal(), LimitPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000584
Daniel Dunbar55e87422008-11-11 02:29:29 +0000585 llvm::BasicBlock *NoElements = createBasicBlock("noelements");
586 llvm::BasicBlock *SetStartMutations = createBasicBlock("setstartmutations");
Mike Stump1eb44332009-09-09 15:08:12 +0000587
Anders Carlssonf484c312008-08-31 02:33:12 +0000588 llvm::Value *Limit = Builder.CreateLoad(LimitPtr);
Owen Andersonc9c88b42009-07-31 20:28:54 +0000589 llvm::Value *Zero = llvm::Constant::getNullValue(UnsignedLongLTy);
Anders Carlssonf484c312008-08-31 02:33:12 +0000590
591 llvm::Value *IsZero = Builder.CreateICmpEQ(Limit, Zero, "iszero");
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000592 Builder.CreateCondBr(IsZero, NoElements, SetStartMutations);
Anders Carlssonf484c312008-08-31 02:33:12 +0000593
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000594 EmitBlock(SetStartMutations);
Mike Stump1eb44332009-09-09 15:08:12 +0000595
Daniel Dunbar195337d2010-02-09 02:48:28 +0000596 llvm::Value *StartMutationsPtr = CreateMemTemp(getContext().UnsignedLongTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000597
598 llvm::Value *StateMutationsPtrPtr =
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000599 Builder.CreateStructGEP(StatePtr, 2, "mutationsptr.ptr");
Mike Stump1eb44332009-09-09 15:08:12 +0000600 llvm::Value *StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr,
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000601 "mutationsptr");
Mike Stump1eb44332009-09-09 15:08:12 +0000602
603 llvm::Value *StateMutations = Builder.CreateLoad(StateMutationsPtr,
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000604 "mutations");
Mike Stump1eb44332009-09-09 15:08:12 +0000605
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000606 Builder.CreateStore(StateMutations, StartMutationsPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000607
Daniel Dunbar55e87422008-11-11 02:29:29 +0000608 llvm::BasicBlock *LoopStart = createBasicBlock("loopstart");
Anders Carlssonf484c312008-08-31 02:33:12 +0000609 EmitBlock(LoopStart);
610
Daniel Dunbar195337d2010-02-09 02:48:28 +0000611 llvm::Value *CounterPtr = CreateMemTemp(getContext().UnsignedLongTy,
612 "counter.ptr");
Anders Carlssonf484c312008-08-31 02:33:12 +0000613 Builder.CreateStore(Zero, CounterPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000614
615 llvm::BasicBlock *LoopBody = createBasicBlock("loopbody");
Anders Carlssonf484c312008-08-31 02:33:12 +0000616 EmitBlock(LoopBody);
617
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000618 StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr, "mutationsptr");
619 StateMutations = Builder.CreateLoad(StateMutationsPtr, "statemutations");
620
Mike Stump1eb44332009-09-09 15:08:12 +0000621 llvm::Value *StartMutations = Builder.CreateLoad(StartMutationsPtr,
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000622 "mutations");
Mike Stump1eb44332009-09-09 15:08:12 +0000623 llvm::Value *MutationsEqual = Builder.CreateICmpEQ(StateMutations,
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000624 StartMutations,
625 "tobool");
Mike Stump1eb44332009-09-09 15:08:12 +0000626
627
Daniel Dunbar55e87422008-11-11 02:29:29 +0000628 llvm::BasicBlock *WasMutated = createBasicBlock("wasmutated");
629 llvm::BasicBlock *WasNotMutated = createBasicBlock("wasnotmutated");
Mike Stump1eb44332009-09-09 15:08:12 +0000630
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000631 Builder.CreateCondBr(MutationsEqual, WasNotMutated, WasMutated);
Mike Stump1eb44332009-09-09 15:08:12 +0000632
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000633 EmitBlock(WasMutated);
634 llvm::Value *V =
Mike Stump1eb44332009-09-09 15:08:12 +0000635 Builder.CreateBitCast(Collection,
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000636 ConvertType(getContext().getObjCIdType()),
637 "tmp");
Daniel Dunbar2b2105e2009-02-03 23:55:40 +0000638 CallArgList Args2;
Mike Stump1eb44332009-09-09 15:08:12 +0000639 Args2.push_back(std::make_pair(RValue::get(V),
Daniel Dunbar2b2105e2009-02-03 23:55:40 +0000640 getContext().getObjCIdType()));
Mike Stumpf5408fe2009-05-16 07:57:57 +0000641 // FIXME: We shouldn't need to get the function info here, the runtime already
642 // should have computed it to build the function.
John McCall04a67a62010-02-05 21:31:56 +0000643 EmitCall(CGM.getTypes().getFunctionInfo(getContext().VoidTy, Args2,
Rafael Espindola264ba482010-03-30 20:24:48 +0000644 FunctionType::ExtInfo()),
Anders Carlssonf3c47c92009-12-24 19:25:24 +0000645 EnumerationMutationFn, ReturnValueSlot(), Args2);
Mike Stump1eb44332009-09-09 15:08:12 +0000646
Anders Carlsson2abd89c2008-08-31 04:05:03 +0000647 EmitBlock(WasNotMutated);
Mike Stump1eb44332009-09-09 15:08:12 +0000648
649 llvm::Value *StateItemsPtr =
Anders Carlssonf484c312008-08-31 02:33:12 +0000650 Builder.CreateStructGEP(StatePtr, 1, "stateitems.ptr");
651
652 llvm::Value *Counter = Builder.CreateLoad(CounterPtr, "counter");
653
654 llvm::Value *EnumStateItems = Builder.CreateLoad(StateItemsPtr,
655 "stateitems");
656
Mike Stump1eb44332009-09-09 15:08:12 +0000657 llvm::Value *CurrentItemPtr =
Anders Carlssonf484c312008-08-31 02:33:12 +0000658 Builder.CreateGEP(EnumStateItems, Counter, "currentitem.ptr");
Mike Stump1eb44332009-09-09 15:08:12 +0000659
Anders Carlssonf484c312008-08-31 02:33:12 +0000660 llvm::Value *CurrentItem = Builder.CreateLoad(CurrentItemPtr, "currentitem");
Mike Stump1eb44332009-09-09 15:08:12 +0000661
Anders Carlssonf484c312008-08-31 02:33:12 +0000662 // Cast the item to the right type.
663 CurrentItem = Builder.CreateBitCast(CurrentItem,
664 ConvertType(ElementTy), "tmp");
Mike Stump1eb44332009-09-09 15:08:12 +0000665
Anders Carlssonf484c312008-08-31 02:33:12 +0000666 if (!DeclAddress) {
667 LValue LV = EmitLValue(cast<Expr>(S.getElement()));
Mike Stump1eb44332009-09-09 15:08:12 +0000668
Anders Carlssonf484c312008-08-31 02:33:12 +0000669 // Set the value to null.
670 Builder.CreateStore(CurrentItem, LV.getAddress());
671 } else
672 Builder.CreateStore(CurrentItem, DeclAddress);
Mike Stump1eb44332009-09-09 15:08:12 +0000673
Anders Carlssonf484c312008-08-31 02:33:12 +0000674 // Increment the counter.
Mike Stump1eb44332009-09-09 15:08:12 +0000675 Counter = Builder.CreateAdd(Counter,
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000676 llvm::ConstantInt::get(UnsignedLongLTy, 1));
Anders Carlssonf484c312008-08-31 02:33:12 +0000677 Builder.CreateStore(Counter, CounterPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000678
Daniel Dunbar55e87422008-11-11 02:29:29 +0000679 llvm::BasicBlock *LoopEnd = createBasicBlock("loopend");
680 llvm::BasicBlock *AfterBody = createBasicBlock("afterbody");
Mike Stump1eb44332009-09-09 15:08:12 +0000681
Anders Carlssone4b6d342009-02-10 05:52:02 +0000682 BreakContinueStack.push_back(BreakContinue(LoopEnd, AfterBody));
Anders Carlssonf484c312008-08-31 02:33:12 +0000683
684 EmitStmt(S.getBody());
Mike Stump1eb44332009-09-09 15:08:12 +0000685
Anders Carlssonf484c312008-08-31 02:33:12 +0000686 BreakContinueStack.pop_back();
Mike Stump1eb44332009-09-09 15:08:12 +0000687
Anders Carlssonf484c312008-08-31 02:33:12 +0000688 EmitBlock(AfterBody);
Mike Stump1eb44332009-09-09 15:08:12 +0000689
Daniel Dunbar55e87422008-11-11 02:29:29 +0000690 llvm::BasicBlock *FetchMore = createBasicBlock("fetchmore");
Fariborz Jahanianf0906c42009-01-06 18:56:31 +0000691
692 Counter = Builder.CreateLoad(CounterPtr);
693 Limit = Builder.CreateLoad(LimitPtr);
Anders Carlssonf484c312008-08-31 02:33:12 +0000694 llvm::Value *IsLess = Builder.CreateICmpULT(Counter, Limit, "isless");
Daniel Dunbarfe2b2c02008-09-04 21:54:37 +0000695 Builder.CreateCondBr(IsLess, LoopBody, FetchMore);
Anders Carlssonf484c312008-08-31 02:33:12 +0000696
697 // Fetch more elements.
698 EmitBlock(FetchMore);
Mike Stump1eb44332009-09-09 15:08:12 +0000699
700 CountRV =
701 CGM.getObjCRuntime().GenerateMessageSend(*this,
Anders Carlssonf484c312008-08-31 02:33:12 +0000702 getContext().UnsignedLongTy,
Mike Stump1eb44332009-09-09 15:08:12 +0000703 FastEnumSel,
Anders Carlssonf484c312008-08-31 02:33:12 +0000704 Collection, false, Args);
705 Builder.CreateStore(CountRV.getScalarVal(), LimitPtr);
706 Limit = Builder.CreateLoad(LimitPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000707
Anders Carlssonf484c312008-08-31 02:33:12 +0000708 IsZero = Builder.CreateICmpEQ(Limit, Zero, "iszero");
709 Builder.CreateCondBr(IsZero, NoElements, LoopStart);
Mike Stump1eb44332009-09-09 15:08:12 +0000710
Anders Carlssonf484c312008-08-31 02:33:12 +0000711 // No more elements.
712 EmitBlock(NoElements);
713
714 if (!DeclAddress) {
715 // If the element was not a declaration, set it to be null.
716
717 LValue LV = EmitLValue(cast<Expr>(S.getElement()));
Mike Stump1eb44332009-09-09 15:08:12 +0000718
Anders Carlssonf484c312008-08-31 02:33:12 +0000719 // Set the value to null.
Owen Andersonc9c88b42009-07-31 20:28:54 +0000720 Builder.CreateStore(llvm::Constant::getNullValue(ConvertType(ElementTy)),
Anders Carlssonf484c312008-08-31 02:33:12 +0000721 LV.getAddress());
722 }
723
724 EmitBlock(LoopEnd);
Anders Carlsson3d8400d2008-08-30 19:51:14 +0000725}
726
Mike Stump1eb44332009-09-09 15:08:12 +0000727void CodeGenFunction::EmitObjCAtTryStmt(const ObjCAtTryStmt &S) {
Fariborz Jahanianbd71be42008-11-21 00:49:24 +0000728 CGM.getObjCRuntime().EmitTryOrSynchronizedStmt(*this, S);
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000729}
730
Mike Stump1eb44332009-09-09 15:08:12 +0000731void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) {
Anders Carlsson64d5d6c2008-09-09 10:04:29 +0000732 CGM.getObjCRuntime().EmitThrowStmt(*this, S);
733}
734
Chris Lattner10cac6f2008-11-15 21:26:17 +0000735void CodeGenFunction::EmitObjCAtSynchronizedStmt(
Mike Stump1eb44332009-09-09 15:08:12 +0000736 const ObjCAtSynchronizedStmt &S) {
Fariborz Jahanianbd71be42008-11-21 00:49:24 +0000737 CGM.getObjCRuntime().EmitTryOrSynchronizedStmt(*this, S);
Chris Lattner10cac6f2008-11-15 21:26:17 +0000738}
739
Ted Kremenek2979ec72008-04-09 15:51:31 +0000740CGObjCRuntime::~CGObjCRuntime() {}