blob: d39e10f1f075489e10c906a2a8025be2cc35f468 [file] [log] [blame]
Chris Lattnere47e4402007-06-01 18:02:12 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnere47e4402007-06-01 18:02:12 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
Chris Lattnerb6984c42007-06-20 04:44:43 +000015#include "CodeGenModule.h"
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbar89da6ad2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbarad319a72008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedmanf2442dc2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Chris Lattnere47e4402007-06-01 18:02:12 +000021using namespace clang;
22using namespace CodeGen;
23
Chris Lattnerd7f58862007-06-02 05:24:33 +000024//===--------------------------------------------------------------------===//
Chris Lattnerf0106d22007-06-02 19:33:17 +000025// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
Chris Lattnere9a64532007-06-22 21:44:33 +000028/// CreateTempAlloca - This creates a alloca and inserts it into the entry
29/// block.
30llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
31 const char *Name) {
Chris Lattner47640222009-03-22 00:24:14 +000032 if (!Builder.isNamePreserving())
33 Name = "";
Owen Anderson9f98d372009-07-16 00:14:12 +000034 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
Chris Lattnere9a64532007-06-22 21:44:33 +000035}
Chris Lattner8394d792007-06-05 20:53:16 +000036
37/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
38/// expression and compare the result against zero, returning an Int1Ty value.
Chris Lattner23b7eb62007-06-15 23:05:46 +000039llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner268fcce2007-08-26 16:46:58 +000040 QualType BoolTy = getContext().BoolTy;
Chris Lattnerf3bc75a2008-04-04 16:54:41 +000041 if (!E->getType()->isAnyComplexType())
Chris Lattner268fcce2007-08-26 16:46:58 +000042 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner8394d792007-06-05 20:53:16 +000043
Chris Lattner268fcce2007-08-26 16:46:58 +000044 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattnerf0106d22007-06-02 19:33:17 +000045}
46
Chris Lattner4647a212007-08-31 22:49:20 +000047/// EmitAnyExpr - Emit code to compute the specified expression which can have
48/// any type. The result is returned as an RValue struct. If this is an
49/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
50/// the result should be returned.
51RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
Anders Carlsson5b106a72009-08-16 07:36:22 +000052 bool IsAggLocVolatile, bool IgnoreResult,
53 bool IsInitializer) {
Chris Lattner4647a212007-08-31 22:49:20 +000054 if (!hasAggregateLLVMType(E->getType()))
Mike Stumpdf0fe272009-05-29 15:46:01 +000055 return RValue::get(EmitScalarExpr(E, IgnoreResult));
Chris Lattnerf3bc75a2008-04-04 16:54:41 +000056 else if (E->getType()->isAnyComplexType())
Mike Stumpdf0fe272009-05-29 15:46:01 +000057 return RValue::getComplex(EmitComplexExpr(E, false, false,
58 IgnoreResult, IgnoreResult));
Chris Lattner4647a212007-08-31 22:49:20 +000059
Anders Carlsson5b106a72009-08-16 07:36:22 +000060 EmitAggExpr(E, AggLoc, IsAggLocVolatile, IgnoreResult, IsInitializer);
61 return RValue::getAggregate(AggLoc, IsAggLocVolatile);
Chris Lattner4647a212007-08-31 22:49:20 +000062}
63
Daniel Dunbar41cf9de2008-09-09 01:06:48 +000064/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
65/// will always be accessible even if no aggregate location is
66/// provided.
Anders Carlsson5b106a72009-08-16 07:36:22 +000067RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E,
68 bool IsAggLocVolatile,
69 bool IsInitializer) {
70 llvm::Value *AggLoc = 0;
71
72 if (hasAggregateLLVMType(E->getType()) &&
Daniel Dunbar41cf9de2008-09-09 01:06:48 +000073 !E->getType()->isAnyComplexType())
74 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
Anders Carlsson5b106a72009-08-16 07:36:22 +000075 return EmitAnyExpr(E, AggLoc, IsAggLocVolatile, /*IgnoreResult=*/false,
76 IsInitializer);
Daniel Dunbar41cf9de2008-09-09 01:06:48 +000077}
78
Anders Carlsson6f5a0152009-05-20 00:24:07 +000079RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
Anders Carlsson5b106a72009-08-16 07:36:22 +000080 QualType DestType,
81 bool IsInitializer) {
Eli Friedmanc21cb442009-05-20 02:31:19 +000082 RValue Val;
83 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
Anders Carlsson7d4c0832009-05-20 00:36:58 +000084 // Emit the expr as an lvalue.
85 LValue LV = EmitLValue(E);
Eli Friedmanc21cb442009-05-20 02:31:19 +000086 if (LV.isSimple())
87 return RValue::get(LV.getAddress());
88 Val = EmitLoadOfLValue(LV, E->getType());
89 } else {
Anders Carlssonb80760b2009-08-16 17:50:25 +000090 // FIXME: Initializers don't work with casts yet. For example
91 // const A& a = B();
92 // if B inherits from A.
Anders Carlsson5b106a72009-08-16 07:36:22 +000093 Val = EmitAnyExprToTemp(E, /*IsAggLocVolatile=*/false,
94 IsInitializer);
Anders Carlssonb80760b2009-08-16 17:50:25 +000095
Anders Carlsson3b848942009-08-16 17:54:29 +000096 if (IsInitializer) {
97 // We might have to destroy the temporary variable.
98 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
99 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
100 if (!ClassDecl->hasTrivialDestructor()) {
101 const CXXDestructorDecl *Dtor =
102 ClassDecl->getDestructor(getContext());
Anders Carlssonb80760b2009-08-16 17:50:25 +0000103
Anders Carlsson3b848942009-08-16 17:54:29 +0000104 CleanupScope scope(*this);
105 EmitCXXDestructorCall(Dtor, Dtor_Complete, Val.getAggregateAddr());
106 }
Anders Carlssonb80760b2009-08-16 17:50:25 +0000107 }
108 }
109 }
Anders Carlsson7d4c0832009-05-20 00:36:58 +0000110 }
Eli Friedmanc21cb442009-05-20 02:31:19 +0000111
112 if (Val.isAggregate()) {
113 Val = RValue::get(Val.getAggregateAddr());
114 } else {
Anders Carlsson02bb7f02009-05-20 01:35:03 +0000115 // Create a temporary variable that we can bind the reference to.
Anders Carlsson145eae52009-05-20 01:03:17 +0000116 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()),
117 "reftmp");
Eli Friedmanc21cb442009-05-20 02:31:19 +0000118 if (Val.isScalar())
119 EmitStoreOfScalar(Val.getScalarVal(), Temp, false, E->getType());
120 else
121 StoreComplexToAddr(Val.getComplexVal(), Temp, false);
122 Val = RValue::get(Temp);
Anders Carlsson145eae52009-05-20 01:03:17 +0000123 }
Eli Friedmanc21cb442009-05-20 02:31:19 +0000124
125 return Val;
Anders Carlsson6f5a0152009-05-20 00:24:07 +0000126}
127
128
Dan Gohman75d69da2008-05-22 00:50:06 +0000129/// getAccessedFieldNo - Given an encoded value and a result number, return
130/// the input field number being accessed.
131unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
132 const llvm::Constant *Elts) {
133 if (isa<llvm::ConstantAggregateZero>(Elts))
134 return 0;
135
136 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
137}
138
Chris Lattner4647a212007-08-31 22:49:20 +0000139
Chris Lattnera45c5af2007-06-02 19:47:04 +0000140//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +0000141// LValue Expression Emission
Chris Lattnera45c5af2007-06-02 19:47:04 +0000142//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +0000143
Daniel Dunbarc79407f2009-02-05 07:09:07 +0000144RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
145 if (Ty->isVoidType()) {
146 return RValue::get(0);
147 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000148 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
Owen Anderson7ec07a52009-07-30 23:11:26 +0000149 llvm::Value *U = llvm::UndefValue::get(EltTy);
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000150 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbarc79407f2009-02-05 07:09:07 +0000151 } else if (hasAggregateLLVMType(Ty)) {
Owen Anderson9793f0e2009-07-29 22:16:19 +0000152 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
Owen Anderson7ec07a52009-07-30 23:11:26 +0000153 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000154 } else {
Owen Anderson7ec07a52009-07-30 23:11:26 +0000155 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000156 }
Daniel Dunbarbb197e42009-01-09 16:50:52 +0000157}
158
Daniel Dunbarc79407f2009-02-05 07:09:07 +0000159RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
160 const char *Name) {
161 ErrorUnsupported(E, Name);
162 return GetUndefRValue(E->getType());
163}
164
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000165LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
166 const char *Name) {
167 ErrorUnsupported(E, Name);
Owen Anderson9793f0e2009-07-29 22:16:19 +0000168 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Owen Anderson7ec07a52009-07-30 23:11:26 +0000169 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000170 E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +0000171 getContext().getObjCGCAttrKind(E->getType()),
172 E->getType().getAddressSpace());
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000173}
174
Chris Lattner8394d792007-06-05 20:53:16 +0000175/// EmitLValue - Emit code to compute a designator that specifies the location
176/// of the expression.
177///
178/// This can return one of two things: a simple address or a bitfield
179/// reference. In either case, the LLVM Value* in the LValue structure is
180/// guaranteed to be an LLVM pointer type.
181///
182/// If this returns a bitfield reference, nothing about the pointee type of
183/// the LLVM value is known: For example, it may not be a pointer to an
184/// integer.
185///
186/// If this returns a normal address, and if the lvalue's C type is fixed
187/// size, this method guarantees that the returned pointer type will point to
188/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
189/// variable length type, this is not possible.
190///
Chris Lattnerd7f58862007-06-02 05:24:33 +0000191LValue CodeGenFunction::EmitLValue(const Expr *E) {
192 switch (E->getStmtClass()) {
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000193 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattnerd7f58862007-06-02 05:24:33 +0000194
Daniel Dunbar8cde00a2008-09-04 03:20:13 +0000195 case Expr::BinaryOperatorClass:
196 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor993603d2008-11-14 16:09:21 +0000197 case Expr::CallExprClass:
Anders Carlssonc82555f2009-09-01 21:18:52 +0000198 case Expr::CXXMemberCallExprClass:
Douglas Gregor993603d2008-11-14 16:09:21 +0000199 case Expr::CXXOperatorCallExprClass:
200 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +0000201 case Expr::VAArgExprClass:
202 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregorc7acfdf2009-01-06 05:10:23 +0000203 case Expr::DeclRefExprClass:
204 case Expr::QualifiedDeclRefExprClass:
205 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Chris Lattner946aa312007-06-05 03:59:43 +0000206 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner6307f192008-08-10 01:53:14 +0000207 case Expr::PredefinedExprClass:
208 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4347e3692007-06-06 04:54:52 +0000209 case Expr::StringLiteralClass:
210 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +0000211 case Expr::ObjCEncodeExprClass:
212 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner4bd55962008-03-30 23:03:07 +0000213
Mike Stump1db7d042009-02-28 09:07:16 +0000214 case Expr::BlockDeclRefExprClass:
215 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
216
Argyrios Kyrtzidis07052352008-09-10 02:36:38 +0000217 case Expr::CXXConditionDeclExprClass:
218 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
Anders Carlsson3be22e22009-05-30 23:23:33 +0000219 case Expr::CXXTemporaryObjectExprClass:
220 case Expr::CXXConstructExprClass:
Anders Carlssonfd2af0c2009-05-30 23:30:54 +0000221 return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
222 case Expr::CXXBindTemporaryExprClass:
223 return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
224
Daniel Dunbarc8317a42008-08-23 10:51:21 +0000225 case Expr::ObjCMessageExprClass:
226 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner4bd55962008-03-30 23:03:07 +0000227 case Expr::ObjCIvarRefExprClass:
228 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000229 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000230 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian9a846652009-08-20 17:02:02 +0000231 case Expr::ObjCImplicitSetterGetterRefExprClass:
232 return EmitObjCKVCRefLValue(cast<ObjCImplicitSetterGetterRefExpr>(E));
Douglas Gregor8ea1f532008-11-04 14:56:14 +0000233 case Expr::ObjCSuperExprClass:
Chris Lattnera4185c52009-04-25 19:35:26 +0000234 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregor8ea1f532008-11-04 14:56:14 +0000235
Chris Lattnera4185c52009-04-25 19:35:26 +0000236 case Expr::StmtExprClass:
237 return EmitStmtExprLValue(cast<StmtExpr>(E));
Chris Lattner8394d792007-06-05 20:53:16 +0000238 case Expr::UnaryOperatorClass:
239 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000240 case Expr::ArraySubscriptExprClass:
241 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemance4d7fc2008-04-18 23:10:10 +0000242 case Expr::ExtVectorElementExprClass:
243 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Douglas Gregorc1905232009-08-26 22:36:53 +0000244 case Expr::MemberExprClass:
Douglas Gregorc1905232009-08-26 22:36:53 +0000245 return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman9fd8b682008-05-13 23:18:27 +0000246 case Expr::CompoundLiteralExprClass:
247 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +0000248 case Expr::ConditionalOperatorClass:
249 return EmitConditionalOperator(cast<ConditionalOperator>(E));
Chris Lattner053441f2008-12-12 05:35:08 +0000250 case Expr::ChooseExprClass:
Eli Friedmane0a5b8b2009-03-04 05:52:32 +0000251 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattner63d06ab2009-03-18 04:02:57 +0000252 case Expr::ImplicitCastExprClass:
253 case Expr::CStyleCastExprClass:
254 case Expr::CXXFunctionalCastExprClass:
255 case Expr::CXXStaticCastExprClass:
256 case Expr::CXXDynamicCastExprClass:
257 case Expr::CXXReinterpretCastExprClass:
258 case Expr::CXXConstCastExprClass:
Chris Lattner28bcf1a2009-03-18 18:28:57 +0000259 return EmitCastLValue(cast<CastExpr>(E));
Chris Lattnerd7f58862007-06-02 05:24:33 +0000260 }
261}
262
Daniel Dunbar1d425462009-02-10 00:57:50 +0000263llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
264 QualType Ty) {
265 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
266
Anders Carlsson29a1be32009-05-19 19:36:19 +0000267 // Bool can have different representation in memory than in registers.
Daniel Dunbar1d425462009-02-10 00:57:50 +0000268 if (Ty->isBooleanType())
Owen Anderson41a75022009-08-13 21:57:51 +0000269 if (V->getType() != llvm::Type::getInt1Ty(VMContext))
270 V = Builder.CreateTrunc(V, llvm::Type::getInt1Ty(VMContext), "tobool");
Daniel Dunbar1d425462009-02-10 00:57:50 +0000271
272 return V;
273}
274
275void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Anders Carlsson83709642009-05-19 18:50:41 +0000276 bool Volatile, QualType Ty) {
Anders Carlsson29a1be32009-05-19 19:36:19 +0000277
278 if (Ty->isBooleanType()) {
279 // Bool can have different representation in memory than in registers.
280 const llvm::Type *SrcTy = Value->getType();
281 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
282 if (DstPtr->getElementType() != SrcTy) {
283 const llvm::Type *MemTy =
Owen Anderson9793f0e2009-07-29 22:16:19 +0000284 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
Anders Carlsson29a1be32009-05-19 19:36:19 +0000285 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
286 }
Daniel Dunbar1d425462009-02-10 00:57:50 +0000287 }
Daniel Dunbar1d425462009-02-10 00:57:50 +0000288 Builder.CreateStore(Value, Addr, Volatile);
289}
290
Chris Lattner8394d792007-06-05 20:53:16 +0000291/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
292/// this method emits the address of the lvalue, then loads the result as an
293/// rvalue, returning the rvalue.
Chris Lattner9369a562007-06-29 16:31:29 +0000294RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000295 if (LV.isObjCWeak()) {
Fariborz Jahanianf5125d12008-11-18 21:45:40 +0000296 // load of a __weak object.
297 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian83f45b552008-11-18 22:37:34 +0000298 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanianf5125d12008-11-18 21:45:40 +0000299 AddrWeakObj);
300 return RValue::get(read_weak);
301 }
302
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000303 if (LV.isSimple()) {
304 llvm::Value *Ptr = LV.getAddress();
305 const llvm::Type *EltTy =
306 cast<llvm::PointerType>(Ptr->getType())->getElementType();
307
308 // Simple scalar l-value.
Daniel Dunbar1d425462009-02-10 00:57:50 +0000309 if (EltTy->isSingleValueType())
310 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
311 ExprType));
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000312
Chris Lattner6278e6a2007-08-11 00:04:45 +0000313 assert(ExprType->isFunctionType() && "Unknown scalar value");
314 return RValue::get(Ptr);
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000315 }
Chris Lattner09153c02007-06-22 18:48:09 +0000316
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000317 if (LV.isVectorElt()) {
Eli Friedman327944b2008-06-13 23:01:12 +0000318 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
319 LV.isVolatileQualified(), "tmp");
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000320 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
321 "vecext"));
322 }
Chris Lattner73ab9b32007-08-03 00:16:29 +0000323
324 // If this is a reference to a subset of the elements of a vector, either
325 // shuffle the input or extract/insert them as appropriate.
Nate Begemance4d7fc2008-04-18 23:10:10 +0000326 if (LV.isExtVectorElt())
327 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000328
329 if (LV.isBitfield())
330 return EmitLoadOfBitfieldLValue(LV, ExprType);
331
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000332 if (LV.isPropertyRef())
333 return EmitLoadOfPropertyRefLValue(LV, ExprType);
334
Chris Lattner6c7ce102009-02-16 21:11:58 +0000335 assert(LV.isKVCRef() && "Unknown LValue type!");
336 return EmitLoadOfKVCRefLValue(LV, ExprType);
Chris Lattner8394d792007-06-05 20:53:16 +0000337}
338
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000339RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
340 QualType ExprType) {
Daniel Dunbaread7c912008-08-06 05:08:45 +0000341 unsigned StartBit = LV.getBitfieldStartBit();
342 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000343 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbaread7c912008-08-06 05:08:45 +0000344
345 const llvm::Type *EltTy =
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000346 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbaread7c912008-08-06 05:08:45 +0000347 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000348
Daniel Dunbaread7c912008-08-06 05:08:45 +0000349 // In some cases the bitfield may straddle two memory locations.
350 // Currently we load the entire bitfield, then do the magic to
351 // sign-extend it if necessary. This results in somewhat more code
352 // than necessary for the common case (one load), since two shifts
353 // accomplish both the masking and sign extension.
354 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
355 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
356
357 // Shift to proper location.
Daniel Dunbarf7fb7502008-11-13 02:20:34 +0000358 if (StartBit)
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000359 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
Daniel Dunbarf7fb7502008-11-13 02:20:34 +0000360 "bf.lo");
Daniel Dunbaread7c912008-08-06 05:08:45 +0000361
362 // Mask off unused bits.
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000363 llvm::Constant *LowMask = llvm::ConstantInt::get(VMContext,
364 llvm::APInt::getLowBitsSet(EltTySize, LowBits));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000365 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
366
367 // Fetch the high bits if necessary.
368 if (LowBits < BitfieldSize) {
369 unsigned HighBits = BitfieldSize - LowBits;
Owen Anderson41a75022009-08-13 21:57:51 +0000370 llvm::Value *HighPtr = Builder.CreateGEP(Ptr, llvm::ConstantInt::get(
371 llvm::Type::getInt32Ty(VMContext), 1), "bf.ptr.hi");
Daniel Dunbaread7c912008-08-06 05:08:45 +0000372 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
373 LV.isVolatileQualified(),
374 "tmp");
375
376 // Mask off unused bits.
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000377 llvm::Constant *HighMask = llvm::ConstantInt::get(VMContext,
378 llvm::APInt::getLowBitsSet(EltTySize, HighBits));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000379 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000380
Daniel Dunbaread7c912008-08-06 05:08:45 +0000381 // Shift to proper location and or in to bitfield value.
382 HighVal = Builder.CreateShl(HighVal,
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000383 llvm::ConstantInt::get(EltTy, LowBits));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000384 Val = Builder.CreateOr(Val, HighVal, "bf.val");
385 }
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000386
Daniel Dunbaread7c912008-08-06 05:08:45 +0000387 // Sign extend if necessary.
388 if (LV.isBitfieldSigned()) {
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000389 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
Daniel Dunbaread7c912008-08-06 05:08:45 +0000390 EltTySize - BitfieldSize);
391 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
392 ExtraBits, "bf.val.sext");
393 }
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000394
395 // The bitfield type and the normal type differ when the storage sizes
396 // differ (currently just _Bool).
Daniel Dunbaread7c912008-08-06 05:08:45 +0000397 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000398
Daniel Dunbaread7c912008-08-06 05:08:45 +0000399 return RValue::get(Val);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000400}
401
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000402RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
403 QualType ExprType) {
404 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
405}
406
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000407RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
408 QualType ExprType) {
409 return EmitObjCPropertyGet(LV.getKVCRefExpr());
410}
411
Nate Begemanb699c9b2009-01-18 06:42:49 +0000412// If this is a reference to a subset of the elements of a vector, create an
413// appropriate shufflevector.
Nate Begemance4d7fc2008-04-18 23:10:10 +0000414RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
415 QualType ExprType) {
Eli Friedman327944b2008-06-13 23:01:12 +0000416 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
417 LV.isVolatileQualified(), "tmp");
Chris Lattner40ff7012007-08-03 16:18:34 +0000418
Nate Begemanf322eab2008-05-09 06:41:27 +0000419 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner40ff7012007-08-03 16:18:34 +0000420
421 // If the result of the expression is a non-vector type, we must be
422 // extracting a single element. Just codegen as an extractelement.
Chris Lattner8eab8ff2007-08-10 17:10:08 +0000423 const VectorType *ExprVT = ExprType->getAsVectorType();
424 if (!ExprVT) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000425 unsigned InIdx = getAccessedFieldNo(0, Elts);
Owen Anderson41a75022009-08-13 21:57:51 +0000426 llvm::Value *Elt = llvm::ConstantInt::get(
427 llvm::Type::getInt32Ty(VMContext), InIdx);
Chris Lattner40ff7012007-08-03 16:18:34 +0000428 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
429 }
Nate Begemanb699c9b2009-01-18 06:42:49 +0000430
431 // Always use shuffle vector to try to retain the original program structure
Chris Lattner8eab8ff2007-08-10 17:10:08 +0000432 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner40ff7012007-08-03 16:18:34 +0000433
Nate Begemanb699c9b2009-01-18 06:42:49 +0000434 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner40ff7012007-08-03 16:18:34 +0000435 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000436 unsigned InIdx = getAccessedFieldNo(i, Elts);
Owen Anderson41a75022009-08-13 21:57:51 +0000437 Mask.push_back(llvm::ConstantInt::get(
438 llvm::Type::getInt32Ty(VMContext), InIdx));
Chris Lattner40ff7012007-08-03 16:18:34 +0000439 }
440
Owen Anderson3cc120a2009-07-28 21:22:35 +0000441 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begemanb699c9b2009-01-18 06:42:49 +0000442 Vec = Builder.CreateShuffleVector(Vec,
Owen Anderson7ec07a52009-07-30 23:11:26 +0000443 llvm::UndefValue::get(Vec->getType()),
Nate Begemanb699c9b2009-01-18 06:42:49 +0000444 MaskV, "tmp");
445 return RValue::get(Vec);
Chris Lattner40ff7012007-08-03 16:18:34 +0000446}
447
448
Chris Lattner9369a562007-06-29 16:31:29 +0000449
Chris Lattner8394d792007-06-05 20:53:16 +0000450/// EmitStoreThroughLValue - Store the specified rvalue into the specified
451/// lvalue, where both are guaranteed to the have the same type, and that type
452/// is 'Ty'.
453void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
454 QualType Ty) {
Chris Lattner41d480e2007-08-03 16:28:33 +0000455 if (!Dst.isSimple()) {
456 if (Dst.isVectorElt()) {
457 // Read/modify/write the vector, inserting the new element.
Eli Friedman327944b2008-06-13 23:01:12 +0000458 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
459 Dst.isVolatileQualified(), "tmp");
Chris Lattner4647a212007-08-31 22:49:20 +0000460 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner41d480e2007-08-03 16:28:33 +0000461 Dst.getVectorIdx(), "vecins");
Eli Friedman327944b2008-06-13 23:01:12 +0000462 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner41d480e2007-08-03 16:28:33 +0000463 return;
464 }
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000465
Nate Begemance4d7fc2008-04-18 23:10:10 +0000466 // If this is an update of extended vector elements, insert them as
467 // appropriate.
468 if (Dst.isExtVectorElt())
469 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000470
471 if (Dst.isBitfield())
472 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
473
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000474 if (Dst.isPropertyRef())
475 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
476
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000477 if (Dst.isKVCRef())
478 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
479
Lauro Ramos Venanciodb449042008-01-22 22:38:35 +0000480 assert(0 && "Unknown LValue type");
Chris Lattner41d480e2007-08-03 16:28:33 +0000481 }
Chris Lattner8394d792007-06-05 20:53:16 +0000482
Fariborz Jahanian10bec102009-02-21 00:30:43 +0000483 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000484 // load of a __weak object.
485 llvm::Value *LvalueDst = Dst.getAddress();
486 llvm::Value *src = Src.getScalarVal();
Mike Stumpca5ae662009-04-14 00:57:29 +0000487 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000488 return;
489 }
490
Fariborz Jahanian10bec102009-02-21 00:30:43 +0000491 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000492 // load of a __strong object.
493 llvm::Value *LvalueDst = Dst.getAddress();
494 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian3114e942009-02-19 18:29:24 +0000495#if 0
Mike Stump18bb9282009-05-16 07:57:57 +0000496 // FIXME. We cannot positively determine if we have an 'ivar' assignment,
497 // object assignment or an unknown assignment. For now, generate call to
498 // objc_assign_strongCast assignment which is a safe, but consevative
499 // assumption.
Fariborz Jahanian75686a52008-11-20 20:53:20 +0000500 if (Dst.isObjCIvar())
501 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
502 else
503 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian3114e942009-02-19 18:29:24 +0000504#endif
Fariborz Jahanian32ff7ae2009-05-04 23:27:20 +0000505 if (Dst.isGlobalObjCRef())
506 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
507 else
508 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000509 return;
510 }
511
Chris Lattner6278e6a2007-08-11 00:04:45 +0000512 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlsson83709642009-05-19 18:50:41 +0000513 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
514 Dst.isVolatileQualified(), Ty);
Chris Lattner8394d792007-06-05 20:53:16 +0000515}
516
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000517void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000518 QualType Ty,
519 llvm::Value **Result) {
Daniel Dunbaread7c912008-08-06 05:08:45 +0000520 unsigned StartBit = Dst.getBitfieldStartBit();
521 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000522 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000523
Daniel Dunbaread7c912008-08-06 05:08:45 +0000524 const llvm::Type *EltTy =
525 cast<llvm::PointerType>(Ptr->getType())->getElementType();
526 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
527
528 // Get the new value, cast to the appropriate type and masked to
529 // exactly the size of the bit-field.
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000530 llvm::Value *SrcVal = Src.getScalarVal();
531 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000532 llvm::Constant *Mask = llvm::ConstantInt::get(VMContext,
533 llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000534 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000535
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000536 // Return the new value of the bit-field, if requested.
537 if (Result) {
538 // Cast back to the proper type for result.
539 const llvm::Type *SrcTy = SrcVal->getType();
540 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
541 "bf.reload.val");
542
543 // Sign extend if necessary.
544 if (Dst.isBitfieldSigned()) {
545 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000546 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000547 SrcTySize - BitfieldSize);
548 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
549 ExtraBits, "bf.reload.sext");
550 }
551
552 *Result = SrcTrunc;
553 }
554
Daniel Dunbaread7c912008-08-06 05:08:45 +0000555 // In some cases the bitfield may straddle two memory locations.
556 // Emit the low part first and check to see if the high needs to be
557 // done.
558 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
559 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
560 "bf.prev.low");
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000561
Daniel Dunbaread7c912008-08-06 05:08:45 +0000562 // Compute the mask for zero-ing the low part of this bitfield.
563 llvm::Constant *InvMask =
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000564 llvm::ConstantInt::get(VMContext,
565 ~llvm::APInt::getBitsSet(EltTySize, StartBit, StartBit + LowBits));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000566
567 // Compute the new low part as
568 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
569 // with the shift of NewVal implicitly stripping the high bits.
570 llvm::Value *NewLowVal =
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000571 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
Daniel Dunbaread7c912008-08-06 05:08:45 +0000572 "bf.value.lo");
573 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
574 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
575
576 // Write back.
577 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000578
Daniel Dunbaread7c912008-08-06 05:08:45 +0000579 // If the low part doesn't cover the bitfield emit a high part.
580 if (LowBits < BitfieldSize) {
581 unsigned HighBits = BitfieldSize - LowBits;
Owen Anderson41a75022009-08-13 21:57:51 +0000582 llvm::Value *HighPtr = Builder.CreateGEP(Ptr, llvm::ConstantInt::get(
583 llvm::Type::getInt32Ty(VMContext), 1), "bf.ptr.hi");
Daniel Dunbaread7c912008-08-06 05:08:45 +0000584 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
585 Dst.isVolatileQualified(),
586 "bf.prev.hi");
587
588 // Compute the mask for zero-ing the high part of this bitfield.
589 llvm::Constant *InvMask =
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000590 llvm::ConstantInt::get(VMContext, ~llvm::APInt::getLowBitsSet(EltTySize,
Owen Anderson170229f2009-07-14 23:10:40 +0000591 HighBits));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000592
593 // Compute the new high part as
594 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
595 // where the high bits of NewVal have already been cleared and the
596 // shift stripping the low bits.
597 llvm::Value *NewHighVal =
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000598 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
Daniel Dunbaread7c912008-08-06 05:08:45 +0000599 "bf.value.high");
600 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
601 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
602
603 // Write back.
604 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
605 }
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000606}
607
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000608void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
609 LValue Dst,
610 QualType Ty) {
611 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
612}
613
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000614void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
615 LValue Dst,
616 QualType Ty) {
617 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
618}
619
Nate Begemance4d7fc2008-04-18 23:10:10 +0000620void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
621 LValue Dst,
622 QualType Ty) {
Chris Lattner41d480e2007-08-03 16:28:33 +0000623 // This access turns into a read/modify/write of the vector. Load the input
624 // value now.
Eli Friedman327944b2008-06-13 23:01:12 +0000625 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
626 Dst.isVolatileQualified(), "tmp");
Nate Begemanf322eab2008-05-09 06:41:27 +0000627 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner41d480e2007-08-03 16:28:33 +0000628
Chris Lattner4647a212007-08-31 22:49:20 +0000629 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner41d480e2007-08-03 16:28:33 +0000630
Chris Lattner3a44aa72007-08-03 16:37:04 +0000631 if (const VectorType *VTy = Ty->getAsVectorType()) {
632 unsigned NumSrcElts = VTy->getNumElements();
Nate Begemanb699c9b2009-01-18 06:42:49 +0000633 unsigned NumDstElts =
634 cast<llvm::VectorType>(Vec->getType())->getNumElements();
635 if (NumDstElts == NumSrcElts) {
636 // Use shuffle vector is the src and destination are the same number
Nate Begemanea12f6e2009-06-26 21:12:50 +0000637 // of elements and restore the vector mask since it is on the side
638 // it will be stored.
639 llvm::SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
Nate Begemanb699c9b2009-01-18 06:42:49 +0000640 for (unsigned i = 0; i != NumSrcElts; ++i) {
641 unsigned InIdx = getAccessedFieldNo(i, Elts);
Owen Anderson41a75022009-08-13 21:57:51 +0000642 Mask[InIdx] = llvm::ConstantInt::get(
643 llvm::Type::getInt32Ty(VMContext), i);
Nate Begemanb699c9b2009-01-18 06:42:49 +0000644 }
645
Owen Anderson3cc120a2009-07-28 21:22:35 +0000646 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begemanb699c9b2009-01-18 06:42:49 +0000647 Vec = Builder.CreateShuffleVector(SrcVal,
Owen Anderson7ec07a52009-07-30 23:11:26 +0000648 llvm::UndefValue::get(Vec->getType()),
Nate Begemanb699c9b2009-01-18 06:42:49 +0000649 MaskV, "tmp");
Mike Stump658fe022009-07-30 22:28:39 +0000650 } else if (NumDstElts > NumSrcElts) {
Nate Begemanb699c9b2009-01-18 06:42:49 +0000651 // Extended the source vector to the same length and then shuffle it
652 // into the destination.
653 // FIXME: since we're shuffling with undef, can we just use the indices
654 // into that? This could be simpler.
655 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
656 unsigned i;
657 for (i = 0; i != NumSrcElts; ++i)
Owen Anderson41a75022009-08-13 21:57:51 +0000658 ExtMask.push_back(llvm::ConstantInt::get(
659 llvm::Type::getInt32Ty(VMContext), i));
Nate Begemanb699c9b2009-01-18 06:42:49 +0000660 for (; i != NumDstElts; ++i)
Owen Anderson41a75022009-08-13 21:57:51 +0000661 ExtMask.push_back(llvm::UndefValue::get(
662 llvm::Type::getInt32Ty(VMContext)));
Owen Anderson3cc120a2009-07-28 21:22:35 +0000663 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
Nate Begemanb699c9b2009-01-18 06:42:49 +0000664 ExtMask.size());
Daniel Dunbar3d926cb2009-02-17 18:31:04 +0000665 llvm::Value *ExtSrcVal =
666 Builder.CreateShuffleVector(SrcVal,
Owen Anderson7ec07a52009-07-30 23:11:26 +0000667 llvm::UndefValue::get(SrcVal->getType()),
Daniel Dunbar3d926cb2009-02-17 18:31:04 +0000668 ExtMaskV, "tmp");
Nate Begemanb699c9b2009-01-18 06:42:49 +0000669 // build identity
670 llvm::SmallVector<llvm::Constant*, 4> Mask;
671 for (unsigned i = 0; i != NumDstElts; ++i) {
Owen Anderson41a75022009-08-13 21:57:51 +0000672 Mask.push_back(llvm::ConstantInt::get(
673 llvm::Type::getInt32Ty(VMContext), i));
Nate Begemanb699c9b2009-01-18 06:42:49 +0000674 }
675 // modify when what gets shuffled in
676 for (unsigned i = 0; i != NumSrcElts; ++i) {
677 unsigned Idx = getAccessedFieldNo(i, Elts);
Owen Anderson41a75022009-08-13 21:57:51 +0000678 Mask[Idx] = llvm::ConstantInt::get(
679 llvm::Type::getInt32Ty(VMContext), i+NumDstElts);
Nate Begemanb699c9b2009-01-18 06:42:49 +0000680 }
Owen Anderson3cc120a2009-07-28 21:22:35 +0000681 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begemanb699c9b2009-01-18 06:42:49 +0000682 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
Mike Stump658fe022009-07-30 22:28:39 +0000683 } else {
Nate Begemanb699c9b2009-01-18 06:42:49 +0000684 // We should never shorten the vector
685 assert(0 && "unexpected shorten vector length");
Chris Lattner3a44aa72007-08-03 16:37:04 +0000686 }
687 } else {
688 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman75d69da2008-05-22 00:50:06 +0000689 unsigned InIdx = getAccessedFieldNo(0, Elts);
Owen Anderson41a75022009-08-13 21:57:51 +0000690 llvm::Value *Elt = llvm::ConstantInt::get(
691 llvm::Type::getInt32Ty(VMContext), InIdx);
Chris Lattner41d480e2007-08-03 16:28:33 +0000692 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner41d480e2007-08-03 16:28:33 +0000693 }
694
Eli Friedman327944b2008-06-13 23:01:12 +0000695 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner41d480e2007-08-03 16:28:33 +0000696}
697
Chris Lattnerd7f58862007-06-02 05:24:33 +0000698LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff08899ff2008-04-15 22:42:06 +0000699 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
700
Chris Lattner5696e7b2008-06-17 18:05:57 +0000701 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
702 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000703 LValue LV;
Douglas Gregor78bd61f2009-06-18 16:11:24 +0000704 bool NonGCable = VD->hasLocalStorage() &&
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000705 !VD->hasAttr<BlocksAttr>();
Daniel Dunbar0ca16602009-04-14 02:25:56 +0000706 if (VD->hasExternalStorage()) {
Anders Carlsson2d228ce2009-05-19 20:40:02 +0000707 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
708 if (VD->getType()->isReferenceType())
709 V = Builder.CreateLoad(V, "tmp");
710 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +0000711 getContext().getObjCGCAttrKind(E->getType()),
712 E->getType().getAddressSpace());
Mike Stump658fe022009-07-30 22:28:39 +0000713 } else {
Steve Naroff08899ff2008-04-15 22:42:06 +0000714 llvm::Value *V = LocalDeclMap[VD];
Mike Stump1db7d042009-02-28 09:07:16 +0000715 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanianc86fb5e2009-02-20 01:14:43 +0000716 // local variables do not get their gc attribute set.
717 QualType::GCAttrTypes attr = QualType::GCNone;
718 // local static?
Fariborz Jahanian75512572009-05-27 19:48:48 +0000719 if (!NonGCable)
Fariborz Jahanianc86fb5e2009-02-20 01:14:43 +0000720 attr = getContext().getObjCGCAttrKind(E->getType());
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000721 if (VD->hasAttr<BlocksAttr>()) {
Mike Stump97d01d52009-03-04 03:23:46 +0000722 bool needsCopyDispose = BlockRequiresCopying(VD->getType());
723 const llvm::Type *PtrStructTy = V->getType();
724 const llvm::Type *Ty = PtrStructTy;
Owen Anderson9793f0e2009-07-29 22:16:19 +0000725 Ty = llvm::PointerType::get(Ty, 0);
Mike Stump97d01d52009-03-04 03:23:46 +0000726 V = Builder.CreateStructGEP(V, 1, "forwarding");
727 V = Builder.CreateBitCast(V, Ty);
728 V = Builder.CreateLoad(V, false);
729 V = Builder.CreateBitCast(V, PtrStructTy);
730 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
731 }
Anders Carlsson2d228ce2009-05-19 20:40:02 +0000732 if (VD->getType()->isReferenceType())
733 V = Builder.CreateLoad(V, "tmp");
Mon P Wangacedf772009-07-22 03:08:17 +0000734 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr,
735 E->getType().getAddressSpace());
Lauro Ramos Venanciobada8d42008-02-16 22:30:38 +0000736 }
Fariborz Jahanian75512572009-05-27 19:48:48 +0000737 LValue::SetObjCNonGC(LV, NonGCable);
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000738 return LV;
Steve Naroff08899ff2008-04-15 22:42:06 +0000739 } else if (VD && VD->isFileVarDecl()) {
Anders Carlsson2d228ce2009-05-19 20:40:02 +0000740 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
741 if (VD->getType()->isReferenceType())
742 V = Builder.CreateLoad(V, "tmp");
743 LValue LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +0000744 getContext().getObjCGCAttrKind(E->getType()),
745 E->getType().getAddressSpace());
Fariborz Jahanian32ff7ae2009-05-04 23:27:20 +0000746 if (LV.isObjCStrong())
747 LV.SetGlobalObjCRef(LV, true);
Fariborz Jahanian406b1172008-11-18 20:18:11 +0000748 return LV;
Steve Naroff08899ff2008-04-15 22:42:06 +0000749 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Eli Friedmane32c0212009-06-01 10:04:20 +0000750 llvm::Value* V = CGM.GetAddrOfFunction(GlobalDecl(FD));
751 if (!FD->hasPrototype()) {
752 if (const FunctionProtoType *Proto =
753 FD->getType()->getAsFunctionProtoType()) {
754 // Ugly case: for a K&R-style definition, the type of the definition
755 // isn't the same as the type of a use. Correct for this with a
756 // bitcast.
757 QualType NoProtoType =
758 getContext().getFunctionNoProtoType(Proto->getResultType());
759 NoProtoType = getContext().getPointerType(NoProtoType);
760 V = Builder.CreateBitCast(V, ConvertType(NoProtoType), "tmp");
761 }
762 }
763 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +0000764 getContext().getObjCGCAttrKind(E->getType()),
765 E->getType().getAddressSpace());
Mike Stump658fe022009-07-30 22:28:39 +0000766 } else if (const ImplicitParamDecl *IPD =
Chris Lattner5696e7b2008-06-17 18:05:57 +0000767 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
768 llvm::Value *V = LocalDeclMap[IPD];
769 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000770 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +0000771 getContext().getObjCGCAttrKind(E->getType()),
772 E->getType().getAddressSpace());
Chris Lattner5696e7b2008-06-17 18:05:57 +0000773 }
Chris Lattnerd7f58862007-06-02 05:24:33 +0000774 assert(0 && "Unimp declref");
Chris Lattner793d10c2007-09-16 19:23:47 +0000775 //an invalid LValue, but the assert will
776 //ensure that this point is never reached.
777 return LValue();
Chris Lattnerd7f58862007-06-02 05:24:33 +0000778}
Chris Lattnere47e4402007-06-01 18:02:12 +0000779
Mike Stump1db7d042009-02-28 09:07:16 +0000780LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
Daniel Dunbar223db1c2009-05-23 02:49:02 +0000781 return LValue::MakeAddr(GetAddrOfBlockDecl(E),
782 E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +0000783 getContext().getObjCGCAttrKind(E->getType()),
784 E->getType().getAddressSpace());
Mike Stump1db7d042009-02-28 09:07:16 +0000785}
786
Chris Lattner8394d792007-06-05 20:53:16 +0000787LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
788 // __extension__ doesn't affect lvalue-ness.
789 if (E->getOpcode() == UnaryOperator::Extension)
790 return EmitLValue(E->getSubExpr());
791
Chris Lattner0f398c42008-07-26 22:37:01 +0000792 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner595db862007-10-30 22:53:42 +0000793 switch (E->getOpcode()) {
794 default: assert(0 && "Unknown unary operator lvalue!");
795 case UnaryOperator::Deref:
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000796 {
Steve Naroff7cae42b2009-07-10 23:34:53 +0000797 QualType T = E->getSubExpr()->getType()->getPointeeType();
798 assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
799
Fariborz Jahanian392124c2009-02-23 18:59:50 +0000800 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Steve Naroff7cae42b2009-07-10 23:34:53 +0000801 T.getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +0000802 getContext().getObjCGCAttrKind(T),
803 ExprTy.getAddressSpace());
Fariborz Jahanian392124c2009-02-23 18:59:50 +0000804 // We should not generate __weak write barrier on indirect reference
805 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
806 // But, we continue to generate __strong write barrier on indirect write
807 // into a pointer to object.
808 if (getContext().getLangOptions().ObjC1 &&
809 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
810 LV.isObjCWeak())
Fariborz Jahanianc6d98002009-06-01 21:29:32 +0000811 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanian392124c2009-02-23 18:59:50 +0000812 return LV;
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000813 }
Chris Lattner595db862007-10-30 22:53:42 +0000814 case UnaryOperator::Real:
815 case UnaryOperator::Imag:
816 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner3e593cd2008-03-19 05:19:41 +0000817 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
818 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattner574dee62008-07-26 22:17:49 +0000819 Idx, "idx"),
Mon P Wangacedf772009-07-22 03:08:17 +0000820 ExprTy.getCVRQualifiers(),
821 QualType::GCNone,
822 ExprTy.getAddressSpace());
Chris Lattner595db862007-10-30 22:53:42 +0000823 }
Chris Lattner8394d792007-06-05 20:53:16 +0000824}
825
Chris Lattner4347e3692007-06-06 04:54:52 +0000826LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbarc4baa062008-08-13 23:20:05 +0000827 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4347e3692007-06-06 04:54:52 +0000828}
829
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +0000830LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
831 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
832}
833
834
Daniel Dunbarb3517472008-10-17 21:58:32 +0000835LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson625bfc82007-07-21 05:21:51 +0000836 std::string GlobalVarName;
Daniel Dunbarb3517472008-10-17 21:58:32 +0000837
838 switch (Type) {
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +0000839 default:
840 assert(0 && "Invalid type");
841 case PredefinedExpr::Func:
842 GlobalVarName = "__func__.";
843 break;
844 case PredefinedExpr::Function:
845 GlobalVarName = "__FUNCTION__.";
846 break;
847 case PredefinedExpr::PrettyFunction:
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +0000848 GlobalVarName = "__PRETTY_FUNCTION__.";
849 break;
Anders Carlsson625bfc82007-07-21 05:21:51 +0000850 }
Daniel Dunbarb3517472008-10-17 21:58:32 +0000851
Anders Carlsson2fb08242009-09-08 18:24:21 +0000852 std::string FunctionName =
853 PredefinedExpr::ComputeName(getContext(), (PredefinedExpr::IdentType)Type,
854 CurCodeDecl);
Daniel Dunbarb3517472008-10-17 21:58:32 +0000855
Chris Lattner5506f8c2008-04-04 04:07:35 +0000856 GlobalVarName += FunctionName;
Daniel Dunbarb3517472008-10-17 21:58:32 +0000857 llvm::Constant *C =
858 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
859 return LValue::MakeAddr(C, 0);
860}
861
862LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
863 switch (E->getIdentType()) {
864 default:
865 return EmitUnsupportedLValue(E, "predefined expression");
866 case PredefinedExpr::Func:
867 case PredefinedExpr::Function:
868 case PredefinedExpr::PrettyFunction:
869 return EmitPredefinedFunctionName(E->getIdentType());
870 }
Anders Carlsson625bfc82007-07-21 05:21:51 +0000871}
872
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000873LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenekc81614d2007-08-20 16:18:38 +0000874 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner2da04b32007-08-24 05:35:26 +0000875 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Eli Friedman07bbeca2009-06-06 19:09:26 +0000876 QualType IdxTy = E->getIdx()->getType();
877 bool IdxSigned = IdxTy->isSignedIntegerType();
878
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000879 // If the base is a vector type, then we are forming a vector element lvalue
880 // with this subscript.
Eli Friedman327944b2008-06-13 23:01:12 +0000881 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000882 // Emit the vector as an lvalue to get its address.
Eli Friedman327944b2008-06-13 23:01:12 +0000883 LValue LHS = EmitLValue(E->getBase());
Ted Kremenekc81614d2007-08-20 16:18:38 +0000884 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Owen Anderson41a75022009-08-13 21:57:51 +0000885 Idx = Builder.CreateIntCast(Idx,
886 llvm::Type::getInt32Ty(VMContext), IdxSigned, "vidx");
Eli Friedman327944b2008-06-13 23:01:12 +0000887 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
888 E->getBase()->getType().getCVRQualifiers());
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000889 }
890
Ted Kremenekc81614d2007-08-20 16:18:38 +0000891 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner2da04b32007-08-24 05:35:26 +0000892 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000893
Ted Kremenekc81614d2007-08-20 16:18:38 +0000894 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner23b7eb62007-06-15 23:05:46 +0000895 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta47425152009-04-24 02:40:57 +0000896 if (IdxBitwidth != LLVMPointerWidth)
Owen Anderson41a75022009-08-13 21:57:51 +0000897 Idx = Builder.CreateIntCast(Idx,
898 llvm::IntegerType::get(VMContext, LLVMPointerWidth),
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000899 IdxSigned, "idxprom");
900
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +0000901 // We know that the pointer points to a type of the correct size,
902 // unless the size is a VLA or Objective-C interface.
903 llvm::Value *Address = 0;
Anders Carlsson3d312f82008-12-21 00:11:23 +0000904 if (const VariableArrayType *VAT =
905 getContext().getAsVariableArrayType(E->getType())) {
Chris Lattner19efdd62009-08-14 23:43:22 +0000906 llvm::Value *VLASize = GetVLASize(VAT);
Anders Carlsson3d312f82008-12-21 00:11:23 +0000907
908 Idx = Builder.CreateMul(Idx, VLASize);
909
Anders Carlssone0808df2008-12-21 03:44:36 +0000910 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson3d312f82008-12-21 00:11:23 +0000911
912 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
913 Idx = Builder.CreateUDiv(Idx,
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000914 llvm::ConstantInt::get(Idx->getType(),
Anders Carlsson3d312f82008-12-21 00:11:23 +0000915 BaseTypeSize));
Dan Gohman43b44842009-08-12 00:33:55 +0000916 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +0000917 } else if (const ObjCInterfaceType *OIT =
918 dyn_cast<ObjCInterfaceType>(E->getType())) {
919 llvm::Value *InterfaceSize =
Owen Andersonb7a2fe62009-07-24 23:12:58 +0000920 llvm::ConstantInt::get(Idx->getType(),
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +0000921 getContext().getTypeSize(OIT) / 8);
922
923 Idx = Builder.CreateMul(Idx, InterfaceSize);
924
Owen Anderson41a75022009-08-13 21:57:51 +0000925 llvm::Type *i8PTy =
926 llvm::PointerType::getUnqual(llvm::Type::getInt8Ty(VMContext));
Dan Gohman43b44842009-08-12 00:33:55 +0000927 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +0000928 Idx, "arrayidx");
929 Address = Builder.CreateBitCast(Address, Base->getType());
930 } else {
Dan Gohman43b44842009-08-12 00:33:55 +0000931 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
Anders Carlsson3d312f82008-12-21 00:11:23 +0000932 }
933
Steve Naroff7cae42b2009-07-10 23:34:53 +0000934 QualType T = E->getBase()->getType()->getPointeeType();
935 assert(!T.isNull() &&
936 "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
937
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +0000938 LValue LV = LValue::MakeAddr(Address,
Daniel Dunbar41595d42009-04-18 08:54:40 +0000939 T.getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +0000940 getContext().getObjCGCAttrKind(T),
941 E->getBase()->getType().getAddressSpace());
Fariborz Jahaniana9fecf32009-02-21 23:37:19 +0000942 if (getContext().getLangOptions().ObjC1 &&
943 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanianc6d98002009-06-01 21:29:32 +0000944 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahaniana9fecf32009-02-21 23:37:19 +0000945 return LV;
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000946}
947
Nate Begemand3862152008-05-13 21:03:02 +0000948static
Owen Anderson170229f2009-07-14 23:10:40 +0000949llvm::Constant *GenerateConstantVector(llvm::LLVMContext &VMContext,
950 llvm::SmallVector<unsigned, 4> &Elts) {
Nate Begemand3862152008-05-13 21:03:02 +0000951 llvm::SmallVector<llvm::Constant *, 4> CElts;
952
953 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
Owen Anderson41a75022009-08-13 21:57:51 +0000954 CElts.push_back(llvm::ConstantInt::get(
955 llvm::Type::getInt32Ty(VMContext), Elts[i]));
Nate Begemand3862152008-05-13 21:03:02 +0000956
Owen Anderson3cc120a2009-07-28 21:22:35 +0000957 return llvm::ConstantVector::get(&CElts[0], CElts.size());
Nate Begemand3862152008-05-13 21:03:02 +0000958}
959
Chris Lattner9e751ca2007-08-02 23:37:31 +0000960LValue CodeGenFunction::
Nate Begemance4d7fc2008-04-18 23:10:10 +0000961EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner9e751ca2007-08-02 23:37:31 +0000962 // Emit the base vector as an l-value.
Chris Lattner6c7ce102009-02-16 21:11:58 +0000963 LValue Base;
964
965 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattnerb8211f62009-02-16 22:14:05 +0000966 if (!E->isArrow()) {
Chris Lattner6c7ce102009-02-16 21:11:58 +0000967 assert(E->getBase()->getType()->isVectorType());
968 Base = EmitLValue(E->getBase());
Chris Lattnerb8211f62009-02-16 22:14:05 +0000969 } else {
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000970 const PointerType *PT = E->getBase()->getType()->getAs<PointerType>();
Chris Lattnerb8211f62009-02-16 22:14:05 +0000971 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
Mon P Wangacedf772009-07-22 03:08:17 +0000972 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers(),
973 QualType::GCNone,
974 PT->getPointeeType().getAddressSpace());
Chris Lattner6c7ce102009-02-16 21:11:58 +0000975 }
Chris Lattner9e751ca2007-08-02 23:37:31 +0000976
Nate Begemand3862152008-05-13 21:03:02 +0000977 // Encode the element access list into a vector of unsigned indices.
978 llvm::SmallVector<unsigned, 4> Indices;
979 E->getEncodedElementAccess(Indices);
980
981 if (Base.isSimple()) {
Owen Anderson170229f2009-07-14 23:10:40 +0000982 llvm::Constant *CV = GenerateConstantVector(VMContext, Indices);
Eli Friedman327944b2008-06-13 23:01:12 +0000983 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattnere084c012009-02-16 22:25:49 +0000984 Base.getQualifiers());
Nate Begemand3862152008-05-13 21:03:02 +0000985 }
986 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
987
988 llvm::Constant *BaseElts = Base.getExtVectorElts();
989 llvm::SmallVector<llvm::Constant *, 4> CElts;
990
991 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
992 if (isa<llvm::ConstantAggregateZero>(BaseElts))
Owen Anderson41a75022009-08-13 21:57:51 +0000993 CElts.push_back(llvm::ConstantInt::get(
994 llvm::Type::getInt32Ty(VMContext), 0));
Nate Begemand3862152008-05-13 21:03:02 +0000995 else
996 CElts.push_back(BaseElts->getOperand(Indices[i]));
997 }
Owen Anderson3cc120a2009-07-28 21:22:35 +0000998 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman327944b2008-06-13 23:01:12 +0000999 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattnere084c012009-02-16 22:25:49 +00001000 Base.getQualifiers());
Chris Lattner9e751ca2007-08-02 23:37:31 +00001001}
1002
Devang Patel30efa2e2007-10-23 20:28:39 +00001003LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelb37b12d2007-12-11 21:33:16 +00001004 bool isUnion = false;
Fariborz Jahanian735a4152008-11-21 18:14:01 +00001005 bool isIvar = false;
Fariborz Jahanian10bec102009-02-21 00:30:43 +00001006 bool isNonGC = false;
Devang Pateld68df202007-10-24 22:26:28 +00001007 Expr *BaseExpr = E->getBase();
Devang Pateld68df202007-10-24 22:26:28 +00001008 llvm::Value *BaseValue = NULL;
Eli Friedman327944b2008-06-13 23:01:12 +00001009 unsigned CVRQualifiers=0;
1010
Chris Lattner4e4186b2007-12-02 18:52:07 +00001011 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patelb37b12d2007-12-11 21:33:16 +00001012 if (E->isArrow()) {
Devang Patel7718d7a2007-10-26 18:15:21 +00001013 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelb37b12d2007-12-11 21:33:16 +00001014 const PointerType *PTy =
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001015 BaseExpr->getType()->getAs<PointerType>();
Devang Patelb37b12d2007-12-11 21:33:16 +00001016 if (PTy->getPointeeType()->isUnionType())
1017 isUnion = true;
Eli Friedman327944b2008-06-13 23:01:12 +00001018 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Fariborz Jahanian1a504772009-09-01 17:02:21 +00001019 } else if (isa<ObjCPropertyRefExpr>(BaseExpr->IgnoreParens()) ||
1020 isa<ObjCImplicitSetterGetterRefExpr>(
1021 BaseExpr->IgnoreParens())) {
Fariborz Jahanian30e78642009-01-12 23:27:26 +00001022 RValue RV = EmitObjCPropertyGet(BaseExpr);
1023 BaseValue = RV.getAggregateAddr();
1024 if (BaseExpr->getType()->isUnionType())
1025 isUnion = true;
1026 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattnere084c012009-02-16 22:25:49 +00001027 } else {
Chris Lattner4e4186b2007-12-02 18:52:07 +00001028 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian735a4152008-11-21 18:14:01 +00001029 if (BaseLV.isObjCIvar())
1030 isIvar = true;
Fariborz Jahanian10bec102009-02-21 00:30:43 +00001031 if (BaseLV.isNonGC())
1032 isNonGC = true;
Chris Lattner4e4186b2007-12-02 18:52:07 +00001033 // FIXME: this isn't right for bitfields.
1034 BaseValue = BaseLV.getAddress();
Fariborz Jahanian82e28742009-07-29 00:44:13 +00001035 QualType BaseTy = BaseExpr->getType();
1036 if (BaseTy->isUnionType())
Devang Patelb37b12d2007-12-11 21:33:16 +00001037 isUnion = true;
Fariborz Jahanian82e28742009-07-29 00:44:13 +00001038 CVRQualifiers = BaseTy.getCVRQualifiers();
Chris Lattner4e4186b2007-12-02 18:52:07 +00001039 }
Devang Patel30efa2e2007-10-23 20:28:39 +00001040
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00001041 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
1042 // FIXME: Handle non-field member expressions
1043 assert(Field && "No code generation for non-field member references");
Chris Lattnere084c012009-02-16 22:25:49 +00001044 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
1045 CVRQualifiers);
Fariborz Jahanian735a4152008-11-21 18:14:01 +00001046 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahanian10bec102009-02-21 00:30:43 +00001047 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian735a4152008-11-21 18:14:01 +00001048 return MemExpLV;
Eli Friedmana62f3e12008-02-09 08:50:58 +00001049}
Devang Patel30efa2e2007-10-23 20:28:39 +00001050
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001051LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
1052 FieldDecl* Field,
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001053 unsigned CVRQualifiers) {
Anders Carlsson8af896c2009-07-23 17:01:21 +00001054 CodeGenTypes::BitFieldInfo Info = CGM.getTypes().getBitFieldInfo(Field);
1055
Mike Stump18bb9282009-05-16 07:57:57 +00001056 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
1057 // FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbar3d926cb2009-02-17 18:31:04 +00001058 const llvm::Type *FieldTy =
1059 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001060 const llvm::PointerType *BaseTy =
1061 cast<llvm::PointerType>(BaseValue->getType());
1062 unsigned AS = BaseTy->getAddressSpace();
1063 BaseValue = Builder.CreateBitCast(BaseValue,
Owen Anderson9793f0e2009-07-29 22:16:19 +00001064 llvm::PointerType::get(FieldTy, AS),
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001065 "tmp");
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001066
Anders Carlsson8af896c2009-07-23 17:01:21 +00001067 llvm::Value *Idx =
Owen Anderson41a75022009-08-13 21:57:51 +00001068 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), Info.FieldNo);
Anders Carlsson8af896c2009-07-23 17:01:21 +00001069 llvm::Value *V = Builder.CreateGEP(BaseValue, Idx, "tmp");
1070
1071 return LValue::MakeBitfield(V, Info.Start, Info.Size,
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001072 Field->getType()->isSignedIntegerType(),
1073 Field->getType().getCVRQualifiers()|CVRQualifiers);
1074}
1075
Eli Friedmana62f3e12008-02-09 08:50:58 +00001076LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
1077 FieldDecl* Field,
Eli Friedman327944b2008-06-13 23:01:12 +00001078 bool isUnion,
1079 unsigned CVRQualifiers)
Eli Friedmana62f3e12008-02-09 08:50:58 +00001080{
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001081 if (Field->isBitField())
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001082 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian003e8302008-11-20 00:15:42 +00001083
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001084 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001085 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman133e8042008-05-29 11:33:25 +00001086
Devang Pateled93c3c2007-10-26 19:42:18 +00001087 // Match union field type.
Lauro Ramos Venancio9eff02d2008-02-07 19:29:53 +00001088 if (isUnion) {
Eli Friedman327944b2008-06-13 23:01:12 +00001089 const llvm::Type *FieldTy =
1090 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patelffe1e212007-10-30 20:59:40 +00001091 const llvm::PointerType * BaseTy =
1092 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman9a5ffcb2008-05-21 13:24:44 +00001093 unsigned AS = BaseTy->getAddressSpace();
1094 V = Builder.CreateBitCast(V,
Owen Anderson9793f0e2009-07-29 22:16:19 +00001095 llvm::PointerType::get(FieldTy, AS),
Eli Friedman9a5ffcb2008-05-21 13:24:44 +00001096 "tmp");
Devang Pateled93c3c2007-10-26 19:42:18 +00001097 }
Eli Friedmanf7f9f682009-05-30 21:09:44 +00001098 if (Field->getType()->isReferenceType())
1099 V = Builder.CreateLoad(V, "tmp");
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +00001100
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001101 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanian257eac62009-02-18 17:52:36 +00001102 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian9959eee2009-02-18 18:52:41 +00001103 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1104 QualType Ty = Field->getType();
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001105 attr = Ty.getObjCGCAttr();
Fariborz Jahanian83e3eea2009-02-19 00:48:05 +00001106 if (attr != QualType::GCNone) {
Fariborz Jahanian9959eee2009-02-18 18:52:41 +00001107 // __weak attribute on a field is ignored.
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001108 if (attr == QualType::Weak)
1109 attr = QualType::GCNone;
Mike Stump658fe022009-07-30 22:28:39 +00001110 } else if (Ty->isObjCObjectPointerType())
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001111 attr = QualType::Strong;
Fariborz Jahanian9959eee2009-02-18 18:52:41 +00001112 }
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001113 LValue LV =
1114 LValue::MakeAddr(V,
1115 Field->getType().getCVRQualifiers()|CVRQualifiers,
Mon P Wangacedf772009-07-22 03:08:17 +00001116 attr,
1117 Field->getType().getAddressSpace());
Fariborz Jahanian003e8302008-11-20 00:15:42 +00001118 return LV;
Devang Patel30efa2e2007-10-23 20:28:39 +00001119}
1120
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001121LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman9fd8b682008-05-13 23:18:27 +00001122 const llvm::Type *LTy = ConvertType(E->getType());
1123 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1124
1125 const Expr* InitExpr = E->getInitializer();
Mon P Wangacedf772009-07-22 03:08:17 +00001126 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers(),
1127 QualType::GCNone,
1128 E->getType().getAddressSpace());
Eli Friedman9fd8b682008-05-13 23:18:27 +00001129
1130 if (E->getType()->isComplexType()) {
1131 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1132 } else if (hasAggregateLLVMType(E->getType())) {
1133 EmitAnyExpr(InitExpr, DeclPtr, false);
1134 } else {
1135 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1136 }
1137
1138 return Result;
1139}
1140
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +00001141LValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator* E) {
Eli Friedmane8caa2a2009-07-30 01:10:26 +00001142 if (E->isLvalue(getContext()) == Expr::LV_Valid)
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +00001143 return EmitUnsupportedLValue(E, "conditional operator");
1144
1145 // ?: here should be an aggregate.
1146 assert((hasAggregateLLVMType(E->getType()) &&
1147 !E->getType()->isAnyComplexType()) &&
1148 "Unexpected conditional operator!");
1149
1150 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1151 EmitAggExpr(E, Temp, false);
1152
1153 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +00001154 getContext().getObjCGCAttrKind(E->getType()),
1155 E->getType().getAddressSpace());
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +00001156
1157}
1158
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001159/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1160/// generator in an lvalue context, then it must mean that we need the address
1161/// of an aggregate in order to access one of its fields. This can happen for
1162/// all the reasons that casts are permitted with aggregate result, including
1163/// noop aggregate casts, and cast from scalar to union.
1164LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
Fariborz Jahanian8b899e42009-08-28 15:11:24 +00001165 if (E->getCastKind() == CastExpr::CK_UserDefinedConversion) {
Fariborz Jahanian3df87672009-08-29 19:15:16 +00001166 if (const CXXFunctionalCastExpr *CXXFExpr =
1167 dyn_cast<CXXFunctionalCastExpr>(E))
1168 return LValue::MakeAddr(
1169 EmitCXXFunctionalCastExpr(CXXFExpr).getScalarVal(), 0);
1170 assert(isa<CStyleCastExpr>(E) &&
1171 "EmitCastLValue - Expected CStyleCastExpr");
1172 return EmitLValue(E->getSubExpr());
Fariborz Jahanian8b899e42009-08-28 15:11:24 +00001173 }
1174
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001175 // If this is an aggregate-to-aggregate cast, just use the input's address as
1176 // the lvalue.
Eli Friedmanff083ef2009-08-27 21:19:33 +00001177 if (E->getCastKind() == CastExpr::CK_NoOp)
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001178 return EmitLValue(E->getSubExpr());
1179
Eli Friedmanff083ef2009-08-27 21:19:33 +00001180 // If this is an lvalue cast, treat it as a no-op.
1181 // FIXME: We shouldn't need to check for this explicitly!
1182 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
1183 if (ICE->isLvalueCast())
1184 return EmitLValue(E->getSubExpr());
1185
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001186 // Otherwise, we must have a cast from scalar to union.
Eli Friedmanff083ef2009-08-27 21:19:33 +00001187 assert(E->getCastKind() == CastExpr::CK_ToUnion &&
1188 "Expected scalar-to-union cast");
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001189
1190 // Casts are only lvalues when the source and destination types are the same.
1191 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
Chris Lattnerab17fb22009-03-18 18:30:44 +00001192 EmitAnyExpr(E->getSubExpr(), Temp, false);
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001193
1194 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +00001195 getContext().getObjCGCAttrKind(E->getType()),
1196 E->getType().getAddressSpace());
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001197}
1198
Chris Lattnere47e4402007-06-01 18:02:12 +00001199//===--------------------------------------------------------------------===//
1200// Expression Emission
1201//===--------------------------------------------------------------------===//
1202
Chris Lattner76ba8492007-08-20 22:37:10 +00001203
Chris Lattner2b228c92007-06-15 21:34:29 +00001204RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00001205 // Builtins never have block type.
Daniel Dunbarbb197e42009-01-09 16:50:52 +00001206 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlsson2437cbf2009-02-12 00:39:25 +00001207 return EmitBlockCallExpr(E);
Daniel Dunbarbb197e42009-01-09 16:50:52 +00001208
Anders Carlssone5fd6f22009-04-03 22:50:24 +00001209 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1210 return EmitCXXMemberCallExpr(CE);
1211
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00001212 const Decl *TargetDecl = 0;
Daniel Dunbar27032de2009-02-20 19:34:33 +00001213 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1214 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1215 TargetDecl = DRE->getDecl();
1216 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1217 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1218 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00001219 }
1220 }
1221
Chris Lattner4ca97c32009-06-13 00:26:38 +00001222 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
Anders Carlsson4034a952009-05-27 04:18:27 +00001223 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
1224 return EmitCXXOperatorMemberCallExpr(CE, MD);
Anders Carlsson4034a952009-05-27 04:18:27 +00001225
Douglas Gregorad8a3362009-09-04 17:36:40 +00001226 if (isa<CXXPseudoDestructorExpr>(E->getCallee())) {
1227 // C++ [expr.pseudo]p1:
1228 // The result shall only be used as the operand for the function call
1229 // operator (), and the result of such a call has type void. The only
1230 // effect is the evaluation of the postfix-expression before the dot or
1231 // arrow.
1232 EmitScalarExpr(E->getCallee());
1233 return RValue::get(0);
1234 }
1235
Chris Lattner2da04b32007-08-24 05:35:26 +00001236 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Anders Carlsson3a9463b2009-05-27 01:22:39 +00001237 return EmitCall(Callee, E->getCallee()->getType(),
1238 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattner9e47ead2007-08-31 04:44:06 +00001239}
1240
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00001241LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattnere541ea32009-05-12 21:28:12 +00001242 // Comma expressions just emit their LHS then their RHS as an l-value.
1243 if (E->getOpcode() == BinaryOperator::Comma) {
1244 EmitAnyExpr(E->getLHS());
1245 return EmitLValue(E->getRHS());
1246 }
1247
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00001248 // Can only get l-value for binary operator expressions which are a
1249 // simple assignment of aggregate type.
1250 if (E->getOpcode() != BinaryOperator::Assign)
1251 return EmitUnsupportedLValue(E, "binary l-value expression");
1252
1253 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1254 EmitAggExpr(E, Temp, false);
1255 // FIXME: Are these qualifiers correct?
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001256 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +00001257 getContext().getObjCGCAttrKind(E->getType()),
1258 E->getType().getAddressSpace());
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00001259}
1260
Christopher Lambd91c3d42007-12-29 05:02:41 +00001261LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
Christopher Lambd91c3d42007-12-29 05:02:41 +00001262 RValue RV = EmitCallExpr(E);
Anders Carlsson4ae70ff2009-05-27 01:45:47 +00001263
1264 if (RV.isScalar()) {
1265 assert(E->getCallReturnType()->isReferenceType() &&
1266 "Can't have a scalar return unless the return type is a "
1267 "reference type!");
1268
1269 return LValue::MakeAddr(RV.getScalarVal(), E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +00001270 getContext().getObjCGCAttrKind(E->getType()),
1271 E->getType().getAddressSpace());
Anders Carlsson4ae70ff2009-05-27 01:45:47 +00001272 }
1273
Eli Friedman327944b2008-06-13 23:01:12 +00001274 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001275 E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +00001276 getContext().getObjCGCAttrKind(E->getType()),
1277 E->getType().getAddressSpace());
Christopher Lambd91c3d42007-12-29 05:02:41 +00001278}
1279
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +00001280LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1281 // FIXME: This shouldn't require another copy.
1282 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1283 EmitAggExpr(E, Temp, false);
Mon P Wangacedf772009-07-22 03:08:17 +00001284 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1285 QualType::GCNone, E->getType().getAddressSpace());
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +00001286}
1287
Argyrios Kyrtzidis07052352008-09-10 02:36:38 +00001288LValue
1289CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1290 EmitLocalBlockVarDecl(*E->getVarDecl());
1291 return EmitDeclRefLValue(E);
1292}
1293
Anders Carlsson3be22e22009-05-30 23:23:33 +00001294LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
1295 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()), "tmp");
1296 EmitCXXConstructExpr(Temp, E);
Mon P Wangacedf772009-07-22 03:08:17 +00001297 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1298 QualType::GCNone, E->getType().getAddressSpace());
Anders Carlsson3be22e22009-05-30 23:23:33 +00001299}
1300
Anders Carlssonfd2af0c2009-05-30 23:30:54 +00001301LValue
1302CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
1303 LValue LV = EmitLValue(E->getSubExpr());
1304
Anders Carlsson8eb93e72009-05-31 00:34:10 +00001305 PushCXXTemporary(E->getTemporary(), LV.getAddress());
Anders Carlssonfd2af0c2009-05-30 23:30:54 +00001306
1307 return LV;
1308}
1309
Daniel Dunbarc8317a42008-08-23 10:51:21 +00001310LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1311 // Can only get l-value for message expression returning aggregate type
1312 RValue RV = EmitObjCMessageExpr(E);
1313 // FIXME: can this be volatile?
1314 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001315 E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +00001316 getContext().getObjCGCAttrKind(E->getType()),
1317 E->getType().getAddressSpace());
Daniel Dunbarc8317a42008-08-23 10:51:21 +00001318}
1319
Daniel Dunbar722f4242009-04-22 05:08:15 +00001320llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001321 const ObjCIvarDecl *Ivar) {
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00001322 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001323}
1324
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00001325LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1326 llvm::Value *BaseValue,
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001327 const ObjCIvarDecl *Ivar,
1328 unsigned CVRQualifiers) {
Chris Lattnerc4688d22009-04-17 17:44:48 +00001329 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar9ebf9512009-04-21 01:19:28 +00001330 Ivar, CVRQualifiers);
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001331}
1332
1333LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonc13b85a2008-08-25 01:53:23 +00001334 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1335 llvm::Value *BaseValue = 0;
1336 const Expr *BaseExpr = E->getBase();
1337 unsigned CVRQualifiers = 0;
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00001338 QualType ObjectTy;
Anders Carlssonc13b85a2008-08-25 01:53:23 +00001339 if (E->isArrow()) {
1340 BaseValue = EmitScalarExpr(BaseExpr);
Steve Naroff7cae42b2009-07-10 23:34:53 +00001341 ObjectTy = BaseExpr->getType()->getPointeeType();
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00001342 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonc13b85a2008-08-25 01:53:23 +00001343 } else {
1344 LValue BaseLV = EmitLValue(BaseExpr);
1345 // FIXME: this isn't right for bitfields.
1346 BaseValue = BaseLV.getAddress();
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00001347 ObjectTy = BaseExpr->getType();
1348 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonc13b85a2008-08-25 01:53:23 +00001349 }
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001350
Daniel Dunbar9ebf9512009-04-21 01:19:28 +00001351 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner4bd55962008-03-30 23:03:07 +00001352}
1353
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +00001354LValue
1355CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1356 // This is a special l-value that just issues sends when we load or
1357 // store through it.
1358 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1359}
1360
Fariborz Jahanian9ac53512008-11-22 22:30:21 +00001361LValue
Fariborz Jahanian88cc2342009-08-18 20:50:23 +00001362CodeGenFunction::EmitObjCKVCRefLValue(
Fariborz Jahanian9a846652009-08-20 17:02:02 +00001363 const ObjCImplicitSetterGetterRefExpr *E) {
Fariborz Jahanian9ac53512008-11-22 22:30:21 +00001364 // This is a special l-value that just issues sends when we load or
1365 // store through it.
1366 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1367}
1368
Douglas Gregor8ea1f532008-11-04 14:56:14 +00001369LValue
Chris Lattnera4185c52009-04-25 19:35:26 +00001370CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregor8ea1f532008-11-04 14:56:14 +00001371 return EmitUnsupportedLValue(E, "use of super");
1372}
1373
Chris Lattnera4185c52009-04-25 19:35:26 +00001374LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
1375
1376 // Can only get l-value for message expression returning aggregate type
1377 RValue RV = EmitAnyExprToTemp(E);
1378 // FIXME: can this be volatile?
1379 return LValue::MakeAddr(RV.getAggregateAddr(),
1380 E->getType().getCVRQualifiers(),
Mon P Wangacedf772009-07-22 03:08:17 +00001381 getContext().getObjCGCAttrKind(E->getType()),
1382 E->getType().getAddressSpace());
Chris Lattnera4185c52009-04-25 19:35:26 +00001383}
1384
1385
Anders Carlsson3a9463b2009-05-27 01:22:39 +00001386RValue CodeGenFunction::EmitCall(llvm::Value *Callee, QualType CalleeType,
1387 CallExpr::const_arg_iterator ArgBeg,
1388 CallExpr::const_arg_iterator ArgEnd,
1389 const Decl *TargetDecl) {
Daniel Dunbarbb197e42009-01-09 16:50:52 +00001390 // Get the actual function type. The callee type will always be a
1391 // pointer to function type or a block pointer type.
Anders Carlssond8db8532009-04-07 18:53:02 +00001392 assert(CalleeType->isFunctionPointerType() &&
1393 "Call must have function pointer type!");
1394
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001395 QualType FnType = CalleeType->getAs<PointerType>()->getPointeeType();
Anders Carlssond8db8532009-04-07 18:53:02 +00001396 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbarc722b852008-08-30 03:02:31 +00001397
1398 CallArgList Args;
Anders Carlsson479e6fc2009-04-08 23:13:16 +00001399 EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
Daniel Dunbarc722b852008-08-30 03:02:31 +00001400
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +00001401 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00001402 Callee, Args, TargetDecl);
Daniel Dunbar97db84c2008-08-23 03:46:30 +00001403}