blob: b3cf921bc57e36d9be2d53381c25533ee06fdc49 [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) {
32 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
33}
34
35/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
36/// expression and compare the result against zero, returning an Int1Ty value.
37llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000038 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000039 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000040 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000041
Chris Lattner9069fa22007-08-26 16:46:58 +000042 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000043}
44
Chris Lattner9b655512007-08-31 22:49:20 +000045/// EmitAnyExpr - Emit code to compute the specified expression which can have
46/// any type. The result is returned as an RValue struct. If this is an
47/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
48/// the result should be returned.
49RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
50 bool isAggLocVolatile) {
51 if (!hasAggregateLLVMType(E->getType()))
52 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000053 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000054 return RValue::getComplex(EmitComplexExpr(E));
55
56 EmitAggExpr(E, AggLoc, isAggLocVolatile);
57 return RValue::getAggregate(AggLoc);
58}
59
Daniel Dunbar46f45b92008-09-09 01:06:48 +000060/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
61/// will always be accessible even if no aggregate location is
62/// provided.
63RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
64 bool isAggLocVolatile) {
65 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
66 !E->getType()->isAnyComplexType())
67 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
68 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
69}
70
Dan Gohman4f8d1232008-05-22 00:50:06 +000071/// getAccessedFieldNo - Given an encoded value and a result number, return
72/// the input field number being accessed.
73unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
74 const llvm::Constant *Elts) {
75 if (isa<llvm::ConstantAggregateZero>(Elts))
76 return 0;
77
78 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
79}
80
Chris Lattner9b655512007-08-31 22:49:20 +000081
Reid Spencer5f016e22007-07-11 17:01:13 +000082//===----------------------------------------------------------------------===//
83// LValue Expression Emission
84//===----------------------------------------------------------------------===//
85
Daniel Dunbar13e81732009-02-05 07:09:07 +000086RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
87 if (Ty->isVoidType()) {
88 return RValue::get(0);
89 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000090 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
91 llvm::Value *U = llvm::UndefValue::get(EltTy);
92 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbar13e81732009-02-05 07:09:07 +000093 } else if (hasAggregateLLVMType(Ty)) {
94 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
95 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000096 } else {
Daniel Dunbar13e81732009-02-05 07:09:07 +000097 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000098 }
Daniel Dunbarce1d38b2009-01-09 16:50:52 +000099}
100
Daniel Dunbar13e81732009-02-05 07:09:07 +0000101RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
102 const char *Name) {
103 ErrorUnsupported(E, Name);
104 return GetUndefRValue(E->getType());
105}
106
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000107LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
108 const char *Name) {
109 ErrorUnsupported(E, Name);
110 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
111 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000112 E->getType().getCVRQualifiers(),
113 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000114}
115
Reid Spencer5f016e22007-07-11 17:01:13 +0000116/// EmitLValue - Emit code to compute a designator that specifies the location
117/// of the expression.
118///
119/// This can return one of two things: a simple address or a bitfield
120/// reference. In either case, the LLVM Value* in the LValue structure is
121/// guaranteed to be an LLVM pointer type.
122///
123/// If this returns a bitfield reference, nothing about the pointee type of
124/// the LLVM value is known: For example, it may not be a pointer to an
125/// integer.
126///
127/// If this returns a normal address, and if the lvalue's C type is fixed
128/// size, this method guarantees that the returned pointer type will point to
129/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
130/// variable length type, this is not possible.
131///
132LValue CodeGenFunction::EmitLValue(const Expr *E) {
133 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000134 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000135
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000136 case Expr::BinaryOperatorClass:
137 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregorb4609802008-11-14 16:09:21 +0000138 case Expr::CallExprClass:
139 case Expr::CXXOperatorCallExprClass:
140 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000141 case Expr::VAArgExprClass:
142 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000143 case Expr::DeclRefExprClass:
144 case Expr::QualifiedDeclRefExprClass:
145 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000146 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000147 case Expr::PredefinedExprClass:
148 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000149 case Expr::StringLiteralClass:
150 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000151 case Expr::ObjCEncodeExprClass:
152 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000153
Mike Stumpa99038c2009-02-28 09:07:16 +0000154 case Expr::BlockDeclRefExprClass:
155 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
156
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000157 case Expr::CXXConditionDeclExprClass:
158 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
159
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000160 case Expr::ObjCMessageExprClass:
161 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000162 case Expr::ObjCIvarRefExprClass:
163 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000164 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000165 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000166 case Expr::ObjCKVCRefExprClass:
167 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000168 case Expr::ObjCSuperExprClass:
169 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
170
Reid Spencer5f016e22007-07-11 17:01:13 +0000171 case Expr::UnaryOperatorClass:
172 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
173 case Expr::ArraySubscriptExprClass:
174 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000175 case Expr::ExtVectorElementExprClass:
176 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000177 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000178 case Expr::CompoundLiteralExprClass:
179 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000180 case Expr::ChooseExprClass:
Eli Friedman79769322009-03-04 05:52:32 +0000181 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattnerc3953a62009-03-18 04:02:57 +0000182 case Expr::ImplicitCastExprClass:
183 case Expr::CStyleCastExprClass:
184 case Expr::CXXFunctionalCastExprClass:
185 case Expr::CXXStaticCastExprClass:
186 case Expr::CXXDynamicCastExprClass:
187 case Expr::CXXReinterpretCastExprClass:
188 case Expr::CXXConstCastExprClass:
189 // Casts are only lvalues when the source and destination types are the
190 // same.
191 assert(getContext().hasSameUnqualifiedType(E->getType(),
192 cast<CastExpr>(E)->getSubExpr()->getType()) &&
193 "Type changing cast is not an lvalue");
194 return EmitLValue(cast<CastExpr>(E)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +0000195 }
196}
197
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000198llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
199 QualType Ty) {
200 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
201
202 // Bool can have different representation in memory than in
203 // registers.
204 if (Ty->isBooleanType())
205 if (V->getType() != llvm::Type::Int1Ty)
206 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
207
208 return V;
209}
210
211void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
212 bool Volatile) {
213 // Handle stores of types which have different representations in
214 // memory and as LLVM values.
215
216 // FIXME: We shouldn't be this loose, we should only do this
217 // conversion when we have a type we know has a different memory
218 // representation (e.g., bool).
219
220 const llvm::Type *SrcTy = Value->getType();
221 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
222 if (DstPtr->getElementType() != SrcTy) {
223 const llvm::Type *MemTy =
224 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
225 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
226 }
227
228 Builder.CreateStore(Value, Addr, Volatile);
229}
230
Reid Spencer5f016e22007-07-11 17:01:13 +0000231/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
232/// this method emits the address of the lvalue, then loads the result as an
233/// rvalue, returning the rvalue.
234RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000235 if (LV.isObjCWeak()) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000236 // load of a __weak object.
237 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000238 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000239 AddrWeakObj);
240 return RValue::get(read_weak);
241 }
242
Reid Spencer5f016e22007-07-11 17:01:13 +0000243 if (LV.isSimple()) {
244 llvm::Value *Ptr = LV.getAddress();
245 const llvm::Type *EltTy =
246 cast<llvm::PointerType>(Ptr->getType())->getElementType();
247
248 // Simple scalar l-value.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000249 if (EltTy->isSingleValueType())
250 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
251 ExprType));
Reid Spencer5f016e22007-07-11 17:01:13 +0000252
Chris Lattner883f6a72007-08-11 00:04:45 +0000253 assert(ExprType->isFunctionType() && "Unknown scalar value");
254 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000255 }
256
257 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000258 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
259 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000260 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
261 "vecext"));
262 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000263
264 // If this is a reference to a subset of the elements of a vector, either
265 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000266 if (LV.isExtVectorElt())
267 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000268
269 if (LV.isBitfield())
270 return EmitLoadOfBitfieldLValue(LV, ExprType);
271
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000272 if (LV.isPropertyRef())
273 return EmitLoadOfPropertyRefLValue(LV, ExprType);
274
Chris Lattner73525de2009-02-16 21:11:58 +0000275 assert(LV.isKVCRef() && "Unknown LValue type!");
276 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000277}
278
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000279RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
280 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000281 unsigned StartBit = LV.getBitfieldStartBit();
282 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000283 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000284
285 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000286 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000287 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000288
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000289 // In some cases the bitfield may straddle two memory locations.
290 // Currently we load the entire bitfield, then do the magic to
291 // sign-extend it if necessary. This results in somewhat more code
292 // than necessary for the common case (one load), since two shifts
293 // accomplish both the masking and sign extension.
294 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
295 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
296
297 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000298 if (StartBit)
299 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
300 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000301
302 // Mask off unused bits.
303 llvm::Constant *LowMask =
304 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
305 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
306
307 // Fetch the high bits if necessary.
308 if (LowBits < BitfieldSize) {
309 unsigned HighBits = BitfieldSize - LowBits;
310 llvm::Value *HighPtr =
311 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
312 "bf.ptr.hi");
313 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
314 LV.isVolatileQualified(),
315 "tmp");
316
317 // Mask off unused bits.
318 llvm::Constant *HighMask =
319 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
320 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000321
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000322 // Shift to proper location and or in to bitfield value.
323 HighVal = Builder.CreateShl(HighVal,
324 llvm::ConstantInt::get(EltTy, LowBits));
325 Val = Builder.CreateOr(Val, HighVal, "bf.val");
326 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000327
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000328 // Sign extend if necessary.
329 if (LV.isBitfieldSigned()) {
330 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
331 EltTySize - BitfieldSize);
332 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
333 ExtraBits, "bf.val.sext");
334 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000335
336 // The bitfield type and the normal type differ when the storage sizes
337 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000338 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000339
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000340 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000341}
342
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000343RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
344 QualType ExprType) {
345 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
346}
347
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000348RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
349 QualType ExprType) {
350 return EmitObjCPropertyGet(LV.getKVCRefExpr());
351}
352
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000353// If this is a reference to a subset of the elements of a vector, create an
354// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000355RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
356 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000357 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
358 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000359
Nate Begeman8a997642008-05-09 06:41:27 +0000360 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000361
362 // If the result of the expression is a non-vector type, we must be
363 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000364 const VectorType *ExprVT = ExprType->getAsVectorType();
365 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000366 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000367 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
368 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
369 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000370
371 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000372 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000373
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000374 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000375 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000376 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000377 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000378 }
379
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000380 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
381 Vec = Builder.CreateShuffleVector(Vec,
382 llvm::UndefValue::get(Vec->getType()),
383 MaskV, "tmp");
384 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000385}
386
387
Reid Spencer5f016e22007-07-11 17:01:13 +0000388
389/// EmitStoreThroughLValue - Store the specified rvalue into the specified
390/// lvalue, where both are guaranteed to the have the same type, and that type
391/// is 'Ty'.
392void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
393 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000394 if (!Dst.isSimple()) {
395 if (Dst.isVectorElt()) {
396 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000397 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
398 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000399 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000400 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000401 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000402 return;
403 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000404
Nate Begeman213541a2008-04-18 23:10:10 +0000405 // If this is an update of extended vector elements, insert them as
406 // appropriate.
407 if (Dst.isExtVectorElt())
408 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000409
410 if (Dst.isBitfield())
411 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
412
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000413 if (Dst.isPropertyRef())
414 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
415
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000416 if (Dst.isKVCRef())
417 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
418
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000419 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000420 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000421
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000422 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000423 // load of a __weak object.
424 llvm::Value *LvalueDst = Dst.getAddress();
425 llvm::Value *src = Src.getScalarVal();
426 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
427 return;
428 }
429
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000430 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000431 // load of a __strong object.
432 llvm::Value *LvalueDst = Dst.getAddress();
433 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000434#if 0
435 // FIXME. We cannot positively determine if we have an
436 // 'ivar' assignment, object assignment or an unknown
437 // assignment. For now, generate call to objc_assign_strongCast
438 // assignment which is a safe, but consevative assumption.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000439 if (Dst.isObjCIvar())
440 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
441 else
442 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000443#endif
444 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000445 return;
446 }
447
Chris Lattner883f6a72007-08-11 00:04:45 +0000448 assert(Src.isScalar() && "Can't emit an agg store with this method");
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000449 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
450 Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000451}
452
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000453void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000454 QualType Ty,
455 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000456 unsigned StartBit = Dst.getBitfieldStartBit();
457 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000458 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000459
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000460 const llvm::Type *EltTy =
461 cast<llvm::PointerType>(Ptr->getType())->getElementType();
462 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
463
464 // Get the new value, cast to the appropriate type and masked to
465 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000466 llvm::Value *SrcVal = Src.getScalarVal();
467 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000468 llvm::Constant *Mask =
469 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
470 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000471
Daniel Dunbared3849b2008-11-19 09:36:46 +0000472 // Return the new value of the bit-field, if requested.
473 if (Result) {
474 // Cast back to the proper type for result.
475 const llvm::Type *SrcTy = SrcVal->getType();
476 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
477 "bf.reload.val");
478
479 // Sign extend if necessary.
480 if (Dst.isBitfieldSigned()) {
481 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
482 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
483 SrcTySize - BitfieldSize);
484 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
485 ExtraBits, "bf.reload.sext");
486 }
487
488 *Result = SrcTrunc;
489 }
490
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000491 // In some cases the bitfield may straddle two memory locations.
492 // Emit the low part first and check to see if the high needs to be
493 // done.
494 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
495 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
496 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000497
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000498 // Compute the mask for zero-ing the low part of this bitfield.
499 llvm::Constant *InvMask =
500 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
501 StartBit + LowBits));
502
503 // Compute the new low part as
504 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
505 // with the shift of NewVal implicitly stripping the high bits.
506 llvm::Value *NewLowVal =
507 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
508 "bf.value.lo");
509 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
510 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
511
512 // Write back.
513 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000514
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000515 // If the low part doesn't cover the bitfield emit a high part.
516 if (LowBits < BitfieldSize) {
517 unsigned HighBits = BitfieldSize - LowBits;
518 llvm::Value *HighPtr =
519 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
520 "bf.ptr.hi");
521 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
522 Dst.isVolatileQualified(),
523 "bf.prev.hi");
524
525 // Compute the mask for zero-ing the high part of this bitfield.
526 llvm::Constant *InvMask =
527 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
528
529 // Compute the new high part as
530 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
531 // where the high bits of NewVal have already been cleared and the
532 // shift stripping the low bits.
533 llvm::Value *NewHighVal =
534 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
535 "bf.value.high");
536 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
537 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
538
539 // Write back.
540 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
541 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000542}
543
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000544void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
545 LValue Dst,
546 QualType Ty) {
547 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
548}
549
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000550void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
551 LValue Dst,
552 QualType Ty) {
553 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
554}
555
Nate Begeman213541a2008-04-18 23:10:10 +0000556void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
557 LValue Dst,
558 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000559 // This access turns into a read/modify/write of the vector. Load the input
560 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000561 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
562 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000563 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000564
Chris Lattner9b655512007-08-31 22:49:20 +0000565 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000566
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000567 if (const VectorType *VTy = Ty->getAsVectorType()) {
568 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000569 unsigned NumDstElts =
570 cast<llvm::VectorType>(Vec->getType())->getNumElements();
571 if (NumDstElts == NumSrcElts) {
572 // Use shuffle vector is the src and destination are the same number
573 // of elements
574 llvm::SmallVector<llvm::Constant*, 4> Mask;
575 for (unsigned i = 0; i != NumSrcElts; ++i) {
576 unsigned InIdx = getAccessedFieldNo(i, Elts);
577 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
578 }
579
580 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
581 Vec = Builder.CreateShuffleVector(SrcVal,
582 llvm::UndefValue::get(Vec->getType()),
583 MaskV, "tmp");
584 }
585 else if (NumDstElts > NumSrcElts) {
586 // Extended the source vector to the same length and then shuffle it
587 // into the destination.
588 // FIXME: since we're shuffling with undef, can we just use the indices
589 // into that? This could be simpler.
590 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
591 unsigned i;
592 for (i = 0; i != NumSrcElts; ++i)
593 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
594 for (; i != NumDstElts; ++i)
595 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
596 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
597 ExtMask.size());
Daniel Dunbarbb767732009-02-17 18:31:04 +0000598 llvm::Value *ExtSrcVal =
599 Builder.CreateShuffleVector(SrcVal,
600 llvm::UndefValue::get(SrcVal->getType()),
601 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000602 // build identity
603 llvm::SmallVector<llvm::Constant*, 4> Mask;
604 for (unsigned i = 0; i != NumDstElts; ++i) {
605 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
606 }
607 // modify when what gets shuffled in
608 for (unsigned i = 0; i != NumSrcElts; ++i) {
609 unsigned Idx = getAccessedFieldNo(i, Elts);
610 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
611 }
612 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
613 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
614 }
615 else {
616 // We should never shorten the vector
617 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000618 }
619 } else {
620 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000621 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000622 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
623 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000624 }
625
Eli Friedman1e692ac2008-06-13 23:01:12 +0000626 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000627}
628
Reid Spencer5f016e22007-07-11 17:01:13 +0000629LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000630 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
631
Chris Lattner41110242008-06-17 18:05:57 +0000632 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
633 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000634 LValue LV;
635 if (VD->getStorageClass() == VarDecl::Extern) {
636 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000637 E->getType().getCVRQualifiers(),
638 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000639 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000640 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000641 llvm::Value *V = LocalDeclMap[VD];
Mike Stumpa99038c2009-02-28 09:07:16 +0000642 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000643 // local variables do not get their gc attribute set.
644 QualType::GCAttrTypes attr = QualType::GCNone;
645 // local static?
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000646 if (!VD->hasLocalStorage())
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000647 attr = getContext().getObjCGCAttrKind(E->getType());
Mike Stumpdab514f2009-03-04 03:23:46 +0000648 if (VD->getAttr<BlocksAttr>()) {
649 bool needsCopyDispose = BlockRequiresCopying(VD->getType());
650 const llvm::Type *PtrStructTy = V->getType();
651 const llvm::Type *Ty = PtrStructTy;
652 Ty = llvm::PointerType::get(Ty, 0);
653 V = Builder.CreateStructGEP(V, 1, "forwarding");
654 V = Builder.CreateBitCast(V, Ty);
655 V = Builder.CreateLoad(V, false);
656 V = Builder.CreateBitCast(V, PtrStructTy);
657 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
658 }
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000659 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000660 }
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000661 LValue::SetObjCNonGC(LV, VD->hasLocalStorage());
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000662 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000663 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000664 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000665 E->getType().getCVRQualifiers(),
666 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000667 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000668 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000669 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000670 E->getType().getCVRQualifiers(),
671 getContext().getObjCGCAttrKind(E->getType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000672 }
Chris Lattner41110242008-06-17 18:05:57 +0000673 else if (const ImplicitParamDecl *IPD =
674 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
675 llvm::Value *V = LocalDeclMap[IPD];
676 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000677 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
678 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000679 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000680 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000681 //an invalid LValue, but the assert will
682 //ensure that this point is never reached.
683 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000684}
685
Mike Stumpa99038c2009-02-28 09:07:16 +0000686LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
687 return LValue::MakeAddr(GetAddrOfBlockDecl(E), 0);
688}
689
Reid Spencer5f016e22007-07-11 17:01:13 +0000690LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
691 // __extension__ doesn't affect lvalue-ness.
692 if (E->getOpcode() == UnaryOperator::Extension)
693 return EmitLValue(E->getSubExpr());
694
Chris Lattner96196622008-07-26 22:37:01 +0000695 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000696 switch (E->getOpcode()) {
697 default: assert(0 && "Unknown unary operator lvalue!");
698 case UnaryOperator::Deref:
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000699 {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000700 QualType T =
701 E->getSubExpr()->getType()->getAsPointerType()->getPointeeType();
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000702 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
703 ExprTy->getAsPointerType()->getPointeeType()
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000704 .getCVRQualifiers(),
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000705 getContext().getObjCGCAttrKind(T));
706 // We should not generate __weak write barrier on indirect reference
707 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
708 // But, we continue to generate __strong write barrier on indirect write
709 // into a pointer to object.
710 if (getContext().getLangOptions().ObjC1 &&
711 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
712 LV.isObjCWeak())
713 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
714 return LV;
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000715 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000716 case UnaryOperator::Real:
717 case UnaryOperator::Imag:
718 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000719 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
720 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000721 Idx, "idx"),
722 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000723 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000724}
725
726LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000727 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000728}
729
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000730LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
731 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
732}
733
734
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000735LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000736 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000737
738 switch (Type) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000739 default:
740 assert(0 && "Invalid type");
741 case PredefinedExpr::Func:
742 GlobalVarName = "__func__.";
743 break;
744 case PredefinedExpr::Function:
745 GlobalVarName = "__FUNCTION__.";
746 break;
747 case PredefinedExpr::PrettyFunction:
748 // FIXME:: Demangle C++ method names
749 GlobalVarName = "__PRETTY_FUNCTION__.";
750 break;
Anders Carlsson22742662007-07-21 05:21:51 +0000751 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000752
753 std::string FunctionName;
754 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
Douglas Gregor6ec36682009-02-18 23:53:56 +0000755 FunctionName = CGM.getMangledName(FD);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000756 } else {
757 // Just get the mangled name.
758 FunctionName = CurFn->getName();
759 }
760
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000761 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000762 llvm::Constant *C =
763 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
764 return LValue::MakeAddr(C, 0);
765}
766
767LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
768 switch (E->getIdentType()) {
769 default:
770 return EmitUnsupportedLValue(E, "predefined expression");
771 case PredefinedExpr::Func:
772 case PredefinedExpr::Function:
773 case PredefinedExpr::PrettyFunction:
774 return EmitPredefinedFunctionName(E->getIdentType());
775 }
Anders Carlsson22742662007-07-21 05:21:51 +0000776}
777
Reid Spencer5f016e22007-07-11 17:01:13 +0000778LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000779 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000780 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000781
782 // If the base is a vector type, then we are forming a vector element lvalue
783 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000784 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000785 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000786 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000787 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000788 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000789 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
790 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000791 }
792
Ted Kremenek23245122007-08-20 16:18:38 +0000793 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000794 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000795
Ted Kremenek23245122007-08-20 16:18:38 +0000796 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000797 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000798 bool IdxSigned = IdxTy->isSignedIntegerType();
799 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
800 if (IdxBitwidth != LLVMPointerWidth)
801 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
802 IdxSigned, "idxprom");
803
804 // We know that the pointer points to a type of the correct size, unless the
805 // size is a VLA.
Anders Carlsson8b33c082008-12-21 00:11:23 +0000806 if (const VariableArrayType *VAT =
807 getContext().getAsVariableArrayType(E->getType())) {
808 llvm::Value *VLASize = VLASizeMap[VAT];
809
810 Idx = Builder.CreateMul(Idx, VLASize);
811
Anders Carlsson6183a992008-12-21 03:44:36 +0000812 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000813
814 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
815 Idx = Builder.CreateUDiv(Idx,
816 llvm::ConstantInt::get(Idx->getType(),
817 BaseTypeSize));
818 }
819
Fariborz Jahanianc1debf32009-02-19 00:48:05 +0000820 QualType T = E->getBase()->getType();
821 QualType ExprTy = getContext().getCanonicalType(T);
822 T = T->getAsPointerType()->getPointeeType();
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000823 LValue LV =
824 LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Fariborz Jahanianc1debf32009-02-19 00:48:05 +0000825 ExprTy->getAsPointerType()->getPointeeType().getCVRQualifiers(),
826 getContext().getObjCGCAttrKind(T));
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000827 if (getContext().getLangOptions().ObjC1 &&
828 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000829 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000830 return LV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000831}
832
Nate Begeman3b8d1162008-05-13 21:03:02 +0000833static
834llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
835 llvm::SmallVector<llvm::Constant *, 4> CElts;
836
837 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
838 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
839
840 return llvm::ConstantVector::get(&CElts[0], CElts.size());
841}
842
Chris Lattner349aaec2007-08-02 23:37:31 +0000843LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000844EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000845 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +0000846 LValue Base;
847
848 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +0000849 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +0000850 assert(E->getBase()->getType()->isVectorType());
851 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +0000852 } else {
853 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
854 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
855 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner73525de2009-02-16 21:11:58 +0000856 }
Chris Lattner349aaec2007-08-02 23:37:31 +0000857
Nate Begeman3b8d1162008-05-13 21:03:02 +0000858 // Encode the element access list into a vector of unsigned indices.
859 llvm::SmallVector<unsigned, 4> Indices;
860 E->getEncodedElementAccess(Indices);
861
862 if (Base.isSimple()) {
863 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000864 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000865 Base.getQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000866 }
867 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
868
869 llvm::Constant *BaseElts = Base.getExtVectorElts();
870 llvm::SmallVector<llvm::Constant *, 4> CElts;
871
872 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
873 if (isa<llvm::ConstantAggregateZero>(BaseElts))
874 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
875 else
876 CElts.push_back(BaseElts->getOperand(Indices[i]));
877 }
878 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000879 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000880 Base.getQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000881}
882
Devang Patelb9b00ad2007-10-23 20:28:39 +0000883LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000884 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000885 bool isIvar = false;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000886 bool isNonGC = false;
Devang Patel126a8562007-10-24 22:26:28 +0000887 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000888 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000889 unsigned CVRQualifiers=0;
890
Chris Lattner12f65f62007-12-02 18:52:07 +0000891 // 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 +0000892 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000893 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000894 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000895 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000896 if (PTy->getPointeeType()->isUnionType())
897 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000898 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000899 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
900 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +0000901 RValue RV = EmitObjCPropertyGet(BaseExpr);
902 BaseValue = RV.getAggregateAddr();
903 if (BaseExpr->getType()->isUnionType())
904 isUnion = true;
905 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000906 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +0000907 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000908 if (BaseLV.isObjCIvar())
909 isIvar = true;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000910 if (BaseLV.isNonGC())
911 isNonGC = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000912 // FIXME: this isn't right for bitfields.
913 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000914 if (BaseExpr->getType()->isUnionType())
915 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000916 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000917 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000918
Douglas Gregor86f19402008-12-20 23:49:58 +0000919 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
920 // FIXME: Handle non-field member expressions
921 assert(Field && "No code generation for non-field member references");
Chris Lattner1bd885e2009-02-16 22:25:49 +0000922 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
923 CVRQualifiers);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000924 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000925 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000926 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +0000927}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000928
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000929LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
930 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000931 unsigned CVRQualifiers) {
Daniel Dunbarbb767732009-02-17 18:31:04 +0000932 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000933 // FIXME: CodeGenTypes should expose a method to get the appropriate
934 // type for FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbarbb767732009-02-17 18:31:04 +0000935 const llvm::Type *FieldTy =
936 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000937 const llvm::PointerType *BaseTy =
938 cast<llvm::PointerType>(BaseValue->getType());
939 unsigned AS = BaseTy->getAddressSpace();
940 BaseValue = Builder.CreateBitCast(BaseValue,
941 llvm::PointerType::get(FieldTy, AS),
942 "tmp");
943 llvm::Value *V = Builder.CreateGEP(BaseValue,
944 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
945 "tmp");
946
947 CodeGenTypes::BitFieldInfo bitFieldInfo =
948 CGM.getTypes().getBitFieldInfo(Field);
949 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
950 Field->getType()->isSignedIntegerType(),
951 Field->getType().getCVRQualifiers()|CVRQualifiers);
952}
953
Eli Friedman472778e2008-02-09 08:50:58 +0000954LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
955 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000956 bool isUnion,
957 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000958{
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000959 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000960 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000961
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000962 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000963 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000964
Devang Patelabad06c2007-10-26 19:42:18 +0000965 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000966 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000967 const llvm::Type *FieldTy =
968 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000969 const llvm::PointerType * BaseTy =
970 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000971 unsigned AS = BaseTy->getAddressSpace();
972 V = Builder.CreateBitCast(V,
973 llvm::PointerType::get(FieldTy, AS),
974 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000975 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000976
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000977 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanianba372b82009-02-18 17:52:36 +0000978 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian5934e752009-02-18 18:52:41 +0000979 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
980 QualType Ty = Field->getType();
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000981 attr = Ty.getObjCGCAttr();
Fariborz Jahanianc1debf32009-02-19 00:48:05 +0000982 if (attr != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +0000983 // __weak attribute on a field is ignored.
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000984 if (attr == QualType::Weak)
985 attr = QualType::GCNone;
Fariborz Jahanianc1debf32009-02-19 00:48:05 +0000986 }
Fariborz Jahanian5934e752009-02-18 18:52:41 +0000987 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000988 attr = QualType::Strong;
Fariborz Jahanian5934e752009-02-18 18:52:41 +0000989 }
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000990 LValue LV =
991 LValue::MakeAddr(V,
992 Field->getType().getCVRQualifiers()|CVRQualifiers,
993 attr);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000994 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +0000995}
996
Eli Friedman1e692ac2008-06-13 23:01:12 +0000997LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
998{
Eli Friedman06e863f2008-05-13 23:18:27 +0000999 const llvm::Type *LTy = ConvertType(E->getType());
1000 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1001
1002 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +00001003 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +00001004
1005 if (E->getType()->isComplexType()) {
1006 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1007 } else if (hasAggregateLLVMType(E->getType())) {
1008 EmitAnyExpr(InitExpr, DeclPtr, false);
1009 } else {
1010 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1011 }
1012
1013 return Result;
1014}
1015
Reid Spencer5f016e22007-07-11 17:01:13 +00001016//===--------------------------------------------------------------------===//
1017// Expression Emission
1018//===--------------------------------------------------------------------===//
1019
Chris Lattner7016a702007-08-20 22:37:10 +00001020
Reid Spencer5f016e22007-07-11 17:01:13 +00001021RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001022 // Builtins never have block type.
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001023 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +00001024 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001025
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001026 const Decl *TargetDecl = 0;
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001027 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1028 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1029 TargetDecl = DRE->getDecl();
1030 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1031 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1032 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001033 }
1034 }
1035
Chris Lattner7f02f722007-08-24 05:35:26 +00001036 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +00001037 return EmitCallExpr(Callee, E->getCallee()->getType(),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001038 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattnerc5e940f2007-08-31 04:44:06 +00001039}
1040
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001041LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
1042 // Can only get l-value for binary operator expressions which are a
1043 // simple assignment of aggregate type.
1044 if (E->getOpcode() != BinaryOperator::Assign)
1045 return EmitUnsupportedLValue(E, "binary l-value expression");
1046
1047 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1048 EmitAggExpr(E, Temp, false);
1049 // FIXME: Are these qualifiers correct?
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001050 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1051 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001052}
1053
Christopher Lamb22c940e2007-12-29 05:02:41 +00001054LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
1055 // Can only get l-value for call expression returning aggregate type
1056 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +00001057 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001058 E->getType().getCVRQualifiers(),
1059 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lamb22c940e2007-12-29 05:02:41 +00001060}
1061
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001062LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1063 // FIXME: This shouldn't require another copy.
1064 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1065 EmitAggExpr(E, Temp, false);
1066 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1067}
1068
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001069LValue
1070CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1071 EmitLocalBlockVarDecl(*E->getVarDecl());
1072 return EmitDeclRefLValue(E);
1073}
1074
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001075LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1076 // Can only get l-value for message expression returning aggregate type
1077 RValue RV = EmitObjCMessageExpr(E);
1078 // FIXME: can this be volatile?
1079 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001080 E->getType().getCVRQualifiers(),
1081 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001082}
1083
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001084llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
1085 const ObjCIvarDecl *Ivar) {
Chris Lattner391d77a2008-03-30 23:03:07 +00001086 // Objective-C objects are traditionally C structures with their layout
1087 // defined at compile-time. In some implementations, their layout is not
1088 // defined until run time in order to allow instance variables to be added to
1089 // a class without recompiling all of the subclasses. If this is the case
1090 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
1091 // implement the lookup itself.
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001092 if (CGM.getObjCRuntime().LateBoundIVars())
1093 assert(0 && "late-bound ivars are unsupported");
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001094 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001095}
1096
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001097LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1098 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001099 const ObjCIvarDecl *Ivar,
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001100 const FieldDecl *Field,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001101 unsigned CVRQualifiers) {
1102 // See comment in EmitIvarOffset.
1103 if (CGM.getObjCRuntime().LateBoundIVars())
1104 assert(0 && "late-bound ivars are unsupported");
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001105
Daniel Dunbarbb767732009-02-17 18:31:04 +00001106 LValue LV = CGM.getObjCRuntime().EmitObjCValueForIvar(*this,
1107 ObjectTy,
1108 BaseValue, Ivar, Field,
1109 CVRQualifiers);
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +00001110 return LV;
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001111}
1112
1113LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001114 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1115 llvm::Value *BaseValue = 0;
1116 const Expr *BaseExpr = E->getBase();
1117 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001118 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001119 if (E->isArrow()) {
1120 BaseValue = EmitScalarExpr(BaseExpr);
1121 const PointerType *PTy =
1122 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001123 ObjectTy = PTy->getPointeeType();
1124 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001125 } else {
1126 LValue BaseLV = EmitLValue(BaseExpr);
1127 // FIXME: this isn't right for bitfields.
1128 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001129 ObjectTy = BaseExpr->getType();
1130 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001131 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001132
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001133 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
Fariborz Jahanianefc4c4b2008-12-18 17:29:46 +00001134 getContext().getFieldDecl(E), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001135}
1136
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001137LValue
1138CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1139 // This is a special l-value that just issues sends when we load or
1140 // store through it.
1141 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1142}
1143
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001144LValue
1145CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1146 // This is a special l-value that just issues sends when we load or
1147 // store through it.
1148 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1149}
1150
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001151LValue
1152CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
1153 return EmitUnsupportedLValue(E, "use of super");
1154}
1155
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001156RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek55499762008-06-17 02:43:46 +00001157 CallExpr::const_arg_iterator ArgBeg,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001158 CallExpr::const_arg_iterator ArgEnd,
1159 const Decl *TargetDecl) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001160 // Get the actual function type. The callee type will always be a
1161 // pointer to function type or a block pointer type.
1162 QualType ResultType;
1163 if (const BlockPointerType *BPT = dyn_cast<BlockPointerType>(CalleeType)) {
1164 ResultType = BPT->getPointeeType()->getAsFunctionType()->getResultType();
1165 } else {
1166 assert(CalleeType->isFunctionPointerType() &&
1167 "Call must have function pointer type!");
1168 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1169 ResultType = FnType->getAsFunctionType()->getResultType();
1170 }
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001171
1172 CallArgList Args;
1173 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar46f45b92008-09-09 01:06:48 +00001174 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
1175 I->getType()));
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001176
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001177 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001178 Callee, Args, TargetDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001179}