blob: ad0baa32f9493e3bced5848144408b40526094d3 [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
Dan Gohman4f8d1232008-05-22 00:50:06 +000073/// getAccessedFieldNo - Given an encoded value and a result number, return
74/// the input field number being accessed.
75unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
76 const llvm::Constant *Elts) {
77 if (isa<llvm::ConstantAggregateZero>(Elts))
78 return 0;
79
80 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
81}
82
Chris Lattner9b655512007-08-31 22:49:20 +000083
Reid Spencer5f016e22007-07-11 17:01:13 +000084//===----------------------------------------------------------------------===//
85// LValue Expression Emission
86//===----------------------------------------------------------------------===//
87
Daniel Dunbar13e81732009-02-05 07:09:07 +000088RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
89 if (Ty->isVoidType()) {
90 return RValue::get(0);
91 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000092 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
93 llvm::Value *U = llvm::UndefValue::get(EltTy);
94 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbar13e81732009-02-05 07:09:07 +000095 } else if (hasAggregateLLVMType(Ty)) {
96 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
97 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000098 } else {
Daniel Dunbar13e81732009-02-05 07:09:07 +000099 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000100 }
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000101}
102
Daniel Dunbar13e81732009-02-05 07:09:07 +0000103RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
104 const char *Name) {
105 ErrorUnsupported(E, Name);
106 return GetUndefRValue(E->getType());
107}
108
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000109LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
110 const char *Name) {
111 ErrorUnsupported(E, Name);
112 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
113 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000114 E->getType().getCVRQualifiers(),
115 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000116}
117
Reid Spencer5f016e22007-07-11 17:01:13 +0000118/// EmitLValue - Emit code to compute a designator that specifies the location
119/// of the expression.
120///
121/// This can return one of two things: a simple address or a bitfield
122/// reference. In either case, the LLVM Value* in the LValue structure is
123/// guaranteed to be an LLVM pointer type.
124///
125/// If this returns a bitfield reference, nothing about the pointee type of
126/// the LLVM value is known: For example, it may not be a pointer to an
127/// integer.
128///
129/// If this returns a normal address, and if the lvalue's C type is fixed
130/// size, this method guarantees that the returned pointer type will point to
131/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
132/// variable length type, this is not possible.
133///
134LValue CodeGenFunction::EmitLValue(const Expr *E) {
135 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000136 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000137
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000138 case Expr::BinaryOperatorClass:
139 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregorb4609802008-11-14 16:09:21 +0000140 case Expr::CallExprClass:
141 case Expr::CXXOperatorCallExprClass:
142 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000143 case Expr::VAArgExprClass:
144 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000145 case Expr::DeclRefExprClass:
146 case Expr::QualifiedDeclRefExprClass:
147 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000148 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000149 case Expr::PredefinedExprClass:
150 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 case Expr::StringLiteralClass:
152 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000153 case Expr::ObjCEncodeExprClass:
154 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000155
Mike Stumpa99038c2009-02-28 09:07:16 +0000156 case Expr::BlockDeclRefExprClass:
157 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
158
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000159 case Expr::CXXConditionDeclExprClass:
160 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
161
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000162 case Expr::ObjCMessageExprClass:
163 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000164 case Expr::ObjCIvarRefExprClass:
165 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000166 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000167 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000168 case Expr::ObjCKVCRefExprClass:
169 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000170 case Expr::ObjCSuperExprClass:
Chris Lattner65459942009-04-25 19:35:26 +0000171 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000172
Chris Lattner65459942009-04-25 19:35:26 +0000173 case Expr::StmtExprClass:
174 return EmitStmtExprLValue(cast<StmtExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000175 case Expr::UnaryOperatorClass:
176 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
177 case Expr::ArraySubscriptExprClass:
178 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000179 case Expr::ExtVectorElementExprClass:
180 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000181 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000182 case Expr::CompoundLiteralExprClass:
183 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbar90345582009-03-24 02:38:23 +0000184 case Expr::ConditionalOperatorClass:
185 return EmitConditionalOperator(cast<ConditionalOperator>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000186 case Expr::ChooseExprClass:
Eli Friedman79769322009-03-04 05:52:32 +0000187 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattnerc3953a62009-03-18 04:02:57 +0000188 case Expr::ImplicitCastExprClass:
189 case Expr::CStyleCastExprClass:
190 case Expr::CXXFunctionalCastExprClass:
191 case Expr::CXXStaticCastExprClass:
192 case Expr::CXXDynamicCastExprClass:
193 case Expr::CXXReinterpretCastExprClass:
194 case Expr::CXXConstCastExprClass:
Chris Lattner75dfeda2009-03-18 18:28:57 +0000195 return EmitCastLValue(cast<CastExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000196 }
197}
198
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000199llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
200 QualType Ty) {
201 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
202
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000203 // Bool can have different representation in memory than in registers.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000204 if (Ty->isBooleanType())
205 if (V->getType() != llvm::Type::Int1Ty)
206 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
207
208 return V;
209}
210
211void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000212 bool Volatile, QualType Ty) {
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000213
214 if (Ty->isBooleanType()) {
215 // Bool can have different representation in memory than in registers.
216 const llvm::Type *SrcTy = Value->getType();
217 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
218 if (DstPtr->getElementType() != SrcTy) {
219 const llvm::Type *MemTy =
220 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
221 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
222 }
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000223 }
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000224
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000225 Builder.CreateStore(Value, Addr, Volatile);
226}
227
Reid Spencer5f016e22007-07-11 17:01:13 +0000228/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
229/// this method emits the address of the lvalue, then loads the result as an
230/// rvalue, returning the rvalue.
231RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000232 if (LV.isObjCWeak()) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000233 // load of a __weak object.
234 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000235 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000236 AddrWeakObj);
237 return RValue::get(read_weak);
238 }
239
Reid Spencer5f016e22007-07-11 17:01:13 +0000240 if (LV.isSimple()) {
241 llvm::Value *Ptr = LV.getAddress();
242 const llvm::Type *EltTy =
243 cast<llvm::PointerType>(Ptr->getType())->getElementType();
244
245 // Simple scalar l-value.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000246 if (EltTy->isSingleValueType())
247 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
248 ExprType));
Reid Spencer5f016e22007-07-11 17:01:13 +0000249
Chris Lattner883f6a72007-08-11 00:04:45 +0000250 assert(ExprType->isFunctionType() && "Unknown scalar value");
251 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000252 }
253
254 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000255 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
256 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000257 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
258 "vecext"));
259 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000260
261 // If this is a reference to a subset of the elements of a vector, either
262 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000263 if (LV.isExtVectorElt())
264 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000265
266 if (LV.isBitfield())
267 return EmitLoadOfBitfieldLValue(LV, ExprType);
268
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000269 if (LV.isPropertyRef())
270 return EmitLoadOfPropertyRefLValue(LV, ExprType);
271
Chris Lattner73525de2009-02-16 21:11:58 +0000272 assert(LV.isKVCRef() && "Unknown LValue type!");
273 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000274}
275
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000276RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
277 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000278 unsigned StartBit = LV.getBitfieldStartBit();
279 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000280 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000281
282 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000283 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000284 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000285
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000286 // In some cases the bitfield may straddle two memory locations.
287 // Currently we load the entire bitfield, then do the magic to
288 // sign-extend it if necessary. This results in somewhat more code
289 // than necessary for the common case (one load), since two shifts
290 // accomplish both the masking and sign extension.
291 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
292 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
293
294 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000295 if (StartBit)
296 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
297 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000298
299 // Mask off unused bits.
300 llvm::Constant *LowMask =
301 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
302 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
303
304 // Fetch the high bits if necessary.
305 if (LowBits < BitfieldSize) {
306 unsigned HighBits = BitfieldSize - LowBits;
307 llvm::Value *HighPtr =
308 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
309 "bf.ptr.hi");
310 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
311 LV.isVolatileQualified(),
312 "tmp");
313
314 // Mask off unused bits.
315 llvm::Constant *HighMask =
316 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
317 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000318
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000319 // Shift to proper location and or in to bitfield value.
320 HighVal = Builder.CreateShl(HighVal,
321 llvm::ConstantInt::get(EltTy, LowBits));
322 Val = Builder.CreateOr(Val, HighVal, "bf.val");
323 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000324
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000325 // Sign extend if necessary.
326 if (LV.isBitfieldSigned()) {
327 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
328 EltTySize - BitfieldSize);
329 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
330 ExtraBits, "bf.val.sext");
331 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000332
333 // The bitfield type and the normal type differ when the storage sizes
334 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000335 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000336
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000337 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000338}
339
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000340RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
341 QualType ExprType) {
342 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
343}
344
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000345RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
346 QualType ExprType) {
347 return EmitObjCPropertyGet(LV.getKVCRefExpr());
348}
349
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000350// If this is a reference to a subset of the elements of a vector, create an
351// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000352RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
353 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000354 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
355 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000356
Nate Begeman8a997642008-05-09 06:41:27 +0000357 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000358
359 // If the result of the expression is a non-vector type, we must be
360 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000361 const VectorType *ExprVT = ExprType->getAsVectorType();
362 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000363 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000364 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
365 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
366 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000367
368 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000369 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000370
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000371 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000372 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000373 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000374 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000375 }
376
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000377 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
378 Vec = Builder.CreateShuffleVector(Vec,
379 llvm::UndefValue::get(Vec->getType()),
380 MaskV, "tmp");
381 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000382}
383
384
Reid Spencer5f016e22007-07-11 17:01:13 +0000385
386/// EmitStoreThroughLValue - Store the specified rvalue into the specified
387/// lvalue, where both are guaranteed to the have the same type, and that type
388/// is 'Ty'.
389void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
390 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000391 if (!Dst.isSimple()) {
392 if (Dst.isVectorElt()) {
393 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000394 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
395 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000396 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000397 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000398 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000399 return;
400 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000401
Nate Begeman213541a2008-04-18 23:10:10 +0000402 // If this is an update of extended vector elements, insert them as
403 // appropriate.
404 if (Dst.isExtVectorElt())
405 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000406
407 if (Dst.isBitfield())
408 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
409
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000410 if (Dst.isPropertyRef())
411 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
412
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000413 if (Dst.isKVCRef())
414 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
415
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000416 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000417 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000418
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000419 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000420 // load of a __weak object.
421 llvm::Value *LvalueDst = Dst.getAddress();
422 llvm::Value *src = Src.getScalarVal();
Mike Stumpf33651c2009-04-14 00:57:29 +0000423 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000424 return;
425 }
426
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000427 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000428 // load of a __strong object.
429 llvm::Value *LvalueDst = Dst.getAddress();
430 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000431#if 0
Mike Stumpf5408fe2009-05-16 07:57:57 +0000432 // FIXME. We cannot positively determine if we have an 'ivar' assignment,
433 // object assignment or an unknown assignment. For now, generate call to
434 // objc_assign_strongCast assignment which is a safe, but consevative
435 // assumption.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000436 if (Dst.isObjCIvar())
437 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
438 else
439 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000440#endif
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000441 if (Dst.isGlobalObjCRef())
442 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
443 else
444 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000445 return;
446 }
447
Chris Lattner883f6a72007-08-11 00:04:45 +0000448 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000449 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
450 Dst.isVolatileQualified(), Ty);
Reid Spencer5f016e22007-07-11 17:01:13 +0000451}
452
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000453void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000454 QualType Ty,
455 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000456 unsigned StartBit = Dst.getBitfieldStartBit();
457 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000458 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000459
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000460 const llvm::Type *EltTy =
461 cast<llvm::PointerType>(Ptr->getType())->getElementType();
462 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
463
464 // Get the new value, cast to the appropriate type and masked to
465 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000466 llvm::Value *SrcVal = Src.getScalarVal();
467 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000468 llvm::Constant *Mask =
469 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
470 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000471
Daniel Dunbared3849b2008-11-19 09:36:46 +0000472 // Return the new value of the bit-field, if requested.
473 if (Result) {
474 // Cast back to the proper type for result.
475 const llvm::Type *SrcTy = SrcVal->getType();
476 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
477 "bf.reload.val");
478
479 // Sign extend if necessary.
480 if (Dst.isBitfieldSigned()) {
481 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
482 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
483 SrcTySize - BitfieldSize);
484 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
485 ExtraBits, "bf.reload.sext");
486 }
487
488 *Result = SrcTrunc;
489 }
490
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000491 // In some cases the bitfield may straddle two memory locations.
492 // Emit the low part first and check to see if the high needs to be
493 // done.
494 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
495 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
496 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000497
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000498 // Compute the mask for zero-ing the low part of this bitfield.
499 llvm::Constant *InvMask =
500 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
501 StartBit + LowBits));
502
503 // Compute the new low part as
504 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
505 // with the shift of NewVal implicitly stripping the high bits.
506 llvm::Value *NewLowVal =
507 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
508 "bf.value.lo");
509 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
510 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
511
512 // Write back.
513 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000514
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000515 // If the low part doesn't cover the bitfield emit a high part.
516 if (LowBits < BitfieldSize) {
517 unsigned HighBits = BitfieldSize - LowBits;
518 llvm::Value *HighPtr =
519 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
520 "bf.ptr.hi");
521 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
522 Dst.isVolatileQualified(),
523 "bf.prev.hi");
524
525 // Compute the mask for zero-ing the high part of this bitfield.
526 llvm::Constant *InvMask =
527 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
528
529 // Compute the new high part as
530 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
531 // where the high bits of NewVal have already been cleared and the
532 // shift stripping the low bits.
533 llvm::Value *NewHighVal =
534 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
535 "bf.value.high");
536 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
537 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
538
539 // Write back.
540 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
541 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000542}
543
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000544void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
545 LValue Dst,
546 QualType Ty) {
547 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
548}
549
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000550void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
551 LValue Dst,
552 QualType Ty) {
553 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
554}
555
Nate Begeman213541a2008-04-18 23:10:10 +0000556void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
557 LValue Dst,
558 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000559 // This access turns into a read/modify/write of the vector. Load the input
560 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000561 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
562 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000563 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000564
Chris Lattner9b655512007-08-31 22:49:20 +0000565 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000566
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000567 if (const VectorType *VTy = Ty->getAsVectorType()) {
568 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000569 unsigned NumDstElts =
570 cast<llvm::VectorType>(Vec->getType())->getNumElements();
571 if (NumDstElts == NumSrcElts) {
572 // Use shuffle vector is the src and destination are the same number
573 // of elements
574 llvm::SmallVector<llvm::Constant*, 4> Mask;
575 for (unsigned i = 0; i != NumSrcElts; ++i) {
576 unsigned InIdx = getAccessedFieldNo(i, Elts);
577 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
578 }
579
580 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
581 Vec = Builder.CreateShuffleVector(SrcVal,
582 llvm::UndefValue::get(Vec->getType()),
583 MaskV, "tmp");
584 }
585 else if (NumDstElts > NumSrcElts) {
586 // Extended the source vector to the same length and then shuffle it
587 // into the destination.
588 // FIXME: since we're shuffling with undef, can we just use the indices
589 // into that? This could be simpler.
590 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
591 unsigned i;
592 for (i = 0; i != NumSrcElts; ++i)
593 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
594 for (; i != NumDstElts; ++i)
595 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
596 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
597 ExtMask.size());
Daniel Dunbarbb767732009-02-17 18:31:04 +0000598 llvm::Value *ExtSrcVal =
599 Builder.CreateShuffleVector(SrcVal,
600 llvm::UndefValue::get(SrcVal->getType()),
601 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000602 // build identity
603 llvm::SmallVector<llvm::Constant*, 4> Mask;
604 for (unsigned i = 0; i != NumDstElts; ++i) {
605 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
606 }
607 // modify when what gets shuffled in
608 for (unsigned i = 0; i != NumSrcElts; ++i) {
609 unsigned Idx = getAccessedFieldNo(i, Elts);
610 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
611 }
612 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
613 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
614 }
615 else {
616 // We should never shorten the vector
617 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000618 }
619 } else {
620 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000621 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000622 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
623 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000624 }
625
Eli Friedman1e692ac2008-06-13 23:01:12 +0000626 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000627}
628
Reid Spencer5f016e22007-07-11 17:01:13 +0000629LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000630 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
631
Chris Lattner41110242008-06-17 18:05:57 +0000632 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
633 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000634 LValue LV;
Mike Stumpaa771a82009-04-14 18:24:37 +0000635 bool GCable = VD->hasLocalStorage() && !VD->hasAttr<BlocksAttr>();
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000636 if (VD->hasExternalStorage()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000637 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
638 if (VD->getType()->isReferenceType())
639 V = Builder.CreateLoad(V, "tmp");
640 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000641 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000642 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000643 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000644 llvm::Value *V = LocalDeclMap[VD];
Mike Stumpa99038c2009-02-28 09:07:16 +0000645 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000646 // local variables do not get their gc attribute set.
647 QualType::GCAttrTypes attr = QualType::GCNone;
648 // local static?
Mike Stumpf33651c2009-04-14 00:57:29 +0000649 if (!GCable)
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000650 attr = getContext().getObjCGCAttrKind(E->getType());
Daniel Dunbarb11fa0d2009-04-13 21:08:27 +0000651 if (VD->hasAttr<BlocksAttr>()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000652 bool needsCopyDispose = BlockRequiresCopying(VD->getType());
653 const llvm::Type *PtrStructTy = V->getType();
654 const llvm::Type *Ty = PtrStructTy;
655 Ty = llvm::PointerType::get(Ty, 0);
656 V = Builder.CreateStructGEP(V, 1, "forwarding");
657 V = Builder.CreateBitCast(V, Ty);
658 V = Builder.CreateLoad(V, false);
659 V = Builder.CreateBitCast(V, PtrStructTy);
660 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
661 }
Anders Carlssonc8667a82009-05-19 20:40:02 +0000662 if (VD->getType()->isReferenceType())
663 V = Builder.CreateLoad(V, "tmp");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000664 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000665 }
Mike Stumpf33651c2009-04-14 00:57:29 +0000666 LValue::SetObjCNonGC(LV, GCable);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000667 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000668 } else if (VD && VD->isFileVarDecl()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000669 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
670 if (VD->getType()->isReferenceType())
671 V = Builder.CreateLoad(V, "tmp");
672 LValue LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000673 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000674 if (LV.isObjCStrong())
675 LV.SetGlobalObjCRef(LV, true);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000676 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000677 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000678 return LValue::MakeAddr(CGM.GetAddrOfFunction(GlobalDecl(FD)),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000679 E->getType().getCVRQualifiers(),
680 getContext().getObjCGCAttrKind(E->getType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000681 }
Chris Lattner41110242008-06-17 18:05:57 +0000682 else if (const ImplicitParamDecl *IPD =
683 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
684 llvm::Value *V = LocalDeclMap[IPD];
685 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000686 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
687 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000688 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000689 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000690 //an invalid LValue, but the assert will
691 //ensure that this point is never reached.
692 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000693}
694
Mike Stumpa99038c2009-02-28 09:07:16 +0000695LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
696 return LValue::MakeAddr(GetAddrOfBlockDecl(E), 0);
697}
698
Reid Spencer5f016e22007-07-11 17:01:13 +0000699LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
700 // __extension__ doesn't affect lvalue-ness.
701 if (E->getOpcode() == UnaryOperator::Extension)
702 return EmitLValue(E->getSubExpr());
703
Chris Lattner96196622008-07-26 22:37:01 +0000704 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000705 switch (E->getOpcode()) {
706 default: assert(0 && "Unknown unary operator lvalue!");
707 case UnaryOperator::Deref:
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000708 {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000709 QualType T =
710 E->getSubExpr()->getType()->getAsPointerType()->getPointeeType();
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000711 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
712 ExprTy->getAsPointerType()->getPointeeType()
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000713 .getCVRQualifiers(),
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000714 getContext().getObjCGCAttrKind(T));
715 // We should not generate __weak write barrier on indirect reference
716 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
717 // But, we continue to generate __strong write barrier on indirect write
718 // into a pointer to object.
719 if (getContext().getLangOptions().ObjC1 &&
720 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
721 LV.isObjCWeak())
722 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
723 return LV;
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000724 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000725 case UnaryOperator::Real:
726 case UnaryOperator::Imag:
727 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000728 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
729 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000730 Idx, "idx"),
731 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000732 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000733}
734
735LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000736 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000737}
738
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000739LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
740 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
741}
742
743
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000744LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000745 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000746
747 switch (Type) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000748 default:
749 assert(0 && "Invalid type");
750 case PredefinedExpr::Func:
751 GlobalVarName = "__func__.";
752 break;
753 case PredefinedExpr::Function:
754 GlobalVarName = "__FUNCTION__.";
755 break;
756 case PredefinedExpr::PrettyFunction:
757 // FIXME:: Demangle C++ method names
758 GlobalVarName = "__PRETTY_FUNCTION__.";
759 break;
Anders Carlsson22742662007-07-21 05:21:51 +0000760 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000761
Chris Lattnerb5437d22009-04-23 05:30:27 +0000762 // FIXME: This isn't right at all. The logic for computing this should go
763 // into a method on PredefinedExpr. This would allow sema and codegen to be
764 // consistent for things like sizeof(__func__) etc.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000765 std::string FunctionName;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000766 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
Douglas Gregor6ec36682009-02-18 23:53:56 +0000767 FunctionName = CGM.getMangledName(FD);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000768 } else {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000769 // Just get the mangled name; skipping the asm prefix if it
770 // exists.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000771 FunctionName = CurFn->getName();
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000772 if (FunctionName[0] == '\01')
773 FunctionName = FunctionName.substr(1, std::string::npos);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000774 }
775
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000776 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000777 llvm::Constant *C =
778 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
779 return LValue::MakeAddr(C, 0);
780}
781
782LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
783 switch (E->getIdentType()) {
784 default:
785 return EmitUnsupportedLValue(E, "predefined expression");
786 case PredefinedExpr::Func:
787 case PredefinedExpr::Function:
788 case PredefinedExpr::PrettyFunction:
789 return EmitPredefinedFunctionName(E->getIdentType());
790 }
Anders Carlsson22742662007-07-21 05:21:51 +0000791}
792
Reid Spencer5f016e22007-07-11 17:01:13 +0000793LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000794 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000795 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000796
797 // If the base is a vector type, then we are forming a vector element lvalue
798 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000799 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000800 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000801 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000802 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000803 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000804 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
805 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000806 }
807
Ted Kremenek23245122007-08-20 16:18:38 +0000808 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000809 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000810
Ted Kremenek23245122007-08-20 16:18:38 +0000811 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000812 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000813 bool IdxSigned = IdxTy->isSignedIntegerType();
814 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta7cabee52009-04-24 02:40:57 +0000815 if (IdxBitwidth != LLVMPointerWidth)
816 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
Reid Spencer5f016e22007-07-11 17:01:13 +0000817 IdxSigned, "idxprom");
818
Daniel Dunbar2a866252009-04-25 05:08:32 +0000819 // We know that the pointer points to a type of the correct size,
820 // unless the size is a VLA or Objective-C interface.
821 llvm::Value *Address = 0;
Anders Carlsson8b33c082008-12-21 00:11:23 +0000822 if (const VariableArrayType *VAT =
823 getContext().getAsVariableArrayType(E->getType())) {
824 llvm::Value *VLASize = VLASizeMap[VAT];
825
826 Idx = Builder.CreateMul(Idx, VLASize);
827
Anders Carlsson6183a992008-12-21 03:44:36 +0000828 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000829
830 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
831 Idx = Builder.CreateUDiv(Idx,
832 llvm::ConstantInt::get(Idx->getType(),
833 BaseTypeSize));
Daniel Dunbar2a866252009-04-25 05:08:32 +0000834 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
835 } else if (const ObjCInterfaceType *OIT =
836 dyn_cast<ObjCInterfaceType>(E->getType())) {
837 llvm::Value *InterfaceSize =
838 llvm::ConstantInt::get(Idx->getType(),
839 getContext().getTypeSize(OIT) / 8);
840
841 Idx = Builder.CreateMul(Idx, InterfaceSize);
842
843 llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
844 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
845 Idx, "arrayidx");
846 Address = Builder.CreateBitCast(Address, Base->getType());
847 } else {
848 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
Anders Carlsson8b33c082008-12-21 00:11:23 +0000849 }
850
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000851 QualType T = E->getBase()->getType()->getAsPointerType()->getPointeeType();
Daniel Dunbar2a866252009-04-25 05:08:32 +0000852 LValue LV = LValue::MakeAddr(Address,
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000853 T.getCVRQualifiers(),
854 getContext().getObjCGCAttrKind(T));
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000855 if (getContext().getLangOptions().ObjC1 &&
856 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000857 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000858 return LV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000859}
860
Nate Begeman3b8d1162008-05-13 21:03:02 +0000861static
862llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
863 llvm::SmallVector<llvm::Constant *, 4> CElts;
864
865 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
866 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
867
868 return llvm::ConstantVector::get(&CElts[0], CElts.size());
869}
870
Chris Lattner349aaec2007-08-02 23:37:31 +0000871LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000872EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000873 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +0000874 LValue Base;
875
876 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +0000877 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +0000878 assert(E->getBase()->getType()->isVectorType());
879 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +0000880 } else {
881 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
882 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
883 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner73525de2009-02-16 21:11:58 +0000884 }
Chris Lattner349aaec2007-08-02 23:37:31 +0000885
Nate Begeman3b8d1162008-05-13 21:03:02 +0000886 // Encode the element access list into a vector of unsigned indices.
887 llvm::SmallVector<unsigned, 4> Indices;
888 E->getEncodedElementAccess(Indices);
889
890 if (Base.isSimple()) {
891 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000892 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000893 Base.getQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000894 }
895 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
896
897 llvm::Constant *BaseElts = Base.getExtVectorElts();
898 llvm::SmallVector<llvm::Constant *, 4> CElts;
899
900 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
901 if (isa<llvm::ConstantAggregateZero>(BaseElts))
902 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
903 else
904 CElts.push_back(BaseElts->getOperand(Indices[i]));
905 }
906 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000907 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000908 Base.getQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000909}
910
Devang Patelb9b00ad2007-10-23 20:28:39 +0000911LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000912 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000913 bool isIvar = false;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000914 bool isNonGC = false;
Devang Patel126a8562007-10-24 22:26:28 +0000915 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000916 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000917 unsigned CVRQualifiers=0;
918
Chris Lattner12f65f62007-12-02 18:52:07 +0000919 // 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 +0000920 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000921 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000922 const PointerType *PTy =
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000923 BaseExpr->getType()->getAsPointerType();
Devang Patelfe2419a2007-12-11 21:33:16 +0000924 if (PTy->getPointeeType()->isUnionType())
925 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000926 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000927 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
928 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +0000929 RValue RV = EmitObjCPropertyGet(BaseExpr);
930 BaseValue = RV.getAggregateAddr();
931 if (BaseExpr->getType()->isUnionType())
932 isUnion = true;
933 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000934 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +0000935 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000936 if (BaseLV.isObjCIvar())
937 isIvar = true;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000938 if (BaseLV.isNonGC())
939 isNonGC = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000940 // FIXME: this isn't right for bitfields.
941 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000942 if (BaseExpr->getType()->isUnionType())
943 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000944 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000945 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000946
Douglas Gregor86f19402008-12-20 23:49:58 +0000947 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
948 // FIXME: Handle non-field member expressions
949 assert(Field && "No code generation for non-field member references");
Chris Lattner1bd885e2009-02-16 22:25:49 +0000950 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
951 CVRQualifiers);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000952 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000953 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000954 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +0000955}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000956
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000957LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
958 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000959 unsigned CVRQualifiers) {
Daniel Dunbarbb767732009-02-17 18:31:04 +0000960 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Mike Stumpf5408fe2009-05-16 07:57:57 +0000961 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
962 // FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbarbb767732009-02-17 18:31:04 +0000963 const llvm::Type *FieldTy =
964 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000965 const llvm::PointerType *BaseTy =
966 cast<llvm::PointerType>(BaseValue->getType());
967 unsigned AS = BaseTy->getAddressSpace();
968 BaseValue = Builder.CreateBitCast(BaseValue,
969 llvm::PointerType::get(FieldTy, AS),
970 "tmp");
971 llvm::Value *V = Builder.CreateGEP(BaseValue,
972 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
973 "tmp");
974
975 CodeGenTypes::BitFieldInfo bitFieldInfo =
976 CGM.getTypes().getBitFieldInfo(Field);
977 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
978 Field->getType()->isSignedIntegerType(),
979 Field->getType().getCVRQualifiers()|CVRQualifiers);
980}
981
Eli Friedman472778e2008-02-09 08:50:58 +0000982LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
983 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000984 bool isUnion,
985 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000986{
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000987 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000988 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000989
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000990 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000991 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000992
Devang Patelabad06c2007-10-26 19:42:18 +0000993 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000994 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000995 const llvm::Type *FieldTy =
996 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000997 const llvm::PointerType * BaseTy =
998 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000999 unsigned AS = BaseTy->getAddressSpace();
1000 V = Builder.CreateBitCast(V,
1001 llvm::PointerType::get(FieldTy, AS),
1002 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +00001003 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +00001004
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001005 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001006 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001007 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1008 QualType Ty = Field->getType();
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001009 attr = Ty.getObjCGCAttr();
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001010 if (attr != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001011 // __weak attribute on a field is ignored.
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001012 if (attr == QualType::Weak)
1013 attr = QualType::GCNone;
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001014 }
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001015 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001016 attr = QualType::Strong;
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001017 }
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001018 LValue LV =
1019 LValue::MakeAddr(V,
1020 Field->getType().getCVRQualifiers()|CVRQualifiers,
1021 attr);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +00001022 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +00001023}
1024
Chris Lattner75dfeda2009-03-18 18:28:57 +00001025LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman06e863f2008-05-13 23:18:27 +00001026 const llvm::Type *LTy = ConvertType(E->getType());
1027 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1028
1029 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +00001030 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +00001031
1032 if (E->getType()->isComplexType()) {
1033 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1034 } else if (hasAggregateLLVMType(E->getType())) {
1035 EmitAnyExpr(InitExpr, DeclPtr, false);
1036 } else {
1037 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1038 }
1039
1040 return Result;
1041}
1042
Daniel Dunbar90345582009-03-24 02:38:23 +00001043LValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator* E) {
1044 // We don't handle vectors yet.
1045 if (E->getType()->isVectorType())
1046 return EmitUnsupportedLValue(E, "conditional operator");
1047
1048 // ?: here should be an aggregate.
1049 assert((hasAggregateLLVMType(E->getType()) &&
1050 !E->getType()->isAnyComplexType()) &&
1051 "Unexpected conditional operator!");
1052
1053 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1054 EmitAggExpr(E, Temp, false);
1055
1056 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1057 getContext().getObjCGCAttrKind(E->getType()));
1058
1059}
1060
Chris Lattner75dfeda2009-03-18 18:28:57 +00001061/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1062/// generator in an lvalue context, then it must mean that we need the address
1063/// of an aggregate in order to access one of its fields. This can happen for
1064/// all the reasons that casts are permitted with aggregate result, including
1065/// noop aggregate casts, and cast from scalar to union.
1066LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
1067 // If this is an aggregate-to-aggregate cast, just use the input's address as
1068 // the lvalue.
1069 if (getContext().hasSameUnqualifiedType(E->getType(),
1070 E->getSubExpr()->getType()))
1071 return EmitLValue(E->getSubExpr());
1072
1073 // Otherwise, we must have a cast from scalar to union.
1074 assert(E->getType()->isUnionType() && "Expected scalar-to-union cast");
1075
1076 // Casts are only lvalues when the source and destination types are the same.
1077 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
Chris Lattner40f92922009-03-18 18:30:44 +00001078 EmitAnyExpr(E->getSubExpr(), Temp, false);
Chris Lattner75dfeda2009-03-18 18:28:57 +00001079
1080 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1081 getContext().getObjCGCAttrKind(E->getType()));
1082}
1083
Reid Spencer5f016e22007-07-11 17:01:13 +00001084//===--------------------------------------------------------------------===//
1085// Expression Emission
1086//===--------------------------------------------------------------------===//
1087
Chris Lattner7016a702007-08-20 22:37:10 +00001088
Reid Spencer5f016e22007-07-11 17:01:13 +00001089RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001090 // Builtins never have block type.
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001091 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +00001092 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001093
Anders Carlsson774e7c62009-04-03 22:50:24 +00001094 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1095 return EmitCXXMemberCallExpr(CE);
1096
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001097 const Decl *TargetDecl = 0;
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001098 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1099 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1100 TargetDecl = DRE->getDecl();
1101 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1102 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1103 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001104 }
1105 }
1106
Chris Lattner7f02f722007-08-24 05:35:26 +00001107 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +00001108 return EmitCallExpr(Callee, E->getCallee()->getType(),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001109 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattnerc5e940f2007-08-31 04:44:06 +00001110}
1111
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001112LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattner7a574cc2009-05-12 21:28:12 +00001113 // Comma expressions just emit their LHS then their RHS as an l-value.
1114 if (E->getOpcode() == BinaryOperator::Comma) {
1115 EmitAnyExpr(E->getLHS());
1116 return EmitLValue(E->getRHS());
1117 }
1118
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001119 // Can only get l-value for binary operator expressions which are a
1120 // simple assignment of aggregate type.
1121 if (E->getOpcode() != BinaryOperator::Assign)
1122 return EmitUnsupportedLValue(E, "binary l-value expression");
1123
1124 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1125 EmitAggExpr(E, Temp, false);
1126 // FIXME: Are these qualifiers correct?
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001127 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1128 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001129}
1130
Christopher Lamb22c940e2007-12-29 05:02:41 +00001131LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
1132 // Can only get l-value for call expression returning aggregate type
1133 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +00001134 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001135 E->getType().getCVRQualifiers(),
1136 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lamb22c940e2007-12-29 05:02:41 +00001137}
1138
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001139LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1140 // FIXME: This shouldn't require another copy.
1141 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1142 EmitAggExpr(E, Temp, false);
1143 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1144}
1145
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001146LValue
1147CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1148 EmitLocalBlockVarDecl(*E->getVarDecl());
1149 return EmitDeclRefLValue(E);
1150}
1151
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001152LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1153 // Can only get l-value for message expression returning aggregate type
1154 RValue RV = EmitObjCMessageExpr(E);
1155 // FIXME: can this be volatile?
1156 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001157 E->getType().getCVRQualifiers(),
1158 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001159}
1160
Daniel Dunbar2a031922009-04-22 05:08:15 +00001161llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001162 const ObjCIvarDecl *Ivar) {
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001163 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001164}
1165
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001166LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1167 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001168 const ObjCIvarDecl *Ivar,
1169 unsigned CVRQualifiers) {
Chris Lattner26f074b2009-04-17 17:44:48 +00001170 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001171 Ivar, CVRQualifiers);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001172}
1173
1174LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001175 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1176 llvm::Value *BaseValue = 0;
1177 const Expr *BaseExpr = E->getBase();
1178 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001179 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001180 if (E->isArrow()) {
1181 BaseValue = EmitScalarExpr(BaseExpr);
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +00001182 const PointerType *PTy = BaseExpr->getType()->getAsPointerType();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001183 ObjectTy = PTy->getPointeeType();
1184 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001185 } else {
1186 LValue BaseLV = EmitLValue(BaseExpr);
1187 // FIXME: this isn't right for bitfields.
1188 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001189 ObjectTy = BaseExpr->getType();
1190 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001191 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001192
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001193 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001194}
1195
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001196LValue
1197CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1198 // This is a special l-value that just issues sends when we load or
1199 // store through it.
1200 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1201}
1202
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001203LValue
1204CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1205 // This is a special l-value that just issues sends when we load or
1206 // store through it.
1207 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1208}
1209
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001210LValue
Chris Lattner65459942009-04-25 19:35:26 +00001211CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001212 return EmitUnsupportedLValue(E, "use of super");
1213}
1214
Chris Lattner65459942009-04-25 19:35:26 +00001215LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
1216
1217 // Can only get l-value for message expression returning aggregate type
1218 RValue RV = EmitAnyExprToTemp(E);
1219 // FIXME: can this be volatile?
1220 return LValue::MakeAddr(RV.getAggregateAddr(),
1221 E->getType().getCVRQualifiers(),
1222 getContext().getObjCGCAttrKind(E->getType()));
1223}
1224
1225
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001226RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek55499762008-06-17 02:43:46 +00001227 CallExpr::const_arg_iterator ArgBeg,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001228 CallExpr::const_arg_iterator ArgEnd,
1229 const Decl *TargetDecl) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001230 // Get the actual function type. The callee type will always be a
1231 // pointer to function type or a block pointer type.
Anders Carlsson8ac67a72009-04-07 18:53:02 +00001232 assert(CalleeType->isFunctionPointerType() &&
1233 "Call must have function pointer type!");
1234
1235 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1236 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001237
1238 CallArgList Args;
Anders Carlsson782f3972009-04-08 23:13:16 +00001239 EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001240
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001241 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001242 Callee, Args, TargetDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001243}