blob: 3d07403b07fb12b2cd096db3c05754bf7811a233 [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 = "";
Reid Spencer5f016e22007-07-11 17:01:13 +000034 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
35}
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
49/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
50/// the result should be returned.
51RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
Mike Stump49d1cd52009-05-26 22:03:21 +000052 bool isAggLocVolatile, bool IgnoreResult) {
Chris Lattner9b655512007-08-31 22:49:20 +000053 if (!hasAggregateLLVMType(E->getType()))
Mike Stump7f79f9b2009-05-29 15:46:01 +000054 return RValue::get(EmitScalarExpr(E, IgnoreResult));
Chris Lattner9b2dc282008-04-04 16:54:41 +000055 else if (E->getType()->isAnyComplexType())
Mike Stump7f79f9b2009-05-29 15:46:01 +000056 return RValue::getComplex(EmitComplexExpr(E, false, false,
57 IgnoreResult, IgnoreResult));
Chris Lattner9b655512007-08-31 22:49:20 +000058
Mike Stump49d1cd52009-05-26 22:03:21 +000059 EmitAggExpr(E, AggLoc, isAggLocVolatile, IgnoreResult);
Mike Stumpf1b97f22009-05-23 21:40:07 +000060 return RValue::getAggregate(AggLoc, isAggLocVolatile);
Chris Lattner9b655512007-08-31 22:49:20 +000061}
62
Daniel Dunbar46f45b92008-09-09 01:06:48 +000063/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
64/// will always be accessible even if no aggregate location is
65/// provided.
66RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
67 bool isAggLocVolatile) {
68 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
69 !E->getType()->isAnyComplexType())
70 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
71 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
72}
73
Anders Carlsson4029ca72009-05-20 00:24:07 +000074RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
75 QualType DestType) {
Eli Friedman5df0d422009-05-20 02:31:19 +000076 RValue Val;
77 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
Anders Carlsson4bbab922009-05-20 00:36:58 +000078 // Emit the expr as an lvalue.
79 LValue LV = EmitLValue(E);
Eli Friedman5df0d422009-05-20 02:31:19 +000080 if (LV.isSimple())
81 return RValue::get(LV.getAddress());
82 Val = EmitLoadOfLValue(LV, E->getType());
83 } else {
84 Val = EmitAnyExprToTemp(E);
Anders Carlsson4bbab922009-05-20 00:36:58 +000085 }
Eli Friedman5df0d422009-05-20 02:31:19 +000086
87 if (Val.isAggregate()) {
88 Val = RValue::get(Val.getAggregateAddr());
89 } else {
Anders Carlsson7cd3a642009-05-20 01:35:03 +000090 // Create a temporary variable that we can bind the reference to.
Anders Carlssone04d1c72009-05-20 01:03:17 +000091 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()),
92 "reftmp");
Eli Friedman5df0d422009-05-20 02:31:19 +000093 if (Val.isScalar())
94 EmitStoreOfScalar(Val.getScalarVal(), Temp, false, E->getType());
95 else
96 StoreComplexToAddr(Val.getComplexVal(), Temp, false);
97 Val = RValue::get(Temp);
Anders Carlssone04d1c72009-05-20 01:03:17 +000098 }
Eli Friedman5df0d422009-05-20 02:31:19 +000099
100 return Val;
Anders Carlsson4029ca72009-05-20 00:24:07 +0000101}
102
103
Dan Gohman4f8d1232008-05-22 00:50:06 +0000104/// getAccessedFieldNo - Given an encoded value and a result number, return
105/// the input field number being accessed.
106unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
107 const llvm::Constant *Elts) {
108 if (isa<llvm::ConstantAggregateZero>(Elts))
109 return 0;
110
111 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
112}
113
Chris Lattner9b655512007-08-31 22:49:20 +0000114
Reid Spencer5f016e22007-07-11 17:01:13 +0000115//===----------------------------------------------------------------------===//
116// LValue Expression Emission
117//===----------------------------------------------------------------------===//
118
Daniel Dunbar13e81732009-02-05 07:09:07 +0000119RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
120 if (Ty->isVoidType()) {
121 return RValue::get(0);
122 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000123 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
124 llvm::Value *U = llvm::UndefValue::get(EltTy);
125 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbar13e81732009-02-05 07:09:07 +0000126 } else if (hasAggregateLLVMType(Ty)) {
127 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
128 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000129 } else {
Daniel Dunbar13e81732009-02-05 07:09:07 +0000130 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000131 }
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000132}
133
Daniel Dunbar13e81732009-02-05 07:09:07 +0000134RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
135 const char *Name) {
136 ErrorUnsupported(E, Name);
137 return GetUndefRValue(E->getType());
138}
139
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000140LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
141 const char *Name) {
142 ErrorUnsupported(E, Name);
143 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
144 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000145 E->getType().getCVRQualifiers(),
146 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000147}
148
Reid Spencer5f016e22007-07-11 17:01:13 +0000149/// EmitLValue - Emit code to compute a designator that specifies the location
150/// of the expression.
151///
152/// This can return one of two things: a simple address or a bitfield
153/// reference. In either case, the LLVM Value* in the LValue structure is
154/// guaranteed to be an LLVM pointer type.
155///
156/// If this returns a bitfield reference, nothing about the pointee type of
157/// the LLVM value is known: For example, it may not be a pointer to an
158/// integer.
159///
160/// If this returns a normal address, and if the lvalue's C type is fixed
161/// size, this method guarantees that the returned pointer type will point to
162/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
163/// variable length type, this is not possible.
164///
165LValue CodeGenFunction::EmitLValue(const Expr *E) {
166 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000167 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000168
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000169 case Expr::BinaryOperatorClass:
170 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregorb4609802008-11-14 16:09:21 +0000171 case Expr::CallExprClass:
172 case Expr::CXXOperatorCallExprClass:
173 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000174 case Expr::VAArgExprClass:
175 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000176 case Expr::DeclRefExprClass:
177 case Expr::QualifiedDeclRefExprClass:
178 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000180 case Expr::PredefinedExprClass:
181 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 case Expr::StringLiteralClass:
183 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000184 case Expr::ObjCEncodeExprClass:
185 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000186
Mike Stumpa99038c2009-02-28 09:07:16 +0000187 case Expr::BlockDeclRefExprClass:
188 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
189
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000190 case Expr::CXXConditionDeclExprClass:
191 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
192
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000193 case Expr::ObjCMessageExprClass:
194 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000195 case Expr::ObjCIvarRefExprClass:
196 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000197 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000198 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000199 case Expr::ObjCKVCRefExprClass:
200 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000201 case Expr::ObjCSuperExprClass:
Chris Lattner65459942009-04-25 19:35:26 +0000202 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000203
Chris Lattner65459942009-04-25 19:35:26 +0000204 case Expr::StmtExprClass:
205 return EmitStmtExprLValue(cast<StmtExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000206 case Expr::UnaryOperatorClass:
207 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
208 case Expr::ArraySubscriptExprClass:
209 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000210 case Expr::ExtVectorElementExprClass:
211 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000212 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000213 case Expr::CompoundLiteralExprClass:
214 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbar90345582009-03-24 02:38:23 +0000215 case Expr::ConditionalOperatorClass:
216 return EmitConditionalOperator(cast<ConditionalOperator>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000217 case Expr::ChooseExprClass:
Eli Friedman79769322009-03-04 05:52:32 +0000218 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattnerc3953a62009-03-18 04:02:57 +0000219 case Expr::ImplicitCastExprClass:
220 case Expr::CStyleCastExprClass:
221 case Expr::CXXFunctionalCastExprClass:
222 case Expr::CXXStaticCastExprClass:
223 case Expr::CXXDynamicCastExprClass:
224 case Expr::CXXReinterpretCastExprClass:
225 case Expr::CXXConstCastExprClass:
Chris Lattner75dfeda2009-03-18 18:28:57 +0000226 return EmitCastLValue(cast<CastExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000227 }
228}
229
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000230llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
231 QualType Ty) {
232 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
233
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000234 // Bool can have different representation in memory than in registers.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000235 if (Ty->isBooleanType())
236 if (V->getType() != llvm::Type::Int1Ty)
237 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
238
239 return V;
240}
241
242void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000243 bool Volatile, QualType Ty) {
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000244
245 if (Ty->isBooleanType()) {
246 // Bool can have different representation in memory than in registers.
247 const llvm::Type *SrcTy = Value->getType();
248 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
249 if (DstPtr->getElementType() != SrcTy) {
250 const llvm::Type *MemTy =
251 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
252 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
253 }
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000254 }
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000255
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000256 Builder.CreateStore(Value, Addr, Volatile);
257}
258
Reid Spencer5f016e22007-07-11 17:01:13 +0000259/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
260/// this method emits the address of the lvalue, then loads the result as an
261/// rvalue, returning the rvalue.
262RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000263 if (LV.isObjCWeak()) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000264 // load of a __weak object.
265 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000266 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000267 AddrWeakObj);
268 return RValue::get(read_weak);
269 }
270
Reid Spencer5f016e22007-07-11 17:01:13 +0000271 if (LV.isSimple()) {
272 llvm::Value *Ptr = LV.getAddress();
273 const llvm::Type *EltTy =
274 cast<llvm::PointerType>(Ptr->getType())->getElementType();
275
276 // Simple scalar l-value.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000277 if (EltTy->isSingleValueType())
278 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
279 ExprType));
Reid Spencer5f016e22007-07-11 17:01:13 +0000280
Chris Lattner883f6a72007-08-11 00:04:45 +0000281 assert(ExprType->isFunctionType() && "Unknown scalar value");
282 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000283 }
284
285 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000286 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
287 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000288 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
289 "vecext"));
290 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000291
292 // If this is a reference to a subset of the elements of a vector, either
293 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000294 if (LV.isExtVectorElt())
295 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000296
297 if (LV.isBitfield())
298 return EmitLoadOfBitfieldLValue(LV, ExprType);
299
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000300 if (LV.isPropertyRef())
301 return EmitLoadOfPropertyRefLValue(LV, ExprType);
302
Chris Lattner73525de2009-02-16 21:11:58 +0000303 assert(LV.isKVCRef() && "Unknown LValue type!");
304 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000305}
306
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000307RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
308 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000309 unsigned StartBit = LV.getBitfieldStartBit();
310 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000311 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000312
313 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000314 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000315 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000316
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000317 // In some cases the bitfield may straddle two memory locations.
318 // Currently we load the entire bitfield, then do the magic to
319 // sign-extend it if necessary. This results in somewhat more code
320 // than necessary for the common case (one load), since two shifts
321 // accomplish both the masking and sign extension.
322 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
323 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
324
325 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000326 if (StartBit)
327 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
328 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000329
330 // Mask off unused bits.
331 llvm::Constant *LowMask =
332 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
333 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
334
335 // Fetch the high bits if necessary.
336 if (LowBits < BitfieldSize) {
337 unsigned HighBits = BitfieldSize - LowBits;
338 llvm::Value *HighPtr =
339 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
340 "bf.ptr.hi");
341 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
342 LV.isVolatileQualified(),
343 "tmp");
344
345 // Mask off unused bits.
346 llvm::Constant *HighMask =
347 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
348 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000349
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000350 // Shift to proper location and or in to bitfield value.
351 HighVal = Builder.CreateShl(HighVal,
352 llvm::ConstantInt::get(EltTy, LowBits));
353 Val = Builder.CreateOr(Val, HighVal, "bf.val");
354 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000355
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000356 // Sign extend if necessary.
357 if (LV.isBitfieldSigned()) {
358 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
359 EltTySize - BitfieldSize);
360 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
361 ExtraBits, "bf.val.sext");
362 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000363
364 // The bitfield type and the normal type differ when the storage sizes
365 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000366 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000367
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000368 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000369}
370
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000371RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
372 QualType ExprType) {
373 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
374}
375
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000376RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
377 QualType ExprType) {
378 return EmitObjCPropertyGet(LV.getKVCRefExpr());
379}
380
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000381// If this is a reference to a subset of the elements of a vector, create an
382// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000383RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
384 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000385 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
386 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000387
Nate Begeman8a997642008-05-09 06:41:27 +0000388 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000389
390 // If the result of the expression is a non-vector type, we must be
391 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000392 const VectorType *ExprVT = ExprType->getAsVectorType();
393 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000394 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000395 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
396 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
397 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000398
399 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000400 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000401
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000402 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000403 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000404 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000405 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000406 }
407
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000408 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
409 Vec = Builder.CreateShuffleVector(Vec,
410 llvm::UndefValue::get(Vec->getType()),
411 MaskV, "tmp");
412 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000413}
414
415
Reid Spencer5f016e22007-07-11 17:01:13 +0000416
417/// EmitStoreThroughLValue - Store the specified rvalue into the specified
418/// lvalue, where both are guaranteed to the have the same type, and that type
419/// is 'Ty'.
420void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
421 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000422 if (!Dst.isSimple()) {
423 if (Dst.isVectorElt()) {
424 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000425 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
426 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000427 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000428 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000429 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000430 return;
431 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000432
Nate Begeman213541a2008-04-18 23:10:10 +0000433 // If this is an update of extended vector elements, insert them as
434 // appropriate.
435 if (Dst.isExtVectorElt())
436 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000437
438 if (Dst.isBitfield())
439 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
440
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000441 if (Dst.isPropertyRef())
442 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
443
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000444 if (Dst.isKVCRef())
445 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
446
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000447 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000448 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000449
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000450 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000451 // load of a __weak object.
452 llvm::Value *LvalueDst = Dst.getAddress();
453 llvm::Value *src = Src.getScalarVal();
Mike Stumpf33651c2009-04-14 00:57:29 +0000454 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000455 return;
456 }
457
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000458 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000459 // load of a __strong object.
460 llvm::Value *LvalueDst = Dst.getAddress();
461 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000462#if 0
Mike Stumpf5408fe2009-05-16 07:57:57 +0000463 // FIXME. We cannot positively determine if we have an 'ivar' assignment,
464 // object assignment or an unknown assignment. For now, generate call to
465 // objc_assign_strongCast assignment which is a safe, but consevative
466 // assumption.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000467 if (Dst.isObjCIvar())
468 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
469 else
470 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000471#endif
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000472 if (Dst.isGlobalObjCRef())
473 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
474 else
475 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000476 return;
477 }
478
Chris Lattner883f6a72007-08-11 00:04:45 +0000479 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000480 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
481 Dst.isVolatileQualified(), Ty);
Reid Spencer5f016e22007-07-11 17:01:13 +0000482}
483
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000484void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000485 QualType Ty,
486 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000487 unsigned StartBit = Dst.getBitfieldStartBit();
488 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000489 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000490
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000491 const llvm::Type *EltTy =
492 cast<llvm::PointerType>(Ptr->getType())->getElementType();
493 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
494
495 // Get the new value, cast to the appropriate type and masked to
496 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000497 llvm::Value *SrcVal = Src.getScalarVal();
498 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000499 llvm::Constant *Mask =
500 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
501 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000502
Daniel Dunbared3849b2008-11-19 09:36:46 +0000503 // Return the new value of the bit-field, if requested.
504 if (Result) {
505 // Cast back to the proper type for result.
506 const llvm::Type *SrcTy = SrcVal->getType();
507 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
508 "bf.reload.val");
509
510 // Sign extend if necessary.
511 if (Dst.isBitfieldSigned()) {
512 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
513 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
514 SrcTySize - BitfieldSize);
515 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
516 ExtraBits, "bf.reload.sext");
517 }
518
519 *Result = SrcTrunc;
520 }
521
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000522 // In some cases the bitfield may straddle two memory locations.
523 // Emit the low part first and check to see if the high needs to be
524 // done.
525 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
526 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
527 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000528
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000529 // Compute the mask for zero-ing the low part of this bitfield.
530 llvm::Constant *InvMask =
531 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
532 StartBit + LowBits));
533
534 // Compute the new low part as
535 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
536 // with the shift of NewVal implicitly stripping the high bits.
537 llvm::Value *NewLowVal =
538 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
539 "bf.value.lo");
540 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
541 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
542
543 // Write back.
544 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000545
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000546 // If the low part doesn't cover the bitfield emit a high part.
547 if (LowBits < BitfieldSize) {
548 unsigned HighBits = BitfieldSize - LowBits;
549 llvm::Value *HighPtr =
550 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
551 "bf.ptr.hi");
552 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
553 Dst.isVolatileQualified(),
554 "bf.prev.hi");
555
556 // Compute the mask for zero-ing the high part of this bitfield.
557 llvm::Constant *InvMask =
558 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
559
560 // Compute the new high part as
561 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
562 // where the high bits of NewVal have already been cleared and the
563 // shift stripping the low bits.
564 llvm::Value *NewHighVal =
565 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
566 "bf.value.high");
567 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
568 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
569
570 // Write back.
571 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
572 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000573}
574
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000575void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
576 LValue Dst,
577 QualType Ty) {
578 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
579}
580
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000581void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
582 LValue Dst,
583 QualType Ty) {
584 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
585}
586
Nate Begeman213541a2008-04-18 23:10:10 +0000587void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
588 LValue Dst,
589 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000590 // This access turns into a read/modify/write of the vector. Load the input
591 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000592 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
593 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000594 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000595
Chris Lattner9b655512007-08-31 22:49:20 +0000596 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000597
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000598 if (const VectorType *VTy = Ty->getAsVectorType()) {
599 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000600 unsigned NumDstElts =
601 cast<llvm::VectorType>(Vec->getType())->getNumElements();
602 if (NumDstElts == NumSrcElts) {
603 // Use shuffle vector is the src and destination are the same number
604 // of elements
605 llvm::SmallVector<llvm::Constant*, 4> Mask;
606 for (unsigned i = 0; i != NumSrcElts; ++i) {
607 unsigned InIdx = getAccessedFieldNo(i, Elts);
608 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
609 }
610
611 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
612 Vec = Builder.CreateShuffleVector(SrcVal,
613 llvm::UndefValue::get(Vec->getType()),
614 MaskV, "tmp");
615 }
616 else if (NumDstElts > NumSrcElts) {
617 // Extended the source vector to the same length and then shuffle it
618 // into the destination.
619 // FIXME: since we're shuffling with undef, can we just use the indices
620 // into that? This could be simpler.
621 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
622 unsigned i;
623 for (i = 0; i != NumSrcElts; ++i)
624 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
625 for (; i != NumDstElts; ++i)
626 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
627 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
628 ExtMask.size());
Daniel Dunbarbb767732009-02-17 18:31:04 +0000629 llvm::Value *ExtSrcVal =
630 Builder.CreateShuffleVector(SrcVal,
631 llvm::UndefValue::get(SrcVal->getType()),
632 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000633 // build identity
634 llvm::SmallVector<llvm::Constant*, 4> Mask;
635 for (unsigned i = 0; i != NumDstElts; ++i) {
636 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
637 }
638 // modify when what gets shuffled in
639 for (unsigned i = 0; i != NumSrcElts; ++i) {
640 unsigned Idx = getAccessedFieldNo(i, Elts);
641 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
642 }
643 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
644 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
645 }
646 else {
647 // We should never shorten the vector
648 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000649 }
650 } else {
651 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000652 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000653 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
654 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000655 }
656
Eli Friedman1e692ac2008-06-13 23:01:12 +0000657 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000658}
659
Reid Spencer5f016e22007-07-11 17:01:13 +0000660LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000661 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
662
Chris Lattner41110242008-06-17 18:05:57 +0000663 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
664 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000665 LValue LV;
Fariborz Jahanian52967772009-05-27 19:48:48 +0000666 bool NonGCable = VD->hasLocalStorage() && !VD->hasAttr<BlocksAttr>();
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000667 if (VD->hasExternalStorage()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000668 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
669 if (VD->getType()->isReferenceType())
670 V = Builder.CreateLoad(V, "tmp");
671 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000672 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000673 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000674 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000675 llvm::Value *V = LocalDeclMap[VD];
Mike Stumpa99038c2009-02-28 09:07:16 +0000676 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000677 // local variables do not get their gc attribute set.
678 QualType::GCAttrTypes attr = QualType::GCNone;
679 // local static?
Fariborz Jahanian52967772009-05-27 19:48:48 +0000680 if (!NonGCable)
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000681 attr = getContext().getObjCGCAttrKind(E->getType());
Daniel Dunbarb11fa0d2009-04-13 21:08:27 +0000682 if (VD->hasAttr<BlocksAttr>()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000683 bool needsCopyDispose = BlockRequiresCopying(VD->getType());
684 const llvm::Type *PtrStructTy = V->getType();
685 const llvm::Type *Ty = PtrStructTy;
686 Ty = llvm::PointerType::get(Ty, 0);
687 V = Builder.CreateStructGEP(V, 1, "forwarding");
688 V = Builder.CreateBitCast(V, Ty);
689 V = Builder.CreateLoad(V, false);
690 V = Builder.CreateBitCast(V, PtrStructTy);
691 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
692 }
Anders Carlssonc8667a82009-05-19 20:40:02 +0000693 if (VD->getType()->isReferenceType())
694 V = Builder.CreateLoad(V, "tmp");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000695 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000696 }
Fariborz Jahanian52967772009-05-27 19:48:48 +0000697 LValue::SetObjCNonGC(LV, NonGCable);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000698 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000699 } else if (VD && VD->isFileVarDecl()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000700 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
701 if (VD->getType()->isReferenceType())
702 V = Builder.CreateLoad(V, "tmp");
703 LValue LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000704 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000705 if (LV.isObjCStrong())
706 LV.SetGlobalObjCRef(LV, true);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000707 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000708 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000709 return LValue::MakeAddr(CGM.GetAddrOfFunction(GlobalDecl(FD)),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000710 E->getType().getCVRQualifiers(),
711 getContext().getObjCGCAttrKind(E->getType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000712 }
Chris Lattner41110242008-06-17 18:05:57 +0000713 else if (const ImplicitParamDecl *IPD =
714 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
715 llvm::Value *V = LocalDeclMap[IPD];
716 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000717 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
718 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000719 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000720 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000721 //an invalid LValue, but the assert will
722 //ensure that this point is never reached.
723 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000724}
725
Mike Stumpa99038c2009-02-28 09:07:16 +0000726LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
Daniel Dunbare2265342009-05-23 02:49:02 +0000727 return LValue::MakeAddr(GetAddrOfBlockDecl(E),
728 E->getType().getCVRQualifiers(),
729 getContext().getObjCGCAttrKind(E->getType()));
Mike Stumpa99038c2009-02-28 09:07:16 +0000730}
731
Reid Spencer5f016e22007-07-11 17:01:13 +0000732LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
733 // __extension__ doesn't affect lvalue-ness.
734 if (E->getOpcode() == UnaryOperator::Extension)
735 return EmitLValue(E->getSubExpr());
736
Chris Lattner96196622008-07-26 22:37:01 +0000737 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000738 switch (E->getOpcode()) {
739 default: assert(0 && "Unknown unary operator lvalue!");
740 case UnaryOperator::Deref:
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000741 {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000742 QualType T =
743 E->getSubExpr()->getType()->getAsPointerType()->getPointeeType();
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000744 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
745 ExprTy->getAsPointerType()->getPointeeType()
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000746 .getCVRQualifiers(),
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000747 getContext().getObjCGCAttrKind(T));
748 // We should not generate __weak write barrier on indirect reference
749 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
750 // But, we continue to generate __strong write barrier on indirect write
751 // into a pointer to object.
752 if (getContext().getLangOptions().ObjC1 &&
753 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
754 LV.isObjCWeak())
755 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
756 return LV;
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000757 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000758 case UnaryOperator::Real:
759 case UnaryOperator::Imag:
760 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000761 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
762 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000763 Idx, "idx"),
764 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000765 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000766}
767
768LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000769 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000770}
771
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000772LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
773 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
774}
775
776
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000777LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000778 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000779
780 switch (Type) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000781 default:
782 assert(0 && "Invalid type");
783 case PredefinedExpr::Func:
784 GlobalVarName = "__func__.";
785 break;
786 case PredefinedExpr::Function:
787 GlobalVarName = "__FUNCTION__.";
788 break;
789 case PredefinedExpr::PrettyFunction:
790 // FIXME:: Demangle C++ method names
791 GlobalVarName = "__PRETTY_FUNCTION__.";
792 break;
Anders Carlsson22742662007-07-21 05:21:51 +0000793 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000794
Chris Lattnerb5437d22009-04-23 05:30:27 +0000795 // FIXME: This isn't right at all. The logic for computing this should go
796 // into a method on PredefinedExpr. This would allow sema and codegen to be
797 // consistent for things like sizeof(__func__) etc.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000798 std::string FunctionName;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000799 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
Douglas Gregor6ec36682009-02-18 23:53:56 +0000800 FunctionName = CGM.getMangledName(FD);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000801 } else {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000802 // Just get the mangled name; skipping the asm prefix if it
803 // exists.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000804 FunctionName = CurFn->getName();
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000805 if (FunctionName[0] == '\01')
806 FunctionName = FunctionName.substr(1, std::string::npos);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000807 }
808
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000809 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000810 llvm::Constant *C =
811 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
812 return LValue::MakeAddr(C, 0);
813}
814
815LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
816 switch (E->getIdentType()) {
817 default:
818 return EmitUnsupportedLValue(E, "predefined expression");
819 case PredefinedExpr::Func:
820 case PredefinedExpr::Function:
821 case PredefinedExpr::PrettyFunction:
822 return EmitPredefinedFunctionName(E->getIdentType());
823 }
Anders Carlsson22742662007-07-21 05:21:51 +0000824}
825
Reid Spencer5f016e22007-07-11 17:01:13 +0000826LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000827 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000828 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000829
830 // If the base is a vector type, then we are forming a vector element lvalue
831 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000832 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000833 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000834 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000835 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000836 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000837 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
838 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000839 }
840
Ted Kremenek23245122007-08-20 16:18:38 +0000841 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000842 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000843
Ted Kremenek23245122007-08-20 16:18:38 +0000844 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000845 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000846 bool IdxSigned = IdxTy->isSignedIntegerType();
847 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta7cabee52009-04-24 02:40:57 +0000848 if (IdxBitwidth != LLVMPointerWidth)
849 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 IdxSigned, "idxprom");
851
Daniel Dunbar2a866252009-04-25 05:08:32 +0000852 // We know that the pointer points to a type of the correct size,
853 // unless the size is a VLA or Objective-C interface.
854 llvm::Value *Address = 0;
Anders Carlsson8b33c082008-12-21 00:11:23 +0000855 if (const VariableArrayType *VAT =
856 getContext().getAsVariableArrayType(E->getType())) {
857 llvm::Value *VLASize = VLASizeMap[VAT];
858
859 Idx = Builder.CreateMul(Idx, VLASize);
860
Anders Carlsson6183a992008-12-21 03:44:36 +0000861 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000862
863 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
864 Idx = Builder.CreateUDiv(Idx,
865 llvm::ConstantInt::get(Idx->getType(),
866 BaseTypeSize));
Daniel Dunbar2a866252009-04-25 05:08:32 +0000867 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
868 } else if (const ObjCInterfaceType *OIT =
869 dyn_cast<ObjCInterfaceType>(E->getType())) {
870 llvm::Value *InterfaceSize =
871 llvm::ConstantInt::get(Idx->getType(),
872 getContext().getTypeSize(OIT) / 8);
873
874 Idx = Builder.CreateMul(Idx, InterfaceSize);
875
876 llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
877 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
878 Idx, "arrayidx");
879 Address = Builder.CreateBitCast(Address, Base->getType());
880 } else {
881 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
Anders Carlsson8b33c082008-12-21 00:11:23 +0000882 }
883
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000884 QualType T = E->getBase()->getType()->getAsPointerType()->getPointeeType();
Daniel Dunbar2a866252009-04-25 05:08:32 +0000885 LValue LV = LValue::MakeAddr(Address,
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000886 T.getCVRQualifiers(),
887 getContext().getObjCGCAttrKind(T));
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000888 if (getContext().getLangOptions().ObjC1 &&
889 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000890 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000891 return LV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000892}
893
Nate Begeman3b8d1162008-05-13 21:03:02 +0000894static
895llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
896 llvm::SmallVector<llvm::Constant *, 4> CElts;
897
898 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
899 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
900
901 return llvm::ConstantVector::get(&CElts[0], CElts.size());
902}
903
Chris Lattner349aaec2007-08-02 23:37:31 +0000904LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000905EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000906 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +0000907 LValue Base;
908
909 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +0000910 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +0000911 assert(E->getBase()->getType()->isVectorType());
912 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +0000913 } else {
914 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
915 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
916 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner73525de2009-02-16 21:11:58 +0000917 }
Chris Lattner349aaec2007-08-02 23:37:31 +0000918
Nate Begeman3b8d1162008-05-13 21:03:02 +0000919 // Encode the element access list into a vector of unsigned indices.
920 llvm::SmallVector<unsigned, 4> Indices;
921 E->getEncodedElementAccess(Indices);
922
923 if (Base.isSimple()) {
924 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000925 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000926 Base.getQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000927 }
928 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
929
930 llvm::Constant *BaseElts = Base.getExtVectorElts();
931 llvm::SmallVector<llvm::Constant *, 4> CElts;
932
933 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
934 if (isa<llvm::ConstantAggregateZero>(BaseElts))
935 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
936 else
937 CElts.push_back(BaseElts->getOperand(Indices[i]));
938 }
939 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000940 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000941 Base.getQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000942}
943
Devang Patelb9b00ad2007-10-23 20:28:39 +0000944LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000945 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000946 bool isIvar = false;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000947 bool isNonGC = false;
Devang Patel126a8562007-10-24 22:26:28 +0000948 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000949 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000950 unsigned CVRQualifiers=0;
951
Chris Lattner12f65f62007-12-02 18:52:07 +0000952 // 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 +0000953 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000954 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000955 const PointerType *PTy =
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000956 BaseExpr->getType()->getAsPointerType();
Devang Patelfe2419a2007-12-11 21:33:16 +0000957 if (PTy->getPointeeType()->isUnionType())
958 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000959 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000960 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
961 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +0000962 RValue RV = EmitObjCPropertyGet(BaseExpr);
963 BaseValue = RV.getAggregateAddr();
964 if (BaseExpr->getType()->isUnionType())
965 isUnion = true;
966 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000967 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +0000968 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000969 if (BaseLV.isObjCIvar())
970 isIvar = true;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000971 if (BaseLV.isNonGC())
972 isNonGC = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000973 // FIXME: this isn't right for bitfields.
974 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000975 if (BaseExpr->getType()->isUnionType())
976 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000977 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000978 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000979
Douglas Gregor86f19402008-12-20 23:49:58 +0000980 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
981 // FIXME: Handle non-field member expressions
982 assert(Field && "No code generation for non-field member references");
Chris Lattner1bd885e2009-02-16 22:25:49 +0000983 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
984 CVRQualifiers);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000985 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000986 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000987 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +0000988}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000989
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000990LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
991 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000992 unsigned CVRQualifiers) {
Daniel Dunbarbb767732009-02-17 18:31:04 +0000993 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Mike Stumpf5408fe2009-05-16 07:57:57 +0000994 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
995 // FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbarbb767732009-02-17 18:31:04 +0000996 const llvm::Type *FieldTy =
997 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000998 const llvm::PointerType *BaseTy =
999 cast<llvm::PointerType>(BaseValue->getType());
1000 unsigned AS = BaseTy->getAddressSpace();
1001 BaseValue = Builder.CreateBitCast(BaseValue,
1002 llvm::PointerType::get(FieldTy, AS),
1003 "tmp");
1004 llvm::Value *V = Builder.CreateGEP(BaseValue,
1005 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
1006 "tmp");
1007
1008 CodeGenTypes::BitFieldInfo bitFieldInfo =
1009 CGM.getTypes().getBitFieldInfo(Field);
1010 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
1011 Field->getType()->isSignedIntegerType(),
1012 Field->getType().getCVRQualifiers()|CVRQualifiers);
1013}
1014
Eli Friedman472778e2008-02-09 08:50:58 +00001015LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
1016 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +00001017 bool isUnion,
1018 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +00001019{
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001020 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001021 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +00001022
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001023 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001024 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +00001025
Devang Patelabad06c2007-10-26 19:42:18 +00001026 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +00001027 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +00001028 const llvm::Type *FieldTy =
1029 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +00001030 const llvm::PointerType * BaseTy =
1031 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +00001032 unsigned AS = BaseTy->getAddressSpace();
1033 V = Builder.CreateBitCast(V,
1034 llvm::PointerType::get(FieldTy, AS),
1035 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +00001036 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +00001037
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001038 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001039 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001040 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1041 QualType Ty = Field->getType();
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001042 attr = Ty.getObjCGCAttr();
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001043 if (attr != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001044 // __weak attribute on a field is ignored.
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001045 if (attr == QualType::Weak)
1046 attr = QualType::GCNone;
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001047 }
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001048 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001049 attr = QualType::Strong;
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001050 }
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001051 LValue LV =
1052 LValue::MakeAddr(V,
1053 Field->getType().getCVRQualifiers()|CVRQualifiers,
1054 attr);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +00001055 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +00001056}
1057
Chris Lattner75dfeda2009-03-18 18:28:57 +00001058LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman06e863f2008-05-13 23:18:27 +00001059 const llvm::Type *LTy = ConvertType(E->getType());
1060 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1061
1062 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +00001063 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +00001064
1065 if (E->getType()->isComplexType()) {
1066 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1067 } else if (hasAggregateLLVMType(E->getType())) {
1068 EmitAnyExpr(InitExpr, DeclPtr, false);
1069 } else {
1070 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1071 }
1072
1073 return Result;
1074}
1075
Daniel Dunbar90345582009-03-24 02:38:23 +00001076LValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator* E) {
1077 // We don't handle vectors yet.
1078 if (E->getType()->isVectorType())
1079 return EmitUnsupportedLValue(E, "conditional operator");
1080
1081 // ?: here should be an aggregate.
1082 assert((hasAggregateLLVMType(E->getType()) &&
1083 !E->getType()->isAnyComplexType()) &&
1084 "Unexpected conditional operator!");
1085
1086 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1087 EmitAggExpr(E, Temp, false);
1088
1089 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1090 getContext().getObjCGCAttrKind(E->getType()));
1091
1092}
1093
Chris Lattner75dfeda2009-03-18 18:28:57 +00001094/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1095/// generator in an lvalue context, then it must mean that we need the address
1096/// of an aggregate in order to access one of its fields. This can happen for
1097/// all the reasons that casts are permitted with aggregate result, including
1098/// noop aggregate casts, and cast from scalar to union.
1099LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
1100 // If this is an aggregate-to-aggregate cast, just use the input's address as
1101 // the lvalue.
1102 if (getContext().hasSameUnqualifiedType(E->getType(),
1103 E->getSubExpr()->getType()))
1104 return EmitLValue(E->getSubExpr());
1105
1106 // Otherwise, we must have a cast from scalar to union.
1107 assert(E->getType()->isUnionType() && "Expected scalar-to-union cast");
1108
1109 // Casts are only lvalues when the source and destination types are the same.
1110 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
Chris Lattner40f92922009-03-18 18:30:44 +00001111 EmitAnyExpr(E->getSubExpr(), Temp, false);
Chris Lattner75dfeda2009-03-18 18:28:57 +00001112
1113 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1114 getContext().getObjCGCAttrKind(E->getType()));
1115}
1116
Reid Spencer5f016e22007-07-11 17:01:13 +00001117//===--------------------------------------------------------------------===//
1118// Expression Emission
1119//===--------------------------------------------------------------------===//
1120
Chris Lattner7016a702007-08-20 22:37:10 +00001121
Reid Spencer5f016e22007-07-11 17:01:13 +00001122RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001123 // Builtins never have block type.
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001124 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +00001125 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001126
Anders Carlsson774e7c62009-04-03 22:50:24 +00001127 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1128 return EmitCXXMemberCallExpr(CE);
1129
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001130 const Decl *TargetDecl = 0;
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001131 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1132 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1133 TargetDecl = DRE->getDecl();
1134 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1135 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1136 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001137 }
1138 }
1139
Anders Carlsson0f294632009-05-27 04:18:27 +00001140 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E)) {
1141 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
1142 return EmitCXXOperatorMemberCallExpr(CE, MD);
1143 }
1144
Chris Lattner7f02f722007-08-24 05:35:26 +00001145 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Anders Carlsson98647712009-05-27 01:22:39 +00001146 return EmitCall(Callee, E->getCallee()->getType(),
1147 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattnerc5e940f2007-08-31 04:44:06 +00001148}
1149
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001150LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattner7a574cc2009-05-12 21:28:12 +00001151 // Comma expressions just emit their LHS then their RHS as an l-value.
1152 if (E->getOpcode() == BinaryOperator::Comma) {
1153 EmitAnyExpr(E->getLHS());
1154 return EmitLValue(E->getRHS());
1155 }
1156
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001157 // Can only get l-value for binary operator expressions which are a
1158 // simple assignment of aggregate type.
1159 if (E->getOpcode() != BinaryOperator::Assign)
1160 return EmitUnsupportedLValue(E, "binary l-value expression");
1161
1162 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1163 EmitAggExpr(E, Temp, false);
1164 // FIXME: Are these qualifiers correct?
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001165 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1166 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001167}
1168
Christopher Lamb22c940e2007-12-29 05:02:41 +00001169LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
Christopher Lamb22c940e2007-12-29 05:02:41 +00001170 RValue RV = EmitCallExpr(E);
Anders Carlsson48265682009-05-27 01:45:47 +00001171
1172 if (RV.isScalar()) {
1173 assert(E->getCallReturnType()->isReferenceType() &&
1174 "Can't have a scalar return unless the return type is a "
1175 "reference type!");
1176
1177 return LValue::MakeAddr(RV.getScalarVal(), E->getType().getCVRQualifiers(),
1178 getContext().getObjCGCAttrKind(E->getType()));
1179 }
1180
Eli Friedman1e692ac2008-06-13 23:01:12 +00001181 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001182 E->getType().getCVRQualifiers(),
1183 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lamb22c940e2007-12-29 05:02:41 +00001184}
1185
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001186LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1187 // FIXME: This shouldn't require another copy.
1188 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1189 EmitAggExpr(E, Temp, false);
1190 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1191}
1192
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001193LValue
1194CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1195 EmitLocalBlockVarDecl(*E->getVarDecl());
1196 return EmitDeclRefLValue(E);
1197}
1198
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001199LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1200 // Can only get l-value for message expression returning aggregate type
1201 RValue RV = EmitObjCMessageExpr(E);
1202 // FIXME: can this be volatile?
1203 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001204 E->getType().getCVRQualifiers(),
1205 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001206}
1207
Daniel Dunbar2a031922009-04-22 05:08:15 +00001208llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001209 const ObjCIvarDecl *Ivar) {
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001210 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001211}
1212
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001213LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1214 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001215 const ObjCIvarDecl *Ivar,
1216 unsigned CVRQualifiers) {
Chris Lattner26f074b2009-04-17 17:44:48 +00001217 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001218 Ivar, CVRQualifiers);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001219}
1220
1221LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001222 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1223 llvm::Value *BaseValue = 0;
1224 const Expr *BaseExpr = E->getBase();
1225 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001226 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001227 if (E->isArrow()) {
1228 BaseValue = EmitScalarExpr(BaseExpr);
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +00001229 const PointerType *PTy = BaseExpr->getType()->getAsPointerType();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001230 ObjectTy = PTy->getPointeeType();
1231 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001232 } else {
1233 LValue BaseLV = EmitLValue(BaseExpr);
1234 // FIXME: this isn't right for bitfields.
1235 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001236 ObjectTy = BaseExpr->getType();
1237 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001238 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001239
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001240 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001241}
1242
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001243LValue
1244CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1245 // This is a special l-value that just issues sends when we load or
1246 // store through it.
1247 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1248}
1249
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001250LValue
1251CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1252 // This is a special l-value that just issues sends when we load or
1253 // store through it.
1254 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1255}
1256
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001257LValue
Chris Lattner65459942009-04-25 19:35:26 +00001258CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001259 return EmitUnsupportedLValue(E, "use of super");
1260}
1261
Chris Lattner65459942009-04-25 19:35:26 +00001262LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
1263
1264 // Can only get l-value for message expression returning aggregate type
1265 RValue RV = EmitAnyExprToTemp(E);
1266 // FIXME: can this be volatile?
1267 return LValue::MakeAddr(RV.getAggregateAddr(),
1268 E->getType().getCVRQualifiers(),
1269 getContext().getObjCGCAttrKind(E->getType()));
1270}
1271
1272
Anders Carlsson98647712009-05-27 01:22:39 +00001273RValue CodeGenFunction::EmitCall(llvm::Value *Callee, QualType CalleeType,
1274 CallExpr::const_arg_iterator ArgBeg,
1275 CallExpr::const_arg_iterator ArgEnd,
1276 const Decl *TargetDecl) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001277 // Get the actual function type. The callee type will always be a
1278 // pointer to function type or a block pointer type.
Anders Carlsson8ac67a72009-04-07 18:53:02 +00001279 assert(CalleeType->isFunctionPointerType() &&
1280 "Call must have function pointer type!");
1281
1282 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1283 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001284
1285 CallArgList Args;
Anders Carlsson782f3972009-04-08 23:13:16 +00001286 EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001287
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001288 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001289 Callee, Args, TargetDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001290}