blob: 62be62b79eda5c6520fa17bb16d278af6ec2d7c8 [file] [log] [blame]
Chris Lattnere47e4402007-06-01 18:02:12 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnere47e4402007-06-01 18:02:12 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
Chris Lattnerb6984c42007-06-20 04:44:43 +000015#include "CodeGenModule.h"
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000016#include "CGCall.h"
John McCall5d865c322010-08-31 07:33:07 +000017#include "CGCXXABI.h"
Devang Pateld3a6b0f2011-03-04 18:54:42 +000018#include "CGDebugInfo.h"
Daniel Dunbar034299e2010-03-31 01:09:11 +000019#include "CGRecordLayout.h"
Daniel Dunbar89da6ad2008-08-13 00:59:25 +000020#include "CGObjCRuntime.h"
John McCallcbc038a2011-09-21 08:08:30 +000021#include "TargetInfo.h"
Daniel Dunbarad319a72008-08-11 05:00:27 +000022#include "clang/AST/ASTContext.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000023#include "clang/AST/DeclObjC.h"
Chandler Carruth85098242010-06-15 23:19:56 +000024#include "clang/Frontend/CodeGenOptions.h"
Nick Lewycky7c6c6cc2011-07-07 03:54:51 +000025#include "llvm/Intrinsics.h"
Eli Friedmanf2442dc2008-05-17 20:03:47 +000026#include "llvm/Target/TargetData.h"
Chris Lattnere47e4402007-06-01 18:02:12 +000027using namespace clang;
28using namespace CodeGen;
29
Chris Lattnerd7f58862007-06-02 05:24:33 +000030//===--------------------------------------------------------------------===//
Chris Lattnerf0106d22007-06-02 19:33:17 +000031// Miscellaneous Helper Methods
32//===--------------------------------------------------------------------===//
33
John McCallad7c5c12011-02-08 08:22:06 +000034llvm::Value *CodeGenFunction::EmitCastToVoidPtr(llvm::Value *value) {
35 unsigned addressSpace =
36 cast<llvm::PointerType>(value->getType())->getAddressSpace();
37
Chris Lattner2192fe52011-07-18 04:24:23 +000038 llvm::PointerType *destType = Int8PtrTy;
John McCallad7c5c12011-02-08 08:22:06 +000039 if (addressSpace)
40 destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace);
41
42 if (value->getType() == destType) return value;
43 return Builder.CreateBitCast(value, destType);
44}
45
Chris Lattnere9a64532007-06-22 21:44:33 +000046/// CreateTempAlloca - This creates a alloca and inserts it into the entry
47/// block.
Chris Lattner2192fe52011-07-18 04:24:23 +000048llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(llvm::Type *Ty,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000049 const Twine &Name) {
Chris Lattner47640222009-03-22 00:24:14 +000050 if (!Builder.isNamePreserving())
Daniel Dunbarb5aacc22009-10-19 01:21:05 +000051 return new llvm::AllocaInst(Ty, 0, "", AllocaInsertPt);
Devang Pateldac79de2009-10-12 22:29:02 +000052 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
Chris Lattnere9a64532007-06-22 21:44:33 +000053}
Chris Lattner8394d792007-06-05 20:53:16 +000054
John McCall2e6567a2010-04-22 01:10:34 +000055void CodeGenFunction::InitTempAlloca(llvm::AllocaInst *Var,
56 llvm::Value *Init) {
57 llvm::StoreInst *Store = new llvm::StoreInst(Init, Var);
58 llvm::BasicBlock *Block = AllocaInsertPt->getParent();
59 Block->getInstList().insertAfter(&*AllocaInsertPt, Store);
60}
61
Chris Lattnerc401de92010-07-05 20:21:00 +000062llvm::AllocaInst *CodeGenFunction::CreateIRTemp(QualType Ty,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000063 const Twine &Name) {
Daniel Dunbard0049182010-02-16 19:44:13 +000064 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertType(Ty), Name);
65 // FIXME: Should we prefer the preferred type alignment here?
66 CharUnits Align = getContext().getTypeAlignInChars(Ty);
67 Alloc->setAlignment(Align.getQuantity());
68 return Alloc;
69}
70
Chris Lattnerc401de92010-07-05 20:21:00 +000071llvm::AllocaInst *CodeGenFunction::CreateMemTemp(QualType Ty,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000072 const Twine &Name) {
Daniel Dunbara7566f12010-02-09 02:48:28 +000073 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertTypeForMem(Ty), Name);
74 // FIXME: Should we prefer the preferred type alignment here?
75 CharUnits Align = getContext().getTypeAlignInChars(Ty);
76 Alloc->setAlignment(Align.getQuantity());
77 return Alloc;
78}
79
Chris Lattner8394d792007-06-05 20:53:16 +000080/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
81/// expression and compare the result against zero, returning an Int1Ty value.
Chris Lattner23b7eb62007-06-15 23:05:46 +000082llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
John McCall7a9aac22010-08-23 01:21:21 +000083 if (const MemberPointerType *MPT = E->getType()->getAs<MemberPointerType>()) {
John McCalla1dee5302010-08-22 10:59:02 +000084 llvm::Value *MemPtr = EmitScalarExpr(E);
John McCallad7c5c12011-02-08 08:22:06 +000085 return CGM.getCXXABI().EmitMemberPointerIsNotNull(*this, MemPtr, MPT);
Eli Friedman68396b12009-12-11 09:26:29 +000086 }
John McCall7a9aac22010-08-23 01:21:21 +000087
88 QualType BoolTy = getContext().BoolTy;
Chris Lattnerf3bc75a2008-04-04 16:54:41 +000089 if (!E->getType()->isAnyComplexType())
Chris Lattner268fcce2007-08-26 16:46:58 +000090 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner8394d792007-06-05 20:53:16 +000091
Chris Lattner268fcce2007-08-26 16:46:58 +000092 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattnerf0106d22007-06-02 19:33:17 +000093}
94
John McCalla2342eb2010-12-05 02:00:02 +000095/// EmitIgnoredExpr - Emit code to compute the specified expression,
96/// ignoring the result.
97void CodeGenFunction::EmitIgnoredExpr(const Expr *E) {
98 if (E->isRValue())
99 return (void) EmitAnyExpr(E, AggValueSlot::ignored(), true);
100
101 // Just emit it as an l-value and drop the result.
102 EmitLValue(E);
103}
104
John McCall7a626f62010-09-15 10:14:12 +0000105/// EmitAnyExpr - Emit code to compute the specified expression which
106/// can have any type. The result is returned as an RValue struct.
107/// If this is an aggregate expression, AggSlot indicates where the
Mike Stump4a3999f2009-09-09 13:00:44 +0000108/// result should be returned.
John McCall7a626f62010-09-15 10:14:12 +0000109RValue CodeGenFunction::EmitAnyExpr(const Expr *E, AggValueSlot AggSlot,
110 bool IgnoreResult) {
Chris Lattner4647a212007-08-31 22:49:20 +0000111 if (!hasAggregateLLVMType(E->getType()))
Mike Stumpdf0fe272009-05-29 15:46:01 +0000112 return RValue::get(EmitScalarExpr(E, IgnoreResult));
Chris Lattnerf3bc75a2008-04-04 16:54:41 +0000113 else if (E->getType()->isAnyComplexType())
John McCall07bb1962010-11-16 10:08:07 +0000114 return RValue::getComplex(EmitComplexExpr(E, IgnoreResult, IgnoreResult));
Mike Stump4a3999f2009-09-09 13:00:44 +0000115
John McCall7a626f62010-09-15 10:14:12 +0000116 EmitAggExpr(E, AggSlot, IgnoreResult);
117 return AggSlot.asRValue();
Chris Lattner4647a212007-08-31 22:49:20 +0000118}
119
Mike Stump4a3999f2009-09-09 13:00:44 +0000120/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result will
121/// always be accessible even if no aggregate location is provided.
John McCall7a626f62010-09-15 10:14:12 +0000122RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E) {
123 AggValueSlot AggSlot = AggValueSlot::ignored();
Mike Stump4a3999f2009-09-09 13:00:44 +0000124
125 if (hasAggregateLLVMType(E->getType()) &&
Daniel Dunbar41cf9de2008-09-09 01:06:48 +0000126 !E->getType()->isAnyComplexType())
John McCall7a626f62010-09-15 10:14:12 +0000127 AggSlot = CreateAggTemp(E->getType(), "agg.tmp");
128 return EmitAnyExpr(E, AggSlot);
Daniel Dunbar41cf9de2008-09-09 01:06:48 +0000129}
130
John McCall21886962010-04-21 10:05:39 +0000131/// EmitAnyExprToMem - Evaluate an expression into a given memory
132/// location.
133void CodeGenFunction::EmitAnyExprToMem(const Expr *E,
134 llvm::Value *Location,
John McCall31168b02011-06-15 23:02:42 +0000135 Qualifiers Quals,
John McCall21886962010-04-21 10:05:39 +0000136 bool IsInit) {
Eli Friedman471a22f2011-06-15 18:27:44 +0000137 if (E->getType()->isAnyComplexType())
John McCall31168b02011-06-15 23:02:42 +0000138 EmitComplexExprIntoAddr(E, Location, Quals.hasVolatile());
John McCall21886962010-04-21 10:05:39 +0000139 else if (hasAggregateLLVMType(E->getType()))
John McCall8d6fc952011-08-25 20:40:09 +0000140 EmitAggExpr(E, AggValueSlot::forAddr(Location, Quals,
141 AggValueSlot::IsDestructed_t(IsInit),
John McCalla8a39bc2011-08-26 05:38:08 +0000142 AggValueSlot::DoesNotNeedGCBarriers,
143 AggValueSlot::IsAliased_t(!IsInit)));
John McCall21886962010-04-21 10:05:39 +0000144 else {
145 RValue RV = RValue::get(EmitScalarExpr(E, /*Ignore*/ false));
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +0000146 LValue LV = MakeAddrLValue(Location, E->getType());
John McCall55e1fbc2011-06-25 02:11:03 +0000147 EmitStoreThroughLValue(RV, LV);
John McCall21886962010-04-21 10:05:39 +0000148 }
149}
150
Benjamin Kramer90b5b682010-11-25 18:29:30 +0000151namespace {
Douglas Gregor7c38f152010-05-20 08:36:28 +0000152/// \brief An adjustment to be made to the temporary created when emitting a
153/// reference binding, which accesses a particular subobject of that temporary.
Benjamin Kramer90b5b682010-11-25 18:29:30 +0000154 struct SubobjectAdjustment {
155 enum { DerivedToBaseAdjustment, FieldAdjustment } Kind;
156
157 union {
158 struct {
159 const CastExpr *BasePath;
160 const CXXRecordDecl *DerivedClass;
161 } DerivedToBase;
162
163 FieldDecl *Field;
164 };
165
166 SubobjectAdjustment(const CastExpr *BasePath,
167 const CXXRecordDecl *DerivedClass)
168 : Kind(DerivedToBaseAdjustment) {
169 DerivedToBase.BasePath = BasePath;
170 DerivedToBase.DerivedClass = DerivedClass;
171 }
172
173 SubobjectAdjustment(FieldDecl *Field)
174 : Kind(FieldAdjustment) {
175 this->Field = Field;
176 }
Douglas Gregor7c38f152010-05-20 08:36:28 +0000177 };
Benjamin Kramer90b5b682010-11-25 18:29:30 +0000178}
Douglas Gregor7c38f152010-05-20 08:36:28 +0000179
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000180static llvm::Value *
Chris Lattner24516962011-07-20 04:59:57 +0000181CreateReferenceTemporary(CodeGenFunction &CGF, QualType Type,
Anders Carlsson18c205e2010-06-27 17:23:46 +0000182 const NamedDecl *InitializedDecl) {
183 if (const VarDecl *VD = dyn_cast_or_null<VarDecl>(InitializedDecl)) {
184 if (VD->hasGlobalStorage()) {
185 llvm::SmallString<256> Name;
Rafael Espindola3968cd02011-02-11 02:52:17 +0000186 llvm::raw_svector_ostream Out(Name);
187 CGF.CGM.getCXXABI().getMangleContext().mangleReferenceTemporary(VD, Out);
188 Out.flush();
189
Chris Lattner2192fe52011-07-18 04:24:23 +0000190 llvm::Type *RefTempTy = CGF.ConvertTypeForMem(Type);
Anders Carlsson18c205e2010-06-27 17:23:46 +0000191
192 // Create the reference temporary.
193 llvm::GlobalValue *RefTemp =
194 new llvm::GlobalVariable(CGF.CGM.getModule(),
195 RefTempTy, /*isConstant=*/false,
196 llvm::GlobalValue::InternalLinkage,
197 llvm::Constant::getNullValue(RefTempTy),
198 Name.str());
199 return RefTemp;
200 }
201 }
202
203 return CGF.CreateMemTemp(Type, "ref.tmp");
204}
205
206static llvm::Value *
Chris Lattnerf53c0962010-09-06 00:11:41 +0000207EmitExprForReferenceBinding(CodeGenFunction &CGF, const Expr *E,
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000208 llvm::Value *&ReferenceTemporary,
209 const CXXDestructorDecl *&ReferenceTemporaryDtor,
John McCall31168b02011-06-15 23:02:42 +0000210 QualType &ObjCARCReferenceLifetimeType,
Anders Carlsson18c205e2010-06-27 17:23:46 +0000211 const NamedDecl *InitializedDecl) {
Douglas Gregorfe314812011-06-21 17:03:29 +0000212 // Look through expressions for materialized temporaries (for now).
Douglas Gregor58df5092011-06-22 16:12:01 +0000213 if (const MaterializeTemporaryExpr *M
214 = dyn_cast<MaterializeTemporaryExpr>(E)) {
215 // Objective-C++ ARC:
216 // If we are binding a reference to a temporary that has ownership, we
217 // need to perform retain/release operations on the temporary.
218 if (CGF.getContext().getLangOptions().ObjCAutoRefCount &&
219 E->getType()->isObjCLifetimeType() &&
220 (E->getType().getObjCLifetime() == Qualifiers::OCL_Strong ||
221 E->getType().getObjCLifetime() == Qualifiers::OCL_Weak ||
222 E->getType().getObjCLifetime() == Qualifiers::OCL_Autoreleasing))
223 ObjCARCReferenceLifetimeType = E->getType();
224
225 E = M->GetTemporaryExpr();
226 }
Douglas Gregorfe314812011-06-21 17:03:29 +0000227
Eli Friedman357e8c92009-12-19 00:20:10 +0000228 if (const CXXDefaultArgExpr *DAE = dyn_cast<CXXDefaultArgExpr>(E))
229 E = DAE->getExpr();
Anders Carlsson66413c22009-10-15 00:51:46 +0000230
John McCall5d413782010-12-06 08:20:24 +0000231 if (const ExprWithCleanups *TE = dyn_cast<ExprWithCleanups>(E)) {
John McCallbd309292010-07-06 01:34:17 +0000232 CodeGenFunction::RunCleanupsScope Scope(CGF);
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000233
234 return EmitExprForReferenceBinding(CGF, TE->getSubExpr(),
235 ReferenceTemporary,
236 ReferenceTemporaryDtor,
John McCall31168b02011-06-15 23:02:42 +0000237 ObjCARCReferenceLifetimeType,
Anders Carlsson18c205e2010-06-27 17:23:46 +0000238 InitializedDecl);
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000239 }
240
Fariborz Jahanian7a26ba42011-03-30 16:11:20 +0000241 if (const ObjCPropertyRefExpr *PRE =
242 dyn_cast<ObjCPropertyRefExpr>(E->IgnoreParenImpCasts()))
243 if (PRE->getGetterResultType()->isReferenceType())
244 E = PRE;
245
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000246 RValue RV;
Douglas Gregor9c399a22011-01-22 02:44:21 +0000247 if (E->isGLValue()) {
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000248 // Emit the expression as an lvalue.
249 LValue LV = CGF.EmitLValue(E);
Fariborz Jahanian7a26ba42011-03-30 16:11:20 +0000250 if (LV.isPropertyRef()) {
251 RV = CGF.EmitLoadOfPropertyRefLValue(LV);
252 return RV.getScalarVal();
253 }
Chris Lattner13ee4f42011-07-10 05:34:54 +0000254
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000255 if (LV.isSimple())
256 return LV.getAddress();
Anders Carlsson824e0612010-02-04 17:32:58 +0000257
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000258 // We have to load the lvalue.
John McCall55e1fbc2011-06-25 02:11:03 +0000259 RV = CGF.EmitLoadOfLValue(LV);
Eli Friedmanc21cb442009-05-20 02:31:19 +0000260 } else {
Douglas Gregor58df5092011-06-22 16:12:01 +0000261 if (!ObjCARCReferenceLifetimeType.isNull()) {
262 ReferenceTemporary = CreateReferenceTemporary(CGF,
263 ObjCARCReferenceLifetimeType,
264 InitializedDecl);
265
266
267 LValue RefTempDst = CGF.MakeAddrLValue(ReferenceTemporary,
268 ObjCARCReferenceLifetimeType);
269
270 CGF.EmitScalarInit(E, dyn_cast_or_null<ValueDecl>(InitializedDecl),
271 RefTempDst, false);
272
273 bool ExtendsLifeOfTemporary = false;
274 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(InitializedDecl)) {
275 if (Var->extendsLifetimeOfTemporary())
276 ExtendsLifeOfTemporary = true;
277 } else if (InitializedDecl && isa<FieldDecl>(InitializedDecl)) {
278 ExtendsLifeOfTemporary = true;
279 }
280
281 if (!ExtendsLifeOfTemporary) {
282 // Since the lifetime of this temporary isn't going to be extended,
283 // we need to clean it up ourselves at the end of the full expression.
284 switch (ObjCARCReferenceLifetimeType.getObjCLifetime()) {
285 case Qualifiers::OCL_None:
286 case Qualifiers::OCL_ExplicitNone:
287 case Qualifiers::OCL_Autoreleasing:
288 break;
289
John McCall4bd0fb12011-07-12 16:41:08 +0000290 case Qualifiers::OCL_Strong: {
291 assert(!ObjCARCReferenceLifetimeType->isArrayType());
292 CleanupKind cleanupKind = CGF.getARCCleanupKind();
293 CGF.pushDestroy(cleanupKind,
294 ReferenceTemporary,
295 ObjCARCReferenceLifetimeType,
296 CodeGenFunction::destroyARCStrongImprecise,
297 cleanupKind & EHCleanup);
Douglas Gregor58df5092011-06-22 16:12:01 +0000298 break;
John McCall4bd0fb12011-07-12 16:41:08 +0000299 }
Douglas Gregor58df5092011-06-22 16:12:01 +0000300
301 case Qualifiers::OCL_Weak:
John McCall4bd0fb12011-07-12 16:41:08 +0000302 assert(!ObjCARCReferenceLifetimeType->isArrayType());
303 CGF.pushDestroy(NormalAndEHCleanup,
304 ReferenceTemporary,
305 ObjCARCReferenceLifetimeType,
306 CodeGenFunction::destroyARCWeak,
307 /*useEHCleanupForArray*/ true);
Douglas Gregor58df5092011-06-22 16:12:01 +0000308 break;
309 }
310
311 ObjCARCReferenceLifetimeType = QualType();
312 }
313
314 return ReferenceTemporary;
315 }
316
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000317 SmallVector<SubobjectAdjustment, 2> Adjustments;
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000318 while (true) {
Peter Collingbourne91147592011-04-15 00:35:48 +0000319 E = E->IgnoreParens();
Douglas Gregoraae38d62010-05-22 05:17:18 +0000320
321 if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
John McCalle3027922010-08-25 11:45:40 +0000322 if ((CE->getCastKind() == CK_DerivedToBase ||
323 CE->getCastKind() == CK_UncheckedDerivedToBase) &&
Douglas Gregoraae38d62010-05-22 05:17:18 +0000324 E->getType()->isRecordType()) {
Douglas Gregor7c38f152010-05-20 08:36:28 +0000325 E = CE->getSubExpr();
326 CXXRecordDecl *Derived
327 = cast<CXXRecordDecl>(E->getType()->getAs<RecordType>()->getDecl());
John McCallcf142162010-08-07 06:22:56 +0000328 Adjustments.push_back(SubobjectAdjustment(CE, Derived));
Douglas Gregor7c38f152010-05-20 08:36:28 +0000329 continue;
330 }
Douglas Gregoraae38d62010-05-22 05:17:18 +0000331
John McCalle3027922010-08-25 11:45:40 +0000332 if (CE->getCastKind() == CK_NoOp) {
Douglas Gregoraae38d62010-05-22 05:17:18 +0000333 E = CE->getSubExpr();
334 continue;
335 }
336 } else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
John McCall086a4642010-11-24 05:12:34 +0000337 if (!ME->isArrow() && ME->getBase()->isRValue()) {
338 assert(ME->getBase()->getType()->isRecordType());
Douglas Gregor7c38f152010-05-20 08:36:28 +0000339 if (FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
340 E = ME->getBase();
Daniel Dunbare8b6cda2010-08-21 03:37:02 +0000341 Adjustments.push_back(SubobjectAdjustment(Field));
Douglas Gregor7c38f152010-05-20 08:36:28 +0000342 continue;
343 }
344 }
Anders Carlsson66413c22009-10-15 00:51:46 +0000345 }
Douglas Gregoraae38d62010-05-22 05:17:18 +0000346
John McCalle9dab632011-02-21 05:25:38 +0000347 if (const OpaqueValueExpr *opaque = dyn_cast<OpaqueValueExpr>(E))
348 if (opaque->getType()->isRecordType())
349 return CGF.EmitOpaqueValueLValue(opaque).getAddress();
350
Douglas Gregoraae38d62010-05-22 05:17:18 +0000351 // Nothing changed.
352 break;
Anders Carlssonb80760b2009-08-16 17:50:25 +0000353 }
Anders Carlsson66413c22009-10-15 00:51:46 +0000354
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000355 // Create a reference temporary if necessary.
John McCall7a626f62010-09-15 10:14:12 +0000356 AggValueSlot AggSlot = AggValueSlot::ignored();
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000357 if (CGF.hasAggregateLLVMType(E->getType()) &&
John McCall7a626f62010-09-15 10:14:12 +0000358 !E->getType()->isAnyComplexType()) {
Anders Carlsson18c205e2010-06-27 17:23:46 +0000359 ReferenceTemporary = CreateReferenceTemporary(CGF, E->getType(),
360 InitializedDecl);
John McCall8d6fc952011-08-25 20:40:09 +0000361 AggValueSlot::IsDestructed_t isDestructed
362 = AggValueSlot::IsDestructed_t(InitializedDecl != 0);
John McCall31168b02011-06-15 23:02:42 +0000363 AggSlot = AggValueSlot::forAddr(ReferenceTemporary, Qualifiers(),
John McCall8d6fc952011-08-25 20:40:09 +0000364 isDestructed,
John McCalla5efa732011-08-25 23:04:34 +0000365 AggValueSlot::DoesNotNeedGCBarriers,
366 AggValueSlot::IsNotAliased);
John McCall7a626f62010-09-15 10:14:12 +0000367 }
John McCall31168b02011-06-15 23:02:42 +0000368
Anders Carlsson18c205e2010-06-27 17:23:46 +0000369 if (InitializedDecl) {
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000370 // Get the destructor for the reference temporary.
371 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
372 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RT->getDecl());
373 if (!ClassDecl->hasTrivialDestructor())
Douglas Gregorbac74902010-07-01 14:13:13 +0000374 ReferenceTemporaryDtor = ClassDecl->getDestructor();
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000375 }
376 }
377
John McCall31168b02011-06-15 23:02:42 +0000378 RV = CGF.EmitAnyExpr(E, AggSlot);
379
Douglas Gregor7c38f152010-05-20 08:36:28 +0000380 // Check if need to perform derived-to-base casts and/or field accesses, to
381 // get from the temporary object we created (and, potentially, for which we
382 // extended the lifetime) to the subobject we're binding the reference to.
383 if (!Adjustments.empty()) {
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000384 llvm::Value *Object = RV.getAggregateAddr();
Douglas Gregor7c38f152010-05-20 08:36:28 +0000385 for (unsigned I = Adjustments.size(); I != 0; --I) {
386 SubobjectAdjustment &Adjustment = Adjustments[I-1];
387 switch (Adjustment.Kind) {
388 case SubobjectAdjustment::DerivedToBaseAdjustment:
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000389 Object =
390 CGF.GetAddressOfBaseClass(Object,
391 Adjustment.DerivedToBase.DerivedClass,
John McCallcf142162010-08-07 06:22:56 +0000392 Adjustment.DerivedToBase.BasePath->path_begin(),
393 Adjustment.DerivedToBase.BasePath->path_end(),
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000394 /*NullCheckValue=*/false);
Douglas Gregor7c38f152010-05-20 08:36:28 +0000395 break;
396
397 case SubobjectAdjustment::FieldAdjustment: {
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000398 LValue LV =
Daniel Dunbare8b6cda2010-08-21 03:37:02 +0000399 CGF.EmitLValueForField(Object, Adjustment.Field, 0);
Douglas Gregor7c38f152010-05-20 08:36:28 +0000400 if (LV.isSimple()) {
401 Object = LV.getAddress();
402 break;
403 }
404
405 // For non-simple lvalues, we actually have to create a copy of
406 // the object we're binding to.
Daniel Dunbare8b6cda2010-08-21 03:37:02 +0000407 QualType T = Adjustment.Field->getType().getNonReferenceType()
408 .getUnqualifiedType();
Anders Carlsson3f48c602010-06-27 17:52:15 +0000409 Object = CreateReferenceTemporary(CGF, T, InitializedDecl);
Daniel Dunbare8b6cda2010-08-21 03:37:02 +0000410 LValue TempLV = CGF.MakeAddrLValue(Object,
411 Adjustment.Field->getType());
John McCall55e1fbc2011-06-25 02:11:03 +0000412 CGF.EmitStoreThroughLValue(CGF.EmitLoadOfLValue(LV), TempLV);
Douglas Gregor7c38f152010-05-20 08:36:28 +0000413 break;
414 }
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000415
Douglas Gregor7c38f152010-05-20 08:36:28 +0000416 }
417 }
Eli Friedmanb6069252011-03-16 22:34:09 +0000418
419 return Object;
Anders Carlsson66413c22009-10-15 00:51:46 +0000420 }
Anders Carlsson7d4c0832009-05-20 00:36:58 +0000421 }
Eli Friedmanc21cb442009-05-20 02:31:19 +0000422
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000423 if (RV.isAggregate())
424 return RV.getAggregateAddr();
Eli Friedmanc21cb442009-05-20 02:31:19 +0000425
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000426 // Create a temporary variable that we can bind the reference to.
Anders Carlsson18c205e2010-06-27 17:23:46 +0000427 ReferenceTemporary = CreateReferenceTemporary(CGF, E->getType(),
428 InitializedDecl);
429
Daniel Dunbar03816342010-08-21 02:24:36 +0000430
431 unsigned Alignment =
432 CGF.getContext().getTypeAlignInChars(E->getType()).getQuantity();
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000433 if (RV.isScalar())
434 CGF.EmitStoreOfScalar(RV.getScalarVal(), ReferenceTemporary,
Daniel Dunbar03816342010-08-21 02:24:36 +0000435 /*Volatile=*/false, Alignment, E->getType());
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000436 else
437 CGF.StoreComplexToAddr(RV.getComplexVal(), ReferenceTemporary,
438 /*Volatile=*/false);
439 return ReferenceTemporary;
440}
441
442RValue
Chris Lattnerf53c0962010-09-06 00:11:41 +0000443CodeGenFunction::EmitReferenceBindingToExpr(const Expr *E,
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000444 const NamedDecl *InitializedDecl) {
445 llvm::Value *ReferenceTemporary = 0;
446 const CXXDestructorDecl *ReferenceTemporaryDtor = 0;
John McCall31168b02011-06-15 23:02:42 +0000447 QualType ObjCARCReferenceLifetimeType;
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000448 llvm::Value *Value = EmitExprForReferenceBinding(*this, E, ReferenceTemporary,
449 ReferenceTemporaryDtor,
John McCall31168b02011-06-15 23:02:42 +0000450 ObjCARCReferenceLifetimeType,
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000451 InitializedDecl);
John McCall31168b02011-06-15 23:02:42 +0000452 if (!ReferenceTemporaryDtor && ObjCARCReferenceLifetimeType.isNull())
Anders Carlsson3f48c602010-06-27 17:52:15 +0000453 return RValue::get(Value);
454
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000455 // Make sure to call the destructor for the reference temporary.
John McCall31168b02011-06-15 23:02:42 +0000456 const VarDecl *VD = dyn_cast_or_null<VarDecl>(InitializedDecl);
457 if (VD && VD->hasGlobalStorage()) {
458 if (ReferenceTemporaryDtor) {
Anders Carlsson3f48c602010-06-27 17:52:15 +0000459 llvm::Constant *DtorFn =
460 CGM.GetAddrOfCXXDestructor(ReferenceTemporaryDtor, Dtor_Complete);
John McCallad7c5c12011-02-08 08:22:06 +0000461 EmitCXXGlobalDtorRegistration(DtorFn,
462 cast<llvm::Constant>(ReferenceTemporary));
John McCall31168b02011-06-15 23:02:42 +0000463 } else {
464 assert(!ObjCARCReferenceLifetimeType.isNull());
465 // Note: We intentionally do not register a global "destructor" to
466 // release the object.
Anders Carlsson3f48c602010-06-27 17:52:15 +0000467 }
John McCall31168b02011-06-15 23:02:42 +0000468
469 return RValue::get(Value);
Anders Carlsson3f48c602010-06-27 17:52:15 +0000470 }
John McCall8680f872010-07-21 06:29:51 +0000471
John McCall31168b02011-06-15 23:02:42 +0000472 if (ReferenceTemporaryDtor)
473 PushDestructorCleanup(ReferenceTemporaryDtor, ReferenceTemporary);
474 else {
475 switch (ObjCARCReferenceLifetimeType.getObjCLifetime()) {
476 case Qualifiers::OCL_None:
Chris Lattner13ee4f42011-07-10 05:34:54 +0000477 assert(0 && "Not a reference temporary that needs to be deallocated");
John McCall31168b02011-06-15 23:02:42 +0000478 case Qualifiers::OCL_ExplicitNone:
479 case Qualifiers::OCL_Autoreleasing:
480 // Nothing to do.
481 break;
482
John McCall4bd0fb12011-07-12 16:41:08 +0000483 case Qualifiers::OCL_Strong: {
484 bool precise = VD && VD->hasAttr<ObjCPreciseLifetimeAttr>();
485 CleanupKind cleanupKind = getARCCleanupKind();
Benjamin Kramerae2d3442011-07-12 18:37:23 +0000486 // This local is a GCC and MSVC compiler workaround.
487 Destroyer *destroyer = precise ? &destroyARCStrongPrecise :
488 &destroyARCStrongImprecise;
489 pushDestroy(cleanupKind, ReferenceTemporary, ObjCARCReferenceLifetimeType,
490 *destroyer, cleanupKind & EHCleanup);
John McCall31168b02011-06-15 23:02:42 +0000491 break;
John McCall4bd0fb12011-07-12 16:41:08 +0000492 }
John McCall31168b02011-06-15 23:02:42 +0000493
Benjamin Kramerae2d3442011-07-12 18:37:23 +0000494 case Qualifiers::OCL_Weak: {
495 // This local is a GCC and MSVC compiler workaround.
496 Destroyer *destroyer = &destroyARCWeak;
John McCall31168b02011-06-15 23:02:42 +0000497 // __weak objects always get EH cleanups; otherwise, exceptions
498 // could cause really nasty crashes instead of mere leaks.
John McCall4bd0fb12011-07-12 16:41:08 +0000499 pushDestroy(NormalAndEHCleanup, ReferenceTemporary,
Benjamin Kramerae2d3442011-07-12 18:37:23 +0000500 ObjCARCReferenceLifetimeType, *destroyer, true);
John McCall31168b02011-06-15 23:02:42 +0000501 break;
502 }
Benjamin Kramerae2d3442011-07-12 18:37:23 +0000503 }
John McCall31168b02011-06-15 23:02:42 +0000504 }
505
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000506 return RValue::get(Value);
Anders Carlsson6f5a0152009-05-20 00:24:07 +0000507}
508
509
Mike Stump4a3999f2009-09-09 13:00:44 +0000510/// getAccessedFieldNo - Given an encoded value and a result number, return the
511/// input field number being accessed.
512unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
Dan Gohman75d69da2008-05-22 00:50:06 +0000513 const llvm::Constant *Elts) {
514 if (isa<llvm::ConstantAggregateZero>(Elts))
515 return 0;
Mike Stump4a3999f2009-09-09 13:00:44 +0000516
Dan Gohman75d69da2008-05-22 00:50:06 +0000517 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
518}
519
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000520void CodeGenFunction::EmitCheck(llvm::Value *Address, unsigned Size) {
521 if (!CatchUndefined)
522 return;
523
John McCallad7c5c12011-02-08 08:22:06 +0000524 // This needs to be to the standard address space.
525 Address = Builder.CreateBitCast(Address, Int8PtrTy);
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000526
Benjamin Kramer8d375ce2011-07-14 17:45:50 +0000527 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::objectsize, IntPtrTy);
Chris Lattnerbc3be652010-04-10 18:34:14 +0000528
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000529 // In time, people may want to control this and use a 1 here.
John McCallad7c5c12011-02-08 08:22:06 +0000530 llvm::Value *Arg = Builder.getFalse();
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000531 llvm::Value *C = Builder.CreateCall2(F, Address, Arg);
532 llvm::BasicBlock *Cont = createBasicBlock();
533 llvm::BasicBlock *Check = createBasicBlock();
Chris Lattner5e016ae2010-06-27 07:15:29 +0000534 llvm::Value *NegativeOne = llvm::ConstantInt::get(IntPtrTy, -1ULL);
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000535 Builder.CreateCondBr(Builder.CreateICmpEQ(C, NegativeOne), Cont, Check);
536
537 EmitBlock(Check);
538 Builder.CreateCondBr(Builder.CreateICmpUGE(C,
Chris Lattner5e016ae2010-06-27 07:15:29 +0000539 llvm::ConstantInt::get(IntPtrTy, Size)),
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000540 Cont, getTrapBB());
541 EmitBlock(Cont);
542}
Chris Lattner4647a212007-08-31 22:49:20 +0000543
Chris Lattner116ce8f2010-01-09 21:40:03 +0000544
Chris Lattner116ce8f2010-01-09 21:40:03 +0000545CodeGenFunction::ComplexPairTy CodeGenFunction::
546EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV,
547 bool isInc, bool isPre) {
548 ComplexPairTy InVal = LoadComplexFromAddr(LV.getAddress(),
549 LV.isVolatileQualified());
550
551 llvm::Value *NextVal;
552 if (isa<llvm::IntegerType>(InVal.first->getType())) {
553 uint64_t AmountVal = isInc ? 1 : -1;
554 NextVal = llvm::ConstantInt::get(InVal.first->getType(), AmountVal, true);
555
556 // Add the inc/dec to the real part.
557 NextVal = Builder.CreateAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
558 } else {
559 QualType ElemTy = E->getType()->getAs<ComplexType>()->getElementType();
560 llvm::APFloat FVal(getContext().getFloatTypeSemantics(ElemTy), 1);
561 if (!isInc)
562 FVal.changeSign();
563 NextVal = llvm::ConstantFP::get(getLLVMContext(), FVal);
564
565 // Add the inc/dec to the real part.
566 NextVal = Builder.CreateFAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
567 }
568
569 ComplexPairTy IncVal(NextVal, InVal.second);
570
571 // Store the updated result through the lvalue.
572 StoreComplexToAddr(IncVal, LV.getAddress(), LV.isVolatileQualified());
573
574 // If this is a postinc, return the value read from memory, otherwise use the
575 // updated value.
576 return isPre ? IncVal : InVal;
577}
578
579
Chris Lattnera45c5af2007-06-02 19:47:04 +0000580//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +0000581// LValue Expression Emission
Chris Lattnera45c5af2007-06-02 19:47:04 +0000582//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +0000583
Daniel Dunbarc79407f2009-02-05 07:09:07 +0000584RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000585 if (Ty->isVoidType())
Daniel Dunbarc79407f2009-02-05 07:09:07 +0000586 return RValue::get(0);
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000587
588 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) {
Chris Lattner2192fe52011-07-18 04:24:23 +0000589 llvm::Type *EltTy = ConvertType(CTy->getElementType());
Owen Anderson7ec07a52009-07-30 23:11:26 +0000590 llvm::Value *U = llvm::UndefValue::get(EltTy);
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000591 return RValue::getComplex(std::make_pair(U, U));
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000592 }
593
Chris Lattner65526f02010-08-23 05:26:13 +0000594 // If this is a use of an undefined aggregate type, the aggregate must have an
595 // identifiable address. Just because the contents of the value are undefined
596 // doesn't mean that the address can't be taken and compared.
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000597 if (hasAggregateLLVMType(Ty)) {
Chris Lattner65526f02010-08-23 05:26:13 +0000598 llvm::Value *DestPtr = CreateMemTemp(Ty, "undef.agg.tmp");
599 return RValue::getAggregate(DestPtr);
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000600 }
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000601
602 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbarbb197e42009-01-09 16:50:52 +0000603}
604
Daniel Dunbarc79407f2009-02-05 07:09:07 +0000605RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
606 const char *Name) {
607 ErrorUnsupported(E, Name);
608 return GetUndefRValue(E->getType());
609}
610
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000611LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
612 const char *Name) {
613 ErrorUnsupported(E, Name);
Owen Anderson9793f0e2009-07-29 22:16:19 +0000614 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +0000615 return MakeAddrLValue(llvm::UndefValue::get(Ty), E->getType());
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000616}
617
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000618LValue CodeGenFunction::EmitCheckedLValue(const Expr *E) {
619 LValue LV = EmitLValue(E);
Daniel Dunbardc406b82010-04-05 21:36:35 +0000620 if (!isa<DeclRefExpr>(E) && !LV.isBitField() && LV.isSimple())
Ken Dyck705ba072011-01-19 01:58:38 +0000621 EmitCheck(LV.getAddress(),
622 getContext().getTypeSizeInChars(E->getType()).getQuantity());
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000623 return LV;
624}
625
Chris Lattner8394d792007-06-05 20:53:16 +0000626/// EmitLValue - Emit code to compute a designator that specifies the location
627/// of the expression.
628///
Mike Stump4a3999f2009-09-09 13:00:44 +0000629/// This can return one of two things: a simple address or a bitfield reference.
630/// In either case, the LLVM Value* in the LValue structure is guaranteed to be
631/// an LLVM pointer type.
Chris Lattner8394d792007-06-05 20:53:16 +0000632///
Mike Stump4a3999f2009-09-09 13:00:44 +0000633/// If this returns a bitfield reference, nothing about the pointee type of the
634/// LLVM value is known: For example, it may not be a pointer to an integer.
Chris Lattner8394d792007-06-05 20:53:16 +0000635///
Mike Stump4a3999f2009-09-09 13:00:44 +0000636/// If this returns a normal address, and if the lvalue's C type is fixed size,
637/// this method guarantees that the returned pointer type will point to an LLVM
638/// type of the same size of the lvalue's type. If the lvalue has a variable
639/// length type, this is not possible.
Chris Lattner8394d792007-06-05 20:53:16 +0000640///
Chris Lattnerd7f58862007-06-02 05:24:33 +0000641LValue CodeGenFunction::EmitLValue(const Expr *E) {
642 switch (E->getStmtClass()) {
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000643 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattnerd7f58862007-06-02 05:24:33 +0000644
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +0000645 case Expr::ObjCSelectorExprClass:
646 return EmitObjCSelectorLValue(cast<ObjCSelectorExpr>(E));
Fariborz Jahanian531c16f2009-12-09 23:35:29 +0000647 case Expr::ObjCIsaExprClass:
648 return EmitObjCIsaExpr(cast<ObjCIsaExpr>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000649 case Expr::BinaryOperatorClass:
Daniel Dunbar8cde00a2008-09-04 03:20:13 +0000650 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor914af212010-04-23 04:16:32 +0000651 case Expr::CompoundAssignOperatorClass:
John McCalla2342eb2010-12-05 02:00:02 +0000652 if (!E->getType()->isAnyComplexType())
653 return EmitCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
654 return EmitComplexCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000655 case Expr::CallExprClass:
Anders Carlssonc82555f2009-09-01 21:18:52 +0000656 case Expr::CXXMemberCallExprClass:
Douglas Gregor993603d2008-11-14 16:09:21 +0000657 case Expr::CXXOperatorCallExprClass:
658 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +0000659 case Expr::VAArgExprClass:
660 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000661 case Expr::DeclRefExprClass:
Douglas Gregorc7acfdf2009-01-06 05:10:23 +0000662 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Eric Christopherd98e4242011-09-08 17:15:04 +0000663 case Expr::ParenExprClass:
664 return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Peter Collingbourne91147592011-04-15 00:35:48 +0000665 case Expr::GenericSelectionExprClass:
666 return EmitLValue(cast<GenericSelectionExpr>(E)->getResultExpr());
Chris Lattner6307f192008-08-10 01:53:14 +0000667 case Expr::PredefinedExprClass:
668 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4347e3692007-06-06 04:54:52 +0000669 case Expr::StringLiteralClass:
670 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +0000671 case Expr::ObjCEncodeExprClass:
672 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner4bd55962008-03-30 23:03:07 +0000673
Mike Stump4a3999f2009-09-09 13:00:44 +0000674 case Expr::BlockDeclRefExprClass:
Mike Stump1db7d042009-02-28 09:07:16 +0000675 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
676
Anders Carlsson3be22e22009-05-30 23:23:33 +0000677 case Expr::CXXTemporaryObjectExprClass:
678 case Expr::CXXConstructExprClass:
Anders Carlssonfd2af0c2009-05-30 23:30:54 +0000679 return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
680 case Expr::CXXBindTemporaryExprClass:
681 return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
John McCall5d413782010-12-06 08:20:24 +0000682 case Expr::ExprWithCleanupsClass:
683 return EmitExprWithCleanupsLValue(cast<ExprWithCleanups>(E));
Douglas Gregor747eb782010-07-08 06:14:04 +0000684 case Expr::CXXScalarValueInitExprClass:
685 return EmitNullInitializationLValue(cast<CXXScalarValueInitExpr>(E));
Anders Carlsson52ce3bb2009-11-14 01:51:50 +0000686 case Expr::CXXDefaultArgExprClass:
687 return EmitLValue(cast<CXXDefaultArgExpr>(E)->getExpr());
Mike Stumpc9b231c2009-11-15 08:09:41 +0000688 case Expr::CXXTypeidExprClass:
689 return EmitCXXTypeidLValue(cast<CXXTypeidExpr>(E));
Anders Carlssonfd2af0c2009-05-30 23:30:54 +0000690
Daniel Dunbarc8317a42008-08-23 10:51:21 +0000691 case Expr::ObjCMessageExprClass:
692 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000693 case Expr::ObjCIvarRefExprClass:
Chris Lattner4bd55962008-03-30 23:03:07 +0000694 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000695 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000696 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Chris Lattnera4185c52009-04-25 19:35:26 +0000697 case Expr::StmtExprClass:
698 return EmitStmtExprLValue(cast<StmtExpr>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000699 case Expr::UnaryOperatorClass:
Chris Lattner8394d792007-06-05 20:53:16 +0000700 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000701 case Expr::ArraySubscriptExprClass:
702 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemance4d7fc2008-04-18 23:10:10 +0000703 case Expr::ExtVectorElementExprClass:
704 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000705 case Expr::MemberExprClass:
Douglas Gregorc1905232009-08-26 22:36:53 +0000706 return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman9fd8b682008-05-13 23:18:27 +0000707 case Expr::CompoundLiteralExprClass:
708 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +0000709 case Expr::ConditionalOperatorClass:
Anders Carlsson1450adb2009-09-15 16:35:24 +0000710 return EmitConditionalOperatorLValue(cast<ConditionalOperator>(E));
John McCallc07a0c72011-02-17 10:25:35 +0000711 case Expr::BinaryConditionalOperatorClass:
712 return EmitConditionalOperatorLValue(cast<BinaryConditionalOperator>(E));
Chris Lattner053441f2008-12-12 05:35:08 +0000713 case Expr::ChooseExprClass:
Eli Friedmane0a5b8b2009-03-04 05:52:32 +0000714 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
John McCall1bf58462011-02-16 08:02:54 +0000715 case Expr::OpaqueValueExprClass:
716 return EmitOpaqueValueLValue(cast<OpaqueValueExpr>(E));
John McCall7c454bb2011-07-15 05:09:51 +0000717 case Expr::SubstNonTypeTemplateParmExprClass:
718 return EmitLValue(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement());
Chris Lattner63d06ab2009-03-18 04:02:57 +0000719 case Expr::ImplicitCastExprClass:
720 case Expr::CStyleCastExprClass:
721 case Expr::CXXFunctionalCastExprClass:
722 case Expr::CXXStaticCastExprClass:
723 case Expr::CXXDynamicCastExprClass:
724 case Expr::CXXReinterpretCastExprClass:
725 case Expr::CXXConstCastExprClass:
John McCall31168b02011-06-15 23:02:42 +0000726 case Expr::ObjCBridgedCastExprClass:
Chris Lattner28bcf1a2009-03-18 18:28:57 +0000727 return EmitCastLValue(cast<CastExpr>(E));
Douglas Gregorfe314812011-06-21 17:03:29 +0000728
729 case Expr::MaterializeTemporaryExprClass:
730 return EmitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(E));
Chris Lattnerd7f58862007-06-02 05:24:33 +0000731 }
732}
733
John McCall1553b192011-06-16 04:16:24 +0000734llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue) {
735 return EmitLoadOfScalar(lvalue.getAddress(), lvalue.isVolatile(),
736 lvalue.getAlignment(), lvalue.getType(),
737 lvalue.getTBAAInfo());
738}
739
Daniel Dunbar1d425462009-02-10 00:57:50 +0000740llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
Dan Gohman947c9af2010-10-14 23:06:10 +0000741 unsigned Alignment, QualType Ty,
742 llvm::MDNode *TBAAInfo) {
Daniel Dunbarc76493a2009-11-29 21:23:36 +0000743 llvm::LoadInst *Load = Builder.CreateLoad(Addr, "tmp");
744 if (Volatile)
745 Load->setVolatile(true);
Daniel Dunbar03816342010-08-21 02:24:36 +0000746 if (Alignment)
747 Load->setAlignment(Alignment);
Dan Gohman947c9af2010-10-14 23:06:10 +0000748 if (TBAAInfo)
749 CGM.DecorateInstruction(Load, TBAAInfo);
Daniel Dunbar1d425462009-02-10 00:57:50 +0000750
John McCall3a7f6922010-10-27 20:58:56 +0000751 return EmitFromMemory(Load, Ty);
Daniel Dunbar1d425462009-02-10 00:57:50 +0000752}
753
Douglas Gregor0bf31402010-10-08 23:50:27 +0000754static bool isBooleanUnderlyingType(QualType Ty) {
755 if (const EnumType *ET = dyn_cast<EnumType>(Ty))
756 return ET->getDecl()->getIntegerType()->isBooleanType();
757 return false;
758}
759
John McCall3a7f6922010-10-27 20:58:56 +0000760llvm::Value *CodeGenFunction::EmitToMemory(llvm::Value *Value, QualType Ty) {
761 // Bool has a different representation in memory than in registers.
762 if (Ty->isBooleanType() || isBooleanUnderlyingType(Ty)) {
763 // This should really always be an i1, but sometimes it's already
764 // an i8, and it's awkward to track those cases down.
765 if (Value->getType()->isIntegerTy(1))
766 return Builder.CreateZExt(Value, Builder.getInt8Ty(), "frombool");
767 assert(Value->getType()->isIntegerTy(8) && "value rep of bool not i1/i8");
768 }
769
770 return Value;
771}
772
773llvm::Value *CodeGenFunction::EmitFromMemory(llvm::Value *Value, QualType Ty) {
774 // Bool has a different representation in memory than in registers.
775 if (Ty->isBooleanType() || isBooleanUnderlyingType(Ty)) {
776 assert(Value->getType()->isIntegerTy(8) && "memory rep of bool not i8");
777 return Builder.CreateTrunc(Value, Builder.getInt1Ty(), "tobool");
778 }
779
780 return Value;
781}
782
Daniel Dunbar1d425462009-02-10 00:57:50 +0000783void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Daniel Dunbar03816342010-08-21 02:24:36 +0000784 bool Volatile, unsigned Alignment,
Dan Gohman947c9af2010-10-14 23:06:10 +0000785 QualType Ty,
786 llvm::MDNode *TBAAInfo) {
John McCall3a7f6922010-10-27 20:58:56 +0000787 Value = EmitToMemory(Value, Ty);
Chris Lattner1a5f8972011-07-10 03:38:35 +0000788
Daniel Dunbar03816342010-08-21 02:24:36 +0000789 llvm::StoreInst *Store = Builder.CreateStore(Value, Addr, Volatile);
790 if (Alignment)
791 Store->setAlignment(Alignment);
Dan Gohman947c9af2010-10-14 23:06:10 +0000792 if (TBAAInfo)
793 CGM.DecorateInstruction(Store, TBAAInfo);
Daniel Dunbar1d425462009-02-10 00:57:50 +0000794}
795
John McCall1553b192011-06-16 04:16:24 +0000796void CodeGenFunction::EmitStoreOfScalar(llvm::Value *value, LValue lvalue) {
797 EmitStoreOfScalar(value, lvalue.getAddress(), lvalue.isVolatile(),
798 lvalue.getAlignment(), lvalue.getType(),
799 lvalue.getTBAAInfo());
800}
801
Mike Stump4a3999f2009-09-09 13:00:44 +0000802/// EmitLoadOfLValue - Given an expression that represents a value lvalue, this
803/// method emits the address of the lvalue, then loads the result as an rvalue,
804/// returning the rvalue.
John McCall55e1fbc2011-06-25 02:11:03 +0000805RValue CodeGenFunction::EmitLoadOfLValue(LValue LV) {
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000806 if (LV.isObjCWeak()) {
Mike Stump4a3999f2009-09-09 13:00:44 +0000807 // load of a __weak object.
Fariborz Jahanianf5125d12008-11-18 21:45:40 +0000808 llvm::Value *AddrWeakObj = LV.getAddress();
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000809 return RValue::get(CGM.getObjCRuntime().EmitObjCWeakRead(*this,
810 AddrWeakObj));
Fariborz Jahanianf5125d12008-11-18 21:45:40 +0000811 }
John McCall31168b02011-06-15 23:02:42 +0000812 if (LV.getQuals().getObjCLifetime() == Qualifiers::OCL_Weak)
813 return RValue::get(EmitARCLoadWeak(LV.getAddress()));
Mike Stump4a3999f2009-09-09 13:00:44 +0000814
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000815 if (LV.isSimple()) {
John McCalld68b2d02011-06-27 21:24:11 +0000816 assert(!LV.getType()->isFunctionType());
Mike Stump4a3999f2009-09-09 13:00:44 +0000817
John McCalla1dee5302010-08-22 10:59:02 +0000818 // Everything needs a load.
John McCall55e1fbc2011-06-25 02:11:03 +0000819 return RValue::get(EmitLoadOfScalar(LV));
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000820 }
Mike Stump4a3999f2009-09-09 13:00:44 +0000821
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000822 if (LV.isVectorElt()) {
Eli Friedman327944b2008-06-13 23:01:12 +0000823 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
824 LV.isVolatileQualified(), "tmp");
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000825 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
826 "vecext"));
827 }
Chris Lattner73ab9b32007-08-03 00:16:29 +0000828
829 // If this is a reference to a subset of the elements of a vector, either
830 // shuffle the input or extract/insert them as appropriate.
Nate Begemance4d7fc2008-04-18 23:10:10 +0000831 if (LV.isExtVectorElt())
John McCall55e1fbc2011-06-25 02:11:03 +0000832 return EmitLoadOfExtVectorElementLValue(LV);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000833
Daniel Dunbardc406b82010-04-05 21:36:35 +0000834 if (LV.isBitField())
John McCall55e1fbc2011-06-25 02:11:03 +0000835 return EmitLoadOfBitfieldLValue(LV);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000836
John McCallf3eb96f2010-12-04 02:32:38 +0000837 assert(LV.isPropertyRef() && "Unknown LValue type!");
838 return EmitLoadOfPropertyRefLValue(LV);
Chris Lattner8394d792007-06-05 20:53:16 +0000839}
840
John McCall55e1fbc2011-06-25 02:11:03 +0000841RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV) {
Daniel Dunbar196ea442010-04-06 01:07:44 +0000842 const CGBitFieldInfo &Info = LV.getBitFieldInfo();
Daniel Dunbaread7c912008-08-06 05:08:45 +0000843
Daniel Dunbar3447a022010-04-13 23:34:15 +0000844 // Get the output type.
Chris Lattner2192fe52011-07-18 04:24:23 +0000845 llvm::Type *ResLTy = ConvertType(LV.getType());
Daniel Dunbar3447a022010-04-13 23:34:15 +0000846 unsigned ResSizeInBits = CGM.getTargetData().getTypeSizeInBits(ResLTy);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000847
Daniel Dunbar3447a022010-04-13 23:34:15 +0000848 // Compute the result as an OR of all of the individual component accesses.
849 llvm::Value *Res = 0;
850 for (unsigned i = 0, e = Info.getNumComponents(); i != e; ++i) {
851 const CGBitFieldInfo::AccessInfo &AI = Info.getComponent(i);
Mike Stump4a3999f2009-09-09 13:00:44 +0000852
Daniel Dunbar3447a022010-04-13 23:34:15 +0000853 // Get the field pointer.
854 llvm::Value *Ptr = LV.getBitFieldBaseAddr();
Mike Stump4a3999f2009-09-09 13:00:44 +0000855
Daniel Dunbar3447a022010-04-13 23:34:15 +0000856 // Only offset by the field index if used, so that incoming values are not
857 // required to be structures.
858 if (AI.FieldIndex)
859 Ptr = Builder.CreateStructGEP(Ptr, AI.FieldIndex, "bf.field");
Mike Stump4a3999f2009-09-09 13:00:44 +0000860
Daniel Dunbar3447a022010-04-13 23:34:15 +0000861 // Offset by the byte offset, if used.
Ken Dyckf76759c2011-04-24 10:04:59 +0000862 if (!AI.FieldByteOffset.isZero()) {
John McCallad7c5c12011-02-08 08:22:06 +0000863 Ptr = EmitCastToVoidPtr(Ptr);
Ken Dyckf76759c2011-04-24 10:04:59 +0000864 Ptr = Builder.CreateConstGEP1_32(Ptr, AI.FieldByteOffset.getQuantity(),
865 "bf.field.offs");
Daniel Dunbar3447a022010-04-13 23:34:15 +0000866 }
Mike Stump4a3999f2009-09-09 13:00:44 +0000867
Daniel Dunbar3447a022010-04-13 23:34:15 +0000868 // Cast to the access type.
Chris Lattner2192fe52011-07-18 04:24:23 +0000869 llvm::Type *PTy = llvm::Type::getIntNPtrTy(getLLVMContext(),
John McCallad7c5c12011-02-08 08:22:06 +0000870 AI.AccessWidth,
John McCall55e1fbc2011-06-25 02:11:03 +0000871 CGM.getContext().getTargetAddressSpace(LV.getType()));
Daniel Dunbar3447a022010-04-13 23:34:15 +0000872 Ptr = Builder.CreateBitCast(Ptr, PTy);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000873
Daniel Dunbar3447a022010-04-13 23:34:15 +0000874 // Perform the load.
875 llvm::LoadInst *Load = Builder.CreateLoad(Ptr, LV.isVolatileQualified());
Ken Dyck27337a82011-04-24 10:13:17 +0000876 if (!AI.AccessAlignment.isZero())
877 Load->setAlignment(AI.AccessAlignment.getQuantity());
Daniel Dunbar3447a022010-04-13 23:34:15 +0000878
879 // Shift out unused low bits and mask out unused high bits.
880 llvm::Value *Val = Load;
881 if (AI.FieldBitStart)
Daniel Dunbar67aba792010-04-15 03:47:33 +0000882 Val = Builder.CreateLShr(Load, AI.FieldBitStart);
Daniel Dunbar3447a022010-04-13 23:34:15 +0000883 Val = Builder.CreateAnd(Val, llvm::APInt::getLowBitsSet(AI.AccessWidth,
884 AI.TargetBitWidth),
885 "bf.clear");
886
887 // Extend or truncate to the target size.
888 if (AI.AccessWidth < ResSizeInBits)
889 Val = Builder.CreateZExt(Val, ResLTy);
890 else if (AI.AccessWidth > ResSizeInBits)
891 Val = Builder.CreateTrunc(Val, ResLTy);
892
893 // Shift into place, and OR into the result.
894 if (AI.TargetBitOffset)
895 Val = Builder.CreateShl(Val, AI.TargetBitOffset);
896 Res = Res ? Builder.CreateOr(Res, Val) : Val;
Daniel Dunbaread7c912008-08-06 05:08:45 +0000897 }
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000898
Daniel Dunbar3447a022010-04-13 23:34:15 +0000899 // If the bit-field is signed, perform the sign-extension.
900 //
901 // FIXME: This can easily be folded into the load of the high bits, which
902 // could also eliminate the mask of high bits in some situations.
903 if (Info.isSigned()) {
Daniel Dunbar67aba792010-04-15 03:47:33 +0000904 unsigned ExtraBits = ResSizeInBits - Info.getSize();
Daniel Dunbar3447a022010-04-13 23:34:15 +0000905 if (ExtraBits)
906 Res = Builder.CreateAShr(Builder.CreateShl(Res, ExtraBits),
907 ExtraBits, "bf.val.sext");
Daniel Dunbaread7c912008-08-06 05:08:45 +0000908 }
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000909
Daniel Dunbar3447a022010-04-13 23:34:15 +0000910 return RValue::get(Res);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000911}
912
Nate Begemanb699c9b2009-01-18 06:42:49 +0000913// If this is a reference to a subset of the elements of a vector, create an
914// appropriate shufflevector.
John McCall55e1fbc2011-06-25 02:11:03 +0000915RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV) {
Eli Friedman327944b2008-06-13 23:01:12 +0000916 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
917 LV.isVolatileQualified(), "tmp");
Mike Stump4a3999f2009-09-09 13:00:44 +0000918
Nate Begemanf322eab2008-05-09 06:41:27 +0000919 const llvm::Constant *Elts = LV.getExtVectorElts();
Mike Stump4a3999f2009-09-09 13:00:44 +0000920
921 // If the result of the expression is a non-vector type, we must be extracting
922 // a single element. Just codegen as an extractelement.
John McCall55e1fbc2011-06-25 02:11:03 +0000923 const VectorType *ExprVT = LV.getType()->getAs<VectorType>();
Chris Lattner8eab8ff2007-08-10 17:10:08 +0000924 if (!ExprVT) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000925 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner5e016ae2010-06-27 07:15:29 +0000926 llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx);
Chris Lattner40ff7012007-08-03 16:18:34 +0000927 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
928 }
Nate Begemanb699c9b2009-01-18 06:42:49 +0000929
930 // Always use shuffle vector to try to retain the original program structure
Chris Lattner8eab8ff2007-08-10 17:10:08 +0000931 unsigned NumResultElts = ExprVT->getNumElements();
Mike Stump4a3999f2009-09-09 13:00:44 +0000932
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000933 SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner40ff7012007-08-03 16:18:34 +0000934 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000935 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner5e016ae2010-06-27 07:15:29 +0000936 Mask.push_back(llvm::ConstantInt::get(Int32Ty, InIdx));
Chris Lattner40ff7012007-08-03 16:18:34 +0000937 }
Mike Stump4a3999f2009-09-09 13:00:44 +0000938
Chris Lattner91c08ad2011-02-15 00:14:06 +0000939 llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
940 Vec = Builder.CreateShuffleVector(Vec, llvm::UndefValue::get(Vec->getType()),
Nate Begemanb699c9b2009-01-18 06:42:49 +0000941 MaskV, "tmp");
942 return RValue::get(Vec);
Chris Lattner40ff7012007-08-03 16:18:34 +0000943}
944
945
Chris Lattner9369a562007-06-29 16:31:29 +0000946
Chris Lattner8394d792007-06-05 20:53:16 +0000947/// EmitStoreThroughLValue - Store the specified rvalue into the specified
948/// lvalue, where both are guaranteed to the have the same type, and that type
949/// is 'Ty'.
John McCall55e1fbc2011-06-25 02:11:03 +0000950void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst) {
Chris Lattner41d480e2007-08-03 16:28:33 +0000951 if (!Dst.isSimple()) {
952 if (Dst.isVectorElt()) {
953 // Read/modify/write the vector, inserting the new element.
Eli Friedman327944b2008-06-13 23:01:12 +0000954 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
955 Dst.isVolatileQualified(), "tmp");
Chris Lattner4647a212007-08-31 22:49:20 +0000956 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner41d480e2007-08-03 16:28:33 +0000957 Dst.getVectorIdx(), "vecins");
Eli Friedman327944b2008-06-13 23:01:12 +0000958 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner41d480e2007-08-03 16:28:33 +0000959 return;
960 }
Mike Stump4a3999f2009-09-09 13:00:44 +0000961
Nate Begemance4d7fc2008-04-18 23:10:10 +0000962 // If this is an update of extended vector elements, insert them as
963 // appropriate.
964 if (Dst.isExtVectorElt())
John McCall55e1fbc2011-06-25 02:11:03 +0000965 return EmitStoreThroughExtVectorComponentLValue(Src, Dst);
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000966
Daniel Dunbardc406b82010-04-05 21:36:35 +0000967 if (Dst.isBitField())
John McCall55e1fbc2011-06-25 02:11:03 +0000968 return EmitStoreThroughBitfieldLValue(Src, Dst);
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000969
John McCallf3eb96f2010-12-04 02:32:38 +0000970 assert(Dst.isPropertyRef() && "Unknown LValue type");
971 return EmitStoreThroughPropertyRefLValue(Src, Dst);
Chris Lattner41d480e2007-08-03 16:28:33 +0000972 }
Mike Stump4a3999f2009-09-09 13:00:44 +0000973
John McCall31168b02011-06-15 23:02:42 +0000974 // There's special magic for assigning into an ARC-qualified l-value.
975 if (Qualifiers::ObjCLifetime Lifetime = Dst.getQuals().getObjCLifetime()) {
976 switch (Lifetime) {
977 case Qualifiers::OCL_None:
978 llvm_unreachable("present but none");
979
980 case Qualifiers::OCL_ExplicitNone:
981 // nothing special
982 break;
983
984 case Qualifiers::OCL_Strong:
John McCall55e1fbc2011-06-25 02:11:03 +0000985 EmitARCStoreStrong(Dst, Src.getScalarVal(), /*ignore*/ true);
John McCall31168b02011-06-15 23:02:42 +0000986 return;
987
988 case Qualifiers::OCL_Weak:
989 EmitARCStoreWeak(Dst.getAddress(), Src.getScalarVal(), /*ignore*/ true);
990 return;
991
992 case Qualifiers::OCL_Autoreleasing:
John McCall55e1fbc2011-06-25 02:11:03 +0000993 Src = RValue::get(EmitObjCExtendObjectLifetime(Dst.getType(),
994 Src.getScalarVal()));
John McCall31168b02011-06-15 23:02:42 +0000995 // fall into the normal path
996 break;
997 }
998 }
999
Fariborz Jahanian10bec102009-02-21 00:30:43 +00001000 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Mike Stump4a3999f2009-09-09 13:00:44 +00001001 // load of a __weak object.
Fariborz Jahanian50a12702008-11-19 17:34:06 +00001002 llvm::Value *LvalueDst = Dst.getAddress();
1003 llvm::Value *src = Src.getScalarVal();
Mike Stumpca5ae662009-04-14 00:57:29 +00001004 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahanian50a12702008-11-19 17:34:06 +00001005 return;
1006 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001007
Fariborz Jahanian10bec102009-02-21 00:30:43 +00001008 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Mike Stump4a3999f2009-09-09 13:00:44 +00001009 // load of a __strong object.
Fariborz Jahanian50a12702008-11-19 17:34:06 +00001010 llvm::Value *LvalueDst = Dst.getAddress();
1011 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001012 if (Dst.isObjCIvar()) {
1013 assert(Dst.getBaseIvarExp() && "BaseIvarExp is NULL");
Chris Lattner2192fe52011-07-18 04:24:23 +00001014 llvm::Type *ResultType = ConvertType(getContext().LongTy);
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001015 llvm::Value *RHS = EmitScalarExpr(Dst.getBaseIvarExp());
Fariborz Jahanian1f9ed582009-09-25 00:00:20 +00001016 llvm::Value *dst = RHS;
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001017 RHS = Builder.CreatePtrToInt(RHS, ResultType, "sub.ptr.rhs.cast");
1018 llvm::Value *LHS =
1019 Builder.CreatePtrToInt(LvalueDst, ResultType, "sub.ptr.lhs.cast");
1020 llvm::Value *BytesBetween = Builder.CreateSub(LHS, RHS, "ivar.offset");
Fariborz Jahanian1f9ed582009-09-25 00:00:20 +00001021 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, dst,
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001022 BytesBetween);
Fariborz Jahanian217af242010-07-20 20:30:03 +00001023 } else if (Dst.isGlobalObjCRef()) {
1024 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst,
1025 Dst.isThreadLocalRef());
1026 }
Fariborz Jahanian32ff7ae2009-05-04 23:27:20 +00001027 else
1028 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahanian50a12702008-11-19 17:34:06 +00001029 return;
1030 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001031
Chris Lattner6278e6a2007-08-11 00:04:45 +00001032 assert(Src.isScalar() && "Can't emit an agg store with this method");
John McCall1553b192011-06-16 04:16:24 +00001033 EmitStoreOfScalar(Src.getScalarVal(), Dst);
Chris Lattner8394d792007-06-05 20:53:16 +00001034}
1035
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +00001036void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001037 llvm::Value **Result) {
Daniel Dunbar196ea442010-04-06 01:07:44 +00001038 const CGBitFieldInfo &Info = Dst.getBitFieldInfo();
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +00001039
Daniel Dunbar67aba792010-04-15 03:47:33 +00001040 // Get the output type.
Chris Lattner2192fe52011-07-18 04:24:23 +00001041 llvm::Type *ResLTy = ConvertTypeForMem(Dst.getType());
Daniel Dunbar67aba792010-04-15 03:47:33 +00001042 unsigned ResSizeInBits = CGM.getTargetData().getTypeSizeInBits(ResLTy);
Daniel Dunbaread7c912008-08-06 05:08:45 +00001043
Daniel Dunbar67aba792010-04-15 03:47:33 +00001044 // Get the source value, truncated to the width of the bit-field.
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001045 llvm::Value *SrcVal = Src.getScalarVal();
Anders Carlsson8345a702010-04-17 21:52:22 +00001046
John McCall55e1fbc2011-06-25 02:11:03 +00001047 if (Dst.getType()->isBooleanType())
Anders Carlsson8345a702010-04-17 21:52:22 +00001048 SrcVal = Builder.CreateIntCast(SrcVal, ResLTy, /*IsSigned=*/false);
1049
Daniel Dunbar67aba792010-04-15 03:47:33 +00001050 SrcVal = Builder.CreateAnd(SrcVal, llvm::APInt::getLowBitsSet(ResSizeInBits,
1051 Info.getSize()),
1052 "bf.value");
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +00001053
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001054 // Return the new value of the bit-field, if requested.
1055 if (Result) {
1056 // Cast back to the proper type for result.
Chris Lattner2192fe52011-07-18 04:24:23 +00001057 llvm::Type *SrcTy = Src.getScalarVal()->getType();
Daniel Dunbar67aba792010-04-15 03:47:33 +00001058 llvm::Value *ReloadVal = Builder.CreateIntCast(SrcVal, SrcTy, false,
1059 "bf.reload.val");
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001060
1061 // Sign extend if necessary.
Daniel Dunbar67aba792010-04-15 03:47:33 +00001062 if (Info.isSigned()) {
1063 unsigned ExtraBits = ResSizeInBits - Info.getSize();
1064 if (ExtraBits)
1065 ReloadVal = Builder.CreateAShr(Builder.CreateShl(ReloadVal, ExtraBits),
1066 ExtraBits, "bf.reload.sext");
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001067 }
1068
Daniel Dunbar67aba792010-04-15 03:47:33 +00001069 *Result = ReloadVal;
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001070 }
1071
Daniel Dunbar67aba792010-04-15 03:47:33 +00001072 // Iterate over the components, writing each piece to memory.
1073 for (unsigned i = 0, e = Info.getNumComponents(); i != e; ++i) {
1074 const CGBitFieldInfo::AccessInfo &AI = Info.getComponent(i);
Eli Friedmanf2442dc2008-05-17 20:03:47 +00001075
Daniel Dunbar67aba792010-04-15 03:47:33 +00001076 // Get the field pointer.
1077 llvm::Value *Ptr = Dst.getBitFieldBaseAddr();
John McCallad7c5c12011-02-08 08:22:06 +00001078 unsigned addressSpace =
1079 cast<llvm::PointerType>(Ptr->getType())->getAddressSpace();
Mike Stump4a3999f2009-09-09 13:00:44 +00001080
Daniel Dunbar67aba792010-04-15 03:47:33 +00001081 // Only offset by the field index if used, so that incoming values are not
1082 // required to be structures.
1083 if (AI.FieldIndex)
1084 Ptr = Builder.CreateStructGEP(Ptr, AI.FieldIndex, "bf.field");
Mike Stump4a3999f2009-09-09 13:00:44 +00001085
Daniel Dunbar67aba792010-04-15 03:47:33 +00001086 // Offset by the byte offset, if used.
Ken Dyckf76759c2011-04-24 10:04:59 +00001087 if (!AI.FieldByteOffset.isZero()) {
John McCallad7c5c12011-02-08 08:22:06 +00001088 Ptr = EmitCastToVoidPtr(Ptr);
Ken Dyckf76759c2011-04-24 10:04:59 +00001089 Ptr = Builder.CreateConstGEP1_32(Ptr, AI.FieldByteOffset.getQuantity(),
1090 "bf.field.offs");
Daniel Dunbar67aba792010-04-15 03:47:33 +00001091 }
Eli Friedmanf2442dc2008-05-17 20:03:47 +00001092
Daniel Dunbar67aba792010-04-15 03:47:33 +00001093 // Cast to the access type.
Chris Lattner2192fe52011-07-18 04:24:23 +00001094 llvm::Type *AccessLTy =
John McCallad7c5c12011-02-08 08:22:06 +00001095 llvm::Type::getIntNTy(getLLVMContext(), AI.AccessWidth);
1096
Chris Lattner2192fe52011-07-18 04:24:23 +00001097 llvm::Type *PTy = AccessLTy->getPointerTo(addressSpace);
Daniel Dunbar67aba792010-04-15 03:47:33 +00001098 Ptr = Builder.CreateBitCast(Ptr, PTy);
Mike Stump4a3999f2009-09-09 13:00:44 +00001099
Daniel Dunbar67aba792010-04-15 03:47:33 +00001100 // Extract the piece of the bit-field value to write in this access, limited
1101 // to the values that are part of this access.
1102 llvm::Value *Val = SrcVal;
1103 if (AI.TargetBitOffset)
1104 Val = Builder.CreateLShr(Val, AI.TargetBitOffset);
1105 Val = Builder.CreateAnd(Val, llvm::APInt::getLowBitsSet(ResSizeInBits,
1106 AI.TargetBitWidth));
Mike Stump4a3999f2009-09-09 13:00:44 +00001107
Daniel Dunbar67aba792010-04-15 03:47:33 +00001108 // Extend or truncate to the access size.
Daniel Dunbar67aba792010-04-15 03:47:33 +00001109 if (ResSizeInBits < AI.AccessWidth)
1110 Val = Builder.CreateZExt(Val, AccessLTy);
1111 else if (ResSizeInBits > AI.AccessWidth)
1112 Val = Builder.CreateTrunc(Val, AccessLTy);
Mike Stump4a3999f2009-09-09 13:00:44 +00001113
Daniel Dunbar67aba792010-04-15 03:47:33 +00001114 // Shift into the position in memory.
1115 if (AI.FieldBitStart)
1116 Val = Builder.CreateShl(Val, AI.FieldBitStart);
1117
1118 // If necessary, load and OR in bits that are outside of the bit-field.
1119 if (AI.TargetBitWidth != AI.AccessWidth) {
1120 llvm::LoadInst *Load = Builder.CreateLoad(Ptr, Dst.isVolatileQualified());
Ken Dyck27337a82011-04-24 10:13:17 +00001121 if (!AI.AccessAlignment.isZero())
1122 Load->setAlignment(AI.AccessAlignment.getQuantity());
Daniel Dunbar67aba792010-04-15 03:47:33 +00001123
1124 // Compute the mask for zeroing the bits that are part of the bit-field.
1125 llvm::APInt InvMask =
1126 ~llvm::APInt::getBitsSet(AI.AccessWidth, AI.FieldBitStart,
1127 AI.FieldBitStart + AI.TargetBitWidth);
1128
1129 // Apply the mask and OR in to the value to write.
1130 Val = Builder.CreateOr(Builder.CreateAnd(Load, InvMask), Val);
1131 }
1132
1133 // Write the value.
1134 llvm::StoreInst *Store = Builder.CreateStore(Val, Ptr,
1135 Dst.isVolatileQualified());
Ken Dyck27337a82011-04-24 10:13:17 +00001136 if (!AI.AccessAlignment.isZero())
1137 Store->setAlignment(AI.AccessAlignment.getQuantity());
Daniel Dunbaread7c912008-08-06 05:08:45 +00001138 }
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +00001139}
1140
Nate Begemance4d7fc2008-04-18 23:10:10 +00001141void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
John McCall55e1fbc2011-06-25 02:11:03 +00001142 LValue Dst) {
Chris Lattner41d480e2007-08-03 16:28:33 +00001143 // This access turns into a read/modify/write of the vector. Load the input
1144 // value now.
Eli Friedman327944b2008-06-13 23:01:12 +00001145 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
1146 Dst.isVolatileQualified(), "tmp");
Nate Begemanf322eab2008-05-09 06:41:27 +00001147 const llvm::Constant *Elts = Dst.getExtVectorElts();
Mike Stump4a3999f2009-09-09 13:00:44 +00001148
Chris Lattner4647a212007-08-31 22:49:20 +00001149 llvm::Value *SrcVal = Src.getScalarVal();
Mike Stump4a3999f2009-09-09 13:00:44 +00001150
John McCall55e1fbc2011-06-25 02:11:03 +00001151 if (const VectorType *VTy = Dst.getType()->getAs<VectorType>()) {
Chris Lattner3a44aa72007-08-03 16:37:04 +00001152 unsigned NumSrcElts = VTy->getNumElements();
Nate Begemanb699c9b2009-01-18 06:42:49 +00001153 unsigned NumDstElts =
1154 cast<llvm::VectorType>(Vec->getType())->getNumElements();
1155 if (NumDstElts == NumSrcElts) {
Mike Stump4a3999f2009-09-09 13:00:44 +00001156 // Use shuffle vector is the src and destination are the same number of
1157 // elements and restore the vector mask since it is on the side it will be
1158 // stored.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001159 SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
Nate Begemanb699c9b2009-01-18 06:42:49 +00001160 for (unsigned i = 0; i != NumSrcElts; ++i) {
1161 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner5e016ae2010-06-27 07:15:29 +00001162 Mask[InIdx] = llvm::ConstantInt::get(Int32Ty, i);
Nate Begemanb699c9b2009-01-18 06:42:49 +00001163 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001164
Chris Lattner91c08ad2011-02-15 00:14:06 +00001165 llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
Nate Begemanb699c9b2009-01-18 06:42:49 +00001166 Vec = Builder.CreateShuffleVector(SrcVal,
Owen Anderson7ec07a52009-07-30 23:11:26 +00001167 llvm::UndefValue::get(Vec->getType()),
Nate Begemanb699c9b2009-01-18 06:42:49 +00001168 MaskV, "tmp");
Mike Stump658fe022009-07-30 22:28:39 +00001169 } else if (NumDstElts > NumSrcElts) {
Nate Begemanb699c9b2009-01-18 06:42:49 +00001170 // Extended the source vector to the same length and then shuffle it
1171 // into the destination.
1172 // FIXME: since we're shuffling with undef, can we just use the indices
1173 // into that? This could be simpler.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001174 SmallVector<llvm::Constant*, 4> ExtMask;
Nate Begemanb699c9b2009-01-18 06:42:49 +00001175 unsigned i;
1176 for (i = 0; i != NumSrcElts; ++i)
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001177 ExtMask.push_back(llvm::ConstantInt::get(Int32Ty, i));
Nate Begemanb699c9b2009-01-18 06:42:49 +00001178 for (; i != NumDstElts; ++i)
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001179 ExtMask.push_back(llvm::UndefValue::get(Int32Ty));
Chris Lattner91c08ad2011-02-15 00:14:06 +00001180 llvm::Value *ExtMaskV = llvm::ConstantVector::get(ExtMask);
Mike Stump4a3999f2009-09-09 13:00:44 +00001181 llvm::Value *ExtSrcVal =
Daniel Dunbar3d926cb2009-02-17 18:31:04 +00001182 Builder.CreateShuffleVector(SrcVal,
Owen Anderson7ec07a52009-07-30 23:11:26 +00001183 llvm::UndefValue::get(SrcVal->getType()),
Daniel Dunbar3d926cb2009-02-17 18:31:04 +00001184 ExtMaskV, "tmp");
Nate Begemanb699c9b2009-01-18 06:42:49 +00001185 // build identity
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001186 SmallVector<llvm::Constant*, 4> Mask;
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001187 for (unsigned i = 0; i != NumDstElts; ++i)
1188 Mask.push_back(llvm::ConstantInt::get(Int32Ty, i));
1189
Nate Begemanb699c9b2009-01-18 06:42:49 +00001190 // modify when what gets shuffled in
1191 for (unsigned i = 0; i != NumSrcElts; ++i) {
1192 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001193 Mask[Idx] = llvm::ConstantInt::get(Int32Ty, i+NumDstElts);
Nate Begemanb699c9b2009-01-18 06:42:49 +00001194 }
Chris Lattner91c08ad2011-02-15 00:14:06 +00001195 llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
Nate Begemanb699c9b2009-01-18 06:42:49 +00001196 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
Mike Stump658fe022009-07-30 22:28:39 +00001197 } else {
Nate Begemanb699c9b2009-01-18 06:42:49 +00001198 // We should never shorten the vector
1199 assert(0 && "unexpected shorten vector length");
Chris Lattner3a44aa72007-08-03 16:37:04 +00001200 }
1201 } else {
1202 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman75d69da2008-05-22 00:50:06 +00001203 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001204 llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx);
Chris Lattner41d480e2007-08-03 16:28:33 +00001205 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner41d480e2007-08-03 16:28:33 +00001206 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001207
Eli Friedman327944b2008-06-13 23:01:12 +00001208 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner41d480e2007-08-03 16:28:33 +00001209}
1210
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001211// setObjCGCLValueClass - sets class of he lvalue for the purpose of
1212// generating write-barries API. It is currently a global, ivar,
1213// or neither.
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001214static void setObjCGCLValueClass(const ASTContext &Ctx, const Expr *E,
1215 LValue &LV) {
Douglas Gregor79a91412011-09-13 17:21:33 +00001216 if (Ctx.getLangOptions().getGC() == LangOptions::NonGC)
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001217 return;
1218
Fariborz Jahaniande1d3242009-09-16 23:11:23 +00001219 if (isa<ObjCIvarRefExpr>(E)) {
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001220 LV.setObjCIvar(true);
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001221 ObjCIvarRefExpr *Exp = cast<ObjCIvarRefExpr>(const_cast<Expr*>(E));
1222 LV.setBaseIvarExp(Exp->getBase());
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001223 LV.setObjCArray(E->getType()->isArrayType());
Fariborz Jahaniande1d3242009-09-16 23:11:23 +00001224 return;
1225 }
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001226
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001227 if (const DeclRefExpr *Exp = dyn_cast<DeclRefExpr>(E)) {
1228 if (const VarDecl *VD = dyn_cast<VarDecl>(Exp->getDecl())) {
John McCall1c9c3fd2010-10-15 04:57:14 +00001229 if (VD->hasGlobalStorage()) {
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001230 LV.setGlobalObjCRef(true);
1231 LV.setThreadLocalRef(VD->isThreadSpecified());
Fariborz Jahanian217af242010-07-20 20:30:03 +00001232 }
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001233 }
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001234 LV.setObjCArray(E->getType()->isArrayType());
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001235 return;
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001236 }
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001237
1238 if (const UnaryOperator *Exp = dyn_cast<UnaryOperator>(E)) {
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001239 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001240 return;
1241 }
1242
1243 if (const ParenExpr *Exp = dyn_cast<ParenExpr>(E)) {
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001244 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
Fariborz Jahaniane01e4342009-09-30 17:10:29 +00001245 if (LV.isObjCIvar()) {
1246 // If cast is to a structure pointer, follow gcc's behavior and make it
1247 // a non-ivar write-barrier.
1248 QualType ExpTy = E->getType();
1249 if (ExpTy->isPointerType())
1250 ExpTy = ExpTy->getAs<PointerType>()->getPointeeType();
1251 if (ExpTy->isRecordType())
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001252 LV.setObjCIvar(false);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001253 }
1254 return;
Fariborz Jahaniane01e4342009-09-30 17:10:29 +00001255 }
Peter Collingbourne91147592011-04-15 00:35:48 +00001256
1257 if (const GenericSelectionExpr *Exp = dyn_cast<GenericSelectionExpr>(E)) {
1258 setObjCGCLValueClass(Ctx, Exp->getResultExpr(), LV);
1259 return;
1260 }
1261
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001262 if (const ImplicitCastExpr *Exp = dyn_cast<ImplicitCastExpr>(E)) {
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001263 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001264 return;
1265 }
1266
1267 if (const CStyleCastExpr *Exp = dyn_cast<CStyleCastExpr>(E)) {
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001268 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001269 return;
1270 }
John McCall31168b02011-06-15 23:02:42 +00001271
1272 if (const ObjCBridgedCastExpr *Exp = dyn_cast<ObjCBridgedCastExpr>(E)) {
1273 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
1274 return;
1275 }
1276
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001277 if (const ArraySubscriptExpr *Exp = dyn_cast<ArraySubscriptExpr>(E)) {
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001278 setObjCGCLValueClass(Ctx, Exp->getBase(), LV);
Fariborz Jahanian38c3ae92009-09-21 18:54:29 +00001279 if (LV.isObjCIvar() && !LV.isObjCArray())
Fariborz Jahanian2e32ddc2009-09-18 00:04:00 +00001280 // Using array syntax to assigning to what an ivar points to is not
1281 // same as assigning to the ivar itself. {id *Names;} Names[i] = 0;
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001282 LV.setObjCIvar(false);
Fariborz Jahanian38c3ae92009-09-21 18:54:29 +00001283 else if (LV.isGlobalObjCRef() && !LV.isObjCArray())
1284 // Using array syntax to assigning to what global points to is not
1285 // same as assigning to the global itself. {id *G;} G[i] = 0;
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001286 LV.setGlobalObjCRef(false);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001287 return;
Fariborz Jahanian2e32ddc2009-09-18 00:04:00 +00001288 }
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001289
1290 if (const MemberExpr *Exp = dyn_cast<MemberExpr>(E)) {
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001291 setObjCGCLValueClass(Ctx, Exp->getBase(), LV);
Fariborz Jahanian2e32ddc2009-09-18 00:04:00 +00001292 // We don't know if member is an 'ivar', but this flag is looked at
1293 // only in the context of LV.isObjCIvar().
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001294 LV.setObjCArray(E->getType()->isArrayType());
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001295 return;
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001296 }
1297}
1298
Chris Lattner3f32d692011-07-12 06:52:18 +00001299static llvm::Value *
Chandler Carruth4678f672011-07-12 08:58:26 +00001300EmitBitCastOfLValueToProperType(CodeGenFunction &CGF,
Chris Lattner3f32d692011-07-12 06:52:18 +00001301 llvm::Value *V, llvm::Type *IRType,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001302 StringRef Name = StringRef()) {
Chris Lattner3f32d692011-07-12 06:52:18 +00001303 unsigned AS = cast<llvm::PointerType>(V->getType())->getAddressSpace();
Chandler Carruth4678f672011-07-12 08:58:26 +00001304 return CGF.Builder.CreateBitCast(V, IRType->getPointerTo(AS), Name);
Chris Lattner3f32d692011-07-12 06:52:18 +00001305}
1306
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001307static LValue EmitGlobalVarDeclLValue(CodeGenFunction &CGF,
1308 const Expr *E, const VarDecl *VD) {
Daniel Dunbar7e215ea2009-11-08 09:46:46 +00001309 assert((VD->hasExternalStorage() || VD->isFileVarDecl()) &&
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001310 "Var decl must have external storage or be a file var decl!");
1311
1312 llvm::Value *V = CGF.CGM.GetAddrOfGlobalVar(VD);
1313 if (VD->getType()->isReferenceType())
1314 V = CGF.Builder.CreateLoad(V, "tmp");
Chris Lattner13ee4f42011-07-10 05:34:54 +00001315
Chandler Carruth4678f672011-07-12 08:58:26 +00001316 V = EmitBitCastOfLValueToProperType(CGF, V,
Chris Lattner3f32d692011-07-12 06:52:18 +00001317 CGF.getTypes().ConvertTypeForMem(E->getType()));
1318
1319 unsigned Alignment = CGF.getContext().getDeclAlign(VD).getQuantity();
Daniel Dunbar5c816372010-08-21 04:20:22 +00001320 LValue LV = CGF.MakeAddrLValue(V, E->getType(), Alignment);
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001321 setObjCGCLValueClass(CGF.getContext(), E, LV);
1322 return LV;
1323}
1324
Eli Friedmand15eb34d2009-11-26 06:08:14 +00001325static LValue EmitFunctionDeclLValue(CodeGenFunction &CGF,
Chris Lattner13ee4f42011-07-10 05:34:54 +00001326 const Expr *E, const FunctionDecl *FD) {
Chris Lattnerf53c0962010-09-06 00:11:41 +00001327 llvm::Value *V = CGF.CGM.GetAddrOfFunction(FD);
Eli Friedmand15eb34d2009-11-26 06:08:14 +00001328 if (!FD->hasPrototype()) {
1329 if (const FunctionProtoType *Proto =
1330 FD->getType()->getAs<FunctionProtoType>()) {
1331 // Ugly case: for a K&R-style definition, the type of the definition
1332 // isn't the same as the type of a use. Correct for this with a
1333 // bitcast.
1334 QualType NoProtoType =
1335 CGF.getContext().getFunctionNoProtoType(Proto->getResultType());
1336 NoProtoType = CGF.getContext().getPointerType(NoProtoType);
1337 V = CGF.Builder.CreateBitCast(V, CGF.ConvertType(NoProtoType), "tmp");
1338 }
1339 }
Daniel Dunbar5c816372010-08-21 04:20:22 +00001340 unsigned Alignment = CGF.getContext().getDeclAlign(FD).getQuantity();
1341 return CGF.MakeAddrLValue(V, E->getType(), Alignment);
Eli Friedmand15eb34d2009-11-26 06:08:14 +00001342}
1343
Chris Lattnerd7f58862007-06-02 05:24:33 +00001344LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Anders Carlsson2ff6395d2009-11-07 22:53:10 +00001345 const NamedDecl *ND = E->getDecl();
John McCallad7c5c12011-02-08 08:22:06 +00001346 unsigned Alignment = getContext().getDeclAlign(ND).getQuantity();
Mike Stump4a3999f2009-09-09 13:00:44 +00001347
Rafael Espindola2e42fec2010-03-04 18:17:24 +00001348 if (ND->hasAttr<WeakRefAttr>()) {
Chris Lattnerf53c0962010-09-06 00:11:41 +00001349 const ValueDecl *VD = cast<ValueDecl>(ND);
Rafael Espindola2e42fec2010-03-04 18:17:24 +00001350 llvm::Constant *Aliasee = CGM.GetWeakRefReference(VD);
Daniel Dunbar5c816372010-08-21 04:20:22 +00001351 return MakeAddrLValue(Aliasee, E->getType(), Alignment);
Rafael Espindola2e42fec2010-03-04 18:17:24 +00001352 }
1353
Anders Carlsson2ff6395d2009-11-07 22:53:10 +00001354 if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
Anders Carlsson2ff6395d2009-11-07 22:53:10 +00001355
1356 // Check if this is a global variable.
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001357 if (VD->hasExternalStorage() || VD->isFileVarDecl())
1358 return EmitGlobalVarDeclLValue(*this, E, VD);
Anders Carlsson6eee9722009-11-07 22:46:42 +00001359
Fariborz Jahanian44a41d12010-11-19 18:17:09 +00001360 bool NonGCable = VD->hasLocalStorage() &&
1361 !VD->getType()->isReferenceType() &&
1362 !VD->hasAttr<BlocksAttr>();
Anders Carlsson6eee9722009-11-07 22:46:42 +00001363
1364 llvm::Value *V = LocalDeclMap[VD];
Fariborz Jahanian366a9482010-09-07 23:26:17 +00001365 if (!V && VD->isStaticLocal())
Fariborz Jahanian4d55b2d2010-04-19 18:15:02 +00001366 V = CGM.getStaticLocalDeclAddress(VD);
Anders Carlsson6eee9722009-11-07 22:46:42 +00001367 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
1368
Fariborz Jahanian2f2fa722011-01-26 23:08:27 +00001369 if (VD->hasAttr<BlocksAttr>())
1370 V = BuildBlockByrefAddress(V, VD);
1371
Anders Carlsson6eee9722009-11-07 22:46:42 +00001372 if (VD->getType()->isReferenceType())
1373 V = Builder.CreateLoad(V, "tmp");
Daniel Dunbarf166a522010-08-21 03:44:13 +00001374
Chandler Carruth4678f672011-07-12 08:58:26 +00001375 V = EmitBitCastOfLValueToProperType(*this, V,
Chris Lattner3f32d692011-07-12 06:52:18 +00001376 getTypes().ConvertTypeForMem(E->getType()));
1377
Daniel Dunbar5c816372010-08-21 04:20:22 +00001378 LValue LV = MakeAddrLValue(V, E->getType(), Alignment);
Fariborz Jahanian44a41d12010-11-19 18:17:09 +00001379 if (NonGCable) {
Daniel Dunbarf166a522010-08-21 03:44:13 +00001380 LV.getQuals().removeObjCGCAttr();
Daniel Dunbare50dda92010-08-21 03:22:38 +00001381 LV.setNonGC(true);
1382 }
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001383 setObjCGCLValueClass(getContext(), E, LV);
Fariborz Jahanian003e8302008-11-20 00:15:42 +00001384 return LV;
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001385 }
John McCallf3a88602011-02-03 08:15:49 +00001386
1387 if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(ND))
1388 return EmitFunctionDeclLValue(*this, E, fn);
1389
Anders Carlsson2ff6395d2009-11-07 22:53:10 +00001390 assert(false && "Unhandled DeclRefExpr");
1391
1392 // an invalid LValue, but the assert will
1393 // ensure that this point is never reached.
Chris Lattner793d10c2007-09-16 19:23:47 +00001394 return LValue();
Chris Lattnerd7f58862007-06-02 05:24:33 +00001395}
Chris Lattnere47e4402007-06-01 18:02:12 +00001396
Mike Stump1db7d042009-02-28 09:07:16 +00001397LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
Daniel Dunbar5c816372010-08-21 04:20:22 +00001398 unsigned Alignment =
John McCallad7c5c12011-02-08 08:22:06 +00001399 getContext().getDeclAlign(E->getDecl()).getQuantity();
Daniel Dunbar5c816372010-08-21 04:20:22 +00001400 return MakeAddrLValue(GetAddrOfBlockDecl(E), E->getType(), Alignment);
Mike Stump1db7d042009-02-28 09:07:16 +00001401}
1402
Chris Lattner8394d792007-06-05 20:53:16 +00001403LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
1404 // __extension__ doesn't affect lvalue-ness.
John McCalle3027922010-08-25 11:45:40 +00001405 if (E->getOpcode() == UO_Extension)
Chris Lattner8394d792007-06-05 20:53:16 +00001406 return EmitLValue(E->getSubExpr());
Mike Stump4a3999f2009-09-09 13:00:44 +00001407
Chris Lattner0f398c42008-07-26 22:37:01 +00001408 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner595db862007-10-30 22:53:42 +00001409 switch (E->getOpcode()) {
1410 default: assert(0 && "Unknown unary operator lvalue!");
John McCalle3027922010-08-25 11:45:40 +00001411 case UO_Deref: {
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001412 QualType T = E->getSubExpr()->getType()->getPointeeType();
1413 assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
Mike Stump4a3999f2009-09-09 13:00:44 +00001414
Daniel Dunbarf166a522010-08-21 03:44:13 +00001415 LValue LV = MakeAddrLValue(EmitScalarExpr(E->getSubExpr()), T);
1416 LV.getQuals().setAddressSpace(ExprTy.getAddressSpace());
John McCall8ccfcb52009-09-24 19:53:00 +00001417
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001418 // We should not generate __weak write barrier on indirect reference
1419 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
1420 // But, we continue to generate __strong write barrier on indirect write
1421 // into a pointer to object.
1422 if (getContext().getLangOptions().ObjC1 &&
Douglas Gregor79a91412011-09-13 17:21:33 +00001423 getContext().getLangOptions().getGC() != LangOptions::NonGC &&
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001424 LV.isObjCWeak())
Daniel Dunbare50dda92010-08-21 03:22:38 +00001425 LV.setNonGC(!E->isOBJCGCCandidate(getContext()));
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001426 return LV;
1427 }
John McCalle3027922010-08-25 11:45:40 +00001428 case UO_Real:
1429 case UO_Imag: {
Chris Lattner595db862007-10-30 22:53:42 +00001430 LValue LV = EmitLValue(E->getSubExpr());
John McCalla2342eb2010-12-05 02:00:02 +00001431 assert(LV.isSimple() && "real/imag on non-ordinary l-value");
1432 llvm::Value *Addr = LV.getAddress();
1433
1434 // real and imag are valid on scalars. This is a faster way of
1435 // testing that.
1436 if (!cast<llvm::PointerType>(Addr->getType())
1437 ->getElementType()->isStructTy()) {
1438 assert(E->getSubExpr()->getType()->isArithmeticType());
1439 return LV;
1440 }
1441
1442 assert(E->getSubExpr()->getType()->isAnyComplexType());
1443
John McCalle3027922010-08-25 11:45:40 +00001444 unsigned Idx = E->getOpcode() == UO_Imag;
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00001445 return MakeAddrLValue(Builder.CreateStructGEP(LV.getAddress(),
John McCalla2342eb2010-12-05 02:00:02 +00001446 Idx, "idx"),
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00001447 ExprTy);
Chris Lattner595db862007-10-30 22:53:42 +00001448 }
John McCalle3027922010-08-25 11:45:40 +00001449 case UO_PreInc:
1450 case UO_PreDec: {
Chris Lattnerbb8976e2010-01-09 21:44:40 +00001451 LValue LV = EmitLValue(E->getSubExpr());
John McCalle3027922010-08-25 11:45:40 +00001452 bool isInc = E->getOpcode() == UO_PreInc;
Chris Lattnerbb8976e2010-01-09 21:44:40 +00001453
1454 if (E->getType()->isAnyComplexType())
1455 EmitComplexPrePostIncDec(E, LV, isInc, true/*isPre*/);
1456 else
1457 EmitScalarPrePostIncDec(E, LV, isInc, true/*isPre*/);
1458 return LV;
1459 }
Eli Friedmana72bf0f2009-11-09 04:20:47 +00001460 }
Chris Lattner8394d792007-06-05 20:53:16 +00001461}
1462
Chris Lattner4347e3692007-06-06 04:54:52 +00001463LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar2e442a02010-08-21 03:15:20 +00001464 return MakeAddrLValue(CGM.GetAddrOfConstantStringFromLiteral(E),
1465 E->getType());
Chris Lattner4347e3692007-06-06 04:54:52 +00001466}
1467
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +00001468LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
Daniel Dunbar2e442a02010-08-21 03:15:20 +00001469 return MakeAddrLValue(CGM.GetAddrOfConstantStringFromObjCEncode(E),
1470 E->getType());
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +00001471}
1472
1473
Mike Stump4a3999f2009-09-09 13:00:44 +00001474LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Daniel Dunbarb3517472008-10-17 21:58:32 +00001475 switch (E->getIdentType()) {
1476 default:
1477 return EmitUnsupportedLValue(E, "predefined expression");
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001478
Daniel Dunbarb3517472008-10-17 21:58:32 +00001479 case PredefinedExpr::Func:
1480 case PredefinedExpr::Function:
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001481 case PredefinedExpr::PrettyFunction: {
1482 unsigned Type = E->getIdentType();
1483 std::string GlobalVarName;
1484
1485 switch (Type) {
1486 default: assert(0 && "Invalid type");
1487 case PredefinedExpr::Func:
1488 GlobalVarName = "__func__.";
1489 break;
1490 case PredefinedExpr::Function:
1491 GlobalVarName = "__FUNCTION__.";
1492 break;
1493 case PredefinedExpr::PrettyFunction:
1494 GlobalVarName = "__PRETTY_FUNCTION__.";
1495 break;
1496 }
1497
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001498 StringRef FnName = CurFn->getName();
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001499 if (FnName.startswith("\01"))
1500 FnName = FnName.substr(1);
1501 GlobalVarName += FnName;
1502
1503 const Decl *CurDecl = CurCodeDecl;
1504 if (CurDecl == 0)
1505 CurDecl = getContext().getTranslationUnitDecl();
1506
1507 std::string FunctionName =
John McCall351762c2011-02-07 10:33:21 +00001508 (isa<BlockDecl>(CurDecl)
1509 ? FnName.str()
1510 : PredefinedExpr::ComputeName((PredefinedExpr::IdentType)Type, CurDecl));
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001511
1512 llvm::Constant *C =
1513 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
Daniel Dunbar2e442a02010-08-21 03:15:20 +00001514 return MakeAddrLValue(C, E->getType());
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001515 }
Daniel Dunbarb3517472008-10-17 21:58:32 +00001516 }
Anders Carlsson625bfc82007-07-21 05:21:51 +00001517}
1518
Mike Stumpcf16d2c2009-12-15 01:22:35 +00001519llvm::BasicBlock *CodeGenFunction::getTrapBB() {
Mike Stump9a4e0122009-12-15 00:59:40 +00001520 const CodeGenOptions &GCO = CGM.getCodeGenOpts();
1521
1522 // If we are not optimzing, don't collapse all calls to trap in the function
1523 // to the same call, that way, in the debugger they can see which operation
Chris Lattner26008e02010-07-20 20:19:24 +00001524 // did in fact fail. If we are optimizing, we collapse all calls to trap down
Mike Stump9a4e0122009-12-15 00:59:40 +00001525 // to just one per function to save on codesize.
Chris Lattner26008e02010-07-20 20:19:24 +00001526 if (GCO.OptimizationLevel && TrapBB)
Mike Stumpe8c3b3e2009-12-15 00:35:12 +00001527 return TrapBB;
Mike Stumpd9546382009-12-12 01:27:46 +00001528
1529 llvm::BasicBlock *Cont = 0;
1530 if (HaveInsertPoint()) {
1531 Cont = createBasicBlock("cont");
1532 EmitBranch(Cont);
1533 }
Mike Stumpe8c3b3e2009-12-15 00:35:12 +00001534 TrapBB = createBasicBlock("trap");
1535 EmitBlock(TrapBB);
1536
Benjamin Kramer8d375ce2011-07-14 17:45:50 +00001537 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::trap);
Mike Stumpe8c3b3e2009-12-15 00:35:12 +00001538 llvm::CallInst *TrapCall = Builder.CreateCall(F);
1539 TrapCall->setDoesNotReturn();
1540 TrapCall->setDoesNotThrow();
Mike Stumpd9546382009-12-12 01:27:46 +00001541 Builder.CreateUnreachable();
1542
1543 if (Cont)
1544 EmitBlock(Cont);
Mike Stumpe8c3b3e2009-12-15 00:35:12 +00001545 return TrapBB;
Mike Stumpd9546382009-12-12 01:27:46 +00001546}
1547
Chris Lattner6c5abe82010-06-26 23:03:20 +00001548/// isSimpleArrayDecayOperand - If the specified expr is a simple decay from an
1549/// array to pointer, return the array subexpression.
1550static const Expr *isSimpleArrayDecayOperand(const Expr *E) {
1551 // If this isn't just an array->pointer decay, bail out.
1552 const CastExpr *CE = dyn_cast<CastExpr>(E);
John McCalle3027922010-08-25 11:45:40 +00001553 if (CE == 0 || CE->getCastKind() != CK_ArrayToPointerDecay)
Chris Lattner6c5abe82010-06-26 23:03:20 +00001554 return 0;
1555
1556 // If this is a decay from variable width array, bail out.
1557 const Expr *SubExpr = CE->getSubExpr();
1558 if (SubExpr->getType()->isVariableArrayType())
1559 return 0;
1560
1561 return SubExpr;
1562}
1563
Chris Lattnerd9d2fb12007-06-08 23:31:14 +00001564LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenekc81614d2007-08-20 16:18:38 +00001565 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner2da04b32007-08-24 05:35:26 +00001566 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Eli Friedman07bbeca2009-06-06 19:09:26 +00001567 QualType IdxTy = E->getIdx()->getType();
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00001568 bool IdxSigned = IdxTy->isSignedIntegerOrEnumerationType();
Eli Friedman07bbeca2009-06-06 19:09:26 +00001569
Chris Lattner08c4b9f2007-07-10 21:17:59 +00001570 // If the base is a vector type, then we are forming a vector element lvalue
1571 // with this subscript.
Eli Friedman327944b2008-06-13 23:01:12 +00001572 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner08c4b9f2007-07-10 21:17:59 +00001573 // Emit the vector as an lvalue to get its address.
Eli Friedman327944b2008-06-13 23:01:12 +00001574 LValue LHS = EmitLValue(E->getBase());
Ted Kremenekc81614d2007-08-20 16:18:38 +00001575 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
John McCallad7c5c12011-02-08 08:22:06 +00001576 Idx = Builder.CreateIntCast(Idx, Int32Ty, IdxSigned, "vidx");
Eli Friedman327944b2008-06-13 23:01:12 +00001577 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
John McCall1553b192011-06-16 04:16:24 +00001578 E->getBase()->getType());
Chris Lattner08c4b9f2007-07-10 21:17:59 +00001579 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001580
Ted Kremenekc81614d2007-08-20 16:18:38 +00001581 // Extend or truncate the index type to 32 or 64-bits.
John McCalle3dc1702011-02-15 09:22:45 +00001582 if (Idx->getType() != IntPtrTy)
1583 Idx = Builder.CreateIntCast(Idx, IntPtrTy, IdxSigned, "idxprom");
Chris Lattner57ce9712010-06-26 22:40:46 +00001584
Mike Stump3f6f9fe2009-12-16 02:57:00 +00001585 // FIXME: As llvm implements the object size checking, this can come out.
Mike Stumpd9546382009-12-12 01:27:46 +00001586 if (CatchUndefined) {
Chris Lattner57ce9712010-06-26 22:40:46 +00001587 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E->getBase())){
Mike Stumpd9546382009-12-12 01:27:46 +00001588 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
John McCalle3027922010-08-25 11:45:40 +00001589 if (ICE->getCastKind() == CK_ArrayToPointerDecay) {
Mike Stumpd9546382009-12-12 01:27:46 +00001590 if (const ConstantArrayType *CAT
1591 = getContext().getAsConstantArrayType(DRE->getType())) {
1592 llvm::APInt Size = CAT->getSize();
1593 llvm::BasicBlock *Cont = createBasicBlock("cont");
Mike Stump590d18f2009-12-14 22:14:31 +00001594 Builder.CreateCondBr(Builder.CreateICmpULE(Idx,
Mike Stumpd9546382009-12-12 01:27:46 +00001595 llvm::ConstantInt::get(Idx->getType(), Size)),
Mike Stumpe8c3b3e2009-12-15 00:35:12 +00001596 Cont, getTrapBB());
Mike Stumpf8858af2009-12-14 20:52:00 +00001597 EmitBlock(Cont);
Mike Stumpd9546382009-12-12 01:27:46 +00001598 }
1599 }
1600 }
1601 }
1602 }
1603
Mike Stump4a3999f2009-09-09 13:00:44 +00001604 // We know that the pointer points to a type of the correct size, unless the
1605 // size is a VLA or Objective-C interface.
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +00001606 llvm::Value *Address = 0;
Daniel Dunbar82634272011-04-01 00:49:43 +00001607 unsigned ArrayAlignment = 0;
John McCall23c29fe2011-06-24 21:55:10 +00001608 if (const VariableArrayType *vla =
Anders Carlsson3d312f82008-12-21 00:11:23 +00001609 getContext().getAsVariableArrayType(E->getType())) {
John McCall23c29fe2011-06-24 21:55:10 +00001610 // The base must be a pointer, which is not an aggregate. Emit
1611 // it. It needs to be emitted first in case it's what captures
1612 // the VLA bounds.
1613 Address = EmitScalarExpr(E->getBase());
Mike Stump4a3999f2009-09-09 13:00:44 +00001614
John McCall23c29fe2011-06-24 21:55:10 +00001615 // The element count here is the total number of non-VLA elements.
1616 llvm::Value *numElements = getVLASize(vla).first;
Mike Stump4a3999f2009-09-09 13:00:44 +00001617
John McCall77527a82011-06-25 01:32:37 +00001618 // Effectively, the multiply by the VLA size is part of the GEP.
1619 // GEP indexes are signed, and scaling an index isn't permitted to
1620 // signed-overflow, so we use the same semantics for our explicit
1621 // multiply. We suppress this if overflow is not undefined behavior.
1622 if (getLangOptions().isSignedOverflowDefined()) {
1623 Idx = Builder.CreateMul(Idx, numElements);
Chris Lattner2e72da942011-03-01 00:03:48 +00001624 Address = Builder.CreateGEP(Address, Idx, "arrayidx");
John McCall77527a82011-06-25 01:32:37 +00001625 } else {
1626 Idx = Builder.CreateNSWMul(Idx, numElements);
Chris Lattner2e72da942011-03-01 00:03:48 +00001627 Address = Builder.CreateInBoundsGEP(Address, Idx, "arrayidx");
John McCall77527a82011-06-25 01:32:37 +00001628 }
Chris Lattner6c5abe82010-06-26 23:03:20 +00001629 } else if (const ObjCObjectType *OIT = E->getType()->getAs<ObjCObjectType>()){
1630 // Indexing over an interface, as in "NSString *P; P[4];"
Mike Stump4a3999f2009-09-09 13:00:44 +00001631 llvm::Value *InterfaceSize =
Owen Andersonb7a2fe62009-07-24 23:12:58 +00001632 llvm::ConstantInt::get(Idx->getType(),
Ken Dyck40775002010-01-11 17:06:35 +00001633 getContext().getTypeSizeInChars(OIT).getQuantity());
Mike Stump4a3999f2009-09-09 13:00:44 +00001634
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +00001635 Idx = Builder.CreateMul(Idx, InterfaceSize);
1636
Chris Lattner6c5abe82010-06-26 23:03:20 +00001637 // The base must be a pointer, which is not an aggregate. Emit it.
1638 llvm::Value *Base = EmitScalarExpr(E->getBase());
John McCallad7c5c12011-02-08 08:22:06 +00001639 Address = EmitCastToVoidPtr(Base);
1640 Address = Builder.CreateGEP(Address, Idx, "arrayidx");
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +00001641 Address = Builder.CreateBitCast(Address, Base->getType());
Chris Lattner6c5abe82010-06-26 23:03:20 +00001642 } else if (const Expr *Array = isSimpleArrayDecayOperand(E->getBase())) {
1643 // If this is A[i] where A is an array, the frontend will have decayed the
1644 // base to be a ArrayToPointerDecay implicit cast. While correct, it is
1645 // inefficient at -O0 to emit a "gep A, 0, 0" when codegen'ing it, then a
1646 // "gep x, i" here. Emit one "gep A, 0, i".
1647 assert(Array->getType()->isArrayType() &&
1648 "Array to pointer decay must have array source type!");
Daniel Dunbar82634272011-04-01 00:49:43 +00001649 LValue ArrayLV = EmitLValue(Array);
1650 llvm::Value *ArrayPtr = ArrayLV.getAddress();
Chris Lattner6c5abe82010-06-26 23:03:20 +00001651 llvm::Value *Zero = llvm::ConstantInt::get(Int32Ty, 0);
1652 llvm::Value *Args[] = { Zero, Idx };
1653
Daniel Dunbar82634272011-04-01 00:49:43 +00001654 // Propagate the alignment from the array itself to the result.
1655 ArrayAlignment = ArrayLV.getAlignment();
1656
Chris Lattner2e72da942011-03-01 00:03:48 +00001657 if (getContext().getLangOptions().isSignedOverflowDefined())
Jay Foad040dd822011-07-22 08:16:57 +00001658 Address = Builder.CreateGEP(ArrayPtr, Args, "arrayidx");
Chris Lattner2e72da942011-03-01 00:03:48 +00001659 else
Jay Foad040dd822011-07-22 08:16:57 +00001660 Address = Builder.CreateInBoundsGEP(ArrayPtr, Args, "arrayidx");
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +00001661 } else {
Chris Lattner6c5abe82010-06-26 23:03:20 +00001662 // The base must be a pointer, which is not an aggregate. Emit it.
1663 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner2e72da942011-03-01 00:03:48 +00001664 if (getContext().getLangOptions().isSignedOverflowDefined())
1665 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
1666 else
1667 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
Anders Carlsson3d312f82008-12-21 00:11:23 +00001668 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001669
Steve Naroff7cae42b2009-07-10 23:34:53 +00001670 QualType T = E->getBase()->getType()->getPointeeType();
Mike Stump4a3999f2009-09-09 13:00:44 +00001671 assert(!T.isNull() &&
Steve Naroff7cae42b2009-07-10 23:34:53 +00001672 "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
Mike Stump4a3999f2009-09-09 13:00:44 +00001673
Daniel Dunbar82634272011-04-01 00:49:43 +00001674 // Limit the alignment to that of the result type.
1675 if (ArrayAlignment) {
1676 unsigned Align = getContext().getTypeAlignInChars(T).getQuantity();
1677 ArrayAlignment = std::min(Align, ArrayAlignment);
1678 }
1679
1680 LValue LV = MakeAddrLValue(Address, T, ArrayAlignment);
Daniel Dunbarf166a522010-08-21 03:44:13 +00001681 LV.getQuals().setAddressSpace(E->getBase()->getType().getAddressSpace());
John McCall8ccfcb52009-09-24 19:53:00 +00001682
Fariborz Jahaniana9fecf32009-02-21 23:37:19 +00001683 if (getContext().getLangOptions().ObjC1 &&
Douglas Gregor79a91412011-09-13 17:21:33 +00001684 getContext().getLangOptions().getGC() != LangOptions::NonGC) {
Daniel Dunbare50dda92010-08-21 03:22:38 +00001685 LV.setNonGC(!E->isOBJCGCCandidate(getContext()));
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001686 setObjCGCLValueClass(getContext(), E, LV);
1687 }
Fariborz Jahaniana9fecf32009-02-21 23:37:19 +00001688 return LV;
Chris Lattnerd9d2fb12007-06-08 23:31:14 +00001689}
1690
Mike Stump4a3999f2009-09-09 13:00:44 +00001691static
Owen Anderson170229f2009-07-14 23:10:40 +00001692llvm::Constant *GenerateConstantVector(llvm::LLVMContext &VMContext,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001693 SmallVector<unsigned, 4> &Elts) {
1694 SmallVector<llvm::Constant*, 4> CElts;
Mike Stump4a3999f2009-09-09 13:00:44 +00001695
Chris Lattner2192fe52011-07-18 04:24:23 +00001696 llvm::Type *Int32Ty = llvm::Type::getInt32Ty(VMContext);
Nate Begemand3862152008-05-13 21:03:02 +00001697 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
Chris Lattner5e016ae2010-06-27 07:15:29 +00001698 CElts.push_back(llvm::ConstantInt::get(Int32Ty, Elts[i]));
Nate Begemand3862152008-05-13 21:03:02 +00001699
Chris Lattner91c08ad2011-02-15 00:14:06 +00001700 return llvm::ConstantVector::get(CElts);
Nate Begemand3862152008-05-13 21:03:02 +00001701}
1702
Chris Lattner9e751ca2007-08-02 23:37:31 +00001703LValue CodeGenFunction::
Nate Begemance4d7fc2008-04-18 23:10:10 +00001704EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner9e751ca2007-08-02 23:37:31 +00001705 // Emit the base vector as an l-value.
Chris Lattner6c7ce102009-02-16 21:11:58 +00001706 LValue Base;
1707
1708 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner4e1a3232009-12-23 21:31:11 +00001709 if (E->isArrow()) {
1710 // If it is a pointer to a vector, emit the address and form an lvalue with
1711 // it.
Chris Lattnerb8211f62009-02-16 22:14:05 +00001712 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
Chris Lattner4e1a3232009-12-23 21:31:11 +00001713 const PointerType *PT = E->getBase()->getType()->getAs<PointerType>();
Daniel Dunbarf166a522010-08-21 03:44:13 +00001714 Base = MakeAddrLValue(Ptr, PT->getPointeeType());
1715 Base.getQuals().removeObjCGCAttr();
John McCall086a4642010-11-24 05:12:34 +00001716 } else if (E->getBase()->isGLValue()) {
Chris Lattner4e1a3232009-12-23 21:31:11 +00001717 // Otherwise, if the base is an lvalue ( as in the case of foo.x.x),
1718 // emit the base as an lvalue.
1719 assert(E->getBase()->getType()->isVectorType());
1720 Base = EmitLValue(E->getBase());
1721 } else {
1722 // Otherwise, the base is a normal rvalue (as in (V+V).x), emit it as such.
John McCall1553b192011-06-16 04:16:24 +00001723 assert(E->getBase()->getType()->isVectorType() &&
Daniel Dunbar5b901952010-01-04 18:02:28 +00001724 "Result must be a vector");
Chris Lattner4e1a3232009-12-23 21:31:11 +00001725 llvm::Value *Vec = EmitScalarExpr(E->getBase());
1726
Chris Lattnerf0a9ba32009-12-23 21:33:41 +00001727 // Store the vector to memory (because LValue wants an address).
Daniel Dunbara7566f12010-02-09 02:48:28 +00001728 llvm::Value *VecMem = CreateMemTemp(E->getBase()->getType());
Chris Lattner4e1a3232009-12-23 21:31:11 +00001729 Builder.CreateStore(Vec, VecMem);
Daniel Dunbarf166a522010-08-21 03:44:13 +00001730 Base = MakeAddrLValue(VecMem, E->getBase()->getType());
Chris Lattner4e1a3232009-12-23 21:31:11 +00001731 }
John McCall1553b192011-06-16 04:16:24 +00001732
1733 QualType type =
1734 E->getType().withCVRQualifiers(Base.getQuals().getCVRQualifiers());
Chris Lattner4e1a3232009-12-23 21:31:11 +00001735
Nate Begemand3862152008-05-13 21:03:02 +00001736 // Encode the element access list into a vector of unsigned indices.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001737 SmallVector<unsigned, 4> Indices;
Nate Begemand3862152008-05-13 21:03:02 +00001738 E->getEncodedElementAccess(Indices);
1739
1740 if (Base.isSimple()) {
John McCallad7c5c12011-02-08 08:22:06 +00001741 llvm::Constant *CV = GenerateConstantVector(getLLVMContext(), Indices);
John McCall1553b192011-06-16 04:16:24 +00001742 return LValue::MakeExtVectorElt(Base.getAddress(), CV, type);
Nate Begemand3862152008-05-13 21:03:02 +00001743 }
1744 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
1745
1746 llvm::Constant *BaseElts = Base.getExtVectorElts();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001747 SmallVector<llvm::Constant *, 4> CElts;
Nate Begemand3862152008-05-13 21:03:02 +00001748
1749 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
1750 if (isa<llvm::ConstantAggregateZero>(BaseElts))
Chris Lattner5e71d432009-10-28 05:12:07 +00001751 CElts.push_back(llvm::ConstantInt::get(Int32Ty, 0));
Nate Begemand3862152008-05-13 21:03:02 +00001752 else
Chris Lattner5e71d432009-10-28 05:12:07 +00001753 CElts.push_back(cast<llvm::Constant>(BaseElts->getOperand(Indices[i])));
Nate Begemand3862152008-05-13 21:03:02 +00001754 }
Chris Lattner91c08ad2011-02-15 00:14:06 +00001755 llvm::Constant *CV = llvm::ConstantVector::get(CElts);
John McCall1553b192011-06-16 04:16:24 +00001756 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV, type);
Chris Lattner9e751ca2007-08-02 23:37:31 +00001757}
1758
Devang Patel30efa2e2007-10-23 20:28:39 +00001759LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Fariborz Jahanian10bec102009-02-21 00:30:43 +00001760 bool isNonGC = false;
Devang Pateld68df202007-10-24 22:26:28 +00001761 Expr *BaseExpr = E->getBase();
Devang Pateld68df202007-10-24 22:26:28 +00001762 llvm::Value *BaseValue = NULL;
John McCall8ccfcb52009-09-24 19:53:00 +00001763 Qualifiers BaseQuals;
Eli Friedman327944b2008-06-13 23:01:12 +00001764
Chris Lattner4e4186b2007-12-02 18:52:07 +00001765 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patelb37b12d2007-12-11 21:33:16 +00001766 if (E->isArrow()) {
Devang Patel7718d7a2007-10-26 18:15:21 +00001767 BaseValue = EmitScalarExpr(BaseExpr);
Mike Stump4a3999f2009-09-09 13:00:44 +00001768 const PointerType *PTy =
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001769 BaseExpr->getType()->getAs<PointerType>();
John McCall8ccfcb52009-09-24 19:53:00 +00001770 BaseQuals = PTy->getPointeeType().getQualifiers();
Chris Lattnere084c012009-02-16 22:25:49 +00001771 } else {
Chris Lattner4e4186b2007-12-02 18:52:07 +00001772 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian10bec102009-02-21 00:30:43 +00001773 if (BaseLV.isNonGC())
1774 isNonGC = true;
Chris Lattner4e4186b2007-12-02 18:52:07 +00001775 // FIXME: this isn't right for bitfields.
1776 BaseValue = BaseLV.getAddress();
Fariborz Jahanian82e28742009-07-29 00:44:13 +00001777 QualType BaseTy = BaseExpr->getType();
John McCall8ccfcb52009-09-24 19:53:00 +00001778 BaseQuals = BaseTy.getQualifiers();
Chris Lattner4e4186b2007-12-02 18:52:07 +00001779 }
Devang Patel30efa2e2007-10-23 20:28:39 +00001780
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001781 NamedDecl *ND = E->getMemberDecl();
1782 if (FieldDecl *Field = dyn_cast<FieldDecl>(ND)) {
Anders Carlsson5d8645b2010-01-29 05:05:36 +00001783 LValue LV = EmitLValueForField(BaseValue, Field,
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001784 BaseQuals.getCVRQualifiers());
Daniel Dunbare50dda92010-08-21 03:22:38 +00001785 LV.setNonGC(isNonGC);
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001786 setObjCGCLValueClass(getContext(), E, LV);
1787 return LV;
1788 }
1789
Anders Carlsson5bbdc9f2009-11-07 23:16:50 +00001790 if (VarDecl *VD = dyn_cast<VarDecl>(ND))
1791 return EmitGlobalVarDeclLValue(*this, E, VD);
Eli Friedmand15eb34d2009-11-26 06:08:14 +00001792
1793 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
1794 return EmitFunctionDeclLValue(*this, E, FD);
1795
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001796 assert(false && "Unhandled member declaration!");
1797 return LValue();
Eli Friedmana62f3e12008-02-09 08:50:58 +00001798}
Devang Patel30efa2e2007-10-23 20:28:39 +00001799
Chris Lattnerf53c0962010-09-06 00:11:41 +00001800LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value *BaseValue,
1801 const FieldDecl *Field,
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001802 unsigned CVRQualifiers) {
Daniel Dunbar034299e2010-03-31 01:09:11 +00001803 const CGRecordLayout &RL =
1804 CGM.getTypes().getCGRecordLayout(Field->getParent());
Daniel Dunbarcd3d5e72010-04-05 16:20:44 +00001805 const CGBitFieldInfo &Info = RL.getBitFieldInfo(Field);
Daniel Dunbarc75c8bd2010-04-08 02:59:45 +00001806 return LValue::MakeBitfield(BaseValue, Info,
John McCall1553b192011-06-16 04:16:24 +00001807 Field->getType().withCVRQualifiers(CVRQualifiers));
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001808}
1809
John McCallc4094932010-05-21 01:18:57 +00001810/// EmitLValueForAnonRecordField - Given that the field is a member of
1811/// an anonymous struct or union buried inside a record, and given
1812/// that the base value is a pointer to the enclosing record, derive
1813/// an lvalue for the ultimate field.
1814LValue CodeGenFunction::EmitLValueForAnonRecordField(llvm::Value *BaseValue,
Francois Pichetd583da02010-12-04 09:14:42 +00001815 const IndirectFieldDecl *Field,
John McCallc4094932010-05-21 01:18:57 +00001816 unsigned CVRQualifiers) {
Francois Pichetd583da02010-12-04 09:14:42 +00001817 IndirectFieldDecl::chain_iterator I = Field->chain_begin(),
1818 IEnd = Field->chain_end();
John McCallc4094932010-05-21 01:18:57 +00001819 while (true) {
Chris Lattnera8cde3c2011-05-22 22:09:06 +00001820 LValue LV = EmitLValueForField(BaseValue, cast<FieldDecl>(*I),
1821 CVRQualifiers);
Francois Pichetd583da02010-12-04 09:14:42 +00001822 if (++I == IEnd) return LV;
John McCallc4094932010-05-21 01:18:57 +00001823
1824 assert(LV.isSimple());
1825 BaseValue = LV.getAddress();
1826 CVRQualifiers |= LV.getVRQualifiers();
1827 }
1828}
1829
John McCall53fcbd22011-02-26 08:07:02 +00001830LValue CodeGenFunction::EmitLValueForField(llvm::Value *baseAddr,
1831 const FieldDecl *field,
1832 unsigned cvr) {
1833 if (field->isBitField())
1834 return EmitLValueForBitfield(baseAddr, field, cvr);
Mike Stump4a3999f2009-09-09 13:00:44 +00001835
John McCall53fcbd22011-02-26 08:07:02 +00001836 const RecordDecl *rec = field->getParent();
1837 QualType type = field->getType();
Eli Friedman133e8042008-05-29 11:33:25 +00001838
John McCall53fcbd22011-02-26 08:07:02 +00001839 bool mayAlias = rec->hasAttr<MayAliasAttr>();
1840
Chris Lattner13ee4f42011-07-10 05:34:54 +00001841 llvm::Value *addr = baseAddr;
John McCall53fcbd22011-02-26 08:07:02 +00001842 if (rec->isUnion()) {
Chris Lattner13ee4f42011-07-10 05:34:54 +00001843 // For unions, there is no pointer adjustment.
John McCall53fcbd22011-02-26 08:07:02 +00001844 assert(!type->isReferenceType() && "union has reference member");
John McCall53fcbd22011-02-26 08:07:02 +00001845 } else {
1846 // For structs, we GEP to the field that the record layout suggests.
1847 unsigned idx = CGM.getTypes().getCGRecordLayout(rec).getLLVMFieldNo(field);
Chris Lattner13ee4f42011-07-10 05:34:54 +00001848 addr = Builder.CreateStructGEP(addr, idx, field->getName());
John McCall53fcbd22011-02-26 08:07:02 +00001849
1850 // If this is a reference field, load the reference right now.
1851 if (const ReferenceType *refType = type->getAs<ReferenceType>()) {
1852 llvm::LoadInst *load = Builder.CreateLoad(addr, "ref");
1853 if (cvr & Qualifiers::Volatile) load->setVolatile(true);
1854
1855 if (CGM.shouldUseTBAA()) {
1856 llvm::MDNode *tbaa;
1857 if (mayAlias)
1858 tbaa = CGM.getTBAAInfo(getContext().CharTy);
1859 else
1860 tbaa = CGM.getTBAAInfo(type);
1861 CGM.DecorateInstruction(load, tbaa);
1862 }
1863
1864 addr = load;
1865 mayAlias = false;
1866 type = refType->getPointeeType();
1867 cvr = 0; // qualifiers don't recursively apply to referencee
1868 }
Devang Pateled93c3c2007-10-26 19:42:18 +00001869 }
Chris Lattner13ee4f42011-07-10 05:34:54 +00001870
1871 // Make sure that the address is pointing to the right type. This is critical
1872 // for both unions and structs. A union needs a bitcast, a struct element
1873 // will need a bitcast if the LLVM type laid out doesn't match the desired
1874 // type.
Chandler Carruth4678f672011-07-12 08:58:26 +00001875 addr = EmitBitCastOfLValueToProperType(*this, addr,
Chris Lattner3f32d692011-07-12 06:52:18 +00001876 CGM.getTypes().ConvertTypeForMem(type),
1877 field->getName());
John McCall8ccfcb52009-09-24 19:53:00 +00001878
Julien Lerouge5a6b6982011-09-09 22:41:49 +00001879 if (field->hasAttr<AnnotateAttr>())
1880 addr = EmitFieldAnnotations(field, addr);
1881
John McCall53fcbd22011-02-26 08:07:02 +00001882 unsigned alignment = getContext().getDeclAlign(field).getQuantity();
1883 LValue LV = MakeAddrLValue(addr, type, alignment);
1884 LV.getQuals().addCVRQualifiers(cvr);
Daniel Dunbarf166a522010-08-21 03:44:13 +00001885
Fariborz Jahanian38c3ae92009-09-21 18:54:29 +00001886 // __weak attribute on a field is ignored.
Daniel Dunbarf166a522010-08-21 03:44:13 +00001887 if (LV.getQuals().getObjCGCAttr() == Qualifiers::Weak)
1888 LV.getQuals().removeObjCGCAttr();
John McCall53fcbd22011-02-26 08:07:02 +00001889
1890 // Fields of may_alias structs act like 'char' for TBAA purposes.
1891 // FIXME: this should get propagated down through anonymous structs
1892 // and unions.
1893 if (mayAlias && LV.getTBAAInfo())
1894 LV.setTBAAInfo(CGM.getTBAAInfo(getContext().CharTy));
1895
Daniel Dunbarf166a522010-08-21 03:44:13 +00001896 return LV;
Devang Patel30efa2e2007-10-23 20:28:39 +00001897}
1898
Anders Carlssondb78f0a2010-01-29 05:24:29 +00001899LValue
Chris Lattnerf53c0962010-09-06 00:11:41 +00001900CodeGenFunction::EmitLValueForFieldInitialization(llvm::Value *BaseValue,
1901 const FieldDecl *Field,
Anders Carlssondb78f0a2010-01-29 05:24:29 +00001902 unsigned CVRQualifiers) {
1903 QualType FieldType = Field->getType();
1904
1905 if (!FieldType->isReferenceType())
1906 return EmitLValueForField(BaseValue, Field, CVRQualifiers);
1907
Daniel Dunbar034299e2010-03-31 01:09:11 +00001908 const CGRecordLayout &RL =
1909 CGM.getTypes().getCGRecordLayout(Field->getParent());
1910 unsigned idx = RL.getLLVMFieldNo(Field);
Anders Carlssondb78f0a2010-01-29 05:24:29 +00001911 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Anders Carlssondb78f0a2010-01-29 05:24:29 +00001912 assert(!FieldType.getObjCGCAttr() && "fields cannot have GC attrs");
1913
Chris Lattnerd7c59352011-07-10 05:53:24 +00001914
1915 // Make sure that the address is pointing to the right type. This is critical
1916 // for both unions and structs. A union needs a bitcast, a struct element
1917 // will need a bitcast if the LLVM type laid out doesn't match the desired
1918 // type.
Chris Lattner2192fe52011-07-18 04:24:23 +00001919 llvm::Type *llvmType = ConvertTypeForMem(FieldType);
Chris Lattnerd7c59352011-07-10 05:53:24 +00001920 unsigned AS = cast<llvm::PointerType>(V->getType())->getAddressSpace();
1921 V = Builder.CreateBitCast(V, llvmType->getPointerTo(AS));
1922
Daniel Dunbar5c816372010-08-21 04:20:22 +00001923 unsigned Alignment = getContext().getDeclAlign(Field).getQuantity();
1924 return MakeAddrLValue(V, FieldType, Alignment);
Anders Carlssondb78f0a2010-01-29 05:24:29 +00001925}
1926
Chris Lattnerf53c0962010-09-06 00:11:41 +00001927LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr *E){
Daniel Dunbar27bacaf2010-02-16 19:43:39 +00001928 llvm::Value *DeclPtr = CreateMemTemp(E->getType(), ".compoundliteral");
Chris Lattnerf53c0962010-09-06 00:11:41 +00001929 const Expr *InitExpr = E->getInitializer();
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00001930 LValue Result = MakeAddrLValue(DeclPtr, E->getType());
Eli Friedman9fd8b682008-05-13 23:18:27 +00001931
John McCall31168b02011-06-15 23:02:42 +00001932 EmitAnyExprToMem(InitExpr, DeclPtr, E->getType().getQualifiers(),
1933 /*Init*/ true);
Eli Friedman9fd8b682008-05-13 23:18:27 +00001934
1935 return Result;
1936}
1937
John McCallc07a0c72011-02-17 10:25:35 +00001938LValue CodeGenFunction::
1939EmitConditionalOperatorLValue(const AbstractConditionalOperator *expr) {
1940 if (!expr->isGLValue()) {
John McCall0a6bf2e2011-01-26 19:21:13 +00001941 // ?: here should be an aggregate.
John McCallc07a0c72011-02-17 10:25:35 +00001942 assert((hasAggregateLLVMType(expr->getType()) &&
1943 !expr->getType()->isAnyComplexType()) &&
John McCall0a6bf2e2011-01-26 19:21:13 +00001944 "Unexpected conditional operator!");
John McCallc07a0c72011-02-17 10:25:35 +00001945 return EmitAggExprToLValue(expr);
Anders Carlsson1450adb2009-09-15 16:35:24 +00001946 }
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +00001947
John McCallc07a0c72011-02-17 10:25:35 +00001948 const Expr *condExpr = expr->getCond();
Chris Lattner41c6ab52011-02-27 23:02:32 +00001949 bool CondExprBool;
1950 if (ConstantFoldsToSimpleInteger(condExpr, CondExprBool)) {
John McCallc07a0c72011-02-17 10:25:35 +00001951 const Expr *live = expr->getTrueExpr(), *dead = expr->getFalseExpr();
Chris Lattner41c6ab52011-02-27 23:02:32 +00001952 if (!CondExprBool) std::swap(live, dead);
John McCallc07a0c72011-02-17 10:25:35 +00001953
1954 if (!ContainsLabel(dead))
1955 return EmitLValue(live);
John McCall0a6bf2e2011-01-26 19:21:13 +00001956 }
1957
John McCallc07a0c72011-02-17 10:25:35 +00001958 OpaqueValueMapping binding(*this, expr);
1959
1960 llvm::BasicBlock *lhsBlock = createBasicBlock("cond.true");
1961 llvm::BasicBlock *rhsBlock = createBasicBlock("cond.false");
1962 llvm::BasicBlock *contBlock = createBasicBlock("cond.end");
John McCall0a6bf2e2011-01-26 19:21:13 +00001963
1964 ConditionalEvaluation eval(*this);
John McCallc07a0c72011-02-17 10:25:35 +00001965 EmitBranchOnBoolExpr(condExpr, lhsBlock, rhsBlock);
John McCall0a6bf2e2011-01-26 19:21:13 +00001966
1967 // Any temporaries created here are conditional.
John McCallc07a0c72011-02-17 10:25:35 +00001968 EmitBlock(lhsBlock);
John McCall0a6bf2e2011-01-26 19:21:13 +00001969 eval.begin(*this);
John McCallc07a0c72011-02-17 10:25:35 +00001970 LValue lhs = EmitLValue(expr->getTrueExpr());
John McCall0a6bf2e2011-01-26 19:21:13 +00001971 eval.end(*this);
1972
John McCallc07a0c72011-02-17 10:25:35 +00001973 if (!lhs.isSimple())
1974 return EmitUnsupportedLValue(expr, "conditional operator");
John McCall0a6bf2e2011-01-26 19:21:13 +00001975
John McCallc07a0c72011-02-17 10:25:35 +00001976 lhsBlock = Builder.GetInsertBlock();
1977 Builder.CreateBr(contBlock);
John McCall0a6bf2e2011-01-26 19:21:13 +00001978
1979 // Any temporaries created here are conditional.
John McCallc07a0c72011-02-17 10:25:35 +00001980 EmitBlock(rhsBlock);
John McCall0a6bf2e2011-01-26 19:21:13 +00001981 eval.begin(*this);
John McCallc07a0c72011-02-17 10:25:35 +00001982 LValue rhs = EmitLValue(expr->getFalseExpr());
John McCall0a6bf2e2011-01-26 19:21:13 +00001983 eval.end(*this);
John McCallc07a0c72011-02-17 10:25:35 +00001984 if (!rhs.isSimple())
1985 return EmitUnsupportedLValue(expr, "conditional operator");
1986 rhsBlock = Builder.GetInsertBlock();
John McCall0a6bf2e2011-01-26 19:21:13 +00001987
John McCallc07a0c72011-02-17 10:25:35 +00001988 EmitBlock(contBlock);
John McCall0a6bf2e2011-01-26 19:21:13 +00001989
Jay Foad20c0f022011-03-30 11:28:58 +00001990 llvm::PHINode *phi = Builder.CreatePHI(lhs.getAddress()->getType(), 2,
John McCall0a6bf2e2011-01-26 19:21:13 +00001991 "cond-lvalue");
John McCallc07a0c72011-02-17 10:25:35 +00001992 phi->addIncoming(lhs.getAddress(), lhsBlock);
1993 phi->addIncoming(rhs.getAddress(), rhsBlock);
1994 return MakeAddrLValue(phi, expr->getType());
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +00001995}
1996
Mike Stump65511702009-11-16 06:50:58 +00001997/// EmitCastLValue - Casts are never lvalues unless that cast is a dynamic_cast.
1998/// If the cast is a dynamic_cast, we can have the usual lvalue result,
1999/// otherwise if a cast is needed by the code generator in an lvalue context,
2000/// then it must mean that we need the address of an aggregate in order to
2001/// access one of its fields. This can happen for all the reasons that casts
2002/// are permitted with aggregate result, including noop aggregate casts, and
2003/// cast from scalar to union.
Chris Lattner28bcf1a2009-03-18 18:28:57 +00002004LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
Anders Carlssond95f9602009-09-12 16:16:49 +00002005 switch (E->getCastKind()) {
John McCalle3027922010-08-25 11:45:40 +00002006 case CK_ToVoid:
Eli Friedman8c98dff2009-11-16 05:48:01 +00002007 return EmitUnsupportedLValue(E, "unexpected cast lvalue");
John McCall8cb679e2010-11-15 09:13:47 +00002008
2009 case CK_Dependent:
2010 llvm_unreachable("dependent cast kind in IR gen!");
2011
John McCall34376a62010-12-04 03:47:34 +00002012 case CK_GetObjCProperty: {
2013 LValue LV = EmitLValue(E->getSubExpr());
2014 assert(LV.isPropertyRef());
2015 RValue RV = EmitLoadOfPropertyRefLValue(LV);
2016
2017 // Property is an aggregate r-value.
2018 if (RV.isAggregate()) {
2019 return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
2020 }
2021
2022 // Implicit property returns an l-value.
2023 assert(RV.isScalar());
2024 return MakeAddrLValue(RV.getScalarVal(), E->getSubExpr()->getType());
2025 }
2026
John McCalle3027922010-08-25 11:45:40 +00002027 case CK_NoOp:
Douglas Gregor21d3fca2011-01-27 23:22:05 +00002028 case CK_LValueToRValue:
2029 if (!E->getSubExpr()->Classify(getContext()).isPRValue()
2030 || E->getType()->isRecordType())
John McCalle26a8722010-12-04 08:14:53 +00002031 return EmitLValue(E->getSubExpr());
Douglas Gregorcdb466e2010-07-15 18:58:16 +00002032 // Fall through to synthesize a temporary.
John McCall8cb679e2010-11-15 09:13:47 +00002033
John McCalle3027922010-08-25 11:45:40 +00002034 case CK_BitCast:
2035 case CK_ArrayToPointerDecay:
2036 case CK_FunctionToPointerDecay:
2037 case CK_NullToMemberPointer:
John McCalle84af4e2010-11-13 01:35:44 +00002038 case CK_NullToPointer:
John McCalle3027922010-08-25 11:45:40 +00002039 case CK_IntegralToPointer:
2040 case CK_PointerToIntegral:
John McCall8cb679e2010-11-15 09:13:47 +00002041 case CK_PointerToBoolean:
John McCalle3027922010-08-25 11:45:40 +00002042 case CK_VectorSplat:
2043 case CK_IntegralCast:
John McCall8cb679e2010-11-15 09:13:47 +00002044 case CK_IntegralToBoolean:
John McCalle3027922010-08-25 11:45:40 +00002045 case CK_IntegralToFloating:
2046 case CK_FloatingToIntegral:
John McCall8cb679e2010-11-15 09:13:47 +00002047 case CK_FloatingToBoolean:
John McCalle3027922010-08-25 11:45:40 +00002048 case CK_FloatingCast:
John McCallc5e62b42010-11-13 09:02:35 +00002049 case CK_FloatingRealToComplex:
John McCalld7646252010-11-14 08:17:51 +00002050 case CK_FloatingComplexToReal:
2051 case CK_FloatingComplexToBoolean:
John McCallc5e62b42010-11-13 09:02:35 +00002052 case CK_FloatingComplexCast:
John McCalld7646252010-11-14 08:17:51 +00002053 case CK_FloatingComplexToIntegralComplex:
John McCallc5e62b42010-11-13 09:02:35 +00002054 case CK_IntegralRealToComplex:
John McCalld7646252010-11-14 08:17:51 +00002055 case CK_IntegralComplexToReal:
2056 case CK_IntegralComplexToBoolean:
John McCallc5e62b42010-11-13 09:02:35 +00002057 case CK_IntegralComplexCast:
John McCalld7646252010-11-14 08:17:51 +00002058 case CK_IntegralComplexToFloatingComplex:
John McCalle3027922010-08-25 11:45:40 +00002059 case CK_DerivedToBaseMemberPointer:
2060 case CK_BaseToDerivedMemberPointer:
2061 case CK_MemberPointerToBoolean:
John McCall31168b02011-06-15 23:02:42 +00002062 case CK_AnyPointerToBlockPointerCast:
John McCall2d637d22011-09-10 06:18:15 +00002063 case CK_ARCProduceObject:
2064 case CK_ARCConsumeObject:
2065 case CK_ARCReclaimReturnedObject:
2066 case CK_ARCExtendBlockObject: {
Douglas Gregorcdb466e2010-07-15 18:58:16 +00002067 // These casts only produce lvalues when we're binding a reference to a
2068 // temporary realized from a (converted) pure rvalue. Emit the expression
2069 // as a value, copy it into a temporary, and return an lvalue referring to
2070 // that temporary.
2071 llvm::Value *V = CreateMemTemp(E->getType(), "ref.temp");
John McCall31168b02011-06-15 23:02:42 +00002072 EmitAnyExprToMem(E, V, E->getType().getQualifiers(), false);
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002073 return MakeAddrLValue(V, E->getType());
Douglas Gregorcdb466e2010-07-15 18:58:16 +00002074 }
Eli Friedman8c98dff2009-11-16 05:48:01 +00002075
Anders Carlsson8a01a752011-04-11 02:03:26 +00002076 case CK_Dynamic: {
Mike Stump65511702009-11-16 06:50:58 +00002077 LValue LV = EmitLValue(E->getSubExpr());
2078 llvm::Value *V = LV.getAddress();
2079 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(E);
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002080 return MakeAddrLValue(EmitDynamicCast(V, DCE), E->getType());
Mike Stump65511702009-11-16 06:50:58 +00002081 }
2082
John McCalle3027922010-08-25 11:45:40 +00002083 case CK_ConstructorConversion:
2084 case CK_UserDefinedConversion:
John McCall9320b872011-09-09 05:25:32 +00002085 case CK_CPointerToObjCPointerCast:
2086 case CK_BlockPointerToObjCPointerCast:
Chris Lattner28bcf1a2009-03-18 18:28:57 +00002087 return EmitLValue(E->getSubExpr());
Anders Carlssond95f9602009-09-12 16:16:49 +00002088
John McCalle3027922010-08-25 11:45:40 +00002089 case CK_UncheckedDerivedToBase:
2090 case CK_DerivedToBase: {
Anders Carlssond95f9602009-09-12 16:16:49 +00002091 const RecordType *DerivedClassTy =
2092 E->getSubExpr()->getType()->getAs<RecordType>();
2093 CXXRecordDecl *DerivedClassDecl =
2094 cast<CXXRecordDecl>(DerivedClassTy->getDecl());
Anders Carlssond95f9602009-09-12 16:16:49 +00002095
2096 LValue LV = EmitLValue(E->getSubExpr());
John McCalle26a8722010-12-04 08:14:53 +00002097 llvm::Value *This = LV.getAddress();
Anders Carlssond95f9602009-09-12 16:16:49 +00002098
2099 // Perform the derived-to-base conversion
2100 llvm::Value *Base =
Fariborz Jahanian64cda8b2010-06-17 23:00:29 +00002101 GetAddressOfBaseClass(This, DerivedClassDecl,
John McCallcf142162010-08-07 06:22:56 +00002102 E->path_begin(), E->path_end(),
2103 /*NullCheckValue=*/false);
Anders Carlssond95f9602009-09-12 16:16:49 +00002104
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002105 return MakeAddrLValue(Base, E->getType());
Anders Carlssond95f9602009-09-12 16:16:49 +00002106 }
John McCalle3027922010-08-25 11:45:40 +00002107 case CK_ToUnion:
Daniel Dunbar9c4e4652010-02-05 20:02:42 +00002108 return EmitAggExprToLValue(E);
John McCalle3027922010-08-25 11:45:40 +00002109 case CK_BaseToDerived: {
Anders Carlsson8c793172009-11-23 17:57:54 +00002110 const RecordType *DerivedClassTy = E->getType()->getAs<RecordType>();
2111 CXXRecordDecl *DerivedClassDecl =
2112 cast<CXXRecordDecl>(DerivedClassTy->getDecl());
2113
2114 LValue LV = EmitLValue(E->getSubExpr());
2115
2116 // Perform the base-to-derived conversion
2117 llvm::Value *Derived =
Anders Carlsson8a64c1c2010-04-24 21:23:59 +00002118 GetAddressOfDerivedClass(LV.getAddress(), DerivedClassDecl,
John McCallcf142162010-08-07 06:22:56 +00002119 E->path_begin(), E->path_end(),
2120 /*NullCheckValue=*/false);
Anders Carlsson8c793172009-11-23 17:57:54 +00002121
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002122 return MakeAddrLValue(Derived, E->getType());
Eli Friedman8c98dff2009-11-16 05:48:01 +00002123 }
John McCalle3027922010-08-25 11:45:40 +00002124 case CK_LValueBitCast: {
Eli Friedman8c98dff2009-11-16 05:48:01 +00002125 // This must be a reinterpret_cast (or c-style equivalent).
2126 const ExplicitCastExpr *CE = cast<ExplicitCastExpr>(E);
Anders Carlsson50cb3212009-11-14 21:21:42 +00002127
2128 LValue LV = EmitLValue(E->getSubExpr());
2129 llvm::Value *V = Builder.CreateBitCast(LV.getAddress(),
2130 ConvertType(CE->getTypeAsWritten()));
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002131 return MakeAddrLValue(V, E->getType());
Anders Carlsson50cb3212009-11-14 21:21:42 +00002132 }
John McCalle3027922010-08-25 11:45:40 +00002133 case CK_ObjCObjectLValueCast: {
Douglas Gregor8b2d2fe2010-08-07 11:51:51 +00002134 LValue LV = EmitLValue(E->getSubExpr());
2135 QualType ToType = getContext().getLValueReferenceType(E->getType());
2136 llvm::Value *V = Builder.CreateBitCast(LV.getAddress(),
2137 ConvertType(ToType));
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002138 return MakeAddrLValue(V, E->getType());
Douglas Gregor8b2d2fe2010-08-07 11:51:51 +00002139 }
Anders Carlssond95f9602009-09-12 16:16:49 +00002140 }
Douglas Gregorcdb466e2010-07-15 18:58:16 +00002141
2142 llvm_unreachable("Unhandled lvalue cast kind?");
Chris Lattner28bcf1a2009-03-18 18:28:57 +00002143}
2144
Fariborz Jahaniane4d94ce2009-10-20 23:29:04 +00002145LValue CodeGenFunction::EmitNullInitializationLValue(
Douglas Gregor747eb782010-07-08 06:14:04 +00002146 const CXXScalarValueInitExpr *E) {
Fariborz Jahaniane4d94ce2009-10-20 23:29:04 +00002147 QualType Ty = E->getType();
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002148 LValue LV = MakeAddrLValue(CreateMemTemp(Ty), Ty);
Anders Carlssonc0964b62010-05-22 17:35:42 +00002149 EmitNullInitialization(LV.getAddress(), Ty);
Daniel Dunbara7566f12010-02-09 02:48:28 +00002150 return LV;
Fariborz Jahaniane4d94ce2009-10-20 23:29:04 +00002151}
2152
John McCall1bf58462011-02-16 08:02:54 +00002153LValue CodeGenFunction::EmitOpaqueValueLValue(const OpaqueValueExpr *e) {
2154 assert(e->isGLValue() || e->getType()->isRecordType());
John McCallc07a0c72011-02-17 10:25:35 +00002155 return getOpaqueLValueMapping(e);
John McCall1bf58462011-02-16 08:02:54 +00002156}
2157
Douglas Gregorfe314812011-06-21 17:03:29 +00002158LValue CodeGenFunction::EmitMaterializeTemporaryExpr(
2159 const MaterializeTemporaryExpr *E) {
John McCall17054bd62011-08-26 21:08:13 +00002160 RValue RV = EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Douglas Gregord410c082011-06-21 18:20:46 +00002161 return MakeAddrLValue(RV.getScalarVal(), E->getType());
Douglas Gregorfe314812011-06-21 17:03:29 +00002162}
2163
2164
Chris Lattnere47e4402007-06-01 18:02:12 +00002165//===--------------------------------------------------------------------===//
2166// Expression Emission
2167//===--------------------------------------------------------------------===//
2168
Anders Carlsson17490832009-12-24 20:40:36 +00002169RValue CodeGenFunction::EmitCallExpr(const CallExpr *E,
2170 ReturnValueSlot ReturnValue) {
Devang Pateld6ffebb2011-03-07 18:45:56 +00002171 if (CGDebugInfo *DI = getDebugInfo()) {
Devang Pateld3a6b0f2011-03-04 18:54:42 +00002172 DI->setLocation(E->getLocStart());
2173 DI->UpdateLineDirectiveRegion(Builder);
2174 DI->EmitStopPoint(Builder);
2175 }
2176
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00002177 // Builtins never have block type.
Daniel Dunbarbb197e42009-01-09 16:50:52 +00002178 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonbfb36712009-12-24 21:13:40 +00002179 return EmitBlockCallExpr(E, ReturnValue);
Daniel Dunbarbb197e42009-01-09 16:50:52 +00002180
Anders Carlssone5fd6f22009-04-03 22:50:24 +00002181 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
Anders Carlssonbfb36712009-12-24 21:13:40 +00002182 return EmitCXXMemberCallExpr(CE, ReturnValue);
Mike Stump4a3999f2009-09-09 13:00:44 +00002183
Douglas Gregore0e96302011-09-06 21:41:04 +00002184 const Decl *TargetDecl = E->getCalleeDecl();
2185 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(TargetDecl)) {
2186 if (unsigned builtinID = FD->getBuiltinID())
2187 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00002188 }
2189
Chris Lattner4ca97c32009-06-13 00:26:38 +00002190 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
Anders Carlsson4034a952009-05-27 04:18:27 +00002191 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
Anders Carlssonbfb36712009-12-24 21:13:40 +00002192 return EmitCXXOperatorMemberCallExpr(CE, MD, ReturnValue);
Mike Stump4a3999f2009-09-09 13:00:44 +00002193
John McCall31168b02011-06-15 23:02:42 +00002194 if (const CXXPseudoDestructorExpr *PseudoDtor
2195 = dyn_cast<CXXPseudoDestructorExpr>(E->getCallee()->IgnoreParens())) {
2196 QualType DestroyedType = PseudoDtor->getDestroyedType();
2197 if (getContext().getLangOptions().ObjCAutoRefCount &&
2198 DestroyedType->isObjCLifetimeType() &&
2199 (DestroyedType.getObjCLifetime() == Qualifiers::OCL_Strong ||
2200 DestroyedType.getObjCLifetime() == Qualifiers::OCL_Weak)) {
Benjamin Kramerdd19c012011-06-18 10:34:00 +00002201 // Automatic Reference Counting:
2202 // If the pseudo-expression names a retainable object with weak or
2203 // strong lifetime, the object shall be released.
John McCall31168b02011-06-15 23:02:42 +00002204 Expr *BaseExpr = PseudoDtor->getBase();
2205 llvm::Value *BaseValue = NULL;
2206 Qualifiers BaseQuals;
2207
Benjamin Kramerdd19c012011-06-18 10:34:00 +00002208 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
John McCall31168b02011-06-15 23:02:42 +00002209 if (PseudoDtor->isArrow()) {
2210 BaseValue = EmitScalarExpr(BaseExpr);
2211 const PointerType *PTy = BaseExpr->getType()->getAs<PointerType>();
2212 BaseQuals = PTy->getPointeeType().getQualifiers();
2213 } else {
2214 LValue BaseLV = EmitLValue(BaseExpr);
John McCall31168b02011-06-15 23:02:42 +00002215 BaseValue = BaseLV.getAddress();
2216 QualType BaseTy = BaseExpr->getType();
2217 BaseQuals = BaseTy.getQualifiers();
2218 }
2219
2220 switch (PseudoDtor->getDestroyedType().getObjCLifetime()) {
2221 case Qualifiers::OCL_None:
2222 case Qualifiers::OCL_ExplicitNone:
2223 case Qualifiers::OCL_Autoreleasing:
2224 break;
2225
2226 case Qualifiers::OCL_Strong:
2227 EmitARCRelease(Builder.CreateLoad(BaseValue,
Benjamin Kramerdd19c012011-06-18 10:34:00 +00002228 PseudoDtor->getDestroyedType().isVolatileQualified()),
John McCall31168b02011-06-15 23:02:42 +00002229 /*precise*/ true);
2230 break;
2231
2232 case Qualifiers::OCL_Weak:
2233 EmitARCDestroyWeak(BaseValue);
2234 break;
2235 }
2236 } else {
2237 // C++ [expr.pseudo]p1:
2238 // The result shall only be used as the operand for the function call
2239 // operator (), and the result of such a call has type void. The only
2240 // effect is the evaluation of the postfix-expression before the dot or
2241 // arrow.
2242 EmitScalarExpr(E->getCallee());
2243 }
2244
Douglas Gregorad8a3362009-09-04 17:36:40 +00002245 return RValue::get(0);
2246 }
Mike Stump4a3999f2009-09-09 13:00:44 +00002247
Chris Lattner2da04b32007-08-24 05:35:26 +00002248 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Anders Carlsson17490832009-12-24 20:40:36 +00002249 return EmitCall(E->getCallee()->getType(), Callee, ReturnValue,
Anders Carlsson3a9463b2009-05-27 01:22:39 +00002250 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattner9e47ead2007-08-31 04:44:06 +00002251}
2252
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00002253LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattnere541ea32009-05-12 21:28:12 +00002254 // Comma expressions just emit their LHS then their RHS as an l-value.
John McCalle3027922010-08-25 11:45:40 +00002255 if (E->getOpcode() == BO_Comma) {
John McCalla2342eb2010-12-05 02:00:02 +00002256 EmitIgnoredExpr(E->getLHS());
Eli Friedman5445f6e2009-12-07 20:18:11 +00002257 EnsureInsertPoint();
Chris Lattnere541ea32009-05-12 21:28:12 +00002258 return EmitLValue(E->getRHS());
2259 }
Mike Stump4a3999f2009-09-09 13:00:44 +00002260
John McCalle3027922010-08-25 11:45:40 +00002261 if (E->getOpcode() == BO_PtrMemD ||
2262 E->getOpcode() == BO_PtrMemI)
Fariborz Jahanianffba6622009-10-22 22:57:31 +00002263 return EmitPointerToDataMemberBinaryExpr(E);
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00002264
John McCalla2342eb2010-12-05 02:00:02 +00002265 assert(E->getOpcode() == BO_Assign && "unexpected binary l-value");
John McCall31168b02011-06-15 23:02:42 +00002266
2267 // Note that in all of these cases, __block variables need the RHS
2268 // evaluated first just in case the variable gets moved by the RHS.
John McCall4f29b492010-11-16 23:07:28 +00002269
Anders Carlsson0999aaf2009-10-19 18:28:22 +00002270 if (!hasAggregateLLVMType(E->getType())) {
John McCall31168b02011-06-15 23:02:42 +00002271 switch (E->getLHS()->getType().getObjCLifetime()) {
2272 case Qualifiers::OCL_Strong:
2273 return EmitARCStoreStrong(E, /*ignored*/ false).first;
2274
2275 case Qualifiers::OCL_Autoreleasing:
2276 return EmitARCStoreAutoreleasing(E).first;
2277
2278 // No reason to do any of these differently.
2279 case Qualifiers::OCL_None:
2280 case Qualifiers::OCL_ExplicitNone:
2281 case Qualifiers::OCL_Weak:
2282 break;
2283 }
2284
John McCalld0a30012010-12-06 06:10:02 +00002285 RValue RV = EmitAnyExpr(E->getRHS());
Anders Carlsson0999aaf2009-10-19 18:28:22 +00002286 LValue LV = EmitLValue(E->getLHS());
John McCall55e1fbc2011-06-25 02:11:03 +00002287 EmitStoreThroughLValue(RV, LV);
Anders Carlsson0999aaf2009-10-19 18:28:22 +00002288 return LV;
2289 }
John McCall4f29b492010-11-16 23:07:28 +00002290
2291 if (E->getType()->isAnyComplexType())
2292 return EmitComplexAssignmentLValue(E);
2293
Daniel Dunbard0bc7b92010-02-05 19:38:31 +00002294 return EmitAggExprToLValue(E);
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00002295}
2296
Christopher Lambd91c3d42007-12-29 05:02:41 +00002297LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
Christopher Lambd91c3d42007-12-29 05:02:41 +00002298 RValue RV = EmitCallExpr(E);
Anders Carlsson4ae70ff2009-05-27 01:45:47 +00002299
Chris Lattnerab5e0af2009-10-28 17:39:19 +00002300 if (!RV.isScalar())
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002301 return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
Chris Lattnerab5e0af2009-10-28 17:39:19 +00002302
2303 assert(E->getCallReturnType()->isReferenceType() &&
2304 "Can't have a scalar return unless the return type is a "
2305 "reference type!");
Mike Stump4a3999f2009-09-09 13:00:44 +00002306
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002307 return MakeAddrLValue(RV.getScalarVal(), E->getType());
Christopher Lambd91c3d42007-12-29 05:02:41 +00002308}
2309
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +00002310LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
2311 // FIXME: This shouldn't require another copy.
Daniel Dunbard0bc7b92010-02-05 19:38:31 +00002312 return EmitAggExprToLValue(E);
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +00002313}
2314
Anders Carlsson3be22e22009-05-30 23:23:33 +00002315LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
John McCall8ea46b62010-09-18 00:58:34 +00002316 assert(E->getType()->getAsCXXRecordDecl()->hasTrivialDestructor()
2317 && "binding l-value to type which needs a temporary");
John McCall7a626f62010-09-15 10:14:12 +00002318 AggValueSlot Slot = CreateAggTemp(E->getType(), "tmp");
2319 EmitCXXConstructExpr(E, Slot);
2320 return MakeAddrLValue(Slot.getAddr(), E->getType());
Anders Carlsson3be22e22009-05-30 23:23:33 +00002321}
2322
Anders Carlssonfd2af0c2009-05-30 23:30:54 +00002323LValue
Mike Stumpc9b231c2009-11-15 08:09:41 +00002324CodeGenFunction::EmitCXXTypeidLValue(const CXXTypeidExpr *E) {
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002325 return MakeAddrLValue(EmitCXXTypeidExpr(E), E->getType());
Mike Stumpc9b231c2009-11-15 08:09:41 +00002326}
2327
2328LValue
Anders Carlssonfd2af0c2009-05-30 23:30:54 +00002329CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
John McCall8ea46b62010-09-18 00:58:34 +00002330 AggValueSlot Slot = CreateAggTemp(E->getType(), "temp.lvalue");
John McCallcac93852011-08-26 08:02:37 +00002331 Slot.setExternallyDestructed();
John McCall8ea46b62010-09-18 00:58:34 +00002332 EmitAggExpr(E->getSubExpr(), Slot);
2333 EmitCXXTemporary(E->getTemporary(), Slot.getAddr());
2334 return MakeAddrLValue(Slot.getAddr(), E->getType());
Anders Carlssonfd2af0c2009-05-30 23:30:54 +00002335}
2336
Daniel Dunbarc8317a42008-08-23 10:51:21 +00002337LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
Daniel Dunbarc8317a42008-08-23 10:51:21 +00002338 RValue RV = EmitObjCMessageExpr(E);
Anders Carlsson280e61f12010-06-21 20:59:55 +00002339
2340 if (!RV.isScalar())
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002341 return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
Anders Carlsson280e61f12010-06-21 20:59:55 +00002342
2343 assert(E->getMethodDecl()->getResultType()->isReferenceType() &&
2344 "Can't have a scalar return unless the return type is a "
2345 "reference type!");
2346
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002347 return MakeAddrLValue(RV.getScalarVal(), E->getType());
Daniel Dunbarc8317a42008-08-23 10:51:21 +00002348}
2349
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00002350LValue CodeGenFunction::EmitObjCSelectorLValue(const ObjCSelectorExpr *E) {
2351 llvm::Value *V =
2352 CGM.getObjCRuntime().GetSelector(Builder, E->getSelector(), true);
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002353 return MakeAddrLValue(V, E->getType());
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00002354}
2355
Daniel Dunbar722f4242009-04-22 05:08:15 +00002356llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00002357 const ObjCIvarDecl *Ivar) {
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00002358 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00002359}
2360
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00002361LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
2362 llvm::Value *BaseValue,
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00002363 const ObjCIvarDecl *Ivar,
2364 unsigned CVRQualifiers) {
Chris Lattnerc4688d22009-04-17 17:44:48 +00002365 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar9ebf9512009-04-21 01:19:28 +00002366 Ivar, CVRQualifiers);
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00002367}
2368
2369LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonc13b85a2008-08-25 01:53:23 +00002370 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
2371 llvm::Value *BaseValue = 0;
2372 const Expr *BaseExpr = E->getBase();
John McCall8ccfcb52009-09-24 19:53:00 +00002373 Qualifiers BaseQuals;
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00002374 QualType ObjectTy;
Anders Carlssonc13b85a2008-08-25 01:53:23 +00002375 if (E->isArrow()) {
2376 BaseValue = EmitScalarExpr(BaseExpr);
Steve Naroff7cae42b2009-07-10 23:34:53 +00002377 ObjectTy = BaseExpr->getType()->getPointeeType();
John McCall8ccfcb52009-09-24 19:53:00 +00002378 BaseQuals = ObjectTy.getQualifiers();
Anders Carlssonc13b85a2008-08-25 01:53:23 +00002379 } else {
2380 LValue BaseLV = EmitLValue(BaseExpr);
2381 // FIXME: this isn't right for bitfields.
2382 BaseValue = BaseLV.getAddress();
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00002383 ObjectTy = BaseExpr->getType();
John McCall8ccfcb52009-09-24 19:53:00 +00002384 BaseQuals = ObjectTy.getQualifiers();
Anders Carlssonc13b85a2008-08-25 01:53:23 +00002385 }
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00002386
Fariborz Jahaniande1d3242009-09-16 23:11:23 +00002387 LValue LV =
John McCall8ccfcb52009-09-24 19:53:00 +00002388 EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
2389 BaseQuals.getCVRQualifiers());
Fariborz Jahaniande1d3242009-09-16 23:11:23 +00002390 setObjCGCLValueClass(getContext(), E, LV);
2391 return LV;
Chris Lattner4bd55962008-03-30 23:03:07 +00002392}
2393
Chris Lattnera4185c52009-04-25 19:35:26 +00002394LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
Chris Lattnera4185c52009-04-25 19:35:26 +00002395 // Can only get l-value for message expression returning aggregate type
2396 RValue RV = EmitAnyExprToTemp(E);
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002397 return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
Chris Lattnera4185c52009-04-25 19:35:26 +00002398}
2399
Anders Carlsson0435ed52009-12-24 19:08:58 +00002400RValue CodeGenFunction::EmitCall(QualType CalleeType, llvm::Value *Callee,
Anders Carlsson17490832009-12-24 20:40:36 +00002401 ReturnValueSlot ReturnValue,
Anders Carlsson3a9463b2009-05-27 01:22:39 +00002402 CallExpr::const_arg_iterator ArgBeg,
2403 CallExpr::const_arg_iterator ArgEnd,
2404 const Decl *TargetDecl) {
Mike Stump4a3999f2009-09-09 13:00:44 +00002405 // Get the actual function type. The callee type will always be a pointer to
2406 // function type or a block pointer type.
2407 assert(CalleeType->isFunctionPointerType() &&
Anders Carlssond8db8532009-04-07 18:53:02 +00002408 "Call must have function pointer type!");
2409
John McCall6fd4c232009-10-23 08:22:42 +00002410 CalleeType = getContext().getCanonicalType(CalleeType);
2411
John McCallab26cfa2010-02-05 21:31:56 +00002412 const FunctionType *FnType
2413 = cast<FunctionType>(cast<PointerType>(CalleeType)->getPointeeType());
Daniel Dunbarc722b852008-08-30 03:02:31 +00002414
2415 CallArgList Args;
John McCall6fd4c232009-10-23 08:22:42 +00002416 EmitCallArgs(Args, dyn_cast<FunctionProtoType>(FnType), ArgBeg, ArgEnd);
Daniel Dunbarc722b852008-08-30 03:02:31 +00002417
John McCallcbc038a2011-09-21 08:08:30 +00002418 const CGFunctionInfo &FnInfo = CGM.getTypes().getFunctionInfo(Args, FnType);
2419
2420 // C99 6.5.2.2p6:
2421 // If the expression that denotes the called function has a type
2422 // that does not include a prototype, [the default argument
2423 // promotions are performed]. If the number of arguments does not
2424 // equal the number of parameters, the behavior is undefined. If
2425 // the function is defined with a type that includes a prototype,
2426 // and either the prototype ends with an ellipsis (, ...) or the
2427 // types of the arguments after promotion are not compatible with
2428 // the types of the parameters, the behavior is undefined. If the
2429 // function is defined with a type that does not include a
2430 // prototype, and the types of the arguments after promotion are
2431 // not compatible with those of the parameters after promotion,
2432 // the behavior is undefined [except in some trivial cases].
2433 // That is, in the general case, we should assume that a call
2434 // through an unprototyped function type works like a *non-variadic*
2435 // call. The way we make this work is to cast to the exact type
2436 // of the promoted arguments.
2437 if (isa<FunctionNoProtoType>(FnType) &&
2438 !getTargetHooks().isNoProtoCallVariadic(FnType->getCallConv())) {
2439 assert(cast<llvm::FunctionType>(Callee->getType()->getContainedType(0))
2440 ->isVarArg());
2441 llvm::Type *CalleeTy = getTypes().GetFunctionType(FnInfo, false);
2442 CalleeTy = CalleeTy->getPointerTo();
2443 Callee = Builder.CreateBitCast(Callee, CalleeTy, "callee.knr.cast");
2444 }
2445
2446 return EmitCall(FnInfo, Callee, ReturnValue, Args, TargetDecl);
Daniel Dunbar97db84c2008-08-23 03:46:30 +00002447}
Fariborz Jahanianffba6622009-10-22 22:57:31 +00002448
Chris Lattnerab5e0af2009-10-28 17:39:19 +00002449LValue CodeGenFunction::
2450EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E) {
Eli Friedman928a5672009-11-18 05:01:17 +00002451 llvm::Value *BaseV;
John McCalle3027922010-08-25 11:45:40 +00002452 if (E->getOpcode() == BO_PtrMemI)
Eli Friedman928a5672009-11-18 05:01:17 +00002453 BaseV = EmitScalarExpr(E->getLHS());
2454 else
2455 BaseV = EmitLValue(E->getLHS()).getAddress();
Chris Lattnerab5e0af2009-10-28 17:39:19 +00002456
John McCallc134eb52010-08-31 21:07:20 +00002457 llvm::Value *OffsetV = EmitScalarExpr(E->getRHS());
2458
2459 const MemberPointerType *MPT
2460 = E->getRHS()->getType()->getAs<MemberPointerType>();
2461
2462 llvm::Value *AddV =
2463 CGM.getCXXABI().EmitMemberDataPointerAddress(*this, BaseV, OffsetV, MPT);
2464
2465 return MakeAddrLValue(AddV, MPT->getPointeeType());
Fariborz Jahanianffba6622009-10-22 22:57:31 +00002466}