blob: 4d6c3f1c2867383a2c597ff3dd30c4b12ad84a0c [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));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000140 case Expr::VAArgExprClass:
141 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000142 case Expr::DeclRefExprClass:
143 case Expr::QualifiedDeclRefExprClass:
144 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000145 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000146 case Expr::PredefinedExprClass:
147 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000148 case Expr::StringLiteralClass:
149 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000150
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000151 case Expr::CXXConditionDeclExprClass:
152 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
153
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000154 case Expr::ObjCMessageExprClass:
155 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000156 case Expr::ObjCIvarRefExprClass:
157 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000158 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000159 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000160 case Expr::ObjCKVCRefExprClass:
161 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000162 case Expr::ObjCSuperExprClass:
163 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
164
Reid Spencer5f016e22007-07-11 17:01:13 +0000165 case Expr::UnaryOperatorClass:
166 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
167 case Expr::ArraySubscriptExprClass:
168 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000169 case Expr::ExtVectorElementExprClass:
170 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000171 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000172 case Expr::CompoundLiteralExprClass:
173 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattner670a62c2008-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());
Reid Spencer5f016e22007-07-11 17:01:13 +0000180 }
181}
182
Daniel Dunbar9d9cc872009-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
Reid Spencer5f016e22007-07-11 17:01:13 +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 Jahaniandbd32c22008-11-19 17:34:06 +0000220 if (LV.isObjCWeak()) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000221 // load of a __weak object.
222 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000223 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000224 AddrWeakObj);
225 return RValue::get(read_weak);
226 }
227
Reid Spencer5f016e22007-07-11 17:01:13 +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 Dunbar9d9cc872009-02-10 00:57:50 +0000234 if (EltTy->isSingleValueType())
235 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
236 ExprType));
Reid Spencer5f016e22007-07-11 17:01:13 +0000237
Chris Lattner883f6a72007-08-11 00:04:45 +0000238 assert(ExprType->isFunctionType() && "Unknown scalar value");
239 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000240 }
241
242 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000243 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
244 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000245 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
246 "vecext"));
247 }
Chris Lattner46ea8eb2007-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 Begeman213541a2008-04-18 23:10:10 +0000251 if (LV.isExtVectorElt())
252 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000253
254 if (LV.isBitfield())
255 return EmitLoadOfBitfieldLValue(LV, ExprType);
256
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000257 if (LV.isPropertyRef())
258 return EmitLoadOfPropertyRefLValue(LV, ExprType);
259
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000260 if (LV.isKVCRef())
261 return EmitLoadOfKVCRefLValue(LV, ExprType);
262
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000263 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000264 //an invalid RValue, but the assert will
265 //ensure that this point is never reached
266 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000267}
268
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000269RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
270 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000271 unsigned StartBit = LV.getBitfieldStartBit();
272 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000273 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000274
275 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000276 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000277 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000278
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000279 // In some cases the bitfield may straddle two memory locations.
280 // Currently we load the entire bitfield, then do the magic to
281 // sign-extend it if necessary. This results in somewhat more code
282 // than necessary for the common case (one load), since two shifts
283 // accomplish both the masking and sign extension.
284 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
285 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
286
287 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000288 if (StartBit)
289 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
290 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000291
292 // Mask off unused bits.
293 llvm::Constant *LowMask =
294 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
295 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
296
297 // Fetch the high bits if necessary.
298 if (LowBits < BitfieldSize) {
299 unsigned HighBits = BitfieldSize - LowBits;
300 llvm::Value *HighPtr =
301 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
302 "bf.ptr.hi");
303 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
304 LV.isVolatileQualified(),
305 "tmp");
306
307 // Mask off unused bits.
308 llvm::Constant *HighMask =
309 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
310 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000311
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000312 // Shift to proper location and or in to bitfield value.
313 HighVal = Builder.CreateShl(HighVal,
314 llvm::ConstantInt::get(EltTy, LowBits));
315 Val = Builder.CreateOr(Val, HighVal, "bf.val");
316 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000317
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000318 // Sign extend if necessary.
319 if (LV.isBitfieldSigned()) {
320 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
321 EltTySize - BitfieldSize);
322 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
323 ExtraBits, "bf.val.sext");
324 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000325
326 // The bitfield type and the normal type differ when the storage sizes
327 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000328 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000329
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000330 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000331}
332
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000333RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
334 QualType ExprType) {
335 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
336}
337
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000338RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
339 QualType ExprType) {
340 return EmitObjCPropertyGet(LV.getKVCRefExpr());
341}
342
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000343// If this is a reference to a subset of the elements of a vector, create an
344// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000345RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
346 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000347 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
348 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000349
Nate Begeman8a997642008-05-09 06:41:27 +0000350 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000351
352 // If the result of the expression is a non-vector type, we must be
353 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000354 const VectorType *ExprVT = ExprType->getAsVectorType();
355 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000356 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000357 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
358 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
359 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000360
361 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000362 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000363
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000364 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000365 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000366 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000367 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000368 }
369
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000370 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
371 Vec = Builder.CreateShuffleVector(Vec,
372 llvm::UndefValue::get(Vec->getType()),
373 MaskV, "tmp");
374 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000375}
376
377
Reid Spencer5f016e22007-07-11 17:01:13 +0000378
379/// EmitStoreThroughLValue - Store the specified rvalue into the specified
380/// lvalue, where both are guaranteed to the have the same type, and that type
381/// is 'Ty'.
382void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
383 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000384 if (!Dst.isSimple()) {
385 if (Dst.isVectorElt()) {
386 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000387 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
388 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000389 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000390 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000391 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000392 return;
393 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000394
Nate Begeman213541a2008-04-18 23:10:10 +0000395 // If this is an update of extended vector elements, insert them as
396 // appropriate.
397 if (Dst.isExtVectorElt())
398 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000399
400 if (Dst.isBitfield())
401 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
402
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000403 if (Dst.isPropertyRef())
404 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
405
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000406 if (Dst.isKVCRef())
407 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
408
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000409 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000410 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000411
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000412 if (Dst.isObjCWeak()) {
413 // load of a __weak object.
414 llvm::Value *LvalueDst = Dst.getAddress();
415 llvm::Value *src = Src.getScalarVal();
416 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
417 return;
418 }
419
420 if (Dst.isObjCStrong()) {
421 // load of a __strong object.
422 llvm::Value *LvalueDst = Dst.getAddress();
423 llvm::Value *src = Src.getScalarVal();
Fariborz Jahaniand1cc8042008-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 Jahaniandbd32c22008-11-19 17:34:06 +0000428 return;
429 }
430
Chris Lattner883f6a72007-08-11 00:04:45 +0000431 assert(Src.isScalar() && "Can't emit an agg store with this method");
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000432 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
433 Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000434}
435
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000436void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000437 QualType Ty,
438 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000439 unsigned StartBit = Dst.getBitfieldStartBit();
440 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000441 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000442
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000443 const llvm::Type *EltTy =
444 cast<llvm::PointerType>(Ptr->getType())->getElementType();
445 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
446
447 // Get the new value, cast to the appropriate type and masked to
448 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000449 llvm::Value *SrcVal = Src.getScalarVal();
450 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000451 llvm::Constant *Mask =
452 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
453 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000454
Daniel Dunbared3849b2008-11-19 09:36:46 +0000455 // Return the new value of the bit-field, if requested.
456 if (Result) {
457 // Cast back to the proper type for result.
458 const llvm::Type *SrcTy = SrcVal->getType();
459 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
460 "bf.reload.val");
461
462 // Sign extend if necessary.
463 if (Dst.isBitfieldSigned()) {
464 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
465 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
466 SrcTySize - BitfieldSize);
467 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
468 ExtraBits, "bf.reload.sext");
469 }
470
471 *Result = SrcTrunc;
472 }
473
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000474 // In some cases the bitfield may straddle two memory locations.
475 // Emit the low part first and check to see if the high needs to be
476 // done.
477 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
478 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
479 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000480
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000481 // Compute the mask for zero-ing the low part of this bitfield.
482 llvm::Constant *InvMask =
483 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
484 StartBit + LowBits));
485
486 // Compute the new low part as
487 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
488 // with the shift of NewVal implicitly stripping the high bits.
489 llvm::Value *NewLowVal =
490 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
491 "bf.value.lo");
492 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
493 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
494
495 // Write back.
496 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000497
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000498 // If the low part doesn't cover the bitfield emit a high part.
499 if (LowBits < BitfieldSize) {
500 unsigned HighBits = BitfieldSize - LowBits;
501 llvm::Value *HighPtr =
502 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
503 "bf.ptr.hi");
504 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
505 Dst.isVolatileQualified(),
506 "bf.prev.hi");
507
508 // Compute the mask for zero-ing the high part of this bitfield.
509 llvm::Constant *InvMask =
510 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
511
512 // Compute the new high part as
513 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
514 // where the high bits of NewVal have already been cleared and the
515 // shift stripping the low bits.
516 llvm::Value *NewHighVal =
517 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
518 "bf.value.high");
519 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
520 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
521
522 // Write back.
523 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
524 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000525}
526
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000527void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
528 LValue Dst,
529 QualType Ty) {
530 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
531}
532
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000533void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
534 LValue Dst,
535 QualType Ty) {
536 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
537}
538
Nate Begeman213541a2008-04-18 23:10:10 +0000539void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
540 LValue Dst,
541 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000542 // This access turns into a read/modify/write of the vector. Load the input
543 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000544 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
545 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000546 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000547
Chris Lattner9b655512007-08-31 22:49:20 +0000548 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000549
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000550 if (const VectorType *VTy = Ty->getAsVectorType()) {
551 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000552 unsigned NumDstElts =
553 cast<llvm::VectorType>(Vec->getType())->getNumElements();
554 if (NumDstElts == NumSrcElts) {
555 // Use shuffle vector is the src and destination are the same number
556 // of elements
557 llvm::SmallVector<llvm::Constant*, 4> Mask;
558 for (unsigned i = 0; i != NumSrcElts; ++i) {
559 unsigned InIdx = getAccessedFieldNo(i, Elts);
560 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
561 }
562
563 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
564 Vec = Builder.CreateShuffleVector(SrcVal,
565 llvm::UndefValue::get(Vec->getType()),
566 MaskV, "tmp");
567 }
568 else if (NumDstElts > NumSrcElts) {
569 // Extended the source vector to the same length and then shuffle it
570 // into the destination.
571 // FIXME: since we're shuffling with undef, can we just use the indices
572 // into that? This could be simpler.
573 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
574 unsigned i;
575 for (i = 0; i != NumSrcElts; ++i)
576 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
577 for (; i != NumDstElts; ++i)
578 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
579 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
580 ExtMask.size());
581 llvm::Value *ExtSrcVal = Builder.CreateShuffleVector(SrcVal,
582 llvm::UndefValue::get(SrcVal->getType()),
583 ExtMaskV, "tmp");
584 // build identity
585 llvm::SmallVector<llvm::Constant*, 4> Mask;
586 for (unsigned i = 0; i != NumDstElts; ++i) {
587 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
588 }
589 // modify when what gets shuffled in
590 for (unsigned i = 0; i != NumSrcElts; ++i) {
591 unsigned Idx = getAccessedFieldNo(i, Elts);
592 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
593 }
594 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
595 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
596 }
597 else {
598 // We should never shorten the vector
599 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000600 }
601 } else {
602 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000603 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000604 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
605 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000606 }
607
Eli Friedman1e692ac2008-06-13 23:01:12 +0000608 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000609}
610
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000611/// SetVarDeclObjCAttribute - Set __weak/__strong attributes into the LValue
612/// object.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000613static void SetVarDeclObjCAttribute(ASTContext &Ctx, const Decl *VD,
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000614 const QualType &Ty, LValue &LV)
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000615{
616 if (const ObjCGCAttr *A = VD->getAttr<ObjCGCAttr>()) {
617 ObjCGCAttr::GCAttrTypes attrType = A->getType();
618 LValue::SetObjCType(attrType == ObjCGCAttr::Weak,
619 attrType == ObjCGCAttr::Strong, LV);
620 }
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000621 else if (Ctx.getLangOptions().ObjC1 &&
622 Ctx.getLangOptions().getGCMode() != LangOptions::NonGC) {
623 // Default behavious under objective-c's gc is for objective-c pointers
624 // be treated as though they were declared as __strong.
625 if (Ctx.isObjCObjectPointerType(Ty))
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000626 LValue::SetObjCType(false, true, LV);
627 }
628}
Reid Spencer5f016e22007-07-11 17:01:13 +0000629
630LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000631 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
632
Chris Lattner41110242008-06-17 18:05:57 +0000633 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
634 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000635 LValue LV;
636 if (VD->getStorageClass() == VarDecl::Extern) {
637 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
638 E->getType().getCVRQualifiers());
639 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000640 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000641 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000642 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000643 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000644 }
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000645 if (VD->isBlockVarDecl() &&
646 (VD->getStorageClass() == VarDecl::Static ||
647 VD->getStorageClass() == VarDecl::Extern))
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000648 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000649 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000650 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000651 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
652 E->getType().getCVRQualifiers());
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000653 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000654 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000655 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000656 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000657 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000658 }
Chris Lattner41110242008-06-17 18:05:57 +0000659 else if (const ImplicitParamDecl *IPD =
660 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
661 llvm::Value *V = LocalDeclMap[IPD];
662 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
663 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
664 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000665 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000666 //an invalid LValue, but the assert will
667 //ensure that this point is never reached.
668 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000669}
670
671LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
672 // __extension__ doesn't affect lvalue-ness.
673 if (E->getOpcode() == UnaryOperator::Extension)
674 return EmitLValue(E->getSubExpr());
675
Chris Lattner96196622008-07-26 22:37:01 +0000676 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000677 switch (E->getOpcode()) {
678 default: assert(0 && "Unknown unary operator lvalue!");
679 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000680 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000681 ExprTy->getAsPointerType()->getPointeeType()
682 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000683 case UnaryOperator::Real:
684 case UnaryOperator::Imag:
685 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000686 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
687 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000688 Idx, "idx"),
689 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000690 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000691}
692
693LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000694 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000695}
696
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000697LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000698 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000699
700 switch (Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000701 default:
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000702 assert(0 && "Invalid type");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000703 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000704 GlobalVarName = "__func__.";
705 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000706 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000707 GlobalVarName = "__FUNCTION__.";
708 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000709 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000710 // FIXME:: Demangle C++ method names
711 GlobalVarName = "__PRETTY_FUNCTION__.";
712 break;
713 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000714
715 std::string FunctionName;
716 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000717 FunctionName = FD->getNameAsString();
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000718 } else {
719 // Just get the mangled name.
720 FunctionName = CurFn->getName();
721 }
722
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000723 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000724 llvm::Constant *C =
725 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
726 return LValue::MakeAddr(C, 0);
727}
728
729LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
730 switch (E->getIdentType()) {
731 default:
732 return EmitUnsupportedLValue(E, "predefined expression");
733 case PredefinedExpr::Func:
734 case PredefinedExpr::Function:
735 case PredefinedExpr::PrettyFunction:
736 return EmitPredefinedFunctionName(E->getIdentType());
737 }
Anders Carlsson22742662007-07-21 05:21:51 +0000738}
739
Reid Spencer5f016e22007-07-11 17:01:13 +0000740LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000741 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000742 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000743
744 // If the base is a vector type, then we are forming a vector element lvalue
745 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000746 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000747 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000748 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000749 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000750 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000751 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
752 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000753 }
754
Ted Kremenek23245122007-08-20 16:18:38 +0000755 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000756 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000757
Ted Kremenek23245122007-08-20 16:18:38 +0000758 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000759 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000760 bool IdxSigned = IdxTy->isSignedIntegerType();
761 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
762 if (IdxBitwidth != LLVMPointerWidth)
763 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
764 IdxSigned, "idxprom");
765
766 // We know that the pointer points to a type of the correct size, unless the
767 // size is a VLA.
Anders Carlsson8b33c082008-12-21 00:11:23 +0000768 if (const VariableArrayType *VAT =
769 getContext().getAsVariableArrayType(E->getType())) {
770 llvm::Value *VLASize = VLASizeMap[VAT];
771
772 Idx = Builder.CreateMul(Idx, VLASize);
773
Anders Carlsson6183a992008-12-21 03:44:36 +0000774 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000775
776 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
777 Idx = Builder.CreateUDiv(Idx,
778 llvm::ConstantInt::get(Idx->getType(),
779 BaseTypeSize));
780 }
781
Chris Lattner96196622008-07-26 22:37:01 +0000782 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000783
Eli Friedman1e692ac2008-06-13 23:01:12 +0000784 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000785 ExprTy->getAsPointerType()->getPointeeType()
786 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000787}
788
Nate Begeman3b8d1162008-05-13 21:03:02 +0000789static
790llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
791 llvm::SmallVector<llvm::Constant *, 4> CElts;
792
793 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
794 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
795
796 return llvm::ConstantVector::get(&CElts[0], CElts.size());
797}
798
Chris Lattner349aaec2007-08-02 23:37:31 +0000799LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000800EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000801 // Emit the base vector as an l-value.
802 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000803
Nate Begeman3b8d1162008-05-13 21:03:02 +0000804 // Encode the element access list into a vector of unsigned indices.
805 llvm::SmallVector<unsigned, 4> Indices;
806 E->getEncodedElementAccess(Indices);
807
808 if (Base.isSimple()) {
809 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000810 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
811 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000812 }
813 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
814
815 llvm::Constant *BaseElts = Base.getExtVectorElts();
816 llvm::SmallVector<llvm::Constant *, 4> CElts;
817
818 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
819 if (isa<llvm::ConstantAggregateZero>(BaseElts))
820 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
821 else
822 CElts.push_back(BaseElts->getOperand(Indices[i]));
823 }
824 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000825 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
826 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000827}
828
Devang Patelb9b00ad2007-10-23 20:28:39 +0000829LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000830 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000831 bool isIvar = false;
Devang Patel126a8562007-10-24 22:26:28 +0000832 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000833 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000834 unsigned CVRQualifiers=0;
835
Chris Lattner12f65f62007-12-02 18:52:07 +0000836 // 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 +0000837 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000838 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000839 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000840 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000841 if (PTy->getPointeeType()->isUnionType())
842 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000843 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000844 }
Fariborz Jahanian35c33292009-01-12 23:27:26 +0000845 else if (BaseExpr->getStmtClass() == Expr::ObjCPropertyRefExprClass ||
846 BaseExpr->getStmtClass() == Expr::ObjCKVCRefExprClass) {
847 RValue RV = EmitObjCPropertyGet(BaseExpr);
848 BaseValue = RV.getAggregateAddr();
849 if (BaseExpr->getType()->isUnionType())
850 isUnion = true;
851 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
852 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000853 else {
854 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000855 if (BaseLV.isObjCIvar())
856 isIvar = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000857 // FIXME: this isn't right for bitfields.
858 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000859 if (BaseExpr->getType()->isUnionType())
860 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000861 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000862 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000863
Douglas Gregor86f19402008-12-20 23:49:58 +0000864 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
865 // FIXME: Handle non-field member expressions
866 assert(Field && "No code generation for non-field member references");
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000867 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
868 LValue::SetObjCIvar(MemExpLV, isIvar);
869 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +0000870}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000871
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000872LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
873 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000874 unsigned CVRQualifiers) {
875 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000876 // FIXME: CodeGenTypes should expose a method to get the appropriate
877 // type for FieldTy (the appropriate type is ABI-dependent).
878 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
879 const llvm::PointerType *BaseTy =
880 cast<llvm::PointerType>(BaseValue->getType());
881 unsigned AS = BaseTy->getAddressSpace();
882 BaseValue = Builder.CreateBitCast(BaseValue,
883 llvm::PointerType::get(FieldTy, AS),
884 "tmp");
885 llvm::Value *V = Builder.CreateGEP(BaseValue,
886 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
887 "tmp");
888
889 CodeGenTypes::BitFieldInfo bitFieldInfo =
890 CGM.getTypes().getBitFieldInfo(Field);
891 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
892 Field->getType()->isSignedIntegerType(),
893 Field->getType().getCVRQualifiers()|CVRQualifiers);
894}
895
Eli Friedman472778e2008-02-09 08:50:58 +0000896LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
897 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000898 bool isUnion,
899 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000900{
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000901 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000902 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000903
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000904 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000905 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000906
Devang Patelabad06c2007-10-26 19:42:18 +0000907 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000908 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000909 const llvm::Type *FieldTy =
910 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000911 const llvm::PointerType * BaseTy =
912 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000913 unsigned AS = BaseTy->getAddressSpace();
914 V = Builder.CreateBitCast(V,
915 llvm::PointerType::get(FieldTy, AS),
916 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000917 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000918
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000919 LValue LV =
920 LValue::MakeAddr(V,
921 Field->getType().getCVRQualifiers()|CVRQualifiers);
922 if (const ObjCGCAttr *A = Field->getAttr<ObjCGCAttr>()) {
923 ObjCGCAttr::GCAttrTypes attrType = A->getType();
924 // __weak attribute on a field is ignored.
925 LValue::SetObjCType(false, attrType == ObjCGCAttr::Strong, LV);
926 }
927 else if (CGM.getLangOptions().ObjC1 &&
928 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
929 QualType ExprTy = Field->getType();
930 if (getContext().isObjCObjectPointerType(ExprTy))
931 LValue::SetObjCType(false, true, LV);
932 }
933 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +0000934}
935
Eli Friedman1e692ac2008-06-13 23:01:12 +0000936LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
937{
Eli Friedman06e863f2008-05-13 23:18:27 +0000938 const llvm::Type *LTy = ConvertType(E->getType());
939 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
940
941 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000942 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000943
944 if (E->getType()->isComplexType()) {
945 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
946 } else if (hasAggregateLLVMType(E->getType())) {
947 EmitAnyExpr(InitExpr, DeclPtr, false);
948 } else {
949 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
950 }
951
952 return Result;
953}
954
Reid Spencer5f016e22007-07-11 17:01:13 +0000955//===--------------------------------------------------------------------===//
956// Expression Emission
957//===--------------------------------------------------------------------===//
958
Chris Lattner7016a702007-08-20 22:37:10 +0000959
Reid Spencer5f016e22007-07-11 17:01:13 +0000960RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000961 if (const ImplicitCastExpr *IcExpr =
962 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
963 if (const DeclRefExpr *DRExpr =
964 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
965 if (const FunctionDecl *FDecl =
966 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
967 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
968 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000969
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000970 if (E->getCallee()->getType()->isBlockPointerType())
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000971 return EmitUnsupportedRValue(E, "block pointer reference");
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000972
Chris Lattner7f02f722007-08-24 05:35:26 +0000973 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000974 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000975 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000976}
977
Ted Kremenek55499762008-06-17 02:43:46 +0000978RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
979 CallExpr::const_arg_iterator ArgBeg,
980 CallExpr::const_arg_iterator ArgEnd) {
981
Nate Begemane2ce1d92008-01-17 17:46:27 +0000982 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000983 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000984}
985
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000986LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
987 // Can only get l-value for binary operator expressions which are a
988 // simple assignment of aggregate type.
989 if (E->getOpcode() != BinaryOperator::Assign)
990 return EmitUnsupportedLValue(E, "binary l-value expression");
991
992 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
993 EmitAggExpr(E, Temp, false);
994 // FIXME: Are these qualifiers correct?
995 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
996}
997
Christopher Lamb22c940e2007-12-29 05:02:41 +0000998LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
999 // Can only get l-value for call expression returning aggregate type
1000 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +00001001 return LValue::MakeAddr(RV.getAggregateAddr(),
1002 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +00001003}
1004
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001005LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1006 // FIXME: This shouldn't require another copy.
1007 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1008 EmitAggExpr(E, Temp, false);
1009 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1010}
1011
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001012LValue
1013CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1014 EmitLocalBlockVarDecl(*E->getVarDecl());
1015 return EmitDeclRefLValue(E);
1016}
1017
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001018LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1019 // Can only get l-value for message expression returning aggregate type
1020 RValue RV = EmitObjCMessageExpr(E);
1021 // FIXME: can this be volatile?
1022 return LValue::MakeAddr(RV.getAggregateAddr(),
1023 E->getType().getCVRQualifiers());
1024}
1025
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001026llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
1027 const ObjCIvarDecl *Ivar) {
Chris Lattner391d77a2008-03-30 23:03:07 +00001028 // Objective-C objects are traditionally C structures with their layout
1029 // defined at compile-time. In some implementations, their layout is not
1030 // defined until run time in order to allow instance variables to be added to
1031 // a class without recompiling all of the subclasses. If this is the case
1032 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
1033 // implement the lookup itself.
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001034 if (CGM.getObjCRuntime().LateBoundIVars())
1035 assert(0 && "late-bound ivars are unsupported");
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001036 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001037}
1038
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001039LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1040 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001041 const ObjCIvarDecl *Ivar,
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001042 const FieldDecl *Field,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001043 unsigned CVRQualifiers) {
1044 // See comment in EmitIvarOffset.
1045 if (CGM.getObjCRuntime().LateBoundIVars())
1046 assert(0 && "late-bound ivars are unsupported");
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001047
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001048 LValue LV = CGM.getObjCRuntime().EmitObjCValueForIvar(*this,
1049 ObjectTy,
1050 BaseValue, Ivar, Field,
1051 CVRQualifiers);
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +00001052 SetVarDeclObjCAttribute(getContext(), Ivar, Ivar->getType(), LV);
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +00001053 return LV;
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001054}
1055
1056LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001057 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1058 llvm::Value *BaseValue = 0;
1059 const Expr *BaseExpr = E->getBase();
1060 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001061 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001062 if (E->isArrow()) {
1063 BaseValue = EmitScalarExpr(BaseExpr);
1064 const PointerType *PTy =
1065 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001066 ObjectTy = PTy->getPointeeType();
1067 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001068 } else {
1069 LValue BaseLV = EmitLValue(BaseExpr);
1070 // FIXME: this isn't right for bitfields.
1071 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001072 ObjectTy = BaseExpr->getType();
1073 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001074 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001075
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001076 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
Fariborz Jahanianefc4c4b2008-12-18 17:29:46 +00001077 getContext().getFieldDecl(E), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001078}
1079
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001080LValue
1081CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1082 // This is a special l-value that just issues sends when we load or
1083 // store through it.
1084 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1085}
1086
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001087LValue
1088CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1089 // This is a special l-value that just issues sends when we load or
1090 // store through it.
1091 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1092}
1093
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001094LValue
1095CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
1096 return EmitUnsupportedLValue(E, "use of super");
1097}
1098
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001099RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek55499762008-06-17 02:43:46 +00001100 CallExpr::const_arg_iterator ArgBeg,
1101 CallExpr::const_arg_iterator ArgEnd) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001102 // Get the actual function type. The callee type will always be a
1103 // pointer to function type or a block pointer type.
1104 QualType ResultType;
1105 if (const BlockPointerType *BPT = dyn_cast<BlockPointerType>(CalleeType)) {
1106 ResultType = BPT->getPointeeType()->getAsFunctionType()->getResultType();
1107 } else {
1108 assert(CalleeType->isFunctionPointerType() &&
1109 "Call must have function pointer type!");
1110 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1111 ResultType = FnType->getAsFunctionType()->getResultType();
1112 }
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001113
1114 CallArgList Args;
1115 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar46f45b92008-09-09 01:06:48 +00001116 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
1117 I->getType()));
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001118
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001119 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
1120 Callee, Args);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001121}