blob: 975f7492555f53c934c5456d5f7f5117f1c3cdd5 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Mike Stump15037ca2009-12-15 00:35:12 +000020#include "llvm/Intrinsics.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000021#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23using namespace CodeGen;
24
25//===--------------------------------------------------------------------===//
26// Miscellaneous Helper Methods
27//===--------------------------------------------------------------------===//
28
29/// CreateTempAlloca - This creates a alloca and inserts it into the entry
30/// block.
31llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
Daniel Dunbar259e9cc2009-10-19 01:21:05 +000032 const llvm::Twine &Name) {
Chris Lattnerf1466842009-03-22 00:24:14 +000033 if (!Builder.isNamePreserving())
Daniel Dunbar259e9cc2009-10-19 01:21:05 +000034 return new llvm::AllocaInst(Ty, 0, "", AllocaInsertPt);
Devang Pateld35e2e02009-10-12 22:29:02 +000035 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
Reid Spencer5f016e22007-07-11 17:01:13 +000036}
37
38/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
39/// expression and compare the result against zero, returning an Int1Ty value.
40llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000041 QualType BoolTy = getContext().BoolTy;
Eli Friedman3a173702009-12-11 09:26:29 +000042 if (E->getType()->isMemberFunctionPointerType()) {
43 llvm::Value *Ptr = CreateTempAlloca(ConvertType(E->getType()));
44 EmitAggExpr(E, Ptr, /*VolatileDest=*/false);
45
46 // Get the pointer.
47 llvm::Value *FuncPtr = Builder.CreateStructGEP(Ptr, 0, "src.ptr");
48 FuncPtr = Builder.CreateLoad(FuncPtr);
49
50 llvm::Value *IsNotNull =
51 Builder.CreateICmpNE(FuncPtr,
52 llvm::Constant::getNullValue(FuncPtr->getType()),
53 "tobool");
54
55 return IsNotNull;
56 }
Chris Lattner9b2dc282008-04-04 16:54:41 +000057 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000058 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000059
Chris Lattner9069fa22007-08-26 16:46:58 +000060 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000061}
62
Chris Lattner9b655512007-08-31 22:49:20 +000063/// EmitAnyExpr - Emit code to compute the specified expression which can have
64/// any type. The result is returned as an RValue struct. If this is an
Mike Stumpdb52dcd2009-09-09 13:00:44 +000065/// aggregate expression, the aggloc/agglocvolatile arguments indicate where the
66/// result should be returned.
67RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000068 bool IsAggLocVolatile, bool IgnoreResult,
69 bool IsInitializer) {
Chris Lattner9b655512007-08-31 22:49:20 +000070 if (!hasAggregateLLVMType(E->getType()))
Mike Stump7f79f9b2009-05-29 15:46:01 +000071 return RValue::get(EmitScalarExpr(E, IgnoreResult));
Chris Lattner9b2dc282008-04-04 16:54:41 +000072 else if (E->getType()->isAnyComplexType())
Mike Stump7f79f9b2009-05-29 15:46:01 +000073 return RValue::getComplex(EmitComplexExpr(E, false, false,
74 IgnoreResult, IgnoreResult));
Mike Stumpdb52dcd2009-09-09 13:00:44 +000075
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000076 EmitAggExpr(E, AggLoc, IsAggLocVolatile, IgnoreResult, IsInitializer);
77 return RValue::getAggregate(AggLoc, IsAggLocVolatile);
Chris Lattner9b655512007-08-31 22:49:20 +000078}
79
Mike Stumpdb52dcd2009-09-09 13:00:44 +000080/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result will
81/// always be accessible even if no aggregate location is provided.
82RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E,
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000083 bool IsAggLocVolatile,
84 bool IsInitializer) {
85 llvm::Value *AggLoc = 0;
Mike Stumpdb52dcd2009-09-09 13:00:44 +000086
87 if (hasAggregateLLVMType(E->getType()) &&
Daniel Dunbar46f45b92008-09-09 01:06:48 +000088 !E->getType()->isAnyComplexType())
89 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +000090 return EmitAnyExpr(E, AggLoc, IsAggLocVolatile, /*IgnoreResult=*/false,
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000091 IsInitializer);
Daniel Dunbar46f45b92008-09-09 01:06:48 +000092}
93
Anders Carlsson4029ca72009-05-20 00:24:07 +000094RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000095 QualType DestType,
96 bool IsInitializer) {
Anders Carlssone1b7ea12009-10-18 23:09:21 +000097 bool ShouldDestroyTemporaries = false;
98 unsigned OldNumLiveTemporaries = 0;
99
Anders Carlssonb3f74422009-10-15 00:51:46 +0000100 if (const CXXExprWithTemporaries *TE = dyn_cast<CXXExprWithTemporaries>(E)) {
Anders Carlssone1b7ea12009-10-18 23:09:21 +0000101 ShouldDestroyTemporaries = TE->shouldDestroyTemporaries();
102
Chris Lattnereb99b012009-10-28 17:39:19 +0000103 // Keep track of the current cleanup stack depth.
104 if (ShouldDestroyTemporaries)
Anders Carlssone1b7ea12009-10-18 23:09:21 +0000105 OldNumLiveTemporaries = LiveTemporaries.size();
Anders Carlssonb3f74422009-10-15 00:51:46 +0000106
Anders Carlssone1b7ea12009-10-18 23:09:21 +0000107 E = TE->getSubExpr();
Anders Carlssonb3f74422009-10-15 00:51:46 +0000108 }
109
Eli Friedman5df0d422009-05-20 02:31:19 +0000110 RValue Val;
111 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
Anders Carlsson4bbab922009-05-20 00:36:58 +0000112 // Emit the expr as an lvalue.
113 LValue LV = EmitLValue(E);
Eli Friedman5df0d422009-05-20 02:31:19 +0000114 if (LV.isSimple())
115 return RValue::get(LV.getAddress());
116 Val = EmitLoadOfLValue(LV, E->getType());
Anders Carlssone1b7ea12009-10-18 23:09:21 +0000117
118 if (ShouldDestroyTemporaries) {
119 // Pop temporaries.
120 while (LiveTemporaries.size() > OldNumLiveTemporaries)
121 PopCXXTemporary();
122 }
Eli Friedman5df0d422009-05-20 02:31:19 +0000123 } else {
Anders Carlssonb3f74422009-10-15 00:51:46 +0000124 const CXXRecordDecl *BaseClassDecl = 0;
125 const CXXRecordDecl *DerivedClassDecl = 0;
126
127 if (const CastExpr *CE =
128 dyn_cast<CastExpr>(E->IgnoreParenNoopCasts(getContext()))) {
129 if (CE->getCastKind() == CastExpr::CK_DerivedToBase) {
130 E = CE->getSubExpr();
131
132 BaseClassDecl =
133 cast<CXXRecordDecl>(CE->getType()->getAs<RecordType>()->getDecl());
134 DerivedClassDecl =
135 cast<CXXRecordDecl>(E->getType()->getAs<RecordType>()->getDecl());
136 }
137 }
138
Anders Carlsson14c5cbf2009-08-16 07:36:22 +0000139 Val = EmitAnyExprToTemp(E, /*IsAggLocVolatile=*/false,
140 IsInitializer);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000141
Anders Carlssone1b7ea12009-10-18 23:09:21 +0000142 if (ShouldDestroyTemporaries) {
143 // Pop temporaries.
144 while (LiveTemporaries.size() > OldNumLiveTemporaries)
145 PopCXXTemporary();
146 }
147
Anders Carlsson2da76932009-08-16 17:54:29 +0000148 if (IsInitializer) {
149 // We might have to destroy the temporary variable.
150 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
151 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
152 if (!ClassDecl->hasTrivialDestructor()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000153 const CXXDestructorDecl *Dtor =
Anders Carlsson2da76932009-08-16 17:54:29 +0000154 ClassDecl->getDestructor(getContext());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000155
Mike Stumpd88ea562009-12-09 03:35:49 +0000156 {
Anders Carlsson6ec687d2009-12-11 01:00:09 +0000157 DelayedCleanupBlock Scope(*this);
Mike Stumpd88ea562009-12-09 03:35:49 +0000158 EmitCXXDestructorCall(Dtor, Dtor_Complete,
159 Val.getAggregateAddr());
Anders Carlsson6ec687d2009-12-11 01:00:09 +0000160
161 // Make sure to jump to the exit block.
162 EmitBranch(Scope.getCleanupExitBlock());
Mike Stumpd88ea562009-12-09 03:35:49 +0000163 }
164 if (Exceptions) {
165 EHCleanupBlock Cleanup(*this);
166 EmitCXXDestructorCall(Dtor, Dtor_Complete,
167 Val.getAggregateAddr());
168 }
Anders Carlsson2da76932009-08-16 17:54:29 +0000169 }
Anders Carlsson8478ce62009-08-16 17:50:25 +0000170 }
171 }
172 }
Anders Carlssonb3f74422009-10-15 00:51:46 +0000173
174 // Check if need to perform the derived-to-base cast.
175 if (BaseClassDecl) {
176 llvm::Value *Derived = Val.getAggregateAddr();
Anders Carlssonb3f74422009-10-15 00:51:46 +0000177 llvm::Value *Base =
Anders Carlssona3697c92009-11-23 17:57:54 +0000178 GetAddressOfBaseClass(Derived, DerivedClassDecl, BaseClassDecl,
179 /*NullCheckValue=*/false);
Anders Carlssonb3f74422009-10-15 00:51:46 +0000180 return RValue::get(Base);
181 }
Anders Carlsson4bbab922009-05-20 00:36:58 +0000182 }
Eli Friedman5df0d422009-05-20 02:31:19 +0000183
184 if (Val.isAggregate()) {
185 Val = RValue::get(Val.getAggregateAddr());
186 } else {
Anders Carlsson7cd3a642009-05-20 01:35:03 +0000187 // Create a temporary variable that we can bind the reference to.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000188 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()),
Anders Carlssone04d1c72009-05-20 01:03:17 +0000189 "reftmp");
Eli Friedman5df0d422009-05-20 02:31:19 +0000190 if (Val.isScalar())
191 EmitStoreOfScalar(Val.getScalarVal(), Temp, false, E->getType());
192 else
193 StoreComplexToAddr(Val.getComplexVal(), Temp, false);
194 Val = RValue::get(Temp);
Anders Carlssone04d1c72009-05-20 01:03:17 +0000195 }
Eli Friedman5df0d422009-05-20 02:31:19 +0000196
197 return Val;
Anders Carlsson4029ca72009-05-20 00:24:07 +0000198}
199
200
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000201/// getAccessedFieldNo - Given an encoded value and a result number, return the
202/// input field number being accessed.
203unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
Dan Gohman4f8d1232008-05-22 00:50:06 +0000204 const llvm::Constant *Elts) {
205 if (isa<llvm::ConstantAggregateZero>(Elts))
206 return 0;
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000207
Dan Gohman4f8d1232008-05-22 00:50:06 +0000208 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
209}
210
Chris Lattner9b655512007-08-31 22:49:20 +0000211
Reid Spencer5f016e22007-07-11 17:01:13 +0000212//===----------------------------------------------------------------------===//
213// LValue Expression Emission
214//===----------------------------------------------------------------------===//
215
Daniel Dunbar13e81732009-02-05 07:09:07 +0000216RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
Chris Lattnereb99b012009-10-28 17:39:19 +0000217 if (Ty->isVoidType())
Daniel Dunbar13e81732009-02-05 07:09:07 +0000218 return RValue::get(0);
Chris Lattnereb99b012009-10-28 17:39:19 +0000219
220 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) {
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000221 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
Owen Anderson03e20502009-07-30 23:11:26 +0000222 llvm::Value *U = llvm::UndefValue::get(EltTy);
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000223 return RValue::getComplex(std::make_pair(U, U));
Chris Lattnereb99b012009-10-28 17:39:19 +0000224 }
225
226 if (hasAggregateLLVMType(Ty)) {
Owen Anderson96e0fc72009-07-29 22:16:19 +0000227 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
Owen Anderson03e20502009-07-30 23:11:26 +0000228 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000229 }
Chris Lattnereb99b012009-10-28 17:39:19 +0000230
231 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000232}
233
Daniel Dunbar13e81732009-02-05 07:09:07 +0000234RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
235 const char *Name) {
236 ErrorUnsupported(E, Name);
237 return GetUndefRValue(E->getType());
238}
239
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000240LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
241 const char *Name) {
242 ErrorUnsupported(E, Name);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000243 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Owen Anderson03e20502009-07-30 23:11:26 +0000244 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
John McCall0953e762009-09-24 19:53:00 +0000245 MakeQualifiers(E->getType()));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000246}
247
Reid Spencer5f016e22007-07-11 17:01:13 +0000248/// EmitLValue - Emit code to compute a designator that specifies the location
249/// of the expression.
250///
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000251/// This can return one of two things: a simple address or a bitfield reference.
252/// In either case, the LLVM Value* in the LValue structure is guaranteed to be
253/// an LLVM pointer type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000254///
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000255/// If this returns a bitfield reference, nothing about the pointee type of the
256/// LLVM value is known: For example, it may not be a pointer to an integer.
Reid Spencer5f016e22007-07-11 17:01:13 +0000257///
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000258/// If this returns a normal address, and if the lvalue's C type is fixed size,
259/// this method guarantees that the returned pointer type will point to an LLVM
260/// type of the same size of the lvalue's type. If the lvalue has a variable
261/// length type, this is not possible.
Reid Spencer5f016e22007-07-11 17:01:13 +0000262///
263LValue CodeGenFunction::EmitLValue(const Expr *E) {
264 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000265 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000266
Fariborz Jahanian820bca42009-12-09 23:35:29 +0000267 case Expr::ObjCIsaExprClass:
268 return EmitObjCIsaExpr(cast<ObjCIsaExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000269 case Expr::BinaryOperatorClass:
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000270 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000271 case Expr::CallExprClass:
Anders Carlssonfaf86642009-09-01 21:18:52 +0000272 case Expr::CXXMemberCallExprClass:
Douglas Gregorb4609802008-11-14 16:09:21 +0000273 case Expr::CXXOperatorCallExprClass:
274 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000275 case Expr::VAArgExprClass:
276 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000277 case Expr::DeclRefExprClass:
Douglas Gregor1a49af92009-01-06 05:10:23 +0000278 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000279 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000280 case Expr::PredefinedExprClass:
281 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000282 case Expr::StringLiteralClass:
283 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000284 case Expr::ObjCEncodeExprClass:
285 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000286
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000287 case Expr::BlockDeclRefExprClass:
Mike Stumpa99038c2009-02-28 09:07:16 +0000288 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
289
Anders Carlssonb58d0172009-05-30 23:23:33 +0000290 case Expr::CXXTemporaryObjectExprClass:
291 case Expr::CXXConstructExprClass:
Anders Carlssone61c9e82009-05-30 23:30:54 +0000292 return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
293 case Expr::CXXBindTemporaryExprClass:
294 return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
Anders Carlssonb9ea0b52009-09-14 01:10:45 +0000295 case Expr::CXXExprWithTemporariesClass:
296 return EmitCXXExprWithTemporariesLValue(cast<CXXExprWithTemporaries>(E));
Anders Carlsson370e5382009-11-14 01:51:50 +0000297 case Expr::CXXZeroInitValueExprClass:
298 return EmitNullInitializationLValue(cast<CXXZeroInitValueExpr>(E));
299 case Expr::CXXDefaultArgExprClass:
300 return EmitLValue(cast<CXXDefaultArgExpr>(E)->getExpr());
Mike Stumpc2e84ae2009-11-15 08:09:41 +0000301 case Expr::CXXTypeidExprClass:
302 return EmitCXXTypeidLValue(cast<CXXTypeidExpr>(E));
Anders Carlssone61c9e82009-05-30 23:30:54 +0000303
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000304 case Expr::ObjCMessageExprClass:
305 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000306 case Expr::ObjCIvarRefExprClass:
Chris Lattner391d77a2008-03-30 23:03:07 +0000307 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000308 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000309 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000310 case Expr::ObjCImplicitSetterGetterRefExprClass:
311 return EmitObjCKVCRefLValue(cast<ObjCImplicitSetterGetterRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000312 case Expr::ObjCSuperExprClass:
Chris Lattner65459942009-04-25 19:35:26 +0000313 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000314
Chris Lattner65459942009-04-25 19:35:26 +0000315 case Expr::StmtExprClass:
316 return EmitStmtExprLValue(cast<StmtExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000317 case Expr::UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000318 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
319 case Expr::ArraySubscriptExprClass:
320 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000321 case Expr::ExtVectorElementExprClass:
322 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000323 case Expr::MemberExprClass:
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000324 return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000325 case Expr::CompoundLiteralExprClass:
326 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbar90345582009-03-24 02:38:23 +0000327 case Expr::ConditionalOperatorClass:
Anders Carlsson6fcec8b2009-09-15 16:35:24 +0000328 return EmitConditionalOperatorLValue(cast<ConditionalOperator>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000329 case Expr::ChooseExprClass:
Eli Friedman79769322009-03-04 05:52:32 +0000330 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattnerc3953a62009-03-18 04:02:57 +0000331 case Expr::ImplicitCastExprClass:
332 case Expr::CStyleCastExprClass:
333 case Expr::CXXFunctionalCastExprClass:
334 case Expr::CXXStaticCastExprClass:
335 case Expr::CXXDynamicCastExprClass:
336 case Expr::CXXReinterpretCastExprClass:
337 case Expr::CXXConstCastExprClass:
Chris Lattner75dfeda2009-03-18 18:28:57 +0000338 return EmitCastLValue(cast<CastExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000339 }
340}
341
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000342llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
343 QualType Ty) {
Daniel Dunbar2da84ff2009-11-29 21:23:36 +0000344 llvm::LoadInst *Load = Builder.CreateLoad(Addr, "tmp");
345 if (Volatile)
346 Load->setVolatile(true);
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000347
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000348 // Bool can have different representation in memory than in registers.
Daniel Dunbar2da84ff2009-11-29 21:23:36 +0000349 llvm::Value *V = Load;
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000350 if (Ty->isBooleanType())
Owen Anderson0032b272009-08-13 21:57:51 +0000351 if (V->getType() != llvm::Type::getInt1Ty(VMContext))
352 V = Builder.CreateTrunc(V, llvm::Type::getInt1Ty(VMContext), "tobool");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000353
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000354 return V;
355}
356
357void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000358 bool Volatile, QualType Ty) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000359
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000360 if (Ty->isBooleanType()) {
361 // Bool can have different representation in memory than in registers.
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000362 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
Eli Friedman2b06d342009-12-01 22:31:51 +0000363 Value = Builder.CreateIntCast(Value, DstPtr->getElementType(), false);
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000364 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000365 Builder.CreateStore(Value, Addr, Volatile);
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000366}
367
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000368/// EmitLoadOfLValue - Given an expression that represents a value lvalue, this
369/// method emits the address of the lvalue, then loads the result as an rvalue,
370/// returning the rvalue.
Reid Spencer5f016e22007-07-11 17:01:13 +0000371RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000372 if (LV.isObjCWeak()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000373 // load of a __weak object.
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000374 llvm::Value *AddrWeakObj = LV.getAddress();
Chris Lattnereb99b012009-10-28 17:39:19 +0000375 return RValue::get(CGM.getObjCRuntime().EmitObjCWeakRead(*this,
376 AddrWeakObj));
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000377 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000378
Reid Spencer5f016e22007-07-11 17:01:13 +0000379 if (LV.isSimple()) {
380 llvm::Value *Ptr = LV.getAddress();
381 const llvm::Type *EltTy =
382 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000383
Reid Spencer5f016e22007-07-11 17:01:13 +0000384 // Simple scalar l-value.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000385 if (EltTy->isSingleValueType())
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000386 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000387 ExprType));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000388
Chris Lattner883f6a72007-08-11 00:04:45 +0000389 assert(ExprType->isFunctionType() && "Unknown scalar value");
390 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000391 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000392
Reid Spencer5f016e22007-07-11 17:01:13 +0000393 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000394 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
395 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000396 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
397 "vecext"));
398 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000399
400 // If this is a reference to a subset of the elements of a vector, either
401 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000402 if (LV.isExtVectorElt())
403 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000404
405 if (LV.isBitfield())
406 return EmitLoadOfBitfieldLValue(LV, ExprType);
407
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000408 if (LV.isPropertyRef())
409 return EmitLoadOfPropertyRefLValue(LV, ExprType);
410
Chris Lattner73525de2009-02-16 21:11:58 +0000411 assert(LV.isKVCRef() && "Unknown LValue type!");
412 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000413}
414
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000415RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
416 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000417 unsigned StartBit = LV.getBitfieldStartBit();
418 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000419 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000420
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000421 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000422 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000423 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000424
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000425 // In some cases the bitfield may straddle two memory locations. Currently we
426 // load the entire bitfield, then do the magic to sign-extend it if
427 // necessary. This results in somewhat more code than necessary for the common
428 // case (one load), since two shifts accomplish both the masking and sign
429 // extension.
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000430 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
431 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000432
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000433 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000434 if (StartBit)
Chris Lattner86b85b22009-12-06 17:22:42 +0000435 Val = Builder.CreateLShr(Val, StartBit, "bf.lo");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000436
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000437 // Mask off unused bits.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000438 llvm::Constant *LowMask = llvm::ConstantInt::get(VMContext,
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000439 llvm::APInt::getLowBitsSet(EltTySize, LowBits));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000440 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000441
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000442 // Fetch the high bits if necessary.
443 if (LowBits < BitfieldSize) {
444 unsigned HighBits = BitfieldSize - LowBits;
Owen Anderson0032b272009-08-13 21:57:51 +0000445 llvm::Value *HighPtr = Builder.CreateGEP(Ptr, llvm::ConstantInt::get(
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000446 llvm::Type::getInt32Ty(VMContext), 1), "bf.ptr.hi");
447 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000448 LV.isVolatileQualified(),
449 "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000450
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000451 // Mask off unused bits.
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000452 llvm::Constant *HighMask = llvm::ConstantInt::get(VMContext,
453 llvm::APInt::getLowBitsSet(EltTySize, HighBits));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000454 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000455
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000456 // Shift to proper location and or in to bitfield value.
Chris Lattner86b85b22009-12-06 17:22:42 +0000457 HighVal = Builder.CreateShl(HighVal, LowBits);
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000458 Val = Builder.CreateOr(Val, HighVal, "bf.val");
459 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000460
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000461 // Sign extend if necessary.
462 if (LV.isBitfieldSigned()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000463 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000464 EltTySize - BitfieldSize);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000465 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000466 ExtraBits, "bf.val.sext");
467 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000468
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000469 // The bitfield type and the normal type differ when the storage sizes differ
470 // (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000471 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000472
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000473 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000474}
475
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000476RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
477 QualType ExprType) {
478 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
479}
480
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000481RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
482 QualType ExprType) {
483 return EmitObjCPropertyGet(LV.getKVCRefExpr());
484}
485
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000486// If this is a reference to a subset of the elements of a vector, create an
487// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000488RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
489 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000490 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
491 LV.isVolatileQualified(), "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000492
Nate Begeman8a997642008-05-09 06:41:27 +0000493 const llvm::Constant *Elts = LV.getExtVectorElts();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000494
495 // If the result of the expression is a non-vector type, we must be extracting
496 // a single element. Just codegen as an extractelement.
John McCall183700f2009-09-21 23:43:11 +0000497 const VectorType *ExprVT = ExprType->getAs<VectorType>();
Chris Lattnercf60cd22007-08-10 17:10:08 +0000498 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000499 unsigned InIdx = getAccessedFieldNo(0, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000500 llvm::Value *Elt = llvm::ConstantInt::get(
501 llvm::Type::getInt32Ty(VMContext), InIdx);
Chris Lattner34cdc862007-08-03 16:18:34 +0000502 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
503 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000504
505 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000506 unsigned NumResultElts = ExprVT->getNumElements();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000507
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000508 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000509 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000510 unsigned InIdx = getAccessedFieldNo(i, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000511 Mask.push_back(llvm::ConstantInt::get(
512 llvm::Type::getInt32Ty(VMContext), InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000513 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000514
Owen Anderson4a289322009-07-28 21:22:35 +0000515 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000516 Vec = Builder.CreateShuffleVector(Vec,
Owen Anderson03e20502009-07-30 23:11:26 +0000517 llvm::UndefValue::get(Vec->getType()),
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000518 MaskV, "tmp");
519 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000520}
521
522
Reid Spencer5f016e22007-07-11 17:01:13 +0000523
524/// EmitStoreThroughLValue - Store the specified rvalue into the specified
525/// lvalue, where both are guaranteed to the have the same type, and that type
526/// is 'Ty'.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000527void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
Reid Spencer5f016e22007-07-11 17:01:13 +0000528 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000529 if (!Dst.isSimple()) {
530 if (Dst.isVectorElt()) {
531 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000532 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
533 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000534 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000535 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000536 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000537 return;
538 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000539
Nate Begeman213541a2008-04-18 23:10:10 +0000540 // If this is an update of extended vector elements, insert them as
541 // appropriate.
542 if (Dst.isExtVectorElt())
543 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000544
545 if (Dst.isBitfield())
546 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
547
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000548 if (Dst.isPropertyRef())
549 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
550
Chris Lattnereb99b012009-10-28 17:39:19 +0000551 assert(Dst.isKVCRef() && "Unknown LValue type");
552 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000553 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000554
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000555 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000556 // load of a __weak object.
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000557 llvm::Value *LvalueDst = Dst.getAddress();
558 llvm::Value *src = Src.getScalarVal();
Mike Stumpf33651c2009-04-14 00:57:29 +0000559 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000560 return;
561 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000562
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000563 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000564 // load of a __strong object.
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000565 llvm::Value *LvalueDst = Dst.getAddress();
566 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000567 if (Dst.isObjCIvar()) {
568 assert(Dst.getBaseIvarExp() && "BaseIvarExp is NULL");
569 const llvm::Type *ResultType = ConvertType(getContext().LongTy);
570 llvm::Value *RHS = EmitScalarExpr(Dst.getBaseIvarExp());
Fariborz Jahanian76368e82009-09-25 00:00:20 +0000571 llvm::Value *dst = RHS;
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000572 RHS = Builder.CreatePtrToInt(RHS, ResultType, "sub.ptr.rhs.cast");
573 llvm::Value *LHS =
574 Builder.CreatePtrToInt(LvalueDst, ResultType, "sub.ptr.lhs.cast");
575 llvm::Value *BytesBetween = Builder.CreateSub(LHS, RHS, "ivar.offset");
Fariborz Jahanian76368e82009-09-25 00:00:20 +0000576 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, dst,
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000577 BytesBetween);
Chris Lattnereb99b012009-10-28 17:39:19 +0000578 } else if (Dst.isGlobalObjCRef())
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000579 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
580 else
581 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000582 return;
583 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000584
Chris Lattner883f6a72007-08-11 00:04:45 +0000585 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000586 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
587 Dst.isVolatileQualified(), Ty);
Reid Spencer5f016e22007-07-11 17:01:13 +0000588}
589
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000590void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000591 QualType Ty,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000592 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000593 unsigned StartBit = Dst.getBitfieldStartBit();
594 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000595 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000596
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000597 const llvm::Type *EltTy =
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000598 cast<llvm::PointerType>(Ptr->getType())->getElementType();
599 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
600
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000601 // Get the new value, cast to the appropriate type and masked to exactly the
602 // size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000603 llvm::Value *SrcVal = Src.getScalarVal();
604 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000605 llvm::Constant *Mask = llvm::ConstantInt::get(VMContext,
606 llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000607 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000608
Daniel Dunbared3849b2008-11-19 09:36:46 +0000609 // Return the new value of the bit-field, if requested.
610 if (Result) {
611 // Cast back to the proper type for result.
612 const llvm::Type *SrcTy = SrcVal->getType();
613 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
614 "bf.reload.val");
615
616 // Sign extend if necessary.
617 if (Dst.isBitfieldSigned()) {
618 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000619 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000620 SrcTySize - BitfieldSize);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000621 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
Daniel Dunbared3849b2008-11-19 09:36:46 +0000622 ExtraBits, "bf.reload.sext");
623 }
624
625 *Result = SrcTrunc;
626 }
627
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000628 // In some cases the bitfield may straddle two memory locations. Emit the low
629 // part first and check to see if the high needs to be done.
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000630 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
631 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
632 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000633
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000634 // Compute the mask for zero-ing the low part of this bitfield.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000635 llvm::Constant *InvMask =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000636 llvm::ConstantInt::get(VMContext,
637 ~llvm::APInt::getBitsSet(EltTySize, StartBit, StartBit + LowBits));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000638
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000639 // Compute the new low part as
640 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
641 // with the shift of NewVal implicitly stripping the high bits.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000642 llvm::Value *NewLowVal =
Chris Lattner86b85b22009-12-06 17:22:42 +0000643 Builder.CreateShl(NewVal, StartBit, "bf.value.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000644 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
645 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000646
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000647 // Write back.
648 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000649
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000650 // If the low part doesn't cover the bitfield emit a high part.
651 if (LowBits < BitfieldSize) {
652 unsigned HighBits = BitfieldSize - LowBits;
Owen Anderson0032b272009-08-13 21:57:51 +0000653 llvm::Value *HighPtr = Builder.CreateGEP(Ptr, llvm::ConstantInt::get(
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000654 llvm::Type::getInt32Ty(VMContext), 1), "bf.ptr.hi");
655 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000656 Dst.isVolatileQualified(),
657 "bf.prev.hi");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000658
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000659 // Compute the mask for zero-ing the high part of this bitfield.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000660 llvm::Constant *InvMask =
661 llvm::ConstantInt::get(VMContext, ~llvm::APInt::getLowBitsSet(EltTySize,
Owen Andersona1cf15f2009-07-14 23:10:40 +0000662 HighBits));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000663
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000664 // Compute the new high part as
665 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
666 // where the high bits of NewVal have already been cleared and the
667 // shift stripping the low bits.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000668 llvm::Value *NewHighVal =
Chris Lattner86b85b22009-12-06 17:22:42 +0000669 Builder.CreateLShr(NewVal, LowBits, "bf.value.high");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000670 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
671 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000672
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000673 // Write back.
674 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
675 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000676}
677
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000678void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
679 LValue Dst,
680 QualType Ty) {
681 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
682}
683
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000684void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
685 LValue Dst,
686 QualType Ty) {
687 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
688}
689
Nate Begeman213541a2008-04-18 23:10:10 +0000690void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
691 LValue Dst,
692 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000693 // This access turns into a read/modify/write of the vector. Load the input
694 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000695 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
696 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000697 const llvm::Constant *Elts = Dst.getExtVectorElts();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000698
Chris Lattner9b655512007-08-31 22:49:20 +0000699 llvm::Value *SrcVal = Src.getScalarVal();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000700
John McCall183700f2009-09-21 23:43:11 +0000701 if (const VectorType *VTy = Ty->getAs<VectorType>()) {
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000702 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000703 unsigned NumDstElts =
704 cast<llvm::VectorType>(Vec->getType())->getNumElements();
705 if (NumDstElts == NumSrcElts) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000706 // Use shuffle vector is the src and destination are the same number of
707 // elements and restore the vector mask since it is on the side it will be
708 // stored.
Nate Begeman6e5dd862009-06-26 21:12:50 +0000709 llvm::SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000710 for (unsigned i = 0; i != NumSrcElts; ++i) {
711 unsigned InIdx = getAccessedFieldNo(i, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000712 Mask[InIdx] = llvm::ConstantInt::get(
713 llvm::Type::getInt32Ty(VMContext), i);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000714 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000715
Owen Anderson4a289322009-07-28 21:22:35 +0000716 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000717 Vec = Builder.CreateShuffleVector(SrcVal,
Owen Anderson03e20502009-07-30 23:11:26 +0000718 llvm::UndefValue::get(Vec->getType()),
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000719 MaskV, "tmp");
Mike Stumpb3589f42009-07-30 22:28:39 +0000720 } else if (NumDstElts > NumSrcElts) {
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000721 // Extended the source vector to the same length and then shuffle it
722 // into the destination.
723 // FIXME: since we're shuffling with undef, can we just use the indices
724 // into that? This could be simpler.
725 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
Chris Lattnereb99b012009-10-28 17:39:19 +0000726 const llvm::Type *Int32Ty = llvm::Type::getInt32Ty(VMContext);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000727 unsigned i;
728 for (i = 0; i != NumSrcElts; ++i)
Chris Lattnereb99b012009-10-28 17:39:19 +0000729 ExtMask.push_back(llvm::ConstantInt::get(Int32Ty, i));
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000730 for (; i != NumDstElts; ++i)
Chris Lattnereb99b012009-10-28 17:39:19 +0000731 ExtMask.push_back(llvm::UndefValue::get(Int32Ty));
Owen Anderson4a289322009-07-28 21:22:35 +0000732 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000733 ExtMask.size());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000734 llvm::Value *ExtSrcVal =
Daniel Dunbarbb767732009-02-17 18:31:04 +0000735 Builder.CreateShuffleVector(SrcVal,
Owen Anderson03e20502009-07-30 23:11:26 +0000736 llvm::UndefValue::get(SrcVal->getType()),
Daniel Dunbarbb767732009-02-17 18:31:04 +0000737 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000738 // build identity
739 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattnereb99b012009-10-28 17:39:19 +0000740 for (unsigned i = 0; i != NumDstElts; ++i)
741 Mask.push_back(llvm::ConstantInt::get(Int32Ty, i));
742
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000743 // modify when what gets shuffled in
744 for (unsigned i = 0; i != NumSrcElts; ++i) {
745 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattnereb99b012009-10-28 17:39:19 +0000746 Mask[Idx] = llvm::ConstantInt::get(Int32Ty, i+NumDstElts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000747 }
Owen Anderson4a289322009-07-28 21:22:35 +0000748 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000749 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
Mike Stumpb3589f42009-07-30 22:28:39 +0000750 } else {
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000751 // We should never shorten the vector
752 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000753 }
754 } else {
755 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000756 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattnereb99b012009-10-28 17:39:19 +0000757 const llvm::Type *Int32Ty = llvm::Type::getInt32Ty(VMContext);
758 llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000759 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000760 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000761
Eli Friedman1e692ac2008-06-13 23:01:12 +0000762 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000763}
764
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000765// setObjCGCLValueClass - sets class of he lvalue for the purpose of
766// generating write-barries API. It is currently a global, ivar,
767// or neither.
Chris Lattnereb99b012009-10-28 17:39:19 +0000768static void setObjCGCLValueClass(const ASTContext &Ctx, const Expr *E,
769 LValue &LV) {
Fariborz Jahanianb9242592009-09-21 23:03:37 +0000770 if (Ctx.getLangOptions().getGCMode() == LangOptions::NonGC)
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000771 return;
772
Fariborz Jahaniandbf3cfd2009-09-16 23:11:23 +0000773 if (isa<ObjCIvarRefExpr>(E)) {
774 LV.SetObjCIvar(LV, true);
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000775 ObjCIvarRefExpr *Exp = cast<ObjCIvarRefExpr>(const_cast<Expr*>(E));
776 LV.setBaseIvarExp(Exp->getBase());
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +0000777 LV.SetObjCArray(LV, E->getType()->isArrayType());
Fariborz Jahaniandbf3cfd2009-09-16 23:11:23 +0000778 return;
779 }
Chris Lattnereb99b012009-10-28 17:39:19 +0000780
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000781 if (const DeclRefExpr *Exp = dyn_cast<DeclRefExpr>(E)) {
782 if (const VarDecl *VD = dyn_cast<VarDecl>(Exp->getDecl())) {
783 if ((VD->isBlockVarDecl() && !VD->hasLocalStorage()) ||
784 VD->isFileVarDecl())
785 LV.SetGlobalObjCRef(LV, true);
786 }
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +0000787 LV.SetObjCArray(LV, E->getType()->isArrayType());
Chris Lattnereb99b012009-10-28 17:39:19 +0000788 return;
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000789 }
Chris Lattnereb99b012009-10-28 17:39:19 +0000790
791 if (const UnaryOperator *Exp = dyn_cast<UnaryOperator>(E)) {
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000792 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
Chris Lattnereb99b012009-10-28 17:39:19 +0000793 return;
794 }
795
796 if (const ParenExpr *Exp = dyn_cast<ParenExpr>(E)) {
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000797 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
Fariborz Jahanian75b08f12009-09-30 17:10:29 +0000798 if (LV.isObjCIvar()) {
799 // If cast is to a structure pointer, follow gcc's behavior and make it
800 // a non-ivar write-barrier.
801 QualType ExpTy = E->getType();
802 if (ExpTy->isPointerType())
803 ExpTy = ExpTy->getAs<PointerType>()->getPointeeType();
804 if (ExpTy->isRecordType())
805 LV.SetObjCIvar(LV, false);
Chris Lattnereb99b012009-10-28 17:39:19 +0000806 }
807 return;
Fariborz Jahanian75b08f12009-09-30 17:10:29 +0000808 }
Chris Lattnereb99b012009-10-28 17:39:19 +0000809 if (const ImplicitCastExpr *Exp = dyn_cast<ImplicitCastExpr>(E)) {
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000810 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
Chris Lattnereb99b012009-10-28 17:39:19 +0000811 return;
812 }
813
814 if (const CStyleCastExpr *Exp = dyn_cast<CStyleCastExpr>(E)) {
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000815 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
Chris Lattnereb99b012009-10-28 17:39:19 +0000816 return;
817 }
818
819 if (const ArraySubscriptExpr *Exp = dyn_cast<ArraySubscriptExpr>(E)) {
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000820 setObjCGCLValueClass(Ctx, Exp->getBase(), LV);
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +0000821 if (LV.isObjCIvar() && !LV.isObjCArray())
Fariborz Jahanian1c1afc42009-09-18 00:04:00 +0000822 // Using array syntax to assigning to what an ivar points to is not
823 // same as assigning to the ivar itself. {id *Names;} Names[i] = 0;
824 LV.SetObjCIvar(LV, false);
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +0000825 else if (LV.isGlobalObjCRef() && !LV.isObjCArray())
826 // Using array syntax to assigning to what global points to is not
827 // same as assigning to the global itself. {id *G;} G[i] = 0;
828 LV.SetGlobalObjCRef(LV, false);
Chris Lattnereb99b012009-10-28 17:39:19 +0000829 return;
Fariborz Jahanian1c1afc42009-09-18 00:04:00 +0000830 }
Chris Lattnereb99b012009-10-28 17:39:19 +0000831
832 if (const MemberExpr *Exp = dyn_cast<MemberExpr>(E)) {
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000833 setObjCGCLValueClass(Ctx, Exp->getBase(), LV);
Fariborz Jahanian1c1afc42009-09-18 00:04:00 +0000834 // We don't know if member is an 'ivar', but this flag is looked at
835 // only in the context of LV.isObjCIvar().
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +0000836 LV.SetObjCArray(LV, E->getType()->isArrayType());
Chris Lattnereb99b012009-10-28 17:39:19 +0000837 return;
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000838 }
839}
840
Anders Carlssonce53f7d2009-11-07 23:06:58 +0000841static LValue EmitGlobalVarDeclLValue(CodeGenFunction &CGF,
842 const Expr *E, const VarDecl *VD) {
Daniel Dunbard2113f22009-11-08 09:46:46 +0000843 assert((VD->hasExternalStorage() || VD->isFileVarDecl()) &&
Anders Carlssonce53f7d2009-11-07 23:06:58 +0000844 "Var decl must have external storage or be a file var decl!");
845
846 llvm::Value *V = CGF.CGM.GetAddrOfGlobalVar(VD);
847 if (VD->getType()->isReferenceType())
848 V = CGF.Builder.CreateLoad(V, "tmp");
849 LValue LV = LValue::MakeAddr(V, CGF.MakeQualifiers(E->getType()));
850 setObjCGCLValueClass(CGF.getContext(), E, LV);
851 return LV;
852}
853
Eli Friedman9a146302009-11-26 06:08:14 +0000854static LValue EmitFunctionDeclLValue(CodeGenFunction &CGF,
855 const Expr *E, const FunctionDecl *FD) {
856 llvm::Value* V = CGF.CGM.GetAddrOfFunction(FD);
857 if (!FD->hasPrototype()) {
858 if (const FunctionProtoType *Proto =
859 FD->getType()->getAs<FunctionProtoType>()) {
860 // Ugly case: for a K&R-style definition, the type of the definition
861 // isn't the same as the type of a use. Correct for this with a
862 // bitcast.
863 QualType NoProtoType =
864 CGF.getContext().getFunctionNoProtoType(Proto->getResultType());
865 NoProtoType = CGF.getContext().getPointerType(NoProtoType);
866 V = CGF.Builder.CreateBitCast(V, CGF.ConvertType(NoProtoType), "tmp");
867 }
868 }
869 return LValue::MakeAddr(V, CGF.MakeQualifiers(E->getType()));
870}
871
Reid Spencer5f016e22007-07-11 17:01:13 +0000872LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Anders Carlsson1e74c4f2009-11-07 22:53:10 +0000873 const NamedDecl *ND = E->getDecl();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000874
Anders Carlsson1e74c4f2009-11-07 22:53:10 +0000875 if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
Anders Carlsson1e74c4f2009-11-07 22:53:10 +0000876
877 // Check if this is a global variable.
Anders Carlssonce53f7d2009-11-07 23:06:58 +0000878 if (VD->hasExternalStorage() || VD->isFileVarDecl())
879 return EmitGlobalVarDeclLValue(*this, E, VD);
Anders Carlsson0bc70492009-11-07 22:46:42 +0000880
881 bool NonGCable = VD->hasLocalStorage() && !VD->hasAttr<BlocksAttr>();
882
883 llvm::Value *V = LocalDeclMap[VD];
884 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
885
886 Qualifiers Quals = MakeQualifiers(E->getType());
887 // local variables do not get their gc attribute set.
888 // local static?
889 if (NonGCable) Quals.removeObjCGCAttr();
890
891 if (VD->hasAttr<BlocksAttr>()) {
892 V = Builder.CreateStructGEP(V, 1, "forwarding");
Daniel Dunbar2da84ff2009-11-29 21:23:36 +0000893 V = Builder.CreateLoad(V);
Anders Carlsson0bc70492009-11-07 22:46:42 +0000894 V = Builder.CreateStructGEP(V, getByRefValueLLVMField(VD),
895 VD->getNameAsString());
896 }
897 if (VD->getType()->isReferenceType())
898 V = Builder.CreateLoad(V, "tmp");
Anders Carlssonce53f7d2009-11-07 23:06:58 +0000899 LValue LV = LValue::MakeAddr(V, Quals);
Anders Carlsson0bc70492009-11-07 22:46:42 +0000900 LValue::SetObjCNonGC(LV, NonGCable);
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000901 setObjCGCLValueClass(getContext(), E, LV);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000902 return LV;
Chris Lattnereb99b012009-10-28 17:39:19 +0000903 }
904
Eli Friedman9a146302009-11-26 06:08:14 +0000905 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
906 return EmitFunctionDeclLValue(*this, E, FD);
Chris Lattnereb99b012009-10-28 17:39:19 +0000907
Chris Lattnereb99b012009-10-28 17:39:19 +0000908 if (E->getQualifier()) {
Douglas Gregora2813ce2009-10-23 18:54:35 +0000909 // FIXME: the qualifier check does not seem sufficient here
Anders Carlsson1e74c4f2009-11-07 22:53:10 +0000910 return EmitPointerToDataMemberLValue(cast<FieldDecl>(ND));
Chris Lattner41110242008-06-17 18:05:57 +0000911 }
Chris Lattnereb99b012009-10-28 17:39:19 +0000912
Anders Carlsson1e74c4f2009-11-07 22:53:10 +0000913 assert(false && "Unhandled DeclRefExpr");
914
915 // an invalid LValue, but the assert will
916 // ensure that this point is never reached.
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000917 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000918}
919
Mike Stumpa99038c2009-02-28 09:07:16 +0000920LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
John McCall0953e762009-09-24 19:53:00 +0000921 return LValue::MakeAddr(GetAddrOfBlockDecl(E), MakeQualifiers(E->getType()));
Mike Stumpa99038c2009-02-28 09:07:16 +0000922}
923
Reid Spencer5f016e22007-07-11 17:01:13 +0000924LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
925 // __extension__ doesn't affect lvalue-ness.
926 if (E->getOpcode() == UnaryOperator::Extension)
927 return EmitLValue(E->getSubExpr());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000928
Chris Lattner96196622008-07-26 22:37:01 +0000929 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000930 switch (E->getOpcode()) {
931 default: assert(0 && "Unknown unary operator lvalue!");
Chris Lattnereb99b012009-10-28 17:39:19 +0000932 case UnaryOperator::Deref: {
933 QualType T = E->getSubExpr()->getType()->getPointeeType();
934 assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000935
Chris Lattnereb99b012009-10-28 17:39:19 +0000936 Qualifiers Quals = MakeQualifiers(T);
937 Quals.setAddressSpace(ExprTy.getAddressSpace());
John McCall0953e762009-09-24 19:53:00 +0000938
Chris Lattnereb99b012009-10-28 17:39:19 +0000939 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()), Quals);
940 // We should not generate __weak write barrier on indirect reference
941 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
942 // But, we continue to generate __strong write barrier on indirect write
943 // into a pointer to object.
944 if (getContext().getLangOptions().ObjC1 &&
945 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
946 LV.isObjCWeak())
947 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
948 return LV;
949 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000950 case UnaryOperator::Real:
Eli Friedmane401cd52009-11-09 04:20:47 +0000951 case UnaryOperator::Imag: {
Chris Lattner7da36f62007-10-30 22:53:42 +0000952 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000953 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
954 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000955 Idx, "idx"),
John McCall0953e762009-09-24 19:53:00 +0000956 MakeQualifiers(ExprTy));
Chris Lattner7da36f62007-10-30 22:53:42 +0000957 }
Eli Friedmane401cd52009-11-09 04:20:47 +0000958 case UnaryOperator::PreInc:
959 case UnaryOperator::PreDec:
960 return EmitUnsupportedLValue(E, "pre-inc/dec expression");
961 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000962}
963
964LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
John McCall0953e762009-09-24 19:53:00 +0000965 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E),
966 Qualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000967}
968
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000969LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
John McCall0953e762009-09-24 19:53:00 +0000970 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E),
971 Qualifiers());
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000972}
973
974
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000975LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000976 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000977
978 switch (Type) {
Chris Lattnereb99b012009-10-28 17:39:19 +0000979 default: assert(0 && "Invalid type");
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000980 case PredefinedExpr::Func:
981 GlobalVarName = "__func__.";
982 break;
983 case PredefinedExpr::Function:
984 GlobalVarName = "__FUNCTION__.";
985 break;
986 case PredefinedExpr::PrettyFunction:
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000987 GlobalVarName = "__PRETTY_FUNCTION__.";
988 break;
Anders Carlsson22742662007-07-21 05:21:51 +0000989 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000990
Daniel Dunbar0a23d762009-09-12 23:06:21 +0000991 llvm::StringRef FnName = CurFn->getName();
992 if (FnName.startswith("\01"))
993 FnName = FnName.substr(1);
994 GlobalVarName += FnName;
995
Anders Carlsson3a082d82009-09-08 18:24:21 +0000996 std::string FunctionName =
Mike Stump1eb44332009-09-09 15:08:12 +0000997 PredefinedExpr::ComputeName(getContext(), (PredefinedExpr::IdentType)Type,
Anders Carlsson3a082d82009-09-08 18:24:21 +0000998 CurCodeDecl);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000999
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001000 llvm::Constant *C =
Daniel Dunbar662b71e2008-10-17 21:58:32 +00001001 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
John McCall0953e762009-09-24 19:53:00 +00001002 return LValue::MakeAddr(C, Qualifiers());
Daniel Dunbar662b71e2008-10-17 21:58:32 +00001003}
1004
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001005LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Daniel Dunbar662b71e2008-10-17 21:58:32 +00001006 switch (E->getIdentType()) {
1007 default:
1008 return EmitUnsupportedLValue(E, "predefined expression");
1009 case PredefinedExpr::Func:
1010 case PredefinedExpr::Function:
1011 case PredefinedExpr::PrettyFunction:
1012 return EmitPredefinedFunctionName(E->getIdentType());
1013 }
Anders Carlsson22742662007-07-21 05:21:51 +00001014}
1015
Mike Stump15037ca2009-12-15 00:35:12 +00001016llvm::BasicBlock*CodeGenFunction::getTrapBB() {
1017 if (TrapBB)
1018 return TrapBB;
Mike Stump9c276ae2009-12-12 01:27:46 +00001019
1020 llvm::BasicBlock *Cont = 0;
1021 if (HaveInsertPoint()) {
1022 Cont = createBasicBlock("cont");
1023 EmitBranch(Cont);
1024 }
Mike Stump15037ca2009-12-15 00:35:12 +00001025 TrapBB = createBasicBlock("trap");
1026 EmitBlock(TrapBB);
1027
1028 llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::trap, 0, 0);
1029 llvm::CallInst *TrapCall = Builder.CreateCall(F);
1030 TrapCall->setDoesNotReturn();
1031 TrapCall->setDoesNotThrow();
Mike Stump9c276ae2009-12-12 01:27:46 +00001032 Builder.CreateUnreachable();
1033
1034 if (Cont)
1035 EmitBlock(Cont);
Mike Stump15037ca2009-12-15 00:35:12 +00001036 return TrapBB;
Mike Stump9c276ae2009-12-12 01:27:46 +00001037}
1038
Reid Spencer5f016e22007-07-11 17:01:13 +00001039LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +00001040 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +00001041 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Eli Friedman61d004a2009-06-06 19:09:26 +00001042 QualType IdxTy = E->getIdx()->getType();
1043 bool IdxSigned = IdxTy->isSignedIntegerType();
1044
Reid Spencer5f016e22007-07-11 17:01:13 +00001045 // If the base is a vector type, then we are forming a vector element lvalue
1046 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +00001047 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001048 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +00001049 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +00001050 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001051 Idx = Builder.CreateIntCast(Idx,
Owen Anderson0032b272009-08-13 21:57:51 +00001052 llvm::Type::getInt32Ty(VMContext), IdxSigned, "vidx");
Eli Friedman1e692ac2008-06-13 23:01:12 +00001053 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
John McCall0953e762009-09-24 19:53:00 +00001054 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +00001055 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001056
Ted Kremenek23245122007-08-20 16:18:38 +00001057 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +00001058 llvm::Value *Base = EmitScalarExpr(E->getBase());
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001059
Ted Kremenek23245122007-08-20 16:18:38 +00001060 // Extend or truncate the index type to 32 or 64-bits.
Reid Spencer5f016e22007-07-11 17:01:13 +00001061 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta7cabee52009-04-24 02:40:57 +00001062 if (IdxBitwidth != LLVMPointerWidth)
Owen Anderson0032b272009-08-13 21:57:51 +00001063 Idx = Builder.CreateIntCast(Idx,
1064 llvm::IntegerType::get(VMContext, LLVMPointerWidth),
Reid Spencer5f016e22007-07-11 17:01:13 +00001065 IdxSigned, "idxprom");
1066
Mike Stump9c276ae2009-12-12 01:27:46 +00001067 if (CatchUndefined) {
1068 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E->getBase())) {
1069 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1070 if (ICE->getCastKind() == CastExpr::CK_ArrayToPointerDecay) {
1071 if (const ConstantArrayType *CAT
1072 = getContext().getAsConstantArrayType(DRE->getType())) {
1073 llvm::APInt Size = CAT->getSize();
1074 llvm::BasicBlock *Cont = createBasicBlock("cont");
Mike Stump750c85e2009-12-14 22:14:31 +00001075 Builder.CreateCondBr(Builder.CreateICmpULE(Idx,
Mike Stump9c276ae2009-12-12 01:27:46 +00001076 llvm::ConstantInt::get(Idx->getType(), Size)),
Mike Stump15037ca2009-12-15 00:35:12 +00001077 Cont, getTrapBB());
Mike Stump96a063a2009-12-14 20:52:00 +00001078 EmitBlock(Cont);
Mike Stump9c276ae2009-12-12 01:27:46 +00001079 }
1080 }
1081 }
1082 }
1083 }
1084
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001085 // We know that the pointer points to a type of the correct size, unless the
1086 // size is a VLA or Objective-C interface.
Daniel Dunbar2a866252009-04-25 05:08:32 +00001087 llvm::Value *Address = 0;
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001088 if (const VariableArrayType *VAT =
Anders Carlsson8b33c082008-12-21 00:11:23 +00001089 getContext().getAsVariableArrayType(E->getType())) {
Chris Lattner881eb9c2009-08-14 23:43:22 +00001090 llvm::Value *VLASize = GetVLASize(VAT);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001091
Anders Carlsson8b33c082008-12-21 00:11:23 +00001092 Idx = Builder.CreateMul(Idx, VLASize);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001093
Anders Carlsson6183a992008-12-21 03:44:36 +00001094 QualType BaseType = getContext().getBaseElementType(VAT);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001095
Anders Carlsson8b33c082008-12-21 00:11:23 +00001096 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
1097 Idx = Builder.CreateUDiv(Idx,
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001098 llvm::ConstantInt::get(Idx->getType(),
Anders Carlsson8b33c082008-12-21 00:11:23 +00001099 BaseTypeSize));
Dan Gohman664f8932009-08-12 00:33:55 +00001100 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001101 } else if (const ObjCInterfaceType *OIT =
Daniel Dunbar2a866252009-04-25 05:08:32 +00001102 dyn_cast<ObjCInterfaceType>(E->getType())) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001103 llvm::Value *InterfaceSize =
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001104 llvm::ConstantInt::get(Idx->getType(),
Daniel Dunbar2a866252009-04-25 05:08:32 +00001105 getContext().getTypeSize(OIT) / 8);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001106
Daniel Dunbar2a866252009-04-25 05:08:32 +00001107 Idx = Builder.CreateMul(Idx, InterfaceSize);
1108
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +00001109 const llvm::Type *i8PTy = llvm::Type::getInt8PtrTy(VMContext);
Dan Gohman664f8932009-08-12 00:33:55 +00001110 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
Daniel Dunbar2a866252009-04-25 05:08:32 +00001111 Idx, "arrayidx");
1112 Address = Builder.CreateBitCast(Address, Base->getType());
1113 } else {
Dan Gohman664f8932009-08-12 00:33:55 +00001114 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
Anders Carlsson8b33c082008-12-21 00:11:23 +00001115 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001116
Steve Naroff14108da2009-07-10 23:34:53 +00001117 QualType T = E->getBase()->getType()->getPointeeType();
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001118 assert(!T.isNull() &&
Steve Naroff14108da2009-07-10 23:34:53 +00001119 "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001120
John McCall0953e762009-09-24 19:53:00 +00001121 Qualifiers Quals = MakeQualifiers(T);
1122 Quals.setAddressSpace(E->getBase()->getType().getAddressSpace());
1123
1124 LValue LV = LValue::MakeAddr(Address, Quals);
Fariborz Jahanian643887a2009-02-21 23:37:19 +00001125 if (getContext().getLangOptions().ObjC1 &&
Fariborz Jahanianb123ea32009-09-16 21:37:16 +00001126 getContext().getLangOptions().getGCMode() != LangOptions::NonGC) {
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001127 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanianb123ea32009-09-16 21:37:16 +00001128 setObjCGCLValueClass(getContext(), E, LV);
1129 }
Fariborz Jahanian643887a2009-02-21 23:37:19 +00001130 return LV;
Reid Spencer5f016e22007-07-11 17:01:13 +00001131}
1132
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001133static
Owen Andersona1cf15f2009-07-14 23:10:40 +00001134llvm::Constant *GenerateConstantVector(llvm::LLVMContext &VMContext,
1135 llvm::SmallVector<unsigned, 4> &Elts) {
Nate Begeman3b8d1162008-05-13 21:03:02 +00001136 llvm::SmallVector<llvm::Constant *, 4> CElts;
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001137
Nate Begeman3b8d1162008-05-13 21:03:02 +00001138 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
Owen Anderson0032b272009-08-13 21:57:51 +00001139 CElts.push_back(llvm::ConstantInt::get(
1140 llvm::Type::getInt32Ty(VMContext), Elts[i]));
Nate Begeman3b8d1162008-05-13 21:03:02 +00001141
Owen Anderson4a289322009-07-28 21:22:35 +00001142 return llvm::ConstantVector::get(&CElts[0], CElts.size());
Nate Begeman3b8d1162008-05-13 21:03:02 +00001143}
1144
Chris Lattner349aaec2007-08-02 23:37:31 +00001145LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +00001146EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +00001147 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +00001148 LValue Base;
1149
1150 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +00001151 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +00001152 assert(E->getBase()->getType()->isVectorType());
1153 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +00001154 } else {
Ted Kremenek6217b802009-07-29 21:53:49 +00001155 const PointerType *PT = E->getBase()->getType()->getAs<PointerType>();
Chris Lattner2140e902009-02-16 22:14:05 +00001156 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
John McCall0953e762009-09-24 19:53:00 +00001157 Qualifiers Quals = MakeQualifiers(PT->getPointeeType());
1158 Quals.removeObjCGCAttr();
1159 Base = LValue::MakeAddr(Ptr, Quals);
Chris Lattner73525de2009-02-16 21:11:58 +00001160 }
Chris Lattner349aaec2007-08-02 23:37:31 +00001161
Nate Begeman3b8d1162008-05-13 21:03:02 +00001162 // Encode the element access list into a vector of unsigned indices.
1163 llvm::SmallVector<unsigned, 4> Indices;
1164 E->getEncodedElementAccess(Indices);
1165
1166 if (Base.isSimple()) {
Owen Andersona1cf15f2009-07-14 23:10:40 +00001167 llvm::Constant *CV = GenerateConstantVector(VMContext, Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +00001168 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
John McCall0953e762009-09-24 19:53:00 +00001169 Base.getVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +00001170 }
1171 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
1172
1173 llvm::Constant *BaseElts = Base.getExtVectorElts();
1174 llvm::SmallVector<llvm::Constant *, 4> CElts;
1175
Chris Lattner67665862009-10-28 05:12:07 +00001176 const llvm::Type *Int32Ty = llvm::Type::getInt32Ty(VMContext);
Nate Begeman3b8d1162008-05-13 21:03:02 +00001177 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
1178 if (isa<llvm::ConstantAggregateZero>(BaseElts))
Chris Lattner67665862009-10-28 05:12:07 +00001179 CElts.push_back(llvm::ConstantInt::get(Int32Ty, 0));
Nate Begeman3b8d1162008-05-13 21:03:02 +00001180 else
Chris Lattner67665862009-10-28 05:12:07 +00001181 CElts.push_back(cast<llvm::Constant>(BaseElts->getOperand(Indices[i])));
Nate Begeman3b8d1162008-05-13 21:03:02 +00001182 }
Owen Anderson4a289322009-07-28 21:22:35 +00001183 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +00001184 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
John McCall0953e762009-09-24 19:53:00 +00001185 Base.getVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +00001186}
1187
Devang Patelb9b00ad2007-10-23 20:28:39 +00001188LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +00001189 bool isUnion = false;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +00001190 bool isNonGC = false;
Devang Patel126a8562007-10-24 22:26:28 +00001191 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +00001192 llvm::Value *BaseValue = NULL;
John McCall0953e762009-09-24 19:53:00 +00001193 Qualifiers BaseQuals;
Eli Friedman1e692ac2008-06-13 23:01:12 +00001194
Chris Lattner12f65f62007-12-02 18:52:07 +00001195 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patelfe2419a2007-12-11 21:33:16 +00001196 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +00001197 BaseValue = EmitScalarExpr(BaseExpr);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001198 const PointerType *PTy =
Ted Kremenek6217b802009-07-29 21:53:49 +00001199 BaseExpr->getType()->getAs<PointerType>();
Devang Patelfe2419a2007-12-11 21:33:16 +00001200 if (PTy->getPointeeType()->isUnionType())
1201 isUnion = true;
John McCall0953e762009-09-24 19:53:00 +00001202 BaseQuals = PTy->getPointeeType().getQualifiers();
Fariborz Jahaniand2e1eb02009-09-01 17:02:21 +00001203 } else if (isa<ObjCPropertyRefExpr>(BaseExpr->IgnoreParens()) ||
1204 isa<ObjCImplicitSetterGetterRefExpr>(
1205 BaseExpr->IgnoreParens())) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +00001206 RValue RV = EmitObjCPropertyGet(BaseExpr);
1207 BaseValue = RV.getAggregateAddr();
1208 if (BaseExpr->getType()->isUnionType())
1209 isUnion = true;
John McCall0953e762009-09-24 19:53:00 +00001210 BaseQuals = BaseExpr->getType().getQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +00001211 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +00001212 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +00001213 if (BaseLV.isNonGC())
1214 isNonGC = true;
Chris Lattner12f65f62007-12-02 18:52:07 +00001215 // FIXME: this isn't right for bitfields.
1216 BaseValue = BaseLV.getAddress();
Fariborz Jahaniana91d6a62009-07-29 00:44:13 +00001217 QualType BaseTy = BaseExpr->getType();
1218 if (BaseTy->isUnionType())
Devang Patelfe2419a2007-12-11 21:33:16 +00001219 isUnion = true;
John McCall0953e762009-09-24 19:53:00 +00001220 BaseQuals = BaseTy.getQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +00001221 }
Devang Patelb9b00ad2007-10-23 20:28:39 +00001222
Anders Carlssonce53f7d2009-11-07 23:06:58 +00001223 NamedDecl *ND = E->getMemberDecl();
1224 if (FieldDecl *Field = dyn_cast<FieldDecl>(ND)) {
1225 LValue LV = EmitLValueForField(BaseValue, Field, isUnion,
1226 BaseQuals.getCVRQualifiers());
1227 LValue::SetObjCNonGC(LV, isNonGC);
1228 setObjCGCLValueClass(getContext(), E, LV);
1229 return LV;
1230 }
1231
Anders Carlsson589f9e32009-11-07 23:16:50 +00001232 if (VarDecl *VD = dyn_cast<VarDecl>(ND))
1233 return EmitGlobalVarDeclLValue(*this, E, VD);
Eli Friedman9a146302009-11-26 06:08:14 +00001234
1235 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
1236 return EmitFunctionDeclLValue(*this, E, FD);
1237
Anders Carlssonce53f7d2009-11-07 23:06:58 +00001238 assert(false && "Unhandled member declaration!");
1239 return LValue();
Eli Friedman472778e2008-02-09 08:50:58 +00001240}
Devang Patelb9b00ad2007-10-23 20:28:39 +00001241
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001242LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
Anders Carlsson0ed303c2009-11-17 03:57:07 +00001243 const FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001244 unsigned CVRQualifiers) {
Anders Carlsson8330cee2009-07-23 17:01:21 +00001245 CodeGenTypes::BitFieldInfo Info = CGM.getTypes().getBitFieldInfo(Field);
1246
Mike Stumpf5408fe2009-05-16 07:57:57 +00001247 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
1248 // FieldTy (the appropriate type is ABI-dependent).
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001249 const llvm::Type *FieldTy =
Daniel Dunbarbb767732009-02-17 18:31:04 +00001250 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001251 const llvm::PointerType *BaseTy =
1252 cast<llvm::PointerType>(BaseValue->getType());
1253 unsigned AS = BaseTy->getAddressSpace();
1254 BaseValue = Builder.CreateBitCast(BaseValue,
Owen Anderson96e0fc72009-07-29 22:16:19 +00001255 llvm::PointerType::get(FieldTy, AS),
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001256 "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001257
1258 llvm::Value *Idx =
Owen Anderson0032b272009-08-13 21:57:51 +00001259 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), Info.FieldNo);
Anders Carlsson8330cee2009-07-23 17:01:21 +00001260 llvm::Value *V = Builder.CreateGEP(BaseValue, Idx, "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001261
Anders Carlsson8330cee2009-07-23 17:01:21 +00001262 return LValue::MakeBitfield(V, Info.Start, Info.Size,
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001263 Field->getType()->isSignedIntegerType(),
1264 Field->getType().getCVRQualifiers()|CVRQualifiers);
1265}
1266
Eli Friedman472778e2008-02-09 08:50:58 +00001267LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
Anders Carlsson0ed303c2009-11-17 03:57:07 +00001268 const FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +00001269 bool isUnion,
Mike Stump1eb44332009-09-09 15:08:12 +00001270 unsigned CVRQualifiers) {
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001271 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001272 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001273
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001274 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001275 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +00001276
Devang Patelabad06c2007-10-26 19:42:18 +00001277 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +00001278 if (isUnion) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001279 const llvm::Type *FieldTy =
Eli Friedman1e692ac2008-06-13 23:01:12 +00001280 CGM.getTypes().ConvertTypeForMem(Field->getType());
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001281 const llvm::PointerType * BaseTy =
Devang Patele9b8c0a2007-10-30 20:59:40 +00001282 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +00001283 unsigned AS = BaseTy->getAddressSpace();
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001284 V = Builder.CreateBitCast(V,
1285 llvm::PointerType::get(FieldTy, AS),
Eli Friedman788d5712008-05-21 13:24:44 +00001286 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +00001287 }
Eli Friedman2be58612009-05-30 21:09:44 +00001288 if (Field->getType()->isReferenceType())
1289 V = Builder.CreateLoad(V, "tmp");
John McCall0953e762009-09-24 19:53:00 +00001290
1291 Qualifiers Quals = MakeQualifiers(Field->getType());
1292 Quals.addCVRQualifiers(CVRQualifiers);
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +00001293 // __weak attribute on a field is ignored.
John McCall0953e762009-09-24 19:53:00 +00001294 if (Quals.getObjCGCAttr() == Qualifiers::Weak)
1295 Quals.removeObjCGCAttr();
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +00001296
John McCall0953e762009-09-24 19:53:00 +00001297 return LValue::MakeAddr(V, Quals);
Devang Patelb9b00ad2007-10-23 20:28:39 +00001298}
1299
Chris Lattner75dfeda2009-03-18 18:28:57 +00001300LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman06e863f2008-05-13 23:18:27 +00001301 const llvm::Type *LTy = ConvertType(E->getType());
1302 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1303
1304 const Expr* InitExpr = E->getInitializer();
John McCall0953e762009-09-24 19:53:00 +00001305 LValue Result = LValue::MakeAddr(DeclPtr, MakeQualifiers(E->getType()));
Eli Friedman06e863f2008-05-13 23:18:27 +00001306
Chris Lattnereb99b012009-10-28 17:39:19 +00001307 if (E->getType()->isComplexType())
Eli Friedman06e863f2008-05-13 23:18:27 +00001308 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
Chris Lattnereb99b012009-10-28 17:39:19 +00001309 else if (hasAggregateLLVMType(E->getType()))
Eli Friedman06e863f2008-05-13 23:18:27 +00001310 EmitAnyExpr(InitExpr, DeclPtr, false);
Chris Lattnereb99b012009-10-28 17:39:19 +00001311 else
Eli Friedman06e863f2008-05-13 23:18:27 +00001312 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
Eli Friedman06e863f2008-05-13 23:18:27 +00001313
1314 return Result;
1315}
1316
Anders Carlsson6fcec8b2009-09-15 16:35:24 +00001317LValue
1318CodeGenFunction::EmitConditionalOperatorLValue(const ConditionalOperator* E) {
1319 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
1320 llvm::BasicBlock *LHSBlock = createBasicBlock("cond.true");
1321 llvm::BasicBlock *RHSBlock = createBasicBlock("cond.false");
1322 llvm::BasicBlock *ContBlock = createBasicBlock("cond.end");
1323
1324 llvm::Value *Cond = EvaluateExprAsBool(E->getCond());
1325 Builder.CreateCondBr(Cond, LHSBlock, RHSBlock);
1326
1327 EmitBlock(LHSBlock);
Daniel Dunbar90345582009-03-24 02:38:23 +00001328
Anders Carlsson6fcec8b2009-09-15 16:35:24 +00001329 LValue LHS = EmitLValue(E->getLHS());
1330 if (!LHS.isSimple())
1331 return EmitUnsupportedLValue(E, "conditional operator");
1332
Chris Lattnereb99b012009-10-28 17:39:19 +00001333 llvm::Value *Temp = CreateTempAlloca(LHS.getAddress()->getType(),"condtmp");
Anders Carlsson6fcec8b2009-09-15 16:35:24 +00001334 Builder.CreateStore(LHS.getAddress(), Temp);
1335 EmitBranch(ContBlock);
1336
1337 EmitBlock(RHSBlock);
1338 LValue RHS = EmitLValue(E->getRHS());
1339 if (!RHS.isSimple())
1340 return EmitUnsupportedLValue(E, "conditional operator");
1341
1342 Builder.CreateStore(RHS.getAddress(), Temp);
1343 EmitBranch(ContBlock);
1344
1345 EmitBlock(ContBlock);
1346
1347 Temp = Builder.CreateLoad(Temp, "lv");
John McCall0953e762009-09-24 19:53:00 +00001348 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Anders Carlsson6fcec8b2009-09-15 16:35:24 +00001349 }
1350
Daniel Dunbar90345582009-03-24 02:38:23 +00001351 // ?: here should be an aggregate.
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001352 assert((hasAggregateLLVMType(E->getType()) &&
Daniel Dunbar90345582009-03-24 02:38:23 +00001353 !E->getType()->isAnyComplexType()) &&
1354 "Unexpected conditional operator!");
1355
1356 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1357 EmitAggExpr(E, Temp, false);
1358
John McCall0953e762009-09-24 19:53:00 +00001359 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Daniel Dunbar90345582009-03-24 02:38:23 +00001360}
1361
Mike Stumpc849c052009-11-16 06:50:58 +00001362/// EmitCastLValue - Casts are never lvalues unless that cast is a dynamic_cast.
1363/// If the cast is a dynamic_cast, we can have the usual lvalue result,
1364/// otherwise if a cast is needed by the code generator in an lvalue context,
1365/// then it must mean that we need the address of an aggregate in order to
1366/// access one of its fields. This can happen for all the reasons that casts
1367/// are permitted with aggregate result, including noop aggregate casts, and
1368/// cast from scalar to union.
Chris Lattner75dfeda2009-03-18 18:28:57 +00001369LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001370 switch (E->getCastKind()) {
1371 default:
Eli Friedmaneaae78a2009-11-16 05:48:01 +00001372 return EmitUnsupportedLValue(E, "unexpected cast lvalue");
1373
Mike Stumpc849c052009-11-16 06:50:58 +00001374 case CastExpr::CK_Dynamic: {
1375 LValue LV = EmitLValue(E->getSubExpr());
1376 llvm::Value *V = LV.getAddress();
1377 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(E);
1378 return LValue::MakeAddr(EmitDynamicCast(V, DCE),
1379 MakeQualifiers(E->getType()));
1380 }
1381
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001382 case CastExpr::CK_NoOp:
1383 case CastExpr::CK_ConstructorConversion:
1384 case CastExpr::CK_UserDefinedConversion:
Chris Lattner75dfeda2009-03-18 18:28:57 +00001385 return EmitLValue(E->getSubExpr());
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001386
1387 case CastExpr::CK_DerivedToBase: {
1388 const RecordType *DerivedClassTy =
1389 E->getSubExpr()->getType()->getAs<RecordType>();
1390 CXXRecordDecl *DerivedClassDecl =
1391 cast<CXXRecordDecl>(DerivedClassTy->getDecl());
Chris Lattner75dfeda2009-03-18 18:28:57 +00001392
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001393 const RecordType *BaseClassTy = E->getType()->getAs<RecordType>();
1394 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseClassTy->getDecl());
1395
1396 LValue LV = EmitLValue(E->getSubExpr());
1397
1398 // Perform the derived-to-base conversion
1399 llvm::Value *Base =
Anders Carlssona3697c92009-11-23 17:57:54 +00001400 GetAddressOfBaseClass(LV.getAddress(), DerivedClassDecl,
1401 BaseClassDecl, /*NullCheckValue=*/false);
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001402
John McCall0953e762009-09-24 19:53:00 +00001403 return LValue::MakeAddr(Base, MakeQualifiers(E->getType()));
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001404 }
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001405 case CastExpr::CK_ToUnion: {
1406 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1407 EmitAnyExpr(E->getSubExpr(), Temp, false);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001408
John McCall0953e762009-09-24 19:53:00 +00001409 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Anders Carlsson658e8122009-11-14 21:21:42 +00001410 }
Eli Friedmaneaae78a2009-11-16 05:48:01 +00001411 case CastExpr::CK_BaseToDerived: {
Anders Carlssona3697c92009-11-23 17:57:54 +00001412 const RecordType *BaseClassTy =
1413 E->getSubExpr()->getType()->getAs<RecordType>();
1414 CXXRecordDecl *BaseClassDecl =
1415 cast<CXXRecordDecl>(BaseClassTy->getDecl());
1416
1417 const RecordType *DerivedClassTy = E->getType()->getAs<RecordType>();
1418 CXXRecordDecl *DerivedClassDecl =
1419 cast<CXXRecordDecl>(DerivedClassTy->getDecl());
1420
1421 LValue LV = EmitLValue(E->getSubExpr());
1422
1423 // Perform the base-to-derived conversion
1424 llvm::Value *Derived =
1425 GetAddressOfDerivedClass(LV.getAddress(), BaseClassDecl,
1426 DerivedClassDecl, /*NullCheckValue=*/false);
1427
1428 return LValue::MakeAddr(Derived, MakeQualifiers(E->getType()));
Eli Friedmaneaae78a2009-11-16 05:48:01 +00001429 }
Anders Carlsson658e8122009-11-14 21:21:42 +00001430 case CastExpr::CK_BitCast: {
Eli Friedmaneaae78a2009-11-16 05:48:01 +00001431 // This must be a reinterpret_cast (or c-style equivalent).
1432 const ExplicitCastExpr *CE = cast<ExplicitCastExpr>(E);
Anders Carlsson658e8122009-11-14 21:21:42 +00001433
1434 LValue LV = EmitLValue(E->getSubExpr());
1435 llvm::Value *V = Builder.CreateBitCast(LV.getAddress(),
1436 ConvertType(CE->getTypeAsWritten()));
1437 return LValue::MakeAddr(V, MakeQualifiers(E->getType()));
1438 }
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001439 }
Chris Lattner75dfeda2009-03-18 18:28:57 +00001440}
1441
Fariborz Jahanian48620ba2009-10-20 23:29:04 +00001442LValue CodeGenFunction::EmitNullInitializationLValue(
1443 const CXXZeroInitValueExpr *E) {
1444 QualType Ty = E->getType();
1445 const llvm::Type *LTy = ConvertTypeForMem(Ty);
1446 llvm::AllocaInst *Alloc = CreateTempAlloca(LTy);
1447 unsigned Align = getContext().getTypeAlign(Ty)/8;
1448 Alloc->setAlignment(Align);
1449 LValue lvalue = LValue::MakeAddr(Alloc, Qualifiers());
1450 EmitMemSetToZero(lvalue.getAddress(), Ty);
1451 return lvalue;
1452}
1453
Reid Spencer5f016e22007-07-11 17:01:13 +00001454//===--------------------------------------------------------------------===//
1455// Expression Emission
1456//===--------------------------------------------------------------------===//
1457
Chris Lattner7016a702007-08-20 22:37:10 +00001458
Reid Spencer5f016e22007-07-11 17:01:13 +00001459RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001460 // Builtins never have block type.
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001461 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +00001462 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001463
Anders Carlsson774e7c62009-04-03 22:50:24 +00001464 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1465 return EmitCXXMemberCallExpr(CE);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001466
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001467 const Decl *TargetDecl = 0;
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001468 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1469 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1470 TargetDecl = DRE->getDecl();
1471 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
Douglas Gregor7814e6d2009-09-12 00:22:50 +00001472 if (unsigned builtinID = FD->getBuiltinID())
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001473 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001474 }
1475 }
1476
Chris Lattner5db7ae52009-06-13 00:26:38 +00001477 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
Anders Carlsson0f294632009-05-27 04:18:27 +00001478 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
1479 return EmitCXXOperatorMemberCallExpr(CE, MD);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001480
Eli Friedmanc4451db2009-12-08 02:09:46 +00001481 if (isa<CXXPseudoDestructorExpr>(E->getCallee()->IgnoreParens())) {
Douglas Gregora71d8192009-09-04 17:36:40 +00001482 // C++ [expr.pseudo]p1:
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001483 // The result shall only be used as the operand for the function call
Douglas Gregora71d8192009-09-04 17:36:40 +00001484 // operator (), and the result of such a call has type void. The only
1485 // effect is the evaluation of the postfix-expression before the dot or
1486 // arrow.
1487 EmitScalarExpr(E->getCallee());
1488 return RValue::get(0);
1489 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001490
Chris Lattner7f02f722007-08-24 05:35:26 +00001491 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Anders Carlsson98647712009-05-27 01:22:39 +00001492 return EmitCall(Callee, E->getCallee()->getType(),
1493 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattnerc5e940f2007-08-31 04:44:06 +00001494}
1495
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001496LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattner7a574cc2009-05-12 21:28:12 +00001497 // Comma expressions just emit their LHS then their RHS as an l-value.
1498 if (E->getOpcode() == BinaryOperator::Comma) {
1499 EmitAnyExpr(E->getLHS());
Eli Friedman130c69e2009-12-07 20:18:11 +00001500 EnsureInsertPoint();
Chris Lattner7a574cc2009-05-12 21:28:12 +00001501 return EmitLValue(E->getRHS());
1502 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001503
Fariborz Jahanian52f08bc2009-10-26 21:58:25 +00001504 if (E->getOpcode() == BinaryOperator::PtrMemD ||
1505 E->getOpcode() == BinaryOperator::PtrMemI)
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +00001506 return EmitPointerToDataMemberBinaryExpr(E);
1507
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001508 // Can only get l-value for binary operator expressions which are a
1509 // simple assignment of aggregate type.
1510 if (E->getOpcode() != BinaryOperator::Assign)
1511 return EmitUnsupportedLValue(E, "binary l-value expression");
1512
Anders Carlsson86aa0cd2009-10-19 18:28:22 +00001513 if (!hasAggregateLLVMType(E->getType())) {
1514 // Emit the LHS as an l-value.
1515 LValue LV = EmitLValue(E->getLHS());
1516
1517 llvm::Value *RHS = EmitScalarExpr(E->getRHS());
1518 EmitStoreOfScalar(RHS, LV.getAddress(), LV.isVolatileQualified(),
1519 E->getType());
1520 return LV;
1521 }
1522
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001523 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1524 EmitAggExpr(E, Temp, false);
1525 // FIXME: Are these qualifiers correct?
John McCall0953e762009-09-24 19:53:00 +00001526 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001527}
1528
Christopher Lamb22c940e2007-12-29 05:02:41 +00001529LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
Christopher Lamb22c940e2007-12-29 05:02:41 +00001530 RValue RV = EmitCallExpr(E);
Anders Carlsson48265682009-05-27 01:45:47 +00001531
Chris Lattnereb99b012009-10-28 17:39:19 +00001532 if (!RV.isScalar())
1533 return LValue::MakeAddr(RV.getAggregateAddr(),MakeQualifiers(E->getType()));
1534
1535 assert(E->getCallReturnType()->isReferenceType() &&
1536 "Can't have a scalar return unless the return type is a "
1537 "reference type!");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001538
Chris Lattnereb99b012009-10-28 17:39:19 +00001539 return LValue::MakeAddr(RV.getScalarVal(), MakeQualifiers(E->getType()));
Christopher Lamb22c940e2007-12-29 05:02:41 +00001540}
1541
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001542LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1543 // FIXME: This shouldn't require another copy.
1544 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1545 EmitAggExpr(E, Temp, false);
John McCall0953e762009-09-24 19:53:00 +00001546 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001547}
1548
Anders Carlssonb58d0172009-05-30 23:23:33 +00001549LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
1550 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()), "tmp");
1551 EmitCXXConstructExpr(Temp, E);
John McCall0953e762009-09-24 19:53:00 +00001552 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Anders Carlssonb58d0172009-05-30 23:23:33 +00001553}
1554
Anders Carlssone61c9e82009-05-30 23:30:54 +00001555LValue
Mike Stumpc2e84ae2009-11-15 08:09:41 +00001556CodeGenFunction::EmitCXXTypeidLValue(const CXXTypeidExpr *E) {
1557 llvm::Value *Temp = EmitCXXTypeidExpr(E);
1558 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
1559}
1560
1561LValue
Anders Carlssone61c9e82009-05-30 23:30:54 +00001562CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
1563 LValue LV = EmitLValue(E->getSubExpr());
Anders Carlsson543ac0c2009-05-31 00:34:10 +00001564 PushCXXTemporary(E->getTemporary(), LV.getAddress());
Anders Carlssone61c9e82009-05-30 23:30:54 +00001565 return LV;
1566}
1567
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001568LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1569 // Can only get l-value for message expression returning aggregate type
1570 RValue RV = EmitObjCMessageExpr(E);
1571 // FIXME: can this be volatile?
John McCall0953e762009-09-24 19:53:00 +00001572 return LValue::MakeAddr(RV.getAggregateAddr(), MakeQualifiers(E->getType()));
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001573}
1574
Daniel Dunbar2a031922009-04-22 05:08:15 +00001575llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001576 const ObjCIvarDecl *Ivar) {
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001577 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001578}
1579
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001580LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1581 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001582 const ObjCIvarDecl *Ivar,
1583 unsigned CVRQualifiers) {
Chris Lattner26f074b2009-04-17 17:44:48 +00001584 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001585 Ivar, CVRQualifiers);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001586}
1587
1588LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001589 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1590 llvm::Value *BaseValue = 0;
1591 const Expr *BaseExpr = E->getBase();
John McCall0953e762009-09-24 19:53:00 +00001592 Qualifiers BaseQuals;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001593 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001594 if (E->isArrow()) {
1595 BaseValue = EmitScalarExpr(BaseExpr);
Steve Naroff14108da2009-07-10 23:34:53 +00001596 ObjectTy = BaseExpr->getType()->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00001597 BaseQuals = ObjectTy.getQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001598 } else {
1599 LValue BaseLV = EmitLValue(BaseExpr);
1600 // FIXME: this isn't right for bitfields.
1601 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001602 ObjectTy = BaseExpr->getType();
John McCall0953e762009-09-24 19:53:00 +00001603 BaseQuals = ObjectTy.getQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001604 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001605
Fariborz Jahaniandbf3cfd2009-09-16 23:11:23 +00001606 LValue LV =
John McCall0953e762009-09-24 19:53:00 +00001607 EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
1608 BaseQuals.getCVRQualifiers());
Fariborz Jahaniandbf3cfd2009-09-16 23:11:23 +00001609 setObjCGCLValueClass(getContext(), E, LV);
1610 return LV;
Chris Lattner391d77a2008-03-30 23:03:07 +00001611}
1612
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001613LValue
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001614CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001615 // This is a special l-value that just issues sends when we load or store
1616 // through it.
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001617 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1618}
1619
Chris Lattnereb99b012009-10-28 17:39:19 +00001620LValue CodeGenFunction::EmitObjCKVCRefLValue(
Fariborz Jahanian09105f52009-08-20 17:02:02 +00001621 const ObjCImplicitSetterGetterRefExpr *E) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001622 // This is a special l-value that just issues sends when we load or store
1623 // through it.
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001624 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1625}
1626
Chris Lattnereb99b012009-10-28 17:39:19 +00001627LValue CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001628 return EmitUnsupportedLValue(E, "use of super");
1629}
1630
Chris Lattner65459942009-04-25 19:35:26 +00001631LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
Chris Lattner65459942009-04-25 19:35:26 +00001632 // Can only get l-value for message expression returning aggregate type
1633 RValue RV = EmitAnyExprToTemp(E);
1634 // FIXME: can this be volatile?
John McCall0953e762009-09-24 19:53:00 +00001635 return LValue::MakeAddr(RV.getAggregateAddr(), MakeQualifiers(E->getType()));
Chris Lattner65459942009-04-25 19:35:26 +00001636}
1637
1638
Anders Carlsson909fbf72009-11-07 22:00:15 +00001639LValue CodeGenFunction::EmitPointerToDataMemberLValue(const FieldDecl *Field) {
Fariborz Jahanian39762952009-10-21 21:01:47 +00001640 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Field->getDeclContext());
1641 QualType NNSpecTy =
1642 getContext().getCanonicalType(
1643 getContext().getTypeDeclType(const_cast<CXXRecordDecl*>(ClassDecl)));
Fariborz Jahaniana6362992009-10-21 18:38:00 +00001644 NNSpecTy = getContext().getPointerType(NNSpecTy);
1645 llvm::Value *V = llvm::Constant::getNullValue(ConvertType(NNSpecTy));
Anders Carlsson0ed303c2009-11-17 03:57:07 +00001646 LValue MemExpLV = EmitLValueForField(V, Field, /*isUnion=*/false,
1647 /*Qualifiers=*/0);
Chris Lattnereb99b012009-10-28 17:39:19 +00001648 const llvm::Type *ResultType = ConvertType(getContext().getPointerDiffType());
1649 V = Builder.CreatePtrToInt(MemExpLV.getAddress(), ResultType, "datamember");
Anders Carlsson909fbf72009-11-07 22:00:15 +00001650 return LValue::MakeAddr(V, MakeQualifiers(Field->getType()));
Fariborz Jahaniana6362992009-10-21 18:38:00 +00001651}
1652
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001653RValue CodeGenFunction::EmitCall(llvm::Value *Callee, QualType CalleeType,
Anders Carlsson98647712009-05-27 01:22:39 +00001654 CallExpr::const_arg_iterator ArgBeg,
1655 CallExpr::const_arg_iterator ArgEnd,
1656 const Decl *TargetDecl) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001657 // Get the actual function type. The callee type will always be a pointer to
1658 // function type or a block pointer type.
1659 assert(CalleeType->isFunctionPointerType() &&
Anders Carlsson8ac67a72009-04-07 18:53:02 +00001660 "Call must have function pointer type!");
1661
John McCall00a1ad92009-10-23 08:22:42 +00001662 CalleeType = getContext().getCanonicalType(CalleeType);
1663
1664 QualType FnType = cast<PointerType>(CalleeType)->getPointeeType();
1665 QualType ResultType = cast<FunctionType>(FnType)->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001666
1667 CallArgList Args;
John McCall00a1ad92009-10-23 08:22:42 +00001668 EmitCallArgs(Args, dyn_cast<FunctionProtoType>(FnType), ArgBeg, ArgEnd);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001669
Daniel Dunbar8a9f3fd2009-09-11 22:25:00 +00001670 // FIXME: We should not need to do this, it should be part of the function
1671 // type.
1672 unsigned CallingConvention = 0;
1673 if (const llvm::Function *F =
1674 dyn_cast<llvm::Function>(Callee->stripPointerCasts()))
1675 CallingConvention = F->getCallingConv();
1676 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args,
1677 CallingConvention),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001678 Callee, Args, TargetDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001679}
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +00001680
Chris Lattnereb99b012009-10-28 17:39:19 +00001681LValue CodeGenFunction::
1682EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E) {
Eli Friedman1c5c1a02009-11-18 05:01:17 +00001683 llvm::Value *BaseV;
Fariborz Jahanian52f08bc2009-10-26 21:58:25 +00001684 if (E->getOpcode() == BinaryOperator::PtrMemI)
Eli Friedman1c5c1a02009-11-18 05:01:17 +00001685 BaseV = EmitScalarExpr(E->getLHS());
1686 else
1687 BaseV = EmitLValue(E->getLHS()).getAddress();
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +00001688 const llvm::Type *i8Ty = llvm::Type::getInt8PtrTy(getLLVMContext());
1689 BaseV = Builder.CreateBitCast(BaseV, i8Ty);
Eli Friedman1c5c1a02009-11-18 05:01:17 +00001690 llvm::Value *OffsetV = EmitScalarExpr(E->getRHS());
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +00001691 llvm::Value *AddV = Builder.CreateInBoundsGEP(BaseV, OffsetV, "add.ptr");
Chris Lattnereb99b012009-10-28 17:39:19 +00001692
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +00001693 QualType Ty = E->getRHS()->getType();
Chris Lattnereb99b012009-10-28 17:39:19 +00001694 Ty = Ty->getAs<MemberPointerType>()->getPointeeType();
1695
1696 const llvm::Type *PType = ConvertType(getContext().getPointerType(Ty));
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +00001697 AddV = Builder.CreateBitCast(AddV, PType);
Chris Lattnereb99b012009-10-28 17:39:19 +00001698 return LValue::MakeAddr(AddV, MakeQualifiers(Ty));
Fariborz Jahanian8bfd31f2009-10-22 22:57:31 +00001699}
1700