blob: d42ca17e48251326443e441d3342efa4b98a5b59 [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,
Mike Stump49d1cd52009-05-26 22:03:21 +000052 bool isAggLocVolatile, bool IgnoreResult) {
Chris Lattner9b655512007-08-31 22:49:20 +000053 if (!hasAggregateLLVMType(E->getType()))
Mike Stump7f79f9b2009-05-29 15:46:01 +000054 return RValue::get(EmitScalarExpr(E, IgnoreResult));
Chris Lattner9b2dc282008-04-04 16:54:41 +000055 else if (E->getType()->isAnyComplexType())
Mike Stump7f79f9b2009-05-29 15:46:01 +000056 return RValue::getComplex(EmitComplexExpr(E, false, false,
57 IgnoreResult, IgnoreResult));
Chris Lattner9b655512007-08-31 22:49:20 +000058
Mike Stump49d1cd52009-05-26 22:03:21 +000059 EmitAggExpr(E, AggLoc, isAggLocVolatile, IgnoreResult);
Mike Stumpf1b97f22009-05-23 21:40:07 +000060 return RValue::getAggregate(AggLoc, isAggLocVolatile);
Chris Lattner9b655512007-08-31 22:49:20 +000061}
62
Daniel Dunbar46f45b92008-09-09 01:06:48 +000063/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
64/// will always be accessible even if no aggregate location is
65/// provided.
66RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
67 bool isAggLocVolatile) {
68 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
69 !E->getType()->isAnyComplexType())
70 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
71 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
72}
73
Anders Carlsson4029ca72009-05-20 00:24:07 +000074RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
75 QualType DestType) {
Eli Friedman5df0d422009-05-20 02:31:19 +000076 RValue Val;
77 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
Anders Carlsson4bbab922009-05-20 00:36:58 +000078 // Emit the expr as an lvalue.
79 LValue LV = EmitLValue(E);
Eli Friedman5df0d422009-05-20 02:31:19 +000080 if (LV.isSimple())
81 return RValue::get(LV.getAddress());
82 Val = EmitLoadOfLValue(LV, E->getType());
83 } else {
84 Val = EmitAnyExprToTemp(E);
Anders Carlsson4bbab922009-05-20 00:36:58 +000085 }
Eli Friedman5df0d422009-05-20 02:31:19 +000086
87 if (Val.isAggregate()) {
88 Val = RValue::get(Val.getAggregateAddr());
89 } else {
Anders Carlsson7cd3a642009-05-20 01:35:03 +000090 // Create a temporary variable that we can bind the reference to.
Anders Carlssone04d1c72009-05-20 01:03:17 +000091 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()),
92 "reftmp");
Eli Friedman5df0d422009-05-20 02:31:19 +000093 if (Val.isScalar())
94 EmitStoreOfScalar(Val.getScalarVal(), Temp, false, E->getType());
95 else
96 StoreComplexToAddr(Val.getComplexVal(), Temp, false);
97 Val = RValue::get(Temp);
Anders Carlssone04d1c72009-05-20 01:03:17 +000098 }
Eli Friedman5df0d422009-05-20 02:31:19 +000099
100 return Val;
Anders Carlsson4029ca72009-05-20 00:24:07 +0000101}
102
103
Dan Gohman4f8d1232008-05-22 00:50:06 +0000104/// getAccessedFieldNo - Given an encoded value and a result number, return
105/// the input field number being accessed.
106unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
107 const llvm::Constant *Elts) {
108 if (isa<llvm::ConstantAggregateZero>(Elts))
109 return 0;
110
111 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
112}
113
Chris Lattner9b655512007-08-31 22:49:20 +0000114
Reid Spencer5f016e22007-07-11 17:01:13 +0000115//===----------------------------------------------------------------------===//
116// LValue Expression Emission
117//===----------------------------------------------------------------------===//
118
Daniel Dunbar13e81732009-02-05 07:09:07 +0000119RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
120 if (Ty->isVoidType()) {
121 return RValue::get(0);
122 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000123 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
124 llvm::Value *U = llvm::UndefValue::get(EltTy);
125 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbar13e81732009-02-05 07:09:07 +0000126 } else if (hasAggregateLLVMType(Ty)) {
127 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
128 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000129 } else {
Daniel Dunbar13e81732009-02-05 07:09:07 +0000130 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000131 }
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000132}
133
Daniel Dunbar13e81732009-02-05 07:09:07 +0000134RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
135 const char *Name) {
136 ErrorUnsupported(E, Name);
137 return GetUndefRValue(E->getType());
138}
139
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000140LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
141 const char *Name) {
142 ErrorUnsupported(E, Name);
143 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
144 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000145 E->getType().getCVRQualifiers(),
146 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000147}
148
Reid Spencer5f016e22007-07-11 17:01:13 +0000149/// EmitLValue - Emit code to compute a designator that specifies the location
150/// of the expression.
151///
152/// This can return one of two things: a simple address or a bitfield
153/// reference. In either case, the LLVM Value* in the LValue structure is
154/// guaranteed to be an LLVM pointer type.
155///
156/// If this returns a bitfield reference, nothing about the pointee type of
157/// the LLVM value is known: For example, it may not be a pointer to an
158/// integer.
159///
160/// If this returns a normal address, and if the lvalue's C type is fixed
161/// size, this method guarantees that the returned pointer type will point to
162/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
163/// variable length type, this is not possible.
164///
165LValue CodeGenFunction::EmitLValue(const Expr *E) {
166 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000167 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000168
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000169 case Expr::BinaryOperatorClass:
170 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregorb4609802008-11-14 16:09:21 +0000171 case Expr::CallExprClass:
172 case Expr::CXXOperatorCallExprClass:
173 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000174 case Expr::VAArgExprClass:
175 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000176 case Expr::DeclRefExprClass:
177 case Expr::QualifiedDeclRefExprClass:
178 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000180 case Expr::PredefinedExprClass:
181 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 case Expr::StringLiteralClass:
183 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000184 case Expr::ObjCEncodeExprClass:
185 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000186
Mike Stumpa99038c2009-02-28 09:07:16 +0000187 case Expr::BlockDeclRefExprClass:
188 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
189
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000190 case Expr::CXXConditionDeclExprClass:
191 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
Anders Carlssonb58d0172009-05-30 23:23:33 +0000192 case Expr::CXXTemporaryObjectExprClass:
193 case Expr::CXXConstructExprClass:
Anders Carlssone61c9e82009-05-30 23:30:54 +0000194 return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
195 case Expr::CXXBindTemporaryExprClass:
196 return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
197
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000198 case Expr::ObjCMessageExprClass:
199 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000200 case Expr::ObjCIvarRefExprClass:
201 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000202 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000203 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000204 case Expr::ObjCKVCRefExprClass:
205 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000206 case Expr::ObjCSuperExprClass:
Chris Lattner65459942009-04-25 19:35:26 +0000207 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000208
Chris Lattner65459942009-04-25 19:35:26 +0000209 case Expr::StmtExprClass:
210 return EmitStmtExprLValue(cast<StmtExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000211 case Expr::UnaryOperatorClass:
212 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
213 case Expr::ArraySubscriptExprClass:
214 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000215 case Expr::ExtVectorElementExprClass:
216 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000217 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000218 case Expr::CompoundLiteralExprClass:
219 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbar90345582009-03-24 02:38:23 +0000220 case Expr::ConditionalOperatorClass:
221 return EmitConditionalOperator(cast<ConditionalOperator>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000222 case Expr::ChooseExprClass:
Eli Friedman79769322009-03-04 05:52:32 +0000223 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattnerc3953a62009-03-18 04:02:57 +0000224 case Expr::ImplicitCastExprClass:
225 case Expr::CStyleCastExprClass:
226 case Expr::CXXFunctionalCastExprClass:
227 case Expr::CXXStaticCastExprClass:
228 case Expr::CXXDynamicCastExprClass:
229 case Expr::CXXReinterpretCastExprClass:
230 case Expr::CXXConstCastExprClass:
Chris Lattner75dfeda2009-03-18 18:28:57 +0000231 return EmitCastLValue(cast<CastExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000232 }
233}
234
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000235llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
236 QualType Ty) {
237 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
238
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000239 // Bool can have different representation in memory than in registers.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000240 if (Ty->isBooleanType())
241 if (V->getType() != llvm::Type::Int1Ty)
242 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
243
244 return V;
245}
246
247void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000248 bool Volatile, QualType Ty) {
Anders Carlsson3bb423b2009-05-19 19:36:19 +0000249
250 if (Ty->isBooleanType()) {
251 // Bool can have different representation in memory than in registers.
252 const llvm::Type *SrcTy = Value->getType();
253 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
254 if (DstPtr->getElementType() != SrcTy) {
255 const llvm::Type *MemTy =
256 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
257 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
258 }
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000259 }
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000260 Builder.CreateStore(Value, Addr, Volatile);
261}
262
Reid Spencer5f016e22007-07-11 17:01:13 +0000263/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
264/// this method emits the address of the lvalue, then loads the result as an
265/// rvalue, returning the rvalue.
266RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000267 if (LV.isObjCWeak()) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000268 // load of a __weak object.
269 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000270 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000271 AddrWeakObj);
272 return RValue::get(read_weak);
273 }
274
Reid Spencer5f016e22007-07-11 17:01:13 +0000275 if (LV.isSimple()) {
276 llvm::Value *Ptr = LV.getAddress();
277 const llvm::Type *EltTy =
278 cast<llvm::PointerType>(Ptr->getType())->getElementType();
279
280 // Simple scalar l-value.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000281 if (EltTy->isSingleValueType())
282 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
283 ExprType));
Reid Spencer5f016e22007-07-11 17:01:13 +0000284
Chris Lattner883f6a72007-08-11 00:04:45 +0000285 assert(ExprType->isFunctionType() && "Unknown scalar value");
286 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000287 }
288
289 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000290 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
291 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000292 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
293 "vecext"));
294 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000295
296 // If this is a reference to a subset of the elements of a vector, either
297 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000298 if (LV.isExtVectorElt())
299 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000300
301 if (LV.isBitfield())
302 return EmitLoadOfBitfieldLValue(LV, ExprType);
303
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000304 if (LV.isPropertyRef())
305 return EmitLoadOfPropertyRefLValue(LV, ExprType);
306
Chris Lattner73525de2009-02-16 21:11:58 +0000307 assert(LV.isKVCRef() && "Unknown LValue type!");
308 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000309}
310
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000311RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
312 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000313 unsigned StartBit = LV.getBitfieldStartBit();
314 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000315 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000316
317 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000318 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000319 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000320
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000321 // In some cases the bitfield may straddle two memory locations.
322 // Currently we load the entire bitfield, then do the magic to
323 // sign-extend it if necessary. This results in somewhat more code
324 // than necessary for the common case (one load), since two shifts
325 // accomplish both the masking and sign extension.
326 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
327 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
328
329 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000330 if (StartBit)
331 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
332 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000333
334 // Mask off unused bits.
335 llvm::Constant *LowMask =
336 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
337 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
338
339 // Fetch the high bits if necessary.
340 if (LowBits < BitfieldSize) {
341 unsigned HighBits = BitfieldSize - LowBits;
342 llvm::Value *HighPtr =
343 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
344 "bf.ptr.hi");
345 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
346 LV.isVolatileQualified(),
347 "tmp");
348
349 // Mask off unused bits.
350 llvm::Constant *HighMask =
351 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
352 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000353
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000354 // Shift to proper location and or in to bitfield value.
355 HighVal = Builder.CreateShl(HighVal,
356 llvm::ConstantInt::get(EltTy, LowBits));
357 Val = Builder.CreateOr(Val, HighVal, "bf.val");
358 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000359
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000360 // Sign extend if necessary.
361 if (LV.isBitfieldSigned()) {
362 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
363 EltTySize - BitfieldSize);
364 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
365 ExtraBits, "bf.val.sext");
366 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000367
368 // The bitfield type and the normal type differ when the storage sizes
369 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000370 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000371
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000372 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000373}
374
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000375RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
376 QualType ExprType) {
377 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
378}
379
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000380RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
381 QualType ExprType) {
382 return EmitObjCPropertyGet(LV.getKVCRefExpr());
383}
384
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000385// If this is a reference to a subset of the elements of a vector, create an
386// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000387RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
388 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000389 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
390 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000391
Nate Begeman8a997642008-05-09 06:41:27 +0000392 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000393
394 // If the result of the expression is a non-vector type, we must be
395 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000396 const VectorType *ExprVT = ExprType->getAsVectorType();
397 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000398 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000399 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
400 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
401 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000402
403 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000404 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000405
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000406 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000407 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000408 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000409 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000410 }
411
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000412 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
413 Vec = Builder.CreateShuffleVector(Vec,
414 llvm::UndefValue::get(Vec->getType()),
415 MaskV, "tmp");
416 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000417}
418
419
Reid Spencer5f016e22007-07-11 17:01:13 +0000420
421/// EmitStoreThroughLValue - Store the specified rvalue into the specified
422/// lvalue, where both are guaranteed to the have the same type, and that type
423/// is 'Ty'.
424void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
425 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000426 if (!Dst.isSimple()) {
427 if (Dst.isVectorElt()) {
428 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000429 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
430 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000431 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000432 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000433 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000434 return;
435 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000436
Nate Begeman213541a2008-04-18 23:10:10 +0000437 // If this is an update of extended vector elements, insert them as
438 // appropriate.
439 if (Dst.isExtVectorElt())
440 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000441
442 if (Dst.isBitfield())
443 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
444
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000445 if (Dst.isPropertyRef())
446 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
447
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000448 if (Dst.isKVCRef())
449 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
450
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000451 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000452 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000453
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000454 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000455 // load of a __weak object.
456 llvm::Value *LvalueDst = Dst.getAddress();
457 llvm::Value *src = Src.getScalarVal();
Mike Stumpf33651c2009-04-14 00:57:29 +0000458 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000459 return;
460 }
461
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000462 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000463 // load of a __strong object.
464 llvm::Value *LvalueDst = Dst.getAddress();
465 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000466#if 0
Mike Stumpf5408fe2009-05-16 07:57:57 +0000467 // FIXME. We cannot positively determine if we have an 'ivar' assignment,
468 // object assignment or an unknown assignment. For now, generate call to
469 // objc_assign_strongCast assignment which is a safe, but consevative
470 // assumption.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000471 if (Dst.isObjCIvar())
472 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
473 else
474 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000475#endif
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000476 if (Dst.isGlobalObjCRef())
477 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
478 else
479 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000480 return;
481 }
482
Chris Lattner883f6a72007-08-11 00:04:45 +0000483 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlssonb4aa4662009-05-19 18:50:41 +0000484 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
485 Dst.isVolatileQualified(), Ty);
Reid Spencer5f016e22007-07-11 17:01:13 +0000486}
487
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000488void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000489 QualType Ty,
490 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000491 unsigned StartBit = Dst.getBitfieldStartBit();
492 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000493 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000494
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000495 const llvm::Type *EltTy =
496 cast<llvm::PointerType>(Ptr->getType())->getElementType();
497 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
498
499 // Get the new value, cast to the appropriate type and masked to
500 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000501 llvm::Value *SrcVal = Src.getScalarVal();
502 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000503 llvm::Constant *Mask =
504 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
505 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000506
Daniel Dunbared3849b2008-11-19 09:36:46 +0000507 // Return the new value of the bit-field, if requested.
508 if (Result) {
509 // Cast back to the proper type for result.
510 const llvm::Type *SrcTy = SrcVal->getType();
511 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
512 "bf.reload.val");
513
514 // Sign extend if necessary.
515 if (Dst.isBitfieldSigned()) {
516 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
517 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
518 SrcTySize - BitfieldSize);
519 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
520 ExtraBits, "bf.reload.sext");
521 }
522
523 *Result = SrcTrunc;
524 }
525
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000526 // In some cases the bitfield may straddle two memory locations.
527 // Emit the low part first and check to see if the high needs to be
528 // done.
529 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
530 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
531 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000532
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000533 // Compute the mask for zero-ing the low part of this bitfield.
534 llvm::Constant *InvMask =
535 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
536 StartBit + LowBits));
537
538 // Compute the new low part as
539 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
540 // with the shift of NewVal implicitly stripping the high bits.
541 llvm::Value *NewLowVal =
542 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
543 "bf.value.lo");
544 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
545 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
546
547 // Write back.
548 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000549
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000550 // If the low part doesn't cover the bitfield emit a high part.
551 if (LowBits < BitfieldSize) {
552 unsigned HighBits = BitfieldSize - LowBits;
553 llvm::Value *HighPtr =
554 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
555 "bf.ptr.hi");
556 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
557 Dst.isVolatileQualified(),
558 "bf.prev.hi");
559
560 // Compute the mask for zero-ing the high part of this bitfield.
561 llvm::Constant *InvMask =
562 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
563
564 // Compute the new high part as
565 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
566 // where the high bits of NewVal have already been cleared and the
567 // shift stripping the low bits.
568 llvm::Value *NewHighVal =
569 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
570 "bf.value.high");
571 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
572 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
573
574 // Write back.
575 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
576 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000577}
578
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000579void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
580 LValue Dst,
581 QualType Ty) {
582 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
583}
584
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000585void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
586 LValue Dst,
587 QualType Ty) {
588 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
589}
590
Nate Begeman213541a2008-04-18 23:10:10 +0000591void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
592 LValue Dst,
593 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000594 // This access turns into a read/modify/write of the vector. Load the input
595 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000596 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
597 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000598 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000599
Chris Lattner9b655512007-08-31 22:49:20 +0000600 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000601
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000602 if (const VectorType *VTy = Ty->getAsVectorType()) {
603 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000604 unsigned NumDstElts =
605 cast<llvm::VectorType>(Vec->getType())->getNumElements();
606 if (NumDstElts == NumSrcElts) {
607 // Use shuffle vector is the src and destination are the same number
Nate Begeman6e5dd862009-06-26 21:12:50 +0000608 // of elements and restore the vector mask since it is on the side
609 // it will be stored.
610 llvm::SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000611 for (unsigned i = 0; i != NumSrcElts; ++i) {
612 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6e5dd862009-06-26 21:12:50 +0000613 Mask[InIdx] = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000614 }
615
616 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
617 Vec = Builder.CreateShuffleVector(SrcVal,
618 llvm::UndefValue::get(Vec->getType()),
619 MaskV, "tmp");
620 }
621 else if (NumDstElts > NumSrcElts) {
622 // Extended the source vector to the same length and then shuffle it
623 // into the destination.
624 // FIXME: since we're shuffling with undef, can we just use the indices
625 // into that? This could be simpler.
626 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
627 unsigned i;
628 for (i = 0; i != NumSrcElts; ++i)
629 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
630 for (; i != NumDstElts; ++i)
631 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
632 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
633 ExtMask.size());
Daniel Dunbarbb767732009-02-17 18:31:04 +0000634 llvm::Value *ExtSrcVal =
635 Builder.CreateShuffleVector(SrcVal,
636 llvm::UndefValue::get(SrcVal->getType()),
637 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000638 // build identity
639 llvm::SmallVector<llvm::Constant*, 4> Mask;
640 for (unsigned i = 0; i != NumDstElts; ++i) {
641 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
642 }
643 // modify when what gets shuffled in
644 for (unsigned i = 0; i != NumSrcElts; ++i) {
645 unsigned Idx = getAccessedFieldNo(i, Elts);
646 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
647 }
648 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
649 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
650 }
651 else {
652 // We should never shorten the vector
653 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000654 }
655 } else {
656 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000657 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000658 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
659 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000660 }
661
Eli Friedman1e692ac2008-06-13 23:01:12 +0000662 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000663}
664
Reid Spencer5f016e22007-07-11 17:01:13 +0000665LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000666 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
667
Chris Lattner41110242008-06-17 18:05:57 +0000668 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
669 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000670 LValue LV;
Douglas Gregor68584ed2009-06-18 16:11:24 +0000671 bool NonGCable = VD->hasLocalStorage() &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000672 !VD->hasAttr<BlocksAttr>();
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000673 if (VD->hasExternalStorage()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000674 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
675 if (VD->getType()->isReferenceType())
676 V = Builder.CreateLoad(V, "tmp");
677 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000678 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000679 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000680 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000681 llvm::Value *V = LocalDeclMap[VD];
Mike Stumpa99038c2009-02-28 09:07:16 +0000682 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000683 // local variables do not get their gc attribute set.
684 QualType::GCAttrTypes attr = QualType::GCNone;
685 // local static?
Fariborz Jahanian52967772009-05-27 19:48:48 +0000686 if (!NonGCable)
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000687 attr = getContext().getObjCGCAttrKind(E->getType());
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000688 if (VD->hasAttr<BlocksAttr>()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000689 bool needsCopyDispose = BlockRequiresCopying(VD->getType());
690 const llvm::Type *PtrStructTy = V->getType();
691 const llvm::Type *Ty = PtrStructTy;
692 Ty = llvm::PointerType::get(Ty, 0);
693 V = Builder.CreateStructGEP(V, 1, "forwarding");
694 V = Builder.CreateBitCast(V, Ty);
695 V = Builder.CreateLoad(V, false);
696 V = Builder.CreateBitCast(V, PtrStructTy);
697 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
698 }
Anders Carlssonc8667a82009-05-19 20:40:02 +0000699 if (VD->getType()->isReferenceType())
700 V = Builder.CreateLoad(V, "tmp");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000701 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000702 }
Fariborz Jahanian52967772009-05-27 19:48:48 +0000703 LValue::SetObjCNonGC(LV, NonGCable);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000704 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000705 } else if (VD && VD->isFileVarDecl()) {
Anders Carlssonc8667a82009-05-19 20:40:02 +0000706 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
707 if (VD->getType()->isReferenceType())
708 V = Builder.CreateLoad(V, "tmp");
709 LValue LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000710 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanianbf63b872009-05-04 23:27:20 +0000711 if (LV.isObjCStrong())
712 LV.SetGlobalObjCRef(LV, true);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000713 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000714 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Eli Friedman3fbc4732009-06-01 10:04:20 +0000715 llvm::Value* V = CGM.GetAddrOfFunction(GlobalDecl(FD));
716 if (!FD->hasPrototype()) {
717 if (const FunctionProtoType *Proto =
718 FD->getType()->getAsFunctionProtoType()) {
719 // Ugly case: for a K&R-style definition, the type of the definition
720 // isn't the same as the type of a use. Correct for this with a
721 // bitcast.
722 QualType NoProtoType =
723 getContext().getFunctionNoProtoType(Proto->getResultType());
724 NoProtoType = getContext().getPointerType(NoProtoType);
725 V = Builder.CreateBitCast(V, ConvertType(NoProtoType), "tmp");
726 }
727 }
728 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000729 getContext().getObjCGCAttrKind(E->getType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000730 }
Chris Lattner41110242008-06-17 18:05:57 +0000731 else if (const ImplicitParamDecl *IPD =
732 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
733 llvm::Value *V = LocalDeclMap[IPD];
734 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000735 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
736 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000737 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000738 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000739 //an invalid LValue, but the assert will
740 //ensure that this point is never reached.
741 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000742}
743
Mike Stumpa99038c2009-02-28 09:07:16 +0000744LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
Daniel Dunbare2265342009-05-23 02:49:02 +0000745 return LValue::MakeAddr(GetAddrOfBlockDecl(E),
746 E->getType().getCVRQualifiers(),
747 getContext().getObjCGCAttrKind(E->getType()));
Mike Stumpa99038c2009-02-28 09:07:16 +0000748}
749
Reid Spencer5f016e22007-07-11 17:01:13 +0000750LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
751 // __extension__ doesn't affect lvalue-ness.
752 if (E->getOpcode() == UnaryOperator::Extension)
753 return EmitLValue(E->getSubExpr());
754
Chris Lattner96196622008-07-26 22:37:01 +0000755 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000756 switch (E->getOpcode()) {
757 default: assert(0 && "Unknown unary operator lvalue!");
758 case UnaryOperator::Deref:
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000759 {
Steve Naroff14108da2009-07-10 23:34:53 +0000760 QualType T = E->getSubExpr()->getType()->getPointeeType();
761 assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
762
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000763 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Steve Naroff14108da2009-07-10 23:34:53 +0000764 T.getCVRQualifiers(),
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000765 getContext().getObjCGCAttrKind(T));
766 // We should not generate __weak write barrier on indirect reference
767 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
768 // But, we continue to generate __strong write barrier on indirect write
769 // into a pointer to object.
770 if (getContext().getLangOptions().ObjC1 &&
771 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
772 LV.isObjCWeak())
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000773 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000774 return LV;
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000775 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000776 case UnaryOperator::Real:
777 case UnaryOperator::Imag:
778 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000779 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
780 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000781 Idx, "idx"),
782 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000783 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000784}
785
786LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000787 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000788}
789
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000790LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
791 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
792}
793
794
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000795LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000796 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000797
798 switch (Type) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000799 default:
800 assert(0 && "Invalid type");
801 case PredefinedExpr::Func:
802 GlobalVarName = "__func__.";
803 break;
804 case PredefinedExpr::Function:
805 GlobalVarName = "__FUNCTION__.";
806 break;
807 case PredefinedExpr::PrettyFunction:
808 // FIXME:: Demangle C++ method names
809 GlobalVarName = "__PRETTY_FUNCTION__.";
810 break;
Anders Carlsson22742662007-07-21 05:21:51 +0000811 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000812
Chris Lattnerb5437d22009-04-23 05:30:27 +0000813 // FIXME: This isn't right at all. The logic for computing this should go
814 // into a method on PredefinedExpr. This would allow sema and codegen to be
815 // consistent for things like sizeof(__func__) etc.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000816 std::string FunctionName;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000817 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
Douglas Gregor6ec36682009-02-18 23:53:56 +0000818 FunctionName = CGM.getMangledName(FD);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000819 } else {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000820 // Just get the mangled name; skipping the asm prefix if it
821 // exists.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000822 FunctionName = CurFn->getName();
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000823 if (FunctionName[0] == '\01')
824 FunctionName = FunctionName.substr(1, std::string::npos);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000825 }
826
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000827 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000828 llvm::Constant *C =
829 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
830 return LValue::MakeAddr(C, 0);
831}
832
833LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
834 switch (E->getIdentType()) {
835 default:
836 return EmitUnsupportedLValue(E, "predefined expression");
837 case PredefinedExpr::Func:
838 case PredefinedExpr::Function:
839 case PredefinedExpr::PrettyFunction:
840 return EmitPredefinedFunctionName(E->getIdentType());
841 }
Anders Carlsson22742662007-07-21 05:21:51 +0000842}
843
Reid Spencer5f016e22007-07-11 17:01:13 +0000844LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000845 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000846 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Eli Friedman61d004a2009-06-06 19:09:26 +0000847 QualType IdxTy = E->getIdx()->getType();
848 bool IdxSigned = IdxTy->isSignedIntegerType();
849
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 // If the base is a vector type, then we are forming a vector element lvalue
851 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000852 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000853 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000854 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000855 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Eli Friedman61d004a2009-06-06 19:09:26 +0000856 Idx = Builder.CreateIntCast(Idx, llvm::Type::Int32Ty, IdxSigned, "vidx");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000857 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
858 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000859 }
860
Ted Kremenek23245122007-08-20 16:18:38 +0000861 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000862 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000863
Ted Kremenek23245122007-08-20 16:18:38 +0000864 // Extend or truncate the index type to 32 or 64-bits.
Reid Spencer5f016e22007-07-11 17:01:13 +0000865 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta7cabee52009-04-24 02:40:57 +0000866 if (IdxBitwidth != LLVMPointerWidth)
867 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
Reid Spencer5f016e22007-07-11 17:01:13 +0000868 IdxSigned, "idxprom");
869
Daniel Dunbar2a866252009-04-25 05:08:32 +0000870 // We know that the pointer points to a type of the correct size,
871 // unless the size is a VLA or Objective-C interface.
872 llvm::Value *Address = 0;
Anders Carlsson8b33c082008-12-21 00:11:23 +0000873 if (const VariableArrayType *VAT =
874 getContext().getAsVariableArrayType(E->getType())) {
875 llvm::Value *VLASize = VLASizeMap[VAT];
876
877 Idx = Builder.CreateMul(Idx, VLASize);
878
Anders Carlsson6183a992008-12-21 03:44:36 +0000879 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000880
881 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
882 Idx = Builder.CreateUDiv(Idx,
883 llvm::ConstantInt::get(Idx->getType(),
884 BaseTypeSize));
Daniel Dunbar2a866252009-04-25 05:08:32 +0000885 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
886 } else if (const ObjCInterfaceType *OIT =
887 dyn_cast<ObjCInterfaceType>(E->getType())) {
888 llvm::Value *InterfaceSize =
889 llvm::ConstantInt::get(Idx->getType(),
890 getContext().getTypeSize(OIT) / 8);
891
892 Idx = Builder.CreateMul(Idx, InterfaceSize);
893
894 llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
895 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
896 Idx, "arrayidx");
897 Address = Builder.CreateBitCast(Address, Base->getType());
898 } else {
899 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
Anders Carlsson8b33c082008-12-21 00:11:23 +0000900 }
901
Steve Naroff14108da2009-07-10 23:34:53 +0000902 QualType T = E->getBase()->getType()->getPointeeType();
903 assert(!T.isNull() &&
904 "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
905
Daniel Dunbar2a866252009-04-25 05:08:32 +0000906 LValue LV = LValue::MakeAddr(Address,
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000907 T.getCVRQualifiers(),
908 getContext().getObjCGCAttrKind(T));
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000909 if (getContext().getLangOptions().ObjC1 &&
910 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000911 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000912 return LV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000913}
914
Nate Begeman3b8d1162008-05-13 21:03:02 +0000915static
916llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
917 llvm::SmallVector<llvm::Constant *, 4> CElts;
918
919 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
920 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
921
922 return llvm::ConstantVector::get(&CElts[0], CElts.size());
923}
924
Chris Lattner349aaec2007-08-02 23:37:31 +0000925LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000926EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000927 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +0000928 LValue Base;
929
930 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +0000931 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +0000932 assert(E->getBase()->getType()->isVectorType());
933 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +0000934 } else {
935 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
936 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
937 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner73525de2009-02-16 21:11:58 +0000938 }
Chris Lattner349aaec2007-08-02 23:37:31 +0000939
Nate Begeman3b8d1162008-05-13 21:03:02 +0000940 // Encode the element access list into a vector of unsigned indices.
941 llvm::SmallVector<unsigned, 4> Indices;
942 E->getEncodedElementAccess(Indices);
943
944 if (Base.isSimple()) {
945 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000946 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000947 Base.getQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000948 }
949 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
950
951 llvm::Constant *BaseElts = Base.getExtVectorElts();
952 llvm::SmallVector<llvm::Constant *, 4> CElts;
953
954 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
955 if (isa<llvm::ConstantAggregateZero>(BaseElts))
956 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
957 else
958 CElts.push_back(BaseElts->getOperand(Indices[i]));
959 }
960 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000961 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000962 Base.getQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000963}
964
Devang Patelb9b00ad2007-10-23 20:28:39 +0000965LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000966 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000967 bool isIvar = false;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000968 bool isNonGC = false;
Devang Patel126a8562007-10-24 22:26:28 +0000969 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000970 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000971 unsigned CVRQualifiers=0;
972
Chris Lattner12f65f62007-12-02 18:52:07 +0000973 // 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 +0000974 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000975 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000976 const PointerType *PTy =
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000977 BaseExpr->getType()->getAsPointerType();
Devang Patelfe2419a2007-12-11 21:33:16 +0000978 if (PTy->getPointeeType()->isUnionType())
979 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000980 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000981 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
982 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +0000983 RValue RV = EmitObjCPropertyGet(BaseExpr);
984 BaseValue = RV.getAggregateAddr();
985 if (BaseExpr->getType()->isUnionType())
986 isUnion = true;
987 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000988 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +0000989 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000990 if (BaseLV.isObjCIvar())
991 isIvar = true;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000992 if (BaseLV.isNonGC())
993 isNonGC = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000994 // FIXME: this isn't right for bitfields.
995 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000996 if (BaseExpr->getType()->isUnionType())
997 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000998 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000999 }
Devang Patelb9b00ad2007-10-23 20:28:39 +00001000
Douglas Gregor86f19402008-12-20 23:49:58 +00001001 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
1002 // FIXME: Handle non-field member expressions
1003 assert(Field && "No code generation for non-field member references");
Chris Lattner1bd885e2009-02-16 22:25:49 +00001004 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
1005 CVRQualifiers);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +00001006 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +00001007 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +00001008 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +00001009}
Devang Patelb9b00ad2007-10-23 20:28:39 +00001010
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001011LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
1012 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001013 unsigned CVRQualifiers) {
Daniel Dunbarbb767732009-02-17 18:31:04 +00001014 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Mike Stumpf5408fe2009-05-16 07:57:57 +00001015 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
1016 // FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbarbb767732009-02-17 18:31:04 +00001017 const llvm::Type *FieldTy =
1018 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001019 const llvm::PointerType *BaseTy =
1020 cast<llvm::PointerType>(BaseValue->getType());
1021 unsigned AS = BaseTy->getAddressSpace();
1022 BaseValue = Builder.CreateBitCast(BaseValue,
1023 llvm::PointerType::get(FieldTy, AS),
1024 "tmp");
1025 llvm::Value *V = Builder.CreateGEP(BaseValue,
1026 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
1027 "tmp");
1028
1029 CodeGenTypes::BitFieldInfo bitFieldInfo =
1030 CGM.getTypes().getBitFieldInfo(Field);
1031 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
1032 Field->getType()->isSignedIntegerType(),
1033 Field->getType().getCVRQualifiers()|CVRQualifiers);
1034}
1035
Eli Friedman472778e2008-02-09 08:50:58 +00001036LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
1037 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +00001038 bool isUnion,
1039 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +00001040{
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001041 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001042 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +00001043
Fariborz Jahanian598d3f62009-02-03 19:03:09 +00001044 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +00001045 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +00001046
Devang Patelabad06c2007-10-26 19:42:18 +00001047 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +00001048 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +00001049 const llvm::Type *FieldTy =
1050 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +00001051 const llvm::PointerType * BaseTy =
1052 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +00001053 unsigned AS = BaseTy->getAddressSpace();
1054 V = Builder.CreateBitCast(V,
1055 llvm::PointerType::get(FieldTy, AS),
1056 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +00001057 }
Eli Friedman2be58612009-05-30 21:09:44 +00001058 if (Field->getType()->isReferenceType())
1059 V = Builder.CreateLoad(V, "tmp");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +00001060
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001061 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001062 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001063 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1064 QualType Ty = Field->getType();
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001065 attr = Ty.getObjCGCAttr();
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001066 if (attr != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001067 // __weak attribute on a field is ignored.
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001068 if (attr == QualType::Weak)
1069 attr = QualType::GCNone;
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001070 }
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001071 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001072 attr = QualType::Strong;
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001073 }
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001074 LValue LV =
1075 LValue::MakeAddr(V,
1076 Field->getType().getCVRQualifiers()|CVRQualifiers,
1077 attr);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +00001078 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +00001079}
1080
Chris Lattner75dfeda2009-03-18 18:28:57 +00001081LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman06e863f2008-05-13 23:18:27 +00001082 const llvm::Type *LTy = ConvertType(E->getType());
1083 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1084
1085 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +00001086 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +00001087
1088 if (E->getType()->isComplexType()) {
1089 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1090 } else if (hasAggregateLLVMType(E->getType())) {
1091 EmitAnyExpr(InitExpr, DeclPtr, false);
1092 } else {
1093 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1094 }
1095
1096 return Result;
1097}
1098
Daniel Dunbar90345582009-03-24 02:38:23 +00001099LValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator* E) {
1100 // We don't handle vectors yet.
1101 if (E->getType()->isVectorType())
1102 return EmitUnsupportedLValue(E, "conditional operator");
1103
1104 // ?: here should be an aggregate.
1105 assert((hasAggregateLLVMType(E->getType()) &&
1106 !E->getType()->isAnyComplexType()) &&
1107 "Unexpected conditional operator!");
1108
1109 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1110 EmitAggExpr(E, Temp, false);
1111
1112 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1113 getContext().getObjCGCAttrKind(E->getType()));
1114
1115}
1116
Chris Lattner75dfeda2009-03-18 18:28:57 +00001117/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1118/// generator in an lvalue context, then it must mean that we need the address
1119/// of an aggregate in order to access one of its fields. This can happen for
1120/// all the reasons that casts are permitted with aggregate result, including
1121/// noop aggregate casts, and cast from scalar to union.
1122LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
1123 // If this is an aggregate-to-aggregate cast, just use the input's address as
1124 // the lvalue.
1125 if (getContext().hasSameUnqualifiedType(E->getType(),
1126 E->getSubExpr()->getType()))
1127 return EmitLValue(E->getSubExpr());
1128
1129 // Otherwise, we must have a cast from scalar to union.
1130 assert(E->getType()->isUnionType() && "Expected scalar-to-union cast");
1131
1132 // Casts are only lvalues when the source and destination types are the same.
1133 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
Chris Lattner40f92922009-03-18 18:30:44 +00001134 EmitAnyExpr(E->getSubExpr(), Temp, false);
Chris Lattner75dfeda2009-03-18 18:28:57 +00001135
1136 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1137 getContext().getObjCGCAttrKind(E->getType()));
1138}
1139
Reid Spencer5f016e22007-07-11 17:01:13 +00001140//===--------------------------------------------------------------------===//
1141// Expression Emission
1142//===--------------------------------------------------------------------===//
1143
Chris Lattner7016a702007-08-20 22:37:10 +00001144
Reid Spencer5f016e22007-07-11 17:01:13 +00001145RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001146 // Builtins never have block type.
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001147 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +00001148 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001149
Anders Carlsson774e7c62009-04-03 22:50:24 +00001150 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1151 return EmitCXXMemberCallExpr(CE);
1152
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001153 const Decl *TargetDecl = 0;
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001154 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1155 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1156 TargetDecl = DRE->getDecl();
1157 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1158 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1159 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001160 }
1161 }
1162
Chris Lattner5db7ae52009-06-13 00:26:38 +00001163 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
Anders Carlsson0f294632009-05-27 04:18:27 +00001164 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
1165 return EmitCXXOperatorMemberCallExpr(CE, MD);
Anders Carlsson0f294632009-05-27 04:18:27 +00001166
Chris Lattner7f02f722007-08-24 05:35:26 +00001167 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Anders Carlsson98647712009-05-27 01:22:39 +00001168 return EmitCall(Callee, E->getCallee()->getType(),
1169 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattnerc5e940f2007-08-31 04:44:06 +00001170}
1171
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001172LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattner7a574cc2009-05-12 21:28:12 +00001173 // Comma expressions just emit their LHS then their RHS as an l-value.
1174 if (E->getOpcode() == BinaryOperator::Comma) {
1175 EmitAnyExpr(E->getLHS());
1176 return EmitLValue(E->getRHS());
1177 }
1178
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001179 // Can only get l-value for binary operator expressions which are a
1180 // simple assignment of aggregate type.
1181 if (E->getOpcode() != BinaryOperator::Assign)
1182 return EmitUnsupportedLValue(E, "binary l-value expression");
1183
1184 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1185 EmitAggExpr(E, Temp, false);
1186 // FIXME: Are these qualifiers correct?
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001187 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1188 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001189}
1190
Christopher Lamb22c940e2007-12-29 05:02:41 +00001191LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
Christopher Lamb22c940e2007-12-29 05:02:41 +00001192 RValue RV = EmitCallExpr(E);
Anders Carlsson48265682009-05-27 01:45:47 +00001193
1194 if (RV.isScalar()) {
1195 assert(E->getCallReturnType()->isReferenceType() &&
1196 "Can't have a scalar return unless the return type is a "
1197 "reference type!");
1198
1199 return LValue::MakeAddr(RV.getScalarVal(), E->getType().getCVRQualifiers(),
1200 getContext().getObjCGCAttrKind(E->getType()));
1201 }
1202
Eli Friedman1e692ac2008-06-13 23:01:12 +00001203 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001204 E->getType().getCVRQualifiers(),
1205 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lamb22c940e2007-12-29 05:02:41 +00001206}
1207
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001208LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1209 // FIXME: This shouldn't require another copy.
1210 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1211 EmitAggExpr(E, Temp, false);
1212 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1213}
1214
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001215LValue
1216CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1217 EmitLocalBlockVarDecl(*E->getVarDecl());
1218 return EmitDeclRefLValue(E);
1219}
1220
Anders Carlssonb58d0172009-05-30 23:23:33 +00001221LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
1222 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()), "tmp");
1223 EmitCXXConstructExpr(Temp, E);
1224 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1225}
1226
Anders Carlssone61c9e82009-05-30 23:30:54 +00001227LValue
1228CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
1229 LValue LV = EmitLValue(E->getSubExpr());
1230
Anders Carlsson543ac0c2009-05-31 00:34:10 +00001231 PushCXXTemporary(E->getTemporary(), LV.getAddress());
Anders Carlssone61c9e82009-05-30 23:30:54 +00001232
1233 return LV;
1234}
1235
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001236LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1237 // Can only get l-value for message expression returning aggregate type
1238 RValue RV = EmitObjCMessageExpr(E);
1239 // FIXME: can this be volatile?
1240 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001241 E->getType().getCVRQualifiers(),
1242 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001243}
1244
Daniel Dunbar2a031922009-04-22 05:08:15 +00001245llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001246 const ObjCIvarDecl *Ivar) {
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001247 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001248}
1249
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001250LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1251 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001252 const ObjCIvarDecl *Ivar,
1253 unsigned CVRQualifiers) {
Chris Lattner26f074b2009-04-17 17:44:48 +00001254 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001255 Ivar, CVRQualifiers);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001256}
1257
1258LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001259 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1260 llvm::Value *BaseValue = 0;
1261 const Expr *BaseExpr = E->getBase();
1262 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001263 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001264 if (E->isArrow()) {
1265 BaseValue = EmitScalarExpr(BaseExpr);
Steve Naroff14108da2009-07-10 23:34:53 +00001266 ObjectTy = BaseExpr->getType()->getPointeeType();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001267 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001268 } else {
1269 LValue BaseLV = EmitLValue(BaseExpr);
1270 // FIXME: this isn't right for bitfields.
1271 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001272 ObjectTy = BaseExpr->getType();
1273 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001274 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001275
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001276 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001277}
1278
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001279LValue
1280CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1281 // This is a special l-value that just issues sends when we load or
1282 // store through it.
1283 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1284}
1285
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001286LValue
1287CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1288 // This is a special l-value that just issues sends when we load or
1289 // store through it.
1290 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1291}
1292
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001293LValue
Chris Lattner65459942009-04-25 19:35:26 +00001294CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001295 return EmitUnsupportedLValue(E, "use of super");
1296}
1297
Chris Lattner65459942009-04-25 19:35:26 +00001298LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
1299
1300 // Can only get l-value for message expression returning aggregate type
1301 RValue RV = EmitAnyExprToTemp(E);
1302 // FIXME: can this be volatile?
1303 return LValue::MakeAddr(RV.getAggregateAddr(),
1304 E->getType().getCVRQualifiers(),
1305 getContext().getObjCGCAttrKind(E->getType()));
1306}
1307
1308
Anders Carlsson98647712009-05-27 01:22:39 +00001309RValue CodeGenFunction::EmitCall(llvm::Value *Callee, QualType CalleeType,
1310 CallExpr::const_arg_iterator ArgBeg,
1311 CallExpr::const_arg_iterator ArgEnd,
1312 const Decl *TargetDecl) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001313 // Get the actual function type. The callee type will always be a
1314 // pointer to function type or a block pointer type.
Anders Carlsson8ac67a72009-04-07 18:53:02 +00001315 assert(CalleeType->isFunctionPointerType() &&
1316 "Call must have function pointer type!");
1317
1318 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1319 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001320
1321 CallArgList Args;
Anders Carlsson782f3972009-04-08 23:13:16 +00001322 EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001323
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001324 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001325 Callee, Args, TargetDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001326}