blob: 8f02ae134d1f15ff0f63e1bb96bf0a99089c5633 [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),
112 E->getType().getCVRQualifiers());
113}
114
Chris Lattner4b009652007-07-25 00:24:17 +0000115/// EmitLValue - Emit code to compute a designator that specifies the location
116/// of the expression.
117///
118/// This can return one of two things: a simple address or a bitfield
119/// reference. In either case, the LLVM Value* in the LValue structure is
120/// guaranteed to be an LLVM pointer type.
121///
122/// If this returns a bitfield reference, nothing about the pointee type of
123/// the LLVM value is known: For example, it may not be a pointer to an
124/// integer.
125///
126/// If this returns a normal address, and if the lvalue's C type is fixed
127/// size, this method guarantees that the returned pointer type will point to
128/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
129/// variable length type, this is not possible.
130///
131LValue CodeGenFunction::EmitLValue(const Expr *E) {
132 switch (E->getStmtClass()) {
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000133 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000134
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000135 case Expr::BinaryOperatorClass:
136 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000137 case Expr::CallExprClass:
138 case Expr::CXXOperatorCallExprClass:
139 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar95d08f22009-02-11 20:59:32 +0000140 case Expr::VAArgExprClass:
141 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor566782a2009-01-06 05:10:23 +0000142 case Expr::DeclRefExprClass:
143 case Expr::QualifiedDeclRefExprClass:
144 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000145 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner69909292008-08-10 01:53:14 +0000146 case Expr::PredefinedExprClass:
147 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000148 case Expr::StringLiteralClass:
149 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000150
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +0000151 case Expr::CXXConditionDeclExprClass:
152 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
153
Daniel Dunbar5e105892008-08-23 10:51:21 +0000154 case Expr::ObjCMessageExprClass:
155 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000156 case Expr::ObjCIvarRefExprClass:
157 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000158 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbare6c31752008-08-29 08:11:39 +0000159 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000160 case Expr::ObjCKVCRefExprClass:
161 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregord8606632008-11-04 14:56:14 +0000162 case Expr::ObjCSuperExprClass:
163 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
164
Chris Lattner4b009652007-07-25 00:24:17 +0000165 case Expr::UnaryOperatorClass:
166 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
167 case Expr::ArraySubscriptExprClass:
168 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemanaf6ed502008-04-18 23:10:10 +0000169 case Expr::ExtVectorElementExprClass:
170 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patel41b66252007-10-23 20:28:39 +0000171 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000172 case Expr::CompoundLiteralExprClass:
173 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattnera5f779dc2008-12-12 05:35:08 +0000174 case Expr::ChooseExprClass:
175 // __builtin_choose_expr is the lvalue of the selected operand.
176 if (cast<ChooseExpr>(E)->isConditionTrue(getContext()))
177 return EmitLValue(cast<ChooseExpr>(E)->getLHS());
178 else
179 return EmitLValue(cast<ChooseExpr>(E)->getRHS());
Chris Lattner4b009652007-07-25 00:24:17 +0000180 }
181}
182
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000183llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
184 QualType Ty) {
185 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
186
187 // Bool can have different representation in memory than in
188 // registers.
189 if (Ty->isBooleanType())
190 if (V->getType() != llvm::Type::Int1Ty)
191 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
192
193 return V;
194}
195
196void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
197 bool Volatile) {
198 // Handle stores of types which have different representations in
199 // memory and as LLVM values.
200
201 // FIXME: We shouldn't be this loose, we should only do this
202 // conversion when we have a type we know has a different memory
203 // representation (e.g., bool).
204
205 const llvm::Type *SrcTy = Value->getType();
206 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
207 if (DstPtr->getElementType() != SrcTy) {
208 const llvm::Type *MemTy =
209 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
210 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
211 }
212
213 Builder.CreateStore(Value, Addr, Volatile);
214}
215
Chris Lattner4b009652007-07-25 00:24:17 +0000216/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
217/// this method emits the address of the lvalue, then loads the result as an
218/// rvalue, returning the rvalue.
219RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000220 if (LV.isObjCWeak()) {
Fariborz Jahanian3305ad32008-11-18 21:45:40 +0000221 // load of a __weak object.
222 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian252d87f2008-11-18 22:37:34 +0000223 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian3305ad32008-11-18 21:45:40 +0000224 AddrWeakObj);
225 return RValue::get(read_weak);
226 }
227
Chris Lattner4b009652007-07-25 00:24:17 +0000228 if (LV.isSimple()) {
229 llvm::Value *Ptr = LV.getAddress();
230 const llvm::Type *EltTy =
231 cast<llvm::PointerType>(Ptr->getType())->getElementType();
232
233 // Simple scalar l-value.
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000234 if (EltTy->isSingleValueType())
235 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
236 ExprType));
Chris Lattner4b009652007-07-25 00:24:17 +0000237
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000238 assert(ExprType->isFunctionType() && "Unknown scalar value");
239 return RValue::get(Ptr);
Chris Lattner4b009652007-07-25 00:24:17 +0000240 }
241
242 if (LV.isVectorElt()) {
Eli Friedman2e630542008-06-13 23:01:12 +0000243 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
244 LV.isVolatileQualified(), "tmp");
Chris Lattner4b009652007-07-25 00:24:17 +0000245 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
246 "vecext"));
247 }
Chris Lattnera735fac2007-08-03 00:16:29 +0000248
249 // If this is a reference to a subset of the elements of a vector, either
250 // shuffle the input or extract/insert them as appropriate.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000251 if (LV.isExtVectorElt())
252 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000253
254 if (LV.isBitfield())
255 return EmitLoadOfBitfieldLValue(LV, ExprType);
256
Daniel Dunbare6c31752008-08-29 08:11:39 +0000257 if (LV.isPropertyRef())
258 return EmitLoadOfPropertyRefLValue(LV, ExprType);
259
Chris Lattner09020ee2009-02-16 21:11:58 +0000260 assert(LV.isKVCRef() && "Unknown LValue type!");
261 return EmitLoadOfKVCRefLValue(LV, ExprType);
Chris Lattner4b009652007-07-25 00:24:17 +0000262}
263
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000264RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
265 QualType ExprType) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000266 unsigned StartBit = LV.getBitfieldStartBit();
267 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000268 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000269
270 const llvm::Type *EltTy =
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000271 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000272 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000273
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000274 // In some cases the bitfield may straddle two memory locations.
275 // Currently we load the entire bitfield, then do the magic to
276 // sign-extend it if necessary. This results in somewhat more code
277 // than necessary for the common case (one load), since two shifts
278 // accomplish both the masking and sign extension.
279 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
280 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
281
282 // Shift to proper location.
Daniel Dunbar198edd52008-11-13 02:20:34 +0000283 if (StartBit)
284 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
285 "bf.lo");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000286
287 // Mask off unused bits.
288 llvm::Constant *LowMask =
289 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
290 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
291
292 // Fetch the high bits if necessary.
293 if (LowBits < BitfieldSize) {
294 unsigned HighBits = BitfieldSize - LowBits;
295 llvm::Value *HighPtr =
296 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
297 "bf.ptr.hi");
298 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
299 LV.isVolatileQualified(),
300 "tmp");
301
302 // Mask off unused bits.
303 llvm::Constant *HighMask =
304 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
305 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000306
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000307 // Shift to proper location and or in to bitfield value.
308 HighVal = Builder.CreateShl(HighVal,
309 llvm::ConstantInt::get(EltTy, LowBits));
310 Val = Builder.CreateOr(Val, HighVal, "bf.val");
311 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000312
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000313 // Sign extend if necessary.
314 if (LV.isBitfieldSigned()) {
315 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
316 EltTySize - BitfieldSize);
317 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
318 ExtraBits, "bf.val.sext");
319 }
Eli Friedmana04e70d2008-05-17 20:03:47 +0000320
321 // The bitfield type and the normal type differ when the storage sizes
322 // differ (currently just _Bool).
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000323 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000324
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000325 return RValue::get(Val);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000326}
327
Daniel Dunbare6c31752008-08-29 08:11:39 +0000328RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
329 QualType ExprType) {
330 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
331}
332
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000333RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
334 QualType ExprType) {
335 return EmitObjCPropertyGet(LV.getKVCRefExpr());
336}
337
Nate Begeman7903d052009-01-18 06:42:49 +0000338// If this is a reference to a subset of the elements of a vector, create an
339// appropriate shufflevector.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000340RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
341 QualType ExprType) {
Eli Friedman2e630542008-06-13 23:01:12 +0000342 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
343 LV.isVolatileQualified(), "tmp");
Chris Lattner944f7962007-08-03 16:18:34 +0000344
Nate Begemanc8e51f82008-05-09 06:41:27 +0000345 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner944f7962007-08-03 16:18:34 +0000346
347 // If the result of the expression is a non-vector type, we must be
348 // extracting a single element. Just codegen as an extractelement.
Chris Lattner4b492962007-08-10 17:10:08 +0000349 const VectorType *ExprVT = ExprType->getAsVectorType();
350 if (!ExprVT) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000351 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000352 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
353 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
354 }
Nate Begeman7903d052009-01-18 06:42:49 +0000355
356 // Always use shuffle vector to try to retain the original program structure
Chris Lattner4b492962007-08-10 17:10:08 +0000357 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner944f7962007-08-03 16:18:34 +0000358
Nate Begeman7903d052009-01-18 06:42:49 +0000359 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner944f7962007-08-03 16:18:34 +0000360 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000361 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman7903d052009-01-18 06:42:49 +0000362 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner944f7962007-08-03 16:18:34 +0000363 }
364
Nate Begeman7903d052009-01-18 06:42:49 +0000365 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
366 Vec = Builder.CreateShuffleVector(Vec,
367 llvm::UndefValue::get(Vec->getType()),
368 MaskV, "tmp");
369 return RValue::get(Vec);
Chris Lattner944f7962007-08-03 16:18:34 +0000370}
371
372
Chris Lattner4b009652007-07-25 00:24:17 +0000373
374/// EmitStoreThroughLValue - Store the specified rvalue into the specified
375/// lvalue, where both are guaranteed to the have the same type, and that type
376/// is 'Ty'.
377void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
378 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000379 if (!Dst.isSimple()) {
380 if (Dst.isVectorElt()) {
381 // Read/modify/write the vector, inserting the new element.
Eli Friedman2e630542008-06-13 23:01:12 +0000382 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
383 Dst.isVolatileQualified(), "tmp");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000384 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner5bfdd232007-08-03 16:28:33 +0000385 Dst.getVectorIdx(), "vecins");
Eli Friedman2e630542008-06-13 23:01:12 +0000386 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000387 return;
388 }
Chris Lattner4b009652007-07-25 00:24:17 +0000389
Nate Begemanaf6ed502008-04-18 23:10:10 +0000390 // If this is an update of extended vector elements, insert them as
391 // appropriate.
392 if (Dst.isExtVectorElt())
393 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000394
395 if (Dst.isBitfield())
396 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
397
Daniel Dunbare6c31752008-08-29 08:11:39 +0000398 if (Dst.isPropertyRef())
399 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
400
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000401 if (Dst.isKVCRef())
402 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
403
Lauro Ramos Venancio14d39842008-01-22 22:38:35 +0000404 assert(0 && "Unknown LValue type");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000405 }
Chris Lattner4b009652007-07-25 00:24:17 +0000406
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000407 if (Dst.isObjCWeak()) {
408 // load of a __weak object.
409 llvm::Value *LvalueDst = Dst.getAddress();
410 llvm::Value *src = Src.getScalarVal();
411 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
412 return;
413 }
414
415 if (Dst.isObjCStrong()) {
416 // load of a __strong object.
417 llvm::Value *LvalueDst = Dst.getAddress();
418 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian5a0c3412009-02-19 18:29:24 +0000419#if 0
420 // FIXME. We cannot positively determine if we have an
421 // 'ivar' assignment, object assignment or an unknown
422 // assignment. For now, generate call to objc_assign_strongCast
423 // assignment which is a safe, but consevative assumption.
Fariborz Jahanian70522662008-11-20 20:53:20 +0000424 if (Dst.isObjCIvar())
425 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
426 else
427 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian5a0c3412009-02-19 18:29:24 +0000428#endif
429 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000430 return;
431 }
432
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000433 assert(Src.isScalar() && "Can't emit an agg store with this method");
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000434 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
435 Dst.isVolatileQualified());
Chris Lattner4b009652007-07-25 00:24:17 +0000436}
437
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000438void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000439 QualType Ty,
440 llvm::Value **Result) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000441 unsigned StartBit = Dst.getBitfieldStartBit();
442 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000443 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000444
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000445 const llvm::Type *EltTy =
446 cast<llvm::PointerType>(Ptr->getType())->getElementType();
447 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
448
449 // Get the new value, cast to the appropriate type and masked to
450 // exactly the size of the bit-field.
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000451 llvm::Value *SrcVal = Src.getScalarVal();
452 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000453 llvm::Constant *Mask =
454 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
455 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000456
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000457 // Return the new value of the bit-field, if requested.
458 if (Result) {
459 // Cast back to the proper type for result.
460 const llvm::Type *SrcTy = SrcVal->getType();
461 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
462 "bf.reload.val");
463
464 // Sign extend if necessary.
465 if (Dst.isBitfieldSigned()) {
466 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
467 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
468 SrcTySize - BitfieldSize);
469 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
470 ExtraBits, "bf.reload.sext");
471 }
472
473 *Result = SrcTrunc;
474 }
475
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000476 // In some cases the bitfield may straddle two memory locations.
477 // Emit the low part first and check to see if the high needs to be
478 // done.
479 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
480 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
481 "bf.prev.low");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000482
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000483 // Compute the mask for zero-ing the low part of this bitfield.
484 llvm::Constant *InvMask =
485 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
486 StartBit + LowBits));
487
488 // Compute the new low part as
489 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
490 // with the shift of NewVal implicitly stripping the high bits.
491 llvm::Value *NewLowVal =
492 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
493 "bf.value.lo");
494 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
495 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
496
497 // Write back.
498 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedmana04e70d2008-05-17 20:03:47 +0000499
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000500 // If the low part doesn't cover the bitfield emit a high part.
501 if (LowBits < BitfieldSize) {
502 unsigned HighBits = BitfieldSize - LowBits;
503 llvm::Value *HighPtr =
504 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
505 "bf.ptr.hi");
506 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
507 Dst.isVolatileQualified(),
508 "bf.prev.hi");
509
510 // Compute the mask for zero-ing the high part of this bitfield.
511 llvm::Constant *InvMask =
512 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
513
514 // Compute the new high part as
515 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
516 // where the high bits of NewVal have already been cleared and the
517 // shift stripping the low bits.
518 llvm::Value *NewHighVal =
519 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
520 "bf.value.high");
521 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
522 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
523
524 // Write back.
525 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
526 }
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000527}
528
Daniel Dunbare6c31752008-08-29 08:11:39 +0000529void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
530 LValue Dst,
531 QualType Ty) {
532 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
533}
534
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000535void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
536 LValue Dst,
537 QualType Ty) {
538 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
539}
540
Nate Begemanaf6ed502008-04-18 23:10:10 +0000541void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
542 LValue Dst,
543 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000544 // This access turns into a read/modify/write of the vector. Load the input
545 // value now.
Eli Friedman2e630542008-06-13 23:01:12 +0000546 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
547 Dst.isVolatileQualified(), "tmp");
Nate Begemanc8e51f82008-05-09 06:41:27 +0000548 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000549
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000550 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000551
Chris Lattner940966d2007-08-03 16:37:04 +0000552 if (const VectorType *VTy = Ty->getAsVectorType()) {
553 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman7903d052009-01-18 06:42:49 +0000554 unsigned NumDstElts =
555 cast<llvm::VectorType>(Vec->getType())->getNumElements();
556 if (NumDstElts == NumSrcElts) {
557 // Use shuffle vector is the src and destination are the same number
558 // of elements
559 llvm::SmallVector<llvm::Constant*, 4> Mask;
560 for (unsigned i = 0; i != NumSrcElts; ++i) {
561 unsigned InIdx = getAccessedFieldNo(i, Elts);
562 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
563 }
564
565 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
566 Vec = Builder.CreateShuffleVector(SrcVal,
567 llvm::UndefValue::get(Vec->getType()),
568 MaskV, "tmp");
569 }
570 else if (NumDstElts > NumSrcElts) {
571 // Extended the source vector to the same length and then shuffle it
572 // into the destination.
573 // FIXME: since we're shuffling with undef, can we just use the indices
574 // into that? This could be simpler.
575 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
576 unsigned i;
577 for (i = 0; i != NumSrcElts; ++i)
578 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
579 for (; i != NumDstElts; ++i)
580 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
581 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
582 ExtMask.size());
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +0000583 llvm::Value *ExtSrcVal =
584 Builder.CreateShuffleVector(SrcVal,
585 llvm::UndefValue::get(SrcVal->getType()),
586 ExtMaskV, "tmp");
Nate Begeman7903d052009-01-18 06:42:49 +0000587 // build identity
588 llvm::SmallVector<llvm::Constant*, 4> Mask;
589 for (unsigned i = 0; i != NumDstElts; ++i) {
590 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
591 }
592 // modify when what gets shuffled in
593 for (unsigned i = 0; i != NumSrcElts; ++i) {
594 unsigned Idx = getAccessedFieldNo(i, Elts);
595 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
596 }
597 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
598 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
599 }
600 else {
601 // We should never shorten the vector
602 assert(0 && "unexpected shorten vector length");
Chris Lattner940966d2007-08-03 16:37:04 +0000603 }
604 } else {
605 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4751a3a2008-05-22 00:50:06 +0000606 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner5bfdd232007-08-03 16:28:33 +0000607 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
608 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000609 }
610
Eli Friedman2e630542008-06-13 23:01:12 +0000611 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000612}
613
Fariborz Jahanianb8ca6ff2009-02-18 21:49:28 +0000614/// SetDeclObjCGCAttrInLvalue - Set __weak/__strong attributes into the LValue
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000615/// object.
Fariborz Jahanianb8ca6ff2009-02-18 21:49:28 +0000616static void SetDeclObjCGCAttrInLvalue(ASTContext &Ctx, const QualType &Ty,
617 LValue &LV)
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000618{
Fariborz Jahanianb8ca6ff2009-02-18 21:49:28 +0000619 QualType::GCAttrTypes attr = Ctx.getObjCGCAttrKind(Ty);
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000620 LValue::SetObjCType(attr, LV);
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000621}
Chris Lattner4b009652007-07-25 00:24:17 +0000622
623LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000624 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
625
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000626 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
627 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000628 LValue LV;
629 if (VD->getStorageClass() == VarDecl::Extern) {
630 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
631 E->getType().getCVRQualifiers());
632 }
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000633 else {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000634 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000635 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000636 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000637 }
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000638 if (VD->isBlockVarDecl() &&
639 (VD->getStorageClass() == VarDecl::Static ||
640 VD->getStorageClass() == VarDecl::Extern))
Fariborz Jahanianb8ca6ff2009-02-18 21:49:28 +0000641 SetDeclObjCGCAttrInLvalue(getContext(), E->getType(), LV);
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),
645 E->getType().getCVRQualifiers());
Fariborz Jahanianb8ca6ff2009-02-18 21:49:28 +0000646 SetDeclObjCGCAttrInLvalue(getContext(), E->getType(), LV);
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),
Eli Friedman2e630542008-06-13 23:01:12 +0000650 E->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000651 }
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000652 else if (const ImplicitParamDecl *IPD =
653 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
654 llvm::Value *V = LocalDeclMap[IPD];
655 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
656 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
657 }
Chris Lattner4b009652007-07-25 00:24:17 +0000658 assert(0 && "Unimp declref");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000659 //an invalid LValue, but the assert will
660 //ensure that this point is never reached.
661 return LValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000662}
663
664LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
665 // __extension__ doesn't affect lvalue-ness.
666 if (E->getOpcode() == UnaryOperator::Extension)
667 return EmitLValue(E->getSubExpr());
668
Chris Lattnerc154ac12008-07-26 22:37:01 +0000669 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner5bf72022007-10-30 22:53:42 +0000670 switch (E->getOpcode()) {
671 default: assert(0 && "Unknown unary operator lvalue!");
672 case UnaryOperator::Deref:
Eli Friedman2e630542008-06-13 23:01:12 +0000673 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000674 ExprTy->getAsPointerType()->getPointeeType()
675 .getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000676 case UnaryOperator::Real:
677 case UnaryOperator::Imag:
678 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner07307562008-03-19 05:19:41 +0000679 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
680 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000681 Idx, "idx"),
682 ExprTy.getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000683 }
Chris Lattner4b009652007-07-25 00:24:17 +0000684}
685
686LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000687 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4b009652007-07-25 00:24:17 +0000688}
689
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000690LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000691 std::string GlobalVarName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000692
693 switch (Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000694 default:
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000695 assert(0 && "Invalid type");
Chris Lattner69909292008-08-10 01:53:14 +0000696 case PredefinedExpr::Func:
Chris Lattner4b009652007-07-25 00:24:17 +0000697 GlobalVarName = "__func__.";
698 break;
Chris Lattner69909292008-08-10 01:53:14 +0000699 case PredefinedExpr::Function:
Chris Lattner4b009652007-07-25 00:24:17 +0000700 GlobalVarName = "__FUNCTION__.";
701 break;
Chris Lattner69909292008-08-10 01:53:14 +0000702 case PredefinedExpr::PrettyFunction:
Chris Lattner4b009652007-07-25 00:24:17 +0000703 // FIXME:: Demangle C++ method names
704 GlobalVarName = "__PRETTY_FUNCTION__.";
705 break;
706 }
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000707
708 std::string FunctionName;
709 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
Douglas Gregor3c3c4542009-02-18 23:53:56 +0000710 FunctionName = CGM.getMangledName(FD);
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000711 } else {
712 // Just get the mangled name.
713 FunctionName = CurFn->getName();
714 }
715
Chris Lattner6e6a5972008-04-04 04:07:35 +0000716 GlobalVarName += FunctionName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000717 llvm::Constant *C =
718 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
719 return LValue::MakeAddr(C, 0);
720}
721
722LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
723 switch (E->getIdentType()) {
724 default:
725 return EmitUnsupportedLValue(E, "predefined expression");
726 case PredefinedExpr::Func:
727 case PredefinedExpr::Function:
728 case PredefinedExpr::PrettyFunction:
729 return EmitPredefinedFunctionName(E->getIdentType());
730 }
Chris Lattner4b009652007-07-25 00:24:17 +0000731}
732
733LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000734 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000735 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Chris Lattner4b009652007-07-25 00:24:17 +0000736
737 // If the base is a vector type, then we are forming a vector element lvalue
738 // with this subscript.
Eli Friedman2e630542008-06-13 23:01:12 +0000739 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000740 // Emit the vector as an lvalue to get its address.
Eli Friedman2e630542008-06-13 23:01:12 +0000741 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000742 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Chris Lattner4b009652007-07-25 00:24:17 +0000743 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman2e630542008-06-13 23:01:12 +0000744 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
745 E->getBase()->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000746 }
747
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000748 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000749 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner4b009652007-07-25 00:24:17 +0000750
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000751 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner2af72ac2007-08-08 17:43:05 +0000752 QualType IdxTy = E->getIdx()->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000753 bool IdxSigned = IdxTy->isSignedIntegerType();
754 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
755 if (IdxBitwidth != LLVMPointerWidth)
756 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
757 IdxSigned, "idxprom");
758
759 // We know that the pointer points to a type of the correct size, unless the
760 // size is a VLA.
Anders Carlsson3bb57e82008-12-21 00:11:23 +0000761 if (const VariableArrayType *VAT =
762 getContext().getAsVariableArrayType(E->getType())) {
763 llvm::Value *VLASize = VLASizeMap[VAT];
764
765 Idx = Builder.CreateMul(Idx, VLASize);
766
Anders Carlsson76d19c82008-12-21 03:44:36 +0000767 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson3bb57e82008-12-21 00:11:23 +0000768
769 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
770 Idx = Builder.CreateUDiv(Idx,
771 llvm::ConstantInt::get(Idx->getType(),
772 BaseTypeSize));
773 }
774
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000775 QualType T = E->getBase()->getType();
776 QualType ExprTy = getContext().getCanonicalType(T);
777 T = T->getAsPointerType()->getPointeeType();
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000778
Eli Friedman2e630542008-06-13 23:01:12 +0000779 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000780 ExprTy->getAsPointerType()->getPointeeType().getCVRQualifiers(),
781 getContext().getObjCGCAttrKind(T));
Chris Lattner4b009652007-07-25 00:24:17 +0000782}
783
Nate Begemana1ae7442008-05-13 21:03:02 +0000784static
785llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
786 llvm::SmallVector<llvm::Constant *, 4> CElts;
787
788 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
789 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
790
791 return llvm::ConstantVector::get(&CElts[0], CElts.size());
792}
793
Chris Lattner65520192007-08-02 23:37:31 +0000794LValue CodeGenFunction::
Nate Begemanaf6ed502008-04-18 23:10:10 +0000795EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner65520192007-08-02 23:37:31 +0000796 // Emit the base vector as an l-value.
Chris Lattner09020ee2009-02-16 21:11:58 +0000797 LValue Base;
798
799 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner98e7fcc2009-02-16 22:14:05 +0000800 if (!E->isArrow()) {
Chris Lattner09020ee2009-02-16 21:11:58 +0000801 assert(E->getBase()->getType()->isVectorType());
802 Base = EmitLValue(E->getBase());
Chris Lattner98e7fcc2009-02-16 22:14:05 +0000803 } else {
804 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
805 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
806 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner09020ee2009-02-16 21:11:58 +0000807 }
Chris Lattner65520192007-08-02 23:37:31 +0000808
Nate Begemana1ae7442008-05-13 21:03:02 +0000809 // Encode the element access list into a vector of unsigned indices.
810 llvm::SmallVector<unsigned, 4> Indices;
811 E->getEncodedElementAccess(Indices);
812
813 if (Base.isSimple()) {
814 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman2e630542008-06-13 23:01:12 +0000815 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner9df79c32009-02-16 22:25:49 +0000816 Base.getQualifiers());
Nate Begemana1ae7442008-05-13 21:03:02 +0000817 }
818 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
819
820 llvm::Constant *BaseElts = Base.getExtVectorElts();
821 llvm::SmallVector<llvm::Constant *, 4> CElts;
822
823 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
824 if (isa<llvm::ConstantAggregateZero>(BaseElts))
825 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
826 else
827 CElts.push_back(BaseElts->getOperand(Indices[i]));
828 }
829 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman2e630542008-06-13 23:01:12 +0000830 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner9df79c32009-02-16 22:25:49 +0000831 Base.getQualifiers());
Chris Lattner65520192007-08-02 23:37:31 +0000832}
833
Devang Patel41b66252007-10-23 20:28:39 +0000834LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patele1f79db2007-12-11 21:33:16 +0000835 bool isUnion = false;
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000836 bool isIvar = false;
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000837 Expr *BaseExpr = E->getBase();
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000838 llvm::Value *BaseValue = NULL;
Eli Friedman2e630542008-06-13 23:01:12 +0000839 unsigned CVRQualifiers=0;
840
Chris Lattner659079e2007-12-02 18:52:07 +0000841 // 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 +0000842 if (E->isArrow()) {
Devang Patel2b24fd92007-10-26 18:15:21 +0000843 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patele1f79db2007-12-11 21:33:16 +0000844 const PointerType *PTy =
Chris Lattnerc154ac12008-07-26 22:37:01 +0000845 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patele1f79db2007-12-11 21:33:16 +0000846 if (PTy->getPointeeType()->isUnionType())
847 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000848 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner9df79c32009-02-16 22:25:49 +0000849 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
850 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian4e881652009-01-12 23:27:26 +0000851 RValue RV = EmitObjCPropertyGet(BaseExpr);
852 BaseValue = RV.getAggregateAddr();
853 if (BaseExpr->getType()->isUnionType())
854 isUnion = true;
855 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner9df79c32009-02-16 22:25:49 +0000856 } else {
Chris Lattner659079e2007-12-02 18:52:07 +0000857 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000858 if (BaseLV.isObjCIvar())
859 isIvar = true;
Chris Lattner659079e2007-12-02 18:52:07 +0000860 // FIXME: this isn't right for bitfields.
861 BaseValue = BaseLV.getAddress();
Devang Patele1f79db2007-12-11 21:33:16 +0000862 if (BaseExpr->getType()->isUnionType())
863 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000864 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner659079e2007-12-02 18:52:07 +0000865 }
Devang Patel41b66252007-10-23 20:28:39 +0000866
Douglas Gregor82d44772008-12-20 23:49:58 +0000867 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
868 // FIXME: Handle non-field member expressions
869 assert(Field && "No code generation for non-field member references");
Chris Lattner9df79c32009-02-16 22:25:49 +0000870 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
871 CVRQualifiers);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000872 LValue::SetObjCIvar(MemExpLV, isIvar);
873 return MemExpLV;
Eli Friedmand3550112008-02-09 08:50:58 +0000874}
Devang Patel41b66252007-10-23 20:28:39 +0000875
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000876LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
877 FieldDecl* Field,
Fariborz Jahanianc912eb72009-02-03 19:03:09 +0000878 unsigned CVRQualifiers) {
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +0000879 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000880 // FIXME: CodeGenTypes should expose a method to get the appropriate
881 // type for FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +0000882 const llvm::Type *FieldTy =
883 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000884 const llvm::PointerType *BaseTy =
885 cast<llvm::PointerType>(BaseValue->getType());
886 unsigned AS = BaseTy->getAddressSpace();
887 BaseValue = Builder.CreateBitCast(BaseValue,
888 llvm::PointerType::get(FieldTy, AS),
889 "tmp");
890 llvm::Value *V = Builder.CreateGEP(BaseValue,
891 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
892 "tmp");
893
894 CodeGenTypes::BitFieldInfo bitFieldInfo =
895 CGM.getTypes().getBitFieldInfo(Field);
896 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
897 Field->getType()->isSignedIntegerType(),
898 Field->getType().getCVRQualifiers()|CVRQualifiers);
899}
900
Eli Friedmand3550112008-02-09 08:50:58 +0000901LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
902 FieldDecl* Field,
Eli Friedman2e630542008-06-13 23:01:12 +0000903 bool isUnion,
904 unsigned CVRQualifiers)
Eli Friedmand3550112008-02-09 08:50:58 +0000905{
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000906 if (Field->isBitField())
Fariborz Jahanianc912eb72009-02-03 19:03:09 +0000907 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000908
Fariborz Jahanianc912eb72009-02-03 19:03:09 +0000909 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000910 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman66813742008-05-29 11:33:25 +0000911
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000912 // Match union field type.
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000913 if (isUnion) {
Eli Friedman2e630542008-06-13 23:01:12 +0000914 const llvm::Type *FieldTy =
915 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patel0f2a8fb2007-10-30 20:59:40 +0000916 const llvm::PointerType * BaseTy =
917 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedmancecdc6b2008-05-21 13:24:44 +0000918 unsigned AS = BaseTy->getAddressSpace();
919 V = Builder.CreateBitCast(V,
920 llvm::PointerType::get(FieldTy, AS),
921 "tmp");
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000922 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000923
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000924 LValue LV =
925 LValue::MakeAddr(V,
926 Field->getType().getCVRQualifiers()|CVRQualifiers);
Fariborz Jahanian80ff83c2009-02-18 17:52:36 +0000927 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000928 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
929 QualType Ty = Field->getType();
930 QualType::GCAttrTypes attr = Ty.getObjCGCAttr();
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000931 if (attr != QualType::GCNone) {
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000932 // __weak attribute on a field is ignored.
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000933 if (attr == QualType::Strong)
934 LValue::SetObjCType(QualType::Strong, LV);
935 }
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000936 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000937 LValue::SetObjCType(QualType::Strong, LV);
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000938
939 }
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000940 return LV;
Devang Patel41b66252007-10-23 20:28:39 +0000941}
942
Eli Friedman2e630542008-06-13 23:01:12 +0000943LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
944{
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000945 const llvm::Type *LTy = ConvertType(E->getType());
946 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
947
948 const Expr* InitExpr = E->getInitializer();
Eli Friedman2e630542008-06-13 23:01:12 +0000949 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000950
951 if (E->getType()->isComplexType()) {
952 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
953 } else if (hasAggregateLLVMType(E->getType())) {
954 EmitAnyExpr(InitExpr, DeclPtr, false);
955 } else {
956 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
957 }
958
959 return Result;
960}
961
Chris Lattner4b009652007-07-25 00:24:17 +0000962//===--------------------------------------------------------------------===//
963// Expression Emission
964//===--------------------------------------------------------------------===//
965
Chris Lattnerb2cb9cb2007-08-20 22:37:10 +0000966
Chris Lattner4b009652007-07-25 00:24:17 +0000967RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson49865302007-08-20 18:05:56 +0000968 if (const ImplicitCastExpr *IcExpr =
969 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
970 if (const DeclRefExpr *DRExpr =
971 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
972 if (const FunctionDecl *FDecl =
973 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
Douglas Gregorb5af7382009-02-14 18:57:46 +0000974 if (unsigned builtinID = FDecl->getBuiltinID(getContext()))
Daniel Dunbarfd46ea22009-02-16 22:43:43 +0000975 return EmitBuiltinExpr(FDecl, builtinID, E);
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000976
Daniel Dunbare3a6a682009-01-09 16:50:52 +0000977 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssond2a889b2009-02-12 00:39:25 +0000978 return EmitBlockCallExpr(E);
Daniel Dunbare3a6a682009-01-09 16:50:52 +0000979
Chris Lattner9fba49a2007-08-24 05:35:26 +0000980 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman261f4ad2008-01-30 01:32:06 +0000981 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek2719e982008-06-17 02:43:46 +0000982 E->arg_begin(), E->arg_end());
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000983}
984
Ted Kremenek2719e982008-06-17 02:43:46 +0000985RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
986 CallExpr::const_arg_iterator ArgBeg,
987 CallExpr::const_arg_iterator ArgEnd) {
988
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000989 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek2719e982008-06-17 02:43:46 +0000990 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattner02c60f52007-08-31 04:44:06 +0000991}
992
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000993LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
994 // Can only get l-value for binary operator expressions which are a
995 // simple assignment of aggregate type.
996 if (E->getOpcode() != BinaryOperator::Assign)
997 return EmitUnsupportedLValue(E, "binary l-value expression");
998
999 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1000 EmitAggExpr(E, Temp, false);
1001 // FIXME: Are these qualifiers correct?
1002 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1003}
1004
Christopher Lambad327ba2007-12-29 05:02:41 +00001005LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
1006 // Can only get l-value for call expression returning aggregate type
1007 RValue RV = EmitCallExpr(E);
Eli Friedman2e630542008-06-13 23:01:12 +00001008 return LValue::MakeAddr(RV.getAggregateAddr(),
1009 E->getType().getCVRQualifiers());
Christopher Lambad327ba2007-12-29 05:02:41 +00001010}
1011
Daniel Dunbar95d08f22009-02-11 20:59:32 +00001012LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1013 // FIXME: This shouldn't require another copy.
1014 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1015 EmitAggExpr(E, Temp, false);
1016 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1017}
1018
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +00001019LValue
1020CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1021 EmitLocalBlockVarDecl(*E->getVarDecl());
1022 return EmitDeclRefLValue(E);
1023}
1024
Daniel Dunbar5e105892008-08-23 10:51:21 +00001025LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1026 // Can only get l-value for message expression returning aggregate type
1027 RValue RV = EmitObjCMessageExpr(E);
1028 // FIXME: can this be volatile?
1029 return LValue::MakeAddr(RV.getAggregateAddr(),
1030 E->getType().getCVRQualifiers());
1031}
1032
Daniel Dunbare856ac22008-09-24 04:00:38 +00001033llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
1034 const ObjCIvarDecl *Ivar) {
Chris Lattnerb326b172008-03-30 23:03:07 +00001035 // Objective-C objects are traditionally C structures with their layout
1036 // defined at compile-time. In some implementations, their layout is not
1037 // defined until run time in order to allow instance variables to be added to
1038 // a class without recompiling all of the subclasses. If this is the case
1039 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
1040 // implement the lookup itself.
Daniel Dunbare856ac22008-09-24 04:00:38 +00001041 if (CGM.getObjCRuntime().LateBoundIVars())
1042 assert(0 && "late-bound ivars are unsupported");
Fariborz Jahanian27cc6662009-02-10 19:02:04 +00001043 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbare856ac22008-09-24 04:00:38 +00001044}
1045
Fariborz Jahanian55343922009-02-03 00:09:52 +00001046LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1047 llvm::Value *BaseValue,
Daniel Dunbare856ac22008-09-24 04:00:38 +00001048 const ObjCIvarDecl *Ivar,
Fariborz Jahanian86008c02008-12-15 20:35:07 +00001049 const FieldDecl *Field,
Daniel Dunbare856ac22008-09-24 04:00:38 +00001050 unsigned CVRQualifiers) {
1051 // See comment in EmitIvarOffset.
1052 if (CGM.getObjCRuntime().LateBoundIVars())
1053 assert(0 && "late-bound ivars are unsupported");
Daniel Dunbare856ac22008-09-24 04:00:38 +00001054
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +00001055 LValue LV = CGM.getObjCRuntime().EmitObjCValueForIvar(*this,
1056 ObjectTy,
1057 BaseValue, Ivar, Field,
1058 CVRQualifiers);
Fariborz Jahanianb8ca6ff2009-02-18 21:49:28 +00001059 SetDeclObjCGCAttrInLvalue(getContext(), Ivar->getType(), LV);
Fariborz Jahanian70522662008-11-20 20:53:20 +00001060 return LV;
Daniel Dunbare856ac22008-09-24 04:00:38 +00001061}
1062
1063LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonae61b002008-08-25 01:53:23 +00001064 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1065 llvm::Value *BaseValue = 0;
1066 const Expr *BaseExpr = E->getBase();
1067 unsigned CVRQualifiers = 0;
Fariborz Jahanian55343922009-02-03 00:09:52 +00001068 QualType ObjectTy;
Anders Carlssonae61b002008-08-25 01:53:23 +00001069 if (E->isArrow()) {
1070 BaseValue = EmitScalarExpr(BaseExpr);
1071 const PointerType *PTy =
1072 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Fariborz Jahanian55343922009-02-03 00:09:52 +00001073 ObjectTy = PTy->getPointeeType();
1074 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonae61b002008-08-25 01:53:23 +00001075 } else {
1076 LValue BaseLV = EmitLValue(BaseExpr);
1077 // FIXME: this isn't right for bitfields.
1078 BaseValue = BaseLV.getAddress();
Fariborz Jahanian55343922009-02-03 00:09:52 +00001079 ObjectTy = BaseExpr->getType();
1080 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonae61b002008-08-25 01:53:23 +00001081 }
Daniel Dunbare856ac22008-09-24 04:00:38 +00001082
Fariborz Jahanian55343922009-02-03 00:09:52 +00001083 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
Fariborz Jahanianea944842008-12-18 17:29:46 +00001084 getContext().getFieldDecl(E), CVRQualifiers);
Chris Lattnerb326b172008-03-30 23:03:07 +00001085}
1086
Daniel Dunbare6c31752008-08-29 08:11:39 +00001087LValue
1088CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1089 // This is a special l-value that just issues sends when we load or
1090 // store through it.
1091 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1092}
1093
Fariborz Jahanianb0973da2008-11-22 22:30:21 +00001094LValue
1095CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1096 // This is a special l-value that just issues sends when we load or
1097 // store through it.
1098 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1099}
1100
Douglas Gregord8606632008-11-04 14:56:14 +00001101LValue
1102CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
1103 return EmitUnsupportedLValue(E, "use of super");
1104}
1105
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001106RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek2719e982008-06-17 02:43:46 +00001107 CallExpr::const_arg_iterator ArgBeg,
1108 CallExpr::const_arg_iterator ArgEnd) {
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001109 // Get the actual function type. The callee type will always be a
1110 // pointer to function type or a block pointer type.
1111 QualType ResultType;
1112 if (const BlockPointerType *BPT = dyn_cast<BlockPointerType>(CalleeType)) {
1113 ResultType = BPT->getPointeeType()->getAsFunctionType()->getResultType();
1114 } else {
1115 assert(CalleeType->isFunctionPointerType() &&
1116 "Call must have function pointer type!");
1117 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1118 ResultType = FnType->getAsFunctionType()->getResultType();
1119 }
Daniel Dunbar0ed60b02008-08-30 03:02:31 +00001120
1121 CallArgList Args;
1122 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar0a2da0f2008-09-09 01:06:48 +00001123 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
1124 I->getType()));
Daniel Dunbar0ed60b02008-08-30 03:02:31 +00001125
Daniel Dunbar34bda882009-02-02 23:23:47 +00001126 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
1127 Callee, Args);
Daniel Dunbara04840b2008-08-23 03:46:30 +00001128}