blob: 7e8eff3847d3c6565150c8960855220cff2463f0 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Daniel Dunbara8f02052008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbar84bb85f2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbareee5cd12008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbar64789f82008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedmana04e70d2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Chris Lattner4b009652007-07-25 00:24:17 +000021using namespace clang;
22using namespace CodeGen;
23
24//===--------------------------------------------------------------------===//
25// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
28/// CreateTempAlloca - This creates a alloca and inserts it into the entry
29/// block.
30llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
31 const char *Name) {
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 Lattnercc50a512007-08-26 16:46:58 +000038 QualType BoolTy = getContext().BoolTy;
Chris Lattnerde0908b2008-04-04 16:54:41 +000039 if (!E->getType()->isAnyComplexType())
Chris Lattnercc50a512007-08-26 16:46:58 +000040 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner4b009652007-07-25 00:24:17 +000041
Chris Lattnercc50a512007-08-26 16:46:58 +000042 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattner4b009652007-07-25 00:24:17 +000043}
44
Chris Lattnere24c4cf2007-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 Lattnerde0908b2008-04-04 16:54:41 +000053 else if (E->getType()->isAnyComplexType())
Chris Lattnere24c4cf2007-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 Dunbar0a2da0f2008-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 Gohman4751a3a2008-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 Lattnere24c4cf2007-08-31 22:49:20 +000081
Chris Lattner4b009652007-07-25 00:24:17 +000082//===----------------------------------------------------------------------===//
83// LValue Expression Emission
84//===----------------------------------------------------------------------===//
85
Daniel Dunbar900c85a2009-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 Dunbar8cb73402009-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 Dunbar900c85a2009-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 Dunbar8cb73402009-01-09 20:09:28 +000096 } else {
Daniel Dunbar900c85a2009-02-05 07:09:07 +000097 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8cb73402009-01-09 20:09:28 +000098 }
Daniel Dunbare3a6a682009-01-09 16:50:52 +000099}
100
Daniel Dunbar900c85a2009-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 Dunbarde1bd942008-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 Jahanianbbd4ca92009-02-19 23:36:06 +0000112 E->getType().getCVRQualifiers(),
113 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000114}
115
Chris Lattner4b009652007-07-25 00:24:17 +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 Dunbarde1bd942008-08-25 20:45:57 +0000134 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000135
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000136 case Expr::BinaryOperatorClass:
137 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000138 case Expr::CallExprClass:
139 case Expr::CXXOperatorCallExprClass:
140 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar95d08f22009-02-11 20:59:32 +0000141 case Expr::VAArgExprClass:
142 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor566782a2009-01-06 05:10:23 +0000143 case Expr::DeclRefExprClass:
144 case Expr::QualifiedDeclRefExprClass:
145 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000146 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner69909292008-08-10 01:53:14 +0000147 case Expr::PredefinedExprClass:
148 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000149 case Expr::StringLiteralClass:
150 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnerc5d32632009-02-24 22:18:39 +0000151 case Expr::ObjCEncodeExprClass:
152 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000153
Mike Stump2b6933f2009-02-28 09:07:16 +0000154 case Expr::BlockDeclRefExprClass:
155 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
156
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +0000157 case Expr::CXXConditionDeclExprClass:
158 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
159
Daniel Dunbar5e105892008-08-23 10:51:21 +0000160 case Expr::ObjCMessageExprClass:
161 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000162 case Expr::ObjCIvarRefExprClass:
163 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000164 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbare6c31752008-08-29 08:11:39 +0000165 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000166 case Expr::ObjCKVCRefExprClass:
167 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregord8606632008-11-04 14:56:14 +0000168 case Expr::ObjCSuperExprClass:
169 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
170
Chris Lattner4b009652007-07-25 00:24:17 +0000171 case Expr::UnaryOperatorClass:
172 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
173 case Expr::ArraySubscriptExprClass:
174 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemanaf6ed502008-04-18 23:10:10 +0000175 case Expr::ExtVectorElementExprClass:
176 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patel41b66252007-10-23 20:28:39 +0000177 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000178 case Expr::CompoundLiteralExprClass:
179 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattnera5f779dc2008-12-12 05:35:08 +0000180 case Expr::ChooseExprClass:
181 // __builtin_choose_expr is the lvalue of the selected operand.
182 if (cast<ChooseExpr>(E)->isConditionTrue(getContext()))
183 return EmitLValue(cast<ChooseExpr>(E)->getLHS());
184 else
185 return EmitLValue(cast<ChooseExpr>(E)->getRHS());
Chris Lattner4b009652007-07-25 00:24:17 +0000186 }
187}
188
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000189llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
190 QualType Ty) {
191 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
192
193 // Bool can have different representation in memory than in
194 // registers.
195 if (Ty->isBooleanType())
196 if (V->getType() != llvm::Type::Int1Ty)
197 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
198
199 return V;
200}
201
202void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
203 bool Volatile) {
204 // Handle stores of types which have different representations in
205 // memory and as LLVM values.
206
207 // FIXME: We shouldn't be this loose, we should only do this
208 // conversion when we have a type we know has a different memory
209 // representation (e.g., bool).
210
211 const llvm::Type *SrcTy = Value->getType();
212 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
213 if (DstPtr->getElementType() != SrcTy) {
214 const llvm::Type *MemTy =
215 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
216 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
217 }
218
219 Builder.CreateStore(Value, Addr, Volatile);
220}
221
Chris Lattner4b009652007-07-25 00:24:17 +0000222/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
223/// this method emits the address of the lvalue, then loads the result as an
224/// rvalue, returning the rvalue.
225RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000226 if (LV.isObjCWeak()) {
Fariborz Jahanian3305ad32008-11-18 21:45:40 +0000227 // load of a __weak object.
228 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian252d87f2008-11-18 22:37:34 +0000229 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian3305ad32008-11-18 21:45:40 +0000230 AddrWeakObj);
231 return RValue::get(read_weak);
232 }
233
Chris Lattner4b009652007-07-25 00:24:17 +0000234 if (LV.isSimple()) {
235 llvm::Value *Ptr = LV.getAddress();
236 const llvm::Type *EltTy =
237 cast<llvm::PointerType>(Ptr->getType())->getElementType();
238
239 // Simple scalar l-value.
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000240 if (EltTy->isSingleValueType())
241 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
242 ExprType));
Chris Lattner4b009652007-07-25 00:24:17 +0000243
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000244 assert(ExprType->isFunctionType() && "Unknown scalar value");
245 return RValue::get(Ptr);
Chris Lattner4b009652007-07-25 00:24:17 +0000246 }
247
248 if (LV.isVectorElt()) {
Eli Friedman2e630542008-06-13 23:01:12 +0000249 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
250 LV.isVolatileQualified(), "tmp");
Chris Lattner4b009652007-07-25 00:24:17 +0000251 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
252 "vecext"));
253 }
Chris Lattnera735fac2007-08-03 00:16:29 +0000254
255 // If this is a reference to a subset of the elements of a vector, either
256 // shuffle the input or extract/insert them as appropriate.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000257 if (LV.isExtVectorElt())
258 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000259
260 if (LV.isBitfield())
261 return EmitLoadOfBitfieldLValue(LV, ExprType);
262
Daniel Dunbare6c31752008-08-29 08:11:39 +0000263 if (LV.isPropertyRef())
264 return EmitLoadOfPropertyRefLValue(LV, ExprType);
265
Chris Lattner09020ee2009-02-16 21:11:58 +0000266 assert(LV.isKVCRef() && "Unknown LValue type!");
267 return EmitLoadOfKVCRefLValue(LV, ExprType);
Chris Lattner4b009652007-07-25 00:24:17 +0000268}
269
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000270RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
271 QualType ExprType) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000272 unsigned StartBit = LV.getBitfieldStartBit();
273 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000274 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000275
276 const llvm::Type *EltTy =
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000277 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000278 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000279
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000280 // In some cases the bitfield may straddle two memory locations.
281 // Currently we load the entire bitfield, then do the magic to
282 // sign-extend it if necessary. This results in somewhat more code
283 // than necessary for the common case (one load), since two shifts
284 // accomplish both the masking and sign extension.
285 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
286 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
287
288 // Shift to proper location.
Daniel Dunbar198edd52008-11-13 02:20:34 +0000289 if (StartBit)
290 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
291 "bf.lo");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000292
293 // Mask off unused bits.
294 llvm::Constant *LowMask =
295 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
296 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
297
298 // Fetch the high bits if necessary.
299 if (LowBits < BitfieldSize) {
300 unsigned HighBits = BitfieldSize - LowBits;
301 llvm::Value *HighPtr =
302 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
303 "bf.ptr.hi");
304 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
305 LV.isVolatileQualified(),
306 "tmp");
307
308 // Mask off unused bits.
309 llvm::Constant *HighMask =
310 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
311 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000312
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000313 // Shift to proper location and or in to bitfield value.
314 HighVal = Builder.CreateShl(HighVal,
315 llvm::ConstantInt::get(EltTy, LowBits));
316 Val = Builder.CreateOr(Val, HighVal, "bf.val");
317 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000318
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000319 // Sign extend if necessary.
320 if (LV.isBitfieldSigned()) {
321 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
322 EltTySize - BitfieldSize);
323 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
324 ExtraBits, "bf.val.sext");
325 }
Eli Friedmana04e70d2008-05-17 20:03:47 +0000326
327 // The bitfield type and the normal type differ when the storage sizes
328 // differ (currently just _Bool).
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000329 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000330
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000331 return RValue::get(Val);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000332}
333
Daniel Dunbare6c31752008-08-29 08:11:39 +0000334RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
335 QualType ExprType) {
336 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
337}
338
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000339RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
340 QualType ExprType) {
341 return EmitObjCPropertyGet(LV.getKVCRefExpr());
342}
343
Nate Begeman7903d052009-01-18 06:42:49 +0000344// If this is a reference to a subset of the elements of a vector, create an
345// appropriate shufflevector.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000346RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
347 QualType ExprType) {
Eli Friedman2e630542008-06-13 23:01:12 +0000348 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
349 LV.isVolatileQualified(), "tmp");
Chris Lattner944f7962007-08-03 16:18:34 +0000350
Nate Begemanc8e51f82008-05-09 06:41:27 +0000351 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner944f7962007-08-03 16:18:34 +0000352
353 // If the result of the expression is a non-vector type, we must be
354 // extracting a single element. Just codegen as an extractelement.
Chris Lattner4b492962007-08-10 17:10:08 +0000355 const VectorType *ExprVT = ExprType->getAsVectorType();
356 if (!ExprVT) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000357 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000358 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
359 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
360 }
Nate Begeman7903d052009-01-18 06:42:49 +0000361
362 // Always use shuffle vector to try to retain the original program structure
Chris Lattner4b492962007-08-10 17:10:08 +0000363 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner944f7962007-08-03 16:18:34 +0000364
Nate Begeman7903d052009-01-18 06:42:49 +0000365 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner944f7962007-08-03 16:18:34 +0000366 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000367 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman7903d052009-01-18 06:42:49 +0000368 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner944f7962007-08-03 16:18:34 +0000369 }
370
Nate Begeman7903d052009-01-18 06:42:49 +0000371 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
372 Vec = Builder.CreateShuffleVector(Vec,
373 llvm::UndefValue::get(Vec->getType()),
374 MaskV, "tmp");
375 return RValue::get(Vec);
Chris Lattner944f7962007-08-03 16:18:34 +0000376}
377
378
Chris Lattner4b009652007-07-25 00:24:17 +0000379
380/// EmitStoreThroughLValue - Store the specified rvalue into the specified
381/// lvalue, where both are guaranteed to the have the same type, and that type
382/// is 'Ty'.
383void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
384 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000385 if (!Dst.isSimple()) {
386 if (Dst.isVectorElt()) {
387 // Read/modify/write the vector, inserting the new element.
Eli Friedman2e630542008-06-13 23:01:12 +0000388 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
389 Dst.isVolatileQualified(), "tmp");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000390 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner5bfdd232007-08-03 16:28:33 +0000391 Dst.getVectorIdx(), "vecins");
Eli Friedman2e630542008-06-13 23:01:12 +0000392 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000393 return;
394 }
Chris Lattner4b009652007-07-25 00:24:17 +0000395
Nate Begemanaf6ed502008-04-18 23:10:10 +0000396 // If this is an update of extended vector elements, insert them as
397 // appropriate.
398 if (Dst.isExtVectorElt())
399 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000400
401 if (Dst.isBitfield())
402 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
403
Daniel Dunbare6c31752008-08-29 08:11:39 +0000404 if (Dst.isPropertyRef())
405 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
406
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000407 if (Dst.isKVCRef())
408 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
409
Lauro Ramos Venancio14d39842008-01-22 22:38:35 +0000410 assert(0 && "Unknown LValue type");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000411 }
Chris Lattner4b009652007-07-25 00:24:17 +0000412
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000413 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000414 // load of a __weak object.
415 llvm::Value *LvalueDst = Dst.getAddress();
416 llvm::Value *src = Src.getScalarVal();
417 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
418 return;
419 }
420
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000421 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000422 // load of a __strong object.
423 llvm::Value *LvalueDst = Dst.getAddress();
424 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian5a0c3412009-02-19 18:29:24 +0000425#if 0
426 // FIXME. We cannot positively determine if we have an
427 // 'ivar' assignment, object assignment or an unknown
428 // assignment. For now, generate call to objc_assign_strongCast
429 // assignment which is a safe, but consevative assumption.
Fariborz Jahanian70522662008-11-20 20:53:20 +0000430 if (Dst.isObjCIvar())
431 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
432 else
433 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian5a0c3412009-02-19 18:29:24 +0000434#endif
435 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000436 return;
437 }
438
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000439 assert(Src.isScalar() && "Can't emit an agg store with this method");
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000440 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
441 Dst.isVolatileQualified());
Chris Lattner4b009652007-07-25 00:24:17 +0000442}
443
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000444void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000445 QualType Ty,
446 llvm::Value **Result) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000447 unsigned StartBit = Dst.getBitfieldStartBit();
448 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000449 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000450
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000451 const llvm::Type *EltTy =
452 cast<llvm::PointerType>(Ptr->getType())->getElementType();
453 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
454
455 // Get the new value, cast to the appropriate type and masked to
456 // exactly the size of the bit-field.
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000457 llvm::Value *SrcVal = Src.getScalarVal();
458 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000459 llvm::Constant *Mask =
460 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
461 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000462
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000463 // Return the new value of the bit-field, if requested.
464 if (Result) {
465 // Cast back to the proper type for result.
466 const llvm::Type *SrcTy = SrcVal->getType();
467 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
468 "bf.reload.val");
469
470 // Sign extend if necessary.
471 if (Dst.isBitfieldSigned()) {
472 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
473 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
474 SrcTySize - BitfieldSize);
475 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
476 ExtraBits, "bf.reload.sext");
477 }
478
479 *Result = SrcTrunc;
480 }
481
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000482 // In some cases the bitfield may straddle two memory locations.
483 // Emit the low part first and check to see if the high needs to be
484 // done.
485 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
486 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
487 "bf.prev.low");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000488
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000489 // Compute the mask for zero-ing the low part of this bitfield.
490 llvm::Constant *InvMask =
491 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
492 StartBit + LowBits));
493
494 // Compute the new low part as
495 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
496 // with the shift of NewVal implicitly stripping the high bits.
497 llvm::Value *NewLowVal =
498 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
499 "bf.value.lo");
500 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
501 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
502
503 // Write back.
504 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedmana04e70d2008-05-17 20:03:47 +0000505
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000506 // If the low part doesn't cover the bitfield emit a high part.
507 if (LowBits < BitfieldSize) {
508 unsigned HighBits = BitfieldSize - LowBits;
509 llvm::Value *HighPtr =
510 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
511 "bf.ptr.hi");
512 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
513 Dst.isVolatileQualified(),
514 "bf.prev.hi");
515
516 // Compute the mask for zero-ing the high part of this bitfield.
517 llvm::Constant *InvMask =
518 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
519
520 // Compute the new high part as
521 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
522 // where the high bits of NewVal have already been cleared and the
523 // shift stripping the low bits.
524 llvm::Value *NewHighVal =
525 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
526 "bf.value.high");
527 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
528 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
529
530 // Write back.
531 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
532 }
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000533}
534
Daniel Dunbare6c31752008-08-29 08:11:39 +0000535void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
536 LValue Dst,
537 QualType Ty) {
538 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
539}
540
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000541void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
542 LValue Dst,
543 QualType Ty) {
544 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
545}
546
Nate Begemanaf6ed502008-04-18 23:10:10 +0000547void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
548 LValue Dst,
549 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000550 // This access turns into a read/modify/write of the vector. Load the input
551 // value now.
Eli Friedman2e630542008-06-13 23:01:12 +0000552 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
553 Dst.isVolatileQualified(), "tmp");
Nate Begemanc8e51f82008-05-09 06:41:27 +0000554 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000555
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000556 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000557
Chris Lattner940966d2007-08-03 16:37:04 +0000558 if (const VectorType *VTy = Ty->getAsVectorType()) {
559 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman7903d052009-01-18 06:42:49 +0000560 unsigned NumDstElts =
561 cast<llvm::VectorType>(Vec->getType())->getNumElements();
562 if (NumDstElts == NumSrcElts) {
563 // Use shuffle vector is the src and destination are the same number
564 // of elements
565 llvm::SmallVector<llvm::Constant*, 4> Mask;
566 for (unsigned i = 0; i != NumSrcElts; ++i) {
567 unsigned InIdx = getAccessedFieldNo(i, Elts);
568 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
569 }
570
571 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
572 Vec = Builder.CreateShuffleVector(SrcVal,
573 llvm::UndefValue::get(Vec->getType()),
574 MaskV, "tmp");
575 }
576 else if (NumDstElts > NumSrcElts) {
577 // Extended the source vector to the same length and then shuffle it
578 // into the destination.
579 // FIXME: since we're shuffling with undef, can we just use the indices
580 // into that? This could be simpler.
581 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
582 unsigned i;
583 for (i = 0; i != NumSrcElts; ++i)
584 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
585 for (; i != NumDstElts; ++i)
586 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
587 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
588 ExtMask.size());
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +0000589 llvm::Value *ExtSrcVal =
590 Builder.CreateShuffleVector(SrcVal,
591 llvm::UndefValue::get(SrcVal->getType()),
592 ExtMaskV, "tmp");
Nate Begeman7903d052009-01-18 06:42:49 +0000593 // build identity
594 llvm::SmallVector<llvm::Constant*, 4> Mask;
595 for (unsigned i = 0; i != NumDstElts; ++i) {
596 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
597 }
598 // modify when what gets shuffled in
599 for (unsigned i = 0; i != NumSrcElts; ++i) {
600 unsigned Idx = getAccessedFieldNo(i, Elts);
601 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
602 }
603 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
604 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
605 }
606 else {
607 // We should never shorten the vector
608 assert(0 && "unexpected shorten vector length");
Chris Lattner940966d2007-08-03 16:37:04 +0000609 }
610 } else {
611 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4751a3a2008-05-22 00:50:06 +0000612 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner5bfdd232007-08-03 16:28:33 +0000613 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
614 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000615 }
616
Eli Friedman2e630542008-06-13 23:01:12 +0000617 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000618}
619
Chris Lattner4b009652007-07-25 00:24:17 +0000620LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000621 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
622
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000623 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
624 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000625 LValue LV;
626 if (VD->getStorageClass() == VarDecl::Extern) {
627 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000628 E->getType().getCVRQualifiers(),
629 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000630 }
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000631 else {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000632 llvm::Value *V = LocalDeclMap[VD];
Mike Stump2b6933f2009-02-28 09:07:16 +0000633 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanian4d41b952009-02-20 01:14:43 +0000634 // local variables do not get their gc attribute set.
635 QualType::GCAttrTypes attr = QualType::GCNone;
636 // local static?
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000637 if (!VD->hasLocalStorage())
Fariborz Jahanian4d41b952009-02-20 01:14:43 +0000638 attr = getContext().getObjCGCAttrKind(E->getType());
639 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000640 }
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000641 LValue::SetObjCNonGC(LV, VD->hasLocalStorage());
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000642 return LV;
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000643 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanianc192d4d2008-11-18 20:18:11 +0000644 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000645 E->getType().getCVRQualifiers(),
646 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanianc192d4d2008-11-18 20:18:11 +0000647 return LV;
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000648 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000649 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000650 E->getType().getCVRQualifiers(),
651 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner4b009652007-07-25 00:24:17 +0000652 }
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000653 else if (const ImplicitParamDecl *IPD =
654 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
655 llvm::Value *V = LocalDeclMap[IPD];
656 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000657 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
658 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000659 }
Chris Lattner4b009652007-07-25 00:24:17 +0000660 assert(0 && "Unimp declref");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000661 //an invalid LValue, but the assert will
662 //ensure that this point is never reached.
663 return LValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000664}
665
Mike Stump2b6933f2009-02-28 09:07:16 +0000666LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
667 return LValue::MakeAddr(GetAddrOfBlockDecl(E), 0);
668}
669
670llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
671 // FIXME: ensure we don't need copy/dispose.
672 uint64_t &offset = BlockDecls[E->getDecl()];
673
674 const llvm::Type *Ty;
675 Ty = CGM.getTypes().ConvertType(E->getDecl()->getType());
676
677 // See if we have already allocated an offset for this variable.
678 if (offset == 0) {
679 // if not, allocate one now.
680 offset = getBlockOffset(E);
681 }
682
683 llvm::Value *BlockLiteral = LoadBlockStruct();
684 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
685 llvm::ConstantInt::get(llvm::Type::Int64Ty,
686 offset),
687 "tmp");
688 Ty = llvm::PointerType::get(Ty, 0);
689 if (E->isByRef())
690 Ty = llvm::PointerType::get(Ty, 0);
691 V = Builder.CreateBitCast(V, Ty);
692 if (E->isByRef())
693 V = Builder.CreateLoad(V, false, "tmp");
694
695 return V;
696}
697
Chris Lattner4b009652007-07-25 00:24:17 +0000698LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
699 // __extension__ doesn't affect lvalue-ness.
700 if (E->getOpcode() == UnaryOperator::Extension)
701 return EmitLValue(E->getSubExpr());
702
Chris Lattnerc154ac12008-07-26 22:37:01 +0000703 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner5bf72022007-10-30 22:53:42 +0000704 switch (E->getOpcode()) {
705 default: assert(0 && "Unknown unary operator lvalue!");
706 case UnaryOperator::Deref:
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000707 {
Chris Lattnerc5d32632009-02-24 22:18:39 +0000708 QualType T =
709 E->getSubExpr()->getType()->getAsPointerType()->getPointeeType();
Fariborz Jahanian2224fb22009-02-23 18:59:50 +0000710 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
711 ExprTy->getAsPointerType()->getPointeeType()
Fariborz Jahanian4d41b952009-02-20 01:14:43 +0000712 .getCVRQualifiers(),
Fariborz Jahanian2224fb22009-02-23 18:59:50 +0000713 getContext().getObjCGCAttrKind(T));
714 // We should not generate __weak write barrier on indirect reference
715 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
716 // But, we continue to generate __strong write barrier on indirect write
717 // into a pointer to object.
718 if (getContext().getLangOptions().ObjC1 &&
719 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
720 LV.isObjCWeak())
721 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
722 return LV;
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000723 }
Chris Lattner5bf72022007-10-30 22:53:42 +0000724 case UnaryOperator::Real:
725 case UnaryOperator::Imag:
726 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner07307562008-03-19 05:19:41 +0000727 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
728 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000729 Idx, "idx"),
730 ExprTy.getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000731 }
Chris Lattner4b009652007-07-25 00:24:17 +0000732}
733
734LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000735 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4b009652007-07-25 00:24:17 +0000736}
737
Chris Lattnerc5d32632009-02-24 22:18:39 +0000738LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
739 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
740}
741
742
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000743LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000744 std::string GlobalVarName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000745
746 switch (Type) {
Chris Lattnerc5d32632009-02-24 22:18:39 +0000747 default:
748 assert(0 && "Invalid type");
749 case PredefinedExpr::Func:
750 GlobalVarName = "__func__.";
751 break;
752 case PredefinedExpr::Function:
753 GlobalVarName = "__FUNCTION__.";
754 break;
755 case PredefinedExpr::PrettyFunction:
756 // FIXME:: Demangle C++ method names
757 GlobalVarName = "__PRETTY_FUNCTION__.";
758 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000759 }
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000760
761 std::string FunctionName;
762 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
Douglas Gregor3c3c4542009-02-18 23:53:56 +0000763 FunctionName = CGM.getMangledName(FD);
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000764 } else {
765 // Just get the mangled name.
766 FunctionName = CurFn->getName();
767 }
768
Chris Lattner6e6a5972008-04-04 04:07:35 +0000769 GlobalVarName += FunctionName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000770 llvm::Constant *C =
771 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
772 return LValue::MakeAddr(C, 0);
773}
774
775LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
776 switch (E->getIdentType()) {
777 default:
778 return EmitUnsupportedLValue(E, "predefined expression");
779 case PredefinedExpr::Func:
780 case PredefinedExpr::Function:
781 case PredefinedExpr::PrettyFunction:
782 return EmitPredefinedFunctionName(E->getIdentType());
783 }
Chris Lattner4b009652007-07-25 00:24:17 +0000784}
785
786LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000787 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000788 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Chris Lattner4b009652007-07-25 00:24:17 +0000789
790 // If the base is a vector type, then we are forming a vector element lvalue
791 // with this subscript.
Eli Friedman2e630542008-06-13 23:01:12 +0000792 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000793 // Emit the vector as an lvalue to get its address.
Eli Friedman2e630542008-06-13 23:01:12 +0000794 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000795 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Chris Lattner4b009652007-07-25 00:24:17 +0000796 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman2e630542008-06-13 23:01:12 +0000797 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
798 E->getBase()->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000799 }
800
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000801 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000802 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner4b009652007-07-25 00:24:17 +0000803
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000804 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner2af72ac2007-08-08 17:43:05 +0000805 QualType IdxTy = E->getIdx()->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000806 bool IdxSigned = IdxTy->isSignedIntegerType();
807 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
808 if (IdxBitwidth != LLVMPointerWidth)
809 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
810 IdxSigned, "idxprom");
811
812 // We know that the pointer points to a type of the correct size, unless the
813 // size is a VLA.
Anders Carlsson3bb57e82008-12-21 00:11:23 +0000814 if (const VariableArrayType *VAT =
815 getContext().getAsVariableArrayType(E->getType())) {
816 llvm::Value *VLASize = VLASizeMap[VAT];
817
818 Idx = Builder.CreateMul(Idx, VLASize);
819
Anders Carlsson76d19c82008-12-21 03:44:36 +0000820 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson3bb57e82008-12-21 00:11:23 +0000821
822 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
823 Idx = Builder.CreateUDiv(Idx,
824 llvm::ConstantInt::get(Idx->getType(),
825 BaseTypeSize));
826 }
827
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000828 QualType T = E->getBase()->getType();
829 QualType ExprTy = getContext().getCanonicalType(T);
830 T = T->getAsPointerType()->getPointeeType();
Fariborz Jahanian1ff3c9d2009-02-21 23:37:19 +0000831 LValue LV =
832 LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000833 ExprTy->getAsPointerType()->getPointeeType().getCVRQualifiers(),
834 getContext().getObjCGCAttrKind(T));
Fariborz Jahanian1ff3c9d2009-02-21 23:37:19 +0000835 if (getContext().getLangOptions().ObjC1 &&
836 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian0c195b92009-02-22 18:40:18 +0000837 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
Fariborz Jahanian1ff3c9d2009-02-21 23:37:19 +0000838 return LV;
Chris Lattner4b009652007-07-25 00:24:17 +0000839}
840
Nate Begemana1ae7442008-05-13 21:03:02 +0000841static
842llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
843 llvm::SmallVector<llvm::Constant *, 4> CElts;
844
845 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
846 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
847
848 return llvm::ConstantVector::get(&CElts[0], CElts.size());
849}
850
Chris Lattner65520192007-08-02 23:37:31 +0000851LValue CodeGenFunction::
Nate Begemanaf6ed502008-04-18 23:10:10 +0000852EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner65520192007-08-02 23:37:31 +0000853 // Emit the base vector as an l-value.
Chris Lattner09020ee2009-02-16 21:11:58 +0000854 LValue Base;
855
856 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner98e7fcc2009-02-16 22:14:05 +0000857 if (!E->isArrow()) {
Chris Lattner09020ee2009-02-16 21:11:58 +0000858 assert(E->getBase()->getType()->isVectorType());
859 Base = EmitLValue(E->getBase());
Chris Lattner98e7fcc2009-02-16 22:14:05 +0000860 } else {
861 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
862 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
863 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner09020ee2009-02-16 21:11:58 +0000864 }
Chris Lattner65520192007-08-02 23:37:31 +0000865
Nate Begemana1ae7442008-05-13 21:03:02 +0000866 // Encode the element access list into a vector of unsigned indices.
867 llvm::SmallVector<unsigned, 4> Indices;
868 E->getEncodedElementAccess(Indices);
869
870 if (Base.isSimple()) {
871 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman2e630542008-06-13 23:01:12 +0000872 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner9df79c32009-02-16 22:25:49 +0000873 Base.getQualifiers());
Nate Begemana1ae7442008-05-13 21:03:02 +0000874 }
875 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
876
877 llvm::Constant *BaseElts = Base.getExtVectorElts();
878 llvm::SmallVector<llvm::Constant *, 4> CElts;
879
880 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
881 if (isa<llvm::ConstantAggregateZero>(BaseElts))
882 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
883 else
884 CElts.push_back(BaseElts->getOperand(Indices[i]));
885 }
886 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman2e630542008-06-13 23:01:12 +0000887 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner9df79c32009-02-16 22:25:49 +0000888 Base.getQualifiers());
Chris Lattner65520192007-08-02 23:37:31 +0000889}
890
Devang Patel41b66252007-10-23 20:28:39 +0000891LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patele1f79db2007-12-11 21:33:16 +0000892 bool isUnion = false;
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000893 bool isIvar = false;
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000894 bool isNonGC = false;
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000895 Expr *BaseExpr = E->getBase();
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000896 llvm::Value *BaseValue = NULL;
Eli Friedman2e630542008-06-13 23:01:12 +0000897 unsigned CVRQualifiers=0;
898
Chris Lattner659079e2007-12-02 18:52:07 +0000899 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patele1f79db2007-12-11 21:33:16 +0000900 if (E->isArrow()) {
Devang Patel2b24fd92007-10-26 18:15:21 +0000901 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patele1f79db2007-12-11 21:33:16 +0000902 const PointerType *PTy =
Chris Lattnerc154ac12008-07-26 22:37:01 +0000903 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patele1f79db2007-12-11 21:33:16 +0000904 if (PTy->getPointeeType()->isUnionType())
905 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000906 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner9df79c32009-02-16 22:25:49 +0000907 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
908 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian4e881652009-01-12 23:27:26 +0000909 RValue RV = EmitObjCPropertyGet(BaseExpr);
910 BaseValue = RV.getAggregateAddr();
911 if (BaseExpr->getType()->isUnionType())
912 isUnion = true;
913 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner9df79c32009-02-16 22:25:49 +0000914 } else {
Chris Lattner659079e2007-12-02 18:52:07 +0000915 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000916 if (BaseLV.isObjCIvar())
917 isIvar = true;
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000918 if (BaseLV.isNonGC())
919 isNonGC = true;
Chris Lattner659079e2007-12-02 18:52:07 +0000920 // FIXME: this isn't right for bitfields.
921 BaseValue = BaseLV.getAddress();
Devang Patele1f79db2007-12-11 21:33:16 +0000922 if (BaseExpr->getType()->isUnionType())
923 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000924 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner659079e2007-12-02 18:52:07 +0000925 }
Devang Patel41b66252007-10-23 20:28:39 +0000926
Douglas Gregor82d44772008-12-20 23:49:58 +0000927 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
928 // FIXME: Handle non-field member expressions
929 assert(Field && "No code generation for non-field member references");
Chris Lattner9df79c32009-02-16 22:25:49 +0000930 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
931 CVRQualifiers);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000932 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000933 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000934 return MemExpLV;
Eli Friedmand3550112008-02-09 08:50:58 +0000935}
Devang Patel41b66252007-10-23 20:28:39 +0000936
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000937LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
938 FieldDecl* Field,
Fariborz Jahanianc912eb72009-02-03 19:03:09 +0000939 unsigned CVRQualifiers) {
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +0000940 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000941 // FIXME: CodeGenTypes should expose a method to get the appropriate
942 // type for FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +0000943 const llvm::Type *FieldTy =
944 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000945 const llvm::PointerType *BaseTy =
946 cast<llvm::PointerType>(BaseValue->getType());
947 unsigned AS = BaseTy->getAddressSpace();
948 BaseValue = Builder.CreateBitCast(BaseValue,
949 llvm::PointerType::get(FieldTy, AS),
950 "tmp");
951 llvm::Value *V = Builder.CreateGEP(BaseValue,
952 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
953 "tmp");
954
955 CodeGenTypes::BitFieldInfo bitFieldInfo =
956 CGM.getTypes().getBitFieldInfo(Field);
957 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
958 Field->getType()->isSignedIntegerType(),
959 Field->getType().getCVRQualifiers()|CVRQualifiers);
960}
961
Eli Friedmand3550112008-02-09 08:50:58 +0000962LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
963 FieldDecl* Field,
Eli Friedman2e630542008-06-13 23:01:12 +0000964 bool isUnion,
965 unsigned CVRQualifiers)
Eli Friedmand3550112008-02-09 08:50:58 +0000966{
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000967 if (Field->isBitField())
Fariborz Jahanianc912eb72009-02-03 19:03:09 +0000968 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000969
Fariborz Jahanianc912eb72009-02-03 19:03:09 +0000970 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000971 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman66813742008-05-29 11:33:25 +0000972
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000973 // Match union field type.
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000974 if (isUnion) {
Eli Friedman2e630542008-06-13 23:01:12 +0000975 const llvm::Type *FieldTy =
976 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patel0f2a8fb2007-10-30 20:59:40 +0000977 const llvm::PointerType * BaseTy =
978 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedmancecdc6b2008-05-21 13:24:44 +0000979 unsigned AS = BaseTy->getAddressSpace();
980 V = Builder.CreateBitCast(V,
981 llvm::PointerType::get(FieldTy, AS),
982 "tmp");
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000983 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000984
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000985 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanian80ff83c2009-02-18 17:52:36 +0000986 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000987 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
988 QualType Ty = Field->getType();
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000989 attr = Ty.getObjCGCAttr();
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000990 if (attr != QualType::GCNone) {
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000991 // __weak attribute on a field is ignored.
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000992 if (attr == QualType::Weak)
993 attr = QualType::GCNone;
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000994 }
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000995 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000996 attr = QualType::Strong;
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000997 }
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000998 LValue LV =
999 LValue::MakeAddr(V,
1000 Field->getType().getCVRQualifiers()|CVRQualifiers,
1001 attr);
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +00001002 return LV;
Devang Patel41b66252007-10-23 20:28:39 +00001003}
1004
Eli Friedman2e630542008-06-13 23:01:12 +00001005LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
1006{
Eli Friedmanf3c2cb42008-05-13 23:18:27 +00001007 const llvm::Type *LTy = ConvertType(E->getType());
1008 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1009
1010 const Expr* InitExpr = E->getInitializer();
Eli Friedman2e630542008-06-13 23:01:12 +00001011 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedmanf3c2cb42008-05-13 23:18:27 +00001012
1013 if (E->getType()->isComplexType()) {
1014 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1015 } else if (hasAggregateLLVMType(E->getType())) {
1016 EmitAnyExpr(InitExpr, DeclPtr, false);
1017 } else {
1018 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1019 }
1020
1021 return Result;
1022}
1023
Chris Lattner4b009652007-07-25 00:24:17 +00001024//===--------------------------------------------------------------------===//
1025// Expression Emission
1026//===--------------------------------------------------------------------===//
1027
Chris Lattnerb2cb9cb2007-08-20 22:37:10 +00001028
Chris Lattner4b009652007-07-25 00:24:17 +00001029RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001030 // Builtins never have block type.
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001031 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssond2a889b2009-02-12 00:39:25 +00001032 return EmitBlockCallExpr(E);
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001033
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001034 const Decl *TargetDecl = 0;
Daniel Dunbar337f60a2009-02-20 19:34:33 +00001035 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1036 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1037 TargetDecl = DRE->getDecl();
1038 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1039 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1040 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001041 }
1042 }
1043
Chris Lattner9fba49a2007-08-24 05:35:26 +00001044 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman261f4ad2008-01-30 01:32:06 +00001045 return EmitCallExpr(Callee, E->getCallee()->getType(),
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001046 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattner02c60f52007-08-31 04:44:06 +00001047}
1048
Daniel Dunbaref0d4c72008-09-04 03:20:13 +00001049LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
1050 // Can only get l-value for binary operator expressions which are a
1051 // simple assignment of aggregate type.
1052 if (E->getOpcode() != BinaryOperator::Assign)
1053 return EmitUnsupportedLValue(E, "binary l-value expression");
1054
1055 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1056 EmitAggExpr(E, Temp, false);
1057 // FIXME: Are these qualifiers correct?
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001058 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1059 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbaref0d4c72008-09-04 03:20:13 +00001060}
1061
Christopher Lambad327ba2007-12-29 05:02:41 +00001062LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
1063 // Can only get l-value for call expression returning aggregate type
1064 RValue RV = EmitCallExpr(E);
Eli Friedman2e630542008-06-13 23:01:12 +00001065 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001066 E->getType().getCVRQualifiers(),
1067 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lambad327ba2007-12-29 05:02:41 +00001068}
1069
Daniel Dunbar95d08f22009-02-11 20:59:32 +00001070LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1071 // FIXME: This shouldn't require another copy.
1072 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1073 EmitAggExpr(E, Temp, false);
1074 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1075}
1076
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +00001077LValue
1078CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1079 EmitLocalBlockVarDecl(*E->getVarDecl());
1080 return EmitDeclRefLValue(E);
1081}
1082
Daniel Dunbar5e105892008-08-23 10:51:21 +00001083LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1084 // Can only get l-value for message expression returning aggregate type
1085 RValue RV = EmitObjCMessageExpr(E);
1086 // FIXME: can this be volatile?
1087 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001088 E->getType().getCVRQualifiers(),
1089 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar5e105892008-08-23 10:51:21 +00001090}
1091
Daniel Dunbare856ac22008-09-24 04:00:38 +00001092llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
1093 const ObjCIvarDecl *Ivar) {
Chris Lattnerb326b172008-03-30 23:03:07 +00001094 // Objective-C objects are traditionally C structures with their layout
1095 // defined at compile-time. In some implementations, their layout is not
1096 // defined until run time in order to allow instance variables to be added to
1097 // a class without recompiling all of the subclasses. If this is the case
1098 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
1099 // implement the lookup itself.
Daniel Dunbare856ac22008-09-24 04:00:38 +00001100 if (CGM.getObjCRuntime().LateBoundIVars())
1101 assert(0 && "late-bound ivars are unsupported");
Fariborz Jahanian27cc6662009-02-10 19:02:04 +00001102 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbare856ac22008-09-24 04:00:38 +00001103}
1104
Fariborz Jahanian55343922009-02-03 00:09:52 +00001105LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1106 llvm::Value *BaseValue,
Daniel Dunbare856ac22008-09-24 04:00:38 +00001107 const ObjCIvarDecl *Ivar,
Fariborz Jahanian86008c02008-12-15 20:35:07 +00001108 const FieldDecl *Field,
Daniel Dunbare856ac22008-09-24 04:00:38 +00001109 unsigned CVRQualifiers) {
1110 // See comment in EmitIvarOffset.
1111 if (CGM.getObjCRuntime().LateBoundIVars())
1112 assert(0 && "late-bound ivars are unsupported");
Daniel Dunbare856ac22008-09-24 04:00:38 +00001113
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +00001114 LValue LV = CGM.getObjCRuntime().EmitObjCValueForIvar(*this,
1115 ObjectTy,
1116 BaseValue, Ivar, Field,
1117 CVRQualifiers);
Fariborz Jahanian70522662008-11-20 20:53:20 +00001118 return LV;
Daniel Dunbare856ac22008-09-24 04:00:38 +00001119}
1120
1121LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonae61b002008-08-25 01:53:23 +00001122 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1123 llvm::Value *BaseValue = 0;
1124 const Expr *BaseExpr = E->getBase();
1125 unsigned CVRQualifiers = 0;
Fariborz Jahanian55343922009-02-03 00:09:52 +00001126 QualType ObjectTy;
Anders Carlssonae61b002008-08-25 01:53:23 +00001127 if (E->isArrow()) {
1128 BaseValue = EmitScalarExpr(BaseExpr);
1129 const PointerType *PTy =
1130 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Fariborz Jahanian55343922009-02-03 00:09:52 +00001131 ObjectTy = PTy->getPointeeType();
1132 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonae61b002008-08-25 01:53:23 +00001133 } else {
1134 LValue BaseLV = EmitLValue(BaseExpr);
1135 // FIXME: this isn't right for bitfields.
1136 BaseValue = BaseLV.getAddress();
Fariborz Jahanian55343922009-02-03 00:09:52 +00001137 ObjectTy = BaseExpr->getType();
1138 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonae61b002008-08-25 01:53:23 +00001139 }
Daniel Dunbare856ac22008-09-24 04:00:38 +00001140
Fariborz Jahanian55343922009-02-03 00:09:52 +00001141 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
Fariborz Jahanianea944842008-12-18 17:29:46 +00001142 getContext().getFieldDecl(E), CVRQualifiers);
Chris Lattnerb326b172008-03-30 23:03:07 +00001143}
1144
Daniel Dunbare6c31752008-08-29 08:11:39 +00001145LValue
1146CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1147 // This is a special l-value that just issues sends when we load or
1148 // store through it.
1149 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1150}
1151
Fariborz Jahanianb0973da2008-11-22 22:30:21 +00001152LValue
1153CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1154 // This is a special l-value that just issues sends when we load or
1155 // store through it.
1156 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1157}
1158
Douglas Gregord8606632008-11-04 14:56:14 +00001159LValue
1160CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
1161 return EmitUnsupportedLValue(E, "use of super");
1162}
1163
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001164RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek2719e982008-06-17 02:43:46 +00001165 CallExpr::const_arg_iterator ArgBeg,
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001166 CallExpr::const_arg_iterator ArgEnd,
1167 const Decl *TargetDecl) {
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001168 // Get the actual function type. The callee type will always be a
1169 // pointer to function type or a block pointer type.
1170 QualType ResultType;
1171 if (const BlockPointerType *BPT = dyn_cast<BlockPointerType>(CalleeType)) {
1172 ResultType = BPT->getPointeeType()->getAsFunctionType()->getResultType();
1173 } else {
1174 assert(CalleeType->isFunctionPointerType() &&
1175 "Call must have function pointer type!");
1176 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1177 ResultType = FnType->getAsFunctionType()->getResultType();
1178 }
Daniel Dunbar0ed60b02008-08-30 03:02:31 +00001179
1180 CallArgList Args;
1181 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar0a2da0f2008-09-09 01:06:48 +00001182 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
1183 I->getType()));
Daniel Dunbar0ed60b02008-08-30 03:02:31 +00001184
Daniel Dunbar34bda882009-02-02 23:23:47 +00001185 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001186 Callee, Args, TargetDecl);
Daniel Dunbara04840b2008-08-23 03:46:30 +00001187}