blob: 0be483a9071a242fa37dcfc949ea24d2ae80d739 [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"
John McCall5d865c322010-08-31 07:33:07 +000015#include "CGCXXABI.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000016#include "CGCall.h"
Devang Pateld3a6b0f2011-03-04 18:54:42 +000017#include "CGDebugInfo.h"
Daniel Dunbar89da6ad2008-08-13 00:59:25 +000018#include "CGObjCRuntime.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000019#include "CGRecordLayout.h"
20#include "CodeGenModule.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"
Nico Weber3a691a32012-06-23 02:07:59 +000024#include "clang/Basic/ConvertUTF.h"
Chandler Carruth85098242010-06-15 23:19:56 +000025#include "clang/Frontend/CodeGenOptions.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000026#include "llvm/ADT/Hashing.h"
27#include "llvm/DataLayout.h"
Nick Lewycky7c6c6cc2011-07-07 03:54:51 +000028#include "llvm/Intrinsics.h"
Peter Collingbourne95fd2ca2011-10-27 19:19:51 +000029#include "llvm/LLVMContext.h"
Chandler Carruthcc8f2a62012-07-15 23:28:01 +000030#include "llvm/MDBuilder.h"
Chris Lattnere47e4402007-06-01 18:02:12 +000031using namespace clang;
32using namespace CodeGen;
33
Chris Lattnerd7f58862007-06-02 05:24:33 +000034//===--------------------------------------------------------------------===//
Chris Lattnerf0106d22007-06-02 19:33:17 +000035// Miscellaneous Helper Methods
36//===--------------------------------------------------------------------===//
37
John McCallad7c5c12011-02-08 08:22:06 +000038llvm::Value *CodeGenFunction::EmitCastToVoidPtr(llvm::Value *value) {
39 unsigned addressSpace =
40 cast<llvm::PointerType>(value->getType())->getAddressSpace();
41
Chris Lattner2192fe52011-07-18 04:24:23 +000042 llvm::PointerType *destType = Int8PtrTy;
John McCallad7c5c12011-02-08 08:22:06 +000043 if (addressSpace)
44 destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace);
45
46 if (value->getType() == destType) return value;
47 return Builder.CreateBitCast(value, destType);
48}
49
Chris Lattnere9a64532007-06-22 21:44:33 +000050/// CreateTempAlloca - This creates a alloca and inserts it into the entry
51/// block.
Chris Lattner2192fe52011-07-18 04:24:23 +000052llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(llvm::Type *Ty,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000053 const Twine &Name) {
Chris Lattner47640222009-03-22 00:24:14 +000054 if (!Builder.isNamePreserving())
Daniel Dunbarb5aacc22009-10-19 01:21:05 +000055 return new llvm::AllocaInst(Ty, 0, "", AllocaInsertPt);
Devang Pateldac79de2009-10-12 22:29:02 +000056 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
Chris Lattnere9a64532007-06-22 21:44:33 +000057}
Chris Lattner8394d792007-06-05 20:53:16 +000058
John McCall2e6567a2010-04-22 01:10:34 +000059void CodeGenFunction::InitTempAlloca(llvm::AllocaInst *Var,
60 llvm::Value *Init) {
61 llvm::StoreInst *Store = new llvm::StoreInst(Init, Var);
62 llvm::BasicBlock *Block = AllocaInsertPt->getParent();
63 Block->getInstList().insertAfter(&*AllocaInsertPt, Store);
64}
65
Chris Lattnerc401de92010-07-05 20:21:00 +000066llvm::AllocaInst *CodeGenFunction::CreateIRTemp(QualType Ty,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000067 const Twine &Name) {
Daniel Dunbard0049182010-02-16 19:44:13 +000068 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertType(Ty), Name);
69 // FIXME: Should we prefer the preferred type alignment here?
70 CharUnits Align = getContext().getTypeAlignInChars(Ty);
71 Alloc->setAlignment(Align.getQuantity());
72 return Alloc;
73}
74
Chris Lattnerc401de92010-07-05 20:21:00 +000075llvm::AllocaInst *CodeGenFunction::CreateMemTemp(QualType Ty,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000076 const Twine &Name) {
Daniel Dunbara7566f12010-02-09 02:48:28 +000077 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertTypeForMem(Ty), Name);
78 // FIXME: Should we prefer the preferred type alignment here?
79 CharUnits Align = getContext().getTypeAlignInChars(Ty);
80 Alloc->setAlignment(Align.getQuantity());
81 return Alloc;
82}
83
Chris Lattner8394d792007-06-05 20:53:16 +000084/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
85/// expression and compare the result against zero, returning an Int1Ty value.
Chris Lattner23b7eb62007-06-15 23:05:46 +000086llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
John McCall7a9aac22010-08-23 01:21:21 +000087 if (const MemberPointerType *MPT = E->getType()->getAs<MemberPointerType>()) {
John McCalla1dee5302010-08-22 10:59:02 +000088 llvm::Value *MemPtr = EmitScalarExpr(E);
John McCallad7c5c12011-02-08 08:22:06 +000089 return CGM.getCXXABI().EmitMemberPointerIsNotNull(*this, MemPtr, MPT);
Eli Friedman68396b12009-12-11 09:26:29 +000090 }
John McCall7a9aac22010-08-23 01:21:21 +000091
92 QualType BoolTy = getContext().BoolTy;
Chris Lattnerf3bc75a2008-04-04 16:54:41 +000093 if (!E->getType()->isAnyComplexType())
Chris Lattner268fcce2007-08-26 16:46:58 +000094 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner8394d792007-06-05 20:53:16 +000095
Chris Lattner268fcce2007-08-26 16:46:58 +000096 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattnerf0106d22007-06-02 19:33:17 +000097}
98
John McCalla2342eb2010-12-05 02:00:02 +000099/// EmitIgnoredExpr - Emit code to compute the specified expression,
100/// ignoring the result.
101void CodeGenFunction::EmitIgnoredExpr(const Expr *E) {
102 if (E->isRValue())
103 return (void) EmitAnyExpr(E, AggValueSlot::ignored(), true);
104
105 // Just emit it as an l-value and drop the result.
106 EmitLValue(E);
107}
108
John McCall7a626f62010-09-15 10:14:12 +0000109/// EmitAnyExpr - Emit code to compute the specified expression which
110/// can have any type. The result is returned as an RValue struct.
111/// If this is an aggregate expression, AggSlot indicates where the
Mike Stump4a3999f2009-09-09 13:00:44 +0000112/// result should be returned.
John McCall4e8ca4f2012-07-02 23:58:38 +0000113RValue CodeGenFunction::EmitAnyExpr(const Expr *E,
114 AggValueSlot aggSlot,
115 bool ignoreResult) {
Chris Lattner4647a212007-08-31 22:49:20 +0000116 if (!hasAggregateLLVMType(E->getType()))
John McCall4e8ca4f2012-07-02 23:58:38 +0000117 return RValue::get(EmitScalarExpr(E, ignoreResult));
Chris Lattnerf3bc75a2008-04-04 16:54:41 +0000118 else if (E->getType()->isAnyComplexType())
John McCall4e8ca4f2012-07-02 23:58:38 +0000119 return RValue::getComplex(EmitComplexExpr(E, ignoreResult, ignoreResult));
Mike Stump4a3999f2009-09-09 13:00:44 +0000120
John McCall4e8ca4f2012-07-02 23:58:38 +0000121 if (!ignoreResult && aggSlot.isIgnored())
122 aggSlot = CreateAggTemp(E->getType(), "agg-temp");
123 EmitAggExpr(E, aggSlot);
124 return aggSlot.asRValue();
Chris Lattner4647a212007-08-31 22:49:20 +0000125}
126
Mike Stump4a3999f2009-09-09 13:00:44 +0000127/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result will
128/// always be accessible even if no aggregate location is provided.
John McCall7a626f62010-09-15 10:14:12 +0000129RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E) {
130 AggValueSlot AggSlot = AggValueSlot::ignored();
Mike Stump4a3999f2009-09-09 13:00:44 +0000131
132 if (hasAggregateLLVMType(E->getType()) &&
Daniel Dunbar41cf9de2008-09-09 01:06:48 +0000133 !E->getType()->isAnyComplexType())
John McCall7a626f62010-09-15 10:14:12 +0000134 AggSlot = CreateAggTemp(E->getType(), "agg.tmp");
135 return EmitAnyExpr(E, AggSlot);
Daniel Dunbar41cf9de2008-09-09 01:06:48 +0000136}
137
John McCall21886962010-04-21 10:05:39 +0000138/// EmitAnyExprToMem - Evaluate an expression into a given memory
139/// location.
140void CodeGenFunction::EmitAnyExprToMem(const Expr *E,
141 llvm::Value *Location,
Chad Rosier615ed1a2012-03-29 17:37:10 +0000142 Qualifiers Quals,
143 bool IsInit) {
Eli Friedmanc1d85b92011-12-03 00:54:26 +0000144 // FIXME: This function should take an LValue as an argument.
145 if (E->getType()->isAnyComplexType()) {
John McCall31168b02011-06-15 23:02:42 +0000146 EmitComplexExprIntoAddr(E, Location, Quals.hasVolatile());
Eli Friedmanc1d85b92011-12-03 00:54:26 +0000147 } else if (hasAggregateLLVMType(E->getType())) {
Eli Friedman38cd36d2011-12-03 02:13:40 +0000148 CharUnits Alignment = getContext().getTypeAlignInChars(E->getType());
Eli Friedmanc1d85b92011-12-03 00:54:26 +0000149 EmitAggExpr(E, AggValueSlot::forAddr(Location, Alignment, Quals,
Chad Rosier615ed1a2012-03-29 17:37:10 +0000150 AggValueSlot::IsDestructed_t(IsInit),
John McCalla8a39bc2011-08-26 05:38:08 +0000151 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier615ed1a2012-03-29 17:37:10 +0000152 AggValueSlot::IsAliased_t(!IsInit)));
Eli Friedmanc1d85b92011-12-03 00:54:26 +0000153 } else {
John McCall21886962010-04-21 10:05:39 +0000154 RValue RV = RValue::get(EmitScalarExpr(E, /*Ignore*/ false));
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +0000155 LValue LV = MakeAddrLValue(Location, E->getType());
John McCall55e1fbc2011-06-25 02:11:03 +0000156 EmitStoreThroughLValue(RV, LV);
John McCall21886962010-04-21 10:05:39 +0000157 }
158}
159
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000160static llvm::Value *
Chris Lattner24516962011-07-20 04:59:57 +0000161CreateReferenceTemporary(CodeGenFunction &CGF, QualType Type,
Anders Carlsson18c205e2010-06-27 17:23:46 +0000162 const NamedDecl *InitializedDecl) {
163 if (const VarDecl *VD = dyn_cast_or_null<VarDecl>(InitializedDecl)) {
164 if (VD->hasGlobalStorage()) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000165 SmallString<256> Name;
Rafael Espindola3968cd02011-02-11 02:52:17 +0000166 llvm::raw_svector_ostream Out(Name);
167 CGF.CGM.getCXXABI().getMangleContext().mangleReferenceTemporary(VD, Out);
168 Out.flush();
169
Chris Lattner2192fe52011-07-18 04:24:23 +0000170 llvm::Type *RefTempTy = CGF.ConvertTypeForMem(Type);
Anders Carlsson18c205e2010-06-27 17:23:46 +0000171
172 // Create the reference temporary.
173 llvm::GlobalValue *RefTemp =
174 new llvm::GlobalVariable(CGF.CGM.getModule(),
175 RefTempTy, /*isConstant=*/false,
176 llvm::GlobalValue::InternalLinkage,
177 llvm::Constant::getNullValue(RefTempTy),
178 Name.str());
179 return RefTemp;
180 }
181 }
182
183 return CGF.CreateMemTemp(Type, "ref.tmp");
184}
185
186static llvm::Value *
Chris Lattnerf53c0962010-09-06 00:11:41 +0000187EmitExprForReferenceBinding(CodeGenFunction &CGF, const Expr *E,
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000188 llvm::Value *&ReferenceTemporary,
189 const CXXDestructorDecl *&ReferenceTemporaryDtor,
John McCall31168b02011-06-15 23:02:42 +0000190 QualType &ObjCARCReferenceLifetimeType,
Anders Carlsson18c205e2010-06-27 17:23:46 +0000191 const NamedDecl *InitializedDecl) {
Rafael Espindolab9d75ca2012-10-27 00:43:14 +0000192 const MaterializeTemporaryExpr *M = NULL;
Rafael Espindola9c006de2012-10-27 01:03:43 +0000193 E = E->findMaterializedTemporary(M);
Rafael Espindolab9d75ca2012-10-27 00:43:14 +0000194 // Objective-C++ ARC:
195 // If we are binding a reference to a temporary that has ownership, we
196 // need to perform retain/release operations on the temporary.
Richard Smith9c6890a2012-11-01 22:30:59 +0000197 if (M && CGF.getLangOpts().ObjCAutoRefCount &&
Rafael Espindolab9d75ca2012-10-27 00:43:14 +0000198 M->getType()->isObjCLifetimeType() &&
199 (M->getType().getObjCLifetime() == Qualifiers::OCL_Strong ||
200 M->getType().getObjCLifetime() == Qualifiers::OCL_Weak ||
201 M->getType().getObjCLifetime() == Qualifiers::OCL_Autoreleasing))
202 ObjCARCReferenceLifetimeType = M->getType();
Sebastian Redl29526f02011-11-27 16:50:07 +0000203
John McCall08ef4662011-11-10 08:15:53 +0000204 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(E)) {
205 CGF.enterFullExpression(EWC);
John McCallbd309292010-07-06 01:34:17 +0000206 CodeGenFunction::RunCleanupsScope Scope(CGF);
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000207
John McCall08ef4662011-11-10 08:15:53 +0000208 return EmitExprForReferenceBinding(CGF, EWC->getSubExpr(),
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000209 ReferenceTemporary,
210 ReferenceTemporaryDtor,
John McCall31168b02011-06-15 23:02:42 +0000211 ObjCARCReferenceLifetimeType,
Anders Carlsson18c205e2010-06-27 17:23:46 +0000212 InitializedDecl);
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000213 }
214
215 RValue RV;
Douglas Gregor9c399a22011-01-22 02:44:21 +0000216 if (E->isGLValue()) {
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000217 // Emit the expression as an lvalue.
218 LValue LV = CGF.EmitLValue(E);
Chris Lattner13ee4f42011-07-10 05:34:54 +0000219
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000220 if (LV.isSimple())
221 return LV.getAddress();
Anders Carlsson824e0612010-02-04 17:32:58 +0000222
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000223 // We have to load the lvalue.
John McCall55e1fbc2011-06-25 02:11:03 +0000224 RV = CGF.EmitLoadOfLValue(LV);
Eli Friedmanc21cb442009-05-20 02:31:19 +0000225 } else {
Douglas Gregor58df5092011-06-22 16:12:01 +0000226 if (!ObjCARCReferenceLifetimeType.isNull()) {
227 ReferenceTemporary = CreateReferenceTemporary(CGF,
228 ObjCARCReferenceLifetimeType,
229 InitializedDecl);
230
231
232 LValue RefTempDst = CGF.MakeAddrLValue(ReferenceTemporary,
233 ObjCARCReferenceLifetimeType);
234
235 CGF.EmitScalarInit(E, dyn_cast_or_null<ValueDecl>(InitializedDecl),
236 RefTempDst, false);
237
238 bool ExtendsLifeOfTemporary = false;
239 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(InitializedDecl)) {
240 if (Var->extendsLifetimeOfTemporary())
241 ExtendsLifeOfTemporary = true;
242 } else if (InitializedDecl && isa<FieldDecl>(InitializedDecl)) {
243 ExtendsLifeOfTemporary = true;
244 }
245
246 if (!ExtendsLifeOfTemporary) {
247 // Since the lifetime of this temporary isn't going to be extended,
248 // we need to clean it up ourselves at the end of the full expression.
249 switch (ObjCARCReferenceLifetimeType.getObjCLifetime()) {
250 case Qualifiers::OCL_None:
251 case Qualifiers::OCL_ExplicitNone:
252 case Qualifiers::OCL_Autoreleasing:
253 break;
254
John McCall4bd0fb12011-07-12 16:41:08 +0000255 case Qualifiers::OCL_Strong: {
256 assert(!ObjCARCReferenceLifetimeType->isArrayType());
257 CleanupKind cleanupKind = CGF.getARCCleanupKind();
258 CGF.pushDestroy(cleanupKind,
259 ReferenceTemporary,
260 ObjCARCReferenceLifetimeType,
261 CodeGenFunction::destroyARCStrongImprecise,
262 cleanupKind & EHCleanup);
Douglas Gregor58df5092011-06-22 16:12:01 +0000263 break;
John McCall4bd0fb12011-07-12 16:41:08 +0000264 }
Douglas Gregor58df5092011-06-22 16:12:01 +0000265
266 case Qualifiers::OCL_Weak:
John McCall4bd0fb12011-07-12 16:41:08 +0000267 assert(!ObjCARCReferenceLifetimeType->isArrayType());
268 CGF.pushDestroy(NormalAndEHCleanup,
269 ReferenceTemporary,
270 ObjCARCReferenceLifetimeType,
271 CodeGenFunction::destroyARCWeak,
272 /*useEHCleanupForArray*/ true);
Douglas Gregor58df5092011-06-22 16:12:01 +0000273 break;
274 }
275
276 ObjCARCReferenceLifetimeType = QualType();
277 }
278
279 return ReferenceTemporary;
280 }
Rafael Espindolab4136762012-10-27 00:40:06 +0000281
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000282 SmallVector<SubobjectAdjustment, 2> Adjustments;
Rafael Espindola9c006de2012-10-27 01:03:43 +0000283 E = E->skipRValueSubobjectAdjustments(Adjustments);
Rafael Espindolab4136762012-10-27 00:40:06 +0000284 if (const OpaqueValueExpr *opaque = dyn_cast<OpaqueValueExpr>(E))
285 if (opaque->getType()->isRecordType())
286 return CGF.EmitOpaqueValueLValue(opaque).getAddress();
Douglas Gregoraae38d62010-05-22 05:17:18 +0000287
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000288 // Create a reference temporary if necessary.
John McCall7a626f62010-09-15 10:14:12 +0000289 AggValueSlot AggSlot = AggValueSlot::ignored();
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000290 if (CGF.hasAggregateLLVMType(E->getType()) &&
John McCall7a626f62010-09-15 10:14:12 +0000291 !E->getType()->isAnyComplexType()) {
Anders Carlsson18c205e2010-06-27 17:23:46 +0000292 ReferenceTemporary = CreateReferenceTemporary(CGF, E->getType(),
293 InitializedDecl);
Eli Friedman38cd36d2011-12-03 02:13:40 +0000294 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(E->getType());
John McCall8d6fc952011-08-25 20:40:09 +0000295 AggValueSlot::IsDestructed_t isDestructed
296 = AggValueSlot::IsDestructed_t(InitializedDecl != 0);
Eli Friedmanc1d85b92011-12-03 00:54:26 +0000297 AggSlot = AggValueSlot::forAddr(ReferenceTemporary, Alignment,
298 Qualifiers(), isDestructed,
John McCalla5efa732011-08-25 23:04:34 +0000299 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier615ed1a2012-03-29 17:37:10 +0000300 AggValueSlot::IsNotAliased);
John McCall7a626f62010-09-15 10:14:12 +0000301 }
John McCall31168b02011-06-15 23:02:42 +0000302
Anders Carlsson18c205e2010-06-27 17:23:46 +0000303 if (InitializedDecl) {
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000304 // Get the destructor for the reference temporary.
305 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
306 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RT->getDecl());
307 if (!ClassDecl->hasTrivialDestructor())
Douglas Gregorbac74902010-07-01 14:13:13 +0000308 ReferenceTemporaryDtor = ClassDecl->getDestructor();
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000309 }
310 }
311
John McCall31168b02011-06-15 23:02:42 +0000312 RV = CGF.EmitAnyExpr(E, AggSlot);
313
Douglas Gregor7c38f152010-05-20 08:36:28 +0000314 // Check if need to perform derived-to-base casts and/or field accesses, to
315 // get from the temporary object we created (and, potentially, for which we
316 // extended the lifetime) to the subobject we're binding the reference to.
317 if (!Adjustments.empty()) {
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000318 llvm::Value *Object = RV.getAggregateAddr();
Douglas Gregor7c38f152010-05-20 08:36:28 +0000319 for (unsigned I = Adjustments.size(); I != 0; --I) {
320 SubobjectAdjustment &Adjustment = Adjustments[I-1];
321 switch (Adjustment.Kind) {
322 case SubobjectAdjustment::DerivedToBaseAdjustment:
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000323 Object =
324 CGF.GetAddressOfBaseClass(Object,
325 Adjustment.DerivedToBase.DerivedClass,
John McCallcf142162010-08-07 06:22:56 +0000326 Adjustment.DerivedToBase.BasePath->path_begin(),
327 Adjustment.DerivedToBase.BasePath->path_end(),
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000328 /*NullCheckValue=*/false);
Douglas Gregor7c38f152010-05-20 08:36:28 +0000329 break;
330
331 case SubobjectAdjustment::FieldAdjustment: {
Eli Friedman7f1ff602012-04-16 03:54:45 +0000332 LValue LV = CGF.MakeAddrLValue(Object, E->getType());
333 LV = CGF.EmitLValueForField(LV, Adjustment.Field);
Douglas Gregor7c38f152010-05-20 08:36:28 +0000334 if (LV.isSimple()) {
335 Object = LV.getAddress();
336 break;
337 }
338
339 // For non-simple lvalues, we actually have to create a copy of
340 // the object we're binding to.
Daniel Dunbare8b6cda2010-08-21 03:37:02 +0000341 QualType T = Adjustment.Field->getType().getNonReferenceType()
342 .getUnqualifiedType();
Anders Carlsson3f48c602010-06-27 17:52:15 +0000343 Object = CreateReferenceTemporary(CGF, T, InitializedDecl);
Daniel Dunbare8b6cda2010-08-21 03:37:02 +0000344 LValue TempLV = CGF.MakeAddrLValue(Object,
345 Adjustment.Field->getType());
John McCall55e1fbc2011-06-25 02:11:03 +0000346 CGF.EmitStoreThroughLValue(CGF.EmitLoadOfLValue(LV), TempLV);
Douglas Gregor7c38f152010-05-20 08:36:28 +0000347 break;
348 }
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000349
Eli Friedman13ffdd82012-06-15 23:51:06 +0000350 case SubobjectAdjustment::MemberPointerAdjustment: {
Rafael Espindolae7b11f52012-10-27 00:36:38 +0000351 llvm::Value *Ptr = CGF.EmitScalarExpr(Adjustment.Ptr.RHS);
Eli Friedman13ffdd82012-06-15 23:51:06 +0000352 Object = CGF.CGM.getCXXABI().EmitMemberDataPointerAddress(
Rafael Espindolae7b11f52012-10-27 00:36:38 +0000353 CGF, Object, Ptr, Adjustment.Ptr.MPT);
Eli Friedman13ffdd82012-06-15 23:51:06 +0000354 break;
355 }
Douglas Gregor7c38f152010-05-20 08:36:28 +0000356 }
357 }
Eli Friedmanb6069252011-03-16 22:34:09 +0000358
359 return Object;
Anders Carlsson66413c22009-10-15 00:51:46 +0000360 }
Anders Carlsson7d4c0832009-05-20 00:36:58 +0000361 }
Eli Friedmanc21cb442009-05-20 02:31:19 +0000362
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000363 if (RV.isAggregate())
364 return RV.getAggregateAddr();
Eli Friedmanc21cb442009-05-20 02:31:19 +0000365
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000366 // Create a temporary variable that we can bind the reference to.
Anders Carlsson18c205e2010-06-27 17:23:46 +0000367 ReferenceTemporary = CreateReferenceTemporary(CGF, E->getType(),
368 InitializedDecl);
369
Daniel Dunbar03816342010-08-21 02:24:36 +0000370
371 unsigned Alignment =
372 CGF.getContext().getTypeAlignInChars(E->getType()).getQuantity();
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000373 if (RV.isScalar())
374 CGF.EmitStoreOfScalar(RV.getScalarVal(), ReferenceTemporary,
Daniel Dunbar03816342010-08-21 02:24:36 +0000375 /*Volatile=*/false, Alignment, E->getType());
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000376 else
377 CGF.StoreComplexToAddr(RV.getComplexVal(), ReferenceTemporary,
378 /*Volatile=*/false);
379 return ReferenceTemporary;
380}
381
382RValue
Chris Lattnerf53c0962010-09-06 00:11:41 +0000383CodeGenFunction::EmitReferenceBindingToExpr(const Expr *E,
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000384 const NamedDecl *InitializedDecl) {
385 llvm::Value *ReferenceTemporary = 0;
386 const CXXDestructorDecl *ReferenceTemporaryDtor = 0;
John McCall31168b02011-06-15 23:02:42 +0000387 QualType ObjCARCReferenceLifetimeType;
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000388 llvm::Value *Value = EmitExprForReferenceBinding(*this, E, ReferenceTemporary,
389 ReferenceTemporaryDtor,
John McCall31168b02011-06-15 23:02:42 +0000390 ObjCARCReferenceLifetimeType,
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000391 InitializedDecl);
Richard Smithb1b0ab42012-11-05 22:21:05 +0000392 if (SanitizePerformTypeCheck && !E->getType()->isFunctionType()) {
Richard Smith69d0d262012-08-24 00:54:33 +0000393 // C++11 [dcl.ref]p5 (as amended by core issue 453):
394 // If a glvalue to which a reference is directly bound designates neither
395 // an existing object or function of an appropriate type nor a region of
396 // storage of suitable size and alignment to contain an object of the
397 // reference's type, the behavior is undefined.
398 QualType Ty = E->getType();
Richard Smithe30752c2012-10-09 19:52:38 +0000399 EmitTypeCheck(TCK_ReferenceBinding, E->getExprLoc(), Value, Ty);
Richard Smith69d0d262012-08-24 00:54:33 +0000400 }
John McCall31168b02011-06-15 23:02:42 +0000401 if (!ReferenceTemporaryDtor && ObjCARCReferenceLifetimeType.isNull())
Anders Carlsson3f48c602010-06-27 17:52:15 +0000402 return RValue::get(Value);
403
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000404 // Make sure to call the destructor for the reference temporary.
John McCall31168b02011-06-15 23:02:42 +0000405 const VarDecl *VD = dyn_cast_or_null<VarDecl>(InitializedDecl);
406 if (VD && VD->hasGlobalStorage()) {
407 if (ReferenceTemporaryDtor) {
Anders Carlsson3f48c602010-06-27 17:52:15 +0000408 llvm::Constant *DtorFn =
409 CGM.GetAddrOfCXXDestructor(ReferenceTemporaryDtor, Dtor_Complete);
John McCallc84ed6a2012-05-01 06:13:13 +0000410 CGM.getCXXABI().registerGlobalDtor(*this, DtorFn,
John McCallad7c5c12011-02-08 08:22:06 +0000411 cast<llvm::Constant>(ReferenceTemporary));
John McCall31168b02011-06-15 23:02:42 +0000412 } else {
413 assert(!ObjCARCReferenceLifetimeType.isNull());
414 // Note: We intentionally do not register a global "destructor" to
415 // release the object.
Anders Carlsson3f48c602010-06-27 17:52:15 +0000416 }
John McCall31168b02011-06-15 23:02:42 +0000417
418 return RValue::get(Value);
Anders Carlsson3f48c602010-06-27 17:52:15 +0000419 }
John McCall8680f872010-07-21 06:29:51 +0000420
John McCall31168b02011-06-15 23:02:42 +0000421 if (ReferenceTemporaryDtor)
422 PushDestructorCleanup(ReferenceTemporaryDtor, ReferenceTemporary);
423 else {
424 switch (ObjCARCReferenceLifetimeType.getObjCLifetime()) {
425 case Qualifiers::OCL_None:
David Blaikie83d382b2011-09-23 05:06:16 +0000426 llvm_unreachable(
427 "Not a reference temporary that needs to be deallocated");
John McCall31168b02011-06-15 23:02:42 +0000428 case Qualifiers::OCL_ExplicitNone:
429 case Qualifiers::OCL_Autoreleasing:
430 // Nothing to do.
431 break;
432
John McCall4bd0fb12011-07-12 16:41:08 +0000433 case Qualifiers::OCL_Strong: {
434 bool precise = VD && VD->hasAttr<ObjCPreciseLifetimeAttr>();
435 CleanupKind cleanupKind = getARCCleanupKind();
Benjamin Kramerae2d3442011-07-12 18:37:23 +0000436 pushDestroy(cleanupKind, ReferenceTemporary, ObjCARCReferenceLifetimeType,
Peter Collingbourne1425b452012-01-26 03:33:36 +0000437 precise ? destroyARCStrongPrecise : destroyARCStrongImprecise,
438 cleanupKind & EHCleanup);
John McCall31168b02011-06-15 23:02:42 +0000439 break;
John McCall4bd0fb12011-07-12 16:41:08 +0000440 }
John McCall31168b02011-06-15 23:02:42 +0000441
Benjamin Kramerae2d3442011-07-12 18:37:23 +0000442 case Qualifiers::OCL_Weak: {
John McCall31168b02011-06-15 23:02:42 +0000443 // __weak objects always get EH cleanups; otherwise, exceptions
444 // could cause really nasty crashes instead of mere leaks.
John McCall4bd0fb12011-07-12 16:41:08 +0000445 pushDestroy(NormalAndEHCleanup, ReferenceTemporary,
Peter Collingbourne1425b452012-01-26 03:33:36 +0000446 ObjCARCReferenceLifetimeType, destroyARCWeak, true);
John McCall31168b02011-06-15 23:02:42 +0000447 break;
448 }
Benjamin Kramerae2d3442011-07-12 18:37:23 +0000449 }
John McCall31168b02011-06-15 23:02:42 +0000450 }
451
Anders Carlsson2969c8c62010-06-27 16:56:04 +0000452 return RValue::get(Value);
Anders Carlsson6f5a0152009-05-20 00:24:07 +0000453}
454
455
Mike Stump4a3999f2009-09-09 13:00:44 +0000456/// getAccessedFieldNo - Given an encoded value and a result number, return the
457/// input field number being accessed.
458unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
Dan Gohman75d69da2008-05-22 00:50:06 +0000459 const llvm::Constant *Elts) {
Chris Lattner595ba3a2012-01-30 06:20:36 +0000460 return cast<llvm::ConstantInt>(Elts->getAggregateElement(Idx))
461 ->getZExtValue();
Dan Gohman75d69da2008-05-22 00:50:06 +0000462}
463
Richard Smith4d3110a2012-10-25 02:14:12 +0000464/// Emit the hash_16_bytes function from include/llvm/ADT/Hashing.h.
465static llvm::Value *emitHash16Bytes(CGBuilderTy &Builder, llvm::Value *Low,
466 llvm::Value *High) {
467 llvm::Value *KMul = Builder.getInt64(0x9ddfea08eb382d69ULL);
468 llvm::Value *K47 = Builder.getInt64(47);
469 llvm::Value *A0 = Builder.CreateMul(Builder.CreateXor(Low, High), KMul);
470 llvm::Value *A1 = Builder.CreateXor(Builder.CreateLShr(A0, K47), A0);
471 llvm::Value *B0 = Builder.CreateMul(Builder.CreateXor(High, A1), KMul);
472 llvm::Value *B1 = Builder.CreateXor(Builder.CreateLShr(B0, K47), B0);
473 return Builder.CreateMul(B1, KMul);
474}
475
Richard Smithe30752c2012-10-09 19:52:38 +0000476void CodeGenFunction::EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc,
477 llvm::Value *Address,
Richard Smith4d1458e2012-09-08 02:08:36 +0000478 QualType Ty, CharUnits Alignment) {
Richard Smithb1b0ab42012-11-05 22:21:05 +0000479 if (!SanitizePerformTypeCheck)
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000480 return;
481
Richard Smith2d8b2942012-11-01 07:22:08 +0000482 // Don't check pointers outside the default address space. The null check
483 // isn't correct, the object-size check isn't supported by LLVM, and we can't
484 // communicate the addresses to the runtime handler for the vptr check.
485 if (Address->getType()->getPointerAddressSpace())
486 return;
487
Richard Smith69d0d262012-08-24 00:54:33 +0000488 llvm::Value *Cond = 0;
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000489
Richard Smithb1b0ab42012-11-05 22:21:05 +0000490 if (getLangOpts().SanitizeNull) {
491 // The glvalue must not be an empty glvalue.
492 Cond = Builder.CreateICmpNE(
493 Address, llvm::Constant::getNullValue(Address->getType()));
494 }
Chris Lattnerbc3be652010-04-10 18:34:14 +0000495
Richard Smithb1b0ab42012-11-05 22:21:05 +0000496 if (getLangOpts().SanitizeObjectSize && !Ty->isIncompleteType()) {
Richard Smith69d0d262012-08-24 00:54:33 +0000497 uint64_t Size = getContext().getTypeSizeInChars(Ty).getQuantity();
Richard Smith69d0d262012-08-24 00:54:33 +0000498
Richard Smith69d0d262012-08-24 00:54:33 +0000499 // The glvalue must refer to a large enough storage region.
Richard Smithb1b0ab42012-11-05 22:21:05 +0000500 // FIXME: If Address Sanitizer is enabled, insert dynamic instrumentation
Richard Smith69d0d262012-08-24 00:54:33 +0000501 // to check this.
502 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::objectsize, IntPtrTy);
503 llvm::Value *Min = Builder.getFalse();
Richard Smith2d8b2942012-11-01 07:22:08 +0000504 llvm::Value *CastAddr = Builder.CreateBitCast(Address, Int8PtrTy);
Richard Smith69d0d262012-08-24 00:54:33 +0000505 llvm::Value *LargeEnough =
Richard Smith2d8b2942012-11-01 07:22:08 +0000506 Builder.CreateICmpUGE(Builder.CreateCall2(F, CastAddr, Min),
Richard Smith69d0d262012-08-24 00:54:33 +0000507 llvm::ConstantInt::get(IntPtrTy, Size));
508 Cond = Cond ? Builder.CreateAnd(Cond, LargeEnough) : LargeEnough;
Richard Smithe30752c2012-10-09 19:52:38 +0000509 }
Richard Smith69d0d262012-08-24 00:54:33 +0000510
Richard Smithb1b0ab42012-11-05 22:21:05 +0000511 uint64_t AlignVal = 0;
512
513 if (getLangOpts().SanitizeAlignment) {
514 AlignVal = Alignment.getQuantity();
515 if (!Ty->isIncompleteType() && !AlignVal)
516 AlignVal = getContext().getTypeAlignInChars(Ty).getQuantity();
517
Richard Smith69d0d262012-08-24 00:54:33 +0000518 // The glvalue must be suitably aligned.
Richard Smithb1b0ab42012-11-05 22:21:05 +0000519 if (AlignVal) {
520 llvm::Value *Align =
521 Builder.CreateAnd(Builder.CreatePtrToInt(Address, IntPtrTy),
522 llvm::ConstantInt::get(IntPtrTy, AlignVal - 1));
523 llvm::Value *Aligned =
524 Builder.CreateICmpEQ(Align, llvm::ConstantInt::get(IntPtrTy, 0));
525 Cond = Cond ? Builder.CreateAnd(Cond, Aligned) : Aligned;
526 }
Richard Smith69d0d262012-08-24 00:54:33 +0000527 }
528
Richard Smithe30752c2012-10-09 19:52:38 +0000529 if (Cond) {
530 llvm::Constant *StaticData[] = {
531 EmitCheckSourceLocation(Loc),
532 EmitCheckTypeDescriptor(Ty),
533 llvm::ConstantInt::get(SizeTy, AlignVal),
534 llvm::ConstantInt::get(Int8Ty, TCK)
535 };
Will Dietz88e02332012-12-02 19:50:33 +0000536 EmitCheck(Cond, "type_mismatch", StaticData, Address, CRK_Recoverable);
Richard Smithe30752c2012-10-09 19:52:38 +0000537 }
Richard Smith4d3110a2012-10-25 02:14:12 +0000538
Richard Smithb1b0ab42012-11-05 22:21:05 +0000539 // If possible, check that the vptr indicates that there is a subobject of
540 // type Ty at offset zero within this object.
Richard Smith4d3110a2012-10-25 02:14:12 +0000541 CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
Richard Smithb1b0ab42012-11-05 22:21:05 +0000542 if (getLangOpts().SanitizeVptr && TCK != TCK_ConstructorCall &&
Richard Smith4d3110a2012-10-25 02:14:12 +0000543 RD && RD->hasDefinition() && RD->isDynamicClass()) {
Richard Smith4d3110a2012-10-25 02:14:12 +0000544 // Compute a hash of the mangled name of the type.
545 //
546 // FIXME: This is not guaranteed to be deterministic! Move to a
547 // fingerprinting mechanism once LLVM provides one. For the time
548 // being the implementation happens to be deterministic.
549 llvm::SmallString<64> MangledName;
550 llvm::raw_svector_ostream Out(MangledName);
551 CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty.getUnqualifiedType(),
552 Out);
553 llvm::hash_code TypeHash = hash_value(Out.str());
554
555 // Load the vptr, and compute hash_16_bytes(TypeHash, vptr).
556 llvm::Value *Low = llvm::ConstantInt::get(Int64Ty, TypeHash);
557 llvm::Type *VPtrTy = llvm::PointerType::get(IntPtrTy, 0);
558 llvm::Value *VPtrAddr = Builder.CreateBitCast(Address, VPtrTy);
559 llvm::Value *VPtrVal = Builder.CreateLoad(VPtrAddr);
560 llvm::Value *High = Builder.CreateZExt(VPtrVal, Int64Ty);
561
562 llvm::Value *Hash = emitHash16Bytes(Builder, Low, High);
563 Hash = Builder.CreateTrunc(Hash, IntPtrTy);
564
565 // Look the hash up in our cache.
566 const int CacheSize = 128;
567 llvm::Type *HashTable = llvm::ArrayType::get(IntPtrTy, CacheSize);
568 llvm::Value *Cache = CGM.CreateRuntimeVariable(HashTable,
569 "__ubsan_vptr_type_cache");
570 llvm::Value *Slot = Builder.CreateAnd(Hash,
571 llvm::ConstantInt::get(IntPtrTy,
572 CacheSize-1));
573 llvm::Value *Indices[] = { Builder.getInt32(0), Slot };
574 llvm::Value *CacheVal =
575 Builder.CreateLoad(Builder.CreateInBoundsGEP(Cache, Indices));
576
577 // If the hash isn't in the cache, call a runtime handler to perform the
578 // hard work of checking whether the vptr is for an object of the right
579 // type. This will either fill in the cache and return, or produce a
580 // diagnostic.
581 llvm::Constant *StaticData[] = {
582 EmitCheckSourceLocation(Loc),
583 EmitCheckTypeDescriptor(Ty),
584 CGM.GetAddrOfRTTIDescriptor(Ty.getUnqualifiedType()),
585 llvm::ConstantInt::get(Int8Ty, TCK)
586 };
587 llvm::Value *DynamicData[] = { Address, Hash };
588 EmitCheck(Builder.CreateICmpEQ(CacheVal, Hash),
Will Dietz88e02332012-12-02 19:50:33 +0000589 "dynamic_type_cache_miss", StaticData, DynamicData,
590 CRK_AlwaysRecoverable);
Richard Smith4d3110a2012-10-25 02:14:12 +0000591 }
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000592}
Chris Lattner4647a212007-08-31 22:49:20 +0000593
Chris Lattner116ce8f2010-01-09 21:40:03 +0000594
Chris Lattner116ce8f2010-01-09 21:40:03 +0000595CodeGenFunction::ComplexPairTy CodeGenFunction::
596EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV,
597 bool isInc, bool isPre) {
598 ComplexPairTy InVal = LoadComplexFromAddr(LV.getAddress(),
599 LV.isVolatileQualified());
600
601 llvm::Value *NextVal;
602 if (isa<llvm::IntegerType>(InVal.first->getType())) {
603 uint64_t AmountVal = isInc ? 1 : -1;
604 NextVal = llvm::ConstantInt::get(InVal.first->getType(), AmountVal, true);
605
606 // Add the inc/dec to the real part.
607 NextVal = Builder.CreateAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
608 } else {
609 QualType ElemTy = E->getType()->getAs<ComplexType>()->getElementType();
610 llvm::APFloat FVal(getContext().getFloatTypeSemantics(ElemTy), 1);
611 if (!isInc)
612 FVal.changeSign();
613 NextVal = llvm::ConstantFP::get(getLLVMContext(), FVal);
614
615 // Add the inc/dec to the real part.
616 NextVal = Builder.CreateFAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
617 }
618
619 ComplexPairTy IncVal(NextVal, InVal.second);
620
621 // Store the updated result through the lvalue.
622 StoreComplexToAddr(IncVal, LV.getAddress(), LV.isVolatileQualified());
623
624 // If this is a postinc, return the value read from memory, otherwise use the
625 // updated value.
626 return isPre ? IncVal : InVal;
627}
628
629
Chris Lattnera45c5af2007-06-02 19:47:04 +0000630//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +0000631// LValue Expression Emission
Chris Lattnera45c5af2007-06-02 19:47:04 +0000632//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +0000633
Daniel Dunbarc79407f2009-02-05 07:09:07 +0000634RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000635 if (Ty->isVoidType())
Daniel Dunbarc79407f2009-02-05 07:09:07 +0000636 return RValue::get(0);
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000637
638 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) {
Chris Lattner2192fe52011-07-18 04:24:23 +0000639 llvm::Type *EltTy = ConvertType(CTy->getElementType());
Owen Anderson7ec07a52009-07-30 23:11:26 +0000640 llvm::Value *U = llvm::UndefValue::get(EltTy);
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000641 return RValue::getComplex(std::make_pair(U, U));
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000642 }
643
Chris Lattner65526f02010-08-23 05:26:13 +0000644 // If this is a use of an undefined aggregate type, the aggregate must have an
645 // identifiable address. Just because the contents of the value are undefined
646 // doesn't mean that the address can't be taken and compared.
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000647 if (hasAggregateLLVMType(Ty)) {
Chris Lattner65526f02010-08-23 05:26:13 +0000648 llvm::Value *DestPtr = CreateMemTemp(Ty, "undef.agg.tmp");
649 return RValue::getAggregate(DestPtr);
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000650 }
Chris Lattnerab5e0af2009-10-28 17:39:19 +0000651
652 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbarbb197e42009-01-09 16:50:52 +0000653}
654
Daniel Dunbarc79407f2009-02-05 07:09:07 +0000655RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
656 const char *Name) {
657 ErrorUnsupported(E, Name);
658 return GetUndefRValue(E->getType());
659}
660
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000661LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
662 const char *Name) {
663 ErrorUnsupported(E, Name);
Owen Anderson9793f0e2009-07-29 22:16:19 +0000664 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +0000665 return MakeAddrLValue(llvm::UndefValue::get(Ty), E->getType());
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000666}
667
Richard Smith4d1458e2012-09-08 02:08:36 +0000668LValue CodeGenFunction::EmitCheckedLValue(const Expr *E, TypeCheckKind TCK) {
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000669 LValue LV = EmitLValue(E);
Daniel Dunbardc406b82010-04-05 21:36:35 +0000670 if (!isa<DeclRefExpr>(E) && !LV.isBitField() && LV.isSimple())
Richard Smithe30752c2012-10-09 19:52:38 +0000671 EmitTypeCheck(TCK, E->getExprLoc(), LV.getAddress(),
672 E->getType(), LV.getAlignment());
Mike Stump3f6f9fe2009-12-16 02:57:00 +0000673 return LV;
674}
675
Chris Lattner8394d792007-06-05 20:53:16 +0000676/// EmitLValue - Emit code to compute a designator that specifies the location
677/// of the expression.
678///
Mike Stump4a3999f2009-09-09 13:00:44 +0000679/// This can return one of two things: a simple address or a bitfield reference.
680/// In either case, the LLVM Value* in the LValue structure is guaranteed to be
681/// an LLVM pointer type.
Chris Lattner8394d792007-06-05 20:53:16 +0000682///
Mike Stump4a3999f2009-09-09 13:00:44 +0000683/// If this returns a bitfield reference, nothing about the pointee type of the
684/// LLVM value is known: For example, it may not be a pointer to an integer.
Chris Lattner8394d792007-06-05 20:53:16 +0000685///
Mike Stump4a3999f2009-09-09 13:00:44 +0000686/// If this returns a normal address, and if the lvalue's C type is fixed size,
687/// this method guarantees that the returned pointer type will point to an LLVM
688/// type of the same size of the lvalue's type. If the lvalue has a variable
689/// length type, this is not possible.
Chris Lattner8394d792007-06-05 20:53:16 +0000690///
Chris Lattnerd7f58862007-06-02 05:24:33 +0000691LValue CodeGenFunction::EmitLValue(const Expr *E) {
692 switch (E->getStmtClass()) {
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000693 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattnerd7f58862007-06-02 05:24:33 +0000694
John McCallc109a252011-11-07 03:59:57 +0000695 case Expr::ObjCPropertyRefExprClass:
696 llvm_unreachable("cannot emit a property reference directly");
697
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +0000698 case Expr::ObjCSelectorExprClass:
Nico Webercf4ff5862012-10-11 10:13:44 +0000699 return EmitObjCSelectorLValue(cast<ObjCSelectorExpr>(E));
Fariborz Jahanian531c16f2009-12-09 23:35:29 +0000700 case Expr::ObjCIsaExprClass:
701 return EmitObjCIsaExpr(cast<ObjCIsaExpr>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000702 case Expr::BinaryOperatorClass:
Daniel Dunbar8cde00a2008-09-04 03:20:13 +0000703 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor914af212010-04-23 04:16:32 +0000704 case Expr::CompoundAssignOperatorClass:
John McCalla2342eb2010-12-05 02:00:02 +0000705 if (!E->getType()->isAnyComplexType())
706 return EmitCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
707 return EmitComplexCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000708 case Expr::CallExprClass:
Anders Carlssonc82555f2009-09-01 21:18:52 +0000709 case Expr::CXXMemberCallExprClass:
Douglas Gregor993603d2008-11-14 16:09:21 +0000710 case Expr::CXXOperatorCallExprClass:
Richard Smithc67fdd42012-03-07 08:35:16 +0000711 case Expr::UserDefinedLiteralClass:
Douglas Gregor993603d2008-11-14 16:09:21 +0000712 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +0000713 case Expr::VAArgExprClass:
714 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000715 case Expr::DeclRefExprClass:
Douglas Gregorc7acfdf2009-01-06 05:10:23 +0000716 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Eric Christopherd98e4242011-09-08 17:15:04 +0000717 case Expr::ParenExprClass:
718 return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Peter Collingbourne91147592011-04-15 00:35:48 +0000719 case Expr::GenericSelectionExprClass:
720 return EmitLValue(cast<GenericSelectionExpr>(E)->getResultExpr());
Chris Lattner6307f192008-08-10 01:53:14 +0000721 case Expr::PredefinedExprClass:
722 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4347e3692007-06-06 04:54:52 +0000723 case Expr::StringLiteralClass:
724 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +0000725 case Expr::ObjCEncodeExprClass:
726 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
John McCallfe96e0b2011-11-06 09:01:30 +0000727 case Expr::PseudoObjectExprClass:
728 return EmitPseudoObjectLValue(cast<PseudoObjectExpr>(E));
Sebastian Redl29526f02011-11-27 16:50:07 +0000729 case Expr::InitListExprClass:
Richard Smithbb653bd2012-05-14 21:57:21 +0000730 return EmitInitListLValue(cast<InitListExpr>(E));
Anders Carlsson3be22e22009-05-30 23:23:33 +0000731 case Expr::CXXTemporaryObjectExprClass:
732 case Expr::CXXConstructExprClass:
Anders Carlssonfd2af0c2009-05-30 23:30:54 +0000733 return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
734 case Expr::CXXBindTemporaryExprClass:
735 return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
Nico Webercf4ff5862012-10-11 10:13:44 +0000736 case Expr::CXXUuidofExprClass:
737 return EmitCXXUuidofLValue(cast<CXXUuidofExpr>(E));
Eli Friedman5bc17122012-02-08 05:34:55 +0000738 case Expr::LambdaExprClass:
739 return EmitLambdaLValue(cast<LambdaExpr>(E));
John McCall08ef4662011-11-10 08:15:53 +0000740
741 case Expr::ExprWithCleanupsClass: {
742 const ExprWithCleanups *cleanups = cast<ExprWithCleanups>(E);
743 enterFullExpression(cleanups);
744 RunCleanupsScope Scope(*this);
745 return EmitLValue(cleanups->getSubExpr());
746 }
747
Douglas Gregor747eb782010-07-08 06:14:04 +0000748 case Expr::CXXScalarValueInitExprClass:
749 return EmitNullInitializationLValue(cast<CXXScalarValueInitExpr>(E));
Anders Carlsson52ce3bb2009-11-14 01:51:50 +0000750 case Expr::CXXDefaultArgExprClass:
751 return EmitLValue(cast<CXXDefaultArgExpr>(E)->getExpr());
Mike Stumpc9b231c2009-11-15 08:09:41 +0000752 case Expr::CXXTypeidExprClass:
753 return EmitCXXTypeidLValue(cast<CXXTypeidExpr>(E));
Anders Carlssonfd2af0c2009-05-30 23:30:54 +0000754
Daniel Dunbarc8317a42008-08-23 10:51:21 +0000755 case Expr::ObjCMessageExprClass:
756 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000757 case Expr::ObjCIvarRefExprClass:
Chris Lattner4bd55962008-03-30 23:03:07 +0000758 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Chris Lattnera4185c52009-04-25 19:35:26 +0000759 case Expr::StmtExprClass:
760 return EmitStmtExprLValue(cast<StmtExpr>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000761 case Expr::UnaryOperatorClass:
Chris Lattner8394d792007-06-05 20:53:16 +0000762 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000763 case Expr::ArraySubscriptExprClass:
764 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemance4d7fc2008-04-18 23:10:10 +0000765 case Expr::ExtVectorElementExprClass:
766 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Mike Stump4a3999f2009-09-09 13:00:44 +0000767 case Expr::MemberExprClass:
Douglas Gregorc1905232009-08-26 22:36:53 +0000768 return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman9fd8b682008-05-13 23:18:27 +0000769 case Expr::CompoundLiteralExprClass:
770 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +0000771 case Expr::ConditionalOperatorClass:
Anders Carlsson1450adb2009-09-15 16:35:24 +0000772 return EmitConditionalOperatorLValue(cast<ConditionalOperator>(E));
John McCallc07a0c72011-02-17 10:25:35 +0000773 case Expr::BinaryConditionalOperatorClass:
774 return EmitConditionalOperatorLValue(cast<BinaryConditionalOperator>(E));
Chris Lattner053441f2008-12-12 05:35:08 +0000775 case Expr::ChooseExprClass:
Eli Friedmane0a5b8b2009-03-04 05:52:32 +0000776 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
John McCall1bf58462011-02-16 08:02:54 +0000777 case Expr::OpaqueValueExprClass:
778 return EmitOpaqueValueLValue(cast<OpaqueValueExpr>(E));
John McCall7c454bb2011-07-15 05:09:51 +0000779 case Expr::SubstNonTypeTemplateParmExprClass:
780 return EmitLValue(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement());
Chris Lattner63d06ab2009-03-18 04:02:57 +0000781 case Expr::ImplicitCastExprClass:
782 case Expr::CStyleCastExprClass:
783 case Expr::CXXFunctionalCastExprClass:
784 case Expr::CXXStaticCastExprClass:
785 case Expr::CXXDynamicCastExprClass:
786 case Expr::CXXReinterpretCastExprClass:
787 case Expr::CXXConstCastExprClass:
John McCall31168b02011-06-15 23:02:42 +0000788 case Expr::ObjCBridgedCastExprClass:
Chris Lattner28bcf1a2009-03-18 18:28:57 +0000789 return EmitCastLValue(cast<CastExpr>(E));
Sebastian Redl29526f02011-11-27 16:50:07 +0000790
Douglas Gregorfe314812011-06-21 17:03:29 +0000791 case Expr::MaterializeTemporaryExprClass:
792 return EmitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(E));
Chris Lattnerd7f58862007-06-02 05:24:33 +0000793 }
794}
795
John McCall71335052012-03-10 03:05:10 +0000796/// Given an object of the given canonical type, can we safely copy a
797/// value out of it based on its initializer?
798static bool isConstantEmittableObjectType(QualType type) {
799 assert(type.isCanonical());
800 assert(!type->isReferenceType());
801
802 // Must be const-qualified but non-volatile.
803 Qualifiers qs = type.getLocalQualifiers();
804 if (!qs.hasConst() || qs.hasVolatile()) return false;
805
806 // Otherwise, all object types satisfy this except C++ classes with
807 // mutable subobjects or non-trivial copy/destroy behavior.
808 if (const RecordType *RT = dyn_cast<RecordType>(type))
809 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl()))
810 if (RD->hasMutableFields() || !RD->isTrivial())
811 return false;
812
813 return true;
814}
815
816/// Can we constant-emit a load of a reference to a variable of the
817/// given type? This is different from predicates like
818/// Decl::isUsableInConstantExpressions because we do want it to apply
819/// in situations that don't necessarily satisfy the language's rules
820/// for this (e.g. C++'s ODR-use rules). For example, we want to able
821/// to do this with const float variables even if those variables
822/// aren't marked 'constexpr'.
823enum ConstantEmissionKind {
824 CEK_None,
825 CEK_AsReferenceOnly,
826 CEK_AsValueOrReference,
827 CEK_AsValueOnly
828};
829static ConstantEmissionKind checkVarTypeForConstantEmission(QualType type) {
830 type = type.getCanonicalType();
831 if (const ReferenceType *ref = dyn_cast<ReferenceType>(type)) {
832 if (isConstantEmittableObjectType(ref->getPointeeType()))
833 return CEK_AsValueOrReference;
834 return CEK_AsReferenceOnly;
835 }
836 if (isConstantEmittableObjectType(type))
837 return CEK_AsValueOnly;
838 return CEK_None;
839}
840
841/// Try to emit a reference to the given value without producing it as
842/// an l-value. This is actually more than an optimization: we can't
843/// produce an l-value for variables that we never actually captured
844/// in a block or lambda, which means const int variables or constexpr
845/// literals or similar.
846CodeGenFunction::ConstantEmission
John McCall113bee02012-03-10 09:33:50 +0000847CodeGenFunction::tryEmitAsConstant(DeclRefExpr *refExpr) {
848 ValueDecl *value = refExpr->getDecl();
849
John McCall71335052012-03-10 03:05:10 +0000850 // The value needs to be an enum constant or a constant variable.
851 ConstantEmissionKind CEK;
852 if (isa<ParmVarDecl>(value)) {
853 CEK = CEK_None;
854 } else if (VarDecl *var = dyn_cast<VarDecl>(value)) {
855 CEK = checkVarTypeForConstantEmission(var->getType());
856 } else if (isa<EnumConstantDecl>(value)) {
857 CEK = CEK_AsValueOnly;
858 } else {
859 CEK = CEK_None;
860 }
861 if (CEK == CEK_None) return ConstantEmission();
862
John McCall71335052012-03-10 03:05:10 +0000863 Expr::EvalResult result;
864 bool resultIsReference;
865 QualType resultType;
866
867 // It's best to evaluate all the way as an r-value if that's permitted.
868 if (CEK != CEK_AsReferenceOnly &&
John McCall113bee02012-03-10 09:33:50 +0000869 refExpr->EvaluateAsRValue(result, getContext())) {
John McCall71335052012-03-10 03:05:10 +0000870 resultIsReference = false;
871 resultType = refExpr->getType();
872
873 // Otherwise, try to evaluate as an l-value.
874 } else if (CEK != CEK_AsValueOnly &&
John McCall113bee02012-03-10 09:33:50 +0000875 refExpr->EvaluateAsLValue(result, getContext())) {
John McCall71335052012-03-10 03:05:10 +0000876 resultIsReference = true;
877 resultType = value->getType();
878
879 // Failure.
880 } else {
881 return ConstantEmission();
882 }
883
884 // In any case, if the initializer has side-effects, abandon ship.
885 if (result.HasSideEffects)
886 return ConstantEmission();
887
888 // Emit as a constant.
889 llvm::Constant *C = CGM.EmitConstantValue(result.Val, resultType, this);
890
891 // Make sure we emit a debug reference to the global variable.
892 // This should probably fire even for
893 if (isa<VarDecl>(value)) {
894 if (!getContext().DeclMustBeEmitted(cast<VarDecl>(value)))
John McCall113bee02012-03-10 09:33:50 +0000895 EmitDeclRefExprDbgValue(refExpr, C);
John McCall71335052012-03-10 03:05:10 +0000896 } else {
897 assert(isa<EnumConstantDecl>(value));
John McCall113bee02012-03-10 09:33:50 +0000898 EmitDeclRefExprDbgValue(refExpr, C);
John McCall71335052012-03-10 03:05:10 +0000899 }
900
901 // If we emitted a reference constant, we need to dereference that.
902 if (resultIsReference)
903 return ConstantEmission::forReference(C);
904
905 return ConstantEmission::forValue(C);
906}
907
John McCall1553b192011-06-16 04:16:24 +0000908llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue) {
909 return EmitLoadOfScalar(lvalue.getAddress(), lvalue.isVolatile(),
Eli Friedmana0544d62011-12-03 04:14:32 +0000910 lvalue.getAlignment().getQuantity(),
911 lvalue.getType(), lvalue.getTBAAInfo());
John McCall1553b192011-06-16 04:16:24 +0000912}
913
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000914static bool hasBooleanRepresentation(QualType Ty) {
915 if (Ty->isBooleanType())
916 return true;
917
918 if (const EnumType *ET = Ty->getAs<EnumType>())
919 return ET->getDecl()->getIntegerType()->isBooleanType();
920
Douglas Gregor298f43d2012-04-12 20:42:30 +0000921 if (const AtomicType *AT = Ty->getAs<AtomicType>())
922 return hasBooleanRepresentation(AT->getValueType());
923
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000924 return false;
925}
926
Richard Smith1629da92012-12-13 07:11:50 +0000927static bool getRangeForType(CodeGenFunction &CGF, QualType Ty,
928 llvm::APInt &Min, llvm::APInt &End,
929 bool StrictEnums) {
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000930 const EnumType *ET = Ty->getAs<EnumType>();
Richard Smith1629da92012-12-13 07:11:50 +0000931 bool IsRegularCPlusPlusEnum = CGF.getLangOpts().CPlusPlus && StrictEnums &&
932 ET && !ET->getDecl()->isFixed();
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000933 bool IsBool = hasBooleanRepresentation(Ty);
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000934 if (!IsBool && !IsRegularCPlusPlusEnum)
Richard Smith1629da92012-12-13 07:11:50 +0000935 return false;
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000936
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000937 if (IsBool) {
Richard Smith1629da92012-12-13 07:11:50 +0000938 Min = llvm::APInt(CGF.getContext().getTypeSize(Ty), 0);
939 End = llvm::APInt(CGF.getContext().getTypeSize(Ty), 2);
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000940 } else {
941 const EnumDecl *ED = ET->getDecl();
Richard Smith1629da92012-12-13 07:11:50 +0000942 llvm::Type *LTy = CGF.ConvertTypeForMem(ED->getIntegerType());
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000943 unsigned Bitwidth = LTy->getScalarSizeInBits();
944 unsigned NumNegativeBits = ED->getNumNegativeBits();
945 unsigned NumPositiveBits = ED->getNumPositiveBits();
946
947 if (NumNegativeBits) {
948 unsigned NumBits = std::max(NumNegativeBits, NumPositiveBits + 1);
949 assert(NumBits <= Bitwidth);
950 End = llvm::APInt(Bitwidth, 1) << (NumBits - 1);
951 Min = -End;
952 } else {
953 assert(NumPositiveBits <= Bitwidth);
954 End = llvm::APInt(Bitwidth, 1) << NumPositiveBits;
955 Min = llvm::APInt(Bitwidth, 0);
956 }
957 }
Richard Smith1629da92012-12-13 07:11:50 +0000958 return true;
959}
960
961llvm::MDNode *CodeGenFunction::getRangeForLoadFromType(QualType Ty) {
962 llvm::APInt Min, End;
963 if (!getRangeForType(*this, Ty, Min, End,
964 CGM.getCodeGenOpts().StrictEnums))
965 return 0;
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000966
Duncan Sandsc720e782012-04-15 18:04:54 +0000967 llvm::MDBuilder MDHelper(getLLVMContext());
Duncan Sands65229ed2012-04-16 16:29:47 +0000968 return MDHelper.createRange(Min, End);
Rafael Espindola5c0034a2012-03-24 16:50:34 +0000969}
970
Daniel Dunbar1d425462009-02-10 00:57:50 +0000971llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
Dan Gohman947c9af2010-10-14 23:06:10 +0000972 unsigned Alignment, QualType Ty,
973 llvm::MDNode *TBAAInfo) {
Tanya Lattnera9dd49f2012-08-16 00:10:13 +0000974
975 // For better performance, handle vector loads differently.
976 if (Ty->isVectorType()) {
977 llvm::Value *V;
978 const llvm::Type *EltTy =
979 cast<llvm::PointerType>(Addr->getType())->getElementType();
980
981 const llvm::VectorType *VTy = cast<llvm::VectorType>(EltTy);
982
983 // Handle vectors of size 3, like size 4 for better performance.
984 if (VTy->getNumElements() == 3) {
985
986 // Bitcast to vec4 type.
987 llvm::VectorType *vec4Ty = llvm::VectorType::get(VTy->getElementType(),
988 4);
989 llvm::PointerType *ptVec4Ty =
990 llvm::PointerType::get(vec4Ty,
991 (cast<llvm::PointerType>(
992 Addr->getType()))->getAddressSpace());
993 llvm::Value *Cast = Builder.CreateBitCast(Addr, ptVec4Ty,
994 "castToVec4");
995 // Now load value.
996 llvm::Value *LoadVal = Builder.CreateLoad(Cast, Volatile, "loadVec4");
Richard Smithf0480fc2012-12-13 05:41:48 +0000997
Tanya Lattnera9dd49f2012-08-16 00:10:13 +0000998 // Shuffle vector to get vec3.
Richard Smithf0480fc2012-12-13 05:41:48 +0000999 llvm::Constant *Mask[] = {
1000 llvm::ConstantInt::get(llvm::Type::getInt32Ty(getLLVMContext()), 0),
1001 llvm::ConstantInt::get(llvm::Type::getInt32Ty(getLLVMContext()), 1),
1002 llvm::ConstantInt::get(llvm::Type::getInt32Ty(getLLVMContext()), 2)
1003 };
1004
Tanya Lattnera9dd49f2012-08-16 00:10:13 +00001005 llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
1006 V = Builder.CreateShuffleVector(LoadVal,
1007 llvm::UndefValue::get(vec4Ty),
1008 MaskV, "extractVec");
1009 return EmitFromMemory(V, Ty);
1010 }
1011 }
1012
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001013 llvm::LoadInst *Load = Builder.CreateLoad(Addr);
Daniel Dunbarc76493a2009-11-29 21:23:36 +00001014 if (Volatile)
1015 Load->setVolatile(true);
Daniel Dunbar03816342010-08-21 02:24:36 +00001016 if (Alignment)
1017 Load->setAlignment(Alignment);
Dan Gohman947c9af2010-10-14 23:06:10 +00001018 if (TBAAInfo)
1019 CGM.DecorateInstruction(Load, TBAAInfo);
David Chisnallfa35df62012-01-16 17:27:18 +00001020 // If this is an atomic type, all normal reads must be atomic
1021 if (Ty->isAtomicType())
1022 Load->setAtomic(llvm::SequentiallyConsistent);
Daniel Dunbar1d425462009-02-10 00:57:50 +00001023
Richard Smith1629da92012-12-13 07:11:50 +00001024 if ((getLangOpts().SanitizeBool && hasBooleanRepresentation(Ty)) ||
1025 (getLangOpts().SanitizeEnum && Ty->getAs<EnumType>())) {
1026 llvm::APInt Min, End;
1027 if (getRangeForType(*this, Ty, Min, End, true)) {
1028 --End;
1029 llvm::Value *Check;
1030 if (!Min)
1031 Check = Builder.CreateICmpULE(
1032 Load, llvm::ConstantInt::get(getLLVMContext(), End));
1033 else {
1034 llvm::Value *Upper = Builder.CreateICmpSLE(
1035 Load, llvm::ConstantInt::get(getLLVMContext(), End));
1036 llvm::Value *Lower = Builder.CreateICmpSGE(
1037 Load, llvm::ConstantInt::get(getLLVMContext(), Min));
1038 Check = Builder.CreateAnd(Upper, Lower);
1039 }
1040 // FIXME: Provide a SourceLocation.
1041 EmitCheck(Check, "load_invalid_value", EmitCheckTypeDescriptor(Ty),
1042 EmitCheckValue(Load), CRK_Recoverable);
1043 }
1044 } else if (CGM.getCodeGenOpts().OptimizationLevel > 0)
Rafael Espindola5c0034a2012-03-24 16:50:34 +00001045 if (llvm::MDNode *RangeInfo = getRangeForLoadFromType(Ty))
1046 Load->setMetadata(llvm::LLVMContext::MD_range, RangeInfo);
Douglas Gregor0bf31402010-10-08 23:50:27 +00001047
Rafael Espindola5c0034a2012-03-24 16:50:34 +00001048 return EmitFromMemory(Load, Ty);
NAKAMURA Takumi2681efc2012-03-24 14:43:42 +00001049}
1050
John McCall3a7f6922010-10-27 20:58:56 +00001051llvm::Value *CodeGenFunction::EmitToMemory(llvm::Value *Value, QualType Ty) {
1052 // Bool has a different representation in memory than in registers.
Rafael Espindola5c0034a2012-03-24 16:50:34 +00001053 if (hasBooleanRepresentation(Ty)) {
John McCall3a7f6922010-10-27 20:58:56 +00001054 // This should really always be an i1, but sometimes it's already
1055 // an i8, and it's awkward to track those cases down.
1056 if (Value->getType()->isIntegerTy(1))
Eli Friedmanb369f442012-11-13 02:05:15 +00001057 return Builder.CreateZExt(Value, ConvertTypeForMem(Ty), "frombool");
1058 assert(Value->getType()->isIntegerTy(getContext().getTypeSize(Ty)) &&
1059 "wrong value rep of bool");
John McCall3a7f6922010-10-27 20:58:56 +00001060 }
1061
1062 return Value;
1063}
1064
1065llvm::Value *CodeGenFunction::EmitFromMemory(llvm::Value *Value, QualType Ty) {
1066 // Bool has a different representation in memory than in registers.
Rafael Espindola5c0034a2012-03-24 16:50:34 +00001067 if (hasBooleanRepresentation(Ty)) {
Eli Friedmanb369f442012-11-13 02:05:15 +00001068 assert(Value->getType()->isIntegerTy(getContext().getTypeSize(Ty)) &&
1069 "wrong value rep of bool");
John McCall3a7f6922010-10-27 20:58:56 +00001070 return Builder.CreateTrunc(Value, Builder.getInt1Ty(), "tobool");
1071 }
1072
1073 return Value;
1074}
1075
Daniel Dunbar1d425462009-02-10 00:57:50 +00001076void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Daniel Dunbar03816342010-08-21 02:24:36 +00001077 bool Volatile, unsigned Alignment,
Dan Gohman947c9af2010-10-14 23:06:10 +00001078 QualType Ty,
David Chisnallfa35df62012-01-16 17:27:18 +00001079 llvm::MDNode *TBAAInfo,
1080 bool isInit) {
Tanya Lattnera9dd49f2012-08-16 00:10:13 +00001081
1082 // Handle vectors differently to get better performance.
1083 if (Ty->isVectorType()) {
1084 llvm::Type *SrcTy = Value->getType();
1085 llvm::VectorType *VecTy = cast<llvm::VectorType>(SrcTy);
1086 // Handle vec3 special.
1087 if (VecTy->getNumElements() == 3) {
1088 llvm::LLVMContext &VMContext = getLLVMContext();
1089
1090 // Our source is a vec3, do a shuffle vector to make it a vec4.
1091 llvm::SmallVector<llvm::Constant*, 4> Mask;
1092 Mask.push_back(llvm::ConstantInt::get(
1093 llvm::Type::getInt32Ty(VMContext),
1094 0));
1095 Mask.push_back(llvm::ConstantInt::get(
1096 llvm::Type::getInt32Ty(VMContext),
1097 1));
1098 Mask.push_back(llvm::ConstantInt::get(
1099 llvm::Type::getInt32Ty(VMContext),
1100 2));
1101 Mask.push_back(llvm::UndefValue::get(llvm::Type::getInt32Ty(VMContext)));
1102
1103 llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
1104 Value = Builder.CreateShuffleVector(Value,
1105 llvm::UndefValue::get(VecTy),
1106 MaskV, "extractVec");
1107 SrcTy = llvm::VectorType::get(VecTy->getElementType(), 4);
1108 }
1109 llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
1110 if (DstPtr->getElementType() != SrcTy) {
1111 llvm::Type *MemTy =
1112 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
1113 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
1114 }
1115 }
1116
John McCall3a7f6922010-10-27 20:58:56 +00001117 Value = EmitToMemory(Value, Ty);
Chris Lattner1a5f8972011-07-10 03:38:35 +00001118
Daniel Dunbar03816342010-08-21 02:24:36 +00001119 llvm::StoreInst *Store = Builder.CreateStore(Value, Addr, Volatile);
1120 if (Alignment)
1121 Store->setAlignment(Alignment);
Dan Gohman947c9af2010-10-14 23:06:10 +00001122 if (TBAAInfo)
1123 CGM.DecorateInstruction(Store, TBAAInfo);
David Chisnallfa35df62012-01-16 17:27:18 +00001124 if (!isInit && Ty->isAtomicType())
1125 Store->setAtomic(llvm::SequentiallyConsistent);
Daniel Dunbar1d425462009-02-10 00:57:50 +00001126}
1127
David Chisnallfa35df62012-01-16 17:27:18 +00001128void CodeGenFunction::EmitStoreOfScalar(llvm::Value *value, LValue lvalue,
1129 bool isInit) {
John McCall1553b192011-06-16 04:16:24 +00001130 EmitStoreOfScalar(value, lvalue.getAddress(), lvalue.isVolatile(),
Eli Friedmana0544d62011-12-03 04:14:32 +00001131 lvalue.getAlignment().getQuantity(), lvalue.getType(),
David Chisnallfa35df62012-01-16 17:27:18 +00001132 lvalue.getTBAAInfo(), isInit);
John McCall1553b192011-06-16 04:16:24 +00001133}
1134
Mike Stump4a3999f2009-09-09 13:00:44 +00001135/// EmitLoadOfLValue - Given an expression that represents a value lvalue, this
1136/// method emits the address of the lvalue, then loads the result as an rvalue,
1137/// returning the rvalue.
John McCall55e1fbc2011-06-25 02:11:03 +00001138RValue CodeGenFunction::EmitLoadOfLValue(LValue LV) {
Fariborz Jahanian50a12702008-11-19 17:34:06 +00001139 if (LV.isObjCWeak()) {
Mike Stump4a3999f2009-09-09 13:00:44 +00001140 // load of a __weak object.
Fariborz Jahanianf5125d12008-11-18 21:45:40 +00001141 llvm::Value *AddrWeakObj = LV.getAddress();
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001142 return RValue::get(CGM.getObjCRuntime().EmitObjCWeakRead(*this,
1143 AddrWeakObj));
Fariborz Jahanianf5125d12008-11-18 21:45:40 +00001144 }
Fariborz Jahanianfbd19742012-11-27 23:02:53 +00001145 if (LV.getQuals().getObjCLifetime() == Qualifiers::OCL_Weak) {
1146 llvm::Value *Object = EmitARCLoadWeakRetained(LV.getAddress());
1147 Object = EmitObjCConsumeObject(LV.getType(), Object);
1148 return RValue::get(Object);
1149 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001150
Chris Lattner08c4b9f2007-07-10 21:17:59 +00001151 if (LV.isSimple()) {
John McCalld68b2d02011-06-27 21:24:11 +00001152 assert(!LV.getType()->isFunctionType());
Mike Stump4a3999f2009-09-09 13:00:44 +00001153
John McCalla1dee5302010-08-22 10:59:02 +00001154 // Everything needs a load.
John McCall55e1fbc2011-06-25 02:11:03 +00001155 return RValue::get(EmitLoadOfScalar(LV));
Chris Lattner08c4b9f2007-07-10 21:17:59 +00001156 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001157
Chris Lattner08c4b9f2007-07-10 21:17:59 +00001158 if (LV.isVectorElt()) {
Eli Friedman610bb872012-03-22 22:36:39 +00001159 llvm::LoadInst *Load = Builder.CreateLoad(LV.getVectorAddr(),
1160 LV.isVolatileQualified());
1161 Load->setAlignment(LV.getAlignment().getQuantity());
1162 return RValue::get(Builder.CreateExtractElement(Load, LV.getVectorIdx(),
Chris Lattner08c4b9f2007-07-10 21:17:59 +00001163 "vecext"));
1164 }
Chris Lattner73ab9b32007-08-03 00:16:29 +00001165
1166 // If this is a reference to a subset of the elements of a vector, either
1167 // shuffle the input or extract/insert them as appropriate.
Nate Begemance4d7fc2008-04-18 23:10:10 +00001168 if (LV.isExtVectorElt())
John McCall55e1fbc2011-06-25 02:11:03 +00001169 return EmitLoadOfExtVectorElementLValue(LV);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +00001170
John McCallc109a252011-11-07 03:59:57 +00001171 assert(LV.isBitField() && "Unknown LValue type!");
1172 return EmitLoadOfBitfieldLValue(LV);
Chris Lattner8394d792007-06-05 20:53:16 +00001173}
1174
John McCall55e1fbc2011-06-25 02:11:03 +00001175RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV) {
Daniel Dunbar196ea442010-04-06 01:07:44 +00001176 const CGBitFieldInfo &Info = LV.getBitFieldInfo();
Daniel Dunbaread7c912008-08-06 05:08:45 +00001177
Daniel Dunbar3447a022010-04-13 23:34:15 +00001178 // Get the output type.
Chris Lattner2192fe52011-07-18 04:24:23 +00001179 llvm::Type *ResLTy = ConvertType(LV.getType());
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +00001180
Chandler Carruthff0e3a12012-12-06 11:14:44 +00001181 llvm::Value *Ptr = LV.getBitFieldAddr();
1182 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),
1183 "bf.load");
1184 cast<llvm::LoadInst>(Val)->setAlignment(Info.StorageAlignment);
Mike Stump4a3999f2009-09-09 13:00:44 +00001185
Chandler Carruthff0e3a12012-12-06 11:14:44 +00001186 if (Info.IsSigned) {
1187 assert((Info.Offset + Info.Size) <= Info.StorageSize);
1188 unsigned HighBits = Info.StorageSize - Info.Offset - Info.Size;
1189 if (HighBits)
1190 Val = Builder.CreateShl(Val, HighBits, "bf.shl");
1191 if (Info.Offset + HighBits)
1192 Val = Builder.CreateAShr(Val, Info.Offset + HighBits, "bf.ashr");
1193 } else {
1194 if (Info.Offset)
1195 Val = Builder.CreateLShr(Val, Info.Offset, "bf.lshr");
1196 if (Info.Offset + Info.Size < Info.StorageSize)
1197 Val = Builder.CreateAnd(Val, llvm::APInt::getLowBitsSet(Info.StorageSize,
1198 Info.Size),
1199 "bf.clear");
Daniel Dunbaread7c912008-08-06 05:08:45 +00001200 }
Chandler Carruthff0e3a12012-12-06 11:14:44 +00001201 Val = Builder.CreateIntCast(Val, ResLTy, Info.IsSigned, "bf.cast");
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +00001202
Chandler Carruthff0e3a12012-12-06 11:14:44 +00001203 return RValue::get(Val);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +00001204}
1205
Nate Begemanb699c9b2009-01-18 06:42:49 +00001206// If this is a reference to a subset of the elements of a vector, create an
1207// appropriate shufflevector.
John McCall55e1fbc2011-06-25 02:11:03 +00001208RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV) {
Eli Friedman610bb872012-03-22 22:36:39 +00001209 llvm::LoadInst *Load = Builder.CreateLoad(LV.getExtVectorAddr(),
1210 LV.isVolatileQualified());
1211 Load->setAlignment(LV.getAlignment().getQuantity());
1212 llvm::Value *Vec = Load;
Mike Stump4a3999f2009-09-09 13:00:44 +00001213
Nate Begemanf322eab2008-05-09 06:41:27 +00001214 const llvm::Constant *Elts = LV.getExtVectorElts();
Mike Stump4a3999f2009-09-09 13:00:44 +00001215
1216 // If the result of the expression is a non-vector type, we must be extracting
1217 // a single element. Just codegen as an extractelement.
John McCall55e1fbc2011-06-25 02:11:03 +00001218 const VectorType *ExprVT = LV.getType()->getAs<VectorType>();
Chris Lattner8eab8ff2007-08-10 17:10:08 +00001219 if (!ExprVT) {
Dan Gohman75d69da2008-05-22 00:50:06 +00001220 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner5e016ae2010-06-27 07:15:29 +00001221 llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx);
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001222 return RValue::get(Builder.CreateExtractElement(Vec, Elt));
Chris Lattner40ff7012007-08-03 16:18:34 +00001223 }
Nate Begemanb699c9b2009-01-18 06:42:49 +00001224
1225 // Always use shuffle vector to try to retain the original program structure
Chris Lattner8eab8ff2007-08-10 17:10:08 +00001226 unsigned NumResultElts = ExprVT->getNumElements();
Mike Stump4a3999f2009-09-09 13:00:44 +00001227
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001228 SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner2d6b7b92012-01-25 05:34:41 +00001229 for (unsigned i = 0; i != NumResultElts; ++i)
1230 Mask.push_back(Builder.getInt32(getAccessedFieldNo(i, Elts)));
Mike Stump4a3999f2009-09-09 13:00:44 +00001231
Chris Lattner91c08ad2011-02-15 00:14:06 +00001232 llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
1233 Vec = Builder.CreateShuffleVector(Vec, llvm::UndefValue::get(Vec->getType()),
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001234 MaskV);
Nate Begemanb699c9b2009-01-18 06:42:49 +00001235 return RValue::get(Vec);
Chris Lattner40ff7012007-08-03 16:18:34 +00001236}
1237
1238
Chris Lattner9369a562007-06-29 16:31:29 +00001239
Chris Lattner8394d792007-06-05 20:53:16 +00001240/// EmitStoreThroughLValue - Store the specified rvalue into the specified
1241/// lvalue, where both are guaranteed to the have the same type, and that type
1242/// is 'Ty'.
David Chisnallfa35df62012-01-16 17:27:18 +00001243void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit) {
Chris Lattner41d480e2007-08-03 16:28:33 +00001244 if (!Dst.isSimple()) {
1245 if (Dst.isVectorElt()) {
1246 // Read/modify/write the vector, inserting the new element.
Eli Friedman610bb872012-03-22 22:36:39 +00001247 llvm::LoadInst *Load = Builder.CreateLoad(Dst.getVectorAddr(),
1248 Dst.isVolatileQualified());
1249 Load->setAlignment(Dst.getAlignment().getQuantity());
1250 llvm::Value *Vec = Load;
Chris Lattner4647a212007-08-31 22:49:20 +00001251 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner41d480e2007-08-03 16:28:33 +00001252 Dst.getVectorIdx(), "vecins");
Eli Friedman610bb872012-03-22 22:36:39 +00001253 llvm::StoreInst *Store = Builder.CreateStore(Vec, Dst.getVectorAddr(),
1254 Dst.isVolatileQualified());
1255 Store->setAlignment(Dst.getAlignment().getQuantity());
Chris Lattner41d480e2007-08-03 16:28:33 +00001256 return;
1257 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001258
Nate Begemance4d7fc2008-04-18 23:10:10 +00001259 // If this is an update of extended vector elements, insert them as
1260 // appropriate.
1261 if (Dst.isExtVectorElt())
John McCall55e1fbc2011-06-25 02:11:03 +00001262 return EmitStoreThroughExtVectorComponentLValue(Src, Dst);
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +00001263
John McCallc109a252011-11-07 03:59:57 +00001264 assert(Dst.isBitField() && "Unknown LValue type");
1265 return EmitStoreThroughBitfieldLValue(Src, Dst);
Chris Lattner41d480e2007-08-03 16:28:33 +00001266 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001267
John McCall31168b02011-06-15 23:02:42 +00001268 // There's special magic for assigning into an ARC-qualified l-value.
1269 if (Qualifiers::ObjCLifetime Lifetime = Dst.getQuals().getObjCLifetime()) {
1270 switch (Lifetime) {
1271 case Qualifiers::OCL_None:
1272 llvm_unreachable("present but none");
1273
1274 case Qualifiers::OCL_ExplicitNone:
1275 // nothing special
1276 break;
1277
1278 case Qualifiers::OCL_Strong:
John McCall55e1fbc2011-06-25 02:11:03 +00001279 EmitARCStoreStrong(Dst, Src.getScalarVal(), /*ignore*/ true);
John McCall31168b02011-06-15 23:02:42 +00001280 return;
1281
1282 case Qualifiers::OCL_Weak:
1283 EmitARCStoreWeak(Dst.getAddress(), Src.getScalarVal(), /*ignore*/ true);
1284 return;
1285
1286 case Qualifiers::OCL_Autoreleasing:
John McCall55e1fbc2011-06-25 02:11:03 +00001287 Src = RValue::get(EmitObjCExtendObjectLifetime(Dst.getType(),
1288 Src.getScalarVal()));
John McCall31168b02011-06-15 23:02:42 +00001289 // fall into the normal path
1290 break;
1291 }
1292 }
1293
Fariborz Jahanian10bec102009-02-21 00:30:43 +00001294 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Mike Stump4a3999f2009-09-09 13:00:44 +00001295 // load of a __weak object.
Fariborz Jahanian50a12702008-11-19 17:34:06 +00001296 llvm::Value *LvalueDst = Dst.getAddress();
1297 llvm::Value *src = Src.getScalarVal();
Mike Stumpca5ae662009-04-14 00:57:29 +00001298 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahanian50a12702008-11-19 17:34:06 +00001299 return;
1300 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001301
Fariborz Jahanian10bec102009-02-21 00:30:43 +00001302 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Mike Stump4a3999f2009-09-09 13:00:44 +00001303 // load of a __strong object.
Fariborz Jahanian50a12702008-11-19 17:34:06 +00001304 llvm::Value *LvalueDst = Dst.getAddress();
1305 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001306 if (Dst.isObjCIvar()) {
1307 assert(Dst.getBaseIvarExp() && "BaseIvarExp is NULL");
Chris Lattner2192fe52011-07-18 04:24:23 +00001308 llvm::Type *ResultType = ConvertType(getContext().LongTy);
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001309 llvm::Value *RHS = EmitScalarExpr(Dst.getBaseIvarExp());
Fariborz Jahanian1f9ed582009-09-25 00:00:20 +00001310 llvm::Value *dst = RHS;
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001311 RHS = Builder.CreatePtrToInt(RHS, ResultType, "sub.ptr.rhs.cast");
1312 llvm::Value *LHS =
1313 Builder.CreatePtrToInt(LvalueDst, ResultType, "sub.ptr.lhs.cast");
1314 llvm::Value *BytesBetween = Builder.CreateSub(LHS, RHS, "ivar.offset");
Fariborz Jahanian1f9ed582009-09-25 00:00:20 +00001315 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, dst,
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001316 BytesBetween);
Fariborz Jahanian217af242010-07-20 20:30:03 +00001317 } else if (Dst.isGlobalObjCRef()) {
1318 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst,
1319 Dst.isThreadLocalRef());
1320 }
Fariborz Jahanian32ff7ae2009-05-04 23:27:20 +00001321 else
1322 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahanian50a12702008-11-19 17:34:06 +00001323 return;
1324 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001325
Chris Lattner6278e6a2007-08-11 00:04:45 +00001326 assert(Src.isScalar() && "Can't emit an agg store with this method");
David Chisnallfa35df62012-01-16 17:27:18 +00001327 EmitStoreOfScalar(Src.getScalarVal(), Dst, isInit);
Chris Lattner8394d792007-06-05 20:53:16 +00001328}
1329
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +00001330void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001331 llvm::Value **Result) {
Daniel Dunbar196ea442010-04-06 01:07:44 +00001332 const CGBitFieldInfo &Info = Dst.getBitFieldInfo();
Chris Lattner2192fe52011-07-18 04:24:23 +00001333 llvm::Type *ResLTy = ConvertTypeForMem(Dst.getType());
Chandler Carruthff0e3a12012-12-06 11:14:44 +00001334 llvm::Value *Ptr = Dst.getBitFieldAddr();
Daniel Dunbaread7c912008-08-06 05:08:45 +00001335
Daniel Dunbar67aba792010-04-15 03:47:33 +00001336 // Get the source value, truncated to the width of the bit-field.
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001337 llvm::Value *SrcVal = Src.getScalarVal();
Anders Carlsson8345a702010-04-17 21:52:22 +00001338
Chandler Carruthff0e3a12012-12-06 11:14:44 +00001339 // Cast the source to the storage type and shift it into place.
1340 SrcVal = Builder.CreateIntCast(SrcVal,
1341 Ptr->getType()->getPointerElementType(),
1342 /*IsSigned=*/false);
1343 llvm::Value *MaskedVal = SrcVal;
Anders Carlsson8345a702010-04-17 21:52:22 +00001344
Chandler Carruthff0e3a12012-12-06 11:14:44 +00001345 // See if there are other bits in the bitfield's storage we'll need to load
1346 // and mask together with source before storing.
1347 if (Info.StorageSize != Info.Size) {
1348 assert(Info.StorageSize > Info.Size && "Invalid bitfield size.");
1349 llvm::Value *Val = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
1350 "bf.load");
1351 cast<llvm::LoadInst>(Val)->setAlignment(Info.StorageAlignment);
1352
1353 // Mask the source value as needed.
1354 if (!hasBooleanRepresentation(Dst.getType()))
1355 SrcVal = Builder.CreateAnd(SrcVal,
1356 llvm::APInt::getLowBitsSet(Info.StorageSize,
1357 Info.Size),
1358 "bf.value");
1359 MaskedVal = SrcVal;
1360 if (Info.Offset)
1361 SrcVal = Builder.CreateShl(SrcVal, Info.Offset, "bf.shl");
1362
1363 // Mask out the original value.
1364 Val = Builder.CreateAnd(Val,
1365 ~llvm::APInt::getBitsSet(Info.StorageSize,
1366 Info.Offset,
1367 Info.Offset + Info.Size),
1368 "bf.clear");
1369
1370 // Or together the unchanged values and the source value.
1371 SrcVal = Builder.CreateOr(Val, SrcVal, "bf.set");
1372 } else {
1373 assert(Info.Offset == 0);
1374 }
1375
1376 // Write the new value back out.
1377 llvm::StoreInst *Store = Builder.CreateStore(SrcVal, Ptr,
1378 Dst.isVolatileQualified());
1379 Store->setAlignment(Info.StorageAlignment);
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +00001380
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001381 // Return the new value of the bit-field, if requested.
1382 if (Result) {
Chandler Carruthff0e3a12012-12-06 11:14:44 +00001383 llvm::Value *ResultVal = MaskedVal;
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001384
Chandler Carruthff0e3a12012-12-06 11:14:44 +00001385 // Sign extend the value if needed.
1386 if (Info.IsSigned) {
1387 assert(Info.Size <= Info.StorageSize);
1388 unsigned HighBits = Info.StorageSize - Info.Size;
1389 if (HighBits) {
1390 ResultVal = Builder.CreateShl(ResultVal, HighBits, "bf.result.shl");
1391 ResultVal = Builder.CreateAShr(ResultVal, HighBits, "bf.result.ashr");
1392 }
Daniel Dunbar9b1335e2008-11-19 09:36:46 +00001393 }
1394
Chandler Carruthff0e3a12012-12-06 11:14:44 +00001395 ResultVal = Builder.CreateIntCast(ResultVal, ResLTy, Info.IsSigned,
1396 "bf.result.cast");
1397 *Result = ResultVal;
Daniel Dunbaread7c912008-08-06 05:08:45 +00001398 }
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +00001399}
1400
Nate Begemance4d7fc2008-04-18 23:10:10 +00001401void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
John McCall55e1fbc2011-06-25 02:11:03 +00001402 LValue Dst) {
Chris Lattner41d480e2007-08-03 16:28:33 +00001403 // This access turns into a read/modify/write of the vector. Load the input
1404 // value now.
Eli Friedman610bb872012-03-22 22:36:39 +00001405 llvm::LoadInst *Load = Builder.CreateLoad(Dst.getExtVectorAddr(),
1406 Dst.isVolatileQualified());
1407 Load->setAlignment(Dst.getAlignment().getQuantity());
1408 llvm::Value *Vec = Load;
Nate Begemanf322eab2008-05-09 06:41:27 +00001409 const llvm::Constant *Elts = Dst.getExtVectorElts();
Mike Stump4a3999f2009-09-09 13:00:44 +00001410
Chris Lattner4647a212007-08-31 22:49:20 +00001411 llvm::Value *SrcVal = Src.getScalarVal();
Mike Stump4a3999f2009-09-09 13:00:44 +00001412
John McCall55e1fbc2011-06-25 02:11:03 +00001413 if (const VectorType *VTy = Dst.getType()->getAs<VectorType>()) {
Chris Lattner3a44aa72007-08-03 16:37:04 +00001414 unsigned NumSrcElts = VTy->getNumElements();
Nate Begemanb699c9b2009-01-18 06:42:49 +00001415 unsigned NumDstElts =
1416 cast<llvm::VectorType>(Vec->getType())->getNumElements();
1417 if (NumDstElts == NumSrcElts) {
Mike Stump4a3999f2009-09-09 13:00:44 +00001418 // Use shuffle vector is the src and destination are the same number of
1419 // elements and restore the vector mask since it is on the side it will be
1420 // stored.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001421 SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
Chris Lattner2d6b7b92012-01-25 05:34:41 +00001422 for (unsigned i = 0; i != NumSrcElts; ++i)
1423 Mask[getAccessedFieldNo(i, Elts)] = Builder.getInt32(i);
Mike Stump4a3999f2009-09-09 13:00:44 +00001424
Chris Lattner91c08ad2011-02-15 00:14:06 +00001425 llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
Nate Begemanb699c9b2009-01-18 06:42:49 +00001426 Vec = Builder.CreateShuffleVector(SrcVal,
Owen Anderson7ec07a52009-07-30 23:11:26 +00001427 llvm::UndefValue::get(Vec->getType()),
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001428 MaskV);
Mike Stump658fe022009-07-30 22:28:39 +00001429 } else if (NumDstElts > NumSrcElts) {
Nate Begemanb699c9b2009-01-18 06:42:49 +00001430 // Extended the source vector to the same length and then shuffle it
1431 // into the destination.
1432 // FIXME: since we're shuffling with undef, can we just use the indices
1433 // into that? This could be simpler.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001434 SmallVector<llvm::Constant*, 4> ExtMask;
Benjamin Kramer8001f742012-02-14 12:06:21 +00001435 for (unsigned i = 0; i != NumSrcElts; ++i)
Chris Lattner2d6b7b92012-01-25 05:34:41 +00001436 ExtMask.push_back(Builder.getInt32(i));
Benjamin Kramer8001f742012-02-14 12:06:21 +00001437 ExtMask.resize(NumDstElts, llvm::UndefValue::get(Int32Ty));
Chris Lattner91c08ad2011-02-15 00:14:06 +00001438 llvm::Value *ExtMaskV = llvm::ConstantVector::get(ExtMask);
Mike Stump4a3999f2009-09-09 13:00:44 +00001439 llvm::Value *ExtSrcVal =
Daniel Dunbar3d926cb2009-02-17 18:31:04 +00001440 Builder.CreateShuffleVector(SrcVal,
Owen Anderson7ec07a52009-07-30 23:11:26 +00001441 llvm::UndefValue::get(SrcVal->getType()),
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001442 ExtMaskV);
Nate Begemanb699c9b2009-01-18 06:42:49 +00001443 // build identity
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001444 SmallVector<llvm::Constant*, 4> Mask;
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001445 for (unsigned i = 0; i != NumDstElts; ++i)
Chris Lattner2d6b7b92012-01-25 05:34:41 +00001446 Mask.push_back(Builder.getInt32(i));
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001447
Nate Begemanb699c9b2009-01-18 06:42:49 +00001448 // modify when what gets shuffled in
Chris Lattner2d6b7b92012-01-25 05:34:41 +00001449 for (unsigned i = 0; i != NumSrcElts; ++i)
1450 Mask[getAccessedFieldNo(i, Elts)] = Builder.getInt32(i+NumDstElts);
Chris Lattner91c08ad2011-02-15 00:14:06 +00001451 llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001452 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV);
Mike Stump658fe022009-07-30 22:28:39 +00001453 } else {
Nate Begemanb699c9b2009-01-18 06:42:49 +00001454 // We should never shorten the vector
David Blaikie83d382b2011-09-23 05:06:16 +00001455 llvm_unreachable("unexpected shorten vector length");
Chris Lattner3a44aa72007-08-03 16:37:04 +00001456 }
1457 } else {
1458 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman75d69da2008-05-22 00:50:06 +00001459 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001460 llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx);
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001461 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt);
Chris Lattner41d480e2007-08-03 16:28:33 +00001462 }
Mike Stump4a3999f2009-09-09 13:00:44 +00001463
Eli Friedman610bb872012-03-22 22:36:39 +00001464 llvm::StoreInst *Store = Builder.CreateStore(Vec, Dst.getExtVectorAddr(),
1465 Dst.isVolatileQualified());
1466 Store->setAlignment(Dst.getAlignment().getQuantity());
Chris Lattner41d480e2007-08-03 16:28:33 +00001467}
1468
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001469// setObjCGCLValueClass - sets class of he lvalue for the purpose of
1470// generating write-barries API. It is currently a global, ivar,
1471// or neither.
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001472static void setObjCGCLValueClass(const ASTContext &Ctx, const Expr *E,
Fariborz Jahanian0c784272011-09-30 18:23:36 +00001473 LValue &LV,
1474 bool IsMemberAccess=false) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001475 if (Ctx.getLangOpts().getGC() == LangOptions::NonGC)
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001476 return;
1477
Fariborz Jahaniande1d3242009-09-16 23:11:23 +00001478 if (isa<ObjCIvarRefExpr>(E)) {
Fariborz Jahanian0c784272011-09-30 18:23:36 +00001479 QualType ExpTy = E->getType();
1480 if (IsMemberAccess && ExpTy->isPointerType()) {
1481 // If ivar is a structure pointer, assigning to field of
1482 // this struct follows gcc's behavior and makes it a non-ivar
1483 // writer-barrier conservatively.
1484 ExpTy = ExpTy->getAs<PointerType>()->getPointeeType();
1485 if (ExpTy->isRecordType()) {
1486 LV.setObjCIvar(false);
1487 return;
1488 }
1489 }
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001490 LV.setObjCIvar(true);
Fariborz Jahanian7a95d722009-09-24 22:25:38 +00001491 ObjCIvarRefExpr *Exp = cast<ObjCIvarRefExpr>(const_cast<Expr*>(E));
1492 LV.setBaseIvarExp(Exp->getBase());
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001493 LV.setObjCArray(E->getType()->isArrayType());
Fariborz Jahaniande1d3242009-09-16 23:11:23 +00001494 return;
1495 }
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001496
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001497 if (const DeclRefExpr *Exp = dyn_cast<DeclRefExpr>(E)) {
1498 if (const VarDecl *VD = dyn_cast<VarDecl>(Exp->getDecl())) {
John McCall1c9c3fd2010-10-15 04:57:14 +00001499 if (VD->hasGlobalStorage()) {
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001500 LV.setGlobalObjCRef(true);
1501 LV.setThreadLocalRef(VD->isThreadSpecified());
Fariborz Jahanian217af242010-07-20 20:30:03 +00001502 }
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001503 }
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001504 LV.setObjCArray(E->getType()->isArrayType());
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001505 return;
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001506 }
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001507
1508 if (const UnaryOperator *Exp = dyn_cast<UnaryOperator>(E)) {
Fariborz Jahanian0c784272011-09-30 18:23:36 +00001509 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001510 return;
1511 }
1512
1513 if (const ParenExpr *Exp = dyn_cast<ParenExpr>(E)) {
Fariborz Jahanian0c784272011-09-30 18:23:36 +00001514 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
Fariborz Jahaniane01e4342009-09-30 17:10:29 +00001515 if (LV.isObjCIvar()) {
1516 // If cast is to a structure pointer, follow gcc's behavior and make it
1517 // a non-ivar write-barrier.
1518 QualType ExpTy = E->getType();
1519 if (ExpTy->isPointerType())
1520 ExpTy = ExpTy->getAs<PointerType>()->getPointeeType();
1521 if (ExpTy->isRecordType())
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001522 LV.setObjCIvar(false);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001523 }
1524 return;
Fariborz Jahaniane01e4342009-09-30 17:10:29 +00001525 }
Peter Collingbourne91147592011-04-15 00:35:48 +00001526
1527 if (const GenericSelectionExpr *Exp = dyn_cast<GenericSelectionExpr>(E)) {
1528 setObjCGCLValueClass(Ctx, Exp->getResultExpr(), LV);
1529 return;
1530 }
1531
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001532 if (const ImplicitCastExpr *Exp = dyn_cast<ImplicitCastExpr>(E)) {
Fariborz Jahanian0c784272011-09-30 18:23:36 +00001533 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001534 return;
1535 }
1536
1537 if (const CStyleCastExpr *Exp = dyn_cast<CStyleCastExpr>(E)) {
Fariborz Jahanian0c784272011-09-30 18:23:36 +00001538 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001539 return;
1540 }
John McCall31168b02011-06-15 23:02:42 +00001541
1542 if (const ObjCBridgedCastExpr *Exp = dyn_cast<ObjCBridgedCastExpr>(E)) {
Fariborz Jahanian0c784272011-09-30 18:23:36 +00001543 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
John McCall31168b02011-06-15 23:02:42 +00001544 return;
1545 }
1546
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001547 if (const ArraySubscriptExpr *Exp = dyn_cast<ArraySubscriptExpr>(E)) {
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001548 setObjCGCLValueClass(Ctx, Exp->getBase(), LV);
Fariborz Jahanian38c3ae92009-09-21 18:54:29 +00001549 if (LV.isObjCIvar() && !LV.isObjCArray())
Fariborz Jahanian2e32ddc2009-09-18 00:04:00 +00001550 // Using array syntax to assigning to what an ivar points to is not
1551 // same as assigning to the ivar itself. {id *Names;} Names[i] = 0;
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001552 LV.setObjCIvar(false);
Fariborz Jahanian38c3ae92009-09-21 18:54:29 +00001553 else if (LV.isGlobalObjCRef() && !LV.isObjCArray())
1554 // Using array syntax to assigning to what global points to is not
1555 // same as assigning to the global itself. {id *G;} G[i] = 0;
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001556 LV.setGlobalObjCRef(false);
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001557 return;
Fariborz Jahanian2e32ddc2009-09-18 00:04:00 +00001558 }
Fariborz Jahanian0c784272011-09-30 18:23:36 +00001559
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001560 if (const MemberExpr *Exp = dyn_cast<MemberExpr>(E)) {
Fariborz Jahanian0c784272011-09-30 18:23:36 +00001561 setObjCGCLValueClass(Ctx, Exp->getBase(), LV, true);
Fariborz Jahanian2e32ddc2009-09-18 00:04:00 +00001562 // We don't know if member is an 'ivar', but this flag is looked at
1563 // only in the context of LV.isObjCIvar().
Daniel Dunbar4bb04ce2010-08-21 03:51:29 +00001564 LV.setObjCArray(E->getType()->isArrayType());
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001565 return;
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001566 }
1567}
1568
Chris Lattner3f32d692011-07-12 06:52:18 +00001569static llvm::Value *
Chandler Carruth4678f672011-07-12 08:58:26 +00001570EmitBitCastOfLValueToProperType(CodeGenFunction &CGF,
Chris Lattner3f32d692011-07-12 06:52:18 +00001571 llvm::Value *V, llvm::Type *IRType,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001572 StringRef Name = StringRef()) {
Chris Lattner3f32d692011-07-12 06:52:18 +00001573 unsigned AS = cast<llvm::PointerType>(V->getType())->getAddressSpace();
Chandler Carruth4678f672011-07-12 08:58:26 +00001574 return CGF.Builder.CreateBitCast(V, IRType->getPointerTo(AS), Name);
Chris Lattner3f32d692011-07-12 06:52:18 +00001575}
1576
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001577static LValue EmitGlobalVarDeclLValue(CodeGenFunction &CGF,
1578 const Expr *E, const VarDecl *VD) {
Daniel Dunbar7e215ea2009-11-08 09:46:46 +00001579 assert((VD->hasExternalStorage() || VD->isFileVarDecl()) &&
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001580 "Var decl must have external storage or be a file var decl!");
1581
1582 llvm::Value *V = CGF.CGM.GetAddrOfGlobalVar(VD);
Eli Friedmand20adbd2011-11-16 00:42:57 +00001583 llvm::Type *RealVarTy = CGF.getTypes().ConvertTypeForMem(VD->getType());
1584 V = EmitBitCastOfLValueToProperType(CGF, V, RealVarTy);
Eli Friedmana0544d62011-12-03 04:14:32 +00001585 CharUnits Alignment = CGF.getContext().getDeclAlign(VD);
Eli Friedmand20adbd2011-11-16 00:42:57 +00001586 QualType T = E->getType();
1587 LValue LV;
1588 if (VD->getType()->isReferenceType()) {
1589 llvm::LoadInst *LI = CGF.Builder.CreateLoad(V);
Eli Friedmana0544d62011-12-03 04:14:32 +00001590 LI->setAlignment(Alignment.getQuantity());
Eli Friedmand20adbd2011-11-16 00:42:57 +00001591 V = LI;
1592 LV = CGF.MakeNaturalAlignAddrLValue(V, T);
1593 } else {
1594 LV = CGF.MakeAddrLValue(V, E->getType(), Alignment);
1595 }
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001596 setObjCGCLValueClass(CGF.getContext(), E, LV);
1597 return LV;
1598}
1599
Eli Friedmand15eb34d2009-11-26 06:08:14 +00001600static LValue EmitFunctionDeclLValue(CodeGenFunction &CGF,
Chris Lattner13ee4f42011-07-10 05:34:54 +00001601 const Expr *E, const FunctionDecl *FD) {
Chris Lattnerf53c0962010-09-06 00:11:41 +00001602 llvm::Value *V = CGF.CGM.GetAddrOfFunction(FD);
Eli Friedmand15eb34d2009-11-26 06:08:14 +00001603 if (!FD->hasPrototype()) {
1604 if (const FunctionProtoType *Proto =
1605 FD->getType()->getAs<FunctionProtoType>()) {
1606 // Ugly case: for a K&R-style definition, the type of the definition
1607 // isn't the same as the type of a use. Correct for this with a
1608 // bitcast.
1609 QualType NoProtoType =
1610 CGF.getContext().getFunctionNoProtoType(Proto->getResultType());
1611 NoProtoType = CGF.getContext().getPointerType(NoProtoType);
Benjamin Kramer76399eb2011-09-27 21:06:10 +00001612 V = CGF.Builder.CreateBitCast(V, CGF.ConvertType(NoProtoType));
Eli Friedmand15eb34d2009-11-26 06:08:14 +00001613 }
1614 }
Eli Friedmana0544d62011-12-03 04:14:32 +00001615 CharUnits Alignment = CGF.getContext().getDeclAlign(FD);
Daniel Dunbar5c816372010-08-21 04:20:22 +00001616 return CGF.MakeAddrLValue(V, E->getType(), Alignment);
Eli Friedmand15eb34d2009-11-26 06:08:14 +00001617}
1618
Chris Lattnerd7f58862007-06-02 05:24:33 +00001619LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Anders Carlsson2ff6395d2009-11-07 22:53:10 +00001620 const NamedDecl *ND = E->getDecl();
Eli Friedmana0544d62011-12-03 04:14:32 +00001621 CharUnits Alignment = getContext().getDeclAlign(ND);
Eli Friedmand20adbd2011-11-16 00:42:57 +00001622 QualType T = E->getType();
Mike Stump4a3999f2009-09-09 13:00:44 +00001623
Richard Smith5a1104b2012-10-20 01:38:33 +00001624 // A DeclRefExpr for a reference initialized by a constant expression can
1625 // appear without being odr-used. Directly emit the constant initializer.
1626 if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
1627 const Expr *Init = VD->getAnyInitializer(VD);
1628 if (Init && !isa<ParmVarDecl>(VD) && VD->getType()->isReferenceType() &&
1629 VD->isUsableInConstantExpressions(getContext()) &&
1630 VD->checkInitIsICE()) {
1631 llvm::Constant *Val =
1632 CGM.EmitConstantValue(*VD->evaluateValue(), VD->getType(), this);
1633 assert(Val && "failed to emit reference constant expression");
1634 // FIXME: Eventually we will want to emit vector element references.
1635 return MakeAddrLValue(Val, T, Alignment);
1636 }
1637 }
1638
Eli Friedman5720e342012-01-21 04:52:58 +00001639 // FIXME: We should be able to assert this for FunctionDecls as well!
1640 // FIXME: We should be able to assert this for all DeclRefExprs, not just
1641 // those with a valid source location.
1642 assert((ND->isUsed(false) || !isa<VarDecl>(ND) ||
1643 !E->getLocation().isValid()) &&
1644 "Should not use decl without marking it used!");
1645
Rafael Espindola2e42fec2010-03-04 18:17:24 +00001646 if (ND->hasAttr<WeakRefAttr>()) {
Chris Lattnerf53c0962010-09-06 00:11:41 +00001647 const ValueDecl *VD = cast<ValueDecl>(ND);
Rafael Espindola2e42fec2010-03-04 18:17:24 +00001648 llvm::Constant *Aliasee = CGM.GetWeakRefReference(VD);
Richard Smith5a1104b2012-10-20 01:38:33 +00001649 return MakeAddrLValue(Aliasee, T, Alignment);
Rafael Espindola2e42fec2010-03-04 18:17:24 +00001650 }
1651
Anders Carlsson2ff6395d2009-11-07 22:53:10 +00001652 if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
Anders Carlsson2ff6395d2009-11-07 22:53:10 +00001653 // Check if this is a global variable.
Anders Carlssonea4c30b2009-11-07 23:06:58 +00001654 if (VD->hasExternalStorage() || VD->isFileVarDecl())
1655 return EmitGlobalVarDeclLValue(*this, E, VD);
Anders Carlsson6eee9722009-11-07 22:46:42 +00001656
John McCall113bee02012-03-10 09:33:50 +00001657 bool isBlockVariable = VD->hasAttr<BlocksAttr>();
1658
Fariborz Jahanian44a41d12010-11-19 18:17:09 +00001659 bool NonGCable = VD->hasLocalStorage() &&
1660 !VD->getType()->isReferenceType() &&
John McCall113bee02012-03-10 09:33:50 +00001661 !isBlockVariable;
Anders Carlsson6eee9722009-11-07 22:46:42 +00001662
1663 llvm::Value *V = LocalDeclMap[VD];
Fariborz Jahanian366a9482010-09-07 23:26:17 +00001664 if (!V && VD->isStaticLocal())
Fariborz Jahanian4d55b2d2010-04-19 18:15:02 +00001665 V = CGM.getStaticLocalDeclAddress(VD);
Eli Friedman9fbeba02012-02-11 02:57:39 +00001666
1667 // Use special handling for lambdas.
John McCall113bee02012-03-10 09:33:50 +00001668 if (!V) {
Eli Friedman7f1ff602012-04-16 03:54:45 +00001669 if (FieldDecl *FD = LambdaCaptureFields.lookup(VD)) {
1670 QualType LambdaTagType = getContext().getTagDeclType(FD->getParent());
1671 LValue LambdaLV = MakeNaturalAlignAddrLValue(CXXABIThisValue,
1672 LambdaTagType);
1673 return EmitLValueForField(LambdaLV, FD);
1674 }
Eli Friedman9fbeba02012-02-11 02:57:39 +00001675
John McCall113bee02012-03-10 09:33:50 +00001676 assert(isa<BlockDecl>(CurCodeDecl) && E->refersToEnclosingLocal());
John McCall113bee02012-03-10 09:33:50 +00001677 return MakeAddrLValue(GetAddrOfBlockDecl(VD, isBlockVariable),
Richard Smith5a1104b2012-10-20 01:38:33 +00001678 T, Alignment);
John McCall113bee02012-03-10 09:33:50 +00001679 }
1680
Anders Carlsson6eee9722009-11-07 22:46:42 +00001681 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
1682
John McCall113bee02012-03-10 09:33:50 +00001683 if (isBlockVariable)
Fariborz Jahanian2f2fa722011-01-26 23:08:27 +00001684 V = BuildBlockByrefAddress(V, VD);
Daniel Dunbarf166a522010-08-21 03:44:13 +00001685
Eli Friedmand20adbd2011-11-16 00:42:57 +00001686 LValue LV;
1687 if (VD->getType()->isReferenceType()) {
1688 llvm::LoadInst *LI = Builder.CreateLoad(V);
Eli Friedmana0544d62011-12-03 04:14:32 +00001689 LI->setAlignment(Alignment.getQuantity());
Eli Friedmand20adbd2011-11-16 00:42:57 +00001690 V = LI;
1691 LV = MakeNaturalAlignAddrLValue(V, T);
1692 } else {
1693 LV = MakeAddrLValue(V, T, Alignment);
1694 }
Chris Lattner3f32d692011-07-12 06:52:18 +00001695
Fariborz Jahanian44a41d12010-11-19 18:17:09 +00001696 if (NonGCable) {
Daniel Dunbarf166a522010-08-21 03:44:13 +00001697 LV.getQuals().removeObjCGCAttr();
Daniel Dunbare50dda92010-08-21 03:22:38 +00001698 LV.setNonGC(true);
1699 }
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00001700 setObjCGCLValueClass(getContext(), E, LV);
Fariborz Jahanian003e8302008-11-20 00:15:42 +00001701 return LV;
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001702 }
John McCallf3a88602011-02-03 08:15:49 +00001703
1704 if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(ND))
1705 return EmitFunctionDeclLValue(*this, E, fn);
1706
David Blaikie83d382b2011-09-23 05:06:16 +00001707 llvm_unreachable("Unhandled DeclRefExpr");
Chris Lattnerd7f58862007-06-02 05:24:33 +00001708}
Chris Lattnere47e4402007-06-01 18:02:12 +00001709
Chris Lattner8394d792007-06-05 20:53:16 +00001710LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
1711 // __extension__ doesn't affect lvalue-ness.
John McCalle3027922010-08-25 11:45:40 +00001712 if (E->getOpcode() == UO_Extension)
Chris Lattner8394d792007-06-05 20:53:16 +00001713 return EmitLValue(E->getSubExpr());
Mike Stump4a3999f2009-09-09 13:00:44 +00001714
Chris Lattner0f398c42008-07-26 22:37:01 +00001715 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner595db862007-10-30 22:53:42 +00001716 switch (E->getOpcode()) {
David Blaikie83d382b2011-09-23 05:06:16 +00001717 default: llvm_unreachable("Unknown unary operator lvalue!");
John McCalle3027922010-08-25 11:45:40 +00001718 case UO_Deref: {
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001719 QualType T = E->getSubExpr()->getType()->getPointeeType();
1720 assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
Mike Stump4a3999f2009-09-09 13:00:44 +00001721
Chris Lattner2415357a2011-12-19 21:16:08 +00001722 LValue LV = MakeNaturalAlignAddrLValue(EmitScalarExpr(E->getSubExpr()), T);
Daniel Dunbarf166a522010-08-21 03:44:13 +00001723 LV.getQuals().setAddressSpace(ExprTy.getAddressSpace());
John McCall8ccfcb52009-09-24 19:53:00 +00001724
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001725 // We should not generate __weak write barrier on indirect reference
1726 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
1727 // But, we continue to generate __strong write barrier on indirect write
1728 // into a pointer to object.
Richard Smith9c6890a2012-11-01 22:30:59 +00001729 if (getLangOpts().ObjC1 &&
1730 getLangOpts().getGC() != LangOptions::NonGC &&
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001731 LV.isObjCWeak())
Daniel Dunbare50dda92010-08-21 03:22:38 +00001732 LV.setNonGC(!E->isOBJCGCCandidate(getContext()));
Chris Lattnerab5e0af2009-10-28 17:39:19 +00001733 return LV;
1734 }
John McCalle3027922010-08-25 11:45:40 +00001735 case UO_Real:
1736 case UO_Imag: {
Chris Lattner595db862007-10-30 22:53:42 +00001737 LValue LV = EmitLValue(E->getSubExpr());
John McCalla2342eb2010-12-05 02:00:02 +00001738 assert(LV.isSimple() && "real/imag on non-ordinary l-value");
1739 llvm::Value *Addr = LV.getAddress();
1740
Richard Smith0b6b8e42012-02-18 20:53:32 +00001741 // __real is valid on scalars. This is a faster way of testing that.
1742 // __imag can only produce an rvalue on scalars.
1743 if (E->getOpcode() == UO_Real &&
1744 !cast<llvm::PointerType>(Addr->getType())
John McCalla2342eb2010-12-05 02:00:02 +00001745 ->getElementType()->isStructTy()) {
1746 assert(E->getSubExpr()->getType()->isArithmeticType());
1747 return LV;
1748 }
1749
1750 assert(E->getSubExpr()->getType()->isAnyComplexType());
1751
John McCalle3027922010-08-25 11:45:40 +00001752 unsigned Idx = E->getOpcode() == UO_Imag;
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00001753 return MakeAddrLValue(Builder.CreateStructGEP(LV.getAddress(),
John McCalla2342eb2010-12-05 02:00:02 +00001754 Idx, "idx"),
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00001755 ExprTy);
Chris Lattner595db862007-10-30 22:53:42 +00001756 }
John McCalle3027922010-08-25 11:45:40 +00001757 case UO_PreInc:
1758 case UO_PreDec: {
Chris Lattnerbb8976e2010-01-09 21:44:40 +00001759 LValue LV = EmitLValue(E->getSubExpr());
John McCalle3027922010-08-25 11:45:40 +00001760 bool isInc = E->getOpcode() == UO_PreInc;
Chris Lattnerbb8976e2010-01-09 21:44:40 +00001761
1762 if (E->getType()->isAnyComplexType())
1763 EmitComplexPrePostIncDec(E, LV, isInc, true/*isPre*/);
1764 else
1765 EmitScalarPrePostIncDec(E, LV, isInc, true/*isPre*/);
1766 return LV;
1767 }
Eli Friedmana72bf0f2009-11-09 04:20:47 +00001768 }
Chris Lattner8394d792007-06-05 20:53:16 +00001769}
1770
Chris Lattner4347e3692007-06-06 04:54:52 +00001771LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar2e442a02010-08-21 03:15:20 +00001772 return MakeAddrLValue(CGM.GetAddrOfConstantStringFromLiteral(E),
1773 E->getType());
Chris Lattner4347e3692007-06-06 04:54:52 +00001774}
1775
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +00001776LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
Daniel Dunbar2e442a02010-08-21 03:15:20 +00001777 return MakeAddrLValue(CGM.GetAddrOfConstantStringFromObjCEncode(E),
1778 E->getType());
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +00001779}
1780
Nico Weber3a691a32012-06-23 02:07:59 +00001781static llvm::Constant*
1782GetAddrOfConstantWideString(StringRef Str,
1783 const char *GlobalName,
1784 ASTContext &Context,
1785 QualType Ty, SourceLocation Loc,
1786 CodeGenModule &CGM) {
1787
1788 StringLiteral *SL = StringLiteral::Create(Context,
1789 Str,
1790 StringLiteral::Wide,
1791 /*Pascal = */false,
1792 Ty, Loc);
1793 llvm::Constant *C = CGM.GetConstantArrayFromStringLiteral(SL);
1794 llvm::GlobalVariable *GV =
1795 new llvm::GlobalVariable(CGM.getModule(), C->getType(),
1796 !CGM.getLangOpts().WritableStrings,
1797 llvm::GlobalValue::PrivateLinkage,
1798 C, GlobalName);
1799 const unsigned WideAlignment =
1800 Context.getTypeAlignInChars(Ty).getQuantity();
1801 GV->setAlignment(WideAlignment);
1802 return GV;
1803}
1804
Nico Weber3a691a32012-06-23 02:07:59 +00001805static void ConvertUTF8ToWideString(unsigned CharByteWidth, StringRef Source,
1806 SmallString<32>& Target) {
1807 Target.resize(CharByteWidth * (Source.size() + 1));
Richard Smith639b8d02012-09-08 07:16:20 +00001808 char *ResultPtr = &Target[0];
1809 const UTF8 *ErrorPtr;
1810 bool success = ConvertUTF8toWide(CharByteWidth, Source, ResultPtr, ErrorPtr);
Matt Beaumont-Gay36af16af2012-07-03 03:55:58 +00001811 (void)success;
Nico Weber4b18c3f2012-07-03 02:24:52 +00001812 assert(success);
Nico Weber3a691a32012-06-23 02:07:59 +00001813 Target.resize(ResultPtr - &Target[0]);
1814}
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +00001815
Mike Stump4a3999f2009-09-09 13:00:44 +00001816LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Daniel Dunbarb3517472008-10-17 21:58:32 +00001817 switch (E->getIdentType()) {
1818 default:
1819 return EmitUnsupportedLValue(E, "predefined expression");
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001820
Daniel Dunbarb3517472008-10-17 21:58:32 +00001821 case PredefinedExpr::Func:
1822 case PredefinedExpr::Function:
Nico Weber3a691a32012-06-23 02:07:59 +00001823 case PredefinedExpr::LFunction:
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001824 case PredefinedExpr::PrettyFunction: {
Nico Weber3a691a32012-06-23 02:07:59 +00001825 unsigned IdentType = E->getIdentType();
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001826 std::string GlobalVarName;
1827
Nico Weber3a691a32012-06-23 02:07:59 +00001828 switch (IdentType) {
David Blaikie83d382b2011-09-23 05:06:16 +00001829 default: llvm_unreachable("Invalid type");
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001830 case PredefinedExpr::Func:
1831 GlobalVarName = "__func__.";
1832 break;
1833 case PredefinedExpr::Function:
1834 GlobalVarName = "__FUNCTION__.";
1835 break;
Nico Weber3a691a32012-06-23 02:07:59 +00001836 case PredefinedExpr::LFunction:
1837 GlobalVarName = "L__FUNCTION__.";
1838 break;
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001839 case PredefinedExpr::PrettyFunction:
1840 GlobalVarName = "__PRETTY_FUNCTION__.";
1841 break;
1842 }
1843
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001844 StringRef FnName = CurFn->getName();
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001845 if (FnName.startswith("\01"))
1846 FnName = FnName.substr(1);
1847 GlobalVarName += FnName;
1848
1849 const Decl *CurDecl = CurCodeDecl;
1850 if (CurDecl == 0)
1851 CurDecl = getContext().getTranslationUnitDecl();
1852
1853 std::string FunctionName =
John McCall351762c2011-02-07 10:33:21 +00001854 (isa<BlockDecl>(CurDecl)
1855 ? FnName.str()
Nico Weber3a691a32012-06-23 02:07:59 +00001856 : PredefinedExpr::ComputeName((PredefinedExpr::IdentType)IdentType,
1857 CurDecl));
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001858
Nico Weber3a691a32012-06-23 02:07:59 +00001859 const Type* ElemType = E->getType()->getArrayElementTypeNoTypeQual();
1860 llvm::Constant *C;
1861 if (ElemType->isWideCharType()) {
1862 SmallString<32> RawChars;
1863 ConvertUTF8ToWideString(
1864 getContext().getTypeSizeInChars(ElemType).getQuantity(),
1865 FunctionName, RawChars);
1866 C = GetAddrOfConstantWideString(RawChars,
1867 GlobalVarName.c_str(),
1868 getContext(),
1869 E->getType(),
1870 E->getLocation(),
1871 CGM);
1872 } else {
1873 C = CGM.GetAddrOfConstantCString(FunctionName,
1874 GlobalVarName.c_str(),
1875 1);
1876 }
Daniel Dunbar2e442a02010-08-21 03:15:20 +00001877 return MakeAddrLValue(C, E->getType());
Daniel Dunbarb1d94a92010-08-21 03:01:12 +00001878 }
Daniel Dunbarb3517472008-10-17 21:58:32 +00001879 }
Anders Carlsson625bfc82007-07-21 05:21:51 +00001880}
1881
Richard Smithe30752c2012-10-09 19:52:38 +00001882/// Emit a type description suitable for use by a runtime sanitizer library. The
1883/// format of a type descriptor is
1884///
1885/// \code
Richard Smith683398a2012-10-09 23:55:19 +00001886/// { i16 TypeKind, i16 TypeInfo }
Richard Smithe30752c2012-10-09 19:52:38 +00001887/// \endcode
1888///
Richard Smith683398a2012-10-09 23:55:19 +00001889/// followed by an array of i8 containing the type name. TypeKind is 0 for an
1890/// integer, 1 for a floating point value, and -1 for anything else.
Richard Smithe30752c2012-10-09 19:52:38 +00001891llvm::Constant *CodeGenFunction::EmitCheckTypeDescriptor(QualType T) {
1892 // FIXME: Only emit each type's descriptor once.
1893 uint16_t TypeKind = -1;
1894 uint16_t TypeInfo = 0;
Mike Stump9a4e0122009-12-15 00:59:40 +00001895
Richard Smithe30752c2012-10-09 19:52:38 +00001896 if (T->isIntegerType()) {
1897 TypeKind = 0;
1898 TypeInfo = (llvm::Log2_32(getContext().getTypeSize(T)) << 1) |
Aaron Ballmanf505d552012-11-30 21:44:01 +00001899 (T->isSignedIntegerType() ? 1 : 0);
Richard Smithe30752c2012-10-09 19:52:38 +00001900 } else if (T->isFloatingType()) {
1901 TypeKind = 1;
1902 TypeInfo = getContext().getTypeSize(T);
1903 }
1904
1905 // Format the type name as if for a diagnostic, including quotes and
1906 // optionally an 'aka'.
1907 llvm::SmallString<32> Buffer;
1908 CGM.getDiags().ConvertArgToString(DiagnosticsEngine::ak_qualtype,
1909 (intptr_t)T.getAsOpaquePtr(),
1910 0, 0, 0, 0, 0, 0, Buffer,
1911 ArrayRef<intptr_t>());
1912
1913 llvm::Constant *Components[] = {
Richard Smith683398a2012-10-09 23:55:19 +00001914 Builder.getInt16(TypeKind), Builder.getInt16(TypeInfo),
1915 llvm::ConstantDataArray::getString(getLLVMContext(), Buffer)
Richard Smithe30752c2012-10-09 19:52:38 +00001916 };
1917 llvm::Constant *Descriptor = llvm::ConstantStruct::getAnon(Components);
1918
1919 llvm::GlobalVariable *GV =
1920 new llvm::GlobalVariable(CGM.getModule(), Descriptor->getType(),
1921 /*isConstant=*/true,
1922 llvm::GlobalVariable::PrivateLinkage,
1923 Descriptor);
1924 GV->setUnnamedAddr(true);
1925 return GV;
1926}
1927
1928llvm::Value *CodeGenFunction::EmitCheckValue(llvm::Value *V) {
1929 llvm::Type *TargetTy = IntPtrTy;
1930
1931 // Integers which fit in intptr_t are zero-extended and passed directly.
1932 if (V->getType()->isIntegerTy() &&
1933 V->getType()->getIntegerBitWidth() <= TargetTy->getIntegerBitWidth())
1934 return Builder.CreateZExt(V, TargetTy);
1935
1936 // Pointers are passed directly, everything else is passed by address.
1937 if (!V->getType()->isPointerTy()) {
1938 llvm::Value *Ptr = Builder.CreateAlloca(V->getType());
1939 Builder.CreateStore(V, Ptr);
1940 V = Ptr;
1941 }
1942 return Builder.CreatePtrToInt(V, TargetTy);
1943}
1944
1945/// \brief Emit a representation of a SourceLocation for passing to a handler
1946/// in a sanitizer runtime library. The format for this data is:
1947/// \code
1948/// struct SourceLocation {
1949/// const char *Filename;
1950/// int32_t Line, Column;
1951/// };
1952/// \endcode
1953/// For an invalid SourceLocation, the Filename pointer is null.
1954llvm::Constant *CodeGenFunction::EmitCheckSourceLocation(SourceLocation Loc) {
1955 PresumedLoc PLoc = getContext().getSourceManager().getPresumedLoc(Loc);
1956
1957 llvm::Constant *Data[] = {
1958 // FIXME: Only emit each file name once.
1959 PLoc.isValid() ? cast<llvm::Constant>(
1960 Builder.CreateGlobalStringPtr(PLoc.getFilename()))
1961 : llvm::Constant::getNullValue(Int8PtrTy),
1962 Builder.getInt32(PLoc.getLine()),
1963 Builder.getInt32(PLoc.getColumn())
1964 };
1965
1966 return llvm::ConstantStruct::getAnon(Data);
1967}
1968
1969void CodeGenFunction::EmitCheck(llvm::Value *Checked, StringRef CheckName,
1970 llvm::ArrayRef<llvm::Constant *> StaticArgs,
Richard Smith4d3110a2012-10-25 02:14:12 +00001971 llvm::ArrayRef<llvm::Value *> DynamicArgs,
Will Dietz88e02332012-12-02 19:50:33 +00001972 CheckRecoverableKind RecoverKind) {
Richard Smith4d1458e2012-09-08 02:08:36 +00001973 llvm::BasicBlock *Cont = createBasicBlock("cont");
1974
Richard Smithe30752c2012-10-09 19:52:38 +00001975 llvm::BasicBlock *Handler = createBasicBlock("handler." + CheckName);
Will Dietzddd282a2012-12-15 01:39:14 +00001976
1977 llvm::Instruction *Branch = Builder.CreateCondBr(Checked, Cont, Handler);
1978
1979 // Give hint that we very much don't expect to execute the handler
1980 // Value chosen to match UR_NONTAKEN_WEIGHT, see BranchProbabilityInfo.cpp
1981 llvm::MDBuilder MDHelper(getLLVMContext());
1982 llvm::MDNode *Node = MDHelper.createBranchWeights((1U << 20) - 1, 1);
1983 Branch->setMetadata(llvm::LLVMContext::MD_prof, Node);
1984
Richard Smithe30752c2012-10-09 19:52:38 +00001985 EmitBlock(Handler);
1986
1987 llvm::Constant *Info = llvm::ConstantStruct::getAnon(StaticArgs);
1988 llvm::GlobalValue *InfoPtr =
1989 new llvm::GlobalVariable(CGM.getModule(), Info->getType(), true,
1990 llvm::GlobalVariable::PrivateLinkage, Info);
1991 InfoPtr->setUnnamedAddr(true);
1992
1993 llvm::SmallVector<llvm::Value *, 4> Args;
1994 llvm::SmallVector<llvm::Type *, 4> ArgTypes;
1995 Args.reserve(DynamicArgs.size() + 1);
1996 ArgTypes.reserve(DynamicArgs.size() + 1);
1997
1998 // Handler functions take an i8* pointing to the (handler-specific) static
1999 // information block, followed by a sequence of intptr_t arguments
2000 // representing operand values.
2001 Args.push_back(Builder.CreateBitCast(InfoPtr, Int8PtrTy));
2002 ArgTypes.push_back(Int8PtrTy);
2003 for (size_t i = 0, n = DynamicArgs.size(); i != n; ++i) {
2004 Args.push_back(EmitCheckValue(DynamicArgs[i]));
2005 ArgTypes.push_back(IntPtrTy);
2006 }
2007
Will Dietz88e02332012-12-02 19:50:33 +00002008 bool Recover = (RecoverKind == CRK_AlwaysRecoverable) ||
2009 ((RecoverKind == CRK_Recoverable) &&
2010 CGM.getCodeGenOpts().SanitizeRecover);
2011
Richard Smithe30752c2012-10-09 19:52:38 +00002012 llvm::FunctionType *FnType =
2013 llvm::FunctionType::get(CGM.VoidTy, ArgTypes, false);
Bill Wendlinga514ebc2012-10-15 20:36:26 +00002014 llvm::AttrBuilder B;
Will Dietz88e02332012-12-02 19:50:33 +00002015 if (!Recover) {
Richard Smith4d3110a2012-10-25 02:14:12 +00002016 B.addAttribute(llvm::Attributes::NoReturn)
2017 .addAttribute(llvm::Attributes::NoUnwind);
2018 }
2019 B.addAttribute(llvm::Attributes::UWTable);
Will Dietz88e02332012-12-02 19:50:33 +00002020
2021 // Checks that have two variants use a suffix to differentiate them
2022 bool NeedsAbortSuffix = (RecoverKind != CRK_Unrecoverable) &&
2023 !CGM.getCodeGenOpts().SanitizeRecover;
Richard Smith78f6b032012-12-03 22:39:14 +00002024 std::string FunctionName = ("__ubsan_handle_" + CheckName +
2025 (NeedsAbortSuffix? "_abort" : "")).str();
2026 llvm::Value *Fn =
2027 CGM.CreateRuntimeFunction(FnType, FunctionName,
2028 llvm::Attributes::get(getLLVMContext(), B));
Richard Smithe30752c2012-10-09 19:52:38 +00002029 llvm::CallInst *HandlerCall = Builder.CreateCall(Fn, Args);
Will Dietz88e02332012-12-02 19:50:33 +00002030 if (Recover) {
Richard Smith4d3110a2012-10-25 02:14:12 +00002031 Builder.CreateBr(Cont);
2032 } else {
2033 HandlerCall->setDoesNotReturn();
2034 HandlerCall->setDoesNotThrow();
2035 Builder.CreateUnreachable();
2036 }
Richard Smithe30752c2012-10-09 19:52:38 +00002037
Richard Smith4d1458e2012-09-08 02:08:36 +00002038 EmitBlock(Cont);
Mike Stumpd9546382009-12-12 01:27:46 +00002039}
2040
Richard Smithde670682012-11-01 22:15:34 +00002041void CodeGenFunction::EmitTrapvCheck(llvm::Value *Checked) {
2042 llvm::BasicBlock *Cont = createBasicBlock("cont");
2043
2044 // If we're optimizing, collapse all calls to trap down to just one per
2045 // function to save on code size.
2046 if (!CGM.getCodeGenOpts().OptimizationLevel || !TrapBB) {
2047 TrapBB = createBasicBlock("trap");
2048 Builder.CreateCondBr(Checked, Cont, TrapBB);
2049 EmitBlock(TrapBB);
2050 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::trap);
2051 llvm::CallInst *TrapCall = Builder.CreateCall(F);
2052 TrapCall->setDoesNotReturn();
2053 TrapCall->setDoesNotThrow();
2054 Builder.CreateUnreachable();
2055 } else {
2056 Builder.CreateCondBr(Checked, Cont, TrapBB);
2057 }
2058
2059 EmitBlock(Cont);
2060}
2061
Chris Lattner6c5abe82010-06-26 23:03:20 +00002062/// isSimpleArrayDecayOperand - If the specified expr is a simple decay from an
2063/// array to pointer, return the array subexpression.
2064static const Expr *isSimpleArrayDecayOperand(const Expr *E) {
2065 // If this isn't just an array->pointer decay, bail out.
2066 const CastExpr *CE = dyn_cast<CastExpr>(E);
John McCalle3027922010-08-25 11:45:40 +00002067 if (CE == 0 || CE->getCastKind() != CK_ArrayToPointerDecay)
Chris Lattner6c5abe82010-06-26 23:03:20 +00002068 return 0;
2069
2070 // If this is a decay from variable width array, bail out.
2071 const Expr *SubExpr = CE->getSubExpr();
2072 if (SubExpr->getType()->isVariableArrayType())
2073 return 0;
2074
2075 return SubExpr;
2076}
2077
Chris Lattnerd9d2fb12007-06-08 23:31:14 +00002078LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenekc81614d2007-08-20 16:18:38 +00002079 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner2da04b32007-08-24 05:35:26 +00002080 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Eli Friedman07bbeca2009-06-06 19:09:26 +00002081 QualType IdxTy = E->getIdx()->getType();
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00002082 bool IdxSigned = IdxTy->isSignedIntegerOrEnumerationType();
Eli Friedman07bbeca2009-06-06 19:09:26 +00002083
Chris Lattner08c4b9f2007-07-10 21:17:59 +00002084 // If the base is a vector type, then we are forming a vector element lvalue
2085 // with this subscript.
Eli Friedman327944b2008-06-13 23:01:12 +00002086 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner08c4b9f2007-07-10 21:17:59 +00002087 // Emit the vector as an lvalue to get its address.
Eli Friedman327944b2008-06-13 23:01:12 +00002088 LValue LHS = EmitLValue(E->getBase());
Ted Kremenekc81614d2007-08-20 16:18:38 +00002089 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
John McCallad7c5c12011-02-08 08:22:06 +00002090 Idx = Builder.CreateIntCast(Idx, Int32Ty, IdxSigned, "vidx");
Eli Friedman327944b2008-06-13 23:01:12 +00002091 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
Eli Friedman610bb872012-03-22 22:36:39 +00002092 E->getBase()->getType(), LHS.getAlignment());
Chris Lattner08c4b9f2007-07-10 21:17:59 +00002093 }
Mike Stump4a3999f2009-09-09 13:00:44 +00002094
Ted Kremenekc81614d2007-08-20 16:18:38 +00002095 // Extend or truncate the index type to 32 or 64-bits.
John McCalle3dc1702011-02-15 09:22:45 +00002096 if (Idx->getType() != IntPtrTy)
2097 Idx = Builder.CreateIntCast(Idx, IntPtrTy, IdxSigned, "idxprom");
Mike Stumpd9546382009-12-12 01:27:46 +00002098
Mike Stump4a3999f2009-09-09 13:00:44 +00002099 // We know that the pointer points to a type of the correct size, unless the
2100 // size is a VLA or Objective-C interface.
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +00002101 llvm::Value *Address = 0;
Eli Friedmana0544d62011-12-03 04:14:32 +00002102 CharUnits ArrayAlignment;
John McCall23c29fe2011-06-24 21:55:10 +00002103 if (const VariableArrayType *vla =
Anders Carlsson3d312f82008-12-21 00:11:23 +00002104 getContext().getAsVariableArrayType(E->getType())) {
John McCall23c29fe2011-06-24 21:55:10 +00002105 // The base must be a pointer, which is not an aggregate. Emit
2106 // it. It needs to be emitted first in case it's what captures
2107 // the VLA bounds.
2108 Address = EmitScalarExpr(E->getBase());
Mike Stump4a3999f2009-09-09 13:00:44 +00002109
John McCall23c29fe2011-06-24 21:55:10 +00002110 // The element count here is the total number of non-VLA elements.
2111 llvm::Value *numElements = getVLASize(vla).first;
Mike Stump4a3999f2009-09-09 13:00:44 +00002112
John McCall77527a82011-06-25 01:32:37 +00002113 // Effectively, the multiply by the VLA size is part of the GEP.
2114 // GEP indexes are signed, and scaling an index isn't permitted to
2115 // signed-overflow, so we use the same semantics for our explicit
2116 // multiply. We suppress this if overflow is not undefined behavior.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002117 if (getLangOpts().isSignedOverflowDefined()) {
John McCall77527a82011-06-25 01:32:37 +00002118 Idx = Builder.CreateMul(Idx, numElements);
Chris Lattner2e72da942011-03-01 00:03:48 +00002119 Address = Builder.CreateGEP(Address, Idx, "arrayidx");
John McCall77527a82011-06-25 01:32:37 +00002120 } else {
2121 Idx = Builder.CreateNSWMul(Idx, numElements);
Chris Lattner2e72da942011-03-01 00:03:48 +00002122 Address = Builder.CreateInBoundsGEP(Address, Idx, "arrayidx");
John McCall77527a82011-06-25 01:32:37 +00002123 }
Chris Lattner6c5abe82010-06-26 23:03:20 +00002124 } else if (const ObjCObjectType *OIT = E->getType()->getAs<ObjCObjectType>()){
2125 // Indexing over an interface, as in "NSString *P; P[4];"
Mike Stump4a3999f2009-09-09 13:00:44 +00002126 llvm::Value *InterfaceSize =
Owen Andersonb7a2fe62009-07-24 23:12:58 +00002127 llvm::ConstantInt::get(Idx->getType(),
Ken Dyck40775002010-01-11 17:06:35 +00002128 getContext().getTypeSizeInChars(OIT).getQuantity());
Mike Stump4a3999f2009-09-09 13:00:44 +00002129
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +00002130 Idx = Builder.CreateMul(Idx, InterfaceSize);
2131
Chris Lattner6c5abe82010-06-26 23:03:20 +00002132 // The base must be a pointer, which is not an aggregate. Emit it.
2133 llvm::Value *Base = EmitScalarExpr(E->getBase());
John McCallad7c5c12011-02-08 08:22:06 +00002134 Address = EmitCastToVoidPtr(Base);
2135 Address = Builder.CreateGEP(Address, Idx, "arrayidx");
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +00002136 Address = Builder.CreateBitCast(Address, Base->getType());
Chris Lattner6c5abe82010-06-26 23:03:20 +00002137 } else if (const Expr *Array = isSimpleArrayDecayOperand(E->getBase())) {
2138 // If this is A[i] where A is an array, the frontend will have decayed the
2139 // base to be a ArrayToPointerDecay implicit cast. While correct, it is
2140 // inefficient at -O0 to emit a "gep A, 0, 0" when codegen'ing it, then a
2141 // "gep x, i" here. Emit one "gep A, 0, i".
2142 assert(Array->getType()->isArrayType() &&
2143 "Array to pointer decay must have array source type!");
Daniel Dunbar82634272011-04-01 00:49:43 +00002144 LValue ArrayLV = EmitLValue(Array);
2145 llvm::Value *ArrayPtr = ArrayLV.getAddress();
Chris Lattner6c5abe82010-06-26 23:03:20 +00002146 llvm::Value *Zero = llvm::ConstantInt::get(Int32Ty, 0);
2147 llvm::Value *Args[] = { Zero, Idx };
2148
Daniel Dunbar82634272011-04-01 00:49:43 +00002149 // Propagate the alignment from the array itself to the result.
2150 ArrayAlignment = ArrayLV.getAlignment();
2151
Richard Smith9c6890a2012-11-01 22:30:59 +00002152 if (getLangOpts().isSignedOverflowDefined())
Jay Foad040dd822011-07-22 08:16:57 +00002153 Address = Builder.CreateGEP(ArrayPtr, Args, "arrayidx");
Chris Lattner2e72da942011-03-01 00:03:48 +00002154 else
Jay Foad040dd822011-07-22 08:16:57 +00002155 Address = Builder.CreateInBoundsGEP(ArrayPtr, Args, "arrayidx");
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +00002156 } else {
Chris Lattner6c5abe82010-06-26 23:03:20 +00002157 // The base must be a pointer, which is not an aggregate. Emit it.
2158 llvm::Value *Base = EmitScalarExpr(E->getBase());
Richard Smith9c6890a2012-11-01 22:30:59 +00002159 if (getLangOpts().isSignedOverflowDefined())
Chris Lattner2e72da942011-03-01 00:03:48 +00002160 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
2161 else
2162 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
Anders Carlsson3d312f82008-12-21 00:11:23 +00002163 }
Mike Stump4a3999f2009-09-09 13:00:44 +00002164
Steve Naroff7cae42b2009-07-10 23:34:53 +00002165 QualType T = E->getBase()->getType()->getPointeeType();
Mike Stump4a3999f2009-09-09 13:00:44 +00002166 assert(!T.isNull() &&
Steve Naroff7cae42b2009-07-10 23:34:53 +00002167 "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
Mike Stump4a3999f2009-09-09 13:00:44 +00002168
Chris Lattner36bc4f42012-01-04 22:35:55 +00002169
Daniel Dunbar82634272011-04-01 00:49:43 +00002170 // Limit the alignment to that of the result type.
Chris Lattner36bc4f42012-01-04 22:35:55 +00002171 LValue LV;
Eli Friedmana0544d62011-12-03 04:14:32 +00002172 if (!ArrayAlignment.isZero()) {
2173 CharUnits Align = getContext().getTypeAlignInChars(T);
Daniel Dunbar82634272011-04-01 00:49:43 +00002174 ArrayAlignment = std::min(Align, ArrayAlignment);
Chris Lattner36bc4f42012-01-04 22:35:55 +00002175 LV = MakeAddrLValue(Address, T, ArrayAlignment);
2176 } else {
2177 LV = MakeNaturalAlignAddrLValue(Address, T);
Daniel Dunbar82634272011-04-01 00:49:43 +00002178 }
2179
Daniel Dunbarf166a522010-08-21 03:44:13 +00002180 LV.getQuals().setAddressSpace(E->getBase()->getType().getAddressSpace());
John McCall8ccfcb52009-09-24 19:53:00 +00002181
Richard Smith9c6890a2012-11-01 22:30:59 +00002182 if (getLangOpts().ObjC1 &&
2183 getLangOpts().getGC() != LangOptions::NonGC) {
Daniel Dunbare50dda92010-08-21 03:22:38 +00002184 LV.setNonGC(!E->isOBJCGCCandidate(getContext()));
Fariborz Jahaniana7fa6be2009-09-16 21:37:16 +00002185 setObjCGCLValueClass(getContext(), E, LV);
2186 }
Fariborz Jahaniana9fecf32009-02-21 23:37:19 +00002187 return LV;
Chris Lattnerd9d2fb12007-06-08 23:31:14 +00002188}
2189
Mike Stump4a3999f2009-09-09 13:00:44 +00002190static
NAKAMURA Takumiccca11a2012-01-25 08:58:21 +00002191llvm::Constant *GenerateConstantVector(CGBuilderTy &Builder,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002192 SmallVector<unsigned, 4> &Elts) {
2193 SmallVector<llvm::Constant*, 4> CElts;
Nate Begemand3862152008-05-13 21:03:02 +00002194 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
Chris Lattner2d6b7b92012-01-25 05:34:41 +00002195 CElts.push_back(Builder.getInt32(Elts[i]));
Nate Begemand3862152008-05-13 21:03:02 +00002196
Chris Lattner91c08ad2011-02-15 00:14:06 +00002197 return llvm::ConstantVector::get(CElts);
Nate Begemand3862152008-05-13 21:03:02 +00002198}
2199
Chris Lattner9e751ca2007-08-02 23:37:31 +00002200LValue CodeGenFunction::
Nate Begemance4d7fc2008-04-18 23:10:10 +00002201EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner9e751ca2007-08-02 23:37:31 +00002202 // Emit the base vector as an l-value.
Chris Lattner6c7ce102009-02-16 21:11:58 +00002203 LValue Base;
2204
2205 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner4e1a3232009-12-23 21:31:11 +00002206 if (E->isArrow()) {
2207 // If it is a pointer to a vector, emit the address and form an lvalue with
2208 // it.
Chris Lattnerb8211f62009-02-16 22:14:05 +00002209 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
Chris Lattner4e1a3232009-12-23 21:31:11 +00002210 const PointerType *PT = E->getBase()->getType()->getAs<PointerType>();
Daniel Dunbarf166a522010-08-21 03:44:13 +00002211 Base = MakeAddrLValue(Ptr, PT->getPointeeType());
2212 Base.getQuals().removeObjCGCAttr();
John McCall086a4642010-11-24 05:12:34 +00002213 } else if (E->getBase()->isGLValue()) {
Chris Lattner4e1a3232009-12-23 21:31:11 +00002214 // Otherwise, if the base is an lvalue ( as in the case of foo.x.x),
2215 // emit the base as an lvalue.
2216 assert(E->getBase()->getType()->isVectorType());
2217 Base = EmitLValue(E->getBase());
2218 } else {
2219 // Otherwise, the base is a normal rvalue (as in (V+V).x), emit it as such.
John McCall1553b192011-06-16 04:16:24 +00002220 assert(E->getBase()->getType()->isVectorType() &&
Daniel Dunbar5b901952010-01-04 18:02:28 +00002221 "Result must be a vector");
Chris Lattner4e1a3232009-12-23 21:31:11 +00002222 llvm::Value *Vec = EmitScalarExpr(E->getBase());
2223
Chris Lattnerf0a9ba32009-12-23 21:33:41 +00002224 // Store the vector to memory (because LValue wants an address).
Daniel Dunbara7566f12010-02-09 02:48:28 +00002225 llvm::Value *VecMem = CreateMemTemp(E->getBase()->getType());
Chris Lattner4e1a3232009-12-23 21:31:11 +00002226 Builder.CreateStore(Vec, VecMem);
Daniel Dunbarf166a522010-08-21 03:44:13 +00002227 Base = MakeAddrLValue(VecMem, E->getBase()->getType());
Chris Lattner4e1a3232009-12-23 21:31:11 +00002228 }
John McCall1553b192011-06-16 04:16:24 +00002229
2230 QualType type =
2231 E->getType().withCVRQualifiers(Base.getQuals().getCVRQualifiers());
Chris Lattner4e1a3232009-12-23 21:31:11 +00002232
Nate Begemand3862152008-05-13 21:03:02 +00002233 // Encode the element access list into a vector of unsigned indices.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002234 SmallVector<unsigned, 4> Indices;
Nate Begemand3862152008-05-13 21:03:02 +00002235 E->getEncodedElementAccess(Indices);
2236
2237 if (Base.isSimple()) {
Chris Lattner2d6b7b92012-01-25 05:34:41 +00002238 llvm::Constant *CV = GenerateConstantVector(Builder, Indices);
Eli Friedman610bb872012-03-22 22:36:39 +00002239 return LValue::MakeExtVectorElt(Base.getAddress(), CV, type,
2240 Base.getAlignment());
Nate Begemand3862152008-05-13 21:03:02 +00002241 }
2242 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
2243
2244 llvm::Constant *BaseElts = Base.getExtVectorElts();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002245 SmallVector<llvm::Constant *, 4> CElts;
Nate Begemand3862152008-05-13 21:03:02 +00002246
Chris Lattner595ba3a2012-01-30 06:20:36 +00002247 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
2248 CElts.push_back(BaseElts->getAggregateElement(Indices[i]));
Chris Lattner91c08ad2011-02-15 00:14:06 +00002249 llvm::Constant *CV = llvm::ConstantVector::get(CElts);
Eli Friedman610bb872012-03-22 22:36:39 +00002250 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV, type,
2251 Base.getAlignment());
Chris Lattner9e751ca2007-08-02 23:37:31 +00002252}
2253
Devang Patel30efa2e2007-10-23 20:28:39 +00002254LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Pateld68df202007-10-24 22:26:28 +00002255 Expr *BaseExpr = E->getBase();
Eli Friedman327944b2008-06-13 23:01:12 +00002256
Chris Lattner4e4186b2007-12-02 18:52:07 +00002257 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Eli Friedman7f1ff602012-04-16 03:54:45 +00002258 LValue BaseLV;
Richard Smith69d0d262012-08-24 00:54:33 +00002259 if (E->isArrow()) {
2260 llvm::Value *Ptr = EmitScalarExpr(BaseExpr);
2261 QualType PtrTy = BaseExpr->getType()->getPointeeType();
Richard Smithe30752c2012-10-09 19:52:38 +00002262 EmitTypeCheck(TCK_MemberAccess, E->getExprLoc(), Ptr, PtrTy);
Richard Smith69d0d262012-08-24 00:54:33 +00002263 BaseLV = MakeNaturalAlignAddrLValue(Ptr, PtrTy);
2264 } else
Richard Smith4d1458e2012-09-08 02:08:36 +00002265 BaseLV = EmitCheckedLValue(BaseExpr, TCK_MemberAccess);
Devang Patel30efa2e2007-10-23 20:28:39 +00002266
Anders Carlssonea4c30b2009-11-07 23:06:58 +00002267 NamedDecl *ND = E->getMemberDecl();
2268 if (FieldDecl *Field = dyn_cast<FieldDecl>(ND)) {
Eli Friedman7f1ff602012-04-16 03:54:45 +00002269 LValue LV = EmitLValueForField(BaseLV, Field);
Anders Carlssonea4c30b2009-11-07 23:06:58 +00002270 setObjCGCLValueClass(getContext(), E, LV);
2271 return LV;
2272 }
2273
Anders Carlsson5bbdc9f2009-11-07 23:16:50 +00002274 if (VarDecl *VD = dyn_cast<VarDecl>(ND))
2275 return EmitGlobalVarDeclLValue(*this, E, VD);
Eli Friedmand15eb34d2009-11-26 06:08:14 +00002276
2277 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
2278 return EmitFunctionDeclLValue(*this, E, FD);
2279
David Blaikie83d382b2011-09-23 05:06:16 +00002280 llvm_unreachable("Unhandled member declaration!");
Eli Friedmana62f3e12008-02-09 08:50:58 +00002281}
Devang Patel30efa2e2007-10-23 20:28:39 +00002282
Eli Friedman7f1ff602012-04-16 03:54:45 +00002283LValue CodeGenFunction::EmitLValueForField(LValue base,
2284 const FieldDecl *field) {
Eli Friedmanc24e2fb2012-06-27 21:19:48 +00002285 if (field->isBitField()) {
2286 const CGRecordLayout &RL =
2287 CGM.getTypes().getCGRecordLayout(field->getParent());
2288 const CGBitFieldInfo &Info = RL.getBitFieldInfo(field);
Chandler Carruthff0e3a12012-12-06 11:14:44 +00002289 llvm::Value *Addr = base.getAddress();
2290 unsigned Idx = RL.getLLVMFieldNo(field);
2291 if (Idx != 0)
2292 // For structs, we GEP to the field that the record layout suggests.
2293 Addr = Builder.CreateStructGEP(Addr, Idx, field->getName());
2294 // Get the access type.
2295 llvm::Type *PtrTy = llvm::Type::getIntNPtrTy(
2296 getLLVMContext(), Info.StorageSize,
2297 CGM.getContext().getTargetAddressSpace(base.getType()));
2298 if (Addr->getType() != PtrTy)
2299 Addr = Builder.CreateBitCast(Addr, PtrTy);
2300
Eli Friedmanc24e2fb2012-06-27 21:19:48 +00002301 QualType fieldType =
2302 field->getType().withCVRQualifiers(base.getVRQualifiers());
Chandler Carruthff0e3a12012-12-06 11:14:44 +00002303 return LValue::MakeBitfield(Addr, Info, fieldType, base.getAlignment());
Eli Friedmanc24e2fb2012-06-27 21:19:48 +00002304 }
Mike Stump4a3999f2009-09-09 13:00:44 +00002305
John McCall53fcbd22011-02-26 08:07:02 +00002306 const RecordDecl *rec = field->getParent();
2307 QualType type = field->getType();
Eli Friedmana0544d62011-12-03 04:14:32 +00002308 CharUnits alignment = getContext().getDeclAlign(field);
Eli Friedman133e8042008-05-29 11:33:25 +00002309
Eli Friedman7f1ff602012-04-16 03:54:45 +00002310 // FIXME: It should be impossible to have an LValue without alignment for a
2311 // complete type.
2312 if (!base.getAlignment().isZero())
2313 alignment = std::min(alignment, base.getAlignment());
2314
John McCall53fcbd22011-02-26 08:07:02 +00002315 bool mayAlias = rec->hasAttr<MayAliasAttr>();
2316
Eli Friedman7f1ff602012-04-16 03:54:45 +00002317 llvm::Value *addr = base.getAddress();
2318 unsigned cvr = base.getVRQualifiers();
John McCall53fcbd22011-02-26 08:07:02 +00002319 if (rec->isUnion()) {
Chris Lattner13ee4f42011-07-10 05:34:54 +00002320 // For unions, there is no pointer adjustment.
John McCall53fcbd22011-02-26 08:07:02 +00002321 assert(!type->isReferenceType() && "union has reference member");
John McCall53fcbd22011-02-26 08:07:02 +00002322 } else {
2323 // For structs, we GEP to the field that the record layout suggests.
2324 unsigned idx = CGM.getTypes().getCGRecordLayout(rec).getLLVMFieldNo(field);
Chris Lattner13ee4f42011-07-10 05:34:54 +00002325 addr = Builder.CreateStructGEP(addr, idx, field->getName());
John McCall53fcbd22011-02-26 08:07:02 +00002326
2327 // If this is a reference field, load the reference right now.
2328 if (const ReferenceType *refType = type->getAs<ReferenceType>()) {
2329 llvm::LoadInst *load = Builder.CreateLoad(addr, "ref");
2330 if (cvr & Qualifiers::Volatile) load->setVolatile(true);
Eli Friedmana0544d62011-12-03 04:14:32 +00002331 load->setAlignment(alignment.getQuantity());
John McCall53fcbd22011-02-26 08:07:02 +00002332
2333 if (CGM.shouldUseTBAA()) {
2334 llvm::MDNode *tbaa;
2335 if (mayAlias)
2336 tbaa = CGM.getTBAAInfo(getContext().CharTy);
2337 else
2338 tbaa = CGM.getTBAAInfo(type);
2339 CGM.DecorateInstruction(load, tbaa);
2340 }
2341
2342 addr = load;
2343 mayAlias = false;
2344 type = refType->getPointeeType();
Eli Friedmand20adbd2011-11-16 00:42:57 +00002345 if (type->isIncompleteType())
Eli Friedmana0544d62011-12-03 04:14:32 +00002346 alignment = CharUnits();
Eli Friedmand20adbd2011-11-16 00:42:57 +00002347 else
Eli Friedmana0544d62011-12-03 04:14:32 +00002348 alignment = getContext().getTypeAlignInChars(type);
John McCall53fcbd22011-02-26 08:07:02 +00002349 cvr = 0; // qualifiers don't recursively apply to referencee
2350 }
Devang Pateled93c3c2007-10-26 19:42:18 +00002351 }
Chris Lattner13ee4f42011-07-10 05:34:54 +00002352
2353 // Make sure that the address is pointing to the right type. This is critical
2354 // for both unions and structs. A union needs a bitcast, a struct element
2355 // will need a bitcast if the LLVM type laid out doesn't match the desired
2356 // type.
Chandler Carruth4678f672011-07-12 08:58:26 +00002357 addr = EmitBitCastOfLValueToProperType(*this, addr,
Chris Lattner3f32d692011-07-12 06:52:18 +00002358 CGM.getTypes().ConvertTypeForMem(type),
2359 field->getName());
John McCall8ccfcb52009-09-24 19:53:00 +00002360
Julien Lerouge5a6b6982011-09-09 22:41:49 +00002361 if (field->hasAttr<AnnotateAttr>())
2362 addr = EmitFieldAnnotations(field, addr);
2363
John McCall53fcbd22011-02-26 08:07:02 +00002364 LValue LV = MakeAddrLValue(addr, type, alignment);
2365 LV.getQuals().addCVRQualifiers(cvr);
Daniel Dunbarf166a522010-08-21 03:44:13 +00002366
Fariborz Jahanian38c3ae92009-09-21 18:54:29 +00002367 // __weak attribute on a field is ignored.
Daniel Dunbarf166a522010-08-21 03:44:13 +00002368 if (LV.getQuals().getObjCGCAttr() == Qualifiers::Weak)
2369 LV.getQuals().removeObjCGCAttr();
John McCall53fcbd22011-02-26 08:07:02 +00002370
2371 // Fields of may_alias structs act like 'char' for TBAA purposes.
2372 // FIXME: this should get propagated down through anonymous structs
2373 // and unions.
2374 if (mayAlias && LV.getTBAAInfo())
2375 LV.setTBAAInfo(CGM.getTBAAInfo(getContext().CharTy));
2376
Daniel Dunbarf166a522010-08-21 03:44:13 +00002377 return LV;
Devang Patel30efa2e2007-10-23 20:28:39 +00002378}
2379
Anders Carlssondb78f0a2010-01-29 05:24:29 +00002380LValue
Eli Friedman7f1ff602012-04-16 03:54:45 +00002381CodeGenFunction::EmitLValueForFieldInitialization(LValue Base,
2382 const FieldDecl *Field) {
Anders Carlssondb78f0a2010-01-29 05:24:29 +00002383 QualType FieldType = Field->getType();
2384
2385 if (!FieldType->isReferenceType())
Eli Friedman7f1ff602012-04-16 03:54:45 +00002386 return EmitLValueForField(Base, Field);
Anders Carlssondb78f0a2010-01-29 05:24:29 +00002387
Daniel Dunbar034299e2010-03-31 01:09:11 +00002388 const CGRecordLayout &RL =
2389 CGM.getTypes().getCGRecordLayout(Field->getParent());
2390 unsigned idx = RL.getLLVMFieldNo(Field);
Eli Friedman7f1ff602012-04-16 03:54:45 +00002391 llvm::Value *V = Builder.CreateStructGEP(Base.getAddress(), idx);
Anders Carlssondb78f0a2010-01-29 05:24:29 +00002392 assert(!FieldType.getObjCGCAttr() && "fields cannot have GC attrs");
2393
Chris Lattnerd7c59352011-07-10 05:53:24 +00002394 // Make sure that the address is pointing to the right type. This is critical
2395 // for both unions and structs. A union needs a bitcast, a struct element
2396 // will need a bitcast if the LLVM type laid out doesn't match the desired
2397 // type.
Chris Lattner2192fe52011-07-18 04:24:23 +00002398 llvm::Type *llvmType = ConvertTypeForMem(FieldType);
Eli Friedman7f1ff602012-04-16 03:54:45 +00002399 V = EmitBitCastOfLValueToProperType(*this, V, llvmType, Field->getName());
2400
Eli Friedmana0544d62011-12-03 04:14:32 +00002401 CharUnits Alignment = getContext().getDeclAlign(Field);
Eli Friedman7f1ff602012-04-16 03:54:45 +00002402
2403 // FIXME: It should be impossible to have an LValue without alignment for a
2404 // complete type.
2405 if (!Base.getAlignment().isZero())
2406 Alignment = std::min(Alignment, Base.getAlignment());
2407
Daniel Dunbar5c816372010-08-21 04:20:22 +00002408 return MakeAddrLValue(V, FieldType, Alignment);
Anders Carlssondb78f0a2010-01-29 05:24:29 +00002409}
2410
Chris Lattnerf53c0962010-09-06 00:11:41 +00002411LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr *E){
Richard Smith2d988f02011-11-22 22:48:32 +00002412 if (E->isFileScope()) {
2413 llvm::Value *GlobalPtr = CGM.GetAddrOfConstantCompoundLiteral(E);
2414 return MakeAddrLValue(GlobalPtr, E->getType());
2415 }
Fariborz Jahanian5d53fcd2012-06-07 18:15:55 +00002416 if (E->getType()->isVariablyModifiedType())
2417 // make sure to emit the VLA size.
2418 EmitVariablyModifiedType(E->getType());
Fariborz Jahanianbbc5bbf2012-06-07 17:07:15 +00002419
Daniel Dunbar27bacaf2010-02-16 19:43:39 +00002420 llvm::Value *DeclPtr = CreateMemTemp(E->getType(), ".compoundliteral");
Chris Lattnerf53c0962010-09-06 00:11:41 +00002421 const Expr *InitExpr = E->getInitializer();
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002422 LValue Result = MakeAddrLValue(DeclPtr, E->getType());
Eli Friedman9fd8b682008-05-13 23:18:27 +00002423
Chad Rosier615ed1a2012-03-29 17:37:10 +00002424 EmitAnyExprToMem(InitExpr, DeclPtr, E->getType().getQualifiers(),
2425 /*Init*/ true);
Eli Friedman9fd8b682008-05-13 23:18:27 +00002426
2427 return Result;
2428}
2429
Richard Smithbb653bd2012-05-14 21:57:21 +00002430LValue CodeGenFunction::EmitInitListLValue(const InitListExpr *E) {
2431 if (!E->isGLValue())
2432 // Initializing an aggregate temporary in C++11: T{...}.
2433 return EmitAggExprToLValue(E);
2434
2435 // An lvalue initializer list must be initializing a reference.
2436 assert(E->getNumInits() == 1 && "reference init with multiple values");
2437 return EmitLValue(E->getInit(0));
2438}
2439
John McCallc07a0c72011-02-17 10:25:35 +00002440LValue CodeGenFunction::
2441EmitConditionalOperatorLValue(const AbstractConditionalOperator *expr) {
2442 if (!expr->isGLValue()) {
John McCall0a6bf2e2011-01-26 19:21:13 +00002443 // ?: here should be an aggregate.
John McCallc07a0c72011-02-17 10:25:35 +00002444 assert((hasAggregateLLVMType(expr->getType()) &&
2445 !expr->getType()->isAnyComplexType()) &&
John McCall0a6bf2e2011-01-26 19:21:13 +00002446 "Unexpected conditional operator!");
John McCallc07a0c72011-02-17 10:25:35 +00002447 return EmitAggExprToLValue(expr);
Anders Carlsson1450adb2009-09-15 16:35:24 +00002448 }
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +00002449
Eli Friedman59954892012-01-25 05:04:17 +00002450 OpaqueValueMapping binding(*this, expr);
2451
John McCallc07a0c72011-02-17 10:25:35 +00002452 const Expr *condExpr = expr->getCond();
Chris Lattner41c6ab52011-02-27 23:02:32 +00002453 bool CondExprBool;
2454 if (ConstantFoldsToSimpleInteger(condExpr, CondExprBool)) {
John McCallc07a0c72011-02-17 10:25:35 +00002455 const Expr *live = expr->getTrueExpr(), *dead = expr->getFalseExpr();
Chris Lattner41c6ab52011-02-27 23:02:32 +00002456 if (!CondExprBool) std::swap(live, dead);
John McCallc07a0c72011-02-17 10:25:35 +00002457
2458 if (!ContainsLabel(dead))
2459 return EmitLValue(live);
John McCall0a6bf2e2011-01-26 19:21:13 +00002460 }
2461
John McCallc07a0c72011-02-17 10:25:35 +00002462 llvm::BasicBlock *lhsBlock = createBasicBlock("cond.true");
2463 llvm::BasicBlock *rhsBlock = createBasicBlock("cond.false");
2464 llvm::BasicBlock *contBlock = createBasicBlock("cond.end");
John McCall0a6bf2e2011-01-26 19:21:13 +00002465
2466 ConditionalEvaluation eval(*this);
John McCallc07a0c72011-02-17 10:25:35 +00002467 EmitBranchOnBoolExpr(condExpr, lhsBlock, rhsBlock);
John McCall0a6bf2e2011-01-26 19:21:13 +00002468
2469 // Any temporaries created here are conditional.
John McCallc07a0c72011-02-17 10:25:35 +00002470 EmitBlock(lhsBlock);
John McCall0a6bf2e2011-01-26 19:21:13 +00002471 eval.begin(*this);
John McCallc07a0c72011-02-17 10:25:35 +00002472 LValue lhs = EmitLValue(expr->getTrueExpr());
John McCall0a6bf2e2011-01-26 19:21:13 +00002473 eval.end(*this);
2474
John McCallc07a0c72011-02-17 10:25:35 +00002475 if (!lhs.isSimple())
2476 return EmitUnsupportedLValue(expr, "conditional operator");
John McCall0a6bf2e2011-01-26 19:21:13 +00002477
John McCallc07a0c72011-02-17 10:25:35 +00002478 lhsBlock = Builder.GetInsertBlock();
2479 Builder.CreateBr(contBlock);
John McCall0a6bf2e2011-01-26 19:21:13 +00002480
2481 // Any temporaries created here are conditional.
John McCallc07a0c72011-02-17 10:25:35 +00002482 EmitBlock(rhsBlock);
John McCall0a6bf2e2011-01-26 19:21:13 +00002483 eval.begin(*this);
John McCallc07a0c72011-02-17 10:25:35 +00002484 LValue rhs = EmitLValue(expr->getFalseExpr());
John McCall0a6bf2e2011-01-26 19:21:13 +00002485 eval.end(*this);
John McCallc07a0c72011-02-17 10:25:35 +00002486 if (!rhs.isSimple())
2487 return EmitUnsupportedLValue(expr, "conditional operator");
2488 rhsBlock = Builder.GetInsertBlock();
John McCall0a6bf2e2011-01-26 19:21:13 +00002489
John McCallc07a0c72011-02-17 10:25:35 +00002490 EmitBlock(contBlock);
John McCall0a6bf2e2011-01-26 19:21:13 +00002491
Jay Foad20c0f022011-03-30 11:28:58 +00002492 llvm::PHINode *phi = Builder.CreatePHI(lhs.getAddress()->getType(), 2,
John McCall0a6bf2e2011-01-26 19:21:13 +00002493 "cond-lvalue");
John McCallc07a0c72011-02-17 10:25:35 +00002494 phi->addIncoming(lhs.getAddress(), lhsBlock);
2495 phi->addIncoming(rhs.getAddress(), rhsBlock);
2496 return MakeAddrLValue(phi, expr->getType());
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +00002497}
2498
Richard Smithbb653bd2012-05-14 21:57:21 +00002499/// EmitCastLValue - Casts are never lvalues unless that cast is to a reference
2500/// type. If the cast is to a reference, we can have the usual lvalue result,
Mike Stump65511702009-11-16 06:50:58 +00002501/// otherwise if a cast is needed by the code generator in an lvalue context,
2502/// then it must mean that we need the address of an aggregate in order to
Richard Smithbb653bd2012-05-14 21:57:21 +00002503/// access one of its members. This can happen for all the reasons that casts
Mike Stump65511702009-11-16 06:50:58 +00002504/// are permitted with aggregate result, including noop aggregate casts, and
2505/// cast from scalar to union.
Chris Lattner28bcf1a2009-03-18 18:28:57 +00002506LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
Anders Carlssond95f9602009-09-12 16:16:49 +00002507 switch (E->getCastKind()) {
John McCalle3027922010-08-25 11:45:40 +00002508 case CK_ToVoid:
Eli Friedman8c98dff2009-11-16 05:48:01 +00002509 return EmitUnsupportedLValue(E, "unexpected cast lvalue");
John McCall8cb679e2010-11-15 09:13:47 +00002510
2511 case CK_Dependent:
2512 llvm_unreachable("dependent cast kind in IR gen!");
Eli Friedman34866c72012-08-31 00:14:07 +00002513
2514 case CK_BuiltinFnToFnPtr:
2515 llvm_unreachable("builtin functions are handled elsewhere");
2516
David Chisnallfa35df62012-01-16 17:27:18 +00002517 // These two casts are currently treated as no-ops, although they could
2518 // potentially be real operations depending on the target's ABI.
2519 case CK_NonAtomicToAtomic:
2520 case CK_AtomicToNonAtomic:
John McCall8cb679e2010-11-15 09:13:47 +00002521
John McCalle3027922010-08-25 11:45:40 +00002522 case CK_NoOp:
Douglas Gregor21d3fca2011-01-27 23:22:05 +00002523 case CK_LValueToRValue:
2524 if (!E->getSubExpr()->Classify(getContext()).isPRValue()
2525 || E->getType()->isRecordType())
John McCalle26a8722010-12-04 08:14:53 +00002526 return EmitLValue(E->getSubExpr());
Douglas Gregorcdb466e2010-07-15 18:58:16 +00002527 // Fall through to synthesize a temporary.
John McCall8cb679e2010-11-15 09:13:47 +00002528
John McCalle3027922010-08-25 11:45:40 +00002529 case CK_BitCast:
2530 case CK_ArrayToPointerDecay:
2531 case CK_FunctionToPointerDecay:
2532 case CK_NullToMemberPointer:
John McCalle84af4e2010-11-13 01:35:44 +00002533 case CK_NullToPointer:
John McCalle3027922010-08-25 11:45:40 +00002534 case CK_IntegralToPointer:
2535 case CK_PointerToIntegral:
John McCall8cb679e2010-11-15 09:13:47 +00002536 case CK_PointerToBoolean:
John McCalle3027922010-08-25 11:45:40 +00002537 case CK_VectorSplat:
2538 case CK_IntegralCast:
John McCall8cb679e2010-11-15 09:13:47 +00002539 case CK_IntegralToBoolean:
John McCalle3027922010-08-25 11:45:40 +00002540 case CK_IntegralToFloating:
2541 case CK_FloatingToIntegral:
John McCall8cb679e2010-11-15 09:13:47 +00002542 case CK_FloatingToBoolean:
John McCalle3027922010-08-25 11:45:40 +00002543 case CK_FloatingCast:
John McCallc5e62b42010-11-13 09:02:35 +00002544 case CK_FloatingRealToComplex:
John McCalld7646252010-11-14 08:17:51 +00002545 case CK_FloatingComplexToReal:
2546 case CK_FloatingComplexToBoolean:
John McCallc5e62b42010-11-13 09:02:35 +00002547 case CK_FloatingComplexCast:
John McCalld7646252010-11-14 08:17:51 +00002548 case CK_FloatingComplexToIntegralComplex:
John McCallc5e62b42010-11-13 09:02:35 +00002549 case CK_IntegralRealToComplex:
John McCalld7646252010-11-14 08:17:51 +00002550 case CK_IntegralComplexToReal:
2551 case CK_IntegralComplexToBoolean:
John McCallc5e62b42010-11-13 09:02:35 +00002552 case CK_IntegralComplexCast:
John McCalld7646252010-11-14 08:17:51 +00002553 case CK_IntegralComplexToFloatingComplex:
John McCalle3027922010-08-25 11:45:40 +00002554 case CK_DerivedToBaseMemberPointer:
2555 case CK_BaseToDerivedMemberPointer:
2556 case CK_MemberPointerToBoolean:
John McCallc62bb392012-02-15 01:22:51 +00002557 case CK_ReinterpretMemberPointer:
John McCall31168b02011-06-15 23:02:42 +00002558 case CK_AnyPointerToBlockPointerCast:
John McCall2d637d22011-09-10 06:18:15 +00002559 case CK_ARCProduceObject:
2560 case CK_ARCConsumeObject:
2561 case CK_ARCReclaimReturnedObject:
Douglas Gregored90df32012-02-22 05:02:47 +00002562 case CK_ARCExtendBlockObject:
2563 case CK_CopyAndAutoreleaseBlockObject: {
Douglas Gregorcdb466e2010-07-15 18:58:16 +00002564 // These casts only produce lvalues when we're binding a reference to a
2565 // temporary realized from a (converted) pure rvalue. Emit the expression
2566 // as a value, copy it into a temporary, and return an lvalue referring to
2567 // that temporary.
2568 llvm::Value *V = CreateMemTemp(E->getType(), "ref.temp");
Chad Rosier615ed1a2012-03-29 17:37:10 +00002569 EmitAnyExprToMem(E, V, E->getType().getQualifiers(), false);
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002570 return MakeAddrLValue(V, E->getType());
Douglas Gregorcdb466e2010-07-15 18:58:16 +00002571 }
Eli Friedman8c98dff2009-11-16 05:48:01 +00002572
Anders Carlsson8a01a752011-04-11 02:03:26 +00002573 case CK_Dynamic: {
Mike Stump65511702009-11-16 06:50:58 +00002574 LValue LV = EmitLValue(E->getSubExpr());
2575 llvm::Value *V = LV.getAddress();
2576 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(E);
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002577 return MakeAddrLValue(EmitDynamicCast(V, DCE), E->getType());
Mike Stump65511702009-11-16 06:50:58 +00002578 }
2579
John McCalle3027922010-08-25 11:45:40 +00002580 case CK_ConstructorConversion:
2581 case CK_UserDefinedConversion:
John McCall9320b872011-09-09 05:25:32 +00002582 case CK_CPointerToObjCPointerCast:
2583 case CK_BlockPointerToObjCPointerCast:
Chris Lattner28bcf1a2009-03-18 18:28:57 +00002584 return EmitLValue(E->getSubExpr());
Anders Carlssond95f9602009-09-12 16:16:49 +00002585
John McCalle3027922010-08-25 11:45:40 +00002586 case CK_UncheckedDerivedToBase:
2587 case CK_DerivedToBase: {
Anders Carlssond95f9602009-09-12 16:16:49 +00002588 const RecordType *DerivedClassTy =
2589 E->getSubExpr()->getType()->getAs<RecordType>();
2590 CXXRecordDecl *DerivedClassDecl =
2591 cast<CXXRecordDecl>(DerivedClassTy->getDecl());
Anders Carlssond95f9602009-09-12 16:16:49 +00002592
2593 LValue LV = EmitLValue(E->getSubExpr());
John McCalle26a8722010-12-04 08:14:53 +00002594 llvm::Value *This = LV.getAddress();
Anders Carlssond95f9602009-09-12 16:16:49 +00002595
2596 // Perform the derived-to-base conversion
2597 llvm::Value *Base =
Fariborz Jahanian64cda8b2010-06-17 23:00:29 +00002598 GetAddressOfBaseClass(This, DerivedClassDecl,
John McCallcf142162010-08-07 06:22:56 +00002599 E->path_begin(), E->path_end(),
2600 /*NullCheckValue=*/false);
Anders Carlssond95f9602009-09-12 16:16:49 +00002601
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002602 return MakeAddrLValue(Base, E->getType());
Anders Carlssond95f9602009-09-12 16:16:49 +00002603 }
John McCalle3027922010-08-25 11:45:40 +00002604 case CK_ToUnion:
Daniel Dunbar9c4e4652010-02-05 20:02:42 +00002605 return EmitAggExprToLValue(E);
John McCalle3027922010-08-25 11:45:40 +00002606 case CK_BaseToDerived: {
Anders Carlsson8c793172009-11-23 17:57:54 +00002607 const RecordType *DerivedClassTy = E->getType()->getAs<RecordType>();
2608 CXXRecordDecl *DerivedClassDecl =
2609 cast<CXXRecordDecl>(DerivedClassTy->getDecl());
2610
2611 LValue LV = EmitLValue(E->getSubExpr());
2612
2613 // Perform the base-to-derived conversion
2614 llvm::Value *Derived =
Anders Carlsson8a64c1c2010-04-24 21:23:59 +00002615 GetAddressOfDerivedClass(LV.getAddress(), DerivedClassDecl,
John McCallcf142162010-08-07 06:22:56 +00002616 E->path_begin(), E->path_end(),
2617 /*NullCheckValue=*/false);
Anders Carlsson8c793172009-11-23 17:57:54 +00002618
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002619 return MakeAddrLValue(Derived, E->getType());
Eli Friedman8c98dff2009-11-16 05:48:01 +00002620 }
John McCalle3027922010-08-25 11:45:40 +00002621 case CK_LValueBitCast: {
Eli Friedman8c98dff2009-11-16 05:48:01 +00002622 // This must be a reinterpret_cast (or c-style equivalent).
2623 const ExplicitCastExpr *CE = cast<ExplicitCastExpr>(E);
Anders Carlsson50cb3212009-11-14 21:21:42 +00002624
2625 LValue LV = EmitLValue(E->getSubExpr());
2626 llvm::Value *V = Builder.CreateBitCast(LV.getAddress(),
2627 ConvertType(CE->getTypeAsWritten()));
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002628 return MakeAddrLValue(V, E->getType());
Anders Carlsson50cb3212009-11-14 21:21:42 +00002629 }
John McCalle3027922010-08-25 11:45:40 +00002630 case CK_ObjCObjectLValueCast: {
Douglas Gregor8b2d2fe2010-08-07 11:51:51 +00002631 LValue LV = EmitLValue(E->getSubExpr());
2632 QualType ToType = getContext().getLValueReferenceType(E->getType());
2633 llvm::Value *V = Builder.CreateBitCast(LV.getAddress(),
2634 ConvertType(ToType));
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002635 return MakeAddrLValue(V, E->getType());
Douglas Gregor8b2d2fe2010-08-07 11:51:51 +00002636 }
Anders Carlssond95f9602009-09-12 16:16:49 +00002637 }
Douglas Gregorcdb466e2010-07-15 18:58:16 +00002638
2639 llvm_unreachable("Unhandled lvalue cast kind?");
Chris Lattner28bcf1a2009-03-18 18:28:57 +00002640}
2641
Fariborz Jahaniane4d94ce2009-10-20 23:29:04 +00002642LValue CodeGenFunction::EmitNullInitializationLValue(
Douglas Gregor747eb782010-07-08 06:14:04 +00002643 const CXXScalarValueInitExpr *E) {
Fariborz Jahaniane4d94ce2009-10-20 23:29:04 +00002644 QualType Ty = E->getType();
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002645 LValue LV = MakeAddrLValue(CreateMemTemp(Ty), Ty);
Anders Carlssonc0964b62010-05-22 17:35:42 +00002646 EmitNullInitialization(LV.getAddress(), Ty);
Daniel Dunbara7566f12010-02-09 02:48:28 +00002647 return LV;
Fariborz Jahaniane4d94ce2009-10-20 23:29:04 +00002648}
2649
John McCall1bf58462011-02-16 08:02:54 +00002650LValue CodeGenFunction::EmitOpaqueValueLValue(const OpaqueValueExpr *e) {
John McCall9a549612011-11-08 22:54:08 +00002651 assert(OpaqueValueMappingData::shouldBindAsLValue(e));
John McCallc07a0c72011-02-17 10:25:35 +00002652 return getOpaqueLValueMapping(e);
John McCall1bf58462011-02-16 08:02:54 +00002653}
2654
Douglas Gregorfe314812011-06-21 17:03:29 +00002655LValue CodeGenFunction::EmitMaterializeTemporaryExpr(
2656 const MaterializeTemporaryExpr *E) {
John McCall17054bd62011-08-26 21:08:13 +00002657 RValue RV = EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
Douglas Gregord410c082011-06-21 18:20:46 +00002658 return MakeAddrLValue(RV.getScalarVal(), E->getType());
Douglas Gregorfe314812011-06-21 17:03:29 +00002659}
2660
Eli Friedman7f1ff602012-04-16 03:54:45 +00002661RValue CodeGenFunction::EmitRValueForField(LValue LV,
Anton Korobeynikov4215ca72012-04-13 11:22:00 +00002662 const FieldDecl *FD) {
2663 QualType FT = FD->getType();
Eli Friedman7f1ff602012-04-16 03:54:45 +00002664 LValue FieldLV = EmitLValueForField(LV, FD);
Anton Korobeynikov4215ca72012-04-13 11:22:00 +00002665 if (FT->isAnyComplexType())
Eli Friedman7f1ff602012-04-16 03:54:45 +00002666 return RValue::getComplex(
2667 LoadComplexFromAddr(FieldLV.getAddress(),
2668 FieldLV.isVolatileQualified()));
Anton Korobeynikov4215ca72012-04-13 11:22:00 +00002669 else if (CodeGenFunction::hasAggregateLLVMType(FT))
Eli Friedman7f1ff602012-04-16 03:54:45 +00002670 return FieldLV.asAggregateRValue();
Anton Korobeynikov4215ca72012-04-13 11:22:00 +00002671
Eli Friedman7f1ff602012-04-16 03:54:45 +00002672 return EmitLoadOfLValue(FieldLV);
Anton Korobeynikov4215ca72012-04-13 11:22:00 +00002673}
Douglas Gregorfe314812011-06-21 17:03:29 +00002674
Chris Lattnere47e4402007-06-01 18:02:12 +00002675//===--------------------------------------------------------------------===//
2676// Expression Emission
2677//===--------------------------------------------------------------------===//
2678
Anders Carlsson17490832009-12-24 20:40:36 +00002679RValue CodeGenFunction::EmitCallExpr(const CallExpr *E,
2680 ReturnValueSlot ReturnValue) {
Eric Christopher7cdf9482011-10-13 21:45:18 +00002681 if (CGDebugInfo *DI = getDebugInfo())
2682 DI->EmitLocation(Builder, E->getLocStart());
Devang Pateld3a6b0f2011-03-04 18:54:42 +00002683
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00002684 // Builtins never have block type.
Daniel Dunbarbb197e42009-01-09 16:50:52 +00002685 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonbfb36712009-12-24 21:13:40 +00002686 return EmitBlockCallExpr(E, ReturnValue);
Daniel Dunbarbb197e42009-01-09 16:50:52 +00002687
Anders Carlssone5fd6f22009-04-03 22:50:24 +00002688 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
Anders Carlssonbfb36712009-12-24 21:13:40 +00002689 return EmitCXXMemberCallExpr(CE, ReturnValue);
Mike Stump4a3999f2009-09-09 13:00:44 +00002690
Peter Collingbournefe883422011-10-06 18:29:37 +00002691 if (const CUDAKernelCallExpr *CE = dyn_cast<CUDAKernelCallExpr>(E))
2692 return EmitCUDAKernelCallExpr(CE, ReturnValue);
2693
Douglas Gregore0e96302011-09-06 21:41:04 +00002694 const Decl *TargetDecl = E->getCalleeDecl();
2695 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(TargetDecl)) {
2696 if (unsigned builtinID = FD->getBuiltinID())
2697 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00002698 }
2699
Chris Lattner4ca97c32009-06-13 00:26:38 +00002700 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
Anders Carlsson4034a952009-05-27 04:18:27 +00002701 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
Anders Carlssonbfb36712009-12-24 21:13:40 +00002702 return EmitCXXOperatorMemberCallExpr(CE, MD, ReturnValue);
Mike Stump4a3999f2009-09-09 13:00:44 +00002703
John McCall31168b02011-06-15 23:02:42 +00002704 if (const CXXPseudoDestructorExpr *PseudoDtor
2705 = dyn_cast<CXXPseudoDestructorExpr>(E->getCallee()->IgnoreParens())) {
2706 QualType DestroyedType = PseudoDtor->getDestroyedType();
Richard Smith9c6890a2012-11-01 22:30:59 +00002707 if (getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00002708 DestroyedType->isObjCLifetimeType() &&
2709 (DestroyedType.getObjCLifetime() == Qualifiers::OCL_Strong ||
2710 DestroyedType.getObjCLifetime() == Qualifiers::OCL_Weak)) {
Benjamin Kramerdd19c012011-06-18 10:34:00 +00002711 // Automatic Reference Counting:
2712 // If the pseudo-expression names a retainable object with weak or
2713 // strong lifetime, the object shall be released.
John McCall31168b02011-06-15 23:02:42 +00002714 Expr *BaseExpr = PseudoDtor->getBase();
2715 llvm::Value *BaseValue = NULL;
2716 Qualifiers BaseQuals;
2717
Benjamin Kramerdd19c012011-06-18 10:34:00 +00002718 // 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 +00002719 if (PseudoDtor->isArrow()) {
2720 BaseValue = EmitScalarExpr(BaseExpr);
2721 const PointerType *PTy = BaseExpr->getType()->getAs<PointerType>();
2722 BaseQuals = PTy->getPointeeType().getQualifiers();
2723 } else {
2724 LValue BaseLV = EmitLValue(BaseExpr);
John McCall31168b02011-06-15 23:02:42 +00002725 BaseValue = BaseLV.getAddress();
2726 QualType BaseTy = BaseExpr->getType();
2727 BaseQuals = BaseTy.getQualifiers();
2728 }
2729
2730 switch (PseudoDtor->getDestroyedType().getObjCLifetime()) {
2731 case Qualifiers::OCL_None:
2732 case Qualifiers::OCL_ExplicitNone:
2733 case Qualifiers::OCL_Autoreleasing:
2734 break;
2735
2736 case Qualifiers::OCL_Strong:
2737 EmitARCRelease(Builder.CreateLoad(BaseValue,
Benjamin Kramerdd19c012011-06-18 10:34:00 +00002738 PseudoDtor->getDestroyedType().isVolatileQualified()),
John McCall31168b02011-06-15 23:02:42 +00002739 /*precise*/ true);
2740 break;
2741
2742 case Qualifiers::OCL_Weak:
2743 EmitARCDestroyWeak(BaseValue);
2744 break;
2745 }
2746 } else {
2747 // C++ [expr.pseudo]p1:
2748 // The result shall only be used as the operand for the function call
2749 // operator (), and the result of such a call has type void. The only
2750 // effect is the evaluation of the postfix-expression before the dot or
2751 // arrow.
2752 EmitScalarExpr(E->getCallee());
2753 }
2754
Douglas Gregorad8a3362009-09-04 17:36:40 +00002755 return RValue::get(0);
2756 }
Mike Stump4a3999f2009-09-09 13:00:44 +00002757
Chris Lattner2da04b32007-08-24 05:35:26 +00002758 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Anders Carlsson17490832009-12-24 20:40:36 +00002759 return EmitCall(E->getCallee()->getType(), Callee, ReturnValue,
Anders Carlsson3a9463b2009-05-27 01:22:39 +00002760 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattner9e47ead2007-08-31 04:44:06 +00002761}
2762
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00002763LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattnere541ea32009-05-12 21:28:12 +00002764 // Comma expressions just emit their LHS then their RHS as an l-value.
John McCalle3027922010-08-25 11:45:40 +00002765 if (E->getOpcode() == BO_Comma) {
John McCalla2342eb2010-12-05 02:00:02 +00002766 EmitIgnoredExpr(E->getLHS());
Eli Friedman5445f6e2009-12-07 20:18:11 +00002767 EnsureInsertPoint();
Chris Lattnere541ea32009-05-12 21:28:12 +00002768 return EmitLValue(E->getRHS());
2769 }
Mike Stump4a3999f2009-09-09 13:00:44 +00002770
John McCalle3027922010-08-25 11:45:40 +00002771 if (E->getOpcode() == BO_PtrMemD ||
2772 E->getOpcode() == BO_PtrMemI)
Fariborz Jahanianffba6622009-10-22 22:57:31 +00002773 return EmitPointerToDataMemberBinaryExpr(E);
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00002774
John McCalla2342eb2010-12-05 02:00:02 +00002775 assert(E->getOpcode() == BO_Assign && "unexpected binary l-value");
John McCall31168b02011-06-15 23:02:42 +00002776
2777 // Note that in all of these cases, __block variables need the RHS
2778 // evaluated first just in case the variable gets moved by the RHS.
John McCall4f29b492010-11-16 23:07:28 +00002779
Anders Carlsson0999aaf2009-10-19 18:28:22 +00002780 if (!hasAggregateLLVMType(E->getType())) {
John McCall31168b02011-06-15 23:02:42 +00002781 switch (E->getLHS()->getType().getObjCLifetime()) {
2782 case Qualifiers::OCL_Strong:
2783 return EmitARCStoreStrong(E, /*ignored*/ false).first;
2784
2785 case Qualifiers::OCL_Autoreleasing:
2786 return EmitARCStoreAutoreleasing(E).first;
2787
2788 // No reason to do any of these differently.
2789 case Qualifiers::OCL_None:
2790 case Qualifiers::OCL_ExplicitNone:
2791 case Qualifiers::OCL_Weak:
2792 break;
2793 }
2794
John McCalld0a30012010-12-06 06:10:02 +00002795 RValue RV = EmitAnyExpr(E->getRHS());
Richard Smithe30752c2012-10-09 19:52:38 +00002796 LValue LV = EmitCheckedLValue(E->getLHS(), TCK_Store);
John McCall55e1fbc2011-06-25 02:11:03 +00002797 EmitStoreThroughLValue(RV, LV);
Anders Carlsson0999aaf2009-10-19 18:28:22 +00002798 return LV;
2799 }
John McCall4f29b492010-11-16 23:07:28 +00002800
2801 if (E->getType()->isAnyComplexType())
2802 return EmitComplexAssignmentLValue(E);
2803
Daniel Dunbard0bc7b92010-02-05 19:38:31 +00002804 return EmitAggExprToLValue(E);
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00002805}
2806
Christopher Lambd91c3d42007-12-29 05:02:41 +00002807LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
Christopher Lambd91c3d42007-12-29 05:02:41 +00002808 RValue RV = EmitCallExpr(E);
Anders Carlsson4ae70ff2009-05-27 01:45:47 +00002809
Chris Lattnerab5e0af2009-10-28 17:39:19 +00002810 if (!RV.isScalar())
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002811 return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
Chris Lattnerab5e0af2009-10-28 17:39:19 +00002812
2813 assert(E->getCallReturnType()->isReferenceType() &&
2814 "Can't have a scalar return unless the return type is a "
2815 "reference type!");
Mike Stump4a3999f2009-09-09 13:00:44 +00002816
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002817 return MakeAddrLValue(RV.getScalarVal(), E->getType());
Christopher Lambd91c3d42007-12-29 05:02:41 +00002818}
2819
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +00002820LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
2821 // FIXME: This shouldn't require another copy.
Daniel Dunbard0bc7b92010-02-05 19:38:31 +00002822 return EmitAggExprToLValue(E);
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +00002823}
2824
Anders Carlsson3be22e22009-05-30 23:23:33 +00002825LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
John McCall8ea46b62010-09-18 00:58:34 +00002826 assert(E->getType()->getAsCXXRecordDecl()->hasTrivialDestructor()
2827 && "binding l-value to type which needs a temporary");
Benjamin Kramer76399eb2011-09-27 21:06:10 +00002828 AggValueSlot Slot = CreateAggTemp(E->getType());
John McCall7a626f62010-09-15 10:14:12 +00002829 EmitCXXConstructExpr(E, Slot);
2830 return MakeAddrLValue(Slot.getAddr(), E->getType());
Anders Carlsson3be22e22009-05-30 23:23:33 +00002831}
2832
Anders Carlssonfd2af0c2009-05-30 23:30:54 +00002833LValue
Mike Stumpc9b231c2009-11-15 08:09:41 +00002834CodeGenFunction::EmitCXXTypeidLValue(const CXXTypeidExpr *E) {
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002835 return MakeAddrLValue(EmitCXXTypeidExpr(E), E->getType());
Mike Stumpc9b231c2009-11-15 08:09:41 +00002836}
2837
Nico Webercf4ff5862012-10-11 10:13:44 +00002838llvm::Value *CodeGenFunction::EmitCXXUuidofExpr(const CXXUuidofExpr *E) {
2839 return CGM.GetAddrOfUuidDescriptor(E);
2840}
2841
2842LValue CodeGenFunction::EmitCXXUuidofLValue(const CXXUuidofExpr *E) {
2843 return MakeAddrLValue(EmitCXXUuidofExpr(E), E->getType());
2844}
2845
Mike Stumpc9b231c2009-11-15 08:09:41 +00002846LValue
Anders Carlssonfd2af0c2009-05-30 23:30:54 +00002847CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
John McCall8ea46b62010-09-18 00:58:34 +00002848 AggValueSlot Slot = CreateAggTemp(E->getType(), "temp.lvalue");
John McCallcac93852011-08-26 08:02:37 +00002849 Slot.setExternallyDestructed();
John McCall8ea46b62010-09-18 00:58:34 +00002850 EmitAggExpr(E->getSubExpr(), Slot);
Peter Collingbourne702b2842011-11-27 22:09:22 +00002851 EmitCXXTemporary(E->getTemporary(), E->getType(), Slot.getAddr());
John McCall8ea46b62010-09-18 00:58:34 +00002852 return MakeAddrLValue(Slot.getAddr(), E->getType());
Anders Carlssonfd2af0c2009-05-30 23:30:54 +00002853}
2854
Eli Friedman5bc17122012-02-08 05:34:55 +00002855LValue
2856CodeGenFunction::EmitLambdaLValue(const LambdaExpr *E) {
Eli Friedman5bc17122012-02-08 05:34:55 +00002857 AggValueSlot Slot = CreateAggTemp(E->getType(), "temp.lvalue");
Eli Friedmanc370a7e2012-02-09 03:32:31 +00002858 EmitLambdaExpr(E, Slot);
Eli Friedman5bc17122012-02-08 05:34:55 +00002859 return MakeAddrLValue(Slot.getAddr(), E->getType());
2860}
2861
Daniel Dunbarc8317a42008-08-23 10:51:21 +00002862LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
Daniel Dunbarc8317a42008-08-23 10:51:21 +00002863 RValue RV = EmitObjCMessageExpr(E);
Anders Carlsson280e61f12010-06-21 20:59:55 +00002864
2865 if (!RV.isScalar())
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002866 return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
Anders Carlsson280e61f12010-06-21 20:59:55 +00002867
2868 assert(E->getMethodDecl()->getResultType()->isReferenceType() &&
2869 "Can't have a scalar return unless the return type is a "
2870 "reference type!");
2871
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002872 return MakeAddrLValue(RV.getScalarVal(), E->getType());
Daniel Dunbarc8317a42008-08-23 10:51:21 +00002873}
2874
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00002875LValue CodeGenFunction::EmitObjCSelectorLValue(const ObjCSelectorExpr *E) {
2876 llvm::Value *V =
2877 CGM.getObjCRuntime().GetSelector(Builder, E->getSelector(), true);
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002878 return MakeAddrLValue(V, E->getType());
Fariborz Jahanian9240f3d2010-06-17 19:56:20 +00002879}
2880
Daniel Dunbar722f4242009-04-22 05:08:15 +00002881llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00002882 const ObjCIvarDecl *Ivar) {
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00002883 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00002884}
2885
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00002886LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
2887 llvm::Value *BaseValue,
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00002888 const ObjCIvarDecl *Ivar,
2889 unsigned CVRQualifiers) {
Chris Lattnerc4688d22009-04-17 17:44:48 +00002890 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar9ebf9512009-04-21 01:19:28 +00002891 Ivar, CVRQualifiers);
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00002892}
2893
2894LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonc13b85a2008-08-25 01:53:23 +00002895 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
2896 llvm::Value *BaseValue = 0;
2897 const Expr *BaseExpr = E->getBase();
John McCall8ccfcb52009-09-24 19:53:00 +00002898 Qualifiers BaseQuals;
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00002899 QualType ObjectTy;
Anders Carlssonc13b85a2008-08-25 01:53:23 +00002900 if (E->isArrow()) {
2901 BaseValue = EmitScalarExpr(BaseExpr);
Steve Naroff7cae42b2009-07-10 23:34:53 +00002902 ObjectTy = BaseExpr->getType()->getPointeeType();
John McCall8ccfcb52009-09-24 19:53:00 +00002903 BaseQuals = ObjectTy.getQualifiers();
Anders Carlssonc13b85a2008-08-25 01:53:23 +00002904 } else {
2905 LValue BaseLV = EmitLValue(BaseExpr);
2906 // FIXME: this isn't right for bitfields.
2907 BaseValue = BaseLV.getAddress();
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00002908 ObjectTy = BaseExpr->getType();
John McCall8ccfcb52009-09-24 19:53:00 +00002909 BaseQuals = ObjectTy.getQualifiers();
Anders Carlssonc13b85a2008-08-25 01:53:23 +00002910 }
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00002911
Fariborz Jahaniande1d3242009-09-16 23:11:23 +00002912 LValue LV =
John McCall8ccfcb52009-09-24 19:53:00 +00002913 EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
2914 BaseQuals.getCVRQualifiers());
Fariborz Jahaniande1d3242009-09-16 23:11:23 +00002915 setObjCGCLValueClass(getContext(), E, LV);
2916 return LV;
Chris Lattner4bd55962008-03-30 23:03:07 +00002917}
2918
Chris Lattnera4185c52009-04-25 19:35:26 +00002919LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
Chris Lattnera4185c52009-04-25 19:35:26 +00002920 // Can only get l-value for message expression returning aggregate type
2921 RValue RV = EmitAnyExprToTemp(E);
Daniel Dunbarf6fb7e22010-08-21 03:08:16 +00002922 return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
Chris Lattnera4185c52009-04-25 19:35:26 +00002923}
2924
Anders Carlsson0435ed52009-12-24 19:08:58 +00002925RValue CodeGenFunction::EmitCall(QualType CalleeType, llvm::Value *Callee,
Anders Carlsson17490832009-12-24 20:40:36 +00002926 ReturnValueSlot ReturnValue,
Anders Carlsson3a9463b2009-05-27 01:22:39 +00002927 CallExpr::const_arg_iterator ArgBeg,
2928 CallExpr::const_arg_iterator ArgEnd,
2929 const Decl *TargetDecl) {
Mike Stump4a3999f2009-09-09 13:00:44 +00002930 // Get the actual function type. The callee type will always be a pointer to
2931 // function type or a block pointer type.
2932 assert(CalleeType->isFunctionPointerType() &&
Anders Carlssond8db8532009-04-07 18:53:02 +00002933 "Call must have function pointer type!");
2934
John McCall6fd4c232009-10-23 08:22:42 +00002935 CalleeType = getContext().getCanonicalType(CalleeType);
2936
John McCallab26cfa2010-02-05 21:31:56 +00002937 const FunctionType *FnType
2938 = cast<FunctionType>(cast<PointerType>(CalleeType)->getPointeeType());
Daniel Dunbarc722b852008-08-30 03:02:31 +00002939
2940 CallArgList Args;
John McCall6fd4c232009-10-23 08:22:42 +00002941 EmitCallArgs(Args, dyn_cast<FunctionProtoType>(FnType), ArgBeg, ArgEnd);
Daniel Dunbarc722b852008-08-30 03:02:31 +00002942
John McCalla729c622012-02-17 03:33:10 +00002943 const CGFunctionInfo &FnInfo =
John McCall8dda7b22012-07-07 06:41:13 +00002944 CGM.getTypes().arrangeFreeFunctionCall(Args, FnType);
John McCallcbc038a2011-09-21 08:08:30 +00002945
2946 // C99 6.5.2.2p6:
2947 // If the expression that denotes the called function has a type
2948 // that does not include a prototype, [the default argument
2949 // promotions are performed]. If the number of arguments does not
2950 // equal the number of parameters, the behavior is undefined. If
2951 // the function is defined with a type that includes a prototype,
2952 // and either the prototype ends with an ellipsis (, ...) or the
2953 // types of the arguments after promotion are not compatible with
2954 // the types of the parameters, the behavior is undefined. If the
2955 // function is defined with a type that does not include a
2956 // prototype, and the types of the arguments after promotion are
2957 // not compatible with those of the parameters after promotion,
2958 // the behavior is undefined [except in some trivial cases].
2959 // That is, in the general case, we should assume that a call
2960 // through an unprototyped function type works like a *non-variadic*
2961 // call. The way we make this work is to cast to the exact type
2962 // of the promoted arguments.
John McCallc818bbb2012-12-07 07:03:17 +00002963 if (isa<FunctionNoProtoType>(FnType)) {
John McCalla729c622012-02-17 03:33:10 +00002964 llvm::Type *CalleeTy = getTypes().GetFunctionType(FnInfo);
John McCallcbc038a2011-09-21 08:08:30 +00002965 CalleeTy = CalleeTy->getPointerTo();
2966 Callee = Builder.CreateBitCast(Callee, CalleeTy, "callee.knr.cast");
2967 }
2968
2969 return EmitCall(FnInfo, Callee, ReturnValue, Args, TargetDecl);
Daniel Dunbar97db84c2008-08-23 03:46:30 +00002970}
Fariborz Jahanianffba6622009-10-22 22:57:31 +00002971
Chris Lattnerab5e0af2009-10-28 17:39:19 +00002972LValue CodeGenFunction::
2973EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E) {
Eli Friedman928a5672009-11-18 05:01:17 +00002974 llvm::Value *BaseV;
John McCalle3027922010-08-25 11:45:40 +00002975 if (E->getOpcode() == BO_PtrMemI)
Eli Friedman928a5672009-11-18 05:01:17 +00002976 BaseV = EmitScalarExpr(E->getLHS());
2977 else
2978 BaseV = EmitLValue(E->getLHS()).getAddress();
Chris Lattnerab5e0af2009-10-28 17:39:19 +00002979
John McCallc134eb52010-08-31 21:07:20 +00002980 llvm::Value *OffsetV = EmitScalarExpr(E->getRHS());
2981
2982 const MemberPointerType *MPT
2983 = E->getRHS()->getType()->getAs<MemberPointerType>();
2984
2985 llvm::Value *AddV =
2986 CGM.getCXXABI().EmitMemberDataPointerAddress(*this, BaseV, OffsetV, MPT);
2987
2988 return MakeAddrLValue(AddV, MPT->getPointeeType());
Fariborz Jahanianffba6622009-10-22 22:57:31 +00002989}
Eli Friedmandf14b3a2011-10-11 02:20:01 +00002990
2991static void
2992EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, llvm::Value *Dest,
2993 llvm::Value *Ptr, llvm::Value *Val1, llvm::Value *Val2,
2994 uint64_t Size, unsigned Align, llvm::AtomicOrdering Order) {
Richard Smithfeea8832012-04-12 05:08:17 +00002995 llvm::AtomicRMWInst::BinOp Op = llvm::AtomicRMWInst::Add;
2996 llvm::Instruction::BinaryOps PostOp = (llvm::Instruction::BinaryOps)0;
2997
2998 switch (E->getOp()) {
2999 case AtomicExpr::AO__c11_atomic_init:
3000 llvm_unreachable("Already handled!");
3001
3002 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
3003 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
3004 case AtomicExpr::AO__atomic_compare_exchange:
3005 case AtomicExpr::AO__atomic_compare_exchange_n: {
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003006 // Note that cmpxchg only supports specifying one ordering and
3007 // doesn't support weak cmpxchg, at least at the moment.
3008 llvm::LoadInst *LoadVal1 = CGF.Builder.CreateLoad(Val1);
3009 LoadVal1->setAlignment(Align);
3010 llvm::LoadInst *LoadVal2 = CGF.Builder.CreateLoad(Val2);
3011 LoadVal2->setAlignment(Align);
3012 llvm::AtomicCmpXchgInst *CXI =
3013 CGF.Builder.CreateAtomicCmpXchg(Ptr, LoadVal1, LoadVal2, Order);
3014 CXI->setVolatile(E->isVolatile());
3015 llvm::StoreInst *StoreVal1 = CGF.Builder.CreateStore(CXI, Val1);
3016 StoreVal1->setAlignment(Align);
3017 llvm::Value *Cmp = CGF.Builder.CreateICmpEQ(CXI, LoadVal1);
3018 CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType()));
3019 return;
3020 }
3021
Richard Smithfeea8832012-04-12 05:08:17 +00003022 case AtomicExpr::AO__c11_atomic_load:
3023 case AtomicExpr::AO__atomic_load_n:
3024 case AtomicExpr::AO__atomic_load: {
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003025 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Ptr);
3026 Load->setAtomic(Order);
3027 Load->setAlignment(Size);
3028 Load->setVolatile(E->isVolatile());
3029 llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(Load, Dest);
3030 StoreDest->setAlignment(Align);
3031 return;
3032 }
3033
Richard Smithfeea8832012-04-12 05:08:17 +00003034 case AtomicExpr::AO__c11_atomic_store:
3035 case AtomicExpr::AO__atomic_store:
3036 case AtomicExpr::AO__atomic_store_n: {
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003037 assert(!Dest && "Store does not return a value");
3038 llvm::LoadInst *LoadVal1 = CGF.Builder.CreateLoad(Val1);
3039 LoadVal1->setAlignment(Align);
3040 llvm::StoreInst *Store = CGF.Builder.CreateStore(LoadVal1, Ptr);
3041 Store->setAtomic(Order);
3042 Store->setAlignment(Size);
3043 Store->setVolatile(E->isVolatile());
3044 return;
3045 }
3046
Richard Smithfeea8832012-04-12 05:08:17 +00003047 case AtomicExpr::AO__c11_atomic_exchange:
3048 case AtomicExpr::AO__atomic_exchange_n:
3049 case AtomicExpr::AO__atomic_exchange:
3050 Op = llvm::AtomicRMWInst::Xchg;
3051 break;
3052
3053 case AtomicExpr::AO__atomic_add_fetch:
3054 PostOp = llvm::Instruction::Add;
3055 // Fall through.
3056 case AtomicExpr::AO__c11_atomic_fetch_add:
3057 case AtomicExpr::AO__atomic_fetch_add:
3058 Op = llvm::AtomicRMWInst::Add;
3059 break;
3060
3061 case AtomicExpr::AO__atomic_sub_fetch:
3062 PostOp = llvm::Instruction::Sub;
3063 // Fall through.
3064 case AtomicExpr::AO__c11_atomic_fetch_sub:
3065 case AtomicExpr::AO__atomic_fetch_sub:
3066 Op = llvm::AtomicRMWInst::Sub;
3067 break;
3068
3069 case AtomicExpr::AO__atomic_and_fetch:
3070 PostOp = llvm::Instruction::And;
3071 // Fall through.
3072 case AtomicExpr::AO__c11_atomic_fetch_and:
3073 case AtomicExpr::AO__atomic_fetch_and:
3074 Op = llvm::AtomicRMWInst::And;
3075 break;
3076
3077 case AtomicExpr::AO__atomic_or_fetch:
3078 PostOp = llvm::Instruction::Or;
3079 // Fall through.
3080 case AtomicExpr::AO__c11_atomic_fetch_or:
3081 case AtomicExpr::AO__atomic_fetch_or:
3082 Op = llvm::AtomicRMWInst::Or;
3083 break;
3084
3085 case AtomicExpr::AO__atomic_xor_fetch:
3086 PostOp = llvm::Instruction::Xor;
3087 // Fall through.
3088 case AtomicExpr::AO__c11_atomic_fetch_xor:
3089 case AtomicExpr::AO__atomic_fetch_xor:
3090 Op = llvm::AtomicRMWInst::Xor;
3091 break;
Richard Smithd65cee92012-04-13 06:31:38 +00003092
3093 case AtomicExpr::AO__atomic_nand_fetch:
3094 PostOp = llvm::Instruction::And;
3095 // Fall through.
3096 case AtomicExpr::AO__atomic_fetch_nand:
3097 Op = llvm::AtomicRMWInst::Nand;
3098 break;
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003099 }
Richard Smithfeea8832012-04-12 05:08:17 +00003100
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003101 llvm::LoadInst *LoadVal1 = CGF.Builder.CreateLoad(Val1);
3102 LoadVal1->setAlignment(Align);
3103 llvm::AtomicRMWInst *RMWI =
3104 CGF.Builder.CreateAtomicRMW(Op, Ptr, LoadVal1, Order);
3105 RMWI->setVolatile(E->isVolatile());
Richard Smithfeea8832012-04-12 05:08:17 +00003106
3107 // For __atomic_*_fetch operations, perform the operation again to
3108 // determine the value which was written.
3109 llvm::Value *Result = RMWI;
3110 if (PostOp)
3111 Result = CGF.Builder.CreateBinOp(PostOp, RMWI, LoadVal1);
Richard Smithd65cee92012-04-13 06:31:38 +00003112 if (E->getOp() == AtomicExpr::AO__atomic_nand_fetch)
3113 Result = CGF.Builder.CreateNot(Result);
Richard Smithfeea8832012-04-12 05:08:17 +00003114 llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(Result, Dest);
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003115 StoreDest->setAlignment(Align);
3116}
3117
3118// This function emits any expression (scalar, complex, or aggregate)
3119// into a temporary alloca.
3120static llvm::Value *
3121EmitValToTemp(CodeGenFunction &CGF, Expr *E) {
3122 llvm::Value *DeclPtr = CGF.CreateMemTemp(E->getType(), ".atomictmp");
Chad Rosier615ed1a2012-03-29 17:37:10 +00003123 CGF.EmitAnyExprToMem(E, DeclPtr, E->getType().getQualifiers(),
3124 /*Init*/ true);
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003125 return DeclPtr;
3126}
3127
3128static RValue ConvertTempToRValue(CodeGenFunction &CGF, QualType Ty,
3129 llvm::Value *Dest) {
3130 if (Ty->isAnyComplexType())
3131 return RValue::getComplex(CGF.LoadComplexFromAddr(Dest, false));
3132 if (CGF.hasAggregateLLVMType(Ty))
3133 return RValue::getAggregate(Dest);
3134 return RValue::get(CGF.EmitLoadOfScalar(CGF.MakeAddrLValue(Dest, Ty)));
3135}
3136
3137RValue CodeGenFunction::EmitAtomicExpr(AtomicExpr *E, llvm::Value *Dest) {
3138 QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
Richard Smithfeea8832012-04-12 05:08:17 +00003139 QualType MemTy = AtomicTy;
3140 if (const AtomicType *AT = AtomicTy->getAs<AtomicType>())
3141 MemTy = AT->getValueType();
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003142 CharUnits sizeChars = getContext().getTypeSizeInChars(AtomicTy);
3143 uint64_t Size = sizeChars.getQuantity();
3144 CharUnits alignChars = getContext().getTypeAlignInChars(AtomicTy);
3145 unsigned Align = alignChars.getQuantity();
Benjamin Kramer37196de2012-11-17 17:30:55 +00003146 unsigned MaxInlineWidthInBits =
3147 getContext().getTargetInfo().getMaxAtomicInlineWidth();
3148 bool UseLibcall = (Size != Align ||
3149 getContext().toBits(sizeChars) > MaxInlineWidthInBits);
David Chisnallfa35df62012-01-16 17:27:18 +00003150
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003151 llvm::Value *Ptr, *Order, *OrderFail = 0, *Val1 = 0, *Val2 = 0;
3152 Ptr = EmitScalarExpr(E->getPtr());
David Chisnallfa35df62012-01-16 17:27:18 +00003153
Richard Smithfeea8832012-04-12 05:08:17 +00003154 if (E->getOp() == AtomicExpr::AO__c11_atomic_init) {
David Chisnallfa35df62012-01-16 17:27:18 +00003155 assert(!Dest && "Init does not return a value");
David Chisnalleb9496e2012-04-11 17:24:05 +00003156 if (!hasAggregateLLVMType(E->getVal1()->getType())) {
Douglas Gregor298f43d2012-04-12 20:42:30 +00003157 QualType PointeeType
3158 = E->getPtr()->getType()->getAs<PointerType>()->getPointeeType();
3159 EmitScalarInit(EmitScalarExpr(E->getVal1()),
3160 LValue::MakeAddr(Ptr, PointeeType, alignChars,
3161 getContext()));
David Chisnalleb9496e2012-04-11 17:24:05 +00003162 } else if (E->getType()->isAnyComplexType()) {
3163 EmitComplexExprIntoAddr(E->getVal1(), Ptr, E->isVolatile());
3164 } else {
3165 AggValueSlot Slot = AggValueSlot::forAddr(Ptr, alignChars,
3166 AtomicTy.getQualifiers(),
3167 AggValueSlot::IsNotDestructed,
3168 AggValueSlot::DoesNotNeedGCBarriers,
3169 AggValueSlot::IsNotAliased);
3170 EmitAggExpr(E->getVal1(), Slot);
3171 }
David Chisnallfa35df62012-01-16 17:27:18 +00003172 return RValue::get(0);
3173 }
3174
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003175 Order = EmitScalarExpr(E->getOrder());
Richard Smithfeea8832012-04-12 05:08:17 +00003176
3177 switch (E->getOp()) {
3178 case AtomicExpr::AO__c11_atomic_init:
3179 llvm_unreachable("Already handled!");
3180
3181 case AtomicExpr::AO__c11_atomic_load:
3182 case AtomicExpr::AO__atomic_load_n:
3183 break;
3184
3185 case AtomicExpr::AO__atomic_load:
3186 Dest = EmitScalarExpr(E->getVal1());
3187 break;
3188
3189 case AtomicExpr::AO__atomic_store:
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003190 Val1 = EmitScalarExpr(E->getVal1());
Richard Smithfeea8832012-04-12 05:08:17 +00003191 break;
3192
3193 case AtomicExpr::AO__atomic_exchange:
3194 Val1 = EmitScalarExpr(E->getVal1());
3195 Dest = EmitScalarExpr(E->getVal2());
3196 break;
3197
3198 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
3199 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
3200 case AtomicExpr::AO__atomic_compare_exchange_n:
3201 case AtomicExpr::AO__atomic_compare_exchange:
3202 Val1 = EmitScalarExpr(E->getVal1());
3203 if (E->getOp() == AtomicExpr::AO__atomic_compare_exchange)
3204 Val2 = EmitScalarExpr(E->getVal2());
3205 else
3206 Val2 = EmitValToTemp(*this, E->getVal2());
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003207 OrderFail = EmitScalarExpr(E->getOrderFail());
Richard Smithfeea8832012-04-12 05:08:17 +00003208 // Evaluate and discard the 'weak' argument.
3209 if (E->getNumSubExprs() == 6)
3210 EmitScalarExpr(E->getWeak());
3211 break;
3212
3213 case AtomicExpr::AO__c11_atomic_fetch_add:
3214 case AtomicExpr::AO__c11_atomic_fetch_sub:
Richard Smithfeea8832012-04-12 05:08:17 +00003215 if (MemTy->isPointerType()) {
3216 // For pointer arithmetic, we're required to do a bit of math:
3217 // adding 1 to an int* is not the same as adding 1 to a uintptr_t.
Richard Smith01ba47d2012-04-13 00:45:38 +00003218 // ... but only for the C11 builtins. The GNU builtins expect the
3219 // user to multiply by sizeof(T).
Richard Smithfeea8832012-04-12 05:08:17 +00003220 QualType Val1Ty = E->getVal1()->getType();
3221 llvm::Value *Val1Scalar = EmitScalarExpr(E->getVal1());
3222 CharUnits PointeeIncAmt =
3223 getContext().getTypeSizeInChars(MemTy->getPointeeType());
3224 Val1Scalar = Builder.CreateMul(Val1Scalar, CGM.getSize(PointeeIncAmt));
3225 Val1 = CreateMemTemp(Val1Ty, ".atomictmp");
3226 EmitStoreOfScalar(Val1Scalar, MakeAddrLValue(Val1, Val1Ty));
3227 break;
3228 }
3229 // Fall through.
Richard Smith01ba47d2012-04-13 00:45:38 +00003230 case AtomicExpr::AO__atomic_fetch_add:
3231 case AtomicExpr::AO__atomic_fetch_sub:
3232 case AtomicExpr::AO__atomic_add_fetch:
3233 case AtomicExpr::AO__atomic_sub_fetch:
Richard Smithfeea8832012-04-12 05:08:17 +00003234 case AtomicExpr::AO__c11_atomic_store:
3235 case AtomicExpr::AO__c11_atomic_exchange:
3236 case AtomicExpr::AO__atomic_store_n:
3237 case AtomicExpr::AO__atomic_exchange_n:
3238 case AtomicExpr::AO__c11_atomic_fetch_and:
3239 case AtomicExpr::AO__c11_atomic_fetch_or:
3240 case AtomicExpr::AO__c11_atomic_fetch_xor:
3241 case AtomicExpr::AO__atomic_fetch_and:
3242 case AtomicExpr::AO__atomic_fetch_or:
3243 case AtomicExpr::AO__atomic_fetch_xor:
Richard Smithd65cee92012-04-13 06:31:38 +00003244 case AtomicExpr::AO__atomic_fetch_nand:
Richard Smithfeea8832012-04-12 05:08:17 +00003245 case AtomicExpr::AO__atomic_and_fetch:
3246 case AtomicExpr::AO__atomic_or_fetch:
3247 case AtomicExpr::AO__atomic_xor_fetch:
Richard Smithd65cee92012-04-13 06:31:38 +00003248 case AtomicExpr::AO__atomic_nand_fetch:
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003249 Val1 = EmitValToTemp(*this, E->getVal1());
Richard Smithfeea8832012-04-12 05:08:17 +00003250 break;
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003251 }
3252
Richard Smithfeea8832012-04-12 05:08:17 +00003253 if (!E->getType()->isVoidType() && !Dest)
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003254 Dest = CreateMemTemp(E->getType(), ".atomicdst");
3255
David Chisnalldb365f32012-03-29 18:01:11 +00003256 // Use a library call. See: http://gcc.gnu.org/wiki/Atomic/GCCMM/LIbrary .
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003257 if (UseLibcall) {
David Chisnalldb365f32012-03-29 18:01:11 +00003258
3259 llvm::SmallVector<QualType, 5> Params;
3260 CallArgList Args;
3261 // Size is always the first parameter
3262 Args.add(RValue::get(llvm::ConstantInt::get(SizeTy, Size)),
3263 getContext().getSizeType());
3264 // Atomic address is always the second parameter
3265 Args.add(RValue::get(EmitCastToVoidPtr(Ptr)),
3266 getContext().VoidPtrTy);
3267
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003268 const char* LibCallName;
David Chisnalldb365f32012-03-29 18:01:11 +00003269 QualType RetTy = getContext().VoidTy;
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003270 switch (E->getOp()) {
David Chisnalldb365f32012-03-29 18:01:11 +00003271 // There is only one libcall for compare an exchange, because there is no
3272 // optimisation benefit possible from a libcall version of a weak compare
3273 // and exchange.
3274 // bool __atomic_compare_exchange(size_t size, void *obj, void *expected,
Richard Smithfeea8832012-04-12 05:08:17 +00003275 // void *desired, int success, int failure)
3276 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
3277 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
3278 case AtomicExpr::AO__atomic_compare_exchange:
3279 case AtomicExpr::AO__atomic_compare_exchange_n:
David Chisnalldb365f32012-03-29 18:01:11 +00003280 LibCallName = "__atomic_compare_exchange";
3281 RetTy = getContext().BoolTy;
3282 Args.add(RValue::get(EmitCastToVoidPtr(Val1)),
3283 getContext().VoidPtrTy);
3284 Args.add(RValue::get(EmitCastToVoidPtr(Val2)),
3285 getContext().VoidPtrTy);
3286 Args.add(RValue::get(Order),
3287 getContext().IntTy);
3288 Order = OrderFail;
3289 break;
3290 // void __atomic_exchange(size_t size, void *mem, void *val, void *return,
3291 // int order)
Richard Smithfeea8832012-04-12 05:08:17 +00003292 case AtomicExpr::AO__c11_atomic_exchange:
3293 case AtomicExpr::AO__atomic_exchange_n:
3294 case AtomicExpr::AO__atomic_exchange:
David Chisnalldb365f32012-03-29 18:01:11 +00003295 LibCallName = "__atomic_exchange";
3296 Args.add(RValue::get(EmitCastToVoidPtr(Val1)),
3297 getContext().VoidPtrTy);
3298 Args.add(RValue::get(EmitCastToVoidPtr(Dest)),
3299 getContext().VoidPtrTy);
3300 break;
3301 // void __atomic_store(size_t size, void *mem, void *val, int order)
Richard Smithfeea8832012-04-12 05:08:17 +00003302 case AtomicExpr::AO__c11_atomic_store:
3303 case AtomicExpr::AO__atomic_store:
3304 case AtomicExpr::AO__atomic_store_n:
David Chisnalldb365f32012-03-29 18:01:11 +00003305 LibCallName = "__atomic_store";
3306 Args.add(RValue::get(EmitCastToVoidPtr(Val1)),
3307 getContext().VoidPtrTy);
3308 break;
3309 // void __atomic_load(size_t size, void *mem, void *return, int order)
Richard Smithfeea8832012-04-12 05:08:17 +00003310 case AtomicExpr::AO__c11_atomic_load:
3311 case AtomicExpr::AO__atomic_load:
3312 case AtomicExpr::AO__atomic_load_n:
David Chisnalldb365f32012-03-29 18:01:11 +00003313 LibCallName = "__atomic_load";
3314 Args.add(RValue::get(EmitCastToVoidPtr(Dest)),
3315 getContext().VoidPtrTy);
3316 break;
3317#if 0
3318 // These are only defined for 1-16 byte integers. It is not clear what
3319 // their semantics would be on anything else...
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003320 case AtomicExpr::Add: LibCallName = "__atomic_fetch_add_generic"; break;
3321 case AtomicExpr::Sub: LibCallName = "__atomic_fetch_sub_generic"; break;
3322 case AtomicExpr::And: LibCallName = "__atomic_fetch_and_generic"; break;
3323 case AtomicExpr::Or: LibCallName = "__atomic_fetch_or_generic"; break;
3324 case AtomicExpr::Xor: LibCallName = "__atomic_fetch_xor_generic"; break;
David Chisnalldb365f32012-03-29 18:01:11 +00003325#endif
3326 default: return EmitUnsupportedRValue(E, "atomic library call");
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003327 }
David Chisnalldb365f32012-03-29 18:01:11 +00003328 // order is always the last parameter
3329 Args.add(RValue::get(Order),
3330 getContext().IntTy);
3331
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003332 const CGFunctionInfo &FuncInfo =
John McCall8dda7b22012-07-07 06:41:13 +00003333 CGM.getTypes().arrangeFreeFunctionCall(RetTy, Args,
David Chisnalldb365f32012-03-29 18:01:11 +00003334 FunctionType::ExtInfo(), RequiredArgs::All);
3335 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FuncInfo);
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003336 llvm::Constant *Func = CGM.CreateRuntimeFunction(FTy, LibCallName);
3337 RValue Res = EmitCall(FuncInfo, Func, ReturnValueSlot(), Args);
3338 if (E->isCmpXChg())
3339 return Res;
Richard Smithfeea8832012-04-12 05:08:17 +00003340 if (E->getType()->isVoidType())
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003341 return RValue::get(0);
3342 return ConvertTempToRValue(*this, E->getType(), Dest);
3343 }
David Chisnalldb365f32012-03-29 18:01:11 +00003344
Eli Friedmanfb9c49e2012-10-30 01:15:28 +00003345 bool IsStore = E->getOp() == AtomicExpr::AO__c11_atomic_store ||
3346 E->getOp() == AtomicExpr::AO__atomic_store ||
3347 E->getOp() == AtomicExpr::AO__atomic_store_n;
3348 bool IsLoad = E->getOp() == AtomicExpr::AO__c11_atomic_load ||
3349 E->getOp() == AtomicExpr::AO__atomic_load ||
3350 E->getOp() == AtomicExpr::AO__atomic_load_n;
3351
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003352 llvm::Type *IPtrTy =
3353 llvm::IntegerType::get(getLLVMContext(), Size * 8)->getPointerTo();
3354 llvm::Value *OrigDest = Dest;
3355 Ptr = Builder.CreateBitCast(Ptr, IPtrTy);
3356 if (Val1) Val1 = Builder.CreateBitCast(Val1, IPtrTy);
3357 if (Val2) Val2 = Builder.CreateBitCast(Val2, IPtrTy);
3358 if (Dest && !E->isCmpXChg()) Dest = Builder.CreateBitCast(Dest, IPtrTy);
3359
3360 if (isa<llvm::ConstantInt>(Order)) {
3361 int ord = cast<llvm::ConstantInt>(Order)->getZExtValue();
3362 switch (ord) {
3363 case 0: // memory_order_relaxed
3364 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
3365 llvm::Monotonic);
3366 break;
3367 case 1: // memory_order_consume
3368 case 2: // memory_order_acquire
Eli Friedmanfb9c49e2012-10-30 01:15:28 +00003369 if (IsStore)
3370 break; // Avoid crashing on code with undefined behavior
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003371 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
3372 llvm::Acquire);
3373 break;
3374 case 3: // memory_order_release
Eli Friedmanfb9c49e2012-10-30 01:15:28 +00003375 if (IsLoad)
3376 break; // Avoid crashing on code with undefined behavior
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003377 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
3378 llvm::Release);
3379 break;
3380 case 4: // memory_order_acq_rel
Eli Friedmanfb9c49e2012-10-30 01:15:28 +00003381 if (IsLoad || IsStore)
3382 break; // Avoid crashing on code with undefined behavior
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003383 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
3384 llvm::AcquireRelease);
3385 break;
3386 case 5: // memory_order_seq_cst
3387 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
3388 llvm::SequentiallyConsistent);
3389 break;
3390 default: // invalid order
3391 // We should not ever get here normally, but it's hard to
3392 // enforce that in general.
Richard Smithfeea8832012-04-12 05:08:17 +00003393 break;
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003394 }
Richard Smithfeea8832012-04-12 05:08:17 +00003395 if (E->getType()->isVoidType())
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003396 return RValue::get(0);
3397 return ConvertTempToRValue(*this, E->getType(), OrigDest);
3398 }
3399
3400 // Long case, when Order isn't obviously constant.
3401
3402 // Create all the relevant BB's
Eli Friedmanc2025562011-10-11 20:00:47 +00003403 llvm::BasicBlock *MonotonicBB = 0, *AcquireBB = 0, *ReleaseBB = 0,
3404 *AcqRelBB = 0, *SeqCstBB = 0;
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003405 MonotonicBB = createBasicBlock("monotonic", CurFn);
Richard Smithfeea8832012-04-12 05:08:17 +00003406 if (!IsStore)
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003407 AcquireBB = createBasicBlock("acquire", CurFn);
Richard Smithfeea8832012-04-12 05:08:17 +00003408 if (!IsLoad)
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003409 ReleaseBB = createBasicBlock("release", CurFn);
Richard Smithfeea8832012-04-12 05:08:17 +00003410 if (!IsLoad && !IsStore)
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003411 AcqRelBB = createBasicBlock("acqrel", CurFn);
3412 SeqCstBB = createBasicBlock("seqcst", CurFn);
3413 llvm::BasicBlock *ContBB = createBasicBlock("atomic.continue", CurFn);
3414
3415 // Create the switch for the split
3416 // MonotonicBB is arbitrarily chosen as the default case; in practice, this
3417 // doesn't matter unless someone is crazy enough to use something that
3418 // doesn't fold to a constant for the ordering.
3419 Order = Builder.CreateIntCast(Order, Builder.getInt32Ty(), false);
3420 llvm::SwitchInst *SI = Builder.CreateSwitch(Order, MonotonicBB);
3421
3422 // Emit all the different atomics
3423 Builder.SetInsertPoint(MonotonicBB);
3424 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
3425 llvm::Monotonic);
3426 Builder.CreateBr(ContBB);
Richard Smithfeea8832012-04-12 05:08:17 +00003427 if (!IsStore) {
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003428 Builder.SetInsertPoint(AcquireBB);
3429 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
3430 llvm::Acquire);
3431 Builder.CreateBr(ContBB);
3432 SI->addCase(Builder.getInt32(1), AcquireBB);
3433 SI->addCase(Builder.getInt32(2), AcquireBB);
3434 }
Richard Smithfeea8832012-04-12 05:08:17 +00003435 if (!IsLoad) {
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003436 Builder.SetInsertPoint(ReleaseBB);
3437 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
3438 llvm::Release);
3439 Builder.CreateBr(ContBB);
3440 SI->addCase(Builder.getInt32(3), ReleaseBB);
3441 }
Richard Smithfeea8832012-04-12 05:08:17 +00003442 if (!IsLoad && !IsStore) {
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003443 Builder.SetInsertPoint(AcqRelBB);
3444 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
3445 llvm::AcquireRelease);
3446 Builder.CreateBr(ContBB);
3447 SI->addCase(Builder.getInt32(4), AcqRelBB);
3448 }
3449 Builder.SetInsertPoint(SeqCstBB);
3450 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
3451 llvm::SequentiallyConsistent);
3452 Builder.CreateBr(ContBB);
3453 SI->addCase(Builder.getInt32(5), SeqCstBB);
3454
3455 // Cleanup and return
3456 Builder.SetInsertPoint(ContBB);
Richard Smithfeea8832012-04-12 05:08:17 +00003457 if (E->getType()->isVoidType())
Eli Friedmandf14b3a2011-10-11 02:20:01 +00003458 return RValue::get(0);
3459 return ConvertTempToRValue(*this, E->getType(), OrigDest);
3460}
Peter Collingbourne95fd2ca2011-10-27 19:19:51 +00003461
Duncan Sandse81111c2012-04-10 08:23:07 +00003462void CodeGenFunction::SetFPAccuracy(llvm::Value *Val, float Accuracy) {
Peter Collingbourne95fd2ca2011-10-27 19:19:51 +00003463 assert(Val->getType()->isFPOrFPVectorTy());
Duncan Sandse81111c2012-04-10 08:23:07 +00003464 if (Accuracy == 0.0 || !isa<llvm::Instruction>(Val))
Peter Collingbourne95fd2ca2011-10-27 19:19:51 +00003465 return;
3466
Duncan Sands65229ed2012-04-16 16:29:47 +00003467 llvm::MDBuilder MDHelper(getLLVMContext());
3468 llvm::MDNode *Node = MDHelper.createFPMath(Accuracy);
Peter Collingbourne95fd2ca2011-10-27 19:19:51 +00003469
Duncan Sands6fc46192012-04-14 12:37:26 +00003470 cast<llvm::Instruction>(Val)->setMetadata(llvm::LLVMContext::MD_fpmath, Node);
Peter Collingbourne95fd2ca2011-10-27 19:19:51 +00003471}
John McCallfe96e0b2011-11-06 09:01:30 +00003472
3473namespace {
3474 struct LValueOrRValue {
3475 LValue LV;
3476 RValue RV;
3477 };
3478}
3479
3480static LValueOrRValue emitPseudoObjectExpr(CodeGenFunction &CGF,
3481 const PseudoObjectExpr *E,
3482 bool forLValue,
3483 AggValueSlot slot) {
3484 llvm::SmallVector<CodeGenFunction::OpaqueValueMappingData, 4> opaques;
3485
3486 // Find the result expression, if any.
3487 const Expr *resultExpr = E->getResultExpr();
3488 LValueOrRValue result;
3489
3490 for (PseudoObjectExpr::const_semantics_iterator
3491 i = E->semantics_begin(), e = E->semantics_end(); i != e; ++i) {
3492 const Expr *semantic = *i;
3493
3494 // If this semantic expression is an opaque value, bind it
3495 // to the result of its source expression.
3496 if (const OpaqueValueExpr *ov = dyn_cast<OpaqueValueExpr>(semantic)) {
3497
3498 // If this is the result expression, we may need to evaluate
3499 // directly into the slot.
3500 typedef CodeGenFunction::OpaqueValueMappingData OVMA;
3501 OVMA opaqueData;
3502 if (ov == resultExpr && ov->isRValue() && !forLValue &&
3503 CodeGenFunction::hasAggregateLLVMType(ov->getType()) &&
3504 !ov->getType()->isAnyComplexType()) {
3505 CGF.EmitAggExpr(ov->getSourceExpr(), slot);
3506
3507 LValue LV = CGF.MakeAddrLValue(slot.getAddr(), ov->getType());
3508 opaqueData = OVMA::bind(CGF, ov, LV);
3509 result.RV = slot.asRValue();
3510
3511 // Otherwise, emit as normal.
3512 } else {
3513 opaqueData = OVMA::bind(CGF, ov, ov->getSourceExpr());
3514
3515 // If this is the result, also evaluate the result now.
3516 if (ov == resultExpr) {
3517 if (forLValue)
3518 result.LV = CGF.EmitLValue(ov);
3519 else
3520 result.RV = CGF.EmitAnyExpr(ov, slot);
3521 }
3522 }
3523
3524 opaques.push_back(opaqueData);
3525
3526 // Otherwise, if the expression is the result, evaluate it
3527 // and remember the result.
3528 } else if (semantic == resultExpr) {
3529 if (forLValue)
3530 result.LV = CGF.EmitLValue(semantic);
3531 else
3532 result.RV = CGF.EmitAnyExpr(semantic, slot);
3533
3534 // Otherwise, evaluate the expression in an ignored context.
3535 } else {
3536 CGF.EmitIgnoredExpr(semantic);
3537 }
3538 }
3539
3540 // Unbind all the opaques now.
3541 for (unsigned i = 0, e = opaques.size(); i != e; ++i)
3542 opaques[i].unbind(CGF);
3543
3544 return result;
3545}
3546
3547RValue CodeGenFunction::EmitPseudoObjectRValue(const PseudoObjectExpr *E,
3548 AggValueSlot slot) {
3549 return emitPseudoObjectExpr(*this, E, false, slot).RV;
3550}
3551
3552LValue CodeGenFunction::EmitPseudoObjectLValue(const PseudoObjectExpr *E) {
3553 return emitPseudoObjectExpr(*this, E, true, AggValueSlot::ignored()).LV;
3554}