blob: dc447983f0e4a3d74b2aebf6e5221ef94aee1ae6 [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) {
Chris Lattnerf1466842009-03-22 00:24:14 +000032 if (!Builder.isNamePreserving())
33 Name = "";
Reid Spencer5f016e22007-07-11 17:01:13 +000034 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
35}
36
37/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
38/// expression and compare the result against zero, returning an Int1Ty value.
39llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000040 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000041 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000042 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000043
Chris Lattner9069fa22007-08-26 16:46:58 +000044 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000045}
46
Chris Lattner9b655512007-08-31 22:49:20 +000047/// EmitAnyExpr - Emit code to compute the specified expression which can have
48/// any type. The result is returned as an RValue struct. If this is an
49/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
50/// the result should be returned.
51RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
52 bool isAggLocVolatile) {
53 if (!hasAggregateLLVMType(E->getType()))
54 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000055 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000056 return RValue::getComplex(EmitComplexExpr(E));
57
58 EmitAggExpr(E, AggLoc, isAggLocVolatile);
59 return RValue::getAggregate(AggLoc);
60}
61
Daniel Dunbar46f45b92008-09-09 01:06:48 +000062/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
63/// will always be accessible even if no aggregate location is
64/// provided.
65RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
66 bool isAggLocVolatile) {
67 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
68 !E->getType()->isAnyComplexType())
69 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
70 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
71}
72
Anders Carlsson4029ca72009-05-20 00:24:07 +000073RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
74 QualType DestType) {
75 CGM.ErrorUnsupported(E, "reference binding");
76 return GetUndefRValue(DestType);
77}
78
79
Dan Gohman4f8d1232008-05-22 00:50:06 +000080/// getAccessedFieldNo - Given an encoded value and a result number, return
81/// the input field number being accessed.
82unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
83 const llvm::Constant *Elts) {
84 if (isa<llvm::ConstantAggregateZero>(Elts))
85 return 0;
86
87 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
88}
89
Chris Lattner9b655512007-08-31 22:49:20 +000090
Reid Spencer5f016e22007-07-11 17:01:13 +000091//===----------------------------------------------------------------------===//
92// LValue Expression Emission
93//===----------------------------------------------------------------------===//
94
Daniel Dunbar13e81732009-02-05 07:09:07 +000095RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
96 if (Ty->isVoidType()) {
97 return RValue::get(0);
98 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000099 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
100 llvm::Value *U = llvm::UndefValue::get(EltTy);
101 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbar13e81732009-02-05 07:09:07 +0000102 } else if (hasAggregateLLVMType(Ty)) {
103 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
104 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000105 } else {
Daniel Dunbar13e81732009-02-05 07:09:07 +0000106 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000107 }
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000108}
109
Daniel Dunbar13e81732009-02-05 07:09:07 +0000110RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
111 const char *Name) {
112 ErrorUnsupported(E, Name);
113 return GetUndefRValue(E->getType());
114}
115
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000116LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
117 const char *Name) {
118 ErrorUnsupported(E, Name);
119 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
120 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000121 E->getType().getCVRQualifiers(),
122 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000123}
124
Reid Spencer5f016e22007-07-11 17:01:13 +0000125/// EmitLValue - Emit code to compute a designator that specifies the location
126/// of the expression.
127///
128/// This can return one of two things: a simple address or a bitfield
129/// reference. In either case, the LLVM Value* in the LValue structure is
130/// guaranteed to be an LLVM pointer type.
131///
132/// If this returns a bitfield reference, nothing about the pointee type of
133/// the LLVM value is known: For example, it may not be a pointer to an
134/// integer.
135///
136/// If this returns a normal address, and if the lvalue's C type is fixed
137/// size, this method guarantees that the returned pointer type will point to
138/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
139/// variable length type, this is not possible.
140///
141LValue CodeGenFunction::EmitLValue(const Expr *E) {
142 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000143 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000144
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000145 case Expr::BinaryOperatorClass:
146 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregorb4609802008-11-14 16:09:21 +0000147 case Expr::CallExprClass:
148 case Expr::CXXOperatorCallExprClass:
149 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000150 case Expr::VAArgExprClass:
151 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000152 case Expr::DeclRefExprClass:
153 case Expr::QualifiedDeclRefExprClass:
154 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000156 case Expr::PredefinedExprClass:
157 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000158 case Expr::StringLiteralClass:
159 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000160 case Expr::ObjCEncodeExprClass:
161 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000162
Mike Stumpa99038c2009-02-28 09:07:16 +0000163 case Expr::BlockDeclRefExprClass:
164 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
165
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000166 case Expr::CXXConditionDeclExprClass:
167 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
168
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000169 case Expr::ObjCMessageExprClass:
170 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000171 case Expr::ObjCIvarRefExprClass:
172 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000173 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000174 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000175 case Expr::ObjCKVCRefExprClass:
176 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000177 case Expr::ObjCSuperExprClass:
Chris Lattner65459942009-04-25 19:35:26 +0000178 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000179
Chris Lattner65459942009-04-25 19:35:26 +0000180 case Expr::StmtExprClass:
181 return EmitStmtExprLValue(cast<StmtExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 case Expr::UnaryOperatorClass:
183 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
184 case Expr::ArraySubscriptExprClass:
185 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000186 case Expr::ExtVectorElementExprClass:
187 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000188 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000189 case Expr::CompoundLiteralExprClass:
190 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbar90345582009-03-24 02:38:23 +0000191 case Expr::ConditionalOperatorClass:
192 return EmitConditionalOperator(cast<ConditionalOperator>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000193 case Expr::ChooseExprClass:
Eli Friedman79769322009-03-04 05:52:32 +0000194 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattnerc3953a62009-03-18 04:02:57 +0000195 case Expr::ImplicitCastExprClass:
196 case Expr::CStyleCastExprClass:
197 case Expr::CXXFunctionalCastExprClass:
198 case Expr::CXXStaticCastExprClass:
199 case Expr::CXXDynamicCastExprClass:
200 case Expr::CXXReinterpretCastExprClass:
201 case Expr::CXXConstCastExprClass:
Chris Lattner75dfeda2009-03-18 18:28:57 +0000202 return EmitCastLValue(cast<CastExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000203 }
204}
205
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000206llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
207 QualType Ty) {
208 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
209
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000210 // Bool can have different representation in memory than in registers.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000211 if (Ty->isBooleanType())
212 if (V->getType() != llvm::Type::Int1Ty)
213 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
214
215 return V;
216}
217
218void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000219 bool Volatile, QualType Ty) {
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000220
221 if (Ty->isBooleanType()) {
222 // Bool can have different representation in memory than in registers.
223 const llvm::Type *SrcTy = Value->getType();
224 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
225 if (DstPtr->getElementType() != SrcTy) {
226 const llvm::Type *MemTy =
227 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
228 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
229 }
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000230 }
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000231
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000232 Builder.CreateStore(Value, Addr, Volatile);
233}
234
Reid Spencer5f016e22007-07-11 17:01:13 +0000235/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
236/// this method emits the address of the lvalue, then loads the result as an
237/// rvalue, returning the rvalue.
238RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000239 if (LV.isObjCWeak()) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000240 // load of a __weak object.
241 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000242 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000243 AddrWeakObj);
244 return RValue::get(read_weak);
245 }
246
Reid Spencer5f016e22007-07-11 17:01:13 +0000247 if (LV.isSimple()) {
248 llvm::Value *Ptr = LV.getAddress();
249 const llvm::Type *EltTy =
250 cast<llvm::PointerType>(Ptr->getType())->getElementType();
251
252 // Simple scalar l-value.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000253 if (EltTy->isSingleValueType())
254 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
255 ExprType));
Reid Spencer5f016e22007-07-11 17:01:13 +0000256
Chris Lattner883f6a72007-08-11 00:04:45 +0000257 assert(ExprType->isFunctionType() && "Unknown scalar value");
258 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000259 }
260
261 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000262 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
263 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000264 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
265 "vecext"));
266 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000267
268 // If this is a reference to a subset of the elements of a vector, either
269 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000270 if (LV.isExtVectorElt())
271 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000272
273 if (LV.isBitfield())
274 return EmitLoadOfBitfieldLValue(LV, ExprType);
275
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000276 if (LV.isPropertyRef())
277 return EmitLoadOfPropertyRefLValue(LV, ExprType);
278
Chris Lattner73525de2009-02-16 21:11:58 +0000279 assert(LV.isKVCRef() && "Unknown LValue type!");
280 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000281}
282
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000283RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
284 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000285 unsigned StartBit = LV.getBitfieldStartBit();
286 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000287 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000288
289 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000290 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000291 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000292
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000293 // In some cases the bitfield may straddle two memory locations.
294 // Currently we load the entire bitfield, then do the magic to
295 // sign-extend it if necessary. This results in somewhat more code
296 // than necessary for the common case (one load), since two shifts
297 // accomplish both the masking and sign extension.
298 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
299 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
300
301 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000302 if (StartBit)
303 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
304 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000305
306 // Mask off unused bits.
307 llvm::Constant *LowMask =
308 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
309 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
310
311 // Fetch the high bits if necessary.
312 if (LowBits < BitfieldSize) {
313 unsigned HighBits = BitfieldSize - LowBits;
314 llvm::Value *HighPtr =
315 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
316 "bf.ptr.hi");
317 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
318 LV.isVolatileQualified(),
319 "tmp");
320
321 // Mask off unused bits.
322 llvm::Constant *HighMask =
323 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
324 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000325
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000326 // Shift to proper location and or in to bitfield value.
327 HighVal = Builder.CreateShl(HighVal,
328 llvm::ConstantInt::get(EltTy, LowBits));
329 Val = Builder.CreateOr(Val, HighVal, "bf.val");
330 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000331
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000332 // Sign extend if necessary.
333 if (LV.isBitfieldSigned()) {
334 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
335 EltTySize - BitfieldSize);
336 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
337 ExtraBits, "bf.val.sext");
338 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000339
340 // The bitfield type and the normal type differ when the storage sizes
341 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000342 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000343
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000344 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000345}
346
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000347RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
348 QualType ExprType) {
349 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
350}
351
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000352RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
353 QualType ExprType) {
354 return EmitObjCPropertyGet(LV.getKVCRefExpr());
355}
356
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000357// If this is a reference to a subset of the elements of a vector, create an
358// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000359RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
360 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000361 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
362 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000363
Nate Begeman8a997642008-05-09 06:41:27 +0000364 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000365
366 // If the result of the expression is a non-vector type, we must be
367 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000368 const VectorType *ExprVT = ExprType->getAsVectorType();
369 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000370 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000371 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
372 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
373 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000374
375 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000376 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000377
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000378 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000379 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000380 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000381 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000382 }
383
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000384 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
385 Vec = Builder.CreateShuffleVector(Vec,
386 llvm::UndefValue::get(Vec->getType()),
387 MaskV, "tmp");
388 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000389}
390
391
Reid Spencer5f016e22007-07-11 17:01:13 +0000392
393/// EmitStoreThroughLValue - Store the specified rvalue into the specified
394/// lvalue, where both are guaranteed to the have the same type, and that type
395/// is 'Ty'.
396void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
397 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000398 if (!Dst.isSimple()) {
399 if (Dst.isVectorElt()) {
400 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000401 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
402 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000403 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000404 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000405 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000406 return;
407 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000408
Nate Begeman213541a2008-04-18 23:10:10 +0000409 // If this is an update of extended vector elements, insert them as
410 // appropriate.
411 if (Dst.isExtVectorElt())
412 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000413
414 if (Dst.isBitfield())
415 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
416
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000417 if (Dst.isPropertyRef())
418 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
419
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000420 if (Dst.isKVCRef())
421 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
422
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000423 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000424 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000425
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000426 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000427 // load of a __weak object.
428 llvm::Value *LvalueDst = Dst.getAddress();
429 llvm::Value *src = Src.getScalarVal();
Mike Stumpf33651c2009-04-14 00:57:29 +0000430 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000431 return;
432 }
433
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000434 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000435 // load of a __strong object.
436 llvm::Value *LvalueDst = Dst.getAddress();
437 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000438#if 0
Mike Stumpf5408fe2009-05-16 07:57:57 +0000439 // FIXME. We cannot positively determine if we have an 'ivar' assignment,
440 // object assignment or an unknown assignment. For now, generate call to
441 // objc_assign_strongCast assignment which is a safe, but consevative
442 // assumption.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000443 if (Dst.isObjCIvar())
444 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
445 else
446 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000447#endif
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000448 if (Dst.isGlobalObjCRef())
449 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
450 else
451 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000452 return;
453 }
454
Chris Lattner883f6a72007-08-11 00:04:45 +0000455 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000456 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
457 Dst.isVolatileQualified(), Ty);
Reid Spencer5f016e22007-07-11 17:01:13 +0000458}
459
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000460void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000461 QualType Ty,
462 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000463 unsigned StartBit = Dst.getBitfieldStartBit();
464 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000465 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000466
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000467 const llvm::Type *EltTy =
468 cast<llvm::PointerType>(Ptr->getType())->getElementType();
469 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
470
471 // Get the new value, cast to the appropriate type and masked to
472 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000473 llvm::Value *SrcVal = Src.getScalarVal();
474 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000475 llvm::Constant *Mask =
476 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
477 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000478
Daniel Dunbared3849b2008-11-19 09:36:46 +0000479 // Return the new value of the bit-field, if requested.
480 if (Result) {
481 // Cast back to the proper type for result.
482 const llvm::Type *SrcTy = SrcVal->getType();
483 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
484 "bf.reload.val");
485
486 // Sign extend if necessary.
487 if (Dst.isBitfieldSigned()) {
488 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
489 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
490 SrcTySize - BitfieldSize);
491 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
492 ExtraBits, "bf.reload.sext");
493 }
494
495 *Result = SrcTrunc;
496 }
497
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000498 // In some cases the bitfield may straddle two memory locations.
499 // Emit the low part first and check to see if the high needs to be
500 // done.
501 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
502 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
503 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000504
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000505 // Compute the mask for zero-ing the low part of this bitfield.
506 llvm::Constant *InvMask =
507 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
508 StartBit + LowBits));
509
510 // Compute the new low part as
511 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
512 // with the shift of NewVal implicitly stripping the high bits.
513 llvm::Value *NewLowVal =
514 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
515 "bf.value.lo");
516 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
517 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
518
519 // Write back.
520 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000521
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000522 // If the low part doesn't cover the bitfield emit a high part.
523 if (LowBits < BitfieldSize) {
524 unsigned HighBits = BitfieldSize - LowBits;
525 llvm::Value *HighPtr =
526 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
527 "bf.ptr.hi");
528 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
529 Dst.isVolatileQualified(),
530 "bf.prev.hi");
531
532 // Compute the mask for zero-ing the high part of this bitfield.
533 llvm::Constant *InvMask =
534 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
535
536 // Compute the new high part as
537 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
538 // where the high bits of NewVal have already been cleared and the
539 // shift stripping the low bits.
540 llvm::Value *NewHighVal =
541 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
542 "bf.value.high");
543 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
544 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
545
546 // Write back.
547 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
548 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000549}
550
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000551void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
552 LValue Dst,
553 QualType Ty) {
554 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
555}
556
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000557void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
558 LValue Dst,
559 QualType Ty) {
560 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
561}
562
Nate Begeman213541a2008-04-18 23:10:10 +0000563void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
564 LValue Dst,
565 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000566 // This access turns into a read/modify/write of the vector. Load the input
567 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000568 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
569 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000570 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000571
Chris Lattner9b655512007-08-31 22:49:20 +0000572 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000573
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000574 if (const VectorType *VTy = Ty->getAsVectorType()) {
575 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000576 unsigned NumDstElts =
577 cast<llvm::VectorType>(Vec->getType())->getNumElements();
578 if (NumDstElts == NumSrcElts) {
579 // Use shuffle vector is the src and destination are the same number
580 // of elements
581 llvm::SmallVector<llvm::Constant*, 4> Mask;
582 for (unsigned i = 0; i != NumSrcElts; ++i) {
583 unsigned InIdx = getAccessedFieldNo(i, Elts);
584 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
585 }
586
587 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
588 Vec = Builder.CreateShuffleVector(SrcVal,
589 llvm::UndefValue::get(Vec->getType()),
590 MaskV, "tmp");
591 }
592 else if (NumDstElts > NumSrcElts) {
593 // Extended the source vector to the same length and then shuffle it
594 // into the destination.
595 // FIXME: since we're shuffling with undef, can we just use the indices
596 // into that? This could be simpler.
597 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
598 unsigned i;
599 for (i = 0; i != NumSrcElts; ++i)
600 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
601 for (; i != NumDstElts; ++i)
602 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
603 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
604 ExtMask.size());
Daniel Dunbarbb767732009-02-17 18:31:04 +0000605 llvm::Value *ExtSrcVal =
606 Builder.CreateShuffleVector(SrcVal,
607 llvm::UndefValue::get(SrcVal->getType()),
608 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000609 // build identity
610 llvm::SmallVector<llvm::Constant*, 4> Mask;
611 for (unsigned i = 0; i != NumDstElts; ++i) {
612 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
613 }
614 // modify when what gets shuffled in
615 for (unsigned i = 0; i != NumSrcElts; ++i) {
616 unsigned Idx = getAccessedFieldNo(i, Elts);
617 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
618 }
619 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
620 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
621 }
622 else {
623 // We should never shorten the vector
624 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000625 }
626 } else {
627 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000628 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000629 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
630 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000631 }
632
Eli Friedman1e692ac2008-06-13 23:01:12 +0000633 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000634}
635
Reid Spencer5f016e22007-07-11 17:01:13 +0000636LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000637 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
638
Chris Lattner41110242008-06-17 18:05:57 +0000639 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
640 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000641 LValue LV;
Mike Stumpaa771a82009-04-14 18:24:37 +0000642 bool GCable = VD->hasLocalStorage() && !VD->hasAttr<BlocksAttr>();
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000643 if (VD->hasExternalStorage()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000644 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
645 if (VD->getType()->isReferenceType())
646 V = Builder.CreateLoad(V, "tmp");
647 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000648 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000649 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000650 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000651 llvm::Value *V = LocalDeclMap[VD];
Mike Stumpa99038c2009-02-28 09:07:16 +0000652 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000653 // local variables do not get their gc attribute set.
654 QualType::GCAttrTypes attr = QualType::GCNone;
655 // local static?
Mike Stumpf33651c2009-04-14 00:57:29 +0000656 if (!GCable)
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000657 attr = getContext().getObjCGCAttrKind(E->getType());
Daniel Dunbarb11fa0d2009-04-13 21:08:27 +0000658 if (VD->hasAttr<BlocksAttr>()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000659 bool needsCopyDispose = BlockRequiresCopying(VD->getType());
660 const llvm::Type *PtrStructTy = V->getType();
661 const llvm::Type *Ty = PtrStructTy;
662 Ty = llvm::PointerType::get(Ty, 0);
663 V = Builder.CreateStructGEP(V, 1, "forwarding");
664 V = Builder.CreateBitCast(V, Ty);
665 V = Builder.CreateLoad(V, false);
666 V = Builder.CreateBitCast(V, PtrStructTy);
667 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
668 }
Anders Carlssonc8667a82009-05-19 20:40:02 +0000669 if (VD->getType()->isReferenceType())
670 V = Builder.CreateLoad(V, "tmp");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000671 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000672 }
Mike Stumpf33651c2009-04-14 00:57:29 +0000673 LValue::SetObjCNonGC(LV, GCable);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000674 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000675 } else if (VD && VD->isFileVarDecl()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000676 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
677 if (VD->getType()->isReferenceType())
678 V = Builder.CreateLoad(V, "tmp");
679 LValue LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000680 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000681 if (LV.isObjCStrong())
682 LV.SetGlobalObjCRef(LV, true);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000683 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000684 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000685 return LValue::MakeAddr(CGM.GetAddrOfFunction(GlobalDecl(FD)),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000686 E->getType().getCVRQualifiers(),
687 getContext().getObjCGCAttrKind(E->getType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000688 }
Chris Lattner41110242008-06-17 18:05:57 +0000689 else if (const ImplicitParamDecl *IPD =
690 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
691 llvm::Value *V = LocalDeclMap[IPD];
692 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000693 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
694 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000695 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000696 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000697 //an invalid LValue, but the assert will
698 //ensure that this point is never reached.
699 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000700}
701
Mike Stumpa99038c2009-02-28 09:07:16 +0000702LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
703 return LValue::MakeAddr(GetAddrOfBlockDecl(E), 0);
704}
705
Reid Spencer5f016e22007-07-11 17:01:13 +0000706LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
707 // __extension__ doesn't affect lvalue-ness.
708 if (E->getOpcode() == UnaryOperator::Extension)
709 return EmitLValue(E->getSubExpr());
710
Chris Lattner96196622008-07-26 22:37:01 +0000711 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000712 switch (E->getOpcode()) {
713 default: assert(0 && "Unknown unary operator lvalue!");
714 case UnaryOperator::Deref:
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000715 {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000716 QualType T =
717 E->getSubExpr()->getType()->getAsPointerType()->getPointeeType();
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000718 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
719 ExprTy->getAsPointerType()->getPointeeType()
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000720 .getCVRQualifiers(),
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000721 getContext().getObjCGCAttrKind(T));
722 // We should not generate __weak write barrier on indirect reference
723 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
724 // But, we continue to generate __strong write barrier on indirect write
725 // into a pointer to object.
726 if (getContext().getLangOptions().ObjC1 &&
727 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
728 LV.isObjCWeak())
729 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
730 return LV;
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000731 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000732 case UnaryOperator::Real:
733 case UnaryOperator::Imag:
734 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000735 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
736 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000737 Idx, "idx"),
738 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000739 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000740}
741
742LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000743 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000744}
745
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000746LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
747 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
748}
749
750
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000751LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000752 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000753
754 switch (Type) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000755 default:
756 assert(0 && "Invalid type");
757 case PredefinedExpr::Func:
758 GlobalVarName = "__func__.";
759 break;
760 case PredefinedExpr::Function:
761 GlobalVarName = "__FUNCTION__.";
762 break;
763 case PredefinedExpr::PrettyFunction:
764 // FIXME:: Demangle C++ method names
765 GlobalVarName = "__PRETTY_FUNCTION__.";
766 break;
Anders Carlsson22742662007-07-21 05:21:51 +0000767 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000768
Chris Lattnerb5437d22009-04-23 05:30:27 +0000769 // FIXME: This isn't right at all. The logic for computing this should go
770 // into a method on PredefinedExpr. This would allow sema and codegen to be
771 // consistent for things like sizeof(__func__) etc.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000772 std::string FunctionName;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000773 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
Douglas Gregor6ec36682009-02-18 23:53:56 +0000774 FunctionName = CGM.getMangledName(FD);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000775 } else {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000776 // Just get the mangled name; skipping the asm prefix if it
777 // exists.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000778 FunctionName = CurFn->getName();
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000779 if (FunctionName[0] == '\01')
780 FunctionName = FunctionName.substr(1, std::string::npos);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000781 }
782
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000783 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000784 llvm::Constant *C =
785 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
786 return LValue::MakeAddr(C, 0);
787}
788
789LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
790 switch (E->getIdentType()) {
791 default:
792 return EmitUnsupportedLValue(E, "predefined expression");
793 case PredefinedExpr::Func:
794 case PredefinedExpr::Function:
795 case PredefinedExpr::PrettyFunction:
796 return EmitPredefinedFunctionName(E->getIdentType());
797 }
Anders Carlsson22742662007-07-21 05:21:51 +0000798}
799
Reid Spencer5f016e22007-07-11 17:01:13 +0000800LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000801 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000802 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000803
804 // If the base is a vector type, then we are forming a vector element lvalue
805 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000806 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000807 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000808 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000809 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000810 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000811 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
812 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000813 }
814
Ted Kremenek23245122007-08-20 16:18:38 +0000815 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000816 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000817
Ted Kremenek23245122007-08-20 16:18:38 +0000818 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000819 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000820 bool IdxSigned = IdxTy->isSignedIntegerType();
821 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta7cabee52009-04-24 02:40:57 +0000822 if (IdxBitwidth != LLVMPointerWidth)
823 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
Reid Spencer5f016e22007-07-11 17:01:13 +0000824 IdxSigned, "idxprom");
825
Daniel Dunbar2a866252009-04-25 05:08:32 +0000826 // We know that the pointer points to a type of the correct size,
827 // unless the size is a VLA or Objective-C interface.
828 llvm::Value *Address = 0;
Anders Carlsson8b33c082008-12-21 00:11:23 +0000829 if (const VariableArrayType *VAT =
830 getContext().getAsVariableArrayType(E->getType())) {
831 llvm::Value *VLASize = VLASizeMap[VAT];
832
833 Idx = Builder.CreateMul(Idx, VLASize);
834
Anders Carlsson6183a992008-12-21 03:44:36 +0000835 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000836
837 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
838 Idx = Builder.CreateUDiv(Idx,
839 llvm::ConstantInt::get(Idx->getType(),
840 BaseTypeSize));
Daniel Dunbar2a866252009-04-25 05:08:32 +0000841 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
842 } else if (const ObjCInterfaceType *OIT =
843 dyn_cast<ObjCInterfaceType>(E->getType())) {
844 llvm::Value *InterfaceSize =
845 llvm::ConstantInt::get(Idx->getType(),
846 getContext().getTypeSize(OIT) / 8);
847
848 Idx = Builder.CreateMul(Idx, InterfaceSize);
849
850 llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
851 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
852 Idx, "arrayidx");
853 Address = Builder.CreateBitCast(Address, Base->getType());
854 } else {
855 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
Anders Carlsson8b33c082008-12-21 00:11:23 +0000856 }
857
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000858 QualType T = E->getBase()->getType()->getAsPointerType()->getPointeeType();
Daniel Dunbar2a866252009-04-25 05:08:32 +0000859 LValue LV = LValue::MakeAddr(Address,
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000860 T.getCVRQualifiers(),
861 getContext().getObjCGCAttrKind(T));
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000862 if (getContext().getLangOptions().ObjC1 &&
863 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000864 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000865 return LV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000866}
867
Nate Begeman3b8d1162008-05-13 21:03:02 +0000868static
869llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
870 llvm::SmallVector<llvm::Constant *, 4> CElts;
871
872 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
873 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
874
875 return llvm::ConstantVector::get(&CElts[0], CElts.size());
876}
877
Chris Lattner349aaec2007-08-02 23:37:31 +0000878LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000879EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000880 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +0000881 LValue Base;
882
883 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +0000884 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +0000885 assert(E->getBase()->getType()->isVectorType());
886 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +0000887 } else {
888 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
889 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
890 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner73525de2009-02-16 21:11:58 +0000891 }
Chris Lattner349aaec2007-08-02 23:37:31 +0000892
Nate Begeman3b8d1162008-05-13 21:03:02 +0000893 // Encode the element access list into a vector of unsigned indices.
894 llvm::SmallVector<unsigned, 4> Indices;
895 E->getEncodedElementAccess(Indices);
896
897 if (Base.isSimple()) {
898 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000899 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000900 Base.getQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000901 }
902 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
903
904 llvm::Constant *BaseElts = Base.getExtVectorElts();
905 llvm::SmallVector<llvm::Constant *, 4> CElts;
906
907 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
908 if (isa<llvm::ConstantAggregateZero>(BaseElts))
909 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
910 else
911 CElts.push_back(BaseElts->getOperand(Indices[i]));
912 }
913 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000914 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000915 Base.getQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000916}
917
Devang Patelb9b00ad2007-10-23 20:28:39 +0000918LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000919 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000920 bool isIvar = false;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000921 bool isNonGC = false;
Devang Patel126a8562007-10-24 22:26:28 +0000922 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000923 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000924 unsigned CVRQualifiers=0;
925
Chris Lattner12f65f62007-12-02 18:52:07 +0000926 // 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 +0000927 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000928 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000929 const PointerType *PTy =
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000930 BaseExpr->getType()->getAsPointerType();
Devang Patelfe2419a2007-12-11 21:33:16 +0000931 if (PTy->getPointeeType()->isUnionType())
932 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000933 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000934 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
935 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +0000936 RValue RV = EmitObjCPropertyGet(BaseExpr);
937 BaseValue = RV.getAggregateAddr();
938 if (BaseExpr->getType()->isUnionType())
939 isUnion = true;
940 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000941 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +0000942 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000943 if (BaseLV.isObjCIvar())
944 isIvar = true;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000945 if (BaseLV.isNonGC())
946 isNonGC = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000947 // FIXME: this isn't right for bitfields.
948 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000949 if (BaseExpr->getType()->isUnionType())
950 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000951 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000952 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000953
Douglas Gregor86f19402008-12-20 23:49:58 +0000954 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
955 // FIXME: Handle non-field member expressions
956 assert(Field && "No code generation for non-field member references");
Chris Lattner1bd885e2009-02-16 22:25:49 +0000957 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
958 CVRQualifiers);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000959 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000960 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000961 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +0000962}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000963
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000964LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
965 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000966 unsigned CVRQualifiers) {
Daniel Dunbarbb767732009-02-17 18:31:04 +0000967 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Mike Stumpf5408fe2009-05-16 07:57:57 +0000968 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
969 // FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbarbb767732009-02-17 18:31:04 +0000970 const llvm::Type *FieldTy =
971 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000972 const llvm::PointerType *BaseTy =
973 cast<llvm::PointerType>(BaseValue->getType());
974 unsigned AS = BaseTy->getAddressSpace();
975 BaseValue = Builder.CreateBitCast(BaseValue,
976 llvm::PointerType::get(FieldTy, AS),
977 "tmp");
978 llvm::Value *V = Builder.CreateGEP(BaseValue,
979 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
980 "tmp");
981
982 CodeGenTypes::BitFieldInfo bitFieldInfo =
983 CGM.getTypes().getBitFieldInfo(Field);
984 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
985 Field->getType()->isSignedIntegerType(),
986 Field->getType().getCVRQualifiers()|CVRQualifiers);
987}
988
Eli Friedman472778e2008-02-09 08:50:58 +0000989LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
990 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000991 bool isUnion,
992 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000993{
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000994 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000995 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000996
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000997 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000998 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000999
Devang Patelabad06c2007-10-26 19:42:18 +00001000 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +00001001 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +00001002 const llvm::Type *FieldTy =
1003 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +00001004 const llvm::PointerType * BaseTy =
1005 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +00001006 unsigned AS = BaseTy->getAddressSpace();
1007 V = Builder.CreateBitCast(V,
1008 llvm::PointerType::get(FieldTy, AS),
1009 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +00001010 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +00001011
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001012 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001013 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001014 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1015 QualType Ty = Field->getType();
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001016 attr = Ty.getObjCGCAttr();
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001017 if (attr != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001018 // __weak attribute on a field is ignored.
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001019 if (attr == QualType::Weak)
1020 attr = QualType::GCNone;
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001021 }
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001022 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001023 attr = QualType::Strong;
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001024 }
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001025 LValue LV =
1026 LValue::MakeAddr(V,
1027 Field->getType().getCVRQualifiers()|CVRQualifiers,
1028 attr);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +00001029 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +00001030}
1031
Chris Lattner75dfeda2009-03-18 18:28:57 +00001032LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman06e863f2008-05-13 23:18:27 +00001033 const llvm::Type *LTy = ConvertType(E->getType());
1034 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1035
1036 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +00001037 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +00001038
1039 if (E->getType()->isComplexType()) {
1040 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1041 } else if (hasAggregateLLVMType(E->getType())) {
1042 EmitAnyExpr(InitExpr, DeclPtr, false);
1043 } else {
1044 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1045 }
1046
1047 return Result;
1048}
1049
Daniel Dunbar90345582009-03-24 02:38:23 +00001050LValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator* E) {
1051 // We don't handle vectors yet.
1052 if (E->getType()->isVectorType())
1053 return EmitUnsupportedLValue(E, "conditional operator");
1054
1055 // ?: here should be an aggregate.
1056 assert((hasAggregateLLVMType(E->getType()) &&
1057 !E->getType()->isAnyComplexType()) &&
1058 "Unexpected conditional operator!");
1059
1060 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1061 EmitAggExpr(E, Temp, false);
1062
1063 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1064 getContext().getObjCGCAttrKind(E->getType()));
1065
1066}
1067
Chris Lattner75dfeda2009-03-18 18:28:57 +00001068/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1069/// generator in an lvalue context, then it must mean that we need the address
1070/// of an aggregate in order to access one of its fields. This can happen for
1071/// all the reasons that casts are permitted with aggregate result, including
1072/// noop aggregate casts, and cast from scalar to union.
1073LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
1074 // If this is an aggregate-to-aggregate cast, just use the input's address as
1075 // the lvalue.
1076 if (getContext().hasSameUnqualifiedType(E->getType(),
1077 E->getSubExpr()->getType()))
1078 return EmitLValue(E->getSubExpr());
1079
1080 // Otherwise, we must have a cast from scalar to union.
1081 assert(E->getType()->isUnionType() && "Expected scalar-to-union cast");
1082
1083 // Casts are only lvalues when the source and destination types are the same.
1084 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
Chris Lattner40f92922009-03-18 18:30:44 +00001085 EmitAnyExpr(E->getSubExpr(), Temp, false);
Chris Lattner75dfeda2009-03-18 18:28:57 +00001086
1087 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1088 getContext().getObjCGCAttrKind(E->getType()));
1089}
1090
Reid Spencer5f016e22007-07-11 17:01:13 +00001091//===--------------------------------------------------------------------===//
1092// Expression Emission
1093//===--------------------------------------------------------------------===//
1094
Chris Lattner7016a702007-08-20 22:37:10 +00001095
Reid Spencer5f016e22007-07-11 17:01:13 +00001096RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001097 // Builtins never have block type.
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001098 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +00001099 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001100
Anders Carlsson774e7c62009-04-03 22:50:24 +00001101 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1102 return EmitCXXMemberCallExpr(CE);
1103
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001104 const Decl *TargetDecl = 0;
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001105 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1106 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1107 TargetDecl = DRE->getDecl();
1108 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1109 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1110 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001111 }
1112 }
1113
Chris Lattner7f02f722007-08-24 05:35:26 +00001114 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +00001115 return EmitCallExpr(Callee, E->getCallee()->getType(),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001116 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattnerc5e940f2007-08-31 04:44:06 +00001117}
1118
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001119LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattner7a574cc2009-05-12 21:28:12 +00001120 // Comma expressions just emit their LHS then their RHS as an l-value.
1121 if (E->getOpcode() == BinaryOperator::Comma) {
1122 EmitAnyExpr(E->getLHS());
1123 return EmitLValue(E->getRHS());
1124 }
1125
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001126 // Can only get l-value for binary operator expressions which are a
1127 // simple assignment of aggregate type.
1128 if (E->getOpcode() != BinaryOperator::Assign)
1129 return EmitUnsupportedLValue(E, "binary l-value expression");
1130
1131 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1132 EmitAggExpr(E, Temp, false);
1133 // FIXME: Are these qualifiers correct?
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001134 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1135 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001136}
1137
Christopher Lamb22c940e2007-12-29 05:02:41 +00001138LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
1139 // Can only get l-value for call expression returning aggregate type
1140 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +00001141 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001142 E->getType().getCVRQualifiers(),
1143 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lamb22c940e2007-12-29 05:02:41 +00001144}
1145
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001146LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1147 // FIXME: This shouldn't require another copy.
1148 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1149 EmitAggExpr(E, Temp, false);
1150 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1151}
1152
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001153LValue
1154CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1155 EmitLocalBlockVarDecl(*E->getVarDecl());
1156 return EmitDeclRefLValue(E);
1157}
1158
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001159LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1160 // Can only get l-value for message expression returning aggregate type
1161 RValue RV = EmitObjCMessageExpr(E);
1162 // FIXME: can this be volatile?
1163 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001164 E->getType().getCVRQualifiers(),
1165 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001166}
1167
Daniel Dunbar2a031922009-04-22 05:08:15 +00001168llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001169 const ObjCIvarDecl *Ivar) {
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001170 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001171}
1172
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001173LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1174 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001175 const ObjCIvarDecl *Ivar,
1176 unsigned CVRQualifiers) {
Chris Lattner26f074b2009-04-17 17:44:48 +00001177 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001178 Ivar, CVRQualifiers);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001179}
1180
1181LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001182 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1183 llvm::Value *BaseValue = 0;
1184 const Expr *BaseExpr = E->getBase();
1185 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001186 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001187 if (E->isArrow()) {
1188 BaseValue = EmitScalarExpr(BaseExpr);
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +00001189 const PointerType *PTy = BaseExpr->getType()->getAsPointerType();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001190 ObjectTy = PTy->getPointeeType();
1191 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001192 } else {
1193 LValue BaseLV = EmitLValue(BaseExpr);
1194 // FIXME: this isn't right for bitfields.
1195 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001196 ObjectTy = BaseExpr->getType();
1197 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001198 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001199
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001200 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001201}
1202
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001203LValue
1204CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1205 // This is a special l-value that just issues sends when we load or
1206 // store through it.
1207 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1208}
1209
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001210LValue
1211CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1212 // This is a special l-value that just issues sends when we load or
1213 // store through it.
1214 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1215}
1216
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001217LValue
Chris Lattner65459942009-04-25 19:35:26 +00001218CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001219 return EmitUnsupportedLValue(E, "use of super");
1220}
1221
Chris Lattner65459942009-04-25 19:35:26 +00001222LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
1223
1224 // Can only get l-value for message expression returning aggregate type
1225 RValue RV = EmitAnyExprToTemp(E);
1226 // FIXME: can this be volatile?
1227 return LValue::MakeAddr(RV.getAggregateAddr(),
1228 E->getType().getCVRQualifiers(),
1229 getContext().getObjCGCAttrKind(E->getType()));
1230}
1231
1232
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001233RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek55499762008-06-17 02:43:46 +00001234 CallExpr::const_arg_iterator ArgBeg,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001235 CallExpr::const_arg_iterator ArgEnd,
1236 const Decl *TargetDecl) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001237 // Get the actual function type. The callee type will always be a
1238 // pointer to function type or a block pointer type.
Anders Carlsson8ac67a72009-04-07 18:53:02 +00001239 assert(CalleeType->isFunctionPointerType() &&
1240 "Call must have function pointer type!");
1241
1242 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1243 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001244
1245 CallArgList Args;
Anders Carlsson782f3972009-04-08 23:13:16 +00001246 EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001247
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001248 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001249 Callee, Args, TargetDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001250}