blob: 699d7b16ec3362c8bddfbd6b22b1fd346a9371a3 [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);
146 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
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),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000169 E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +0000170 getContext().getObjCGCAttrKind(E->getType()),
171 E->getType().getAddressSpace());
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000172}
173
Reid Spencer5f016e22007-07-11 17:01:13 +0000174/// EmitLValue - Emit code to compute a designator that specifies the location
175/// of the expression.
176///
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000177/// This can return one of two things: a simple address or a bitfield reference.
178/// In either case, the LLVM Value* in the LValue structure is guaranteed to be
179/// an LLVM pointer type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000180///
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000181/// If this returns a bitfield reference, nothing about the pointee type of the
182/// LLVM value is known: For example, it may not be a pointer to an integer.
Reid Spencer5f016e22007-07-11 17:01:13 +0000183///
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000184/// If this returns a normal address, and if the lvalue's C type is fixed size,
185/// this method guarantees that the returned pointer type will point to an LLVM
186/// type of the same size of the lvalue's type. If the lvalue has a variable
187/// length type, this is not possible.
Reid Spencer5f016e22007-07-11 17:01:13 +0000188///
189LValue CodeGenFunction::EmitLValue(const Expr *E) {
190 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000191 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000192
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000193 case Expr::BinaryOperatorClass:
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000194 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000195 case Expr::CallExprClass:
Anders Carlssonfaf86642009-09-01 21:18:52 +0000196 case Expr::CXXMemberCallExprClass:
Douglas Gregorb4609802008-11-14 16:09:21 +0000197 case Expr::CXXOperatorCallExprClass:
198 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000199 case Expr::VAArgExprClass:
200 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000201 case Expr::DeclRefExprClass:
Douglas Gregor1a49af92009-01-06 05:10:23 +0000202 case Expr::QualifiedDeclRefExprClass:
203 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000204 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000205 case Expr::PredefinedExprClass:
206 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000207 case Expr::StringLiteralClass:
208 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000209 case Expr::ObjCEncodeExprClass:
210 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000211
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000212 case Expr::BlockDeclRefExprClass:
Mike Stumpa99038c2009-02-28 09:07:16 +0000213 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
214
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000215 case Expr::CXXConditionDeclExprClass:
216 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
Anders Carlssonb58d0172009-05-30 23:23:33 +0000217 case Expr::CXXTemporaryObjectExprClass:
218 case Expr::CXXConstructExprClass:
Anders Carlssone61c9e82009-05-30 23:30:54 +0000219 return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
220 case Expr::CXXBindTemporaryExprClass:
221 return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
Anders Carlssonb9ea0b52009-09-14 01:10:45 +0000222 case Expr::CXXExprWithTemporariesClass:
223 return EmitCXXExprWithTemporariesLValue(cast<CXXExprWithTemporaries>(E));
Anders Carlssone61c9e82009-05-30 23:30:54 +0000224
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000225 case Expr::ObjCMessageExprClass:
226 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000227 case Expr::ObjCIvarRefExprClass:
Chris Lattner391d77a2008-03-30 23:03:07 +0000228 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000229 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000230 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000231 case Expr::ObjCImplicitSetterGetterRefExprClass:
232 return EmitObjCKVCRefLValue(cast<ObjCImplicitSetterGetterRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000233 case Expr::ObjCSuperExprClass:
Chris Lattner65459942009-04-25 19:35:26 +0000234 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000235
Chris Lattner65459942009-04-25 19:35:26 +0000236 case Expr::StmtExprClass:
237 return EmitStmtExprLValue(cast<StmtExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000238 case Expr::UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000239 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
240 case Expr::ArraySubscriptExprClass:
241 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000242 case Expr::ExtVectorElementExprClass:
243 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000244 case Expr::MemberExprClass:
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000245 return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000246 case Expr::CompoundLiteralExprClass:
247 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbar90345582009-03-24 02:38:23 +0000248 case Expr::ConditionalOperatorClass:
Anders Carlsson6fcec8b2009-09-15 16:35:24 +0000249 return EmitConditionalOperatorLValue(cast<ConditionalOperator>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000250 case Expr::ChooseExprClass:
Eli Friedman79769322009-03-04 05:52:32 +0000251 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattnerc3953a62009-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 Lattner75dfeda2009-03-18 18:28:57 +0000259 return EmitCastLValue(cast<CastExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000260 }
261}
262
Daniel Dunbar9d9cc872009-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 Carlsson3bb423b2009-05-19 19:36:19 +0000267 // Bool can have different representation in memory than in registers.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000268 if (Ty->isBooleanType())
Owen Anderson0032b272009-08-13 21:57:51 +0000269 if (V->getType() != llvm::Type::getInt1Ty(VMContext))
270 V = Builder.CreateTrunc(V, llvm::Type::getInt1Ty(VMContext), "tobool");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000271
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000272 return V;
273}
274
275void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000276 bool Volatile, QualType Ty) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000277
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000278 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) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000283 const llvm::Type *MemTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000284 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000285 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
286 }
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000287 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000288 Builder.CreateStore(Value, Addr, Volatile);
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000289}
290
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000291/// EmitLoadOfLValue - Given an expression that represents a value lvalue, this
292/// method emits the address of the lvalue, then loads the result as an rvalue,
293/// returning the rvalue.
Reid Spencer5f016e22007-07-11 17:01:13 +0000294RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000295 if (LV.isObjCWeak()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000296 // load of a __weak object.
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000297 llvm::Value *AddrWeakObj = LV.getAddress();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000298 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000299 AddrWeakObj);
300 return RValue::get(read_weak);
301 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000302
Reid Spencer5f016e22007-07-11 17:01:13 +0000303 if (LV.isSimple()) {
304 llvm::Value *Ptr = LV.getAddress();
305 const llvm::Type *EltTy =
306 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000307
Reid Spencer5f016e22007-07-11 17:01:13 +0000308 // Simple scalar l-value.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000309 if (EltTy->isSingleValueType())
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000310 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000311 ExprType));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000312
Chris Lattner883f6a72007-08-11 00:04:45 +0000313 assert(ExprType->isFunctionType() && "Unknown scalar value");
314 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000315 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000316
Reid Spencer5f016e22007-07-11 17:01:13 +0000317 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000318 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
319 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000320 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
321 "vecext"));
322 }
Chris Lattner46ea8eb2007-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 Begeman213541a2008-04-18 23:10:10 +0000326 if (LV.isExtVectorElt())
327 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000328
329 if (LV.isBitfield())
330 return EmitLoadOfBitfieldLValue(LV, ExprType);
331
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000332 if (LV.isPropertyRef())
333 return EmitLoadOfPropertyRefLValue(LV, ExprType);
334
Chris Lattner73525de2009-02-16 21:11:58 +0000335 assert(LV.isKVCRef() && "Unknown LValue type!");
336 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000337}
338
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000339RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
340 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000341 unsigned StartBit = LV.getBitfieldStartBit();
342 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000343 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000344
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000345 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000346 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000347 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000348
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000349 // In some cases the bitfield may straddle two memory locations. Currently we
350 // load the entire bitfield, then do the magic to sign-extend it if
351 // necessary. This results in somewhat more code than necessary for the common
352 // case (one load), since two shifts accomplish both the masking and sign
353 // extension.
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000354 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
355 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000356
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000357 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000358 if (StartBit)
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000359 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000360 "bf.lo");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000361
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000362 // Mask off unused bits.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000363 llvm::Constant *LowMask = llvm::ConstantInt::get(VMContext,
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000364 llvm::APInt::getLowBitsSet(EltTySize, LowBits));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000365 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000366
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000367 // Fetch the high bits if necessary.
368 if (LowBits < BitfieldSize) {
369 unsigned HighBits = BitfieldSize - LowBits;
Owen Anderson0032b272009-08-13 21:57:51 +0000370 llvm::Value *HighPtr = Builder.CreateGEP(Ptr, llvm::ConstantInt::get(
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000371 llvm::Type::getInt32Ty(VMContext), 1), "bf.ptr.hi");
372 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000373 LV.isVolatileQualified(),
374 "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000375
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000376 // Mask off unused bits.
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000377 llvm::Constant *HighMask = llvm::ConstantInt::get(VMContext,
378 llvm::APInt::getLowBitsSet(EltTySize, HighBits));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000379 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000380
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000381 // Shift to proper location and or in to bitfield value.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000382 HighVal = Builder.CreateShl(HighVal,
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000383 llvm::ConstantInt::get(EltTy, LowBits));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000384 Val = Builder.CreateOr(Val, HighVal, "bf.val");
385 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000386
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000387 // Sign extend if necessary.
388 if (LV.isBitfieldSigned()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000389 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000390 EltTySize - BitfieldSize);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000391 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000392 ExtraBits, "bf.val.sext");
393 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000394
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000395 // The bitfield type and the normal type differ when the storage sizes differ
396 // (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000397 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000398
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000399 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000400}
401
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000402RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
403 QualType ExprType) {
404 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
405}
406
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000407RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
408 QualType ExprType) {
409 return EmitObjCPropertyGet(LV.getKVCRefExpr());
410}
411
Nate Begeman6fe7c8a2009-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 Begeman213541a2008-04-18 23:10:10 +0000414RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
415 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000416 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
417 LV.isVolatileQualified(), "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000418
Nate Begeman8a997642008-05-09 06:41:27 +0000419 const llvm::Constant *Elts = LV.getExtVectorElts();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000420
421 // If the result of the expression is a non-vector type, we must be extracting
422 // a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000423 const VectorType *ExprVT = ExprType->getAsVectorType();
424 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000425 unsigned InIdx = getAccessedFieldNo(0, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000426 llvm::Value *Elt = llvm::ConstantInt::get(
427 llvm::Type::getInt32Ty(VMContext), InIdx);
Chris Lattner34cdc862007-08-03 16:18:34 +0000428 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
429 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000430
431 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000432 unsigned NumResultElts = ExprVT->getNumElements();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000433
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000434 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000435 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000436 unsigned InIdx = getAccessedFieldNo(i, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000437 Mask.push_back(llvm::ConstantInt::get(
438 llvm::Type::getInt32Ty(VMContext), InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000439 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000440
Owen Anderson4a289322009-07-28 21:22:35 +0000441 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000442 Vec = Builder.CreateShuffleVector(Vec,
Owen Anderson03e20502009-07-30 23:11:26 +0000443 llvm::UndefValue::get(Vec->getType()),
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000444 MaskV, "tmp");
445 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000446}
447
448
Reid Spencer5f016e22007-07-11 17:01:13 +0000449
450/// 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'.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000453void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
Reid Spencer5f016e22007-07-11 17:01:13 +0000454 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000455 if (!Dst.isSimple()) {
456 if (Dst.isVectorElt()) {
457 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000458 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
459 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000460 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000461 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000462 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000463 return;
464 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000465
Nate Begeman213541a2008-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 Venancioa0c5d0e2008-01-22 22:36:45 +0000470
471 if (Dst.isBitfield())
472 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
473
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000474 if (Dst.isPropertyRef())
475 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
476
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000477 if (Dst.isKVCRef())
478 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
479
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000480 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000481 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000482
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000483 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000484 // load of a __weak object.
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000485 llvm::Value *LvalueDst = Dst.getAddress();
486 llvm::Value *src = Src.getScalarVal();
Mike Stumpf33651c2009-04-14 00:57:29 +0000487 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000488 return;
489 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000490
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000491 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000492 // load of a __strong object.
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000493 llvm::Value *LvalueDst = Dst.getAddress();
494 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000495#if 0
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000496 // FIXME: We cannot positively determine if we have an 'ivar' assignment,
Mike Stumpf5408fe2009-05-16 07:57:57 +0000497 // 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 Jahaniand1cc8042008-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 Jahanian167fdc12009-02-19 18:29:24 +0000504#endif
Fariborz Jahanianbf63b872009-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 Jahaniandbd32c22008-11-19 17:34:06 +0000509 return;
510 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000511
Chris Lattner883f6a72007-08-11 00:04:45 +0000512 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000513 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
514 Dst.isVolatileQualified(), Ty);
Reid Spencer5f016e22007-07-11 17:01:13 +0000515}
516
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000517void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000518 QualType Ty,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000519 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000520 unsigned StartBit = Dst.getBitfieldStartBit();
521 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000522 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000523
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000524 const llvm::Type *EltTy =
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000525 cast<llvm::PointerType>(Ptr->getType())->getElementType();
526 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
527
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000528 // Get the new value, cast to the appropriate type and masked to exactly the
529 // size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000530 llvm::Value *SrcVal = Src.getScalarVal();
531 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000532 llvm::Constant *Mask = llvm::ConstantInt::get(VMContext,
533 llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000534 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000535
Daniel Dunbared3849b2008-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 Anderson4a28d5d2009-07-24 23:12:58 +0000546 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000547 SrcTySize - BitfieldSize);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000548 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
Daniel Dunbared3849b2008-11-19 09:36:46 +0000549 ExtraBits, "bf.reload.sext");
550 }
551
552 *Result = SrcTrunc;
553 }
554
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000555 // In some cases the bitfield may straddle two memory locations. Emit the low
556 // part first and check to see if the high needs to be done.
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000557 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
558 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
559 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000560
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000561 // Compute the mask for zero-ing the low part of this bitfield.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000562 llvm::Constant *InvMask =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000563 llvm::ConstantInt::get(VMContext,
564 ~llvm::APInt::getBitsSet(EltTySize, StartBit, StartBit + LowBits));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000565
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000566 // Compute the new low part as
567 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
568 // with the shift of NewVal implicitly stripping the high bits.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000569 llvm::Value *NewLowVal =
570 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
571 "bf.value.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000572 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
573 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000574
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000575 // Write back.
576 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000577
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000578 // If the low part doesn't cover the bitfield emit a high part.
579 if (LowBits < BitfieldSize) {
580 unsigned HighBits = BitfieldSize - LowBits;
Owen Anderson0032b272009-08-13 21:57:51 +0000581 llvm::Value *HighPtr = Builder.CreateGEP(Ptr, llvm::ConstantInt::get(
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000582 llvm::Type::getInt32Ty(VMContext), 1), "bf.ptr.hi");
583 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000584 Dst.isVolatileQualified(),
585 "bf.prev.hi");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000586
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000587 // Compute the mask for zero-ing the high part of this bitfield.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000588 llvm::Constant *InvMask =
589 llvm::ConstantInt::get(VMContext, ~llvm::APInt::getLowBitsSet(EltTySize,
Owen Andersona1cf15f2009-07-14 23:10:40 +0000590 HighBits));
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000591
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000592 // Compute the new high part as
593 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
594 // where the high bits of NewVal have already been cleared and the
595 // shift stripping the low bits.
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000596 llvm::Value *NewHighVal =
597 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
598 "bf.value.high");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000599 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
600 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000601
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000602 // Write back.
603 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
604 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000605}
606
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000607void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
608 LValue Dst,
609 QualType Ty) {
610 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
611}
612
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000613void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
614 LValue Dst,
615 QualType Ty) {
616 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
617}
618
Nate Begeman213541a2008-04-18 23:10:10 +0000619void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
620 LValue Dst,
621 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000622 // This access turns into a read/modify/write of the vector. Load the input
623 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000624 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
625 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000626 const llvm::Constant *Elts = Dst.getExtVectorElts();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000627
Chris Lattner9b655512007-08-31 22:49:20 +0000628 llvm::Value *SrcVal = Src.getScalarVal();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000629
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000630 if (const VectorType *VTy = Ty->getAsVectorType()) {
631 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000632 unsigned NumDstElts =
633 cast<llvm::VectorType>(Vec->getType())->getNumElements();
634 if (NumDstElts == NumSrcElts) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000635 // Use shuffle vector is the src and destination are the same number of
636 // elements and restore the vector mask since it is on the side it will be
637 // stored.
Nate Begeman6e5dd862009-06-26 21:12:50 +0000638 llvm::SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000639 for (unsigned i = 0; i != NumSrcElts; ++i) {
640 unsigned InIdx = getAccessedFieldNo(i, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000641 Mask[InIdx] = llvm::ConstantInt::get(
642 llvm::Type::getInt32Ty(VMContext), i);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000643 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000644
Owen Anderson4a289322009-07-28 21:22:35 +0000645 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000646 Vec = Builder.CreateShuffleVector(SrcVal,
Owen Anderson03e20502009-07-30 23:11:26 +0000647 llvm::UndefValue::get(Vec->getType()),
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000648 MaskV, "tmp");
Mike Stumpb3589f42009-07-30 22:28:39 +0000649 } else if (NumDstElts > NumSrcElts) {
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000650 // Extended the source vector to the same length and then shuffle it
651 // into the destination.
652 // FIXME: since we're shuffling with undef, can we just use the indices
653 // into that? This could be simpler.
654 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
655 unsigned i;
656 for (i = 0; i != NumSrcElts; ++i)
Owen Anderson0032b272009-08-13 21:57:51 +0000657 ExtMask.push_back(llvm::ConstantInt::get(
658 llvm::Type::getInt32Ty(VMContext), i));
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000659 for (; i != NumDstElts; ++i)
Owen Anderson0032b272009-08-13 21:57:51 +0000660 ExtMask.push_back(llvm::UndefValue::get(
661 llvm::Type::getInt32Ty(VMContext)));
Owen Anderson4a289322009-07-28 21:22:35 +0000662 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000663 ExtMask.size());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000664 llvm::Value *ExtSrcVal =
Daniel Dunbarbb767732009-02-17 18:31:04 +0000665 Builder.CreateShuffleVector(SrcVal,
Owen Anderson03e20502009-07-30 23:11:26 +0000666 llvm::UndefValue::get(SrcVal->getType()),
Daniel Dunbarbb767732009-02-17 18:31:04 +0000667 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000668 // build identity
669 llvm::SmallVector<llvm::Constant*, 4> Mask;
670 for (unsigned i = 0; i != NumDstElts; ++i) {
Owen Anderson0032b272009-08-13 21:57:51 +0000671 Mask.push_back(llvm::ConstantInt::get(
672 llvm::Type::getInt32Ty(VMContext), i));
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000673 }
674 // modify when what gets shuffled in
675 for (unsigned i = 0; i != NumSrcElts; ++i) {
676 unsigned Idx = getAccessedFieldNo(i, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000677 Mask[Idx] = llvm::ConstantInt::get(
678 llvm::Type::getInt32Ty(VMContext), i+NumDstElts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000679 }
Owen Anderson4a289322009-07-28 21:22:35 +0000680 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000681 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
Mike Stumpb3589f42009-07-30 22:28:39 +0000682 } else {
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000683 // We should never shorten the vector
684 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000685 }
686 } else {
687 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000688 unsigned InIdx = getAccessedFieldNo(0, Elts);
Owen Anderson0032b272009-08-13 21:57:51 +0000689 llvm::Value *Elt = llvm::ConstantInt::get(
690 llvm::Type::getInt32Ty(VMContext), InIdx);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000691 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000692 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000693
Eli Friedman1e692ac2008-06-13 23:01:12 +0000694 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000695}
696
Reid Spencer5f016e22007-07-11 17:01:13 +0000697LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000698 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000699
Chris Lattner41110242008-06-17 18:05:57 +0000700 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
701 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000702 LValue LV;
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000703 bool NonGCable = VD->hasLocalStorage() &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000704 !VD->hasAttr<BlocksAttr>();
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000705 if (VD->hasExternalStorage()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000706 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
707 if (VD->getType()->isReferenceType())
708 V = Builder.CreateLoad(V, "tmp");
709 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +0000710 getContext().getObjCGCAttrKind(E->getType()),
711 E->getType().getAddressSpace());
Mike Stumpb3589f42009-07-30 22:28:39 +0000712 } else {
Steve Naroff248a7532008-04-15 22:42:06 +0000713 llvm::Value *V = LocalDeclMap[VD];
Mike Stumpa99038c2009-02-28 09:07:16 +0000714 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000715 // local variables do not get their gc attribute set.
716 QualType::GCAttrTypes attr = QualType::GCNone;
717 // local static?
Fariborz Jahanian52967772009-05-27 19:48:48 +0000718 if (!NonGCable)
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000719 attr = getContext().getObjCGCAttrKind(E->getType());
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000720 if (VD->hasAttr<BlocksAttr>()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000721 V = Builder.CreateStructGEP(V, 1, "forwarding");
Mike Stumpdab514f2009-03-04 03:23:46 +0000722 V = Builder.CreateLoad(V, false);
Anders Carlsson18be84c2009-09-12 02:44:18 +0000723 V = Builder.CreateStructGEP(V, getByRefValueLLVMField(VD),
724 VD->getNameAsString());
Mike Stumpdab514f2009-03-04 03:23:46 +0000725 }
Anders Carlssonc8667a82009-05-19 20:40:02 +0000726 if (VD->getType()->isReferenceType())
727 V = Builder.CreateLoad(V, "tmp");
Mon P Wangc6a38a42009-07-22 03:08:17 +0000728 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr,
729 E->getType().getAddressSpace());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000730 }
Fariborz Jahanian52967772009-05-27 19:48:48 +0000731 LValue::SetObjCNonGC(LV, NonGCable);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000732 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000733 } else if (VD && VD->isFileVarDecl()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000734 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
735 if (VD->getType()->isReferenceType())
736 V = Builder.CreateLoad(V, "tmp");
737 LValue LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +0000738 getContext().getObjCGCAttrKind(E->getType()),
739 E->getType().getAddressSpace());
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000740 if (LV.isObjCStrong())
741 LV.SetGlobalObjCRef(LV, true);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000742 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000743 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Anders Carlsson555b4bb2009-09-10 23:43:36 +0000744 llvm::Value* V = CGM.GetAddrOfFunction(FD);
Eli Friedman3fbc4732009-06-01 10:04:20 +0000745 if (!FD->hasPrototype()) {
746 if (const FunctionProtoType *Proto =
747 FD->getType()->getAsFunctionProtoType()) {
748 // Ugly case: for a K&R-style definition, the type of the definition
749 // isn't the same as the type of a use. Correct for this with a
750 // bitcast.
751 QualType NoProtoType =
752 getContext().getFunctionNoProtoType(Proto->getResultType());
753 NoProtoType = getContext().getPointerType(NoProtoType);
754 V = Builder.CreateBitCast(V, ConvertType(NoProtoType), "tmp");
755 }
756 }
757 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +0000758 getContext().getObjCGCAttrKind(E->getType()),
759 E->getType().getAddressSpace());
Mike Stumpb3589f42009-07-30 22:28:39 +0000760 } else if (const ImplicitParamDecl *IPD =
Chris Lattner41110242008-06-17 18:05:57 +0000761 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
762 llvm::Value *V = LocalDeclMap[IPD];
763 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000764 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +0000765 getContext().getObjCGCAttrKind(E->getType()),
766 E->getType().getAddressSpace());
Chris Lattner41110242008-06-17 18:05:57 +0000767 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000768 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000769 //an invalid LValue, but the assert will
770 //ensure that this point is never reached.
771 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000772}
773
Mike Stumpa99038c2009-02-28 09:07:16 +0000774LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000775 return LValue::MakeAddr(GetAddrOfBlockDecl(E),
Daniel Dunbare2265342009-05-23 02:49:02 +0000776 E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +0000777 getContext().getObjCGCAttrKind(E->getType()),
778 E->getType().getAddressSpace());
Mike Stumpa99038c2009-02-28 09:07:16 +0000779}
780
Reid Spencer5f016e22007-07-11 17:01:13 +0000781LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
782 // __extension__ doesn't affect lvalue-ness.
783 if (E->getOpcode() == UnaryOperator::Extension)
784 return EmitLValue(E->getSubExpr());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000785
Chris Lattner96196622008-07-26 22:37:01 +0000786 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000787 switch (E->getOpcode()) {
788 default: assert(0 && "Unknown unary operator lvalue!");
789 case UnaryOperator::Deref:
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000790 {
Steve Naroff14108da2009-07-10 23:34:53 +0000791 QualType T = E->getSubExpr()->getType()->getPointeeType();
792 assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000793
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000794 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000795 T.getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +0000796 getContext().getObjCGCAttrKind(T),
797 ExprTy.getAddressSpace());
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000798 // We should not generate __weak write barrier on indirect reference
799 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
800 // But, we continue to generate __strong write barrier on indirect write
801 // into a pointer to object.
802 if (getContext().getLangOptions().ObjC1 &&
803 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
804 LV.isObjCWeak())
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000805 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000806 return LV;
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000807 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000808 case UnaryOperator::Real:
809 case UnaryOperator::Imag:
810 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000811 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
812 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000813 Idx, "idx"),
Mon P Wangc6a38a42009-07-22 03:08:17 +0000814 ExprTy.getCVRQualifiers(),
815 QualType::GCNone,
816 ExprTy.getAddressSpace());
Chris Lattner7da36f62007-10-30 22:53:42 +0000817 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000818}
819
820LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000821 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000822}
823
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000824LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
825 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
826}
827
828
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000829LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000830 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000831
832 switch (Type) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000833 default:
834 assert(0 && "Invalid type");
835 case PredefinedExpr::Func:
836 GlobalVarName = "__func__.";
837 break;
838 case PredefinedExpr::Function:
839 GlobalVarName = "__FUNCTION__.";
840 break;
841 case PredefinedExpr::PrettyFunction:
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000842 GlobalVarName = "__PRETTY_FUNCTION__.";
843 break;
Anders Carlsson22742662007-07-21 05:21:51 +0000844 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000845
Daniel Dunbar0a23d762009-09-12 23:06:21 +0000846 llvm::StringRef FnName = CurFn->getName();
847 if (FnName.startswith("\01"))
848 FnName = FnName.substr(1);
849 GlobalVarName += FnName;
850
Anders Carlsson3a082d82009-09-08 18:24:21 +0000851 std::string FunctionName =
Mike Stump1eb44332009-09-09 15:08:12 +0000852 PredefinedExpr::ComputeName(getContext(), (PredefinedExpr::IdentType)Type,
Anders Carlsson3a082d82009-09-08 18:24:21 +0000853 CurCodeDecl);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000854
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000855 llvm::Constant *C =
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000856 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
857 return LValue::MakeAddr(C, 0);
858}
859
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000860LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000861 switch (E->getIdentType()) {
862 default:
863 return EmitUnsupportedLValue(E, "predefined expression");
864 case PredefinedExpr::Func:
865 case PredefinedExpr::Function:
866 case PredefinedExpr::PrettyFunction:
867 return EmitPredefinedFunctionName(E->getIdentType());
868 }
Anders Carlsson22742662007-07-21 05:21:51 +0000869}
870
Reid Spencer5f016e22007-07-11 17:01:13 +0000871LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000872 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000873 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Eli Friedman61d004a2009-06-06 19:09:26 +0000874 QualType IdxTy = E->getIdx()->getType();
875 bool IdxSigned = IdxTy->isSignedIntegerType();
876
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 // If the base is a vector type, then we are forming a vector element lvalue
878 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000879 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000880 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000881 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000882 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000883 Idx = Builder.CreateIntCast(Idx,
Owen Anderson0032b272009-08-13 21:57:51 +0000884 llvm::Type::getInt32Ty(VMContext), IdxSigned, "vidx");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000885 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
886 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000887 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000888
Ted Kremenek23245122007-08-20 16:18:38 +0000889 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000890 llvm::Value *Base = EmitScalarExpr(E->getBase());
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000891
Ted Kremenek23245122007-08-20 16:18:38 +0000892 // Extend or truncate the index type to 32 or 64-bits.
Reid Spencer5f016e22007-07-11 17:01:13 +0000893 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta7cabee52009-04-24 02:40:57 +0000894 if (IdxBitwidth != LLVMPointerWidth)
Owen Anderson0032b272009-08-13 21:57:51 +0000895 Idx = Builder.CreateIntCast(Idx,
896 llvm::IntegerType::get(VMContext, LLVMPointerWidth),
Reid Spencer5f016e22007-07-11 17:01:13 +0000897 IdxSigned, "idxprom");
898
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000899 // We know that the pointer points to a type of the correct size, unless the
900 // size is a VLA or Objective-C interface.
Daniel Dunbar2a866252009-04-25 05:08:32 +0000901 llvm::Value *Address = 0;
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000902 if (const VariableArrayType *VAT =
Anders Carlsson8b33c082008-12-21 00:11:23 +0000903 getContext().getAsVariableArrayType(E->getType())) {
Chris Lattner881eb9c2009-08-14 23:43:22 +0000904 llvm::Value *VLASize = GetVLASize(VAT);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000905
Anders Carlsson8b33c082008-12-21 00:11:23 +0000906 Idx = Builder.CreateMul(Idx, VLASize);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000907
Anders Carlsson6183a992008-12-21 03:44:36 +0000908 QualType BaseType = getContext().getBaseElementType(VAT);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000909
Anders Carlsson8b33c082008-12-21 00:11:23 +0000910 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
911 Idx = Builder.CreateUDiv(Idx,
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000912 llvm::ConstantInt::get(Idx->getType(),
Anders Carlsson8b33c082008-12-21 00:11:23 +0000913 BaseTypeSize));
Dan Gohman664f8932009-08-12 00:33:55 +0000914 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000915 } else if (const ObjCInterfaceType *OIT =
Daniel Dunbar2a866252009-04-25 05:08:32 +0000916 dyn_cast<ObjCInterfaceType>(E->getType())) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000917 llvm::Value *InterfaceSize =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000918 llvm::ConstantInt::get(Idx->getType(),
Daniel Dunbar2a866252009-04-25 05:08:32 +0000919 getContext().getTypeSize(OIT) / 8);
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000920
Daniel Dunbar2a866252009-04-25 05:08:32 +0000921 Idx = Builder.CreateMul(Idx, InterfaceSize);
922
Owen Anderson0032b272009-08-13 21:57:51 +0000923 llvm::Type *i8PTy =
924 llvm::PointerType::getUnqual(llvm::Type::getInt8Ty(VMContext));
Dan Gohman664f8932009-08-12 00:33:55 +0000925 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
Daniel Dunbar2a866252009-04-25 05:08:32 +0000926 Idx, "arrayidx");
927 Address = Builder.CreateBitCast(Address, Base->getType());
928 } else {
Dan Gohman664f8932009-08-12 00:33:55 +0000929 Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
Anders Carlsson8b33c082008-12-21 00:11:23 +0000930 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000931
Steve Naroff14108da2009-07-10 23:34:53 +0000932 QualType T = E->getBase()->getType()->getPointeeType();
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000933 assert(!T.isNull() &&
Steve Naroff14108da2009-07-10 23:34:53 +0000934 "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000935
Daniel Dunbar2a866252009-04-25 05:08:32 +0000936 LValue LV = LValue::MakeAddr(Address,
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000937 T.getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +0000938 getContext().getObjCGCAttrKind(T),
939 E->getBase()->getType().getAddressSpace());
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000940 if (getContext().getLangOptions().ObjC1 &&
941 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000942 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000943 return LV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000944}
945
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000946static
Owen Andersona1cf15f2009-07-14 23:10:40 +0000947llvm::Constant *GenerateConstantVector(llvm::LLVMContext &VMContext,
948 llvm::SmallVector<unsigned, 4> &Elts) {
Nate Begeman3b8d1162008-05-13 21:03:02 +0000949 llvm::SmallVector<llvm::Constant *, 4> CElts;
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000950
Nate Begeman3b8d1162008-05-13 21:03:02 +0000951 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
Owen Anderson0032b272009-08-13 21:57:51 +0000952 CElts.push_back(llvm::ConstantInt::get(
953 llvm::Type::getInt32Ty(VMContext), Elts[i]));
Nate Begeman3b8d1162008-05-13 21:03:02 +0000954
Owen Anderson4a289322009-07-28 21:22:35 +0000955 return llvm::ConstantVector::get(&CElts[0], CElts.size());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000956}
957
Chris Lattner349aaec2007-08-02 23:37:31 +0000958LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000959EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000960 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +0000961 LValue Base;
962
963 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +0000964 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +0000965 assert(E->getBase()->getType()->isVectorType());
966 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +0000967 } else {
Ted Kremenek6217b802009-07-29 21:53:49 +0000968 const PointerType *PT = E->getBase()->getType()->getAs<PointerType>();
Chris Lattner2140e902009-02-16 22:14:05 +0000969 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
Mon P Wangc6a38a42009-07-22 03:08:17 +0000970 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers(),
971 QualType::GCNone,
972 PT->getPointeeType().getAddressSpace());
Chris Lattner73525de2009-02-16 21:11:58 +0000973 }
Chris Lattner349aaec2007-08-02 23:37:31 +0000974
Nate Begeman3b8d1162008-05-13 21:03:02 +0000975 // Encode the element access list into a vector of unsigned indices.
976 llvm::SmallVector<unsigned, 4> Indices;
977 E->getEncodedElementAccess(Indices);
978
979 if (Base.isSimple()) {
Owen Andersona1cf15f2009-07-14 23:10:40 +0000980 llvm::Constant *CV = GenerateConstantVector(VMContext, Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000981 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000982 Base.getQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000983 }
984 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
985
986 llvm::Constant *BaseElts = Base.getExtVectorElts();
987 llvm::SmallVector<llvm::Constant *, 4> CElts;
988
989 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
990 if (isa<llvm::ConstantAggregateZero>(BaseElts))
Owen Anderson0032b272009-08-13 21:57:51 +0000991 CElts.push_back(llvm::ConstantInt::get(
992 llvm::Type::getInt32Ty(VMContext), 0));
Nate Begeman3b8d1162008-05-13 21:03:02 +0000993 else
994 CElts.push_back(BaseElts->getOperand(Indices[i]));
995 }
Owen Anderson4a289322009-07-28 21:22:35 +0000996 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000997 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000998 Base.getQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000999}
1000
Devang Patelb9b00ad2007-10-23 20:28:39 +00001001LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +00001002 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +00001003 bool isIvar = false;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +00001004 bool isNonGC = false;
Devang Patel126a8562007-10-24 22:26:28 +00001005 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +00001006 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +00001007 unsigned CVRQualifiers=0;
1008
Chris Lattner12f65f62007-12-02 18:52:07 +00001009 // 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 +00001010 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +00001011 BaseValue = EmitScalarExpr(BaseExpr);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001012 const PointerType *PTy =
Ted Kremenek6217b802009-07-29 21:53:49 +00001013 BaseExpr->getType()->getAs<PointerType>();
Devang Patelfe2419a2007-12-11 21:33:16 +00001014 if (PTy->getPointeeType()->isUnionType())
1015 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +00001016 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Fariborz Jahaniand2e1eb02009-09-01 17:02:21 +00001017 } else if (isa<ObjCPropertyRefExpr>(BaseExpr->IgnoreParens()) ||
1018 isa<ObjCImplicitSetterGetterRefExpr>(
1019 BaseExpr->IgnoreParens())) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +00001020 RValue RV = EmitObjCPropertyGet(BaseExpr);
1021 BaseValue = RV.getAggregateAddr();
1022 if (BaseExpr->getType()->isUnionType())
1023 isUnion = true;
1024 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +00001025 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +00001026 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +00001027 if (BaseLV.isObjCIvar())
1028 isIvar = true;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +00001029 if (BaseLV.isNonGC())
1030 isNonGC = true;
Chris Lattner12f65f62007-12-02 18:52:07 +00001031 // FIXME: this isn't right for bitfields.
1032 BaseValue = BaseLV.getAddress();
Fariborz Jahaniana91d6a62009-07-29 00:44:13 +00001033 QualType BaseTy = BaseExpr->getType();
1034 if (BaseTy->isUnionType())
Devang Patelfe2419a2007-12-11 21:33:16 +00001035 isUnion = true;
Fariborz Jahaniana91d6a62009-07-29 00:44:13 +00001036 CVRQualifiers = BaseTy.getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +00001037 }
Devang Patelb9b00ad2007-10-23 20:28:39 +00001038
Douglas Gregor86f19402008-12-20 23:49:58 +00001039 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
1040 // FIXME: Handle non-field member expressions
1041 assert(Field && "No code generation for non-field member references");
Chris Lattner1bd885e2009-02-16 22:25:49 +00001042 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
1043 CVRQualifiers);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +00001044 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +00001045 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +00001046 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +00001047}
Devang Patelb9b00ad2007-10-23 20:28:39 +00001048
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001049LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
1050 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001051 unsigned CVRQualifiers) {
Anders Carlsson8330cee2009-07-23 17:01:21 +00001052 CodeGenTypes::BitFieldInfo Info = CGM.getTypes().getBitFieldInfo(Field);
1053
Mike Stumpf5408fe2009-05-16 07:57:57 +00001054 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
1055 // FieldTy (the appropriate type is ABI-dependent).
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001056 const llvm::Type *FieldTy =
Daniel Dunbarbb767732009-02-17 18:31:04 +00001057 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001058 const llvm::PointerType *BaseTy =
1059 cast<llvm::PointerType>(BaseValue->getType());
1060 unsigned AS = BaseTy->getAddressSpace();
1061 BaseValue = Builder.CreateBitCast(BaseValue,
Owen Anderson96e0fc72009-07-29 22:16:19 +00001062 llvm::PointerType::get(FieldTy, AS),
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001063 "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001064
1065 llvm::Value *Idx =
Owen Anderson0032b272009-08-13 21:57:51 +00001066 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), Info.FieldNo);
Anders Carlsson8330cee2009-07-23 17:01:21 +00001067 llvm::Value *V = Builder.CreateGEP(BaseValue, Idx, "tmp");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001068
Anders Carlsson8330cee2009-07-23 17:01:21 +00001069 return LValue::MakeBitfield(V, Info.Start, Info.Size,
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001070 Field->getType()->isSignedIntegerType(),
1071 Field->getType().getCVRQualifiers()|CVRQualifiers);
1072}
1073
Eli Friedman472778e2008-02-09 08:50:58 +00001074LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
1075 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +00001076 bool isUnion,
Mike Stump1eb44332009-09-09 15:08:12 +00001077 unsigned CVRQualifiers) {
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001078 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001079 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001080
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001081 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001082 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +00001083
Devang Patelabad06c2007-10-26 19:42:18 +00001084 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +00001085 if (isUnion) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001086 const llvm::Type *FieldTy =
Eli Friedman1e692ac2008-06-13 23:01:12 +00001087 CGM.getTypes().ConvertTypeForMem(Field->getType());
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001088 const llvm::PointerType * BaseTy =
Devang Patele9b8c0a2007-10-30 20:59:40 +00001089 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +00001090 unsigned AS = BaseTy->getAddressSpace();
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001091 V = Builder.CreateBitCast(V,
1092 llvm::PointerType::get(FieldTy, AS),
Eli Friedman788d5712008-05-21 13:24:44 +00001093 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +00001094 }
Eli Friedman2be58612009-05-30 21:09:44 +00001095 if (Field->getType()->isReferenceType())
1096 V = Builder.CreateLoad(V, "tmp");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +00001097
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001098 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001099 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001100 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1101 QualType Ty = Field->getType();
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001102 attr = Ty.getObjCGCAttr();
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001103 if (attr != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001104 // __weak attribute on a field is ignored.
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001105 if (attr == QualType::Weak)
1106 attr = QualType::GCNone;
Mike Stumpb3589f42009-07-30 22:28:39 +00001107 } else if (Ty->isObjCObjectPointerType())
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001108 attr = QualType::Strong;
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001109 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001110 LValue LV =
1111 LValue::MakeAddr(V,
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001112 Field->getType().getCVRQualifiers()|CVRQualifiers,
Mon P Wangc6a38a42009-07-22 03:08:17 +00001113 attr,
1114 Field->getType().getAddressSpace());
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +00001115 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +00001116}
1117
Chris Lattner75dfeda2009-03-18 18:28:57 +00001118LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman06e863f2008-05-13 23:18:27 +00001119 const llvm::Type *LTy = ConvertType(E->getType());
1120 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1121
1122 const Expr* InitExpr = E->getInitializer();
Mon P Wangc6a38a42009-07-22 03:08:17 +00001123 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers(),
1124 QualType::GCNone,
1125 E->getType().getAddressSpace());
Eli Friedman06e863f2008-05-13 23:18:27 +00001126
1127 if (E->getType()->isComplexType()) {
1128 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1129 } else if (hasAggregateLLVMType(E->getType())) {
1130 EmitAnyExpr(InitExpr, DeclPtr, false);
1131 } else {
1132 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1133 }
1134
1135 return Result;
1136}
1137
Anders Carlsson6fcec8b2009-09-15 16:35:24 +00001138LValue
1139CodeGenFunction::EmitConditionalOperatorLValue(const ConditionalOperator* E) {
1140 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
1141 llvm::BasicBlock *LHSBlock = createBasicBlock("cond.true");
1142 llvm::BasicBlock *RHSBlock = createBasicBlock("cond.false");
1143 llvm::BasicBlock *ContBlock = createBasicBlock("cond.end");
1144
1145 llvm::Value *Cond = EvaluateExprAsBool(E->getCond());
1146 Builder.CreateCondBr(Cond, LHSBlock, RHSBlock);
1147
1148 EmitBlock(LHSBlock);
Daniel Dunbar90345582009-03-24 02:38:23 +00001149
Anders Carlsson6fcec8b2009-09-15 16:35:24 +00001150 LValue LHS = EmitLValue(E->getLHS());
1151 if (!LHS.isSimple())
1152 return EmitUnsupportedLValue(E, "conditional operator");
1153
1154 llvm::Value *Temp = CreateTempAlloca(LHS.getAddress()->getType(),
1155 "condtmp");
1156
1157 Builder.CreateStore(LHS.getAddress(), Temp);
1158 EmitBranch(ContBlock);
1159
1160 EmitBlock(RHSBlock);
1161 LValue RHS = EmitLValue(E->getRHS());
1162 if (!RHS.isSimple())
1163 return EmitUnsupportedLValue(E, "conditional operator");
1164
1165 Builder.CreateStore(RHS.getAddress(), Temp);
1166 EmitBranch(ContBlock);
1167
1168 EmitBlock(ContBlock);
1169
1170 Temp = Builder.CreateLoad(Temp, "lv");
1171 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1172 getContext().getObjCGCAttrKind(E->getType()),
1173 E->getType().getAddressSpace());
1174 }
1175
Daniel Dunbar90345582009-03-24 02:38:23 +00001176 // ?: here should be an aggregate.
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001177 assert((hasAggregateLLVMType(E->getType()) &&
Daniel Dunbar90345582009-03-24 02:38:23 +00001178 !E->getType()->isAnyComplexType()) &&
1179 "Unexpected conditional operator!");
1180
1181 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1182 EmitAggExpr(E, Temp, false);
1183
1184 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +00001185 getContext().getObjCGCAttrKind(E->getType()),
1186 E->getType().getAddressSpace());
Daniel Dunbar90345582009-03-24 02:38:23 +00001187}
1188
Chris Lattner75dfeda2009-03-18 18:28:57 +00001189/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1190/// generator in an lvalue context, then it must mean that we need the address
1191/// of an aggregate in order to access one of its fields. This can happen for
1192/// all the reasons that casts are permitted with aggregate result, including
1193/// noop aggregate casts, and cast from scalar to union.
1194LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001195 switch (E->getCastKind()) {
1196 default:
1197 // If this is an lvalue cast, treat it as a no-op.
1198 // FIXME: We shouldn't need to check for this explicitly!
1199 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
1200 if (ICE->isLvalueCast())
1201 return EmitLValue(E->getSubExpr());
1202
1203 assert(0 && "Unhandled cast!");
1204
1205 case CastExpr::CK_NoOp:
1206 case CastExpr::CK_ConstructorConversion:
1207 case CastExpr::CK_UserDefinedConversion:
Chris Lattner75dfeda2009-03-18 18:28:57 +00001208 return EmitLValue(E->getSubExpr());
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001209
1210 case CastExpr::CK_DerivedToBase: {
1211 const RecordType *DerivedClassTy =
1212 E->getSubExpr()->getType()->getAs<RecordType>();
1213 CXXRecordDecl *DerivedClassDecl =
1214 cast<CXXRecordDecl>(DerivedClassTy->getDecl());
Chris Lattner75dfeda2009-03-18 18:28:57 +00001215
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001216 const RecordType *BaseClassTy = E->getType()->getAs<RecordType>();
1217 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseClassTy->getDecl());
1218
1219 LValue LV = EmitLValue(E->getSubExpr());
1220
1221 // Perform the derived-to-base conversion
1222 llvm::Value *Base =
1223 GetAddressCXXOfBaseClass(LV.getAddress(), DerivedClassDecl,
1224 BaseClassDecl, /*NullCheckValue=*/false);
1225
1226 return LValue::MakeAddr(Base, E->getType().getCVRQualifiers(),
1227 getContext().getObjCGCAttrKind(E->getType()),
1228 E->getType().getAddressSpace());
1229 }
Eli Friedmana77a07e2009-08-27 21:19:33 +00001230
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001231 case CastExpr::CK_ToUnion: {
1232 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1233 EmitAnyExpr(E->getSubExpr(), Temp, false);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001234
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001235 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1236 getContext().getObjCGCAttrKind(E->getType()),
1237 E->getType().getAddressSpace());
1238 }
1239 }
Chris Lattner75dfeda2009-03-18 18:28:57 +00001240}
1241
Reid Spencer5f016e22007-07-11 17:01:13 +00001242//===--------------------------------------------------------------------===//
1243// Expression Emission
1244//===--------------------------------------------------------------------===//
1245
Chris Lattner7016a702007-08-20 22:37:10 +00001246
Reid Spencer5f016e22007-07-11 17:01:13 +00001247RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001248 // Builtins never have block type.
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001249 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +00001250 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001251
Anders Carlsson774e7c62009-04-03 22:50:24 +00001252 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1253 return EmitCXXMemberCallExpr(CE);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001254
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001255 const Decl *TargetDecl = 0;
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001256 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1257 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1258 TargetDecl = DRE->getDecl();
1259 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
Douglas Gregor7814e6d2009-09-12 00:22:50 +00001260 if (unsigned builtinID = FD->getBuiltinID())
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001261 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001262 }
1263 }
1264
Chris Lattner5db7ae52009-06-13 00:26:38 +00001265 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
Anders Carlsson0f294632009-05-27 04:18:27 +00001266 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
1267 return EmitCXXOperatorMemberCallExpr(CE, MD);
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001268
Douglas Gregora71d8192009-09-04 17:36:40 +00001269 if (isa<CXXPseudoDestructorExpr>(E->getCallee())) {
1270 // C++ [expr.pseudo]p1:
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001271 // The result shall only be used as the operand for the function call
Douglas Gregora71d8192009-09-04 17:36:40 +00001272 // operator (), and the result of such a call has type void. The only
1273 // effect is the evaluation of the postfix-expression before the dot or
1274 // arrow.
1275 EmitScalarExpr(E->getCallee());
1276 return RValue::get(0);
1277 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001278
Chris Lattner7f02f722007-08-24 05:35:26 +00001279 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Anders Carlsson98647712009-05-27 01:22:39 +00001280 return EmitCall(Callee, E->getCallee()->getType(),
1281 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattnerc5e940f2007-08-31 04:44:06 +00001282}
1283
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001284LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattner7a574cc2009-05-12 21:28:12 +00001285 // Comma expressions just emit their LHS then their RHS as an l-value.
1286 if (E->getOpcode() == BinaryOperator::Comma) {
1287 EmitAnyExpr(E->getLHS());
1288 return EmitLValue(E->getRHS());
1289 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001290
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001291 // Can only get l-value for binary operator expressions which are a
1292 // simple assignment of aggregate type.
1293 if (E->getOpcode() != BinaryOperator::Assign)
1294 return EmitUnsupportedLValue(E, "binary l-value expression");
1295
1296 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1297 EmitAggExpr(E, Temp, false);
1298 // FIXME: Are these qualifiers correct?
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001299 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +00001300 getContext().getObjCGCAttrKind(E->getType()),
1301 E->getType().getAddressSpace());
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001302}
1303
Christopher Lamb22c940e2007-12-29 05:02:41 +00001304LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
Christopher Lamb22c940e2007-12-29 05:02:41 +00001305 RValue RV = EmitCallExpr(E);
Anders Carlsson48265682009-05-27 01:45:47 +00001306
1307 if (RV.isScalar()) {
1308 assert(E->getCallReturnType()->isReferenceType() &&
1309 "Can't have a scalar return unless the return type is a "
1310 "reference type!");
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001311
1312 return LValue::MakeAddr(RV.getScalarVal(), E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +00001313 getContext().getObjCGCAttrKind(E->getType()),
1314 E->getType().getAddressSpace());
Anders Carlsson48265682009-05-27 01:45:47 +00001315 }
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001316
Eli Friedman1e692ac2008-06-13 23:01:12 +00001317 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001318 E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +00001319 getContext().getObjCGCAttrKind(E->getType()),
1320 E->getType().getAddressSpace());
Christopher Lamb22c940e2007-12-29 05:02:41 +00001321}
1322
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001323LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1324 // FIXME: This shouldn't require another copy.
1325 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1326 EmitAggExpr(E, Temp, false);
Mon P Wangc6a38a42009-07-22 03:08:17 +00001327 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1328 QualType::GCNone, E->getType().getAddressSpace());
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001329}
1330
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001331LValue
1332CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1333 EmitLocalBlockVarDecl(*E->getVarDecl());
1334 return EmitDeclRefLValue(E);
1335}
1336
Anders Carlssonb58d0172009-05-30 23:23:33 +00001337LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
1338 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()), "tmp");
1339 EmitCXXConstructExpr(Temp, E);
Mon P Wangc6a38a42009-07-22 03:08:17 +00001340 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1341 QualType::GCNone, E->getType().getAddressSpace());
Anders Carlssonb58d0172009-05-30 23:23:33 +00001342}
1343
Anders Carlssone61c9e82009-05-30 23:30:54 +00001344LValue
1345CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
1346 LValue LV = EmitLValue(E->getSubExpr());
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001347
Anders Carlsson543ac0c2009-05-31 00:34:10 +00001348 PushCXXTemporary(E->getTemporary(), LV.getAddress());
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001349
Anders Carlssone61c9e82009-05-30 23:30:54 +00001350 return LV;
1351}
1352
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001353LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1354 // Can only get l-value for message expression returning aggregate type
1355 RValue RV = EmitObjCMessageExpr(E);
1356 // FIXME: can this be volatile?
1357 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001358 E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +00001359 getContext().getObjCGCAttrKind(E->getType()),
1360 E->getType().getAddressSpace());
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001361}
1362
Daniel Dunbar2a031922009-04-22 05:08:15 +00001363llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001364 const ObjCIvarDecl *Ivar) {
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001365 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001366}
1367
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001368LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1369 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001370 const ObjCIvarDecl *Ivar,
1371 unsigned CVRQualifiers) {
Chris Lattner26f074b2009-04-17 17:44:48 +00001372 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001373 Ivar, CVRQualifiers);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001374}
1375
1376LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001377 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1378 llvm::Value *BaseValue = 0;
1379 const Expr *BaseExpr = E->getBase();
1380 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001381 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001382 if (E->isArrow()) {
1383 BaseValue = EmitScalarExpr(BaseExpr);
Steve Naroff14108da2009-07-10 23:34:53 +00001384 ObjectTy = BaseExpr->getType()->getPointeeType();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001385 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001386 } else {
1387 LValue BaseLV = EmitLValue(BaseExpr);
1388 // FIXME: this isn't right for bitfields.
1389 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001390 ObjectTy = BaseExpr->getType();
1391 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001392 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001393
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001394 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001395}
1396
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001397LValue
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001398CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001399 // This is a special l-value that just issues sends when we load or store
1400 // through it.
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001401 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1402}
1403
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001404LValue
Fariborz Jahanian154440e2009-08-18 20:50:23 +00001405CodeGenFunction::EmitObjCKVCRefLValue(
Fariborz Jahanian09105f52009-08-20 17:02:02 +00001406 const ObjCImplicitSetterGetterRefExpr *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.
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001409 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1410}
1411
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001412LValue
Chris Lattner65459942009-04-25 19:35:26 +00001413CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001414 return EmitUnsupportedLValue(E, "use of super");
1415}
1416
Chris Lattner65459942009-04-25 19:35:26 +00001417LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001418
Chris Lattner65459942009-04-25 19:35:26 +00001419 // Can only get l-value for message expression returning aggregate type
1420 RValue RV = EmitAnyExprToTemp(E);
1421 // FIXME: can this be volatile?
1422 return LValue::MakeAddr(RV.getAggregateAddr(),
1423 E->getType().getCVRQualifiers(),
Mon P Wangc6a38a42009-07-22 03:08:17 +00001424 getContext().getObjCGCAttrKind(E->getType()),
1425 E->getType().getAddressSpace());
Chris Lattner65459942009-04-25 19:35:26 +00001426}
1427
1428
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001429RValue CodeGenFunction::EmitCall(llvm::Value *Callee, QualType CalleeType,
Anders Carlsson98647712009-05-27 01:22:39 +00001430 CallExpr::const_arg_iterator ArgBeg,
1431 CallExpr::const_arg_iterator ArgEnd,
1432 const Decl *TargetDecl) {
Mike Stumpdb52dcd2009-09-09 13:00:44 +00001433 // Get the actual function type. The callee type will always be a pointer to
1434 // function type or a block pointer type.
1435 assert(CalleeType->isFunctionPointerType() &&
Anders Carlsson8ac67a72009-04-07 18:53:02 +00001436 "Call must have function pointer type!");
1437
Ted Kremenek6217b802009-07-29 21:53:49 +00001438 QualType FnType = CalleeType->getAs<PointerType>()->getPointeeType();
Anders Carlsson8ac67a72009-04-07 18:53:02 +00001439 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001440
1441 CallArgList Args;
Anders Carlsson782f3972009-04-08 23:13:16 +00001442 EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001443
Daniel Dunbar8a9f3fd2009-09-11 22:25:00 +00001444 // FIXME: We should not need to do this, it should be part of the function
1445 // type.
1446 unsigned CallingConvention = 0;
1447 if (const llvm::Function *F =
1448 dyn_cast<llvm::Function>(Callee->stripPointerCasts()))
1449 CallingConvention = F->getCallingConv();
1450 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args,
1451 CallingConvention),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001452 Callee, Args, TargetDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001453}