blob: 0449900a0f88ff518c965b05c0aac467425452c5 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Daniel Dunbara8f02052008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbar84bb85f2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbareee5cd12008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbar64789f82008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedmana04e70d2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Chris Lattner4b009652007-07-25 00:24:17 +000021using namespace clang;
22using namespace CodeGen;
23
24//===--------------------------------------------------------------------===//
25// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
28/// CreateTempAlloca - This creates a alloca and inserts it into the entry
29/// block.
30llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
31 const char *Name) {
32 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
33}
34
35/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
36/// expression and compare the result against zero, returning an Int1Ty value.
37llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattnercc50a512007-08-26 16:46:58 +000038 QualType BoolTy = getContext().BoolTy;
Chris Lattnerde0908b2008-04-04 16:54:41 +000039 if (!E->getType()->isAnyComplexType())
Chris Lattnercc50a512007-08-26 16:46:58 +000040 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner4b009652007-07-25 00:24:17 +000041
Chris Lattnercc50a512007-08-26 16:46:58 +000042 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattner4b009652007-07-25 00:24:17 +000043}
44
Chris Lattnere24c4cf2007-08-31 22:49:20 +000045/// EmitAnyExpr - Emit code to compute the specified expression which can have
46/// any type. The result is returned as an RValue struct. If this is an
47/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
48/// the result should be returned.
49RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
50 bool isAggLocVolatile) {
51 if (!hasAggregateLLVMType(E->getType()))
52 return RValue::get(EmitScalarExpr(E));
Chris Lattnerde0908b2008-04-04 16:54:41 +000053 else if (E->getType()->isAnyComplexType())
Chris Lattnere24c4cf2007-08-31 22:49:20 +000054 return RValue::getComplex(EmitComplexExpr(E));
55
56 EmitAggExpr(E, AggLoc, isAggLocVolatile);
57 return RValue::getAggregate(AggLoc);
58}
59
Daniel Dunbar0a2da0f2008-09-09 01:06:48 +000060/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
61/// will always be accessible even if no aggregate location is
62/// provided.
63RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
64 bool isAggLocVolatile) {
65 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
66 !E->getType()->isAnyComplexType())
67 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
68 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
69}
70
Dan Gohman4751a3a2008-05-22 00:50:06 +000071/// getAccessedFieldNo - Given an encoded value and a result number, return
72/// the input field number being accessed.
73unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
74 const llvm::Constant *Elts) {
75 if (isa<llvm::ConstantAggregateZero>(Elts))
76 return 0;
77
78 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
79}
80
Chris Lattnere24c4cf2007-08-31 22:49:20 +000081
Chris Lattner4b009652007-07-25 00:24:17 +000082//===----------------------------------------------------------------------===//
83// LValue Expression Emission
84//===----------------------------------------------------------------------===//
85
Daniel Dunbar900c85a2009-02-05 07:09:07 +000086RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
87 if (Ty->isVoidType()) {
88 return RValue::get(0);
89 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
Daniel Dunbar8cb73402009-01-09 20:09:28 +000090 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
91 llvm::Value *U = llvm::UndefValue::get(EltTy);
92 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbar900c85a2009-02-05 07:09:07 +000093 } else if (hasAggregateLLVMType(Ty)) {
94 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
95 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8cb73402009-01-09 20:09:28 +000096 } else {
Daniel Dunbar900c85a2009-02-05 07:09:07 +000097 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8cb73402009-01-09 20:09:28 +000098 }
Daniel Dunbare3a6a682009-01-09 16:50:52 +000099}
100
Daniel Dunbar900c85a2009-02-05 07:09:07 +0000101RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
102 const char *Name) {
103 ErrorUnsupported(E, Name);
104 return GetUndefRValue(E->getType());
105}
106
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000107LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
108 const char *Name) {
109 ErrorUnsupported(E, Name);
110 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
111 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000112 E->getType().getCVRQualifiers(),
113 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000114}
115
Chris Lattner4b009652007-07-25 00:24:17 +0000116/// EmitLValue - Emit code to compute a designator that specifies the location
117/// of the expression.
118///
119/// This can return one of two things: a simple address or a bitfield
120/// reference. In either case, the LLVM Value* in the LValue structure is
121/// guaranteed to be an LLVM pointer type.
122///
123/// If this returns a bitfield reference, nothing about the pointee type of
124/// the LLVM value is known: For example, it may not be a pointer to an
125/// integer.
126///
127/// If this returns a normal address, and if the lvalue's C type is fixed
128/// size, this method guarantees that the returned pointer type will point to
129/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
130/// variable length type, this is not possible.
131///
132LValue CodeGenFunction::EmitLValue(const Expr *E) {
133 switch (E->getStmtClass()) {
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000134 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000135
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000136 case Expr::BinaryOperatorClass:
137 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000138 case Expr::CallExprClass:
139 case Expr::CXXOperatorCallExprClass:
140 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar95d08f22009-02-11 20:59:32 +0000141 case Expr::VAArgExprClass:
142 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor566782a2009-01-06 05:10:23 +0000143 case Expr::DeclRefExprClass:
144 case Expr::QualifiedDeclRefExprClass:
145 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000146 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner69909292008-08-10 01:53:14 +0000147 case Expr::PredefinedExprClass:
148 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000149 case Expr::StringLiteralClass:
150 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000151
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +0000152 case Expr::CXXConditionDeclExprClass:
153 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
154
Daniel Dunbar5e105892008-08-23 10:51:21 +0000155 case Expr::ObjCMessageExprClass:
156 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000157 case Expr::ObjCIvarRefExprClass:
158 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000159 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbare6c31752008-08-29 08:11:39 +0000160 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000161 case Expr::ObjCKVCRefExprClass:
162 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregord8606632008-11-04 14:56:14 +0000163 case Expr::ObjCSuperExprClass:
164 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
165
Chris Lattner4b009652007-07-25 00:24:17 +0000166 case Expr::UnaryOperatorClass:
167 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
168 case Expr::ArraySubscriptExprClass:
169 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemanaf6ed502008-04-18 23:10:10 +0000170 case Expr::ExtVectorElementExprClass:
171 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patel41b66252007-10-23 20:28:39 +0000172 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000173 case Expr::CompoundLiteralExprClass:
174 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattnera5f779dc2008-12-12 05:35:08 +0000175 case Expr::ChooseExprClass:
176 // __builtin_choose_expr is the lvalue of the selected operand.
177 if (cast<ChooseExpr>(E)->isConditionTrue(getContext()))
178 return EmitLValue(cast<ChooseExpr>(E)->getLHS());
179 else
180 return EmitLValue(cast<ChooseExpr>(E)->getRHS());
Chris Lattner4b009652007-07-25 00:24:17 +0000181 }
182}
183
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000184llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
185 QualType Ty) {
186 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
187
188 // Bool can have different representation in memory than in
189 // registers.
190 if (Ty->isBooleanType())
191 if (V->getType() != llvm::Type::Int1Ty)
192 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
193
194 return V;
195}
196
197void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
198 bool Volatile) {
199 // Handle stores of types which have different representations in
200 // memory and as LLVM values.
201
202 // FIXME: We shouldn't be this loose, we should only do this
203 // conversion when we have a type we know has a different memory
204 // representation (e.g., bool).
205
206 const llvm::Type *SrcTy = Value->getType();
207 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
208 if (DstPtr->getElementType() != SrcTy) {
209 const llvm::Type *MemTy =
210 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
211 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
212 }
213
214 Builder.CreateStore(Value, Addr, Volatile);
215}
216
Chris Lattner4b009652007-07-25 00:24:17 +0000217/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
218/// this method emits the address of the lvalue, then loads the result as an
219/// rvalue, returning the rvalue.
220RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000221 if (LV.isObjCWeak()) {
Fariborz Jahanian3305ad32008-11-18 21:45:40 +0000222 // load of a __weak object.
223 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian252d87f2008-11-18 22:37:34 +0000224 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian3305ad32008-11-18 21:45:40 +0000225 AddrWeakObj);
226 return RValue::get(read_weak);
227 }
228
Chris Lattner4b009652007-07-25 00:24:17 +0000229 if (LV.isSimple()) {
230 llvm::Value *Ptr = LV.getAddress();
231 const llvm::Type *EltTy =
232 cast<llvm::PointerType>(Ptr->getType())->getElementType();
233
234 // Simple scalar l-value.
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000235 if (EltTy->isSingleValueType())
236 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
237 ExprType));
Chris Lattner4b009652007-07-25 00:24:17 +0000238
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000239 assert(ExprType->isFunctionType() && "Unknown scalar value");
240 return RValue::get(Ptr);
Chris Lattner4b009652007-07-25 00:24:17 +0000241 }
242
243 if (LV.isVectorElt()) {
Eli Friedman2e630542008-06-13 23:01:12 +0000244 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
245 LV.isVolatileQualified(), "tmp");
Chris Lattner4b009652007-07-25 00:24:17 +0000246 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
247 "vecext"));
248 }
Chris Lattnera735fac2007-08-03 00:16:29 +0000249
250 // If this is a reference to a subset of the elements of a vector, either
251 // shuffle the input or extract/insert them as appropriate.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000252 if (LV.isExtVectorElt())
253 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000254
255 if (LV.isBitfield())
256 return EmitLoadOfBitfieldLValue(LV, ExprType);
257
Daniel Dunbare6c31752008-08-29 08:11:39 +0000258 if (LV.isPropertyRef())
259 return EmitLoadOfPropertyRefLValue(LV, ExprType);
260
Chris Lattner09020ee2009-02-16 21:11:58 +0000261 assert(LV.isKVCRef() && "Unknown LValue type!");
262 return EmitLoadOfKVCRefLValue(LV, ExprType);
Chris Lattner4b009652007-07-25 00:24:17 +0000263}
264
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000265RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
266 QualType ExprType) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000267 unsigned StartBit = LV.getBitfieldStartBit();
268 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000269 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000270
271 const llvm::Type *EltTy =
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000272 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000273 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000274
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000275 // In some cases the bitfield may straddle two memory locations.
276 // Currently we load the entire bitfield, then do the magic to
277 // sign-extend it if necessary. This results in somewhat more code
278 // than necessary for the common case (one load), since two shifts
279 // accomplish both the masking and sign extension.
280 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
281 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
282
283 // Shift to proper location.
Daniel Dunbar198edd52008-11-13 02:20:34 +0000284 if (StartBit)
285 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
286 "bf.lo");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000287
288 // Mask off unused bits.
289 llvm::Constant *LowMask =
290 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
291 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
292
293 // Fetch the high bits if necessary.
294 if (LowBits < BitfieldSize) {
295 unsigned HighBits = BitfieldSize - LowBits;
296 llvm::Value *HighPtr =
297 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
298 "bf.ptr.hi");
299 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
300 LV.isVolatileQualified(),
301 "tmp");
302
303 // Mask off unused bits.
304 llvm::Constant *HighMask =
305 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
306 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000307
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000308 // Shift to proper location and or in to bitfield value.
309 HighVal = Builder.CreateShl(HighVal,
310 llvm::ConstantInt::get(EltTy, LowBits));
311 Val = Builder.CreateOr(Val, HighVal, "bf.val");
312 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000313
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000314 // Sign extend if necessary.
315 if (LV.isBitfieldSigned()) {
316 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
317 EltTySize - BitfieldSize);
318 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
319 ExtraBits, "bf.val.sext");
320 }
Eli Friedmana04e70d2008-05-17 20:03:47 +0000321
322 // The bitfield type and the normal type differ when the storage sizes
323 // differ (currently just _Bool).
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000324 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000325
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000326 return RValue::get(Val);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000327}
328
Daniel Dunbare6c31752008-08-29 08:11:39 +0000329RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
330 QualType ExprType) {
331 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
332}
333
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000334RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
335 QualType ExprType) {
336 return EmitObjCPropertyGet(LV.getKVCRefExpr());
337}
338
Nate Begeman7903d052009-01-18 06:42:49 +0000339// If this is a reference to a subset of the elements of a vector, create an
340// appropriate shufflevector.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000341RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
342 QualType ExprType) {
Eli Friedman2e630542008-06-13 23:01:12 +0000343 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
344 LV.isVolatileQualified(), "tmp");
Chris Lattner944f7962007-08-03 16:18:34 +0000345
Nate Begemanc8e51f82008-05-09 06:41:27 +0000346 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner944f7962007-08-03 16:18:34 +0000347
348 // If the result of the expression is a non-vector type, we must be
349 // extracting a single element. Just codegen as an extractelement.
Chris Lattner4b492962007-08-10 17:10:08 +0000350 const VectorType *ExprVT = ExprType->getAsVectorType();
351 if (!ExprVT) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000352 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000353 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
354 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
355 }
Nate Begeman7903d052009-01-18 06:42:49 +0000356
357 // Always use shuffle vector to try to retain the original program structure
Chris Lattner4b492962007-08-10 17:10:08 +0000358 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner944f7962007-08-03 16:18:34 +0000359
Nate Begeman7903d052009-01-18 06:42:49 +0000360 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner944f7962007-08-03 16:18:34 +0000361 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000362 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman7903d052009-01-18 06:42:49 +0000363 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner944f7962007-08-03 16:18:34 +0000364 }
365
Nate Begeman7903d052009-01-18 06:42:49 +0000366 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
367 Vec = Builder.CreateShuffleVector(Vec,
368 llvm::UndefValue::get(Vec->getType()),
369 MaskV, "tmp");
370 return RValue::get(Vec);
Chris Lattner944f7962007-08-03 16:18:34 +0000371}
372
373
Chris Lattner4b009652007-07-25 00:24:17 +0000374
375/// EmitStoreThroughLValue - Store the specified rvalue into the specified
376/// lvalue, where both are guaranteed to the have the same type, and that type
377/// is 'Ty'.
378void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
379 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000380 if (!Dst.isSimple()) {
381 if (Dst.isVectorElt()) {
382 // Read/modify/write the vector, inserting the new element.
Eli Friedman2e630542008-06-13 23:01:12 +0000383 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
384 Dst.isVolatileQualified(), "tmp");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000385 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner5bfdd232007-08-03 16:28:33 +0000386 Dst.getVectorIdx(), "vecins");
Eli Friedman2e630542008-06-13 23:01:12 +0000387 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000388 return;
389 }
Chris Lattner4b009652007-07-25 00:24:17 +0000390
Nate Begemanaf6ed502008-04-18 23:10:10 +0000391 // If this is an update of extended vector elements, insert them as
392 // appropriate.
393 if (Dst.isExtVectorElt())
394 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000395
396 if (Dst.isBitfield())
397 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
398
Daniel Dunbare6c31752008-08-29 08:11:39 +0000399 if (Dst.isPropertyRef())
400 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
401
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000402 if (Dst.isKVCRef())
403 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
404
Lauro Ramos Venancio14d39842008-01-22 22:38:35 +0000405 assert(0 && "Unknown LValue type");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000406 }
Chris Lattner4b009652007-07-25 00:24:17 +0000407
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000408 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000409 // load of a __weak object.
410 llvm::Value *LvalueDst = Dst.getAddress();
411 llvm::Value *src = Src.getScalarVal();
412 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
413 return;
414 }
415
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000416 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000417 // load of a __strong object.
418 llvm::Value *LvalueDst = Dst.getAddress();
419 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian5a0c3412009-02-19 18:29:24 +0000420#if 0
421 // FIXME. We cannot positively determine if we have an
422 // 'ivar' assignment, object assignment or an unknown
423 // assignment. For now, generate call to objc_assign_strongCast
424 // assignment which is a safe, but consevative assumption.
Fariborz Jahanian70522662008-11-20 20:53:20 +0000425 if (Dst.isObjCIvar())
426 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
427 else
428 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian5a0c3412009-02-19 18:29:24 +0000429#endif
430 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000431 return;
432 }
433
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000434 assert(Src.isScalar() && "Can't emit an agg store with this method");
Daniel Dunbarf1c5d842009-02-10 00:57:50 +0000435 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
436 Dst.isVolatileQualified());
Chris Lattner4b009652007-07-25 00:24:17 +0000437}
438
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000439void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000440 QualType Ty,
441 llvm::Value **Result) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000442 unsigned StartBit = Dst.getBitfieldStartBit();
443 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000444 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000445
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000446 const llvm::Type *EltTy =
447 cast<llvm::PointerType>(Ptr->getType())->getElementType();
448 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
449
450 // Get the new value, cast to the appropriate type and masked to
451 // exactly the size of the bit-field.
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000452 llvm::Value *SrcVal = Src.getScalarVal();
453 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000454 llvm::Constant *Mask =
455 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
456 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000457
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000458 // Return the new value of the bit-field, if requested.
459 if (Result) {
460 // Cast back to the proper type for result.
461 const llvm::Type *SrcTy = SrcVal->getType();
462 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
463 "bf.reload.val");
464
465 // Sign extend if necessary.
466 if (Dst.isBitfieldSigned()) {
467 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
468 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
469 SrcTySize - BitfieldSize);
470 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
471 ExtraBits, "bf.reload.sext");
472 }
473
474 *Result = SrcTrunc;
475 }
476
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000477 // In some cases the bitfield may straddle two memory locations.
478 // Emit the low part first and check to see if the high needs to be
479 // done.
480 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
481 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
482 "bf.prev.low");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000483
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000484 // Compute the mask for zero-ing the low part of this bitfield.
485 llvm::Constant *InvMask =
486 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
487 StartBit + LowBits));
488
489 // Compute the new low part as
490 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
491 // with the shift of NewVal implicitly stripping the high bits.
492 llvm::Value *NewLowVal =
493 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
494 "bf.value.lo");
495 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
496 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
497
498 // Write back.
499 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedmana04e70d2008-05-17 20:03:47 +0000500
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000501 // If the low part doesn't cover the bitfield emit a high part.
502 if (LowBits < BitfieldSize) {
503 unsigned HighBits = BitfieldSize - LowBits;
504 llvm::Value *HighPtr =
505 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
506 "bf.ptr.hi");
507 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
508 Dst.isVolatileQualified(),
509 "bf.prev.hi");
510
511 // Compute the mask for zero-ing the high part of this bitfield.
512 llvm::Constant *InvMask =
513 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
514
515 // Compute the new high part as
516 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
517 // where the high bits of NewVal have already been cleared and the
518 // shift stripping the low bits.
519 llvm::Value *NewHighVal =
520 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
521 "bf.value.high");
522 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
523 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
524
525 // Write back.
526 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
527 }
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000528}
529
Daniel Dunbare6c31752008-08-29 08:11:39 +0000530void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
531 LValue Dst,
532 QualType Ty) {
533 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
534}
535
Fariborz Jahanianb0973da2008-11-22 22:30:21 +0000536void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
537 LValue Dst,
538 QualType Ty) {
539 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
540}
541
Nate Begemanaf6ed502008-04-18 23:10:10 +0000542void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
543 LValue Dst,
544 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000545 // This access turns into a read/modify/write of the vector. Load the input
546 // value now.
Eli Friedman2e630542008-06-13 23:01:12 +0000547 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
548 Dst.isVolatileQualified(), "tmp");
Nate Begemanc8e51f82008-05-09 06:41:27 +0000549 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000550
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000551 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000552
Chris Lattner940966d2007-08-03 16:37:04 +0000553 if (const VectorType *VTy = Ty->getAsVectorType()) {
554 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman7903d052009-01-18 06:42:49 +0000555 unsigned NumDstElts =
556 cast<llvm::VectorType>(Vec->getType())->getNumElements();
557 if (NumDstElts == NumSrcElts) {
558 // Use shuffle vector is the src and destination are the same number
559 // of elements
560 llvm::SmallVector<llvm::Constant*, 4> Mask;
561 for (unsigned i = 0; i != NumSrcElts; ++i) {
562 unsigned InIdx = getAccessedFieldNo(i, Elts);
563 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
564 }
565
566 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
567 Vec = Builder.CreateShuffleVector(SrcVal,
568 llvm::UndefValue::get(Vec->getType()),
569 MaskV, "tmp");
570 }
571 else if (NumDstElts > NumSrcElts) {
572 // Extended the source vector to the same length and then shuffle it
573 // into the destination.
574 // FIXME: since we're shuffling with undef, can we just use the indices
575 // into that? This could be simpler.
576 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
577 unsigned i;
578 for (i = 0; i != NumSrcElts; ++i)
579 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
580 for (; i != NumDstElts; ++i)
581 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
582 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
583 ExtMask.size());
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +0000584 llvm::Value *ExtSrcVal =
585 Builder.CreateShuffleVector(SrcVal,
586 llvm::UndefValue::get(SrcVal->getType()),
587 ExtMaskV, "tmp");
Nate Begeman7903d052009-01-18 06:42:49 +0000588 // build identity
589 llvm::SmallVector<llvm::Constant*, 4> Mask;
590 for (unsigned i = 0; i != NumDstElts; ++i) {
591 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
592 }
593 // modify when what gets shuffled in
594 for (unsigned i = 0; i != NumSrcElts; ++i) {
595 unsigned Idx = getAccessedFieldNo(i, Elts);
596 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
597 }
598 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
599 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
600 }
601 else {
602 // We should never shorten the vector
603 assert(0 && "unexpected shorten vector length");
Chris Lattner940966d2007-08-03 16:37:04 +0000604 }
605 } else {
606 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4751a3a2008-05-22 00:50:06 +0000607 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner5bfdd232007-08-03 16:28:33 +0000608 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
609 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000610 }
611
Eli Friedman2e630542008-06-13 23:01:12 +0000612 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000613}
614
Chris Lattner4b009652007-07-25 00:24:17 +0000615LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000616 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
617
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000618 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
619 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000620 LValue LV;
621 if (VD->getStorageClass() == VarDecl::Extern) {
622 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000623 E->getType().getCVRQualifiers(),
624 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000625 }
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000626 else {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000627 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000628 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanian4d41b952009-02-20 01:14:43 +0000629 // local variables do not get their gc attribute set.
630 QualType::GCAttrTypes attr = QualType::GCNone;
631 // local static?
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000632 if (!VD->hasLocalStorage())
Fariborz Jahanian4d41b952009-02-20 01:14:43 +0000633 attr = getContext().getObjCGCAttrKind(E->getType());
634 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000635 }
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000636 LValue::SetObjCNonGC(LV, VD->hasLocalStorage());
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000637 return LV;
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000638 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanianc192d4d2008-11-18 20:18:11 +0000639 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000640 E->getType().getCVRQualifiers(),
641 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanianc192d4d2008-11-18 20:18:11 +0000642 return LV;
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000643 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000644 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000645 E->getType().getCVRQualifiers(),
646 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner4b009652007-07-25 00:24:17 +0000647 }
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000648 else if (const ImplicitParamDecl *IPD =
649 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
650 llvm::Value *V = LocalDeclMap[IPD];
651 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000652 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
653 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000654 }
Chris Lattner4b009652007-07-25 00:24:17 +0000655 assert(0 && "Unimp declref");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000656 //an invalid LValue, but the assert will
657 //ensure that this point is never reached.
658 return LValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000659}
660
661LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
662 // __extension__ doesn't affect lvalue-ness.
663 if (E->getOpcode() == UnaryOperator::Extension)
664 return EmitLValue(E->getSubExpr());
665
Chris Lattnerc154ac12008-07-26 22:37:01 +0000666 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner5bf72022007-10-30 22:53:42 +0000667 switch (E->getOpcode()) {
668 default: assert(0 && "Unknown unary operator lvalue!");
669 case UnaryOperator::Deref:
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000670 {
671 QualType T = E->getSubExpr()->getType()->getAsPointerType()->getPointeeType();
Fariborz Jahanian2224fb22009-02-23 18:59:50 +0000672 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
673 ExprTy->getAsPointerType()->getPointeeType()
Fariborz Jahanian4d41b952009-02-20 01:14:43 +0000674 .getCVRQualifiers(),
Fariborz Jahanian2224fb22009-02-23 18:59:50 +0000675 getContext().getObjCGCAttrKind(T));
676 // We should not generate __weak write barrier on indirect reference
677 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
678 // But, we continue to generate __strong write barrier on indirect write
679 // into a pointer to object.
680 if (getContext().getLangOptions().ObjC1 &&
681 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
682 LV.isObjCWeak())
683 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
684 return LV;
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000685 }
Chris Lattner5bf72022007-10-30 22:53:42 +0000686 case UnaryOperator::Real:
687 case UnaryOperator::Imag:
688 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner07307562008-03-19 05:19:41 +0000689 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
690 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000691 Idx, "idx"),
692 ExprTy.getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000693 }
Chris Lattner4b009652007-07-25 00:24:17 +0000694}
695
696LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000697 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4b009652007-07-25 00:24:17 +0000698}
699
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000700LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000701 std::string GlobalVarName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000702
703 switch (Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000704 default:
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000705 assert(0 && "Invalid type");
Chris Lattner69909292008-08-10 01:53:14 +0000706 case PredefinedExpr::Func:
Chris Lattner4b009652007-07-25 00:24:17 +0000707 GlobalVarName = "__func__.";
708 break;
Chris Lattner69909292008-08-10 01:53:14 +0000709 case PredefinedExpr::Function:
Chris Lattner4b009652007-07-25 00:24:17 +0000710 GlobalVarName = "__FUNCTION__.";
711 break;
Chris Lattner69909292008-08-10 01:53:14 +0000712 case PredefinedExpr::PrettyFunction:
Chris Lattner4b009652007-07-25 00:24:17 +0000713 // FIXME:: Demangle C++ method names
714 GlobalVarName = "__PRETTY_FUNCTION__.";
715 break;
716 }
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000717
718 std::string FunctionName;
719 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
Douglas Gregor3c3c4542009-02-18 23:53:56 +0000720 FunctionName = CGM.getMangledName(FD);
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000721 } else {
722 // Just get the mangled name.
723 FunctionName = CurFn->getName();
724 }
725
Chris Lattner6e6a5972008-04-04 04:07:35 +0000726 GlobalVarName += FunctionName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000727 llvm::Constant *C =
728 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
729 return LValue::MakeAddr(C, 0);
730}
731
732LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
733 switch (E->getIdentType()) {
734 default:
735 return EmitUnsupportedLValue(E, "predefined expression");
736 case PredefinedExpr::Func:
737 case PredefinedExpr::Function:
738 case PredefinedExpr::PrettyFunction:
739 return EmitPredefinedFunctionName(E->getIdentType());
740 }
Chris Lattner4b009652007-07-25 00:24:17 +0000741}
742
743LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000744 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000745 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Chris Lattner4b009652007-07-25 00:24:17 +0000746
747 // If the base is a vector type, then we are forming a vector element lvalue
748 // with this subscript.
Eli Friedman2e630542008-06-13 23:01:12 +0000749 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000750 // Emit the vector as an lvalue to get its address.
Eli Friedman2e630542008-06-13 23:01:12 +0000751 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000752 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Chris Lattner4b009652007-07-25 00:24:17 +0000753 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman2e630542008-06-13 23:01:12 +0000754 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
755 E->getBase()->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000756 }
757
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000758 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000759 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner4b009652007-07-25 00:24:17 +0000760
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000761 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner2af72ac2007-08-08 17:43:05 +0000762 QualType IdxTy = E->getIdx()->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000763 bool IdxSigned = IdxTy->isSignedIntegerType();
764 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
765 if (IdxBitwidth != LLVMPointerWidth)
766 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
767 IdxSigned, "idxprom");
768
769 // We know that the pointer points to a type of the correct size, unless the
770 // size is a VLA.
Anders Carlsson3bb57e82008-12-21 00:11:23 +0000771 if (const VariableArrayType *VAT =
772 getContext().getAsVariableArrayType(E->getType())) {
773 llvm::Value *VLASize = VLASizeMap[VAT];
774
775 Idx = Builder.CreateMul(Idx, VLASize);
776
Anders Carlsson76d19c82008-12-21 03:44:36 +0000777 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson3bb57e82008-12-21 00:11:23 +0000778
779 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
780 Idx = Builder.CreateUDiv(Idx,
781 llvm::ConstantInt::get(Idx->getType(),
782 BaseTypeSize));
783 }
784
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000785 QualType T = E->getBase()->getType();
786 QualType ExprTy = getContext().getCanonicalType(T);
787 T = T->getAsPointerType()->getPointeeType();
Fariborz Jahanian1ff3c9d2009-02-21 23:37:19 +0000788 LValue LV =
789 LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000790 ExprTy->getAsPointerType()->getPointeeType().getCVRQualifiers(),
791 getContext().getObjCGCAttrKind(T));
Fariborz Jahanian1ff3c9d2009-02-21 23:37:19 +0000792 if (getContext().getLangOptions().ObjC1 &&
793 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian0c195b92009-02-22 18:40:18 +0000794 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
Fariborz Jahanian1ff3c9d2009-02-21 23:37:19 +0000795 return LV;
Chris Lattner4b009652007-07-25 00:24:17 +0000796}
797
Nate Begemana1ae7442008-05-13 21:03:02 +0000798static
799llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
800 llvm::SmallVector<llvm::Constant *, 4> CElts;
801
802 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
803 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
804
805 return llvm::ConstantVector::get(&CElts[0], CElts.size());
806}
807
Chris Lattner65520192007-08-02 23:37:31 +0000808LValue CodeGenFunction::
Nate Begemanaf6ed502008-04-18 23:10:10 +0000809EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner65520192007-08-02 23:37:31 +0000810 // Emit the base vector as an l-value.
Chris Lattner09020ee2009-02-16 21:11:58 +0000811 LValue Base;
812
813 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner98e7fcc2009-02-16 22:14:05 +0000814 if (!E->isArrow()) {
Chris Lattner09020ee2009-02-16 21:11:58 +0000815 assert(E->getBase()->getType()->isVectorType());
816 Base = EmitLValue(E->getBase());
Chris Lattner98e7fcc2009-02-16 22:14:05 +0000817 } else {
818 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
819 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
820 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner09020ee2009-02-16 21:11:58 +0000821 }
Chris Lattner65520192007-08-02 23:37:31 +0000822
Nate Begemana1ae7442008-05-13 21:03:02 +0000823 // Encode the element access list into a vector of unsigned indices.
824 llvm::SmallVector<unsigned, 4> Indices;
825 E->getEncodedElementAccess(Indices);
826
827 if (Base.isSimple()) {
828 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman2e630542008-06-13 23:01:12 +0000829 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner9df79c32009-02-16 22:25:49 +0000830 Base.getQualifiers());
Nate Begemana1ae7442008-05-13 21:03:02 +0000831 }
832 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
833
834 llvm::Constant *BaseElts = Base.getExtVectorElts();
835 llvm::SmallVector<llvm::Constant *, 4> CElts;
836
837 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
838 if (isa<llvm::ConstantAggregateZero>(BaseElts))
839 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
840 else
841 CElts.push_back(BaseElts->getOperand(Indices[i]));
842 }
843 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman2e630542008-06-13 23:01:12 +0000844 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner9df79c32009-02-16 22:25:49 +0000845 Base.getQualifiers());
Chris Lattner65520192007-08-02 23:37:31 +0000846}
847
Devang Patel41b66252007-10-23 20:28:39 +0000848LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patele1f79db2007-12-11 21:33:16 +0000849 bool isUnion = false;
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000850 bool isIvar = false;
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000851 bool isNonGC = false;
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000852 Expr *BaseExpr = E->getBase();
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000853 llvm::Value *BaseValue = NULL;
Eli Friedman2e630542008-06-13 23:01:12 +0000854 unsigned CVRQualifiers=0;
855
Chris Lattner659079e2007-12-02 18:52:07 +0000856 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patele1f79db2007-12-11 21:33:16 +0000857 if (E->isArrow()) {
Devang Patel2b24fd92007-10-26 18:15:21 +0000858 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patele1f79db2007-12-11 21:33:16 +0000859 const PointerType *PTy =
Chris Lattnerc154ac12008-07-26 22:37:01 +0000860 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patele1f79db2007-12-11 21:33:16 +0000861 if (PTy->getPointeeType()->isUnionType())
862 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000863 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner9df79c32009-02-16 22:25:49 +0000864 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
865 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian4e881652009-01-12 23:27:26 +0000866 RValue RV = EmitObjCPropertyGet(BaseExpr);
867 BaseValue = RV.getAggregateAddr();
868 if (BaseExpr->getType()->isUnionType())
869 isUnion = true;
870 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner9df79c32009-02-16 22:25:49 +0000871 } else {
Chris Lattner659079e2007-12-02 18:52:07 +0000872 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000873 if (BaseLV.isObjCIvar())
874 isIvar = true;
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000875 if (BaseLV.isNonGC())
876 isNonGC = true;
Chris Lattner659079e2007-12-02 18:52:07 +0000877 // FIXME: this isn't right for bitfields.
878 BaseValue = BaseLV.getAddress();
Devang Patele1f79db2007-12-11 21:33:16 +0000879 if (BaseExpr->getType()->isUnionType())
880 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000881 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner659079e2007-12-02 18:52:07 +0000882 }
Devang Patel41b66252007-10-23 20:28:39 +0000883
Douglas Gregor82d44772008-12-20 23:49:58 +0000884 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
885 // FIXME: Handle non-field member expressions
886 assert(Field && "No code generation for non-field member references");
Chris Lattner9df79c32009-02-16 22:25:49 +0000887 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
888 CVRQualifiers);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000889 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahaniana4c010e2009-02-21 00:30:43 +0000890 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian08c06f42008-11-21 18:14:01 +0000891 return MemExpLV;
Eli Friedmand3550112008-02-09 08:50:58 +0000892}
Devang Patel41b66252007-10-23 20:28:39 +0000893
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000894LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
895 FieldDecl* Field,
Fariborz Jahanianc912eb72009-02-03 19:03:09 +0000896 unsigned CVRQualifiers) {
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +0000897 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000898 // FIXME: CodeGenTypes should expose a method to get the appropriate
899 // type for FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +0000900 const llvm::Type *FieldTy =
901 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000902 const llvm::PointerType *BaseTy =
903 cast<llvm::PointerType>(BaseValue->getType());
904 unsigned AS = BaseTy->getAddressSpace();
905 BaseValue = Builder.CreateBitCast(BaseValue,
906 llvm::PointerType::get(FieldTy, AS),
907 "tmp");
908 llvm::Value *V = Builder.CreateGEP(BaseValue,
909 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
910 "tmp");
911
912 CodeGenTypes::BitFieldInfo bitFieldInfo =
913 CGM.getTypes().getBitFieldInfo(Field);
914 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
915 Field->getType()->isSignedIntegerType(),
916 Field->getType().getCVRQualifiers()|CVRQualifiers);
917}
918
Eli Friedmand3550112008-02-09 08:50:58 +0000919LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
920 FieldDecl* Field,
Eli Friedman2e630542008-06-13 23:01:12 +0000921 bool isUnion,
922 unsigned CVRQualifiers)
Eli Friedmand3550112008-02-09 08:50:58 +0000923{
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000924 if (Field->isBitField())
Fariborz Jahanianc912eb72009-02-03 19:03:09 +0000925 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000926
Fariborz Jahanianc912eb72009-02-03 19:03:09 +0000927 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanian86008c02008-12-15 20:35:07 +0000928 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman66813742008-05-29 11:33:25 +0000929
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000930 // Match union field type.
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000931 if (isUnion) {
Eli Friedman2e630542008-06-13 23:01:12 +0000932 const llvm::Type *FieldTy =
933 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patel0f2a8fb2007-10-30 20:59:40 +0000934 const llvm::PointerType * BaseTy =
935 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedmancecdc6b2008-05-21 13:24:44 +0000936 unsigned AS = BaseTy->getAddressSpace();
937 V = Builder.CreateBitCast(V,
938 llvm::PointerType::get(FieldTy, AS),
939 "tmp");
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000940 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000941
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000942 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanian80ff83c2009-02-18 17:52:36 +0000943 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000944 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
945 QualType Ty = Field->getType();
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000946 attr = Ty.getObjCGCAttr();
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000947 if (attr != QualType::GCNone) {
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000948 // __weak attribute on a field is ignored.
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000949 if (attr == QualType::Weak)
950 attr = QualType::GCNone;
Fariborz Jahaniancc59d472009-02-19 00:48:05 +0000951 }
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000952 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000953 attr = QualType::Strong;
Fariborz Jahanian31804e12009-02-18 18:52:41 +0000954 }
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +0000955 LValue LV =
956 LValue::MakeAddr(V,
957 Field->getType().getCVRQualifiers()|CVRQualifiers,
958 attr);
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000959 return LV;
Devang Patel41b66252007-10-23 20:28:39 +0000960}
961
Eli Friedman2e630542008-06-13 23:01:12 +0000962LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
963{
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000964 const llvm::Type *LTy = ConvertType(E->getType());
965 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
966
967 const Expr* InitExpr = E->getInitializer();
Eli Friedman2e630542008-06-13 23:01:12 +0000968 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000969
970 if (E->getType()->isComplexType()) {
971 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
972 } else if (hasAggregateLLVMType(E->getType())) {
973 EmitAnyExpr(InitExpr, DeclPtr, false);
974 } else {
975 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
976 }
977
978 return Result;
979}
980
Chris Lattner4b009652007-07-25 00:24:17 +0000981//===--------------------------------------------------------------------===//
982// Expression Emission
983//===--------------------------------------------------------------------===//
984
Chris Lattnerb2cb9cb2007-08-20 22:37:10 +0000985
Chris Lattner4b009652007-07-25 00:24:17 +0000986RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbar191eb9e2009-02-20 18:06:48 +0000987 // Builtins never have block type.
Daniel Dunbare3a6a682009-01-09 16:50:52 +0000988 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssond2a889b2009-02-12 00:39:25 +0000989 return EmitBlockCallExpr(E);
Daniel Dunbare3a6a682009-01-09 16:50:52 +0000990
Daniel Dunbar191eb9e2009-02-20 18:06:48 +0000991 const Decl *TargetDecl = 0;
Daniel Dunbar337f60a2009-02-20 19:34:33 +0000992 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
993 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
994 TargetDecl = DRE->getDecl();
995 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
996 if (unsigned builtinID = FD->getBuiltinID(getContext()))
997 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbar191eb9e2009-02-20 18:06:48 +0000998 }
999 }
1000
Chris Lattner9fba49a2007-08-24 05:35:26 +00001001 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman261f4ad2008-01-30 01:32:06 +00001002 return EmitCallExpr(Callee, E->getCallee()->getType(),
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001003 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattner02c60f52007-08-31 04:44:06 +00001004}
1005
Daniel Dunbaref0d4c72008-09-04 03:20:13 +00001006LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
1007 // Can only get l-value for binary operator expressions which are a
1008 // simple assignment of aggregate type.
1009 if (E->getOpcode() != BinaryOperator::Assign)
1010 return EmitUnsupportedLValue(E, "binary l-value expression");
1011
1012 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1013 EmitAggExpr(E, Temp, false);
1014 // FIXME: Are these qualifiers correct?
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001015 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1016 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbaref0d4c72008-09-04 03:20:13 +00001017}
1018
Christopher Lambad327ba2007-12-29 05:02:41 +00001019LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
1020 // Can only get l-value for call expression returning aggregate type
1021 RValue RV = EmitCallExpr(E);
Eli Friedman2e630542008-06-13 23:01:12 +00001022 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001023 E->getType().getCVRQualifiers(),
1024 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lambad327ba2007-12-29 05:02:41 +00001025}
1026
Daniel Dunbar95d08f22009-02-11 20:59:32 +00001027LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1028 // FIXME: This shouldn't require another copy.
1029 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1030 EmitAggExpr(E, Temp, false);
1031 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1032}
1033
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +00001034LValue
1035CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1036 EmitLocalBlockVarDecl(*E->getVarDecl());
1037 return EmitDeclRefLValue(E);
1038}
1039
Daniel Dunbar5e105892008-08-23 10:51:21 +00001040LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1041 // Can only get l-value for message expression returning aggregate type
1042 RValue RV = EmitObjCMessageExpr(E);
1043 // FIXME: can this be volatile?
1044 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahanianbbd4ca92009-02-19 23:36:06 +00001045 E->getType().getCVRQualifiers(),
1046 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar5e105892008-08-23 10:51:21 +00001047}
1048
Daniel Dunbare856ac22008-09-24 04:00:38 +00001049llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
1050 const ObjCIvarDecl *Ivar) {
Chris Lattnerb326b172008-03-30 23:03:07 +00001051 // Objective-C objects are traditionally C structures with their layout
1052 // defined at compile-time. In some implementations, their layout is not
1053 // defined until run time in order to allow instance variables to be added to
1054 // a class without recompiling all of the subclasses. If this is the case
1055 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
1056 // implement the lookup itself.
Daniel Dunbare856ac22008-09-24 04:00:38 +00001057 if (CGM.getObjCRuntime().LateBoundIVars())
1058 assert(0 && "late-bound ivars are unsupported");
Fariborz Jahanian27cc6662009-02-10 19:02:04 +00001059 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbare856ac22008-09-24 04:00:38 +00001060}
1061
Fariborz Jahanian55343922009-02-03 00:09:52 +00001062LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1063 llvm::Value *BaseValue,
Daniel Dunbare856ac22008-09-24 04:00:38 +00001064 const ObjCIvarDecl *Ivar,
Fariborz Jahanian86008c02008-12-15 20:35:07 +00001065 const FieldDecl *Field,
Daniel Dunbare856ac22008-09-24 04:00:38 +00001066 unsigned CVRQualifiers) {
1067 // See comment in EmitIvarOffset.
1068 if (CGM.getObjCRuntime().LateBoundIVars())
1069 assert(0 && "late-bound ivars are unsupported");
Daniel Dunbare856ac22008-09-24 04:00:38 +00001070
Daniel Dunbar6a3b16e2009-02-17 18:31:04 +00001071 LValue LV = CGM.getObjCRuntime().EmitObjCValueForIvar(*this,
1072 ObjectTy,
1073 BaseValue, Ivar, Field,
1074 CVRQualifiers);
Fariborz Jahanian70522662008-11-20 20:53:20 +00001075 return LV;
Daniel Dunbare856ac22008-09-24 04:00:38 +00001076}
1077
1078LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonae61b002008-08-25 01:53:23 +00001079 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1080 llvm::Value *BaseValue = 0;
1081 const Expr *BaseExpr = E->getBase();
1082 unsigned CVRQualifiers = 0;
Fariborz Jahanian55343922009-02-03 00:09:52 +00001083 QualType ObjectTy;
Anders Carlssonae61b002008-08-25 01:53:23 +00001084 if (E->isArrow()) {
1085 BaseValue = EmitScalarExpr(BaseExpr);
1086 const PointerType *PTy =
1087 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Fariborz Jahanian55343922009-02-03 00:09:52 +00001088 ObjectTy = PTy->getPointeeType();
1089 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonae61b002008-08-25 01:53:23 +00001090 } else {
1091 LValue BaseLV = EmitLValue(BaseExpr);
1092 // FIXME: this isn't right for bitfields.
1093 BaseValue = BaseLV.getAddress();
Fariborz Jahanian55343922009-02-03 00:09:52 +00001094 ObjectTy = BaseExpr->getType();
1095 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonae61b002008-08-25 01:53:23 +00001096 }
Daniel Dunbare856ac22008-09-24 04:00:38 +00001097
Fariborz Jahanian55343922009-02-03 00:09:52 +00001098 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
Fariborz Jahanianea944842008-12-18 17:29:46 +00001099 getContext().getFieldDecl(E), CVRQualifiers);
Chris Lattnerb326b172008-03-30 23:03:07 +00001100}
1101
Daniel Dunbare6c31752008-08-29 08:11:39 +00001102LValue
1103CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1104 // This is a special l-value that just issues sends when we load or
1105 // store through it.
1106 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1107}
1108
Fariborz Jahanianb0973da2008-11-22 22:30:21 +00001109LValue
1110CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1111 // This is a special l-value that just issues sends when we load or
1112 // store through it.
1113 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1114}
1115
Douglas Gregord8606632008-11-04 14:56:14 +00001116LValue
1117CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
1118 return EmitUnsupportedLValue(E, "use of super");
1119}
1120
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001121RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek2719e982008-06-17 02:43:46 +00001122 CallExpr::const_arg_iterator ArgBeg,
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001123 CallExpr::const_arg_iterator ArgEnd,
1124 const Decl *TargetDecl) {
Daniel Dunbare3a6a682009-01-09 16:50:52 +00001125 // Get the actual function type. The callee type will always be a
1126 // pointer to function type or a block pointer type.
1127 QualType ResultType;
1128 if (const BlockPointerType *BPT = dyn_cast<BlockPointerType>(CalleeType)) {
1129 ResultType = BPT->getPointeeType()->getAsFunctionType()->getResultType();
1130 } else {
1131 assert(CalleeType->isFunctionPointerType() &&
1132 "Call must have function pointer type!");
1133 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1134 ResultType = FnType->getAsFunctionType()->getResultType();
1135 }
Daniel Dunbar0ed60b02008-08-30 03:02:31 +00001136
1137 CallArgList Args;
1138 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar0a2da0f2008-09-09 01:06:48 +00001139 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
1140 I->getType()));
Daniel Dunbar0ed60b02008-08-30 03:02:31 +00001141
Daniel Dunbar34bda882009-02-02 23:23:47 +00001142 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbar191eb9e2009-02-20 18:06:48 +00001143 Callee, Args, TargetDecl);
Daniel Dunbara04840b2008-08-23 03:46:30 +00001144}