blob: 5e969308b0caf069898e8b6d0c87d6b34c93aa2e [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22using namespace CodeGen;
23
24//===--------------------------------------------------------------------===//
25// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
28/// CreateTempAlloca - This creates a alloca and inserts it into the entry
29/// block.
30llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
31 const char *Name) {
32 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
33}
34
35/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
36/// expression and compare the result against zero, returning an Int1Ty value.
37llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000038 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000039 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000040 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000041
Chris Lattner9069fa22007-08-26 16:46:58 +000042 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000043}
44
Chris Lattner9b655512007-08-31 22:49:20 +000045/// EmitAnyExpr - Emit code to compute the specified expression which can have
46/// any type. The result is returned as an RValue struct. If this is an
47/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
48/// the result should be returned.
49RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
50 bool isAggLocVolatile) {
51 if (!hasAggregateLLVMType(E->getType()))
52 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000053 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000054 return RValue::getComplex(EmitComplexExpr(E));
55
56 EmitAggExpr(E, AggLoc, isAggLocVolatile);
57 return RValue::getAggregate(AggLoc);
58}
59
Daniel Dunbar46f45b92008-09-09 01:06:48 +000060/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
61/// will always be accessible even if no aggregate location is
62/// provided.
63RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
64 bool isAggLocVolatile) {
65 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
66 !E->getType()->isAnyComplexType())
67 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
68 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
69}
70
Dan Gohman4f8d1232008-05-22 00:50:06 +000071/// getAccessedFieldNo - Given an encoded value and a result number, return
72/// the input field number being accessed.
73unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
74 const llvm::Constant *Elts) {
75 if (isa<llvm::ConstantAggregateZero>(Elts))
76 return 0;
77
78 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
79}
80
Chris Lattner9b655512007-08-31 22:49:20 +000081
Reid Spencer5f016e22007-07-11 17:01:13 +000082//===----------------------------------------------------------------------===//
83// LValue Expression Emission
84//===----------------------------------------------------------------------===//
85
Daniel Dunbar13e81732009-02-05 07:09:07 +000086RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
87 if (Ty->isVoidType()) {
88 return RValue::get(0);
89 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000090 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
91 llvm::Value *U = llvm::UndefValue::get(EltTy);
92 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbar13e81732009-02-05 07:09:07 +000093 } else if (hasAggregateLLVMType(Ty)) {
94 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
95 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000096 } else {
Daniel Dunbar13e81732009-02-05 07:09:07 +000097 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000098 }
Daniel Dunbarce1d38b2009-01-09 16:50:52 +000099}
100
Daniel Dunbar13e81732009-02-05 07:09:07 +0000101RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
102 const char *Name) {
103 ErrorUnsupported(E, Name);
104 return GetUndefRValue(E->getType());
105}
106
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000107LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
108 const char *Name) {
109 ErrorUnsupported(E, Name);
110 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
111 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
112 E->getType().getCVRQualifiers());
113}
114
Reid Spencer5f016e22007-07-11 17:01:13 +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 Dunbar6ba82a42008-08-25 20:45:57 +0000133 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000134
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000135 case Expr::BinaryOperatorClass:
136 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregorb4609802008-11-14 16:09:21 +0000137 case Expr::CallExprClass:
138 case Expr::CXXOperatorCallExprClass:
139 return EmitCallExprLValue(cast<CallExpr>(E));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000140 case Expr::DeclRefExprClass:
141 case Expr::QualifiedDeclRefExprClass:
142 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000143 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000144 case Expr::PredefinedExprClass:
145 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000146 case Expr::StringLiteralClass:
147 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000148
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000149 case Expr::CXXConditionDeclExprClass:
150 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
151
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000152 case Expr::ObjCMessageExprClass:
153 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000154 case Expr::ObjCIvarRefExprClass:
155 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000156 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000157 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000158 case Expr::ObjCKVCRefExprClass:
159 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000160 case Expr::ObjCSuperExprClass:
161 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
162
Reid Spencer5f016e22007-07-11 17:01:13 +0000163 case Expr::UnaryOperatorClass:
164 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
165 case Expr::ArraySubscriptExprClass:
166 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000167 case Expr::ExtVectorElementExprClass:
168 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000169 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000170 case Expr::CompoundLiteralExprClass:
171 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000172 case Expr::ChooseExprClass:
173 // __builtin_choose_expr is the lvalue of the selected operand.
174 if (cast<ChooseExpr>(E)->isConditionTrue(getContext()))
175 return EmitLValue(cast<ChooseExpr>(E)->getLHS());
176 else
177 return EmitLValue(cast<ChooseExpr>(E)->getRHS());
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 }
179}
180
181/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
182/// this method emits the address of the lvalue, then loads the result as an
183/// rvalue, returning the rvalue.
184RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000185 if (LV.isObjCWeak()) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000186 // load of a __weak object.
187 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000188 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000189 AddrWeakObj);
190 return RValue::get(read_weak);
191 }
192
Reid Spencer5f016e22007-07-11 17:01:13 +0000193 if (LV.isSimple()) {
194 llvm::Value *Ptr = LV.getAddress();
195 const llvm::Type *EltTy =
196 cast<llvm::PointerType>(Ptr->getType())->getElementType();
197
198 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000199 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000200 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000201
202 // Bool can have different representation in memory than in registers.
203 if (ExprType->isBooleanType()) {
204 if (V->getType() != llvm::Type::Int1Ty)
205 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
206 }
207
208 return RValue::get(V);
209 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000210
Chris Lattner883f6a72007-08-11 00:04:45 +0000211 assert(ExprType->isFunctionType() && "Unknown scalar value");
212 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000213 }
214
215 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000216 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
217 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000218 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
219 "vecext"));
220 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000221
222 // If this is a reference to a subset of the elements of a vector, either
223 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000224 if (LV.isExtVectorElt())
225 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000226
227 if (LV.isBitfield())
228 return EmitLoadOfBitfieldLValue(LV, ExprType);
229
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000230 if (LV.isPropertyRef())
231 return EmitLoadOfPropertyRefLValue(LV, ExprType);
232
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000233 if (LV.isKVCRef())
234 return EmitLoadOfKVCRefLValue(LV, ExprType);
235
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000236 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000237 //an invalid RValue, but the assert will
238 //ensure that this point is never reached
239 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000240}
241
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000242RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
243 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000244 unsigned StartBit = LV.getBitfieldStartBit();
245 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000246 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000247
248 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000249 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000250 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000251
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000252 // In some cases the bitfield may straddle two memory locations.
253 // Currently we load the entire bitfield, then do the magic to
254 // sign-extend it if necessary. This results in somewhat more code
255 // than necessary for the common case (one load), since two shifts
256 // accomplish both the masking and sign extension.
257 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
258 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
259
260 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000261 if (StartBit)
262 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
263 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000264
265 // Mask off unused bits.
266 llvm::Constant *LowMask =
267 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
268 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
269
270 // Fetch the high bits if necessary.
271 if (LowBits < BitfieldSize) {
272 unsigned HighBits = BitfieldSize - LowBits;
273 llvm::Value *HighPtr =
274 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
275 "bf.ptr.hi");
276 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
277 LV.isVolatileQualified(),
278 "tmp");
279
280 // Mask off unused bits.
281 llvm::Constant *HighMask =
282 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
283 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000284
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000285 // Shift to proper location and or in to bitfield value.
286 HighVal = Builder.CreateShl(HighVal,
287 llvm::ConstantInt::get(EltTy, LowBits));
288 Val = Builder.CreateOr(Val, HighVal, "bf.val");
289 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000290
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000291 // Sign extend if necessary.
292 if (LV.isBitfieldSigned()) {
293 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
294 EltTySize - BitfieldSize);
295 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
296 ExtraBits, "bf.val.sext");
297 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000298
299 // The bitfield type and the normal type differ when the storage sizes
300 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000301 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000302
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000303 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000304}
305
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000306RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
307 QualType ExprType) {
308 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
309}
310
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000311RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
312 QualType ExprType) {
313 return EmitObjCPropertyGet(LV.getKVCRefExpr());
314}
315
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000316// If this is a reference to a subset of the elements of a vector, create an
317// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000318RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
319 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000320 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
321 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000322
Nate Begeman8a997642008-05-09 06:41:27 +0000323 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000324
325 // If the result of the expression is a non-vector type, we must be
326 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000327 const VectorType *ExprVT = ExprType->getAsVectorType();
328 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000329 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000330 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
331 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
332 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000333
334 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000335 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000336
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000337 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000338 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000339 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000340 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000341 }
342
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000343 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
344 Vec = Builder.CreateShuffleVector(Vec,
345 llvm::UndefValue::get(Vec->getType()),
346 MaskV, "tmp");
347 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000348}
349
350
Reid Spencer5f016e22007-07-11 17:01:13 +0000351
352/// EmitStoreThroughLValue - Store the specified rvalue into the specified
353/// lvalue, where both are guaranteed to the have the same type, and that type
354/// is 'Ty'.
355void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
356 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000357 if (!Dst.isSimple()) {
358 if (Dst.isVectorElt()) {
359 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000360 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
361 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000362 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000363 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000364 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000365 return;
366 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000367
Nate Begeman213541a2008-04-18 23:10:10 +0000368 // If this is an update of extended vector elements, insert them as
369 // appropriate.
370 if (Dst.isExtVectorElt())
371 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000372
373 if (Dst.isBitfield())
374 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
375
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000376 if (Dst.isPropertyRef())
377 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
378
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000379 if (Dst.isKVCRef())
380 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
381
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000382 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000383 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000384
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000385 if (Dst.isObjCWeak()) {
386 // load of a __weak object.
387 llvm::Value *LvalueDst = Dst.getAddress();
388 llvm::Value *src = Src.getScalarVal();
389 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
390 return;
391 }
392
393 if (Dst.isObjCStrong()) {
394 // load of a __strong object.
395 llvm::Value *LvalueDst = Dst.getAddress();
396 llvm::Value *src = Src.getScalarVal();
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000397 if (Dst.isObjCIvar())
398 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
399 else
400 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000401 return;
402 }
403
Reid Spencer5f016e22007-07-11 17:01:13 +0000404 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000405 assert(Src.isScalar() && "Can't emit an agg store with this method");
406 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000407 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000408 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
409 const llvm::Type *AddrTy = DstPtr->getElementType();
410 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000411
Chris Lattner883f6a72007-08-11 00:04:45 +0000412 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000413 DstAddr = Builder.CreateBitCast(DstAddr,
414 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000415 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000416 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000417}
418
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000419void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000420 QualType Ty,
421 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000422 unsigned StartBit = Dst.getBitfieldStartBit();
423 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000424 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000425
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000426 const llvm::Type *EltTy =
427 cast<llvm::PointerType>(Ptr->getType())->getElementType();
428 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
429
430 // Get the new value, cast to the appropriate type and masked to
431 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000432 llvm::Value *SrcVal = Src.getScalarVal();
433 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000434 llvm::Constant *Mask =
435 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
436 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000437
Daniel Dunbared3849b2008-11-19 09:36:46 +0000438 // Return the new value of the bit-field, if requested.
439 if (Result) {
440 // Cast back to the proper type for result.
441 const llvm::Type *SrcTy = SrcVal->getType();
442 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
443 "bf.reload.val");
444
445 // Sign extend if necessary.
446 if (Dst.isBitfieldSigned()) {
447 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
448 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
449 SrcTySize - BitfieldSize);
450 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
451 ExtraBits, "bf.reload.sext");
452 }
453
454 *Result = SrcTrunc;
455 }
456
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000457 // In some cases the bitfield may straddle two memory locations.
458 // Emit the low part first and check to see if the high needs to be
459 // done.
460 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
461 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
462 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000463
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000464 // Compute the mask for zero-ing the low part of this bitfield.
465 llvm::Constant *InvMask =
466 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
467 StartBit + LowBits));
468
469 // Compute the new low part as
470 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
471 // with the shift of NewVal implicitly stripping the high bits.
472 llvm::Value *NewLowVal =
473 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
474 "bf.value.lo");
475 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
476 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
477
478 // Write back.
479 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000480
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000481 // If the low part doesn't cover the bitfield emit a high part.
482 if (LowBits < BitfieldSize) {
483 unsigned HighBits = BitfieldSize - LowBits;
484 llvm::Value *HighPtr =
485 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
486 "bf.ptr.hi");
487 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
488 Dst.isVolatileQualified(),
489 "bf.prev.hi");
490
491 // Compute the mask for zero-ing the high part of this bitfield.
492 llvm::Constant *InvMask =
493 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
494
495 // Compute the new high part as
496 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
497 // where the high bits of NewVal have already been cleared and the
498 // shift stripping the low bits.
499 llvm::Value *NewHighVal =
500 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
501 "bf.value.high");
502 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
503 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
504
505 // Write back.
506 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
507 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000508}
509
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000510void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
511 LValue Dst,
512 QualType Ty) {
513 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
514}
515
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000516void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
517 LValue Dst,
518 QualType Ty) {
519 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
520}
521
Nate Begeman213541a2008-04-18 23:10:10 +0000522void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
523 LValue Dst,
524 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000525 // This access turns into a read/modify/write of the vector. Load the input
526 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000527 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
528 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000529 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000530
Chris Lattner9b655512007-08-31 22:49:20 +0000531 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000532
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000533 if (const VectorType *VTy = Ty->getAsVectorType()) {
534 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000535 unsigned NumDstElts =
536 cast<llvm::VectorType>(Vec->getType())->getNumElements();
537 if (NumDstElts == NumSrcElts) {
538 // Use shuffle vector is the src and destination are the same number
539 // of elements
540 llvm::SmallVector<llvm::Constant*, 4> Mask;
541 for (unsigned i = 0; i != NumSrcElts; ++i) {
542 unsigned InIdx = getAccessedFieldNo(i, Elts);
543 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
544 }
545
546 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
547 Vec = Builder.CreateShuffleVector(SrcVal,
548 llvm::UndefValue::get(Vec->getType()),
549 MaskV, "tmp");
550 }
551 else if (NumDstElts > NumSrcElts) {
552 // Extended the source vector to the same length and then shuffle it
553 // into the destination.
554 // FIXME: since we're shuffling with undef, can we just use the indices
555 // into that? This could be simpler.
556 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
557 unsigned i;
558 for (i = 0; i != NumSrcElts; ++i)
559 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
560 for (; i != NumDstElts; ++i)
561 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
562 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
563 ExtMask.size());
564 llvm::Value *ExtSrcVal = Builder.CreateShuffleVector(SrcVal,
565 llvm::UndefValue::get(SrcVal->getType()),
566 ExtMaskV, "tmp");
567 // build identity
568 llvm::SmallVector<llvm::Constant*, 4> Mask;
569 for (unsigned i = 0; i != NumDstElts; ++i) {
570 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
571 }
572 // modify when what gets shuffled in
573 for (unsigned i = 0; i != NumSrcElts; ++i) {
574 unsigned Idx = getAccessedFieldNo(i, Elts);
575 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
576 }
577 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
578 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
579 }
580 else {
581 // We should never shorten the vector
582 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000583 }
584 } else {
585 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000586 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000587 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
588 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000589 }
590
Eli Friedman1e692ac2008-06-13 23:01:12 +0000591 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000592}
593
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000594/// SetVarDeclObjCAttribute - Set __weak/__strong attributes into the LValue
595/// object.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000596static void SetVarDeclObjCAttribute(ASTContext &Ctx, const Decl *VD,
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000597 const QualType &Ty, LValue &LV)
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000598{
599 if (const ObjCGCAttr *A = VD->getAttr<ObjCGCAttr>()) {
600 ObjCGCAttr::GCAttrTypes attrType = A->getType();
601 LValue::SetObjCType(attrType == ObjCGCAttr::Weak,
602 attrType == ObjCGCAttr::Strong, LV);
603 }
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000604 else if (Ctx.getLangOptions().ObjC1 &&
605 Ctx.getLangOptions().getGCMode() != LangOptions::NonGC) {
606 // Default behavious under objective-c's gc is for objective-c pointers
607 // be treated as though they were declared as __strong.
608 if (Ctx.isObjCObjectPointerType(Ty))
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000609 LValue::SetObjCType(false, true, LV);
610 }
611}
Reid Spencer5f016e22007-07-11 17:01:13 +0000612
613LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000614 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
615
Chris Lattner41110242008-06-17 18:05:57 +0000616 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
617 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000618 LValue LV;
619 if (VD->getStorageClass() == VarDecl::Extern) {
620 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
621 E->getType().getCVRQualifiers());
622 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000623 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000624 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000625 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000626 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000627 }
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000628 if (VD->isBlockVarDecl() &&
629 (VD->getStorageClass() == VarDecl::Static ||
630 VD->getStorageClass() == VarDecl::Extern))
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000631 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000632 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000633 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000634 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
635 E->getType().getCVRQualifiers());
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000636 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000637 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000638 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000639 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000640 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000641 }
Chris Lattner41110242008-06-17 18:05:57 +0000642 else if (const ImplicitParamDecl *IPD =
643 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
644 llvm::Value *V = LocalDeclMap[IPD];
645 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
646 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
647 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000648 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000649 //an invalid LValue, but the assert will
650 //ensure that this point is never reached.
651 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000652}
653
654LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
655 // __extension__ doesn't affect lvalue-ness.
656 if (E->getOpcode() == UnaryOperator::Extension)
657 return EmitLValue(E->getSubExpr());
658
Chris Lattner96196622008-07-26 22:37:01 +0000659 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000660 switch (E->getOpcode()) {
661 default: assert(0 && "Unknown unary operator lvalue!");
662 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000663 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000664 ExprTy->getAsPointerType()->getPointeeType()
665 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000666 case UnaryOperator::Real:
667 case UnaryOperator::Imag:
668 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000669 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
670 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000671 Idx, "idx"),
672 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000673 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000674}
675
676LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000677 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000678}
679
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000680LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000681 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000682
683 switch (Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000684 default:
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000685 assert(0 && "Invalid type");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000686 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000687 GlobalVarName = "__func__.";
688 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000689 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000690 GlobalVarName = "__FUNCTION__.";
691 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000692 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000693 // FIXME:: Demangle C++ method names
694 GlobalVarName = "__PRETTY_FUNCTION__.";
695 break;
696 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000697
698 std::string FunctionName;
699 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000700 FunctionName = FD->getNameAsString();
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000701 } else {
702 // Just get the mangled name.
703 FunctionName = CurFn->getName();
704 }
705
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000706 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000707 llvm::Constant *C =
708 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
709 return LValue::MakeAddr(C, 0);
710}
711
712LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
713 switch (E->getIdentType()) {
714 default:
715 return EmitUnsupportedLValue(E, "predefined expression");
716 case PredefinedExpr::Func:
717 case PredefinedExpr::Function:
718 case PredefinedExpr::PrettyFunction:
719 return EmitPredefinedFunctionName(E->getIdentType());
720 }
Anders Carlsson22742662007-07-21 05:21:51 +0000721}
722
Reid Spencer5f016e22007-07-11 17:01:13 +0000723LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000724 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000725 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000726
727 // If the base is a vector type, then we are forming a vector element lvalue
728 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000729 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000730 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000731 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000732 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000733 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000734 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
735 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000736 }
737
Ted Kremenek23245122007-08-20 16:18:38 +0000738 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000739 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000740
Ted Kremenek23245122007-08-20 16:18:38 +0000741 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000742 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000743 bool IdxSigned = IdxTy->isSignedIntegerType();
744 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
745 if (IdxBitwidth != LLVMPointerWidth)
746 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
747 IdxSigned, "idxprom");
748
749 // We know that the pointer points to a type of the correct size, unless the
750 // size is a VLA.
Anders Carlsson8b33c082008-12-21 00:11:23 +0000751 if (const VariableArrayType *VAT =
752 getContext().getAsVariableArrayType(E->getType())) {
753 llvm::Value *VLASize = VLASizeMap[VAT];
754
755 Idx = Builder.CreateMul(Idx, VLASize);
756
Anders Carlsson6183a992008-12-21 03:44:36 +0000757 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000758
759 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
760 Idx = Builder.CreateUDiv(Idx,
761 llvm::ConstantInt::get(Idx->getType(),
762 BaseTypeSize));
763 }
764
Chris Lattner96196622008-07-26 22:37:01 +0000765 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000766
Eli Friedman1e692ac2008-06-13 23:01:12 +0000767 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000768 ExprTy->getAsPointerType()->getPointeeType()
769 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000770}
771
Nate Begeman3b8d1162008-05-13 21:03:02 +0000772static
773llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
774 llvm::SmallVector<llvm::Constant *, 4> CElts;
775
776 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
777 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
778
779 return llvm::ConstantVector::get(&CElts[0], CElts.size());
780}
781
Chris Lattner349aaec2007-08-02 23:37:31 +0000782LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000783EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000784 // Emit the base vector as an l-value.
785 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000786
Nate Begeman3b8d1162008-05-13 21:03:02 +0000787 // Encode the element access list into a vector of unsigned indices.
788 llvm::SmallVector<unsigned, 4> Indices;
789 E->getEncodedElementAccess(Indices);
790
791 if (Base.isSimple()) {
792 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000793 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
794 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000795 }
796 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
797
798 llvm::Constant *BaseElts = Base.getExtVectorElts();
799 llvm::SmallVector<llvm::Constant *, 4> CElts;
800
801 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
802 if (isa<llvm::ConstantAggregateZero>(BaseElts))
803 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
804 else
805 CElts.push_back(BaseElts->getOperand(Indices[i]));
806 }
807 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000808 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
809 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000810}
811
Devang Patelb9b00ad2007-10-23 20:28:39 +0000812LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000813 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000814 bool isIvar = false;
Devang Patel126a8562007-10-24 22:26:28 +0000815 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000816 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000817 unsigned CVRQualifiers=0;
818
Chris Lattner12f65f62007-12-02 18:52:07 +0000819 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patelfe2419a2007-12-11 21:33:16 +0000820 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000821 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000822 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000823 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000824 if (PTy->getPointeeType()->isUnionType())
825 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000826 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000827 }
Fariborz Jahanian35c33292009-01-12 23:27:26 +0000828 else if (BaseExpr->getStmtClass() == Expr::ObjCPropertyRefExprClass ||
829 BaseExpr->getStmtClass() == Expr::ObjCKVCRefExprClass) {
830 RValue RV = EmitObjCPropertyGet(BaseExpr);
831 BaseValue = RV.getAggregateAddr();
832 if (BaseExpr->getType()->isUnionType())
833 isUnion = true;
834 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
835 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000836 else {
837 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000838 if (BaseLV.isObjCIvar())
839 isIvar = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000840 // FIXME: this isn't right for bitfields.
841 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000842 if (BaseExpr->getType()->isUnionType())
843 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000844 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000845 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000846
Douglas Gregor86f19402008-12-20 23:49:58 +0000847 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
848 // FIXME: Handle non-field member expressions
849 assert(Field && "No code generation for non-field member references");
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000850 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
851 LValue::SetObjCIvar(MemExpLV, isIvar);
852 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +0000853}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000854
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000855LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
856 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000857 unsigned CVRQualifiers) {
858 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000859 // FIXME: CodeGenTypes should expose a method to get the appropriate
860 // type for FieldTy (the appropriate type is ABI-dependent).
861 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
862 const llvm::PointerType *BaseTy =
863 cast<llvm::PointerType>(BaseValue->getType());
864 unsigned AS = BaseTy->getAddressSpace();
865 BaseValue = Builder.CreateBitCast(BaseValue,
866 llvm::PointerType::get(FieldTy, AS),
867 "tmp");
868 llvm::Value *V = Builder.CreateGEP(BaseValue,
869 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
870 "tmp");
871
872 CodeGenTypes::BitFieldInfo bitFieldInfo =
873 CGM.getTypes().getBitFieldInfo(Field);
874 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
875 Field->getType()->isSignedIntegerType(),
876 Field->getType().getCVRQualifiers()|CVRQualifiers);
877}
878
Eli Friedman472778e2008-02-09 08:50:58 +0000879LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
880 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000881 bool isUnion,
882 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000883{
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000884 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000885 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000886
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000887 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000888 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000889
Devang Patelabad06c2007-10-26 19:42:18 +0000890 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000891 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000892 const llvm::Type *FieldTy =
893 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000894 const llvm::PointerType * BaseTy =
895 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000896 unsigned AS = BaseTy->getAddressSpace();
897 V = Builder.CreateBitCast(V,
898 llvm::PointerType::get(FieldTy, AS),
899 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000900 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000901
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000902 LValue LV =
903 LValue::MakeAddr(V,
904 Field->getType().getCVRQualifiers()|CVRQualifiers);
905 if (const ObjCGCAttr *A = Field->getAttr<ObjCGCAttr>()) {
906 ObjCGCAttr::GCAttrTypes attrType = A->getType();
907 // __weak attribute on a field is ignored.
908 LValue::SetObjCType(false, attrType == ObjCGCAttr::Strong, LV);
909 }
910 else if (CGM.getLangOptions().ObjC1 &&
911 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
912 QualType ExprTy = Field->getType();
913 if (getContext().isObjCObjectPointerType(ExprTy))
914 LValue::SetObjCType(false, true, LV);
915 }
916 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +0000917}
918
Eli Friedman1e692ac2008-06-13 23:01:12 +0000919LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
920{
Eli Friedman06e863f2008-05-13 23:18:27 +0000921 const llvm::Type *LTy = ConvertType(E->getType());
922 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
923
924 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000925 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000926
927 if (E->getType()->isComplexType()) {
928 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
929 } else if (hasAggregateLLVMType(E->getType())) {
930 EmitAnyExpr(InitExpr, DeclPtr, false);
931 } else {
932 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
933 }
934
935 return Result;
936}
937
Reid Spencer5f016e22007-07-11 17:01:13 +0000938//===--------------------------------------------------------------------===//
939// Expression Emission
940//===--------------------------------------------------------------------===//
941
Chris Lattner7016a702007-08-20 22:37:10 +0000942
Reid Spencer5f016e22007-07-11 17:01:13 +0000943RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000944 if (const ImplicitCastExpr *IcExpr =
945 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
946 if (const DeclRefExpr *DRExpr =
947 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
948 if (const FunctionDecl *FDecl =
949 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
950 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
951 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000952
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000953 if (E->getCallee()->getType()->isBlockPointerType())
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000954 return EmitUnsupportedRValue(E, "block pointer reference");
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000955
Chris Lattner7f02f722007-08-24 05:35:26 +0000956 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000957 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000958 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000959}
960
Ted Kremenek55499762008-06-17 02:43:46 +0000961RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
962 CallExpr::const_arg_iterator ArgBeg,
963 CallExpr::const_arg_iterator ArgEnd) {
964
Nate Begemane2ce1d92008-01-17 17:46:27 +0000965 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000966 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000967}
968
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000969LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
970 // Can only get l-value for binary operator expressions which are a
971 // simple assignment of aggregate type.
972 if (E->getOpcode() != BinaryOperator::Assign)
973 return EmitUnsupportedLValue(E, "binary l-value expression");
974
975 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
976 EmitAggExpr(E, Temp, false);
977 // FIXME: Are these qualifiers correct?
978 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
979}
980
Christopher Lamb22c940e2007-12-29 05:02:41 +0000981LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
982 // Can only get l-value for call expression returning aggregate type
983 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000984 // FIXME: can this be volatile?
985 return LValue::MakeAddr(RV.getAggregateAddr(),
986 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000987}
988
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000989LValue
990CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
991 EmitLocalBlockVarDecl(*E->getVarDecl());
992 return EmitDeclRefLValue(E);
993}
994
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000995LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
996 // Can only get l-value for message expression returning aggregate type
997 RValue RV = EmitObjCMessageExpr(E);
998 // FIXME: can this be volatile?
999 return LValue::MakeAddr(RV.getAggregateAddr(),
1000 E->getType().getCVRQualifiers());
1001}
1002
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001003llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
1004 const ObjCIvarDecl *Ivar) {
Chris Lattner391d77a2008-03-30 23:03:07 +00001005 // Objective-C objects are traditionally C structures with their layout
1006 // defined at compile-time. In some implementations, their layout is not
1007 // defined until run time in order to allow instance variables to be added to
1008 // a class without recompiling all of the subclasses. If this is the case
1009 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
1010 // implement the lookup itself.
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001011 if (CGM.getObjCRuntime().LateBoundIVars())
1012 assert(0 && "late-bound ivars are unsupported");
Chris Lattnerc8aa5f12008-04-04 04:07:35 +00001013
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001014 const llvm::Type *InterfaceLTy =
1015 CGM.getTypes().ConvertType(getContext().getObjCInterfaceType(Interface));
1016 const llvm::StructLayout *Layout =
1017 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceLTy));
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001018 FieldDecl *Field = Interface->lookupFieldDeclForIvar(getContext(), Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001019 uint64_t Offset =
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001020 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(Field));
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001021
1022 return llvm::ConstantInt::get(CGM.getTypes().ConvertType(getContext().LongTy),
1023 Offset);
1024}
1025
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001026LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1027 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001028 const ObjCIvarDecl *Ivar,
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001029 const FieldDecl *Field,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001030 unsigned CVRQualifiers) {
1031 // See comment in EmitIvarOffset.
1032 if (CGM.getObjCRuntime().LateBoundIVars())
1033 assert(0 && "late-bound ivars are unsupported");
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001034
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001035 LValue LV = CGM.getObjCRuntime().EmitObjCValueForIvar(*this,
1036 ObjectTy,
1037 BaseValue, Ivar, Field,
1038 CVRQualifiers);
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +00001039 SetVarDeclObjCAttribute(getContext(), Ivar, Ivar->getType(), LV);
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +00001040 return LV;
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001041}
1042
1043LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001044 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1045 llvm::Value *BaseValue = 0;
1046 const Expr *BaseExpr = E->getBase();
1047 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001048 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001049 if (E->isArrow()) {
1050 BaseValue = EmitScalarExpr(BaseExpr);
1051 const PointerType *PTy =
1052 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001053 ObjectTy = PTy->getPointeeType();
1054 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001055 } else {
1056 LValue BaseLV = EmitLValue(BaseExpr);
1057 // FIXME: this isn't right for bitfields.
1058 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001059 ObjectTy = BaseExpr->getType();
1060 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001061 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001062
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001063 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
Fariborz Jahanianefc4c4b2008-12-18 17:29:46 +00001064 getContext().getFieldDecl(E), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001065}
1066
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001067LValue
1068CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1069 // This is a special l-value that just issues sends when we load or
1070 // store through it.
1071 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1072}
1073
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001074LValue
1075CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1076 // This is a special l-value that just issues sends when we load or
1077 // store through it.
1078 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1079}
1080
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001081LValue
1082CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
1083 return EmitUnsupportedLValue(E, "use of super");
1084}
1085
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001086RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek55499762008-06-17 02:43:46 +00001087 CallExpr::const_arg_iterator ArgBeg,
1088 CallExpr::const_arg_iterator ArgEnd) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001089 // Get the actual function type. The callee type will always be a
1090 // pointer to function type or a block pointer type.
1091 QualType ResultType;
1092 if (const BlockPointerType *BPT = dyn_cast<BlockPointerType>(CalleeType)) {
1093 ResultType = BPT->getPointeeType()->getAsFunctionType()->getResultType();
1094 } else {
1095 assert(CalleeType->isFunctionPointerType() &&
1096 "Call must have function pointer type!");
1097 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1098 ResultType = FnType->getAsFunctionType()->getResultType();
1099 }
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001100
1101 CallArgList Args;
1102 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar46f45b92008-09-09 01:06:48 +00001103 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
1104 I->getType()));
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001105
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001106 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
1107 Callee, Args);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001108}