blob: eed9ed7729be897df0122a2131d540db66fdc788 [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
Chris Lattner73525de2009-02-16 21:11:58 +0000260 assert(LV.isKVCRef() && "Unknown LValue type!");
261 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000262}
263
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000264RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
265 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000266 unsigned StartBit = LV.getBitfieldStartBit();
267 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000268 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000269
270 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000271 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000272 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000273
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000274 // In some cases the bitfield may straddle two memory locations.
275 // Currently we load the entire bitfield, then do the magic to
276 // sign-extend it if necessary. This results in somewhat more code
277 // than necessary for the common case (one load), since two shifts
278 // accomplish both the masking and sign extension.
279 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
280 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
281
282 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000283 if (StartBit)
284 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
285 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000286
287 // Mask off unused bits.
288 llvm::Constant *LowMask =
289 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
290 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
291
292 // Fetch the high bits if necessary.
293 if (LowBits < BitfieldSize) {
294 unsigned HighBits = BitfieldSize - LowBits;
295 llvm::Value *HighPtr =
296 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
297 "bf.ptr.hi");
298 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
299 LV.isVolatileQualified(),
300 "tmp");
301
302 // Mask off unused bits.
303 llvm::Constant *HighMask =
304 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
305 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000306
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000307 // Shift to proper location and or in to bitfield value.
308 HighVal = Builder.CreateShl(HighVal,
309 llvm::ConstantInt::get(EltTy, LowBits));
310 Val = Builder.CreateOr(Val, HighVal, "bf.val");
311 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000312
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000313 // Sign extend if necessary.
314 if (LV.isBitfieldSigned()) {
315 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
316 EltTySize - BitfieldSize);
317 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
318 ExtraBits, "bf.val.sext");
319 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000320
321 // The bitfield type and the normal type differ when the storage sizes
322 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000323 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000324
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000325 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000326}
327
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000328RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
329 QualType ExprType) {
330 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
331}
332
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000333RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
334 QualType ExprType) {
335 return EmitObjCPropertyGet(LV.getKVCRefExpr());
336}
337
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000338// If this is a reference to a subset of the elements of a vector, create an
339// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000340RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
341 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000342 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
343 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000344
Nate Begeman8a997642008-05-09 06:41:27 +0000345 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000346
347 // If the result of the expression is a non-vector type, we must be
348 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000349 const VectorType *ExprVT = ExprType->getAsVectorType();
350 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000351 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000352 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
353 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
354 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000355
356 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000357 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000358
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000359 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000360 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000361 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000362 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000363 }
364
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000365 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
366 Vec = Builder.CreateShuffleVector(Vec,
367 llvm::UndefValue::get(Vec->getType()),
368 MaskV, "tmp");
369 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000370}
371
372
Reid Spencer5f016e22007-07-11 17:01:13 +0000373
374/// EmitStoreThroughLValue - Store the specified rvalue into the specified
375/// lvalue, where both are guaranteed to the have the same type, and that type
376/// is 'Ty'.
377void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
378 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000379 if (!Dst.isSimple()) {
380 if (Dst.isVectorElt()) {
381 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000382 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
383 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000384 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000385 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000386 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000387 return;
388 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000389
Nate Begeman213541a2008-04-18 23:10:10 +0000390 // If this is an update of extended vector elements, insert them as
391 // appropriate.
392 if (Dst.isExtVectorElt())
393 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000394
395 if (Dst.isBitfield())
396 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
397
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000398 if (Dst.isPropertyRef())
399 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
400
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000401 if (Dst.isKVCRef())
402 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
403
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000404 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000405 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000406
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000407 if (Dst.isObjCWeak()) {
408 // load of a __weak object.
409 llvm::Value *LvalueDst = Dst.getAddress();
410 llvm::Value *src = Src.getScalarVal();
411 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
412 return;
413 }
414
415 if (Dst.isObjCStrong()) {
416 // load of a __strong object.
417 llvm::Value *LvalueDst = Dst.getAddress();
418 llvm::Value *src = Src.getScalarVal();
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000419 if (Dst.isObjCIvar())
420 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
421 else
422 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000423 return;
424 }
425
Chris Lattner883f6a72007-08-11 00:04:45 +0000426 assert(Src.isScalar() && "Can't emit an agg store with this method");
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000427 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
428 Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000429}
430
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000431void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000432 QualType Ty,
433 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000434 unsigned StartBit = Dst.getBitfieldStartBit();
435 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000436 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000437
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000438 const llvm::Type *EltTy =
439 cast<llvm::PointerType>(Ptr->getType())->getElementType();
440 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
441
442 // Get the new value, cast to the appropriate type and masked to
443 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000444 llvm::Value *SrcVal = Src.getScalarVal();
445 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000446 llvm::Constant *Mask =
447 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
448 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000449
Daniel Dunbared3849b2008-11-19 09:36:46 +0000450 // Return the new value of the bit-field, if requested.
451 if (Result) {
452 // Cast back to the proper type for result.
453 const llvm::Type *SrcTy = SrcVal->getType();
454 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
455 "bf.reload.val");
456
457 // Sign extend if necessary.
458 if (Dst.isBitfieldSigned()) {
459 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
460 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
461 SrcTySize - BitfieldSize);
462 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
463 ExtraBits, "bf.reload.sext");
464 }
465
466 *Result = SrcTrunc;
467 }
468
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000469 // In some cases the bitfield may straddle two memory locations.
470 // Emit the low part first and check to see if the high needs to be
471 // done.
472 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
473 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
474 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000475
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000476 // Compute the mask for zero-ing the low part of this bitfield.
477 llvm::Constant *InvMask =
478 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
479 StartBit + LowBits));
480
481 // Compute the new low part as
482 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
483 // with the shift of NewVal implicitly stripping the high bits.
484 llvm::Value *NewLowVal =
485 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
486 "bf.value.lo");
487 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
488 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
489
490 // Write back.
491 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000492
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000493 // If the low part doesn't cover the bitfield emit a high part.
494 if (LowBits < BitfieldSize) {
495 unsigned HighBits = BitfieldSize - LowBits;
496 llvm::Value *HighPtr =
497 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
498 "bf.ptr.hi");
499 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
500 Dst.isVolatileQualified(),
501 "bf.prev.hi");
502
503 // Compute the mask for zero-ing the high part of this bitfield.
504 llvm::Constant *InvMask =
505 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
506
507 // Compute the new high part as
508 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
509 // where the high bits of NewVal have already been cleared and the
510 // shift stripping the low bits.
511 llvm::Value *NewHighVal =
512 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
513 "bf.value.high");
514 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
515 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
516
517 // Write back.
518 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
519 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000520}
521
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000522void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
523 LValue Dst,
524 QualType Ty) {
525 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
526}
527
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000528void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
529 LValue Dst,
530 QualType Ty) {
531 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
532}
533
Nate Begeman213541a2008-04-18 23:10:10 +0000534void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
535 LValue Dst,
536 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000537 // This access turns into a read/modify/write of the vector. Load the input
538 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000539 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
540 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000541 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000542
Chris Lattner9b655512007-08-31 22:49:20 +0000543 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000544
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000545 if (const VectorType *VTy = Ty->getAsVectorType()) {
546 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000547 unsigned NumDstElts =
548 cast<llvm::VectorType>(Vec->getType())->getNumElements();
549 if (NumDstElts == NumSrcElts) {
550 // Use shuffle vector is the src and destination are the same number
551 // of elements
552 llvm::SmallVector<llvm::Constant*, 4> Mask;
553 for (unsigned i = 0; i != NumSrcElts; ++i) {
554 unsigned InIdx = getAccessedFieldNo(i, Elts);
555 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
556 }
557
558 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
559 Vec = Builder.CreateShuffleVector(SrcVal,
560 llvm::UndefValue::get(Vec->getType()),
561 MaskV, "tmp");
562 }
563 else if (NumDstElts > NumSrcElts) {
564 // Extended the source vector to the same length and then shuffle it
565 // into the destination.
566 // FIXME: since we're shuffling with undef, can we just use the indices
567 // into that? This could be simpler.
568 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
569 unsigned i;
570 for (i = 0; i != NumSrcElts; ++i)
571 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
572 for (; i != NumDstElts; ++i)
573 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
574 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
575 ExtMask.size());
Daniel Dunbarbb767732009-02-17 18:31:04 +0000576 llvm::Value *ExtSrcVal =
577 Builder.CreateShuffleVector(SrcVal,
578 llvm::UndefValue::get(SrcVal->getType()),
579 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000580 // build identity
581 llvm::SmallVector<llvm::Constant*, 4> Mask;
582 for (unsigned i = 0; i != NumDstElts; ++i) {
583 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
584 }
585 // modify when what gets shuffled in
586 for (unsigned i = 0; i != NumSrcElts; ++i) {
587 unsigned Idx = getAccessedFieldNo(i, Elts);
588 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
589 }
590 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
591 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
592 }
593 else {
594 // We should never shorten the vector
595 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000596 }
597 } else {
598 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000599 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000600 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
601 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000602 }
603
Eli Friedman1e692ac2008-06-13 23:01:12 +0000604 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000605}
606
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000607/// SetVarDeclObjCAttribute - Set __weak/__strong attributes into the LValue
608/// object.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000609static void SetVarDeclObjCAttribute(ASTContext &Ctx, const Decl *VD,
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000610 const QualType &Ty, LValue &LV)
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000611{
612 if (const ObjCGCAttr *A = VD->getAttr<ObjCGCAttr>()) {
613 ObjCGCAttr::GCAttrTypes attrType = A->getType();
614 LValue::SetObjCType(attrType == ObjCGCAttr::Weak,
615 attrType == ObjCGCAttr::Strong, LV);
616 }
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000617 else if (Ctx.getLangOptions().ObjC1 &&
618 Ctx.getLangOptions().getGCMode() != LangOptions::NonGC) {
619 // Default behavious under objective-c's gc is for objective-c pointers
620 // be treated as though they were declared as __strong.
621 if (Ctx.isObjCObjectPointerType(Ty))
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000622 LValue::SetObjCType(false, true, LV);
623 }
624}
Reid Spencer5f016e22007-07-11 17:01:13 +0000625
626LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000627 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
628
Chris Lattner41110242008-06-17 18:05:57 +0000629 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
630 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000631 LValue LV;
632 if (VD->getStorageClass() == VarDecl::Extern) {
633 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
634 E->getType().getCVRQualifiers());
635 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000636 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000637 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000638 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000639 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000640 }
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000641 if (VD->isBlockVarDecl() &&
642 (VD->getStorageClass() == VarDecl::Static ||
643 VD->getStorageClass() == VarDecl::Extern))
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000644 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000645 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000646 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000647 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
648 E->getType().getCVRQualifiers());
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000649 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000650 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000651 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000652 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000653 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000654 }
Chris Lattner41110242008-06-17 18:05:57 +0000655 else if (const ImplicitParamDecl *IPD =
656 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
657 llvm::Value *V = LocalDeclMap[IPD];
658 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
659 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
660 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000661 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000662 //an invalid LValue, but the assert will
663 //ensure that this point is never reached.
664 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000665}
666
667LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
668 // __extension__ doesn't affect lvalue-ness.
669 if (E->getOpcode() == UnaryOperator::Extension)
670 return EmitLValue(E->getSubExpr());
671
Chris Lattner96196622008-07-26 22:37:01 +0000672 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000673 switch (E->getOpcode()) {
674 default: assert(0 && "Unknown unary operator lvalue!");
675 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000676 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000677 ExprTy->getAsPointerType()->getPointeeType()
678 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000679 case UnaryOperator::Real:
680 case UnaryOperator::Imag:
681 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000682 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
683 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000684 Idx, "idx"),
685 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000686 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000687}
688
689LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000690 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000691}
692
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000693LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000694 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000695
696 switch (Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000697 default:
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000698 assert(0 && "Invalid type");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000699 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000700 GlobalVarName = "__func__.";
701 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000702 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000703 GlobalVarName = "__FUNCTION__.";
704 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000705 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000706 // FIXME:: Demangle C++ method names
707 GlobalVarName = "__PRETTY_FUNCTION__.";
708 break;
709 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000710
711 std::string FunctionName;
712 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000713 FunctionName = CGM.getMangledName(FD)->getName();
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000714 } else {
715 // Just get the mangled name.
716 FunctionName = CurFn->getName();
717 }
718
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000719 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000720 llvm::Constant *C =
721 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
722 return LValue::MakeAddr(C, 0);
723}
724
725LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
726 switch (E->getIdentType()) {
727 default:
728 return EmitUnsupportedLValue(E, "predefined expression");
729 case PredefinedExpr::Func:
730 case PredefinedExpr::Function:
731 case PredefinedExpr::PrettyFunction:
732 return EmitPredefinedFunctionName(E->getIdentType());
733 }
Anders Carlsson22742662007-07-21 05:21:51 +0000734}
735
Reid Spencer5f016e22007-07-11 17:01:13 +0000736LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000737 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000738 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000739
740 // If the base is a vector type, then we are forming a vector element lvalue
741 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000742 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000743 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000744 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000745 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000746 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000747 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
748 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000749 }
750
Ted Kremenek23245122007-08-20 16:18:38 +0000751 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000752 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000753
Ted Kremenek23245122007-08-20 16:18:38 +0000754 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000755 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000756 bool IdxSigned = IdxTy->isSignedIntegerType();
757 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
758 if (IdxBitwidth != LLVMPointerWidth)
759 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
760 IdxSigned, "idxprom");
761
762 // We know that the pointer points to a type of the correct size, unless the
763 // size is a VLA.
Anders Carlsson8b33c082008-12-21 00:11:23 +0000764 if (const VariableArrayType *VAT =
765 getContext().getAsVariableArrayType(E->getType())) {
766 llvm::Value *VLASize = VLASizeMap[VAT];
767
768 Idx = Builder.CreateMul(Idx, VLASize);
769
Anders Carlsson6183a992008-12-21 03:44:36 +0000770 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000771
772 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
773 Idx = Builder.CreateUDiv(Idx,
774 llvm::ConstantInt::get(Idx->getType(),
775 BaseTypeSize));
776 }
777
Chris Lattner96196622008-07-26 22:37:01 +0000778 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000779
Eli Friedman1e692ac2008-06-13 23:01:12 +0000780 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000781 ExprTy->getAsPointerType()->getPointeeType()
782 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000783}
784
Nate Begeman3b8d1162008-05-13 21:03:02 +0000785static
786llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
787 llvm::SmallVector<llvm::Constant *, 4> CElts;
788
789 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
790 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
791
792 return llvm::ConstantVector::get(&CElts[0], CElts.size());
793}
794
Chris Lattner349aaec2007-08-02 23:37:31 +0000795LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000796EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000797 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +0000798 LValue Base;
799
800 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +0000801 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +0000802 assert(E->getBase()->getType()->isVectorType());
803 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +0000804 } else {
805 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
806 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
807 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner73525de2009-02-16 21:11:58 +0000808 }
Chris Lattner349aaec2007-08-02 23:37:31 +0000809
Nate Begeman3b8d1162008-05-13 21:03:02 +0000810 // Encode the element access list into a vector of unsigned indices.
811 llvm::SmallVector<unsigned, 4> Indices;
812 E->getEncodedElementAccess(Indices);
813
814 if (Base.isSimple()) {
815 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000816 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000817 Base.getQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000818 }
819 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
820
821 llvm::Constant *BaseElts = Base.getExtVectorElts();
822 llvm::SmallVector<llvm::Constant *, 4> CElts;
823
824 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
825 if (isa<llvm::ConstantAggregateZero>(BaseElts))
826 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
827 else
828 CElts.push_back(BaseElts->getOperand(Indices[i]));
829 }
830 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000831 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000832 Base.getQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000833}
834
Devang Patelb9b00ad2007-10-23 20:28:39 +0000835LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000836 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000837 bool isIvar = false;
Devang Patel126a8562007-10-24 22:26:28 +0000838 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000839 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000840 unsigned CVRQualifiers=0;
841
Chris Lattner12f65f62007-12-02 18:52:07 +0000842 // 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 +0000843 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000844 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000845 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000846 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000847 if (PTy->getPointeeType()->isUnionType())
848 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000849 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000850 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
851 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +0000852 RValue RV = EmitObjCPropertyGet(BaseExpr);
853 BaseValue = RV.getAggregateAddr();
854 if (BaseExpr->getType()->isUnionType())
855 isUnion = true;
856 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000857 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +0000858 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000859 if (BaseLV.isObjCIvar())
860 isIvar = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000861 // FIXME: this isn't right for bitfields.
862 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000863 if (BaseExpr->getType()->isUnionType())
864 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000865 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000866 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000867
Douglas Gregor86f19402008-12-20 23:49:58 +0000868 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
869 // FIXME: Handle non-field member expressions
870 assert(Field && "No code generation for non-field member references");
Chris Lattner1bd885e2009-02-16 22:25:49 +0000871 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
872 CVRQualifiers);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000873 LValue::SetObjCIvar(MemExpLV, isIvar);
874 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +0000875}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000876
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000877LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
878 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000879 unsigned CVRQualifiers) {
Daniel Dunbarbb767732009-02-17 18:31:04 +0000880 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000881 // FIXME: CodeGenTypes should expose a method to get the appropriate
882 // type for FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbarbb767732009-02-17 18:31:04 +0000883 const llvm::Type *FieldTy =
884 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000885 const llvm::PointerType *BaseTy =
886 cast<llvm::PointerType>(BaseValue->getType());
887 unsigned AS = BaseTy->getAddressSpace();
888 BaseValue = Builder.CreateBitCast(BaseValue,
889 llvm::PointerType::get(FieldTy, AS),
890 "tmp");
891 llvm::Value *V = Builder.CreateGEP(BaseValue,
892 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
893 "tmp");
894
895 CodeGenTypes::BitFieldInfo bitFieldInfo =
896 CGM.getTypes().getBitFieldInfo(Field);
897 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
898 Field->getType()->isSignedIntegerType(),
899 Field->getType().getCVRQualifiers()|CVRQualifiers);
900}
901
Eli Friedman472778e2008-02-09 08:50:58 +0000902LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
903 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000904 bool isUnion,
905 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000906{
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000907 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000908 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000909
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000910 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000911 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000912
Devang Patelabad06c2007-10-26 19:42:18 +0000913 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000914 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000915 const llvm::Type *FieldTy =
916 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000917 const llvm::PointerType * BaseTy =
918 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000919 unsigned AS = BaseTy->getAddressSpace();
920 V = Builder.CreateBitCast(V,
921 llvm::PointerType::get(FieldTy, AS),
922 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000923 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000924
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000925 LValue LV =
926 LValue::MakeAddr(V,
927 Field->getType().getCVRQualifiers()|CVRQualifiers);
928 if (const ObjCGCAttr *A = Field->getAttr<ObjCGCAttr>()) {
929 ObjCGCAttr::GCAttrTypes attrType = A->getType();
930 // __weak attribute on a field is ignored.
931 LValue::SetObjCType(false, attrType == ObjCGCAttr::Strong, LV);
932 }
933 else if (CGM.getLangOptions().ObjC1 &&
934 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
935 QualType ExprTy = Field->getType();
936 if (getContext().isObjCObjectPointerType(ExprTy))
937 LValue::SetObjCType(false, true, LV);
938 }
939 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +0000940}
941
Eli Friedman1e692ac2008-06-13 23:01:12 +0000942LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
943{
Eli Friedman06e863f2008-05-13 23:18:27 +0000944 const llvm::Type *LTy = ConvertType(E->getType());
945 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
946
947 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000948 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000949
950 if (E->getType()->isComplexType()) {
951 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
952 } else if (hasAggregateLLVMType(E->getType())) {
953 EmitAnyExpr(InitExpr, DeclPtr, false);
954 } else {
955 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
956 }
957
958 return Result;
959}
960
Reid Spencer5f016e22007-07-11 17:01:13 +0000961//===--------------------------------------------------------------------===//
962// Expression Emission
963//===--------------------------------------------------------------------===//
964
Chris Lattner7016a702007-08-20 22:37:10 +0000965
Reid Spencer5f016e22007-07-11 17:01:13 +0000966RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000967 if (const ImplicitCastExpr *IcExpr =
968 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
969 if (const DeclRefExpr *DRExpr =
970 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
971 if (const FunctionDecl *FDecl =
972 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
Douglas Gregor3c385e52009-02-14 18:57:46 +0000973 if (unsigned builtinID = FDecl->getBuiltinID(getContext()))
Daniel Dunbaref2abfe2009-02-16 22:43:43 +0000974 return EmitBuiltinExpr(FDecl, builtinID, E);
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000975
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000976 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +0000977 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000978
Chris Lattner7f02f722007-08-24 05:35:26 +0000979 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000980 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000981 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000982}
983
Ted Kremenek55499762008-06-17 02:43:46 +0000984RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
985 CallExpr::const_arg_iterator ArgBeg,
986 CallExpr::const_arg_iterator ArgEnd) {
987
Nate Begemane2ce1d92008-01-17 17:46:27 +0000988 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000989 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000990}
991
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000992LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
993 // Can only get l-value for binary operator expressions which are a
994 // simple assignment of aggregate type.
995 if (E->getOpcode() != BinaryOperator::Assign)
996 return EmitUnsupportedLValue(E, "binary l-value expression");
997
998 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
999 EmitAggExpr(E, Temp, false);
1000 // FIXME: Are these qualifiers correct?
1001 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1002}
1003
Christopher Lamb22c940e2007-12-29 05:02:41 +00001004LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
1005 // Can only get l-value for call expression returning aggregate type
1006 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +00001007 return LValue::MakeAddr(RV.getAggregateAddr(),
1008 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +00001009}
1010
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001011LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1012 // FIXME: This shouldn't require another copy.
1013 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1014 EmitAggExpr(E, Temp, false);
1015 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1016}
1017
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001018LValue
1019CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1020 EmitLocalBlockVarDecl(*E->getVarDecl());
1021 return EmitDeclRefLValue(E);
1022}
1023
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001024LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1025 // Can only get l-value for message expression returning aggregate type
1026 RValue RV = EmitObjCMessageExpr(E);
1027 // FIXME: can this be volatile?
1028 return LValue::MakeAddr(RV.getAggregateAddr(),
1029 E->getType().getCVRQualifiers());
1030}
1031
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001032llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
1033 const ObjCIvarDecl *Ivar) {
Chris Lattner391d77a2008-03-30 23:03:07 +00001034 // Objective-C objects are traditionally C structures with their layout
1035 // defined at compile-time. In some implementations, their layout is not
1036 // defined until run time in order to allow instance variables to be added to
1037 // a class without recompiling all of the subclasses. If this is the case
1038 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
1039 // implement the lookup itself.
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001040 if (CGM.getObjCRuntime().LateBoundIVars())
1041 assert(0 && "late-bound ivars are unsupported");
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001042 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001043}
1044
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001045LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1046 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001047 const ObjCIvarDecl *Ivar,
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001048 const FieldDecl *Field,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001049 unsigned CVRQualifiers) {
1050 // See comment in EmitIvarOffset.
1051 if (CGM.getObjCRuntime().LateBoundIVars())
1052 assert(0 && "late-bound ivars are unsupported");
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001053
Daniel Dunbarbb767732009-02-17 18:31:04 +00001054 LValue LV = CGM.getObjCRuntime().EmitObjCValueForIvar(*this,
1055 ObjectTy,
1056 BaseValue, Ivar, Field,
1057 CVRQualifiers);
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +00001058 SetVarDeclObjCAttribute(getContext(), Ivar, Ivar->getType(), LV);
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +00001059 return LV;
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001060}
1061
1062LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001063 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1064 llvm::Value *BaseValue = 0;
1065 const Expr *BaseExpr = E->getBase();
1066 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001067 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001068 if (E->isArrow()) {
1069 BaseValue = EmitScalarExpr(BaseExpr);
1070 const PointerType *PTy =
1071 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001072 ObjectTy = PTy->getPointeeType();
1073 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001074 } else {
1075 LValue BaseLV = EmitLValue(BaseExpr);
1076 // FIXME: this isn't right for bitfields.
1077 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001078 ObjectTy = BaseExpr->getType();
1079 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001080 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001081
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001082 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
Fariborz Jahanianefc4c4b2008-12-18 17:29:46 +00001083 getContext().getFieldDecl(E), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001084}
1085
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001086LValue
1087CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1088 // This is a special l-value that just issues sends when we load or
1089 // store through it.
1090 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1091}
1092
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001093LValue
1094CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1095 // This is a special l-value that just issues sends when we load or
1096 // store through it.
1097 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1098}
1099
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001100LValue
1101CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
1102 return EmitUnsupportedLValue(E, "use of super");
1103}
1104
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001105RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek55499762008-06-17 02:43:46 +00001106 CallExpr::const_arg_iterator ArgBeg,
1107 CallExpr::const_arg_iterator ArgEnd) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001108 // Get the actual function type. The callee type will always be a
1109 // pointer to function type or a block pointer type.
1110 QualType ResultType;
1111 if (const BlockPointerType *BPT = dyn_cast<BlockPointerType>(CalleeType)) {
1112 ResultType = BPT->getPointeeType()->getAsFunctionType()->getResultType();
1113 } else {
1114 assert(CalleeType->isFunctionPointerType() &&
1115 "Call must have function pointer type!");
1116 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1117 ResultType = FnType->getAsFunctionType()->getResultType();
1118 }
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001119
1120 CallArgList Args;
1121 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar46f45b92008-09-09 01:06:48 +00001122 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
1123 I->getType()));
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001124
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001125 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
1126 Callee, Args);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001127}