blob: 0b7ad05b3055ddf21388af88026afa22a730cded [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,
52 bool isAggLocVolatile) {
53 if (!hasAggregateLLVMType(E->getType()))
54 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000055 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000056 return RValue::getComplex(EmitComplexExpr(E));
57
58 EmitAggExpr(E, AggLoc, isAggLocVolatile);
59 return RValue::getAggregate(AggLoc);
60}
61
Daniel Dunbar46f45b92008-09-09 01:06:48 +000062/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
63/// will always be accessible even if no aggregate location is
64/// provided.
65RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
66 bool isAggLocVolatile) {
67 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
68 !E->getType()->isAnyComplexType())
69 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
70 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
71}
72
Anders Carlsson4029ca72009-05-20 00:24:07 +000073RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
74 QualType DestType) {
Eli Friedman5df0d422009-05-20 02:31:19 +000075 RValue Val;
76 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
Anders Carlsson4bbab922009-05-20 00:36:58 +000077 // Emit the expr as an lvalue.
78 LValue LV = EmitLValue(E);
Eli Friedman5df0d422009-05-20 02:31:19 +000079 if (LV.isSimple())
80 return RValue::get(LV.getAddress());
81 Val = EmitLoadOfLValue(LV, E->getType());
82 } else {
83 Val = EmitAnyExprToTemp(E);
Anders Carlsson4bbab922009-05-20 00:36:58 +000084 }
Eli Friedman5df0d422009-05-20 02:31:19 +000085
86 if (Val.isAggregate()) {
87 Val = RValue::get(Val.getAggregateAddr());
88 } else {
Anders Carlsson7cd3a642009-05-20 01:35:03 +000089 // Create a temporary variable that we can bind the reference to.
Anders Carlssone04d1c72009-05-20 01:03:17 +000090 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()),
91 "reftmp");
Eli Friedman5df0d422009-05-20 02:31:19 +000092 if (Val.isScalar())
93 EmitStoreOfScalar(Val.getScalarVal(), Temp, false, E->getType());
94 else
95 StoreComplexToAddr(Val.getComplexVal(), Temp, false);
96 Val = RValue::get(Temp);
Anders Carlssone04d1c72009-05-20 01:03:17 +000097 }
Eli Friedman5df0d422009-05-20 02:31:19 +000098
99 return Val;
Anders Carlsson4029ca72009-05-20 00:24:07 +0000100}
101
102
Dan Gohman4f8d1232008-05-22 00:50:06 +0000103/// getAccessedFieldNo - Given an encoded value and a result number, return
104/// the input field number being accessed.
105unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
106 const llvm::Constant *Elts) {
107 if (isa<llvm::ConstantAggregateZero>(Elts))
108 return 0;
109
110 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
111}
112
Chris Lattner9b655512007-08-31 22:49:20 +0000113
Reid Spencer5f016e22007-07-11 17:01:13 +0000114//===----------------------------------------------------------------------===//
115// LValue Expression Emission
116//===----------------------------------------------------------------------===//
117
Daniel Dunbar13e81732009-02-05 07:09:07 +0000118RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
119 if (Ty->isVoidType()) {
120 return RValue::get(0);
121 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000122 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
123 llvm::Value *U = llvm::UndefValue::get(EltTy);
124 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbar13e81732009-02-05 07:09:07 +0000125 } else if (hasAggregateLLVMType(Ty)) {
126 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
127 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000128 } else {
Daniel Dunbar13e81732009-02-05 07:09:07 +0000129 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000130 }
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000131}
132
Daniel Dunbar13e81732009-02-05 07:09:07 +0000133RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
134 const char *Name) {
135 ErrorUnsupported(E, Name);
136 return GetUndefRValue(E->getType());
137}
138
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000139LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
140 const char *Name) {
141 ErrorUnsupported(E, Name);
142 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
143 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000144 E->getType().getCVRQualifiers(),
145 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000146}
147
Reid Spencer5f016e22007-07-11 17:01:13 +0000148/// EmitLValue - Emit code to compute a designator that specifies the location
149/// of the expression.
150///
151/// This can return one of two things: a simple address or a bitfield
152/// reference. In either case, the LLVM Value* in the LValue structure is
153/// guaranteed to be an LLVM pointer type.
154///
155/// If this returns a bitfield reference, nothing about the pointee type of
156/// the LLVM value is known: For example, it may not be a pointer to an
157/// integer.
158///
159/// If this returns a normal address, and if the lvalue's C type is fixed
160/// size, this method guarantees that the returned pointer type will point to
161/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
162/// variable length type, this is not possible.
163///
164LValue CodeGenFunction::EmitLValue(const Expr *E) {
165 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000166 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000167
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000168 case Expr::BinaryOperatorClass:
169 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregorb4609802008-11-14 16:09:21 +0000170 case Expr::CallExprClass:
171 case Expr::CXXOperatorCallExprClass:
172 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000173 case Expr::VAArgExprClass:
174 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000175 case Expr::DeclRefExprClass:
176 case Expr::QualifiedDeclRefExprClass:
177 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000179 case Expr::PredefinedExprClass:
180 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000181 case Expr::StringLiteralClass:
182 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000183 case Expr::ObjCEncodeExprClass:
184 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000185
Mike Stumpa99038c2009-02-28 09:07:16 +0000186 case Expr::BlockDeclRefExprClass:
187 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
188
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000189 case Expr::CXXConditionDeclExprClass:
190 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
191
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000192 case Expr::ObjCMessageExprClass:
193 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000194 case Expr::ObjCIvarRefExprClass:
195 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000196 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000197 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000198 case Expr::ObjCKVCRefExprClass:
199 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000200 case Expr::ObjCSuperExprClass:
Chris Lattner65459942009-04-25 19:35:26 +0000201 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000202
Chris Lattner65459942009-04-25 19:35:26 +0000203 case Expr::StmtExprClass:
204 return EmitStmtExprLValue(cast<StmtExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000205 case Expr::UnaryOperatorClass:
206 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
207 case Expr::ArraySubscriptExprClass:
208 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000209 case Expr::ExtVectorElementExprClass:
210 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000211 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000212 case Expr::CompoundLiteralExprClass:
213 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbar90345582009-03-24 02:38:23 +0000214 case Expr::ConditionalOperatorClass:
215 return EmitConditionalOperator(cast<ConditionalOperator>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000216 case Expr::ChooseExprClass:
Eli Friedman79769322009-03-04 05:52:32 +0000217 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattnerc3953a62009-03-18 04:02:57 +0000218 case Expr::ImplicitCastExprClass:
219 case Expr::CStyleCastExprClass:
220 case Expr::CXXFunctionalCastExprClass:
221 case Expr::CXXStaticCastExprClass:
222 case Expr::CXXDynamicCastExprClass:
223 case Expr::CXXReinterpretCastExprClass:
224 case Expr::CXXConstCastExprClass:
Chris Lattner75dfeda2009-03-18 18:28:57 +0000225 return EmitCastLValue(cast<CastExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000226 }
227}
228
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000229llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
230 QualType Ty) {
231 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
232
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000233 // Bool can have different representation in memory than in registers.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000234 if (Ty->isBooleanType())
235 if (V->getType() != llvm::Type::Int1Ty)
236 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
237
238 return V;
239}
240
241void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000242 bool Volatile, QualType Ty) {
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000243
244 if (Ty->isBooleanType()) {
245 // Bool can have different representation in memory than in registers.
246 const llvm::Type *SrcTy = Value->getType();
247 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
248 if (DstPtr->getElementType() != SrcTy) {
249 const llvm::Type *MemTy =
250 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
251 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
252 }
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000253 }
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000254
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000255 Builder.CreateStore(Value, Addr, Volatile);
256}
257
Reid Spencer5f016e22007-07-11 17:01:13 +0000258/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
259/// this method emits the address of the lvalue, then loads the result as an
260/// rvalue, returning the rvalue.
261RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000262 if (LV.isObjCWeak()) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000263 // load of a __weak object.
264 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000265 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000266 AddrWeakObj);
267 return RValue::get(read_weak);
268 }
269
Reid Spencer5f016e22007-07-11 17:01:13 +0000270 if (LV.isSimple()) {
271 llvm::Value *Ptr = LV.getAddress();
272 const llvm::Type *EltTy =
273 cast<llvm::PointerType>(Ptr->getType())->getElementType();
274
275 // Simple scalar l-value.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000276 if (EltTy->isSingleValueType())
277 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
278 ExprType));
Reid Spencer5f016e22007-07-11 17:01:13 +0000279
Chris Lattner883f6a72007-08-11 00:04:45 +0000280 assert(ExprType->isFunctionType() && "Unknown scalar value");
281 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000282 }
283
284 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000285 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
286 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000287 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
288 "vecext"));
289 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000290
291 // If this is a reference to a subset of the elements of a vector, either
292 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000293 if (LV.isExtVectorElt())
294 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000295
296 if (LV.isBitfield())
297 return EmitLoadOfBitfieldLValue(LV, ExprType);
298
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000299 if (LV.isPropertyRef())
300 return EmitLoadOfPropertyRefLValue(LV, ExprType);
301
Chris Lattner73525de2009-02-16 21:11:58 +0000302 assert(LV.isKVCRef() && "Unknown LValue type!");
303 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000304}
305
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000306RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
307 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000308 unsigned StartBit = LV.getBitfieldStartBit();
309 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000310 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000311
312 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000313 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000314 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000315
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000316 // In some cases the bitfield may straddle two memory locations.
317 // Currently we load the entire bitfield, then do the magic to
318 // sign-extend it if necessary. This results in somewhat more code
319 // than necessary for the common case (one load), since two shifts
320 // accomplish both the masking and sign extension.
321 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
322 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
323
324 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000325 if (StartBit)
326 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
327 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000328
329 // Mask off unused bits.
330 llvm::Constant *LowMask =
331 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
332 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
333
334 // Fetch the high bits if necessary.
335 if (LowBits < BitfieldSize) {
336 unsigned HighBits = BitfieldSize - LowBits;
337 llvm::Value *HighPtr =
338 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
339 "bf.ptr.hi");
340 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
341 LV.isVolatileQualified(),
342 "tmp");
343
344 // Mask off unused bits.
345 llvm::Constant *HighMask =
346 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
347 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000348
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000349 // Shift to proper location and or in to bitfield value.
350 HighVal = Builder.CreateShl(HighVal,
351 llvm::ConstantInt::get(EltTy, LowBits));
352 Val = Builder.CreateOr(Val, HighVal, "bf.val");
353 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000354
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000355 // Sign extend if necessary.
356 if (LV.isBitfieldSigned()) {
357 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
358 EltTySize - BitfieldSize);
359 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
360 ExtraBits, "bf.val.sext");
361 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000362
363 // The bitfield type and the normal type differ when the storage sizes
364 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000365 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000366
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000367 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000368}
369
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000370RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
371 QualType ExprType) {
372 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
373}
374
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000375RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
376 QualType ExprType) {
377 return EmitObjCPropertyGet(LV.getKVCRefExpr());
378}
379
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000380// If this is a reference to a subset of the elements of a vector, create an
381// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000382RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
383 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000384 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
385 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000386
Nate Begeman8a997642008-05-09 06:41:27 +0000387 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000388
389 // If the result of the expression is a non-vector type, we must be
390 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000391 const VectorType *ExprVT = ExprType->getAsVectorType();
392 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000393 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000394 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
395 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
396 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000397
398 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000399 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000400
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000401 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000402 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000403 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000404 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000405 }
406
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000407 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
408 Vec = Builder.CreateShuffleVector(Vec,
409 llvm::UndefValue::get(Vec->getType()),
410 MaskV, "tmp");
411 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000412}
413
414
Reid Spencer5f016e22007-07-11 17:01:13 +0000415
416/// EmitStoreThroughLValue - Store the specified rvalue into the specified
417/// lvalue, where both are guaranteed to the have the same type, and that type
418/// is 'Ty'.
419void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
420 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000421 if (!Dst.isSimple()) {
422 if (Dst.isVectorElt()) {
423 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000424 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
425 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000426 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000427 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000428 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000429 return;
430 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000431
Nate Begeman213541a2008-04-18 23:10:10 +0000432 // If this is an update of extended vector elements, insert them as
433 // appropriate.
434 if (Dst.isExtVectorElt())
435 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000436
437 if (Dst.isBitfield())
438 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
439
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000440 if (Dst.isPropertyRef())
441 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
442
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000443 if (Dst.isKVCRef())
444 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
445
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000446 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000447 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000448
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000449 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000450 // load of a __weak object.
451 llvm::Value *LvalueDst = Dst.getAddress();
452 llvm::Value *src = Src.getScalarVal();
Mike Stumpf33651c2009-04-14 00:57:29 +0000453 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000454 return;
455 }
456
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000457 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000458 // load of a __strong object.
459 llvm::Value *LvalueDst = Dst.getAddress();
460 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000461#if 0
Mike Stumpf5408fe2009-05-16 07:57:57 +0000462 // FIXME. We cannot positively determine if we have an 'ivar' assignment,
463 // object assignment or an unknown assignment. For now, generate call to
464 // objc_assign_strongCast assignment which is a safe, but consevative
465 // assumption.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000466 if (Dst.isObjCIvar())
467 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
468 else
469 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000470#endif
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000471 if (Dst.isGlobalObjCRef())
472 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
473 else
474 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000475 return;
476 }
477
Chris Lattner883f6a72007-08-11 00:04:45 +0000478 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000479 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
480 Dst.isVolatileQualified(), Ty);
Reid Spencer5f016e22007-07-11 17:01:13 +0000481}
482
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000483void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000484 QualType Ty,
485 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000486 unsigned StartBit = Dst.getBitfieldStartBit();
487 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000488 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000489
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000490 const llvm::Type *EltTy =
491 cast<llvm::PointerType>(Ptr->getType())->getElementType();
492 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
493
494 // Get the new value, cast to the appropriate type and masked to
495 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000496 llvm::Value *SrcVal = Src.getScalarVal();
497 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000498 llvm::Constant *Mask =
499 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
500 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000501
Daniel Dunbared3849b2008-11-19 09:36:46 +0000502 // Return the new value of the bit-field, if requested.
503 if (Result) {
504 // Cast back to the proper type for result.
505 const llvm::Type *SrcTy = SrcVal->getType();
506 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
507 "bf.reload.val");
508
509 // Sign extend if necessary.
510 if (Dst.isBitfieldSigned()) {
511 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
512 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
513 SrcTySize - BitfieldSize);
514 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
515 ExtraBits, "bf.reload.sext");
516 }
517
518 *Result = SrcTrunc;
519 }
520
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000521 // In some cases the bitfield may straddle two memory locations.
522 // Emit the low part first and check to see if the high needs to be
523 // done.
524 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
525 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
526 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000527
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000528 // Compute the mask for zero-ing the low part of this bitfield.
529 llvm::Constant *InvMask =
530 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
531 StartBit + LowBits));
532
533 // Compute the new low part as
534 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
535 // with the shift of NewVal implicitly stripping the high bits.
536 llvm::Value *NewLowVal =
537 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
538 "bf.value.lo");
539 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
540 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
541
542 // Write back.
543 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000544
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000545 // If the low part doesn't cover the bitfield emit a high part.
546 if (LowBits < BitfieldSize) {
547 unsigned HighBits = BitfieldSize - LowBits;
548 llvm::Value *HighPtr =
549 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
550 "bf.ptr.hi");
551 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
552 Dst.isVolatileQualified(),
553 "bf.prev.hi");
554
555 // Compute the mask for zero-ing the high part of this bitfield.
556 llvm::Constant *InvMask =
557 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
558
559 // Compute the new high part as
560 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
561 // where the high bits of NewVal have already been cleared and the
562 // shift stripping the low bits.
563 llvm::Value *NewHighVal =
564 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
565 "bf.value.high");
566 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
567 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
568
569 // Write back.
570 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
571 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000572}
573
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000574void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
575 LValue Dst,
576 QualType Ty) {
577 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
578}
579
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000580void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
581 LValue Dst,
582 QualType Ty) {
583 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
584}
585
Nate Begeman213541a2008-04-18 23:10:10 +0000586void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
587 LValue Dst,
588 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000589 // This access turns into a read/modify/write of the vector. Load the input
590 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000591 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
592 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000593 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000594
Chris Lattner9b655512007-08-31 22:49:20 +0000595 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000596
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000597 if (const VectorType *VTy = Ty->getAsVectorType()) {
598 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000599 unsigned NumDstElts =
600 cast<llvm::VectorType>(Vec->getType())->getNumElements();
601 if (NumDstElts == NumSrcElts) {
602 // Use shuffle vector is the src and destination are the same number
603 // of elements
604 llvm::SmallVector<llvm::Constant*, 4> Mask;
605 for (unsigned i = 0; i != NumSrcElts; ++i) {
606 unsigned InIdx = getAccessedFieldNo(i, Elts);
607 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
608 }
609
610 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
611 Vec = Builder.CreateShuffleVector(SrcVal,
612 llvm::UndefValue::get(Vec->getType()),
613 MaskV, "tmp");
614 }
615 else if (NumDstElts > NumSrcElts) {
616 // Extended the source vector to the same length and then shuffle it
617 // into the destination.
618 // FIXME: since we're shuffling with undef, can we just use the indices
619 // into that? This could be simpler.
620 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
621 unsigned i;
622 for (i = 0; i != NumSrcElts; ++i)
623 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
624 for (; i != NumDstElts; ++i)
625 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
626 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
627 ExtMask.size());
Daniel Dunbarbb767732009-02-17 18:31:04 +0000628 llvm::Value *ExtSrcVal =
629 Builder.CreateShuffleVector(SrcVal,
630 llvm::UndefValue::get(SrcVal->getType()),
631 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000632 // build identity
633 llvm::SmallVector<llvm::Constant*, 4> Mask;
634 for (unsigned i = 0; i != NumDstElts; ++i) {
635 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
636 }
637 // modify when what gets shuffled in
638 for (unsigned i = 0; i != NumSrcElts; ++i) {
639 unsigned Idx = getAccessedFieldNo(i, Elts);
640 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
641 }
642 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
643 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
644 }
645 else {
646 // We should never shorten the vector
647 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000648 }
649 } else {
650 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000651 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000652 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
653 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000654 }
655
Eli Friedman1e692ac2008-06-13 23:01:12 +0000656 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000657}
658
Reid Spencer5f016e22007-07-11 17:01:13 +0000659LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000660 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
661
Chris Lattner41110242008-06-17 18:05:57 +0000662 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
663 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000664 LValue LV;
Mike Stumpaa771a82009-04-14 18:24:37 +0000665 bool GCable = VD->hasLocalStorage() && !VD->hasAttr<BlocksAttr>();
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000666 if (VD->hasExternalStorage()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000667 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
668 if (VD->getType()->isReferenceType())
669 V = Builder.CreateLoad(V, "tmp");
670 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000671 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000672 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000673 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000674 llvm::Value *V = LocalDeclMap[VD];
Mike Stumpa99038c2009-02-28 09:07:16 +0000675 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000676 // local variables do not get their gc attribute set.
677 QualType::GCAttrTypes attr = QualType::GCNone;
678 // local static?
Mike Stumpf33651c2009-04-14 00:57:29 +0000679 if (!GCable)
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000680 attr = getContext().getObjCGCAttrKind(E->getType());
Daniel Dunbarb11fa0d2009-04-13 21:08:27 +0000681 if (VD->hasAttr<BlocksAttr>()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000682 bool needsCopyDispose = BlockRequiresCopying(VD->getType());
683 const llvm::Type *PtrStructTy = V->getType();
684 const llvm::Type *Ty = PtrStructTy;
685 Ty = llvm::PointerType::get(Ty, 0);
686 V = Builder.CreateStructGEP(V, 1, "forwarding");
687 V = Builder.CreateBitCast(V, Ty);
688 V = Builder.CreateLoad(V, false);
689 V = Builder.CreateBitCast(V, PtrStructTy);
690 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
691 }
Anders Carlssonc8667a82009-05-19 20:40:02 +0000692 if (VD->getType()->isReferenceType())
693 V = Builder.CreateLoad(V, "tmp");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000694 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000695 }
Mike Stumpf33651c2009-04-14 00:57:29 +0000696 LValue::SetObjCNonGC(LV, GCable);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000697 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000698 } else if (VD && VD->isFileVarDecl()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000699 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
700 if (VD->getType()->isReferenceType())
701 V = Builder.CreateLoad(V, "tmp");
702 LValue LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000703 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000704 if (LV.isObjCStrong())
705 LV.SetGlobalObjCRef(LV, true);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000706 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000707 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000708 return LValue::MakeAddr(CGM.GetAddrOfFunction(GlobalDecl(FD)),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000709 E->getType().getCVRQualifiers(),
710 getContext().getObjCGCAttrKind(E->getType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000711 }
Chris Lattner41110242008-06-17 18:05:57 +0000712 else if (const ImplicitParamDecl *IPD =
713 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
714 llvm::Value *V = LocalDeclMap[IPD];
715 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000716 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
717 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000718 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000719 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000720 //an invalid LValue, but the assert will
721 //ensure that this point is never reached.
722 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000723}
724
Mike Stumpa99038c2009-02-28 09:07:16 +0000725LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
726 return LValue::MakeAddr(GetAddrOfBlockDecl(E), 0);
727}
728
Reid Spencer5f016e22007-07-11 17:01:13 +0000729LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
730 // __extension__ doesn't affect lvalue-ness.
731 if (E->getOpcode() == UnaryOperator::Extension)
732 return EmitLValue(E->getSubExpr());
733
Chris Lattner96196622008-07-26 22:37:01 +0000734 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000735 switch (E->getOpcode()) {
736 default: assert(0 && "Unknown unary operator lvalue!");
737 case UnaryOperator::Deref:
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000738 {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000739 QualType T =
740 E->getSubExpr()->getType()->getAsPointerType()->getPointeeType();
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000741 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
742 ExprTy->getAsPointerType()->getPointeeType()
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000743 .getCVRQualifiers(),
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000744 getContext().getObjCGCAttrKind(T));
745 // We should not generate __weak write barrier on indirect reference
746 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
747 // But, we continue to generate __strong write barrier on indirect write
748 // into a pointer to object.
749 if (getContext().getLangOptions().ObjC1 &&
750 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
751 LV.isObjCWeak())
752 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
753 return LV;
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000754 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000755 case UnaryOperator::Real:
756 case UnaryOperator::Imag:
757 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000758 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
759 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000760 Idx, "idx"),
761 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000762 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000763}
764
765LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000766 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000767}
768
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000769LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
770 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
771}
772
773
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000774LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000775 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000776
777 switch (Type) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000778 default:
779 assert(0 && "Invalid type");
780 case PredefinedExpr::Func:
781 GlobalVarName = "__func__.";
782 break;
783 case PredefinedExpr::Function:
784 GlobalVarName = "__FUNCTION__.";
785 break;
786 case PredefinedExpr::PrettyFunction:
787 // FIXME:: Demangle C++ method names
788 GlobalVarName = "__PRETTY_FUNCTION__.";
789 break;
Anders Carlsson22742662007-07-21 05:21:51 +0000790 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000791
Chris Lattnerb5437d22009-04-23 05:30:27 +0000792 // FIXME: This isn't right at all. The logic for computing this should go
793 // into a method on PredefinedExpr. This would allow sema and codegen to be
794 // consistent for things like sizeof(__func__) etc.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000795 std::string FunctionName;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000796 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
Douglas Gregor6ec36682009-02-18 23:53:56 +0000797 FunctionName = CGM.getMangledName(FD);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000798 } else {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000799 // Just get the mangled name; skipping the asm prefix if it
800 // exists.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000801 FunctionName = CurFn->getName();
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000802 if (FunctionName[0] == '\01')
803 FunctionName = FunctionName.substr(1, std::string::npos);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000804 }
805
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000806 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000807 llvm::Constant *C =
808 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
809 return LValue::MakeAddr(C, 0);
810}
811
812LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
813 switch (E->getIdentType()) {
814 default:
815 return EmitUnsupportedLValue(E, "predefined expression");
816 case PredefinedExpr::Func:
817 case PredefinedExpr::Function:
818 case PredefinedExpr::PrettyFunction:
819 return EmitPredefinedFunctionName(E->getIdentType());
820 }
Anders Carlsson22742662007-07-21 05:21:51 +0000821}
822
Reid Spencer5f016e22007-07-11 17:01:13 +0000823LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000824 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000825 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000826
827 // If the base is a vector type, then we are forming a vector element lvalue
828 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000829 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000830 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000831 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000832 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000833 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000834 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
835 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000836 }
837
Ted Kremenek23245122007-08-20 16:18:38 +0000838 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000839 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000840
Ted Kremenek23245122007-08-20 16:18:38 +0000841 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000842 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000843 bool IdxSigned = IdxTy->isSignedIntegerType();
844 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta7cabee52009-04-24 02:40:57 +0000845 if (IdxBitwidth != LLVMPointerWidth)
846 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
Reid Spencer5f016e22007-07-11 17:01:13 +0000847 IdxSigned, "idxprom");
848
Daniel Dunbar2a866252009-04-25 05:08:32 +0000849 // We know that the pointer points to a type of the correct size,
850 // unless the size is a VLA or Objective-C interface.
851 llvm::Value *Address = 0;
Anders Carlsson8b33c082008-12-21 00:11:23 +0000852 if (const VariableArrayType *VAT =
853 getContext().getAsVariableArrayType(E->getType())) {
854 llvm::Value *VLASize = VLASizeMap[VAT];
855
856 Idx = Builder.CreateMul(Idx, VLASize);
857
Anders Carlsson6183a992008-12-21 03:44:36 +0000858 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000859
860 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
861 Idx = Builder.CreateUDiv(Idx,
862 llvm::ConstantInt::get(Idx->getType(),
863 BaseTypeSize));
Daniel Dunbar2a866252009-04-25 05:08:32 +0000864 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
865 } else if (const ObjCInterfaceType *OIT =
866 dyn_cast<ObjCInterfaceType>(E->getType())) {
867 llvm::Value *InterfaceSize =
868 llvm::ConstantInt::get(Idx->getType(),
869 getContext().getTypeSize(OIT) / 8);
870
871 Idx = Builder.CreateMul(Idx, InterfaceSize);
872
873 llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
874 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
875 Idx, "arrayidx");
876 Address = Builder.CreateBitCast(Address, Base->getType());
877 } else {
878 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
Anders Carlsson8b33c082008-12-21 00:11:23 +0000879 }
880
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000881 QualType T = E->getBase()->getType()->getAsPointerType()->getPointeeType();
Daniel Dunbar2a866252009-04-25 05:08:32 +0000882 LValue LV = LValue::MakeAddr(Address,
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000883 T.getCVRQualifiers(),
884 getContext().getObjCGCAttrKind(T));
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000885 if (getContext().getLangOptions().ObjC1 &&
886 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000887 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000888 return LV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000889}
890
Nate Begeman3b8d1162008-05-13 21:03:02 +0000891static
892llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
893 llvm::SmallVector<llvm::Constant *, 4> CElts;
894
895 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
896 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
897
898 return llvm::ConstantVector::get(&CElts[0], CElts.size());
899}
900
Chris Lattner349aaec2007-08-02 23:37:31 +0000901LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000902EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000903 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +0000904 LValue Base;
905
906 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +0000907 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +0000908 assert(E->getBase()->getType()->isVectorType());
909 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +0000910 } else {
911 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
912 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
913 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner73525de2009-02-16 21:11:58 +0000914 }
Chris Lattner349aaec2007-08-02 23:37:31 +0000915
Nate Begeman3b8d1162008-05-13 21:03:02 +0000916 // Encode the element access list into a vector of unsigned indices.
917 llvm::SmallVector<unsigned, 4> Indices;
918 E->getEncodedElementAccess(Indices);
919
920 if (Base.isSimple()) {
921 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000922 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000923 Base.getQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000924 }
925 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
926
927 llvm::Constant *BaseElts = Base.getExtVectorElts();
928 llvm::SmallVector<llvm::Constant *, 4> CElts;
929
930 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
931 if (isa<llvm::ConstantAggregateZero>(BaseElts))
932 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
933 else
934 CElts.push_back(BaseElts->getOperand(Indices[i]));
935 }
936 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000937 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000938 Base.getQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000939}
940
Devang Patelb9b00ad2007-10-23 20:28:39 +0000941LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000942 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000943 bool isIvar = false;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000944 bool isNonGC = false;
Devang Patel126a8562007-10-24 22:26:28 +0000945 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000946 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000947 unsigned CVRQualifiers=0;
948
Chris Lattner12f65f62007-12-02 18:52:07 +0000949 // 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 +0000950 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000951 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000952 const PointerType *PTy =
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000953 BaseExpr->getType()->getAsPointerType();
Devang Patelfe2419a2007-12-11 21:33:16 +0000954 if (PTy->getPointeeType()->isUnionType())
955 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000956 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000957 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
958 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +0000959 RValue RV = EmitObjCPropertyGet(BaseExpr);
960 BaseValue = RV.getAggregateAddr();
961 if (BaseExpr->getType()->isUnionType())
962 isUnion = true;
963 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000964 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +0000965 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000966 if (BaseLV.isObjCIvar())
967 isIvar = true;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000968 if (BaseLV.isNonGC())
969 isNonGC = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000970 // FIXME: this isn't right for bitfields.
971 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000972 if (BaseExpr->getType()->isUnionType())
973 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000974 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000975 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000976
Douglas Gregor86f19402008-12-20 23:49:58 +0000977 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
978 // FIXME: Handle non-field member expressions
979 assert(Field && "No code generation for non-field member references");
Chris Lattner1bd885e2009-02-16 22:25:49 +0000980 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
981 CVRQualifiers);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000982 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000983 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000984 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +0000985}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000986
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000987LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
988 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000989 unsigned CVRQualifiers) {
Daniel Dunbarbb767732009-02-17 18:31:04 +0000990 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Mike Stumpf5408fe2009-05-16 07:57:57 +0000991 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
992 // FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbarbb767732009-02-17 18:31:04 +0000993 const llvm::Type *FieldTy =
994 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000995 const llvm::PointerType *BaseTy =
996 cast<llvm::PointerType>(BaseValue->getType());
997 unsigned AS = BaseTy->getAddressSpace();
998 BaseValue = Builder.CreateBitCast(BaseValue,
999 llvm::PointerType::get(FieldTy, AS),
1000 "tmp");
1001 llvm::Value *V = Builder.CreateGEP(BaseValue,
1002 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
1003 "tmp");
1004
1005 CodeGenTypes::BitFieldInfo bitFieldInfo =
1006 CGM.getTypes().getBitFieldInfo(Field);
1007 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
1008 Field->getType()->isSignedIntegerType(),
1009 Field->getType().getCVRQualifiers()|CVRQualifiers);
1010}
1011
Eli Friedman472778e2008-02-09 08:50:58 +00001012LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
1013 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +00001014 bool isUnion,
1015 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +00001016{
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001017 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001018 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +00001019
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001020 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001021 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +00001022
Devang Patelabad06c2007-10-26 19:42:18 +00001023 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +00001024 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +00001025 const llvm::Type *FieldTy =
1026 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +00001027 const llvm::PointerType * BaseTy =
1028 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +00001029 unsigned AS = BaseTy->getAddressSpace();
1030 V = Builder.CreateBitCast(V,
1031 llvm::PointerType::get(FieldTy, AS),
1032 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +00001033 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +00001034
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001035 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001036 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001037 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1038 QualType Ty = Field->getType();
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001039 attr = Ty.getObjCGCAttr();
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001040 if (attr != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001041 // __weak attribute on a field is ignored.
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001042 if (attr == QualType::Weak)
1043 attr = QualType::GCNone;
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001044 }
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001045 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001046 attr = QualType::Strong;
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001047 }
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001048 LValue LV =
1049 LValue::MakeAddr(V,
1050 Field->getType().getCVRQualifiers()|CVRQualifiers,
1051 attr);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +00001052 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +00001053}
1054
Chris Lattner75dfeda2009-03-18 18:28:57 +00001055LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman06e863f2008-05-13 23:18:27 +00001056 const llvm::Type *LTy = ConvertType(E->getType());
1057 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1058
1059 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +00001060 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +00001061
1062 if (E->getType()->isComplexType()) {
1063 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1064 } else if (hasAggregateLLVMType(E->getType())) {
1065 EmitAnyExpr(InitExpr, DeclPtr, false);
1066 } else {
1067 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1068 }
1069
1070 return Result;
1071}
1072
Daniel Dunbar90345582009-03-24 02:38:23 +00001073LValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator* E) {
1074 // We don't handle vectors yet.
1075 if (E->getType()->isVectorType())
1076 return EmitUnsupportedLValue(E, "conditional operator");
1077
1078 // ?: here should be an aggregate.
1079 assert((hasAggregateLLVMType(E->getType()) &&
1080 !E->getType()->isAnyComplexType()) &&
1081 "Unexpected conditional operator!");
1082
1083 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1084 EmitAggExpr(E, Temp, false);
1085
1086 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1087 getContext().getObjCGCAttrKind(E->getType()));
1088
1089}
1090
Chris Lattner75dfeda2009-03-18 18:28:57 +00001091/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1092/// generator in an lvalue context, then it must mean that we need the address
1093/// of an aggregate in order to access one of its fields. This can happen for
1094/// all the reasons that casts are permitted with aggregate result, including
1095/// noop aggregate casts, and cast from scalar to union.
1096LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
1097 // If this is an aggregate-to-aggregate cast, just use the input's address as
1098 // the lvalue.
1099 if (getContext().hasSameUnqualifiedType(E->getType(),
1100 E->getSubExpr()->getType()))
1101 return EmitLValue(E->getSubExpr());
1102
1103 // Otherwise, we must have a cast from scalar to union.
1104 assert(E->getType()->isUnionType() && "Expected scalar-to-union cast");
1105
1106 // Casts are only lvalues when the source and destination types are the same.
1107 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
Chris Lattner40f92922009-03-18 18:30:44 +00001108 EmitAnyExpr(E->getSubExpr(), Temp, false);
Chris Lattner75dfeda2009-03-18 18:28:57 +00001109
1110 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1111 getContext().getObjCGCAttrKind(E->getType()));
1112}
1113
Reid Spencer5f016e22007-07-11 17:01:13 +00001114//===--------------------------------------------------------------------===//
1115// Expression Emission
1116//===--------------------------------------------------------------------===//
1117
Chris Lattner7016a702007-08-20 22:37:10 +00001118
Reid Spencer5f016e22007-07-11 17:01:13 +00001119RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001120 // Builtins never have block type.
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001121 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +00001122 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001123
Anders Carlsson774e7c62009-04-03 22:50:24 +00001124 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1125 return EmitCXXMemberCallExpr(CE);
1126
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001127 const Decl *TargetDecl = 0;
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001128 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1129 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1130 TargetDecl = DRE->getDecl();
1131 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1132 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1133 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001134 }
1135 }
1136
Chris Lattner7f02f722007-08-24 05:35:26 +00001137 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +00001138 return EmitCallExpr(Callee, E->getCallee()->getType(),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001139 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattnerc5e940f2007-08-31 04:44:06 +00001140}
1141
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001142LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattner7a574cc2009-05-12 21:28:12 +00001143 // Comma expressions just emit their LHS then their RHS as an l-value.
1144 if (E->getOpcode() == BinaryOperator::Comma) {
1145 EmitAnyExpr(E->getLHS());
1146 return EmitLValue(E->getRHS());
1147 }
1148
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001149 // Can only get l-value for binary operator expressions which are a
1150 // simple assignment of aggregate type.
1151 if (E->getOpcode() != BinaryOperator::Assign)
1152 return EmitUnsupportedLValue(E, "binary l-value expression");
1153
1154 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1155 EmitAggExpr(E, Temp, false);
1156 // FIXME: Are these qualifiers correct?
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001157 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1158 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001159}
1160
Christopher Lamb22c940e2007-12-29 05:02:41 +00001161LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
1162 // Can only get l-value for call expression returning aggregate type
1163 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +00001164 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001165 E->getType().getCVRQualifiers(),
1166 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lamb22c940e2007-12-29 05:02:41 +00001167}
1168
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001169LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1170 // FIXME: This shouldn't require another copy.
1171 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1172 EmitAggExpr(E, Temp, false);
1173 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1174}
1175
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001176LValue
1177CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1178 EmitLocalBlockVarDecl(*E->getVarDecl());
1179 return EmitDeclRefLValue(E);
1180}
1181
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001182LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1183 // Can only get l-value for message expression returning aggregate type
1184 RValue RV = EmitObjCMessageExpr(E);
1185 // FIXME: can this be volatile?
1186 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001187 E->getType().getCVRQualifiers(),
1188 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001189}
1190
Daniel Dunbar2a031922009-04-22 05:08:15 +00001191llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001192 const ObjCIvarDecl *Ivar) {
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001193 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001194}
1195
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001196LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1197 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001198 const ObjCIvarDecl *Ivar,
1199 unsigned CVRQualifiers) {
Chris Lattner26f074b2009-04-17 17:44:48 +00001200 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001201 Ivar, CVRQualifiers);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001202}
1203
1204LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001205 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1206 llvm::Value *BaseValue = 0;
1207 const Expr *BaseExpr = E->getBase();
1208 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001209 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001210 if (E->isArrow()) {
1211 BaseValue = EmitScalarExpr(BaseExpr);
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +00001212 const PointerType *PTy = BaseExpr->getType()->getAsPointerType();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001213 ObjectTy = PTy->getPointeeType();
1214 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001215 } else {
1216 LValue BaseLV = EmitLValue(BaseExpr);
1217 // FIXME: this isn't right for bitfields.
1218 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001219 ObjectTy = BaseExpr->getType();
1220 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001221 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001222
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001223 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001224}
1225
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001226LValue
1227CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1228 // This is a special l-value that just issues sends when we load or
1229 // store through it.
1230 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1231}
1232
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001233LValue
1234CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1235 // This is a special l-value that just issues sends when we load or
1236 // store through it.
1237 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1238}
1239
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001240LValue
Chris Lattner65459942009-04-25 19:35:26 +00001241CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001242 return EmitUnsupportedLValue(E, "use of super");
1243}
1244
Chris Lattner65459942009-04-25 19:35:26 +00001245LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
1246
1247 // Can only get l-value for message expression returning aggregate type
1248 RValue RV = EmitAnyExprToTemp(E);
1249 // FIXME: can this be volatile?
1250 return LValue::MakeAddr(RV.getAggregateAddr(),
1251 E->getType().getCVRQualifiers(),
1252 getContext().getObjCGCAttrKind(E->getType()));
1253}
1254
1255
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001256RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek55499762008-06-17 02:43:46 +00001257 CallExpr::const_arg_iterator ArgBeg,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001258 CallExpr::const_arg_iterator ArgEnd,
1259 const Decl *TargetDecl) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001260 // Get the actual function type. The callee type will always be a
1261 // pointer to function type or a block pointer type.
Anders Carlsson8ac67a72009-04-07 18:53:02 +00001262 assert(CalleeType->isFunctionPointerType() &&
1263 "Call must have function pointer type!");
1264
1265 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1266 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001267
1268 CallArgList Args;
Anders Carlsson782f3972009-04-08 23:13:16 +00001269 EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001270
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001271 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001272 Callee, Args, TargetDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001273}