blob: 332d47c1dd924ea5a0d71b2a385bd2d5784dc54f [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"
Eli Friedman316bb1b2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22using namespace CodeGen;
23
24//===--------------------------------------------------------------------===//
25// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
28/// 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 Lattnerf1466842009-03-22 00:24:14 +000032 if (!Builder.isNamePreserving())
33 Name = "";
Owen Andersond7200462009-07-16 00:14:12 +000034 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
Reid Spencer5f016e22007-07-11 17:01:13 +000035}
36
37/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
38/// expression and compare the result against zero, returning an Int1Ty value.
39llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000040 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000041 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000042 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000043
Chris Lattner9069fa22007-08-26 16:46:58 +000044 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000045}
46
Chris Lattner9b655512007-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
Mike Stumpdb52dcd2009-09-09 13:00:44 +000049/// aggregate expression, the aggloc/agglocvolatile arguments indicate where the
50/// result should be returned.
51RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000052 bool IsAggLocVolatile, bool IgnoreResult,
53 bool IsInitializer) {
Chris Lattner9b655512007-08-31 22:49:20 +000054 if (!hasAggregateLLVMType(E->getType()))
Mike Stump7f79f9b2009-05-29 15:46:01 +000055 return RValue::get(EmitScalarExpr(E, IgnoreResult));
Chris Lattner9b2dc282008-04-04 16:54:41 +000056 else if (E->getType()->isAnyComplexType())
Mike Stump7f79f9b2009-05-29 15:46:01 +000057 return RValue::getComplex(EmitComplexExpr(E, false, false,
58 IgnoreResult, IgnoreResult));
Mike Stumpdb52dcd2009-09-09 13:00:44 +000059
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000060 EmitAggExpr(E, AggLoc, IsAggLocVolatile, IgnoreResult, IsInitializer);
61 return RValue::getAggregate(AggLoc, IsAggLocVolatile);
Chris Lattner9b655512007-08-31 22:49:20 +000062}
63
Mike Stumpdb52dcd2009-09-09 13:00:44 +000064/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result will
65/// always be accessible even if no aggregate location is provided.
66RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E,
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000067 bool IsAggLocVolatile,
68 bool IsInitializer) {
69 llvm::Value *AggLoc = 0;
Mike Stumpdb52dcd2009-09-09 13:00:44 +000070
71 if (hasAggregateLLVMType(E->getType()) &&
Daniel Dunbar46f45b92008-09-09 01:06:48 +000072 !E->getType()->isAnyComplexType())
73 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +000074 return EmitAnyExpr(E, AggLoc, IsAggLocVolatile, /*IgnoreResult=*/false,
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000075 IsInitializer);
Daniel Dunbar46f45b92008-09-09 01:06:48 +000076}
77
Anders Carlsson4029ca72009-05-20 00:24:07 +000078RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000079 QualType DestType,
80 bool IsInitializer) {
Eli Friedman5df0d422009-05-20 02:31:19 +000081 RValue Val;
82 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
Anders Carlsson4bbab922009-05-20 00:36:58 +000083 // Emit the expr as an lvalue.
84 LValue LV = EmitLValue(E);
Eli Friedman5df0d422009-05-20 02:31:19 +000085 if (LV.isSimple())
86 return RValue::get(LV.getAddress());
87 Val = EmitLoadOfLValue(LV, E->getType());
88 } else {
Anders Carlsson8478ce62009-08-16 17:50:25 +000089 // FIXME: Initializers don't work with casts yet. For example
90 // const A& a = B();
91 // if B inherits from A.
Anders Carlsson14c5cbf2009-08-16 07:36:22 +000092 Val = EmitAnyExprToTemp(E, /*IsAggLocVolatile=*/false,
93 IsInitializer);
Mike Stumpdb52dcd2009-09-09 13:00:44 +000094
Anders Carlsson2da76932009-08-16 17:54:29 +000095 if (IsInitializer) {
96 // We might have to destroy the temporary variable.
97 if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
98 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
99 if (!ClassDecl->hasTrivialDestructor()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000100 const CXXDestructorDecl *Dtor =
Anders Carlsson2da76932009-08-16 17:54:29 +0000101 ClassDecl->getDestructor(getContext());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000102
Anders Carlsson2da76932009-08-16 17:54:29 +0000103 CleanupScope scope(*this);
104 EmitCXXDestructorCall(Dtor, Dtor_Complete, Val.getAggregateAddr());
105 }
Anders Carlsson8478ce62009-08-16 17:50:25 +0000106 }
107 }
108 }
Anders Carlsson4bbab922009-05-20 00:36:58 +0000109 }
Eli Friedman5df0d422009-05-20 02:31:19 +0000110
111 if (Val.isAggregate()) {
112 Val = RValue::get(Val.getAggregateAddr());
113 } else {
Anders Carlsson7cd3a642009-05-20 01:35:03 +0000114 // Create a temporary variable that we can bind the reference to.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000115 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()),
Anders Carlssone04d1c72009-05-20 01:03:17 +0000116 "reftmp");
Eli Friedman5df0d422009-05-20 02:31:19 +0000117 if (Val.isScalar())
118 EmitStoreOfScalar(Val.getScalarVal(), Temp, false, E->getType());
119 else
120 StoreComplexToAddr(Val.getComplexVal(), Temp, false);
121 Val = RValue::get(Temp);
Anders Carlssone04d1c72009-05-20 01:03:17 +0000122 }
Eli Friedman5df0d422009-05-20 02:31:19 +0000123
124 return Val;
Anders Carlsson4029ca72009-05-20 00:24:07 +0000125}
126
127
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000128/// getAccessedFieldNo - Given an encoded value and a result number, return the
129/// input field number being accessed.
130unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
Dan Gohman4f8d1232008-05-22 00:50:06 +0000131 const llvm::Constant *Elts) {
132 if (isa<llvm::ConstantAggregateZero>(Elts))
133 return 0;
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000134
Dan Gohman4f8d1232008-05-22 00:50:06 +0000135 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
136}
137
Chris Lattner9b655512007-08-31 22:49:20 +0000138
Reid Spencer5f016e22007-07-11 17:01:13 +0000139//===----------------------------------------------------------------------===//
140// LValue Expression Emission
141//===----------------------------------------------------------------------===//
142
Daniel Dunbar13e81732009-02-05 07:09:07 +0000143RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
144 if (Ty->isVoidType()) {
145 return RValue::get(0);
John McCall183700f2009-09-21 23:43:11 +0000146 } else if (const ComplexType *CTy = Ty->getAs<ComplexType>()) {
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000147 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
Owen Anderson03e20502009-07-30 23:11:26 +0000148 llvm::Value *U = llvm::UndefValue::get(EltTy);
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000149 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbar13e81732009-02-05 07:09:07 +0000150 } else if (hasAggregateLLVMType(Ty)) {
Owen Anderson96e0fc72009-07-29 22:16:19 +0000151 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
Owen Anderson03e20502009-07-30 23:11:26 +0000152 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000153 } else {
Owen Anderson03e20502009-07-30 23:11:26 +0000154 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000155 }
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000156}
157
Daniel Dunbar13e81732009-02-05 07:09:07 +0000158RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
159 const char *Name) {
160 ErrorUnsupported(E, Name);
161 return GetUndefRValue(E->getType());
162}
163
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000164LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
165 const char *Name) {
166 ErrorUnsupported(E, Name);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000167 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Owen Anderson03e20502009-07-30 23:11:26 +0000168 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
John McCall0953e762009-09-24 19:53:00 +0000169 MakeQualifiers(E->getType()));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000170}
171
Reid Spencer5f016e22007-07-11 17:01:13 +0000172/// EmitLValue - Emit code to compute a designator that specifies the location
173/// of the expression.
174///
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000175/// This can return one of two things: a simple address or a bitfield reference.
176/// In either case, the LLVM Value* in the LValue structure is guaranteed to be
177/// an LLVM pointer type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000178///
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000179/// If this returns a bitfield reference, nothing about the pointee type of the
180/// LLVM value is known: For example, it may not be a pointer to an integer.
Reid Spencer5f016e22007-07-11 17:01:13 +0000181///
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000182/// If this returns a normal address, and if the lvalue's C type is fixed size,
183/// this method guarantees that the returned pointer type will point to an LLVM
184/// type of the same size of the lvalue's type. If the lvalue has a variable
185/// length type, this is not possible.
Reid Spencer5f016e22007-07-11 17:01:13 +0000186///
187LValue CodeGenFunction::EmitLValue(const Expr *E) {
188 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000189 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000190
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000191 case Expr::BinaryOperatorClass:
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000192 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000193 case Expr::CallExprClass:
Anders Carlssonfaf86642009-09-01 21:18:52 +0000194 case Expr::CXXMemberCallExprClass:
Douglas Gregorb4609802008-11-14 16:09:21 +0000195 case Expr::CXXOperatorCallExprClass:
196 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000197 case Expr::VAArgExprClass:
198 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000199 case Expr::DeclRefExprClass:
Douglas Gregor1a49af92009-01-06 05:10:23 +0000200 case Expr::QualifiedDeclRefExprClass:
201 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000202 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000203 case Expr::PredefinedExprClass:
204 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000205 case Expr::StringLiteralClass:
206 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000207 case Expr::ObjCEncodeExprClass:
208 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000209
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000210 case Expr::BlockDeclRefExprClass:
Mike Stumpa99038c2009-02-28 09:07:16 +0000211 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
212
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000213 case Expr::CXXConditionDeclExprClass:
214 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
Anders Carlssonb58d0172009-05-30 23:23:33 +0000215 case Expr::CXXTemporaryObjectExprClass:
216 case Expr::CXXConstructExprClass:
Anders Carlssone61c9e82009-05-30 23:30:54 +0000217 return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
218 case Expr::CXXBindTemporaryExprClass:
219 return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
Anders Carlssonb9ea0b52009-09-14 01:10:45 +0000220 case Expr::CXXExprWithTemporariesClass:
221 return EmitCXXExprWithTemporariesLValue(cast<CXXExprWithTemporaries>(E));
Anders Carlssone61c9e82009-05-30 23:30:54 +0000222
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000223 case Expr::ObjCMessageExprClass:
224 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000225 case Expr::ObjCIvarRefExprClass:
Chris Lattner391d77a2008-03-30 23:03:07 +0000226 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000227 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000228 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000229 case Expr::ObjCImplicitSetterGetterRefExprClass:
230 return EmitObjCKVCRefLValue(cast<ObjCImplicitSetterGetterRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000231 case Expr::ObjCSuperExprClass:
Chris Lattner65459942009-04-25 19:35:26 +0000232 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000233
Chris Lattner65459942009-04-25 19:35:26 +0000234 case Expr::StmtExprClass:
235 return EmitStmtExprLValue(cast<StmtExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000236 case Expr::UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000237 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
238 case Expr::ArraySubscriptExprClass:
239 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000240 case Expr::ExtVectorElementExprClass:
241 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000242 case Expr::MemberExprClass:
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000243 return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000244 case Expr::CompoundLiteralExprClass:
245 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbar90345582009-03-24 02:38:23 +0000246 case Expr::ConditionalOperatorClass:
Anders Carlsson6fcec8b2009-09-15 16:35:24 +0000247 return EmitConditionalOperatorLValue(cast<ConditionalOperator>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000248 case Expr::ChooseExprClass:
Eli Friedman79769322009-03-04 05:52:32 +0000249 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattnerc3953a62009-03-18 04:02:57 +0000250 case Expr::ImplicitCastExprClass:
251 case Expr::CStyleCastExprClass:
252 case Expr::CXXFunctionalCastExprClass:
253 case Expr::CXXStaticCastExprClass:
254 case Expr::CXXDynamicCastExprClass:
255 case Expr::CXXReinterpretCastExprClass:
256 case Expr::CXXConstCastExprClass:
Chris Lattner75dfeda2009-03-18 18:28:57 +0000257 return EmitCastLValue(cast<CastExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000258 }
259}
260
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000261llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
262 QualType Ty) {
263 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
264
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000265 // Bool can have different representation in memory than in registers.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000266 if (Ty->isBooleanType())
Owen Anderson0032b272009-08-13 21:57:51 +0000267 if (V->getType() != llvm::Type::getInt1Ty(VMContext))
268 V = Builder.CreateTrunc(V, llvm::Type::getInt1Ty(VMContext), "tobool");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000269
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000270 return V;
271}
272
273void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000274 bool Volatile, QualType Ty) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000275
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000276 if (Ty->isBooleanType()) {
277 // Bool can have different representation in memory than in registers.
278 const llvm::Type *SrcTy = Value->getType();
279 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
280 if (DstPtr->getElementType() != SrcTy) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000281 const llvm::Type *MemTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000282 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000283 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
284 }
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000285 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000286 Builder.CreateStore(Value, Addr, Volatile);
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000287}
288
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000289/// EmitLoadOfLValue - Given an expression that represents a value lvalue, this
290/// method emits the address of the lvalue, then loads the result as an rvalue,
291/// returning the rvalue.
Reid Spencer5f016e22007-07-11 17:01:13 +0000292RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000293 if (LV.isObjCWeak()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000294 // load of a __weak object.
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000295 llvm::Value *AddrWeakObj = LV.getAddress();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000296 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000297 AddrWeakObj);
298 return RValue::get(read_weak);
299 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000300
Reid Spencer5f016e22007-07-11 17:01:13 +0000301 if (LV.isSimple()) {
302 llvm::Value *Ptr = LV.getAddress();
303 const llvm::Type *EltTy =
304 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000305
Reid Spencer5f016e22007-07-11 17:01:13 +0000306 // Simple scalar l-value.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000307 if (EltTy->isSingleValueType())
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000308 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000309 ExprType));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000310
Chris Lattner883f6a72007-08-11 00:04:45 +0000311 assert(ExprType->isFunctionType() && "Unknown scalar value");
312 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000313 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000314
Reid Spencer5f016e22007-07-11 17:01:13 +0000315 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000316 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
317 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000318 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
319 "vecext"));
320 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000321
322 // If this is a reference to a subset of the elements of a vector, either
323 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000324 if (LV.isExtVectorElt())
325 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000326
327 if (LV.isBitfield())
328 return EmitLoadOfBitfieldLValue(LV, ExprType);
329
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000330 if (LV.isPropertyRef())
331 return EmitLoadOfPropertyRefLValue(LV, ExprType);
332
Chris Lattner73525de2009-02-16 21:11:58 +0000333 assert(LV.isKVCRef() && "Unknown LValue type!");
334 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000335}
336
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000337RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
338 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000339 unsigned StartBit = LV.getBitfieldStartBit();
340 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000341 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000342
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000343 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000344 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000345 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000346
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000347 // In some cases the bitfield may straddle two memory locations. Currently we
348 // load the entire bitfield, then do the magic to sign-extend it if
349 // necessary. This results in somewhat more code than necessary for the common
350 // case (one load), since two shifts accomplish both the masking and sign
351 // extension.
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000352 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
353 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000354
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000355 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000356 if (StartBit)
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000357 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000358 "bf.lo");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000359
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000360 // Mask off unused bits.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000361 llvm::Constant *LowMask = llvm::ConstantInt::get(VMContext,
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000362 llvm::APInt::getLowBitsSet(EltTySize, LowBits));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000363 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000364
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000365 // Fetch the high bits if necessary.
366 if (LowBits < BitfieldSize) {
367 unsigned HighBits = BitfieldSize - LowBits;
Owen Anderson0032b272009-08-13 21:57:51 +0000368 llvm::Value *HighPtr = Builder.CreateGEP(Ptr, llvm::ConstantInt::get(
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000369 llvm::Type::getInt32Ty(VMContext), 1), "bf.ptr.hi");
370 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000371 LV.isVolatileQualified(),
372 "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000373
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000374 // Mask off unused bits.
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000375 llvm::Constant *HighMask = llvm::ConstantInt::get(VMContext,
376 llvm::APInt::getLowBitsSet(EltTySize, HighBits));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000377 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000378
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000379 // Shift to proper location and or in to bitfield value.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000380 HighVal = Builder.CreateShl(HighVal,
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000381 llvm::ConstantInt::get(EltTy, LowBits));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000382 Val = Builder.CreateOr(Val, HighVal, "bf.val");
383 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000384
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000385 // Sign extend if necessary.
386 if (LV.isBitfieldSigned()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000387 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000388 EltTySize - BitfieldSize);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000389 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000390 ExtraBits, "bf.val.sext");
391 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000392
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000393 // The bitfield type and the normal type differ when the storage sizes differ
394 // (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000395 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000396
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000397 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000398}
399
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000400RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
401 QualType ExprType) {
402 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
403}
404
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000405RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
406 QualType ExprType) {
407 return EmitObjCPropertyGet(LV.getKVCRefExpr());
408}
409
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000410// If this is a reference to a subset of the elements of a vector, create an
411// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000412RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
413 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000414 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
415 LV.isVolatileQualified(), "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000416
Nate Begeman8a997642008-05-09 06:41:27 +0000417 const llvm::Constant *Elts = LV.getExtVectorElts();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000418
419 // If the result of the expression is a non-vector type, we must be extracting
420 // a single element. Just codegen as an extractelement.
John McCall183700f2009-09-21 23:43:11 +0000421 const VectorType *ExprVT = ExprType->getAs<VectorType>();
Chris Lattnercf60cd22007-08-10 17:10:08 +0000422 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000423 unsigned InIdx = getAccessedFieldNo(0, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000424 llvm::Value *Elt = llvm::ConstantInt::get(
425 llvm::Type::getInt32Ty(VMContext), InIdx);
Chris Lattner34cdc862007-08-03 16:18:34 +0000426 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
427 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000428
429 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000430 unsigned NumResultElts = ExprVT->getNumElements();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000431
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000432 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000433 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000434 unsigned InIdx = getAccessedFieldNo(i, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000435 Mask.push_back(llvm::ConstantInt::get(
436 llvm::Type::getInt32Ty(VMContext), InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000437 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000438
Owen Anderson4a289322009-07-28 21:22:35 +0000439 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000440 Vec = Builder.CreateShuffleVector(Vec,
Owen Anderson03e20502009-07-30 23:11:26 +0000441 llvm::UndefValue::get(Vec->getType()),
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000442 MaskV, "tmp");
443 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000444}
445
446
Reid Spencer5f016e22007-07-11 17:01:13 +0000447
448/// EmitStoreThroughLValue - Store the specified rvalue into the specified
449/// lvalue, where both are guaranteed to the have the same type, and that type
450/// is 'Ty'.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000451void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
Reid Spencer5f016e22007-07-11 17:01:13 +0000452 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000453 if (!Dst.isSimple()) {
454 if (Dst.isVectorElt()) {
455 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000456 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
457 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000458 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000459 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000460 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000461 return;
462 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000463
Nate Begeman213541a2008-04-18 23:10:10 +0000464 // If this is an update of extended vector elements, insert them as
465 // appropriate.
466 if (Dst.isExtVectorElt())
467 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000468
469 if (Dst.isBitfield())
470 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
471
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000472 if (Dst.isPropertyRef())
473 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
474
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000475 if (Dst.isKVCRef())
476 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
477
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000478 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000479 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000480
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000481 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000482 // load of a __weak object.
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000483 llvm::Value *LvalueDst = Dst.getAddress();
484 llvm::Value *src = Src.getScalarVal();
Mike Stumpf33651c2009-04-14 00:57:29 +0000485 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000486 return;
487 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000488
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000489 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000490 // load of a __strong object.
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000491 llvm::Value *LvalueDst = Dst.getAddress();
492 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000493 if (Dst.isObjCIvar()) {
494 assert(Dst.getBaseIvarExp() && "BaseIvarExp is NULL");
495 const llvm::Type *ResultType = ConvertType(getContext().LongTy);
496 llvm::Value *RHS = EmitScalarExpr(Dst.getBaseIvarExp());
497 RHS = Builder.CreatePtrToInt(RHS, ResultType, "sub.ptr.rhs.cast");
498 llvm::Value *LHS =
499 Builder.CreatePtrToInt(LvalueDst, ResultType, "sub.ptr.lhs.cast");
500 llvm::Value *BytesBetween = Builder.CreateSub(LHS, RHS, "ivar.offset");
501 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst,
502 BytesBetween);
503 }
Fariborz Jahaniandbf3cfd2009-09-16 23:11:23 +0000504 else if (Dst.isGlobalObjCRef())
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000505 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
506 else
507 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000508 return;
509 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000510
Chris Lattner883f6a72007-08-11 00:04:45 +0000511 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000512 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
513 Dst.isVolatileQualified(), Ty);
Reid Spencer5f016e22007-07-11 17:01:13 +0000514}
515
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000516void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000517 QualType Ty,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000518 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000519 unsigned StartBit = Dst.getBitfieldStartBit();
520 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000521 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000522
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000523 const llvm::Type *EltTy =
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000524 cast<llvm::PointerType>(Ptr->getType())->getElementType();
525 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
526
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000527 // Get the new value, cast to the appropriate type and masked to exactly the
528 // size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000529 llvm::Value *SrcVal = Src.getScalarVal();
530 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000531 llvm::Constant *Mask = llvm::ConstantInt::get(VMContext,
532 llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000533 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000534
Daniel Dunbared3849b2008-11-19 09:36:46 +0000535 // Return the new value of the bit-field, if requested.
536 if (Result) {
537 // Cast back to the proper type for result.
538 const llvm::Type *SrcTy = SrcVal->getType();
539 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
540 "bf.reload.val");
541
542 // Sign extend if necessary.
543 if (Dst.isBitfieldSigned()) {
544 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000545 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000546 SrcTySize - BitfieldSize);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000547 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
Daniel Dunbared3849b2008-11-19 09:36:46 +0000548 ExtraBits, "bf.reload.sext");
549 }
550
551 *Result = SrcTrunc;
552 }
553
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000554 // In some cases the bitfield may straddle two memory locations. Emit the low
555 // part first and check to see if the high needs to be done.
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000556 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
557 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
558 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000559
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000560 // Compute the mask for zero-ing the low part of this bitfield.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000561 llvm::Constant *InvMask =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000562 llvm::ConstantInt::get(VMContext,
563 ~llvm::APInt::getBitsSet(EltTySize, StartBit, StartBit + LowBits));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000564
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000565 // Compute the new low part as
566 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
567 // with the shift of NewVal implicitly stripping the high bits.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000568 llvm::Value *NewLowVal =
569 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
570 "bf.value.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000571 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
572 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000573
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000574 // Write back.
575 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000576
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000577 // If the low part doesn't cover the bitfield emit a high part.
578 if (LowBits < BitfieldSize) {
579 unsigned HighBits = BitfieldSize - LowBits;
Owen Anderson0032b272009-08-13 21:57:51 +0000580 llvm::Value *HighPtr = Builder.CreateGEP(Ptr, llvm::ConstantInt::get(
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000581 llvm::Type::getInt32Ty(VMContext), 1), "bf.ptr.hi");
582 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000583 Dst.isVolatileQualified(),
584 "bf.prev.hi");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000585
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000586 // Compute the mask for zero-ing the high part of this bitfield.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000587 llvm::Constant *InvMask =
588 llvm::ConstantInt::get(VMContext, ~llvm::APInt::getLowBitsSet(EltTySize,
Owen Andersona1cf15f2009-07-14 23:10:40 +0000589 HighBits));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000590
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000591 // Compute the new high part as
592 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
593 // where the high bits of NewVal have already been cleared and the
594 // shift stripping the low bits.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000595 llvm::Value *NewHighVal =
596 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
597 "bf.value.high");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000598 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
599 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000600
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000601 // Write back.
602 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
603 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000604}
605
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000606void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
607 LValue Dst,
608 QualType Ty) {
609 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
610}
611
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000612void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
613 LValue Dst,
614 QualType Ty) {
615 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
616}
617
Nate Begeman213541a2008-04-18 23:10:10 +0000618void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
619 LValue Dst,
620 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000621 // This access turns into a read/modify/write of the vector. Load the input
622 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000623 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
624 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000625 const llvm::Constant *Elts = Dst.getExtVectorElts();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000626
Chris Lattner9b655512007-08-31 22:49:20 +0000627 llvm::Value *SrcVal = Src.getScalarVal();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000628
John McCall183700f2009-09-21 23:43:11 +0000629 if (const VectorType *VTy = Ty->getAs<VectorType>()) {
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000630 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000631 unsigned NumDstElts =
632 cast<llvm::VectorType>(Vec->getType())->getNumElements();
633 if (NumDstElts == NumSrcElts) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000634 // Use shuffle vector is the src and destination are the same number of
635 // elements and restore the vector mask since it is on the side it will be
636 // stored.
Nate Begeman6e5dd862009-06-26 21:12:50 +0000637 llvm::SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000638 for (unsigned i = 0; i != NumSrcElts; ++i) {
639 unsigned InIdx = getAccessedFieldNo(i, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000640 Mask[InIdx] = llvm::ConstantInt::get(
641 llvm::Type::getInt32Ty(VMContext), i);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000642 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000643
Owen Anderson4a289322009-07-28 21:22:35 +0000644 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000645 Vec = Builder.CreateShuffleVector(SrcVal,
Owen Anderson03e20502009-07-30 23:11:26 +0000646 llvm::UndefValue::get(Vec->getType()),
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000647 MaskV, "tmp");
Mike Stumpb3589f42009-07-30 22:28:39 +0000648 } else if (NumDstElts > NumSrcElts) {
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000649 // Extended the source vector to the same length and then shuffle it
650 // into the destination.
651 // FIXME: since we're shuffling with undef, can we just use the indices
652 // into that? This could be simpler.
653 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
654 unsigned i;
655 for (i = 0; i != NumSrcElts; ++i)
Owen Anderson0032b272009-08-13 21:57:51 +0000656 ExtMask.push_back(llvm::ConstantInt::get(
657 llvm::Type::getInt32Ty(VMContext), i));
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000658 for (; i != NumDstElts; ++i)
Owen Anderson0032b272009-08-13 21:57:51 +0000659 ExtMask.push_back(llvm::UndefValue::get(
660 llvm::Type::getInt32Ty(VMContext)));
Owen Anderson4a289322009-07-28 21:22:35 +0000661 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000662 ExtMask.size());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000663 llvm::Value *ExtSrcVal =
Daniel Dunbarbb767732009-02-17 18:31:04 +0000664 Builder.CreateShuffleVector(SrcVal,
Owen Anderson03e20502009-07-30 23:11:26 +0000665 llvm::UndefValue::get(SrcVal->getType()),
Daniel Dunbarbb767732009-02-17 18:31:04 +0000666 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000667 // build identity
668 llvm::SmallVector<llvm::Constant*, 4> Mask;
669 for (unsigned i = 0; i != NumDstElts; ++i) {
Owen Anderson0032b272009-08-13 21:57:51 +0000670 Mask.push_back(llvm::ConstantInt::get(
671 llvm::Type::getInt32Ty(VMContext), i));
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000672 }
673 // modify when what gets shuffled in
674 for (unsigned i = 0; i != NumSrcElts; ++i) {
675 unsigned Idx = getAccessedFieldNo(i, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000676 Mask[Idx] = llvm::ConstantInt::get(
677 llvm::Type::getInt32Ty(VMContext), i+NumDstElts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000678 }
Owen Anderson4a289322009-07-28 21:22:35 +0000679 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000680 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
Mike Stumpb3589f42009-07-30 22:28:39 +0000681 } else {
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000682 // We should never shorten the vector
683 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000684 }
685 } else {
686 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000687 unsigned InIdx = getAccessedFieldNo(0, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000688 llvm::Value *Elt = llvm::ConstantInt::get(
689 llvm::Type::getInt32Ty(VMContext), InIdx);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000690 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000691 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000692
Eli Friedman1e692ac2008-06-13 23:01:12 +0000693 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000694}
695
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000696// setObjCGCLValueClass - sets class of he lvalue for the purpose of
697// generating write-barries API. It is currently a global, ivar,
698// or neither.
699static
700void setObjCGCLValueClass(const ASTContext &Ctx, const Expr *E, LValue &LV) {
Fariborz Jahanianb9242592009-09-21 23:03:37 +0000701 if (Ctx.getLangOptions().getGCMode() == LangOptions::NonGC)
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000702 return;
703
Fariborz Jahaniandbf3cfd2009-09-16 23:11:23 +0000704 if (isa<ObjCIvarRefExpr>(E)) {
705 LV.SetObjCIvar(LV, true);
Fariborz Jahanian6c7a1f32009-09-24 22:25:38 +0000706 ObjCIvarRefExpr *Exp = cast<ObjCIvarRefExpr>(const_cast<Expr*>(E));
707 LV.setBaseIvarExp(Exp->getBase());
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +0000708 LV.SetObjCArray(LV, E->getType()->isArrayType());
Fariborz Jahaniandbf3cfd2009-09-16 23:11:23 +0000709 return;
710 }
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000711 if (const DeclRefExpr *Exp = dyn_cast<DeclRefExpr>(E)) {
712 if (const VarDecl *VD = dyn_cast<VarDecl>(Exp->getDecl())) {
713 if ((VD->isBlockVarDecl() && !VD->hasLocalStorage()) ||
714 VD->isFileVarDecl())
715 LV.SetGlobalObjCRef(LV, true);
716 }
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +0000717 LV.SetObjCArray(LV, E->getType()->isArrayType());
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000718 }
719 else if (const UnaryOperator *Exp = dyn_cast<UnaryOperator>(E))
720 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
721 else if (const ParenExpr *Exp = dyn_cast<ParenExpr>(E))
722 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
723 else if (const ImplicitCastExpr *Exp = dyn_cast<ImplicitCastExpr>(E))
724 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
725 else if (const CStyleCastExpr *Exp = dyn_cast<CStyleCastExpr>(E))
726 setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV);
Fariborz Jahanian1c1afc42009-09-18 00:04:00 +0000727 else if (const ArraySubscriptExpr *Exp = dyn_cast<ArraySubscriptExpr>(E)) {
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000728 setObjCGCLValueClass(Ctx, Exp->getBase(), LV);
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +0000729 if (LV.isObjCIvar() && !LV.isObjCArray())
Fariborz Jahanian1c1afc42009-09-18 00:04:00 +0000730 // Using array syntax to assigning to what an ivar points to is not
731 // same as assigning to the ivar itself. {id *Names;} Names[i] = 0;
732 LV.SetObjCIvar(LV, false);
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +0000733 else if (LV.isGlobalObjCRef() && !LV.isObjCArray())
734 // Using array syntax to assigning to what global points to is not
735 // same as assigning to the global itself. {id *G;} G[i] = 0;
736 LV.SetGlobalObjCRef(LV, false);
Fariborz Jahanian1c1afc42009-09-18 00:04:00 +0000737 }
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000738 else if (const MemberExpr *Exp = dyn_cast<MemberExpr>(E)) {
739 setObjCGCLValueClass(Ctx, Exp->getBase(), LV);
Fariborz Jahanian1c1afc42009-09-18 00:04:00 +0000740 // We don't know if member is an 'ivar', but this flag is looked at
741 // only in the context of LV.isObjCIvar().
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +0000742 LV.SetObjCArray(LV, E->getType()->isArrayType());
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000743 }
744}
745
Reid Spencer5f016e22007-07-11 17:01:13 +0000746LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000747 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000748
Chris Lattner41110242008-06-17 18:05:57 +0000749 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
750 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000751 LValue LV;
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000752 bool NonGCable = VD->hasLocalStorage() &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000753 !VD->hasAttr<BlocksAttr>();
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000754 if (VD->hasExternalStorage()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000755 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
756 if (VD->getType()->isReferenceType())
757 V = Builder.CreateLoad(V, "tmp");
John McCall0953e762009-09-24 19:53:00 +0000758 LV = LValue::MakeAddr(V, MakeQualifiers(E->getType()));
Mike Stumpb3589f42009-07-30 22:28:39 +0000759 } else {
Steve Naroff248a7532008-04-15 22:42:06 +0000760 llvm::Value *V = LocalDeclMap[VD];
Mike Stumpa99038c2009-02-28 09:07:16 +0000761 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
John McCall0953e762009-09-24 19:53:00 +0000762
763 Qualifiers Quals = MakeQualifiers(E->getType());
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000764 // local variables do not get their gc attribute set.
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000765 // local static?
John McCall0953e762009-09-24 19:53:00 +0000766 if (NonGCable) Quals.removeObjCGCAttr();
767
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000768 if (VD->hasAttr<BlocksAttr>()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000769 V = Builder.CreateStructGEP(V, 1, "forwarding");
Mike Stumpdab514f2009-03-04 03:23:46 +0000770 V = Builder.CreateLoad(V, false);
Anders Carlsson18be84c2009-09-12 02:44:18 +0000771 V = Builder.CreateStructGEP(V, getByRefValueLLVMField(VD),
772 VD->getNameAsString());
Mike Stumpdab514f2009-03-04 03:23:46 +0000773 }
Anders Carlssonc8667a82009-05-19 20:40:02 +0000774 if (VD->getType()->isReferenceType())
775 V = Builder.CreateLoad(V, "tmp");
John McCall0953e762009-09-24 19:53:00 +0000776 LV = LValue::MakeAddr(V, Quals);
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000777 }
Fariborz Jahanian52967772009-05-27 19:48:48 +0000778 LValue::SetObjCNonGC(LV, NonGCable);
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000779 setObjCGCLValueClass(getContext(), E, LV);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000780 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000781 } else if (VD && VD->isFileVarDecl()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000782 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
783 if (VD->getType()->isReferenceType())
784 V = Builder.CreateLoad(V, "tmp");
John McCall0953e762009-09-24 19:53:00 +0000785 LValue LV = LValue::MakeAddr(V, MakeQualifiers(E->getType()));
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000786 setObjCGCLValueClass(getContext(), E, LV);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000787 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000788 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Anders Carlsson555b4bb2009-09-10 23:43:36 +0000789 llvm::Value* V = CGM.GetAddrOfFunction(FD);
Eli Friedman3fbc4732009-06-01 10:04:20 +0000790 if (!FD->hasPrototype()) {
791 if (const FunctionProtoType *Proto =
John McCall183700f2009-09-21 23:43:11 +0000792 FD->getType()->getAs<FunctionProtoType>()) {
Eli Friedman3fbc4732009-06-01 10:04:20 +0000793 // Ugly case: for a K&R-style definition, the type of the definition
794 // isn't the same as the type of a use. Correct for this with a
795 // bitcast.
796 QualType NoProtoType =
797 getContext().getFunctionNoProtoType(Proto->getResultType());
798 NoProtoType = getContext().getPointerType(NoProtoType);
799 V = Builder.CreateBitCast(V, ConvertType(NoProtoType), "tmp");
800 }
801 }
John McCall0953e762009-09-24 19:53:00 +0000802 return LValue::MakeAddr(V, MakeQualifiers(E->getType()));
Mike Stumpb3589f42009-07-30 22:28:39 +0000803 } else if (const ImplicitParamDecl *IPD =
Chris Lattner41110242008-06-17 18:05:57 +0000804 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
805 llvm::Value *V = LocalDeclMap[IPD];
806 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
John McCall0953e762009-09-24 19:53:00 +0000807 return LValue::MakeAddr(V, MakeQualifiers(E->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000808 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000809 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000810 //an invalid LValue, but the assert will
811 //ensure that this point is never reached.
812 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000813}
814
Mike Stumpa99038c2009-02-28 09:07:16 +0000815LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
John McCall0953e762009-09-24 19:53:00 +0000816 return LValue::MakeAddr(GetAddrOfBlockDecl(E), MakeQualifiers(E->getType()));
Mike Stumpa99038c2009-02-28 09:07:16 +0000817}
818
Reid Spencer5f016e22007-07-11 17:01:13 +0000819LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
820 // __extension__ doesn't affect lvalue-ness.
821 if (E->getOpcode() == UnaryOperator::Extension)
822 return EmitLValue(E->getSubExpr());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000823
Chris Lattner96196622008-07-26 22:37:01 +0000824 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000825 switch (E->getOpcode()) {
826 default: assert(0 && "Unknown unary operator lvalue!");
827 case UnaryOperator::Deref:
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000828 {
Steve Naroff14108da2009-07-10 23:34:53 +0000829 QualType T = E->getSubExpr()->getType()->getPointeeType();
830 assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000831
John McCall0953e762009-09-24 19:53:00 +0000832 Qualifiers Quals = MakeQualifiers(T);
833 Quals.setAddressSpace(ExprTy.getAddressSpace());
834
835 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()), Quals);
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000836 // We should not generate __weak write barrier on indirect reference
837 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
838 // But, we continue to generate __strong write barrier on indirect write
839 // into a pointer to object.
840 if (getContext().getLangOptions().ObjC1 &&
841 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
842 LV.isObjCWeak())
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000843 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000844 return LV;
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000845 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000846 case UnaryOperator::Real:
847 case UnaryOperator::Imag:
848 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000849 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
850 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000851 Idx, "idx"),
John McCall0953e762009-09-24 19:53:00 +0000852 MakeQualifiers(ExprTy));
Chris Lattner7da36f62007-10-30 22:53:42 +0000853 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000854}
855
856LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
John McCall0953e762009-09-24 19:53:00 +0000857 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E),
858 Qualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000859}
860
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000861LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
John McCall0953e762009-09-24 19:53:00 +0000862 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E),
863 Qualifiers());
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000864}
865
866
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000867LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000868 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000869
870 switch (Type) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000871 default:
872 assert(0 && "Invalid type");
873 case PredefinedExpr::Func:
874 GlobalVarName = "__func__.";
875 break;
876 case PredefinedExpr::Function:
877 GlobalVarName = "__FUNCTION__.";
878 break;
879 case PredefinedExpr::PrettyFunction:
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000880 GlobalVarName = "__PRETTY_FUNCTION__.";
881 break;
Anders Carlsson22742662007-07-21 05:21:51 +0000882 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000883
Daniel Dunbar0a23d762009-09-12 23:06:21 +0000884 llvm::StringRef FnName = CurFn->getName();
885 if (FnName.startswith("\01"))
886 FnName = FnName.substr(1);
887 GlobalVarName += FnName;
888
Anders Carlsson3a082d82009-09-08 18:24:21 +0000889 std::string FunctionName =
Mike Stump1eb44332009-09-09 15:08:12 +0000890 PredefinedExpr::ComputeName(getContext(), (PredefinedExpr::IdentType)Type,
Anders Carlsson3a082d82009-09-08 18:24:21 +0000891 CurCodeDecl);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000892
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000893 llvm::Constant *C =
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000894 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
John McCall0953e762009-09-24 19:53:00 +0000895 return LValue::MakeAddr(C, Qualifiers());
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000896}
897
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000898LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000899 switch (E->getIdentType()) {
900 default:
901 return EmitUnsupportedLValue(E, "predefined expression");
902 case PredefinedExpr::Func:
903 case PredefinedExpr::Function:
904 case PredefinedExpr::PrettyFunction:
905 return EmitPredefinedFunctionName(E->getIdentType());
906 }
Anders Carlsson22742662007-07-21 05:21:51 +0000907}
908
Reid Spencer5f016e22007-07-11 17:01:13 +0000909LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000910 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000911 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Eli Friedman61d004a2009-06-06 19:09:26 +0000912 QualType IdxTy = E->getIdx()->getType();
913 bool IdxSigned = IdxTy->isSignedIntegerType();
914
Reid Spencer5f016e22007-07-11 17:01:13 +0000915 // If the base is a vector type, then we are forming a vector element lvalue
916 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000917 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000918 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000919 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000920 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000921 Idx = Builder.CreateIntCast(Idx,
Owen Anderson0032b272009-08-13 21:57:51 +0000922 llvm::Type::getInt32Ty(VMContext), IdxSigned, "vidx");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000923 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
John McCall0953e762009-09-24 19:53:00 +0000924 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000925 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000926
Ted Kremenek23245122007-08-20 16:18:38 +0000927 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000928 llvm::Value *Base = EmitScalarExpr(E->getBase());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000929
Ted Kremenek23245122007-08-20 16:18:38 +0000930 // Extend or truncate the index type to 32 or 64-bits.
Reid Spencer5f016e22007-07-11 17:01:13 +0000931 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta7cabee52009-04-24 02:40:57 +0000932 if (IdxBitwidth != LLVMPointerWidth)
Owen Anderson0032b272009-08-13 21:57:51 +0000933 Idx = Builder.CreateIntCast(Idx,
934 llvm::IntegerType::get(VMContext, LLVMPointerWidth),
Reid Spencer5f016e22007-07-11 17:01:13 +0000935 IdxSigned, "idxprom");
936
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000937 // We know that the pointer points to a type of the correct size, unless the
938 // size is a VLA or Objective-C interface.
Daniel Dunbar2a866252009-04-25 05:08:32 +0000939 llvm::Value *Address = 0;
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000940 if (const VariableArrayType *VAT =
Anders Carlsson8b33c082008-12-21 00:11:23 +0000941 getContext().getAsVariableArrayType(E->getType())) {
Chris Lattner881eb9c2009-08-14 23:43:22 +0000942 llvm::Value *VLASize = GetVLASize(VAT);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000943
Anders Carlsson8b33c082008-12-21 00:11:23 +0000944 Idx = Builder.CreateMul(Idx, VLASize);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000945
Anders Carlsson6183a992008-12-21 03:44:36 +0000946 QualType BaseType = getContext().getBaseElementType(VAT);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000947
Anders Carlsson8b33c082008-12-21 00:11:23 +0000948 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
949 Idx = Builder.CreateUDiv(Idx,
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000950 llvm::ConstantInt::get(Idx->getType(),
Anders Carlsson8b33c082008-12-21 00:11:23 +0000951 BaseTypeSize));
Dan Gohman664f8932009-08-12 00:33:55 +0000952 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000953 } else if (const ObjCInterfaceType *OIT =
Daniel Dunbar2a866252009-04-25 05:08:32 +0000954 dyn_cast<ObjCInterfaceType>(E->getType())) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000955 llvm::Value *InterfaceSize =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000956 llvm::ConstantInt::get(Idx->getType(),
Daniel Dunbar2a866252009-04-25 05:08:32 +0000957 getContext().getTypeSize(OIT) / 8);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000958
Daniel Dunbar2a866252009-04-25 05:08:32 +0000959 Idx = Builder.CreateMul(Idx, InterfaceSize);
960
Owen Anderson0032b272009-08-13 21:57:51 +0000961 llvm::Type *i8PTy =
962 llvm::PointerType::getUnqual(llvm::Type::getInt8Ty(VMContext));
Dan Gohman664f8932009-08-12 00:33:55 +0000963 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
Daniel Dunbar2a866252009-04-25 05:08:32 +0000964 Idx, "arrayidx");
965 Address = Builder.CreateBitCast(Address, Base->getType());
966 } else {
Dan Gohman664f8932009-08-12 00:33:55 +0000967 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
Anders Carlsson8b33c082008-12-21 00:11:23 +0000968 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000969
Steve Naroff14108da2009-07-10 23:34:53 +0000970 QualType T = E->getBase()->getType()->getPointeeType();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000971 assert(!T.isNull() &&
Steve Naroff14108da2009-07-10 23:34:53 +0000972 "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000973
John McCall0953e762009-09-24 19:53:00 +0000974 Qualifiers Quals = MakeQualifiers(T);
975 Quals.setAddressSpace(E->getBase()->getType().getAddressSpace());
976
977 LValue LV = LValue::MakeAddr(Address, Quals);
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000978 if (getContext().getLangOptions().ObjC1 &&
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000979 getContext().getLangOptions().getGCMode() != LangOptions::NonGC) {
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000980 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanianb123ea32009-09-16 21:37:16 +0000981 setObjCGCLValueClass(getContext(), E, LV);
982 }
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000983 return LV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000984}
985
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000986static
Owen Andersona1cf15f2009-07-14 23:10:40 +0000987llvm::Constant *GenerateConstantVector(llvm::LLVMContext &VMContext,
988 llvm::SmallVector<unsigned, 4> &Elts) {
Nate Begeman3b8d1162008-05-13 21:03:02 +0000989 llvm::SmallVector<llvm::Constant *, 4> CElts;
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000990
Nate Begeman3b8d1162008-05-13 21:03:02 +0000991 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
Owen Anderson0032b272009-08-13 21:57:51 +0000992 CElts.push_back(llvm::ConstantInt::get(
993 llvm::Type::getInt32Ty(VMContext), Elts[i]));
Nate Begeman3b8d1162008-05-13 21:03:02 +0000994
Owen Anderson4a289322009-07-28 21:22:35 +0000995 return llvm::ConstantVector::get(&CElts[0], CElts.size());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000996}
997
Chris Lattner349aaec2007-08-02 23:37:31 +0000998LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000999EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +00001000 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +00001001 LValue Base;
1002
1003 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +00001004 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +00001005 assert(E->getBase()->getType()->isVectorType());
1006 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +00001007 } else {
Ted Kremenek6217b802009-07-29 21:53:49 +00001008 const PointerType *PT = E->getBase()->getType()->getAs<PointerType>();
Chris Lattner2140e902009-02-16 22:14:05 +00001009 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
John McCall0953e762009-09-24 19:53:00 +00001010 Qualifiers Quals = MakeQualifiers(PT->getPointeeType());
1011 Quals.removeObjCGCAttr();
1012 Base = LValue::MakeAddr(Ptr, Quals);
Chris Lattner73525de2009-02-16 21:11:58 +00001013 }
Chris Lattner349aaec2007-08-02 23:37:31 +00001014
Nate Begeman3b8d1162008-05-13 21:03:02 +00001015 // Encode the element access list into a vector of unsigned indices.
1016 llvm::SmallVector<unsigned, 4> Indices;
1017 E->getEncodedElementAccess(Indices);
1018
1019 if (Base.isSimple()) {
Owen Andersona1cf15f2009-07-14 23:10:40 +00001020 llvm::Constant *CV = GenerateConstantVector(VMContext, Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +00001021 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
John McCall0953e762009-09-24 19:53:00 +00001022 Base.getVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +00001023 }
1024 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
1025
1026 llvm::Constant *BaseElts = Base.getExtVectorElts();
1027 llvm::SmallVector<llvm::Constant *, 4> CElts;
1028
1029 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
1030 if (isa<llvm::ConstantAggregateZero>(BaseElts))
Owen Anderson0032b272009-08-13 21:57:51 +00001031 CElts.push_back(llvm::ConstantInt::get(
1032 llvm::Type::getInt32Ty(VMContext), 0));
Nate Begeman3b8d1162008-05-13 21:03:02 +00001033 else
1034 CElts.push_back(BaseElts->getOperand(Indices[i]));
1035 }
Owen Anderson4a289322009-07-28 21:22:35 +00001036 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +00001037 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
John McCall0953e762009-09-24 19:53:00 +00001038 Base.getVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +00001039}
1040
Devang Patelb9b00ad2007-10-23 20:28:39 +00001041LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +00001042 bool isUnion = false;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +00001043 bool isNonGC = false;
Devang Patel126a8562007-10-24 22:26:28 +00001044 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +00001045 llvm::Value *BaseValue = NULL;
John McCall0953e762009-09-24 19:53:00 +00001046 Qualifiers BaseQuals;
Eli Friedman1e692ac2008-06-13 23:01:12 +00001047
Chris Lattner12f65f62007-12-02 18:52:07 +00001048 // 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 +00001049 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +00001050 BaseValue = EmitScalarExpr(BaseExpr);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001051 const PointerType *PTy =
Ted Kremenek6217b802009-07-29 21:53:49 +00001052 BaseExpr->getType()->getAs<PointerType>();
Devang Patelfe2419a2007-12-11 21:33:16 +00001053 if (PTy->getPointeeType()->isUnionType())
1054 isUnion = true;
John McCall0953e762009-09-24 19:53:00 +00001055 BaseQuals = PTy->getPointeeType().getQualifiers();
Fariborz Jahaniand2e1eb02009-09-01 17:02:21 +00001056 } else if (isa<ObjCPropertyRefExpr>(BaseExpr->IgnoreParens()) ||
1057 isa<ObjCImplicitSetterGetterRefExpr>(
1058 BaseExpr->IgnoreParens())) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +00001059 RValue RV = EmitObjCPropertyGet(BaseExpr);
1060 BaseValue = RV.getAggregateAddr();
1061 if (BaseExpr->getType()->isUnionType())
1062 isUnion = true;
John McCall0953e762009-09-24 19:53:00 +00001063 BaseQuals = BaseExpr->getType().getQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +00001064 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +00001065 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +00001066 if (BaseLV.isNonGC())
1067 isNonGC = true;
Chris Lattner12f65f62007-12-02 18:52:07 +00001068 // FIXME: this isn't right for bitfields.
1069 BaseValue = BaseLV.getAddress();
Fariborz Jahaniana91d6a62009-07-29 00:44:13 +00001070 QualType BaseTy = BaseExpr->getType();
1071 if (BaseTy->isUnionType())
Devang Patelfe2419a2007-12-11 21:33:16 +00001072 isUnion = true;
John McCall0953e762009-09-24 19:53:00 +00001073 BaseQuals = BaseTy.getQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +00001074 }
Devang Patelb9b00ad2007-10-23 20:28:39 +00001075
Douglas Gregor86f19402008-12-20 23:49:58 +00001076 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
1077 // FIXME: Handle non-field member expressions
1078 assert(Field && "No code generation for non-field member references");
Chris Lattner1bd885e2009-02-16 22:25:49 +00001079 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
John McCall0953e762009-09-24 19:53:00 +00001080 BaseQuals.getCVRQualifiers());
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +00001081 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanianb123ea32009-09-16 21:37:16 +00001082 setObjCGCLValueClass(getContext(), E, MemExpLV);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +00001083 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +00001084}
Devang Patelb9b00ad2007-10-23 20:28:39 +00001085
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001086LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
1087 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001088 unsigned CVRQualifiers) {
Anders Carlsson8330cee2009-07-23 17:01:21 +00001089 CodeGenTypes::BitFieldInfo Info = CGM.getTypes().getBitFieldInfo(Field);
1090
Mike Stumpf5408fe2009-05-16 07:57:57 +00001091 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
1092 // FieldTy (the appropriate type is ABI-dependent).
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001093 const llvm::Type *FieldTy =
Daniel Dunbarbb767732009-02-17 18:31:04 +00001094 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001095 const llvm::PointerType *BaseTy =
1096 cast<llvm::PointerType>(BaseValue->getType());
1097 unsigned AS = BaseTy->getAddressSpace();
1098 BaseValue = Builder.CreateBitCast(BaseValue,
Owen Anderson96e0fc72009-07-29 22:16:19 +00001099 llvm::PointerType::get(FieldTy, AS),
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001100 "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001101
1102 llvm::Value *Idx =
Owen Anderson0032b272009-08-13 21:57:51 +00001103 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), Info.FieldNo);
Anders Carlsson8330cee2009-07-23 17:01:21 +00001104 llvm::Value *V = Builder.CreateGEP(BaseValue, Idx, "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001105
Anders Carlsson8330cee2009-07-23 17:01:21 +00001106 return LValue::MakeBitfield(V, Info.Start, Info.Size,
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001107 Field->getType()->isSignedIntegerType(),
1108 Field->getType().getCVRQualifiers()|CVRQualifiers);
1109}
1110
Eli Friedman472778e2008-02-09 08:50:58 +00001111LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
1112 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +00001113 bool isUnion,
Mike Stump1eb44332009-09-09 15:08:12 +00001114 unsigned CVRQualifiers) {
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001115 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001116 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001117
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001118 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001119 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +00001120
Devang Patelabad06c2007-10-26 19:42:18 +00001121 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +00001122 if (isUnion) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001123 const llvm::Type *FieldTy =
Eli Friedman1e692ac2008-06-13 23:01:12 +00001124 CGM.getTypes().ConvertTypeForMem(Field->getType());
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001125 const llvm::PointerType * BaseTy =
Devang Patele9b8c0a2007-10-30 20:59:40 +00001126 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +00001127 unsigned AS = BaseTy->getAddressSpace();
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001128 V = Builder.CreateBitCast(V,
1129 llvm::PointerType::get(FieldTy, AS),
Eli Friedman788d5712008-05-21 13:24:44 +00001130 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +00001131 }
Eli Friedman2be58612009-05-30 21:09:44 +00001132 if (Field->getType()->isReferenceType())
1133 V = Builder.CreateLoad(V, "tmp");
John McCall0953e762009-09-24 19:53:00 +00001134
1135 Qualifiers Quals = MakeQualifiers(Field->getType());
1136 Quals.addCVRQualifiers(CVRQualifiers);
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +00001137 // __weak attribute on a field is ignored.
John McCall0953e762009-09-24 19:53:00 +00001138 if (Quals.getObjCGCAttr() == Qualifiers::Weak)
1139 Quals.removeObjCGCAttr();
Fariborz Jahanianfd02ed72009-09-21 18:54:29 +00001140
John McCall0953e762009-09-24 19:53:00 +00001141 return LValue::MakeAddr(V, Quals);
Devang Patelb9b00ad2007-10-23 20:28:39 +00001142}
1143
Chris Lattner75dfeda2009-03-18 18:28:57 +00001144LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman06e863f2008-05-13 23:18:27 +00001145 const llvm::Type *LTy = ConvertType(E->getType());
1146 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1147
1148 const Expr* InitExpr = E->getInitializer();
John McCall0953e762009-09-24 19:53:00 +00001149 LValue Result = LValue::MakeAddr(DeclPtr, MakeQualifiers(E->getType()));
Eli Friedman06e863f2008-05-13 23:18:27 +00001150
1151 if (E->getType()->isComplexType()) {
1152 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1153 } else if (hasAggregateLLVMType(E->getType())) {
1154 EmitAnyExpr(InitExpr, DeclPtr, false);
1155 } else {
1156 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1157 }
1158
1159 return Result;
1160}
1161
Anders Carlsson6fcec8b2009-09-15 16:35:24 +00001162LValue
1163CodeGenFunction::EmitConditionalOperatorLValue(const ConditionalOperator* E) {
1164 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
1165 llvm::BasicBlock *LHSBlock = createBasicBlock("cond.true");
1166 llvm::BasicBlock *RHSBlock = createBasicBlock("cond.false");
1167 llvm::BasicBlock *ContBlock = createBasicBlock("cond.end");
1168
1169 llvm::Value *Cond = EvaluateExprAsBool(E->getCond());
1170 Builder.CreateCondBr(Cond, LHSBlock, RHSBlock);
1171
1172 EmitBlock(LHSBlock);
Daniel Dunbar90345582009-03-24 02:38:23 +00001173
Anders Carlsson6fcec8b2009-09-15 16:35:24 +00001174 LValue LHS = EmitLValue(E->getLHS());
1175 if (!LHS.isSimple())
1176 return EmitUnsupportedLValue(E, "conditional operator");
1177
1178 llvm::Value *Temp = CreateTempAlloca(LHS.getAddress()->getType(),
1179 "condtmp");
1180
1181 Builder.CreateStore(LHS.getAddress(), Temp);
1182 EmitBranch(ContBlock);
1183
1184 EmitBlock(RHSBlock);
1185 LValue RHS = EmitLValue(E->getRHS());
1186 if (!RHS.isSimple())
1187 return EmitUnsupportedLValue(E, "conditional operator");
1188
1189 Builder.CreateStore(RHS.getAddress(), Temp);
1190 EmitBranch(ContBlock);
1191
1192 EmitBlock(ContBlock);
1193
1194 Temp = Builder.CreateLoad(Temp, "lv");
John McCall0953e762009-09-24 19:53:00 +00001195 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Anders Carlsson6fcec8b2009-09-15 16:35:24 +00001196 }
1197
Daniel Dunbar90345582009-03-24 02:38:23 +00001198 // ?: here should be an aggregate.
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001199 assert((hasAggregateLLVMType(E->getType()) &&
Daniel Dunbar90345582009-03-24 02:38:23 +00001200 !E->getType()->isAnyComplexType()) &&
1201 "Unexpected conditional operator!");
1202
1203 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1204 EmitAggExpr(E, Temp, false);
1205
John McCall0953e762009-09-24 19:53:00 +00001206 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Daniel Dunbar90345582009-03-24 02:38:23 +00001207}
1208
Chris Lattner75dfeda2009-03-18 18:28:57 +00001209/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1210/// generator in an lvalue context, then it must mean that we need the address
1211/// of an aggregate in order to access one of its fields. This can happen for
1212/// all the reasons that casts are permitted with aggregate result, including
1213/// noop aggregate casts, and cast from scalar to union.
1214LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001215 switch (E->getCastKind()) {
1216 default:
1217 // If this is an lvalue cast, treat it as a no-op.
1218 // FIXME: We shouldn't need to check for this explicitly!
1219 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
1220 if (ICE->isLvalueCast())
1221 return EmitLValue(E->getSubExpr());
1222
1223 assert(0 && "Unhandled cast!");
1224
1225 case CastExpr::CK_NoOp:
1226 case CastExpr::CK_ConstructorConversion:
1227 case CastExpr::CK_UserDefinedConversion:
Chris Lattner75dfeda2009-03-18 18:28:57 +00001228 return EmitLValue(E->getSubExpr());
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001229
1230 case CastExpr::CK_DerivedToBase: {
1231 const RecordType *DerivedClassTy =
1232 E->getSubExpr()->getType()->getAs<RecordType>();
1233 CXXRecordDecl *DerivedClassDecl =
1234 cast<CXXRecordDecl>(DerivedClassTy->getDecl());
Chris Lattner75dfeda2009-03-18 18:28:57 +00001235
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001236 const RecordType *BaseClassTy = E->getType()->getAs<RecordType>();
1237 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseClassTy->getDecl());
1238
1239 LValue LV = EmitLValue(E->getSubExpr());
1240
1241 // Perform the derived-to-base conversion
1242 llvm::Value *Base =
1243 GetAddressCXXOfBaseClass(LV.getAddress(), DerivedClassDecl,
1244 BaseClassDecl, /*NullCheckValue=*/false);
1245
John McCall0953e762009-09-24 19:53:00 +00001246 return LValue::MakeAddr(Base, MakeQualifiers(E->getType()));
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001247 }
Eli Friedmana77a07e2009-08-27 21:19:33 +00001248
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001249 case CastExpr::CK_ToUnion: {
1250 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1251 EmitAnyExpr(E->getSubExpr(), Temp, false);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001252
John McCall0953e762009-09-24 19:53:00 +00001253 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001254 }
1255 }
Chris Lattner75dfeda2009-03-18 18:28:57 +00001256}
1257
Reid Spencer5f016e22007-07-11 17:01:13 +00001258//===--------------------------------------------------------------------===//
1259// Expression Emission
1260//===--------------------------------------------------------------------===//
1261
Chris Lattner7016a702007-08-20 22:37:10 +00001262
Reid Spencer5f016e22007-07-11 17:01:13 +00001263RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001264 // Builtins never have block type.
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001265 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +00001266 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001267
Anders Carlsson774e7c62009-04-03 22:50:24 +00001268 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1269 return EmitCXXMemberCallExpr(CE);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001270
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001271 const Decl *TargetDecl = 0;
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001272 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1273 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1274 TargetDecl = DRE->getDecl();
1275 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
Douglas Gregor7814e6d2009-09-12 00:22:50 +00001276 if (unsigned builtinID = FD->getBuiltinID())
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001277 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001278 }
1279 }
1280
Chris Lattner5db7ae52009-06-13 00:26:38 +00001281 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
Anders Carlsson0f294632009-05-27 04:18:27 +00001282 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
1283 return EmitCXXOperatorMemberCallExpr(CE, MD);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001284
Douglas Gregora71d8192009-09-04 17:36:40 +00001285 if (isa<CXXPseudoDestructorExpr>(E->getCallee())) {
1286 // C++ [expr.pseudo]p1:
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001287 // The result shall only be used as the operand for the function call
Douglas Gregora71d8192009-09-04 17:36:40 +00001288 // operator (), and the result of such a call has type void. The only
1289 // effect is the evaluation of the postfix-expression before the dot or
1290 // arrow.
1291 EmitScalarExpr(E->getCallee());
1292 return RValue::get(0);
1293 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001294
Chris Lattner7f02f722007-08-24 05:35:26 +00001295 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Anders Carlsson98647712009-05-27 01:22:39 +00001296 return EmitCall(Callee, E->getCallee()->getType(),
1297 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattnerc5e940f2007-08-31 04:44:06 +00001298}
1299
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001300LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattner7a574cc2009-05-12 21:28:12 +00001301 // Comma expressions just emit their LHS then their RHS as an l-value.
1302 if (E->getOpcode() == BinaryOperator::Comma) {
1303 EmitAnyExpr(E->getLHS());
1304 return EmitLValue(E->getRHS());
1305 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001306
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001307 // Can only get l-value for binary operator expressions which are a
1308 // simple assignment of aggregate type.
1309 if (E->getOpcode() != BinaryOperator::Assign)
1310 return EmitUnsupportedLValue(E, "binary l-value expression");
1311
1312 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1313 EmitAggExpr(E, Temp, false);
1314 // FIXME: Are these qualifiers correct?
John McCall0953e762009-09-24 19:53:00 +00001315 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001316}
1317
Christopher Lamb22c940e2007-12-29 05:02:41 +00001318LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
Christopher Lamb22c940e2007-12-29 05:02:41 +00001319 RValue RV = EmitCallExpr(E);
Anders Carlsson48265682009-05-27 01:45:47 +00001320
1321 if (RV.isScalar()) {
1322 assert(E->getCallReturnType()->isReferenceType() &&
1323 "Can't have a scalar return unless the return type is a "
1324 "reference type!");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001325
John McCall0953e762009-09-24 19:53:00 +00001326 return LValue::MakeAddr(RV.getScalarVal(), MakeQualifiers(E->getType()));
Anders Carlsson48265682009-05-27 01:45:47 +00001327 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001328
John McCall0953e762009-09-24 19:53:00 +00001329 return LValue::MakeAddr(RV.getAggregateAddr(), MakeQualifiers(E->getType()));
Christopher Lamb22c940e2007-12-29 05:02:41 +00001330}
1331
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001332LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1333 // FIXME: This shouldn't require another copy.
1334 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1335 EmitAggExpr(E, Temp, false);
John McCall0953e762009-09-24 19:53:00 +00001336 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001337}
1338
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001339LValue
1340CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1341 EmitLocalBlockVarDecl(*E->getVarDecl());
1342 return EmitDeclRefLValue(E);
1343}
1344
Anders Carlssonb58d0172009-05-30 23:23:33 +00001345LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
1346 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()), "tmp");
1347 EmitCXXConstructExpr(Temp, E);
John McCall0953e762009-09-24 19:53:00 +00001348 return LValue::MakeAddr(Temp, MakeQualifiers(E->getType()));
Anders Carlssonb58d0172009-05-30 23:23:33 +00001349}
1350
Anders Carlssone61c9e82009-05-30 23:30:54 +00001351LValue
1352CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
1353 LValue LV = EmitLValue(E->getSubExpr());
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001354
Anders Carlsson543ac0c2009-05-31 00:34:10 +00001355 PushCXXTemporary(E->getTemporary(), LV.getAddress());
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001356
Anders Carlssone61c9e82009-05-30 23:30:54 +00001357 return LV;
1358}
1359
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001360LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1361 // Can only get l-value for message expression returning aggregate type
1362 RValue RV = EmitObjCMessageExpr(E);
1363 // FIXME: can this be volatile?
John McCall0953e762009-09-24 19:53:00 +00001364 return LValue::MakeAddr(RV.getAggregateAddr(), MakeQualifiers(E->getType()));
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001365}
1366
Daniel Dunbar2a031922009-04-22 05:08:15 +00001367llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001368 const ObjCIvarDecl *Ivar) {
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001369 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001370}
1371
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001372LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1373 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001374 const ObjCIvarDecl *Ivar,
1375 unsigned CVRQualifiers) {
Chris Lattner26f074b2009-04-17 17:44:48 +00001376 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001377 Ivar, CVRQualifiers);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001378}
1379
1380LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001381 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1382 llvm::Value *BaseValue = 0;
1383 const Expr *BaseExpr = E->getBase();
John McCall0953e762009-09-24 19:53:00 +00001384 Qualifiers BaseQuals;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001385 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001386 if (E->isArrow()) {
1387 BaseValue = EmitScalarExpr(BaseExpr);
Steve Naroff14108da2009-07-10 23:34:53 +00001388 ObjectTy = BaseExpr->getType()->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00001389 BaseQuals = ObjectTy.getQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001390 } else {
1391 LValue BaseLV = EmitLValue(BaseExpr);
1392 // FIXME: this isn't right for bitfields.
1393 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001394 ObjectTy = BaseExpr->getType();
John McCall0953e762009-09-24 19:53:00 +00001395 BaseQuals = ObjectTy.getQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001396 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001397
Fariborz Jahaniandbf3cfd2009-09-16 23:11:23 +00001398 LValue LV =
John McCall0953e762009-09-24 19:53:00 +00001399 EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
1400 BaseQuals.getCVRQualifiers());
Fariborz Jahaniandbf3cfd2009-09-16 23:11:23 +00001401 setObjCGCLValueClass(getContext(), E, LV);
1402 return LV;
Chris Lattner391d77a2008-03-30 23:03:07 +00001403}
1404
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001405LValue
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001406CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001407 // This is a special l-value that just issues sends when we load or store
1408 // through it.
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001409 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1410}
1411
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001412LValue
Fariborz Jahanian154440e2009-08-18 20:50:23 +00001413CodeGenFunction::EmitObjCKVCRefLValue(
Fariborz Jahanian09105f52009-08-20 17:02:02 +00001414 const ObjCImplicitSetterGetterRefExpr *E) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001415 // This is a special l-value that just issues sends when we load or store
1416 // through it.
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001417 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1418}
1419
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001420LValue
Chris Lattner65459942009-04-25 19:35:26 +00001421CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001422 return EmitUnsupportedLValue(E, "use of super");
1423}
1424
Chris Lattner65459942009-04-25 19:35:26 +00001425LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001426
Chris Lattner65459942009-04-25 19:35:26 +00001427 // Can only get l-value for message expression returning aggregate type
1428 RValue RV = EmitAnyExprToTemp(E);
1429 // FIXME: can this be volatile?
John McCall0953e762009-09-24 19:53:00 +00001430 return LValue::MakeAddr(RV.getAggregateAddr(), MakeQualifiers(E->getType()));
Chris Lattner65459942009-04-25 19:35:26 +00001431}
1432
1433
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001434RValue CodeGenFunction::EmitCall(llvm::Value *Callee, QualType CalleeType,
Anders Carlsson98647712009-05-27 01:22:39 +00001435 CallExpr::const_arg_iterator ArgBeg,
1436 CallExpr::const_arg_iterator ArgEnd,
1437 const Decl *TargetDecl) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001438 // Get the actual function type. The callee type will always be a pointer to
1439 // function type or a block pointer type.
1440 assert(CalleeType->isFunctionPointerType() &&
Anders Carlsson8ac67a72009-04-07 18:53:02 +00001441 "Call must have function pointer type!");
1442
Ted Kremenek6217b802009-07-29 21:53:49 +00001443 QualType FnType = CalleeType->getAs<PointerType>()->getPointeeType();
John McCall183700f2009-09-21 23:43:11 +00001444 QualType ResultType = FnType->getAs<FunctionType>()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001445
1446 CallArgList Args;
John McCall183700f2009-09-21 23:43:11 +00001447 EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(), ArgBeg, ArgEnd);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001448
Daniel Dunbar8a9f3fd2009-09-11 22:25:00 +00001449 // FIXME: We should not need to do this, it should be part of the function
1450 // type.
1451 unsigned CallingConvention = 0;
1452 if (const llvm::Function *F =
1453 dyn_cast<llvm::Function>(Callee->stripPointerCasts()))
1454 CallingConvention = F->getCallingConv();
1455 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args,
1456 CallingConvention),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001457 Callee, Args, TargetDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001458}