blob: 51c5b3d7dde1a99959a9eba09ccd9405e2d59b36 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +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 Dunbara8f02052008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbar84bb85f2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbareee5cd12008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbar64789f82008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedmana04e70d2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Chris Lattner4b009652007-07-25 00:24:17 +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 Lattner7fbb70d2009-03-22 00:24:14 +000032 if (!Builder.isNamePreserving())
33 Name = "";
Chris Lattner4b009652007-07-25 00:24:17 +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 Lattnercc50a512007-08-26 16:46:58 +000040 QualType BoolTy = getContext().BoolTy;
Chris Lattnerde0908b2008-04-04 16:54:41 +000041 if (!E->getType()->isAnyComplexType())
Chris Lattnercc50a512007-08-26 16:46:58 +000042 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner4b009652007-07-25 00:24:17 +000043
Chris Lattnercc50a512007-08-26 16:46:58 +000044 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattner4b009652007-07-25 00:24:17 +000045}
46
Chris Lattnere24c4cf2007-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 Stumpb27442c2009-05-26 22:03:21 +000052 bool isAggLocVolatile, bool IgnoreResult) {
Chris Lattnere24c4cf2007-08-31 22:49:20 +000053 if (!hasAggregateLLVMType(E->getType()))
Mike Stumpb8fc73e2009-05-29 15:46:01 +000054 return RValue::get(EmitScalarExpr(E, IgnoreResult));
Chris Lattnerde0908b2008-04-04 16:54:41 +000055 else if (E->getType()->isAnyComplexType())
Mike Stumpb8fc73e2009-05-29 15:46:01 +000056 return RValue::getComplex(EmitComplexExpr(E, false, false,
57 IgnoreResult, IgnoreResult));
Chris Lattnere24c4cf2007-08-31 22:49:20 +000058
Mike Stumpb27442c2009-05-26 22:03:21 +000059 EmitAggExpr(E, AggLoc, isAggLocVolatile, IgnoreResult);
Mike Stumpa8bac022009-05-23 21:40:07 +000060 return RValue::getAggregate(AggLoc, isAggLocVolatile);
Chris Lattnere24c4cf2007-08-31 22:49:20 +000061}
62
Daniel Dunbar0a2da0f2008-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 Carlssonde55abc2009-05-20 00:24:07 +000074RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
75 QualType DestType) {
Eli Friedman58fd6852009-05-20 02:31:19 +000076 RValue Val;
77 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
Anders Carlsson23ea02a2009-05-20 00:36:58 +000078 // Emit the expr as an lvalue.
79 LValue LV = EmitLValue(E);
Eli Friedman58fd6852009-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 Carlsson23ea02a2009-05-20 00:36:58 +000085 }
Eli Friedman58fd6852009-05-20 02:31:19 +000086
87 if (Val.isAggregate()) {
88 Val = RValue::get(Val.getAggregateAddr());
89 } else {
Anders Carlssonf4f07372009-05-20 01:35:03 +000090 // Create a temporary variable that we can bind the reference to.
Anders Carlsson0c0f7442009-05-20 01:03:17 +000091 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()),
92 "reftmp");
Eli Friedman58fd6852009-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 Carlsson0c0f7442009-05-20 01:03:17 +000098 }
Eli Friedman58fd6852009-05-20 02:31:19 +000099
100 return Val;
Anders Carlssonde55abc2009-05-20 00:24:07 +0000101}
102
103
Dan Gohman4751a3a2008-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 Lattnere24c4cf2007-08-31 22:49:20 +0000114
Chris Lattner4b009652007-07-25 00:24:17 +0000115//===----------------------------------------------------------------------===//
116// LValue Expression Emission
117//===----------------------------------------------------------------------===//
118
Daniel Dunbar900c85a2009-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 Dunbar8cb73402009-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 Dunbar900c85a2009-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 Dunbar8cb73402009-01-09 20:09:28 +0000129 } else {
Daniel Dunbar900c85a2009-02-05 07:09:07 +0000130 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8cb73402009-01-09 20:09:28 +0000131 }
Daniel Dunbare3a6a682009-01-09 16:50:52 +0000132}
133
Daniel Dunbar900c85a2009-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 Dunbarde1bd942008-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 Jahanianbbd4ca92009-02-19 23:36:06 +0000145 E->getType().getCVRQualifiers(),
146 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000147}
148
Chris Lattner4b009652007-07-25 00:24:17 +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 Dunbarde1bd942008-08-25 20:45:57 +0000167 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000168
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000169 case Expr::BinaryOperatorClass:
170 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000171 case Expr::CallExprClass:
172 case Expr::CXXOperatorCallExprClass:
173 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar95d08f22009-02-11 20:59:32 +0000174 case Expr::VAArgExprClass:
175 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor566782a2009-01-06 05:10:23 +0000176 case Expr::DeclRefExprClass:
177 case Expr::QualifiedDeclRefExprClass:
178 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000179 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner69909292008-08-10 01:53:14 +0000180 case Expr::PredefinedExprClass:
181 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000182 case Expr::StringLiteralClass:
183 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnerc5d32632009-02-24 22:18:39 +0000184 case Expr::ObjCEncodeExprClass:
185 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000186
Mike Stump2b6933f2009-02-28 09:07:16 +0000187 case Expr::BlockDeclRefExprClass:
188 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
189
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +0000190 case Expr::CXXConditionDeclExprClass:
191 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
Anders Carlsson2af296a2009-05-30 23:23:33 +0000192 case Expr::CXXTemporaryObjectExprClass:
193 case Expr::CXXConstructExprClass:
Anders Carlsson1e21d2e2009-05-30 23:30:54 +0000194 return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
195 case Expr::CXXBindTemporaryExprClass:
196 return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
197
Daniel Dunbar5e105892008-08-23 10:51:21 +0000198 case Expr::ObjCMessageExprClass:
199 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000200 case Expr::ObjCIvarRefExprClass:
201 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000202 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbare6c31752008-08-29 08:11:39 +0000203 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000204 case Expr::ObjCKVCRefExprClass:
205 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregord8606632008-11-04 14:56:14 +0000206 case Expr::ObjCSuperExprClass:
Chris Lattnereec3a592009-04-25 19:35:26 +0000207 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregord8606632008-11-04 14:56:14 +0000208
Chris Lattnereec3a592009-04-25 19:35:26 +0000209 case Expr::StmtExprClass:
210 return EmitStmtExprLValue(cast<StmtExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000211 case Expr::UnaryOperatorClass:
212 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
213 case Expr::ArraySubscriptExprClass:
214 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemanaf6ed502008-04-18 23:10:10 +0000215 case Expr::ExtVectorElementExprClass:
216 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patel41b66252007-10-23 20:28:39 +0000217 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000218 case Expr::CompoundLiteralExprClass:
219 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbaraecb4932009-03-24 02:38:23 +0000220 case Expr::ConditionalOperatorClass:
221 return EmitConditionalOperator(cast<ConditionalOperator>(E));
Chris Lattnera5f779dc2008-12-12 05:35:08 +0000222 case Expr::ChooseExprClass:
Eli Friedmand540c112009-03-04 05:52:32 +0000223 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattner504239f2009-03-18 04:02:57 +0000224 case Expr::ImplicitCastExprClass:
225 case Expr::CStyleCastExprClass:
226 case Expr::CXXFunctionalCastExprClass:
227 case Expr::CXXStaticCastExprClass:
228 case Expr::CXXDynamicCastExprClass:
229 case Expr::CXXReinterpretCastExprClass:
230 case Expr::CXXConstCastExprClass:
Chris Lattner22523ba2009-03-18 18:28:57 +0000231 return EmitCastLValue(cast<CastExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000232 }
233}
234
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000235llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
236 QualType Ty) {
237 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
238
Anders Carlsson20786092009-05-19 19:36:19 +0000239 // Bool can have different representation in memory than in registers.
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000240 if (Ty->isBooleanType())
241 if (V->getType() != llvm::Type::Int1Ty)
242 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
243
244 return V;
245}
246
247void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Anders Carlsson05dfa992009-05-19 18:50:41 +0000248 bool Volatile, QualType Ty) {
Anders Carlsson20786092009-05-19 19:36:19 +0000249
250 if (Ty->isBooleanType()) {
251 // Bool can have different representation in memory than in registers.
252 const llvm::Type *SrcTy = Value->getType();
253 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
254 if (DstPtr->getElementType() != SrcTy) {
255 const llvm::Type *MemTy =
256 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
257 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
258 }
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000259 }
Anders Carlsson20786092009-05-19 19:36:19 +0000260
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000261 Builder.CreateStore(Value, Addr, Volatile);
262}
263
Chris Lattner4b009652007-07-25 00:24:17 +0000264/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
265/// this method emits the address of the lvalue, then loads the result as an
266/// rvalue, returning the rvalue.
267RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000268 if (LV.isObjCWeak()) {
Fariborz Jahanian3305ad32008-11-18 21:45:40 +0000269 // load of a __weak object.
270 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian252d87f2008-11-18 22:37:34 +0000271 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian3305ad32008-11-18 21:45:40 +0000272 AddrWeakObj);
273 return RValue::get(read_weak);
274 }
275
Chris Lattner4b009652007-07-25 00:24:17 +0000276 if (LV.isSimple()) {
277 llvm::Value *Ptr = LV.getAddress();
278 const llvm::Type *EltTy =
279 cast<llvm::PointerType>(Ptr->getType())->getElementType();
280
281 // Simple scalar l-value.
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000282 if (EltTy->isSingleValueType())
283 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
284 ExprType));
Chris Lattner4b009652007-07-25 00:24:17 +0000285
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000286 assert(ExprType->isFunctionType() && "Unknown scalar value");
287 return RValue::get(Ptr);
Chris Lattner4b009652007-07-25 00:24:17 +0000288 }
289
290 if (LV.isVectorElt()) {
Eli Friedman2e630542008-06-13 23:01:12 +0000291 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
292 LV.isVolatileQualified(), "tmp");
Chris Lattner4b009652007-07-25 00:24:17 +0000293 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
294 "vecext"));
295 }
Chris Lattnera735fac2007-08-03 00:16:29 +0000296
297 // If this is a reference to a subset of the elements of a vector, either
298 // shuffle the input or extract/insert them as appropriate.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000299 if (LV.isExtVectorElt())
300 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000301
302 if (LV.isBitfield())
303 return EmitLoadOfBitfieldLValue(LV, ExprType);
304
Daniel Dunbare6c31752008-08-29 08:11:39 +0000305 if (LV.isPropertyRef())
306 return EmitLoadOfPropertyRefLValue(LV, ExprType);
307
Chris Lattner09020ee2009-02-16 21:11:58 +0000308 assert(LV.isKVCRef() && "Unknown LValue type!");
309 return EmitLoadOfKVCRefLValue(LV, ExprType);
Chris Lattner4b009652007-07-25 00:24:17 +0000310}
311
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000312RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
313 QualType ExprType) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000314 unsigned StartBit = LV.getBitfieldStartBit();
315 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000316 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000317
318 const llvm::Type *EltTy =
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000319 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000320 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000321
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000322 // In some cases the bitfield may straddle two memory locations.
323 // Currently we load the entire bitfield, then do the magic to
324 // sign-extend it if necessary. This results in somewhat more code
325 // than necessary for the common case (one load), since two shifts
326 // accomplish both the masking and sign extension.
327 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
328 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
329
330 // Shift to proper location.
Daniel Dunbar198edd52008-11-13 02:20:34 +0000331 if (StartBit)
332 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
333 "bf.lo");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000334
335 // Mask off unused bits.
336 llvm::Constant *LowMask =
337 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
338 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
339
340 // Fetch the high bits if necessary.
341 if (LowBits < BitfieldSize) {
342 unsigned HighBits = BitfieldSize - LowBits;
343 llvm::Value *HighPtr =
344 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
345 "bf.ptr.hi");
346 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
347 LV.isVolatileQualified(),
348 "tmp");
349
350 // Mask off unused bits.
351 llvm::Constant *HighMask =
352 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
353 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000354
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000355 // Shift to proper location and or in to bitfield value.
356 HighVal = Builder.CreateShl(HighVal,
357 llvm::ConstantInt::get(EltTy, LowBits));
358 Val = Builder.CreateOr(Val, HighVal, "bf.val");
359 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000360
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000361 // Sign extend if necessary.
362 if (LV.isBitfieldSigned()) {
363 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
364 EltTySize - BitfieldSize);
365 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
366 ExtraBits, "bf.val.sext");
367 }
Eli Friedmana04e70d2008-05-17 20:03:47 +0000368
369 // The bitfield type and the normal type differ when the storage sizes
370 // differ (currently just _Bool).
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000371 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000372
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000373 return RValue::get(Val);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000374}
375
Daniel Dunbare6c31752008-08-29 08:11:39 +0000376RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
377 QualType ExprType) {
378 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
379}
380
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000381RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
382 QualType ExprType) {
383 return EmitObjCPropertyGet(LV.getKVCRefExpr());
384}
385
Nate Begeman7903d052009-01-18 06:42:49 +0000386// If this is a reference to a subset of the elements of a vector, create an
387// appropriate shufflevector.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000388RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
389 QualType ExprType) {
Eli Friedman2e630542008-06-13 23:01:12 +0000390 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
391 LV.isVolatileQualified(), "tmp");
Chris Lattner944f7962007-08-03 16:18:34 +0000392
Nate Begemanc8e51f82008-05-09 06:41:27 +0000393 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner944f7962007-08-03 16:18:34 +0000394
395 // If the result of the expression is a non-vector type, we must be
396 // extracting a single element. Just codegen as an extractelement.
Chris Lattner4b492962007-08-10 17:10:08 +0000397 const VectorType *ExprVT = ExprType->getAsVectorType();
398 if (!ExprVT) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000399 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000400 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
401 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
402 }
Nate Begeman7903d052009-01-18 06:42:49 +0000403
404 // Always use shuffle vector to try to retain the original program structure
Chris Lattner4b492962007-08-10 17:10:08 +0000405 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner944f7962007-08-03 16:18:34 +0000406
Nate Begeman7903d052009-01-18 06:42:49 +0000407 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner944f7962007-08-03 16:18:34 +0000408 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000409 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman7903d052009-01-18 06:42:49 +0000410 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner944f7962007-08-03 16:18:34 +0000411 }
412
Nate Begeman7903d052009-01-18 06:42:49 +0000413 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
414 Vec = Builder.CreateShuffleVector(Vec,
415 llvm::UndefValue::get(Vec->getType()),
416 MaskV, "tmp");
417 return RValue::get(Vec);
Chris Lattner944f7962007-08-03 16:18:34 +0000418}
419
420
Chris Lattner4b009652007-07-25 00:24:17 +0000421
422/// EmitStoreThroughLValue - Store the specified rvalue into the specified
423/// lvalue, where both are guaranteed to the have the same type, and that type
424/// is 'Ty'.
425void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
426 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000427 if (!Dst.isSimple()) {
428 if (Dst.isVectorElt()) {
429 // Read/modify/write the vector, inserting the new element.
Eli Friedman2e630542008-06-13 23:01:12 +0000430 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
431 Dst.isVolatileQualified(), "tmp");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000432 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner5bfdd232007-08-03 16:28:33 +0000433 Dst.getVectorIdx(), "vecins");
Eli Friedman2e630542008-06-13 23:01:12 +0000434 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000435 return;
436 }
Chris Lattner4b009652007-07-25 00:24:17 +0000437
Nate Begemanaf6ed502008-04-18 23:10:10 +0000438 // If this is an update of extended vector elements, insert them as
439 // appropriate.
440 if (Dst.isExtVectorElt())
441 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000442
443 if (Dst.isBitfield())
444 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
445
Daniel Dunbare6c31752008-08-29 08:11:39 +0000446 if (Dst.isPropertyRef())
447 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
448
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000449 if (Dst.isKVCRef())
450 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
451
Lauro Ramos Venancio14d39842008-01-22 22:38:35 +0000452 assert(0 && "Unknown LValue type");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000453 }
Chris Lattner4b009652007-07-25 00:24:17 +0000454
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000455 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000456 // load of a __weak object.
457 llvm::Value *LvalueDst = Dst.getAddress();
458 llvm::Value *src = Src.getScalarVal();
Mike Stumpf41021d2009-04-14 00:57:29 +0000459 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000460 return;
461 }
462
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000463 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000464 // load of a __strong object.
465 llvm::Value *LvalueDst = Dst.getAddress();
466 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian5a0c3412009-02-19 18:29:24 +0000467#if 0
Mike Stumpba2cb0e2009-05-16 07:57:57 +0000468 // FIXME. We cannot positively determine if we have an 'ivar' assignment,
469 // object assignment or an unknown assignment. For now, generate call to
470 // objc_assign_strongCast assignment which is a safe, but consevative
471 // assumption.
Fariborz Jahanian70522662008-11-20 20:53:20 +0000472 if (Dst.isObjCIvar())
473 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
474 else
475 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian5a0c3412009-02-19 18:29:24 +0000476#endif
Fariborz Jahanian955b39c2009-05-04 23:27:20 +0000477 if (Dst.isGlobalObjCRef())
478 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
479 else
480 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000481 return;
482 }
483
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000484 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlsson05dfa992009-05-19 18:50:41 +0000485 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
486 Dst.isVolatileQualified(), Ty);
Chris Lattner4b009652007-07-25 00:24:17 +0000487}
488
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000489void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000490 QualType Ty,
491 llvm::Value **Result) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000492 unsigned StartBit = Dst.getBitfieldStartBit();
493 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000494 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000495
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000496 const llvm::Type *EltTy =
497 cast<llvm::PointerType>(Ptr->getType())->getElementType();
498 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
499
500 // Get the new value, cast to the appropriate type and masked to
501 // exactly the size of the bit-field.
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000502 llvm::Value *SrcVal = Src.getScalarVal();
503 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000504 llvm::Constant *Mask =
505 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
506 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000507
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000508 // Return the new value of the bit-field, if requested.
509 if (Result) {
510 // Cast back to the proper type for result.
511 const llvm::Type *SrcTy = SrcVal->getType();
512 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
513 "bf.reload.val");
514
515 // Sign extend if necessary.
516 if (Dst.isBitfieldSigned()) {
517 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
518 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
519 SrcTySize - BitfieldSize);
520 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
521 ExtraBits, "bf.reload.sext");
522 }
523
524 *Result = SrcTrunc;
525 }
526
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000527 // In some cases the bitfield may straddle two memory locations.
528 // Emit the low part first and check to see if the high needs to be
529 // done.
530 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
531 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
532 "bf.prev.low");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000533
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000534 // Compute the mask for zero-ing the low part of this bitfield.
535 llvm::Constant *InvMask =
536 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
537 StartBit + LowBits));
538
539 // Compute the new low part as
540 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
541 // with the shift of NewVal implicitly stripping the high bits.
542 llvm::Value *NewLowVal =
543 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
544 "bf.value.lo");
545 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
546 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
547
548 // Write back.
549 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedmana04e70d2008-05-17 20:03:47 +0000550
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000551 // If the low part doesn't cover the bitfield emit a high part.
552 if (LowBits < BitfieldSize) {
553 unsigned HighBits = BitfieldSize - LowBits;
554 llvm::Value *HighPtr =
555 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
556 "bf.ptr.hi");
557 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
558 Dst.isVolatileQualified(),
559 "bf.prev.hi");
560
561 // Compute the mask for zero-ing the high part of this bitfield.
562 llvm::Constant *InvMask =
563 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
564
565 // Compute the new high part as
566 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
567 // where the high bits of NewVal have already been cleared and the
568 // shift stripping the low bits.
569 llvm::Value *NewHighVal =
570 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
571 "bf.value.high");
572 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
573 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
574
575 // Write back.
576 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
577 }
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000578}
579
Daniel Dunbare6c31752008-08-29 08:11:39 +0000580void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
581 LValue Dst,
582 QualType Ty) {
583 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
584}
585
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000586void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
587 LValue Dst,
588 QualType Ty) {
589 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
590}
591
Nate Begemanaf6ed502008-04-18 23:10:10 +0000592void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
593 LValue Dst,
594 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000595 // This access turns into a read/modify/write of the vector. Load the input
596 // value now.
Eli Friedman2e630542008-06-13 23:01:12 +0000597 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
598 Dst.isVolatileQualified(), "tmp");
Nate Begemanc8e51f82008-05-09 06:41:27 +0000599 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000600
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000601 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000602
Chris Lattner940966d2007-08-03 16:37:04 +0000603 if (const VectorType *VTy = Ty->getAsVectorType()) {
604 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman7903d052009-01-18 06:42:49 +0000605 unsigned NumDstElts =
606 cast<llvm::VectorType>(Vec->getType())->getNumElements();
607 if (NumDstElts == NumSrcElts) {
608 // Use shuffle vector is the src and destination are the same number
609 // of elements
610 llvm::SmallVector<llvm::Constant*, 4> Mask;
611 for (unsigned i = 0; i != NumSrcElts; ++i) {
612 unsigned InIdx = getAccessedFieldNo(i, Elts);
613 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
614 }
615
616 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
617 Vec = Builder.CreateShuffleVector(SrcVal,
618 llvm::UndefValue::get(Vec->getType()),
619 MaskV, "tmp");
620 }
621 else if (NumDstElts > NumSrcElts) {
622 // Extended the source vector to the same length and then shuffle it
623 // into the destination.
624 // FIXME: since we're shuffling with undef, can we just use the indices
625 // into that? This could be simpler.
626 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
627 unsigned i;
628 for (i = 0; i != NumSrcElts; ++i)
629 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
630 for (; i != NumDstElts; ++i)
631 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
632 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
633 ExtMask.size());
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +0000634 llvm::Value *ExtSrcVal =
635 Builder.CreateShuffleVector(SrcVal,
636 llvm::UndefValue::get(SrcVal->getType()),
637 ExtMaskV, "tmp");
Nate Begeman7903d052009-01-18 06:42:49 +0000638 // build identity
639 llvm::SmallVector<llvm::Constant*, 4> Mask;
640 for (unsigned i = 0; i != NumDstElts; ++i) {
641 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
642 }
643 // modify when what gets shuffled in
644 for (unsigned i = 0; i != NumSrcElts; ++i) {
645 unsigned Idx = getAccessedFieldNo(i, Elts);
646 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
647 }
648 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
649 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
650 }
651 else {
652 // We should never shorten the vector
653 assert(0 && "unexpected shorten vector length");
Chris Lattner940966d2007-08-03 16:37:04 +0000654 }
655 } else {
656 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4751a3a2008-05-22 00:50:06 +0000657 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner5bfdd232007-08-03 16:28:33 +0000658 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
659 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000660 }
661
Eli Friedman2e630542008-06-13 23:01:12 +0000662 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000663}
664
Chris Lattner4b009652007-07-25 00:24:17 +0000665LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000666 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
667
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000668 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
669 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000670 LValue LV;
Douglas Gregor98da6ae2009-06-18 16:11:24 +0000671 bool NonGCable = VD->hasLocalStorage() &&
672 !VD->hasAttr<BlocksAttr>(getContext());
Daniel Dunbar644c15e2009-04-14 02:25:56 +0000673 if (VD->hasExternalStorage()) {
Anders Carlsson474a2a92009-05-19 20:40:02 +0000674 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
675 if (VD->getType()->isReferenceType())
676 V = Builder.CreateLoad(V, "tmp");
677 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000678 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000679 }
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000680 else {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000681 llvm::Value *V = LocalDeclMap[VD];
Mike Stump2b6933f2009-02-28 09:07:16 +0000682 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanian4d41b952009-02-20 01:14:43 +0000683 // local variables do not get their gc attribute set.
684 QualType::GCAttrTypes attr = QualType::GCNone;
685 // local static?
Fariborz Jahanian2de7d7b2009-05-27 19:48:48 +0000686 if (!NonGCable)
Fariborz Jahanian4d41b952009-02-20 01:14:43 +0000687 attr = getContext().getObjCGCAttrKind(E->getType());
Douglas Gregor98da6ae2009-06-18 16:11:24 +0000688 if (VD->hasAttr<BlocksAttr>(getContext())) {
Mike Stumpad9605d2009-03-04 03:23:46 +0000689 bool needsCopyDispose = BlockRequiresCopying(VD->getType());
690 const llvm::Type *PtrStructTy = V->getType();
691 const llvm::Type *Ty = PtrStructTy;
692 Ty = llvm::PointerType::get(Ty, 0);
693 V = Builder.CreateStructGEP(V, 1, "forwarding");
694 V = Builder.CreateBitCast(V, Ty);
695 V = Builder.CreateLoad(V, false);
696 V = Builder.CreateBitCast(V, PtrStructTy);
697 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
698 }
Anders Carlsson474a2a92009-05-19 20:40:02 +0000699 if (VD->getType()->isReferenceType())
700 V = Builder.CreateLoad(V, "tmp");
Fariborz Jahanian4d41b952009-02-20 01:14:43 +0000701 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000702 }
Fariborz Jahanian2de7d7b2009-05-27 19:48:48 +0000703 LValue::SetObjCNonGC(LV, NonGCable);
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000704 return LV;
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000705 } else if (VD && VD->isFileVarDecl()) {
Anders Carlsson474a2a92009-05-19 20:40:02 +0000706 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
707 if (VD->getType()->isReferenceType())
708 V = Builder.CreateLoad(V, "tmp");
709 LValue LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000710 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian955b39c2009-05-04 23:27:20 +0000711 if (LV.isObjCStrong())
712 LV.SetGlobalObjCRef(LV, true);
Fariborz Jahanianc192d4d2008-11-18 20:18:11 +0000713 return LV;
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000714 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Eli Friedman1a034742009-06-01 10:04:20 +0000715 llvm::Value* V = CGM.GetAddrOfFunction(GlobalDecl(FD));
716 if (!FD->hasPrototype()) {
717 if (const FunctionProtoType *Proto =
718 FD->getType()->getAsFunctionProtoType()) {
719 // Ugly case: for a K&R-style definition, the type of the definition
720 // isn't the same as the type of a use. Correct for this with a
721 // bitcast.
722 QualType NoProtoType =
723 getContext().getFunctionNoProtoType(Proto->getResultType());
724 NoProtoType = getContext().getPointerType(NoProtoType);
725 V = Builder.CreateBitCast(V, ConvertType(NoProtoType), "tmp");
726 }
727 }
728 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000729 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner4b009652007-07-25 00:24:17 +0000730 }
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000731 else if (const ImplicitParamDecl *IPD =
732 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
733 llvm::Value *V = LocalDeclMap[IPD];
734 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000735 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
736 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000737 }
Chris Lattner4b009652007-07-25 00:24:17 +0000738 assert(0 && "Unimp declref");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000739 //an invalid LValue, but the assert will
740 //ensure that this point is never reached.
741 return LValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000742}
743
Mike Stump2b6933f2009-02-28 09:07:16 +0000744LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
Daniel Dunbar8c405782009-05-23 02:49:02 +0000745 return LValue::MakeAddr(GetAddrOfBlockDecl(E),
746 E->getType().getCVRQualifiers(),
747 getContext().getObjCGCAttrKind(E->getType()));
Mike Stump2b6933f2009-02-28 09:07:16 +0000748}
749
Chris Lattner4b009652007-07-25 00:24:17 +0000750LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
751 // __extension__ doesn't affect lvalue-ness.
752 if (E->getOpcode() == UnaryOperator::Extension)
753 return EmitLValue(E->getSubExpr());
754
Chris Lattnerc154ac12008-07-26 22:37:01 +0000755 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner5bf72022007-10-30 22:53:42 +0000756 switch (E->getOpcode()) {
757 default: assert(0 && "Unknown unary operator lvalue!");
758 case UnaryOperator::Deref:
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000759 {
Chris Lattnerc5d32632009-02-24 22:18:39 +0000760 QualType T =
761 E->getSubExpr()->getType()->getAsPointerType()->getPointeeType();
Fariborz Jahanian2224fb22009-02-23 18:59:50 +0000762 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
763 ExprTy->getAsPointerType()->getPointeeType()
Fariborz Jahanian4d41b952009-02-20 01:14:43 +0000764 .getCVRQualifiers(),
Fariborz Jahanian2224fb22009-02-23 18:59:50 +0000765 getContext().getObjCGCAttrKind(T));
766 // We should not generate __weak write barrier on indirect reference
767 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
768 // But, we continue to generate __strong write barrier on indirect write
769 // into a pointer to object.
770 if (getContext().getLangOptions().ObjC1 &&
771 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
772 LV.isObjCWeak())
Fariborz Jahanian0ceca872009-06-01 21:29:32 +0000773 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanian2224fb22009-02-23 18:59:50 +0000774 return LV;
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000775 }
Chris Lattner5bf72022007-10-30 22:53:42 +0000776 case UnaryOperator::Real:
777 case UnaryOperator::Imag:
778 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner07307562008-03-19 05:19:41 +0000779 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
780 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000781 Idx, "idx"),
782 ExprTy.getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000783 }
Chris Lattner4b009652007-07-25 00:24:17 +0000784}
785
786LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000787 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4b009652007-07-25 00:24:17 +0000788}
789
Chris Lattnerc5d32632009-02-24 22:18:39 +0000790LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
791 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
792}
793
794
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000795LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000796 std::string GlobalVarName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000797
798 switch (Type) {
Chris Lattnerc5d32632009-02-24 22:18:39 +0000799 default:
800 assert(0 && "Invalid type");
801 case PredefinedExpr::Func:
802 GlobalVarName = "__func__.";
803 break;
804 case PredefinedExpr::Function:
805 GlobalVarName = "__FUNCTION__.";
806 break;
807 case PredefinedExpr::PrettyFunction:
808 // FIXME:: Demangle C++ method names
809 GlobalVarName = "__PRETTY_FUNCTION__.";
810 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000811 }
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000812
Chris Lattnerf6279ae2009-04-23 05:30:27 +0000813 // FIXME: This isn't right at all. The logic for computing this should go
814 // into a method on PredefinedExpr. This would allow sema and codegen to be
815 // consistent for things like sizeof(__func__) etc.
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000816 std::string FunctionName;
Chris Lattnerf6279ae2009-04-23 05:30:27 +0000817 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
Douglas Gregor3c3c4542009-02-18 23:53:56 +0000818 FunctionName = CGM.getMangledName(FD);
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000819 } else {
Daniel Dunbara2d275d2009-04-07 05:48:37 +0000820 // Just get the mangled name; skipping the asm prefix if it
821 // exists.
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000822 FunctionName = CurFn->getName();
Daniel Dunbara2d275d2009-04-07 05:48:37 +0000823 if (FunctionName[0] == '\01')
824 FunctionName = FunctionName.substr(1, std::string::npos);
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000825 }
826
Chris Lattner6e6a5972008-04-04 04:07:35 +0000827 GlobalVarName += FunctionName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000828 llvm::Constant *C =
829 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
830 return LValue::MakeAddr(C, 0);
831}
832
833LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
834 switch (E->getIdentType()) {
835 default:
836 return EmitUnsupportedLValue(E, "predefined expression");
837 case PredefinedExpr::Func:
838 case PredefinedExpr::Function:
839 case PredefinedExpr::PrettyFunction:
840 return EmitPredefinedFunctionName(E->getIdentType());
841 }
Chris Lattner4b009652007-07-25 00:24:17 +0000842}
843
844LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000845 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000846 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Eli Friedman92f47c92009-06-06 19:09:26 +0000847 QualType IdxTy = E->getIdx()->getType();
848 bool IdxSigned = IdxTy->isSignedIntegerType();
849
Chris Lattner4b009652007-07-25 00:24:17 +0000850 // If the base is a vector type, then we are forming a vector element lvalue
851 // with this subscript.
Eli Friedman2e630542008-06-13 23:01:12 +0000852 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000853 // Emit the vector as an lvalue to get its address.
Eli Friedman2e630542008-06-13 23:01:12 +0000854 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000855 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Eli Friedman92f47c92009-06-06 19:09:26 +0000856 Idx = Builder.CreateIntCast(Idx, llvm::Type::Int32Ty, IdxSigned, "vidx");
Eli Friedman2e630542008-06-13 23:01:12 +0000857 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
858 E->getBase()->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000859 }
860
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000861 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000862 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner4b009652007-07-25 00:24:17 +0000863
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000864 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner4b009652007-07-25 00:24:17 +0000865 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Guptacee8fea2009-04-24 02:40:57 +0000866 if (IdxBitwidth != LLVMPointerWidth)
867 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
Chris Lattner4b009652007-07-25 00:24:17 +0000868 IdxSigned, "idxprom");
869
Daniel Dunbar6864c0d2009-04-25 05:08:32 +0000870 // We know that the pointer points to a type of the correct size,
871 // unless the size is a VLA or Objective-C interface.
872 llvm::Value *Address = 0;
Anders Carlsson3bb57e82008-12-21 00:11:23 +0000873 if (const VariableArrayType *VAT =
874 getContext().getAsVariableArrayType(E->getType())) {
875 llvm::Value *VLASize = VLASizeMap[VAT];
876
877 Idx = Builder.CreateMul(Idx, VLASize);
878
Anders Carlsson76d19c82008-12-21 03:44:36 +0000879 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson3bb57e82008-12-21 00:11:23 +0000880
881 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
882 Idx = Builder.CreateUDiv(Idx,
883 llvm::ConstantInt::get(Idx->getType(),
884 BaseTypeSize));
Daniel Dunbar6864c0d2009-04-25 05:08:32 +0000885 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
886 } else if (const ObjCInterfaceType *OIT =
887 dyn_cast<ObjCInterfaceType>(E->getType())) {
888 llvm::Value *InterfaceSize =
889 llvm::ConstantInt::get(Idx->getType(),
890 getContext().getTypeSize(OIT) / 8);
891
892 Idx = Builder.CreateMul(Idx, InterfaceSize);
893
894 llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
895 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
896 Idx, "arrayidx");
897 Address = Builder.CreateBitCast(Address, Base->getType());
898 } else {
899 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
Anders Carlsson3bb57e82008-12-21 00:11:23 +0000900 }
901
Daniel Dunbard4271f62009-04-18 08:54:40 +0000902 QualType T = E->getBase()->getType()->getAsPointerType()->getPointeeType();
Daniel Dunbar6864c0d2009-04-25 05:08:32 +0000903 LValue LV = LValue::MakeAddr(Address,
Daniel Dunbard4271f62009-04-18 08:54:40 +0000904 T.getCVRQualifiers(),
905 getContext().getObjCGCAttrKind(T));
Fariborz Jahanian1ff3c9d2009-02-21 23:37:19 +0000906 if (getContext().getLangOptions().ObjC1 &&
907 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian0ceca872009-06-01 21:29:32 +0000908 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanian1ff3c9d2009-02-21 23:37:19 +0000909 return LV;
Chris Lattner4b009652007-07-25 00:24:17 +0000910}
911
Nate Begemana1ae7442008-05-13 21:03:02 +0000912static
913llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
914 llvm::SmallVector<llvm::Constant *, 4> CElts;
915
916 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
917 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
918
919 return llvm::ConstantVector::get(&CElts[0], CElts.size());
920}
921
Chris Lattner65520192007-08-02 23:37:31 +0000922LValue CodeGenFunction::
Nate Begemanaf6ed502008-04-18 23:10:10 +0000923EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner65520192007-08-02 23:37:31 +0000924 // Emit the base vector as an l-value.
Chris Lattner09020ee2009-02-16 21:11:58 +0000925 LValue Base;
926
927 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner98e7fcc2009-02-16 22:14:05 +0000928 if (!E->isArrow()) {
Chris Lattner09020ee2009-02-16 21:11:58 +0000929 assert(E->getBase()->getType()->isVectorType());
930 Base = EmitLValue(E->getBase());
Chris Lattner98e7fcc2009-02-16 22:14:05 +0000931 } else {
932 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
933 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
934 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner09020ee2009-02-16 21:11:58 +0000935 }
Chris Lattner65520192007-08-02 23:37:31 +0000936
Nate Begemana1ae7442008-05-13 21:03:02 +0000937 // Encode the element access list into a vector of unsigned indices.
938 llvm::SmallVector<unsigned, 4> Indices;
939 E->getEncodedElementAccess(Indices);
940
941 if (Base.isSimple()) {
942 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman2e630542008-06-13 23:01:12 +0000943 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner9df79c32009-02-16 22:25:49 +0000944 Base.getQualifiers());
Nate Begemana1ae7442008-05-13 21:03:02 +0000945 }
946 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
947
948 llvm::Constant *BaseElts = Base.getExtVectorElts();
949 llvm::SmallVector<llvm::Constant *, 4> CElts;
950
951 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
952 if (isa<llvm::ConstantAggregateZero>(BaseElts))
953 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
954 else
955 CElts.push_back(BaseElts->getOperand(Indices[i]));
956 }
957 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman2e630542008-06-13 23:01:12 +0000958 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner9df79c32009-02-16 22:25:49 +0000959 Base.getQualifiers());
Chris Lattner65520192007-08-02 23:37:31 +0000960}
961
Devang Patel41b66252007-10-23 20:28:39 +0000962LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patele1f79db2007-12-11 21:33:16 +0000963 bool isUnion = false;
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000964 bool isIvar = false;
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000965 bool isNonGC = false;
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000966 Expr *BaseExpr = E->getBase();
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000967 llvm::Value *BaseValue = NULL;
Eli Friedman2e630542008-06-13 23:01:12 +0000968 unsigned CVRQualifiers=0;
969
Chris Lattner659079e2007-12-02 18:52:07 +0000970 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patele1f79db2007-12-11 21:33:16 +0000971 if (E->isArrow()) {
Devang Patel2b24fd92007-10-26 18:15:21 +0000972 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patele1f79db2007-12-11 21:33:16 +0000973 const PointerType *PTy =
Daniel Dunbard4271f62009-04-18 08:54:40 +0000974 BaseExpr->getType()->getAsPointerType();
Devang Patele1f79db2007-12-11 21:33:16 +0000975 if (PTy->getPointeeType()->isUnionType())
976 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000977 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner9df79c32009-02-16 22:25:49 +0000978 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
979 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian4e881652009-01-12 23:27:26 +0000980 RValue RV = EmitObjCPropertyGet(BaseExpr);
981 BaseValue = RV.getAggregateAddr();
982 if (BaseExpr->getType()->isUnionType())
983 isUnion = true;
984 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner9df79c32009-02-16 22:25:49 +0000985 } else {
Chris Lattner659079e2007-12-02 18:52:07 +0000986 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000987 if (BaseLV.isObjCIvar())
988 isIvar = true;
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000989 if (BaseLV.isNonGC())
990 isNonGC = true;
Chris Lattner659079e2007-12-02 18:52:07 +0000991 // FIXME: this isn't right for bitfields.
992 BaseValue = BaseLV.getAddress();
Devang Patele1f79db2007-12-11 21:33:16 +0000993 if (BaseExpr->getType()->isUnionType())
994 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000995 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner659079e2007-12-02 18:52:07 +0000996 }
Devang Patel41b66252007-10-23 20:28:39 +0000997
Douglas Gregor82d44772008-12-20 23:49:58 +0000998 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
999 // FIXME: Handle non-field member expressions
1000 assert(Field && "No code generation for non-field member references");
Chris Lattner9df79c32009-02-16 22:25:49 +00001001 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
1002 CVRQualifiers);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +00001003 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +00001004 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +00001005 return MemExpLV;
Eli Friedmand3550112008-02-09 08:50:58 +00001006}
Devang Patel41b66252007-10-23 20:28:39 +00001007
Fariborz Jahanian86008c02008-12-15 20:35:07 +00001008LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
1009 FieldDecl* Field,
Fariborz Jahanianc912eb72009-02-03 19:03:09 +00001010 unsigned CVRQualifiers) {
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +00001011 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Mike Stumpba2cb0e2009-05-16 07:57:57 +00001012 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
1013 // FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +00001014 const llvm::Type *FieldTy =
1015 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanian86008c02008-12-15 20:35:07 +00001016 const llvm::PointerType *BaseTy =
1017 cast<llvm::PointerType>(BaseValue->getType());
1018 unsigned AS = BaseTy->getAddressSpace();
1019 BaseValue = Builder.CreateBitCast(BaseValue,
1020 llvm::PointerType::get(FieldTy, AS),
1021 "tmp");
1022 llvm::Value *V = Builder.CreateGEP(BaseValue,
1023 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
1024 "tmp");
1025
1026 CodeGenTypes::BitFieldInfo bitFieldInfo =
1027 CGM.getTypes().getBitFieldInfo(Field);
1028 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
1029 Field->getType()->isSignedIntegerType(),
1030 Field->getType().getCVRQualifiers()|CVRQualifiers);
1031}
1032
Eli Friedmand3550112008-02-09 08:50:58 +00001033LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
1034 FieldDecl* Field,
Eli Friedman2e630542008-06-13 23:01:12 +00001035 bool isUnion,
1036 unsigned CVRQualifiers)
Eli Friedmand3550112008-02-09 08:50:58 +00001037{
Fariborz Jahanian86008c02008-12-15 20:35:07 +00001038 if (Field->isBitField())
Fariborz Jahanianc912eb72009-02-03 19:03:09 +00001039 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +00001040
Fariborz Jahanianc912eb72009-02-03 19:03:09 +00001041 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanian86008c02008-12-15 20:35:07 +00001042 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman66813742008-05-29 11:33:25 +00001043
Devang Patel9b1ca9e2007-10-26 19:42:18 +00001044 // Match union field type.
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +00001045 if (isUnion) {
Eli Friedman2e630542008-06-13 23:01:12 +00001046 const llvm::Type *FieldTy =
1047 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patel0f2a8fb2007-10-30 20:59:40 +00001048 const llvm::PointerType * BaseTy =
1049 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedmancecdc6b2008-05-21 13:24:44 +00001050 unsigned AS = BaseTy->getAddressSpace();
1051 V = Builder.CreateBitCast(V,
1052 llvm::PointerType::get(FieldTy, AS),
1053 "tmp");
Devang Patel9b1ca9e2007-10-26 19:42:18 +00001054 }
Eli Friedmand8c82512009-05-30 21:09:44 +00001055 if (Field->getType()->isReferenceType())
1056 V = Builder.CreateLoad(V, "tmp");
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +00001057
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001058 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanian80ff83c2009-02-18 17:52:36 +00001059 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian31804e12009-02-18 18:52:41 +00001060 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1061 QualType Ty = Field->getType();
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001062 attr = Ty.getObjCGCAttr();
Fariborz Jahaniancc59d472009-02-19 00:48:05 +00001063 if (attr != QualType::GCNone) {
Fariborz Jahanian31804e12009-02-18 18:52:41 +00001064 // __weak attribute on a field is ignored.
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001065 if (attr == QualType::Weak)
1066 attr = QualType::GCNone;
Fariborz Jahaniancc59d472009-02-19 00:48:05 +00001067 }
Fariborz Jahanian31804e12009-02-18 18:52:41 +00001068 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001069 attr = QualType::Strong;
Fariborz Jahanian31804e12009-02-18 18:52:41 +00001070 }
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001071 LValue LV =
1072 LValue::MakeAddr(V,
1073 Field->getType().getCVRQualifiers()|CVRQualifiers,
1074 attr);
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +00001075 return LV;
Devang Patel41b66252007-10-23 20:28:39 +00001076}
1077
Chris Lattner22523ba2009-03-18 18:28:57 +00001078LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedmanf3c2cb42008-05-13 23:18:27 +00001079 const llvm::Type *LTy = ConvertType(E->getType());
1080 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1081
1082 const Expr* InitExpr = E->getInitializer();
Eli Friedman2e630542008-06-13 23:01:12 +00001083 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedmanf3c2cb42008-05-13 23:18:27 +00001084
1085 if (E->getType()->isComplexType()) {
1086 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1087 } else if (hasAggregateLLVMType(E->getType())) {
1088 EmitAnyExpr(InitExpr, DeclPtr, false);
1089 } else {
1090 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1091 }
1092
1093 return Result;
1094}
1095
Daniel Dunbaraecb4932009-03-24 02:38:23 +00001096LValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator* E) {
1097 // We don't handle vectors yet.
1098 if (E->getType()->isVectorType())
1099 return EmitUnsupportedLValue(E, "conditional operator");
1100
1101 // ?: here should be an aggregate.
1102 assert((hasAggregateLLVMType(E->getType()) &&
1103 !E->getType()->isAnyComplexType()) &&
1104 "Unexpected conditional operator!");
1105
1106 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1107 EmitAggExpr(E, Temp, false);
1108
1109 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1110 getContext().getObjCGCAttrKind(E->getType()));
1111
1112}
1113
Chris Lattner22523ba2009-03-18 18:28:57 +00001114/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1115/// generator in an lvalue context, then it must mean that we need the address
1116/// of an aggregate in order to access one of its fields. This can happen for
1117/// all the reasons that casts are permitted with aggregate result, including
1118/// noop aggregate casts, and cast from scalar to union.
1119LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
1120 // If this is an aggregate-to-aggregate cast, just use the input's address as
1121 // the lvalue.
1122 if (getContext().hasSameUnqualifiedType(E->getType(),
1123 E->getSubExpr()->getType()))
1124 return EmitLValue(E->getSubExpr());
1125
1126 // Otherwise, we must have a cast from scalar to union.
1127 assert(E->getType()->isUnionType() && "Expected scalar-to-union cast");
1128
1129 // Casts are only lvalues when the source and destination types are the same.
1130 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
Chris Lattner96a3a2d2009-03-18 18:30:44 +00001131 EmitAnyExpr(E->getSubExpr(), Temp, false);
Chris Lattner22523ba2009-03-18 18:28:57 +00001132
1133 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1134 getContext().getObjCGCAttrKind(E->getType()));
1135}
1136
Chris Lattner4b009652007-07-25 00:24:17 +00001137//===--------------------------------------------------------------------===//
1138// Expression Emission
1139//===--------------------------------------------------------------------===//
1140
Chris Lattnerb2cb9cb2007-08-20 22:37:10 +00001141
Chris Lattner4b009652007-07-25 00:24:17 +00001142RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001143 // Builtins never have block type.
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001144 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssond2a889b2009-02-12 00:39:25 +00001145 return EmitBlockCallExpr(E);
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001146
Anders Carlsson7a9b2982009-04-03 22:50:24 +00001147 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1148 return EmitCXXMemberCallExpr(CE);
1149
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001150 const Decl *TargetDecl = 0;
Daniel Dunbar337f60a2009-02-20 19:34:33 +00001151 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1152 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1153 TargetDecl = DRE->getDecl();
1154 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1155 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1156 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001157 }
1158 }
1159
Chris Lattner38fab292009-06-13 00:26:38 +00001160 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
Anders Carlsson85eca6f2009-05-27 04:18:27 +00001161 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
1162 return EmitCXXOperatorMemberCallExpr(CE, MD);
Anders Carlsson85eca6f2009-05-27 04:18:27 +00001163
Chris Lattner9fba49a2007-08-24 05:35:26 +00001164 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Anders Carlssonc8648432009-05-27 01:22:39 +00001165 return EmitCall(Callee, E->getCallee()->getType(),
1166 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattner02c60f52007-08-31 04:44:06 +00001167}
1168
Daniel Dunbaref0d4c72008-09-04 03:20:13 +00001169LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattnerb7062332009-05-12 21:28:12 +00001170 // Comma expressions just emit their LHS then their RHS as an l-value.
1171 if (E->getOpcode() == BinaryOperator::Comma) {
1172 EmitAnyExpr(E->getLHS());
1173 return EmitLValue(E->getRHS());
1174 }
1175
Daniel Dunbaref0d4c72008-09-04 03:20:13 +00001176 // Can only get l-value for binary operator expressions which are a
1177 // simple assignment of aggregate type.
1178 if (E->getOpcode() != BinaryOperator::Assign)
1179 return EmitUnsupportedLValue(E, "binary l-value expression");
1180
1181 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1182 EmitAggExpr(E, Temp, false);
1183 // FIXME: Are these qualifiers correct?
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001184 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1185 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbaref0d4c72008-09-04 03:20:13 +00001186}
1187
Christopher Lambad327ba2007-12-29 05:02:41 +00001188LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
Christopher Lambad327ba2007-12-29 05:02:41 +00001189 RValue RV = EmitCallExpr(E);
Anders Carlssone4553d32009-05-27 01:45:47 +00001190
1191 if (RV.isScalar()) {
1192 assert(E->getCallReturnType()->isReferenceType() &&
1193 "Can't have a scalar return unless the return type is a "
1194 "reference type!");
1195
1196 return LValue::MakeAddr(RV.getScalarVal(), E->getType().getCVRQualifiers(),
1197 getContext().getObjCGCAttrKind(E->getType()));
1198 }
1199
Eli Friedman2e630542008-06-13 23:01:12 +00001200 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001201 E->getType().getCVRQualifiers(),
1202 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lambad327ba2007-12-29 05:02:41 +00001203}
1204
Daniel Dunbar95d08f22009-02-11 20:59:32 +00001205LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1206 // FIXME: This shouldn't require another copy.
1207 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1208 EmitAggExpr(E, Temp, false);
1209 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1210}
1211
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +00001212LValue
1213CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1214 EmitLocalBlockVarDecl(*E->getVarDecl());
1215 return EmitDeclRefLValue(E);
1216}
1217
Anders Carlsson2af296a2009-05-30 23:23:33 +00001218LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
1219 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()), "tmp");
1220 EmitCXXConstructExpr(Temp, E);
1221 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1222}
1223
Anders Carlsson1e21d2e2009-05-30 23:30:54 +00001224LValue
1225CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
1226 LValue LV = EmitLValue(E->getSubExpr());
1227
Anders Carlsson7fa1db82009-05-31 00:34:10 +00001228 PushCXXTemporary(E->getTemporary(), LV.getAddress());
Anders Carlsson1e21d2e2009-05-30 23:30:54 +00001229
1230 return LV;
1231}
1232
Daniel Dunbar5e105892008-08-23 10:51:21 +00001233LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1234 // Can only get l-value for message expression returning aggregate type
1235 RValue RV = EmitObjCMessageExpr(E);
1236 // FIXME: can this be volatile?
1237 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001238 E->getType().getCVRQualifiers(),
1239 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar5e105892008-08-23 10:51:21 +00001240}
1241
Daniel Dunbar61e14a62009-04-22 05:08:15 +00001242llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbare856ac22008-09-24 04:00:38 +00001243 const ObjCIvarDecl *Ivar) {
Fariborz Jahanian27cc6662009-02-10 19:02:04 +00001244 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbare856ac22008-09-24 04:00:38 +00001245}
1246
Fariborz Jahanian55343922009-02-03 00:09:52 +00001247LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1248 llvm::Value *BaseValue,
Daniel Dunbare856ac22008-09-24 04:00:38 +00001249 const ObjCIvarDecl *Ivar,
1250 unsigned CVRQualifiers) {
Chris Lattner552914b2009-04-17 17:44:48 +00001251 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbarf5254bd2009-04-21 01:19:28 +00001252 Ivar, CVRQualifiers);
Daniel Dunbare856ac22008-09-24 04:00:38 +00001253}
1254
1255LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonae61b002008-08-25 01:53:23 +00001256 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1257 llvm::Value *BaseValue = 0;
1258 const Expr *BaseExpr = E->getBase();
1259 unsigned CVRQualifiers = 0;
Fariborz Jahanian55343922009-02-03 00:09:52 +00001260 QualType ObjectTy;
Anders Carlssonae61b002008-08-25 01:53:23 +00001261 if (E->isArrow()) {
1262 BaseValue = EmitScalarExpr(BaseExpr);
Daniel Dunbard4271f62009-04-18 08:54:40 +00001263 const PointerType *PTy = BaseExpr->getType()->getAsPointerType();
Fariborz Jahanian55343922009-02-03 00:09:52 +00001264 ObjectTy = PTy->getPointeeType();
1265 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonae61b002008-08-25 01:53:23 +00001266 } else {
1267 LValue BaseLV = EmitLValue(BaseExpr);
1268 // FIXME: this isn't right for bitfields.
1269 BaseValue = BaseLV.getAddress();
Fariborz Jahanian55343922009-02-03 00:09:52 +00001270 ObjectTy = BaseExpr->getType();
1271 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonae61b002008-08-25 01:53:23 +00001272 }
Daniel Dunbare856ac22008-09-24 04:00:38 +00001273
Daniel Dunbarf5254bd2009-04-21 01:19:28 +00001274 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattnerb326b172008-03-30 23:03:07 +00001275}
1276
Daniel Dunbare6c31752008-08-29 08:11:39 +00001277LValue
1278CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1279 // This is a special l-value that just issues sends when we load or
1280 // store through it.
1281 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1282}
1283
Fariborz Jahanianb0973da2008-11-22 22:30:21 +00001284LValue
1285CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1286 // This is a special l-value that just issues sends when we load or
1287 // store through it.
1288 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1289}
1290
Douglas Gregord8606632008-11-04 14:56:14 +00001291LValue
Chris Lattnereec3a592009-04-25 19:35:26 +00001292CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregord8606632008-11-04 14:56:14 +00001293 return EmitUnsupportedLValue(E, "use of super");
1294}
1295
Chris Lattnereec3a592009-04-25 19:35:26 +00001296LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
1297
1298 // Can only get l-value for message expression returning aggregate type
1299 RValue RV = EmitAnyExprToTemp(E);
1300 // FIXME: can this be volatile?
1301 return LValue::MakeAddr(RV.getAggregateAddr(),
1302 E->getType().getCVRQualifiers(),
1303 getContext().getObjCGCAttrKind(E->getType()));
1304}
1305
1306
Anders Carlssonc8648432009-05-27 01:22:39 +00001307RValue CodeGenFunction::EmitCall(llvm::Value *Callee, QualType CalleeType,
1308 CallExpr::const_arg_iterator ArgBeg,
1309 CallExpr::const_arg_iterator ArgEnd,
1310 const Decl *TargetDecl) {
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001311 // Get the actual function type. The callee type will always be a
1312 // pointer to function type or a block pointer type.
Anders Carlsson7acb3a42009-04-07 18:53:02 +00001313 assert(CalleeType->isFunctionPointerType() &&
1314 "Call must have function pointer type!");
1315
1316 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1317 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar0ed60b02008-08-30 03:02:31 +00001318
1319 CallArgList Args;
Anders Carlsson6759c4d2009-04-08 23:13:16 +00001320 EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
Daniel Dunbar0ed60b02008-08-30 03:02:31 +00001321
Daniel Dunbar34bda882009-02-02 23:23:47 +00001322 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001323 Callee, Args, TargetDecl);
Daniel Dunbara04840b2008-08-23 03:46:30 +00001324}