blob: 346b6703d371ae7084294b6158c999133702b37f [file] [log] [blame]
Chris Lattnere47e4402007-06-01 18:02:12 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnere47e4402007-06-01 18:02:12 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
Chris Lattnerb6984c42007-06-20 04:44:43 +000015#include "CodeGenModule.h"
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbar89da6ad2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbarad319a72008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedmanf2442dc2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Chris Lattnere47e4402007-06-01 18:02:12 +000021using namespace clang;
22using namespace CodeGen;
23
Chris Lattnerd7f58862007-06-02 05:24:33 +000024//===--------------------------------------------------------------------===//
Chris Lattnerf0106d22007-06-02 19:33:17 +000025// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
Chris Lattnere9a64532007-06-22 21:44:33 +000028/// 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 Lattner47640222009-03-22 00:24:14 +000032 if (!Builder.isNamePreserving())
33 Name = "";
Owen Anderson9f98d372009-07-16 00:14:12 +000034 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
Chris Lattnere9a64532007-06-22 21:44:33 +000035}
Chris Lattner8394d792007-06-05 20:53:16 +000036
37/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
38/// expression and compare the result against zero, returning an Int1Ty value.
Chris Lattner23b7eb62007-06-15 23:05:46 +000039llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner268fcce2007-08-26 16:46:58 +000040 QualType BoolTy = getContext().BoolTy;
Chris Lattnerf3bc75a2008-04-04 16:54:41 +000041 if (!E->getType()->isAnyComplexType())
Chris Lattner268fcce2007-08-26 16:46:58 +000042 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner8394d792007-06-05 20:53:16 +000043
Chris Lattner268fcce2007-08-26 16:46:58 +000044 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattnerf0106d22007-06-02 19:33:17 +000045}
46
Chris Lattner4647a212007-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 Stumpec3cbfe2009-05-26 22:03:21 +000052 bool isAggLocVolatile, bool IgnoreResult) {
Chris Lattner4647a212007-08-31 22:49:20 +000053 if (!hasAggregateLLVMType(E->getType()))
Mike Stumpdf0fe272009-05-29 15:46:01 +000054 return RValue::get(EmitScalarExpr(E, IgnoreResult));
Chris Lattnerf3bc75a2008-04-04 16:54:41 +000055 else if (E->getType()->isAnyComplexType())
Mike Stumpdf0fe272009-05-29 15:46:01 +000056 return RValue::getComplex(EmitComplexExpr(E, false, false,
57 IgnoreResult, IgnoreResult));
Chris Lattner4647a212007-08-31 22:49:20 +000058
Mike Stumpec3cbfe2009-05-26 22:03:21 +000059 EmitAggExpr(E, AggLoc, isAggLocVolatile, IgnoreResult);
Mike Stump23abd462009-05-23 21:40:07 +000060 return RValue::getAggregate(AggLoc, isAggLocVolatile);
Chris Lattner4647a212007-08-31 22:49:20 +000061}
62
Daniel Dunbar41cf9de2008-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 Carlsson6f5a0152009-05-20 00:24:07 +000074RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
75 QualType DestType) {
Eli Friedmanc21cb442009-05-20 02:31:19 +000076 RValue Val;
77 if (E->isLvalue(getContext()) == Expr::LV_Valid) {
Anders Carlsson7d4c0832009-05-20 00:36:58 +000078 // Emit the expr as an lvalue.
79 LValue LV = EmitLValue(E);
Eli Friedmanc21cb442009-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 Carlsson7d4c0832009-05-20 00:36:58 +000085 }
Eli Friedmanc21cb442009-05-20 02:31:19 +000086
87 if (Val.isAggregate()) {
88 Val = RValue::get(Val.getAggregateAddr());
89 } else {
Anders Carlsson02bb7f02009-05-20 01:35:03 +000090 // Create a temporary variable that we can bind the reference to.
Anders Carlsson145eae52009-05-20 01:03:17 +000091 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()),
92 "reftmp");
Eli Friedmanc21cb442009-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 Carlsson145eae52009-05-20 01:03:17 +000098 }
Eli Friedmanc21cb442009-05-20 02:31:19 +000099
100 return Val;
Anders Carlsson6f5a0152009-05-20 00:24:07 +0000101}
102
103
Dan Gohman75d69da2008-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 Lattner4647a212007-08-31 22:49:20 +0000114
Chris Lattnera45c5af2007-06-02 19:47:04 +0000115//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +0000116// LValue Expression Emission
Chris Lattnera45c5af2007-06-02 19:47:04 +0000117//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +0000118
Daniel Dunbarc79407f2009-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 Dunbar8429dbc2009-01-09 20:09:28 +0000123 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
Owen Anderson170229f2009-07-14 23:10:40 +0000124 llvm::Value *U = VMContext.getUndef(EltTy);
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000125 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbarc79407f2009-02-05 07:09:07 +0000126 } else if (hasAggregateLLVMType(Ty)) {
Owen Anderson170229f2009-07-14 23:10:40 +0000127 const llvm::Type *LTy = VMContext.getPointerTypeUnqual(ConvertType(Ty));
128 return RValue::getAggregate(VMContext.getUndef(LTy));
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000129 } else {
Owen Anderson170229f2009-07-14 23:10:40 +0000130 return RValue::get(VMContext.getUndef(ConvertType(Ty)));
Daniel Dunbar8429dbc2009-01-09 20:09:28 +0000131 }
Daniel Dunbarbb197e42009-01-09 16:50:52 +0000132}
133
Daniel Dunbarc79407f2009-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 Dunbarf2e69882008-08-25 20:45:57 +0000140LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
141 const char *Name) {
142 ErrorUnsupported(E, Name);
Owen Anderson170229f2009-07-14 23:10:40 +0000143 llvm::Type *Ty = VMContext.getPointerTypeUnqual(ConvertType(E->getType()));
144 return LValue::MakeAddr(VMContext.getUndef(Ty),
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000145 E->getType().getCVRQualifiers(),
146 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000147}
148
Chris Lattner8394d792007-06-05 20:53:16 +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///
Chris Lattnerd7f58862007-06-02 05:24:33 +0000165LValue CodeGenFunction::EmitLValue(const Expr *E) {
166 switch (E->getStmtClass()) {
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000167 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattnerd7f58862007-06-02 05:24:33 +0000168
Daniel Dunbar8cde00a2008-09-04 03:20:13 +0000169 case Expr::BinaryOperatorClass:
170 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor993603d2008-11-14 16:09:21 +0000171 case Expr::CallExprClass:
172 case Expr::CXXOperatorCallExprClass:
173 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +0000174 case Expr::VAArgExprClass:
175 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregorc7acfdf2009-01-06 05:10:23 +0000176 case Expr::DeclRefExprClass:
177 case Expr::QualifiedDeclRefExprClass:
178 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Chris Lattner946aa312007-06-05 03:59:43 +0000179 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner6307f192008-08-10 01:53:14 +0000180 case Expr::PredefinedExprClass:
181 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4347e3692007-06-06 04:54:52 +0000182 case Expr::StringLiteralClass:
183 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +0000184 case Expr::ObjCEncodeExprClass:
185 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner4bd55962008-03-30 23:03:07 +0000186
Mike Stump1db7d042009-02-28 09:07:16 +0000187 case Expr::BlockDeclRefExprClass:
188 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
189
Argyrios Kyrtzidis07052352008-09-10 02:36:38 +0000190 case Expr::CXXConditionDeclExprClass:
191 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
Anders Carlsson3be22e22009-05-30 23:23:33 +0000192 case Expr::CXXTemporaryObjectExprClass:
193 case Expr::CXXConstructExprClass:
Anders Carlssonfd2af0c2009-05-30 23:30:54 +0000194 return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
195 case Expr::CXXBindTemporaryExprClass:
196 return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
197
Daniel Dunbarc8317a42008-08-23 10:51:21 +0000198 case Expr::ObjCMessageExprClass:
199 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner4bd55962008-03-30 23:03:07 +0000200 case Expr::ObjCIvarRefExprClass:
201 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000202 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000203 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000204 case Expr::ObjCKVCRefExprClass:
205 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregor8ea1f532008-11-04 14:56:14 +0000206 case Expr::ObjCSuperExprClass:
Chris Lattnera4185c52009-04-25 19:35:26 +0000207 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregor8ea1f532008-11-04 14:56:14 +0000208
Chris Lattnera4185c52009-04-25 19:35:26 +0000209 case Expr::StmtExprClass:
210 return EmitStmtExprLValue(cast<StmtExpr>(E));
Chris Lattner8394d792007-06-05 20:53:16 +0000211 case Expr::UnaryOperatorClass:
212 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000213 case Expr::ArraySubscriptExprClass:
214 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemance4d7fc2008-04-18 23:10:10 +0000215 case Expr::ExtVectorElementExprClass:
216 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patel30efa2e2007-10-23 20:28:39 +0000217 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman9fd8b682008-05-13 23:18:27 +0000218 case Expr::CompoundLiteralExprClass:
219 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +0000220 case Expr::ConditionalOperatorClass:
221 return EmitConditionalOperator(cast<ConditionalOperator>(E));
Chris Lattner053441f2008-12-12 05:35:08 +0000222 case Expr::ChooseExprClass:
Eli Friedmane0a5b8b2009-03-04 05:52:32 +0000223 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattner63d06ab2009-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 Lattner28bcf1a2009-03-18 18:28:57 +0000231 return EmitCastLValue(cast<CastExpr>(E));
Chris Lattnerd7f58862007-06-02 05:24:33 +0000232 }
233}
234
Daniel Dunbar1d425462009-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 Carlsson29a1be32009-05-19 19:36:19 +0000239 // Bool can have different representation in memory than in registers.
Daniel Dunbar1d425462009-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 Carlsson83709642009-05-19 18:50:41 +0000248 bool Volatile, QualType Ty) {
Anders Carlsson29a1be32009-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 =
Owen Anderson170229f2009-07-14 23:10:40 +0000256 VMContext.getPointerType(SrcTy, DstPtr->getAddressSpace());
Anders Carlsson29a1be32009-05-19 19:36:19 +0000257 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
258 }
Daniel Dunbar1d425462009-02-10 00:57:50 +0000259 }
Daniel Dunbar1d425462009-02-10 00:57:50 +0000260 Builder.CreateStore(Value, Addr, Volatile);
261}
262
Chris Lattner8394d792007-06-05 20:53:16 +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.
Chris Lattner9369a562007-06-29 16:31:29 +0000266RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000267 if (LV.isObjCWeak()) {
Fariborz Jahanianf5125d12008-11-18 21:45:40 +0000268 // load of a __weak object.
269 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian83f45b552008-11-18 22:37:34 +0000270 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanianf5125d12008-11-18 21:45:40 +0000271 AddrWeakObj);
272 return RValue::get(read_weak);
273 }
274
Chris Lattner08c4b9f2007-07-10 21:17:59 +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 Dunbar1d425462009-02-10 00:57:50 +0000281 if (EltTy->isSingleValueType())
282 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
283 ExprType));
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000284
Chris Lattner6278e6a2007-08-11 00:04:45 +0000285 assert(ExprType->isFunctionType() && "Unknown scalar value");
286 return RValue::get(Ptr);
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000287 }
Chris Lattner09153c02007-06-22 18:48:09 +0000288
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000289 if (LV.isVectorElt()) {
Eli Friedman327944b2008-06-13 23:01:12 +0000290 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
291 LV.isVolatileQualified(), "tmp");
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000292 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
293 "vecext"));
294 }
Chris Lattner73ab9b32007-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 Begemance4d7fc2008-04-18 23:10:10 +0000298 if (LV.isExtVectorElt())
299 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000300
301 if (LV.isBitfield())
302 return EmitLoadOfBitfieldLValue(LV, ExprType);
303
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000304 if (LV.isPropertyRef())
305 return EmitLoadOfPropertyRefLValue(LV, ExprType);
306
Chris Lattner6c7ce102009-02-16 21:11:58 +0000307 assert(LV.isKVCRef() && "Unknown LValue type!");
308 return EmitLoadOfKVCRefLValue(LV, ExprType);
Chris Lattner8394d792007-06-05 20:53:16 +0000309}
310
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000311RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
312 QualType ExprType) {
Daniel Dunbaread7c912008-08-06 05:08:45 +0000313 unsigned StartBit = LV.getBitfieldStartBit();
314 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000315 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbaread7c912008-08-06 05:08:45 +0000316
317 const llvm::Type *EltTy =
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000318 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbaread7c912008-08-06 05:08:45 +0000319 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000320
Daniel Dunbaread7c912008-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 Dunbarf7fb7502008-11-13 02:20:34 +0000330 if (StartBit)
Owen Anderson170229f2009-07-14 23:10:40 +0000331 Val = Builder.CreateLShr(Val, VMContext.getConstantInt(EltTy, StartBit),
Daniel Dunbarf7fb7502008-11-13 02:20:34 +0000332 "bf.lo");
Daniel Dunbaread7c912008-08-06 05:08:45 +0000333
334 // Mask off unused bits.
335 llvm::Constant *LowMask =
Owen Anderson170229f2009-07-14 23:10:40 +0000336 VMContext.getConstantInt(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000337 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 =
Owen Anderson170229f2009-07-14 23:10:40 +0000343 Builder.CreateGEP(Ptr, VMContext.getConstantInt(llvm::Type::Int32Ty, 1),
Daniel Dunbaread7c912008-08-06 05:08:45 +0000344 "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 =
Owen Anderson170229f2009-07-14 23:10:40 +0000351 VMContext.getConstantInt(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000352 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000353
Daniel Dunbaread7c912008-08-06 05:08:45 +0000354 // Shift to proper location and or in to bitfield value.
355 HighVal = Builder.CreateShl(HighVal,
Owen Anderson170229f2009-07-14 23:10:40 +0000356 VMContext.getConstantInt(EltTy, LowBits));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000357 Val = Builder.CreateOr(Val, HighVal, "bf.val");
358 }
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000359
Daniel Dunbaread7c912008-08-06 05:08:45 +0000360 // Sign extend if necessary.
361 if (LV.isBitfieldSigned()) {
Owen Anderson170229f2009-07-14 23:10:40 +0000362 llvm::Value *ExtraBits = VMContext.getConstantInt(EltTy,
Daniel Dunbaread7c912008-08-06 05:08:45 +0000363 EltTySize - BitfieldSize);
364 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
365 ExtraBits, "bf.val.sext");
366 }
Eli Friedmanf2442dc2008-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 Dunbaread7c912008-08-06 05:08:45 +0000370 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000371
Daniel Dunbaread7c912008-08-06 05:08:45 +0000372 return RValue::get(Val);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000373}
374
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000375RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
376 QualType ExprType) {
377 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
378}
379
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000380RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
381 QualType ExprType) {
382 return EmitObjCPropertyGet(LV.getKVCRefExpr());
383}
384
Nate Begemanb699c9b2009-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 Begemance4d7fc2008-04-18 23:10:10 +0000387RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
388 QualType ExprType) {
Eli Friedman327944b2008-06-13 23:01:12 +0000389 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
390 LV.isVolatileQualified(), "tmp");
Chris Lattner40ff7012007-08-03 16:18:34 +0000391
Nate Begemanf322eab2008-05-09 06:41:27 +0000392 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner40ff7012007-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 Lattner8eab8ff2007-08-10 17:10:08 +0000396 const VectorType *ExprVT = ExprType->getAsVectorType();
397 if (!ExprVT) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000398 unsigned InIdx = getAccessedFieldNo(0, Elts);
Owen Anderson170229f2009-07-14 23:10:40 +0000399 llvm::Value *Elt = VMContext.getConstantInt(llvm::Type::Int32Ty, InIdx);
Chris Lattner40ff7012007-08-03 16:18:34 +0000400 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
401 }
Nate Begemanb699c9b2009-01-18 06:42:49 +0000402
403 // Always use shuffle vector to try to retain the original program structure
Chris Lattner8eab8ff2007-08-10 17:10:08 +0000404 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner40ff7012007-08-03 16:18:34 +0000405
Nate Begemanb699c9b2009-01-18 06:42:49 +0000406 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner40ff7012007-08-03 16:18:34 +0000407 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000408 unsigned InIdx = getAccessedFieldNo(i, Elts);
Owen Anderson170229f2009-07-14 23:10:40 +0000409 Mask.push_back(VMContext.getConstantInt(llvm::Type::Int32Ty, InIdx));
Chris Lattner40ff7012007-08-03 16:18:34 +0000410 }
411
Owen Anderson170229f2009-07-14 23:10:40 +0000412 llvm::Value *MaskV = VMContext.getConstantVector(&Mask[0], Mask.size());
Nate Begemanb699c9b2009-01-18 06:42:49 +0000413 Vec = Builder.CreateShuffleVector(Vec,
Owen Anderson170229f2009-07-14 23:10:40 +0000414 VMContext.getUndef(Vec->getType()),
Nate Begemanb699c9b2009-01-18 06:42:49 +0000415 MaskV, "tmp");
416 return RValue::get(Vec);
Chris Lattner40ff7012007-08-03 16:18:34 +0000417}
418
419
Chris Lattner9369a562007-06-29 16:31:29 +0000420
Chris Lattner8394d792007-06-05 20:53:16 +0000421/// 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 Lattner41d480e2007-08-03 16:28:33 +0000426 if (!Dst.isSimple()) {
427 if (Dst.isVectorElt()) {
428 // Read/modify/write the vector, inserting the new element.
Eli Friedman327944b2008-06-13 23:01:12 +0000429 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
430 Dst.isVolatileQualified(), "tmp");
Chris Lattner4647a212007-08-31 22:49:20 +0000431 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner41d480e2007-08-03 16:28:33 +0000432 Dst.getVectorIdx(), "vecins");
Eli Friedman327944b2008-06-13 23:01:12 +0000433 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner41d480e2007-08-03 16:28:33 +0000434 return;
435 }
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000436
Nate Begemance4d7fc2008-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 Venancio09af71c2008-01-22 22:36:45 +0000441
442 if (Dst.isBitfield())
443 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
444
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000445 if (Dst.isPropertyRef())
446 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
447
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000448 if (Dst.isKVCRef())
449 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
450
Lauro Ramos Venanciodb449042008-01-22 22:38:35 +0000451 assert(0 && "Unknown LValue type");
Chris Lattner41d480e2007-08-03 16:28:33 +0000452 }
Chris Lattner8394d792007-06-05 20:53:16 +0000453
Fariborz Jahanian10bec102009-02-21 00:30:43 +0000454 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000455 // load of a __weak object.
456 llvm::Value *LvalueDst = Dst.getAddress();
457 llvm::Value *src = Src.getScalarVal();
Mike Stumpca5ae662009-04-14 00:57:29 +0000458 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000459 return;
460 }
461
Fariborz Jahanian10bec102009-02-21 00:30:43 +0000462 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000463 // load of a __strong object.
464 llvm::Value *LvalueDst = Dst.getAddress();
465 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian3114e942009-02-19 18:29:24 +0000466#if 0
Mike Stump18bb9282009-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 Jahanian75686a52008-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 Jahanian3114e942009-02-19 18:29:24 +0000475#endif
Fariborz Jahanian32ff7ae2009-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 Jahanian50a12702008-11-19 17:34:06 +0000480 return;
481 }
482
Chris Lattner6278e6a2007-08-11 00:04:45 +0000483 assert(Src.isScalar() && "Can't emit an agg store with this method");
Anders Carlsson83709642009-05-19 18:50:41 +0000484 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
485 Dst.isVolatileQualified(), Ty);
Chris Lattner8394d792007-06-05 20:53:16 +0000486}
487
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000488void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000489 QualType Ty,
490 llvm::Value **Result) {
Daniel Dunbaread7c912008-08-06 05:08:45 +0000491 unsigned StartBit = Dst.getBitfieldStartBit();
492 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000493 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000494
Daniel Dunbaread7c912008-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 Dunbar9b1335e2008-11-19 09:36:46 +0000501 llvm::Value *SrcVal = Src.getScalarVal();
502 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbaread7c912008-08-06 05:08:45 +0000503 llvm::Constant *Mask =
Owen Anderson170229f2009-07-14 23:10:40 +0000504 VMContext.getConstantInt(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000505 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000506
Daniel Dunbar9b1335e2008-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);
Owen Anderson170229f2009-07-14 23:10:40 +0000517 llvm::Value *ExtraBits = VMContext.getConstantInt(SrcTy,
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000518 SrcTySize - BitfieldSize);
519 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
520 ExtraBits, "bf.reload.sext");
521 }
522
523 *Result = SrcTrunc;
524 }
525
Daniel Dunbaread7c912008-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 Friedmanf2442dc2008-05-17 20:03:47 +0000532
Daniel Dunbaread7c912008-08-06 05:08:45 +0000533 // Compute the mask for zero-ing the low part of this bitfield.
534 llvm::Constant *InvMask =
Owen Anderson170229f2009-07-14 23:10:40 +0000535 VMContext.getConstantInt(~llvm::APInt::getBitsSet(EltTySize, StartBit,
Daniel Dunbaread7c912008-08-06 05:08:45 +0000536 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 =
Owen Anderson170229f2009-07-14 23:10:40 +0000542 Builder.CreateShl(NewVal, VMContext.getConstantInt(EltTy, StartBit),
Daniel Dunbaread7c912008-08-06 05:08:45 +0000543 "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 Friedmanf2442dc2008-05-17 20:03:47 +0000549
Daniel Dunbaread7c912008-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 =
Owen Anderson170229f2009-07-14 23:10:40 +0000554 Builder.CreateGEP(Ptr, VMContext.getConstantInt(llvm::Type::Int32Ty, 1),
Daniel Dunbaread7c912008-08-06 05:08:45 +0000555 "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 =
Owen Anderson170229f2009-07-14 23:10:40 +0000562 VMContext.getConstantInt(~llvm::APInt::getLowBitsSet(EltTySize,
563 HighBits));
Daniel Dunbaread7c912008-08-06 05:08:45 +0000564
565 // Compute the new high part as
566 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
567 // where the high bits of NewVal have already been cleared and the
568 // shift stripping the low bits.
569 llvm::Value *NewHighVal =
Owen Anderson170229f2009-07-14 23:10:40 +0000570 Builder.CreateLShr(NewVal, VMContext.getConstantInt(EltTy, LowBits),
Daniel Dunbaread7c912008-08-06 05:08:45 +0000571 "bf.value.high");
572 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
573 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
574
575 // Write back.
576 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
577 }
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000578}
579
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000580void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
581 LValue Dst,
582 QualType Ty) {
583 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
584}
585
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000586void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
587 LValue Dst,
588 QualType Ty) {
589 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
590}
591
Nate Begemance4d7fc2008-04-18 23:10:10 +0000592void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
593 LValue Dst,
594 QualType Ty) {
Chris Lattner41d480e2007-08-03 16:28:33 +0000595 // This access turns into a read/modify/write of the vector. Load the input
596 // value now.
Eli Friedman327944b2008-06-13 23:01:12 +0000597 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
598 Dst.isVolatileQualified(), "tmp");
Nate Begemanf322eab2008-05-09 06:41:27 +0000599 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner41d480e2007-08-03 16:28:33 +0000600
Chris Lattner4647a212007-08-31 22:49:20 +0000601 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner41d480e2007-08-03 16:28:33 +0000602
Chris Lattner3a44aa72007-08-03 16:37:04 +0000603 if (const VectorType *VTy = Ty->getAsVectorType()) {
604 unsigned NumSrcElts = VTy->getNumElements();
Nate Begemanb699c9b2009-01-18 06:42:49 +0000605 unsigned NumDstElts =
606 cast<llvm::VectorType>(Vec->getType())->getNumElements();
607 if (NumDstElts == NumSrcElts) {
608 // Use shuffle vector is the src and destination are the same number
Nate Begemanea12f6e2009-06-26 21:12:50 +0000609 // of elements and restore the vector mask since it is on the side
610 // it will be stored.
611 llvm::SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
Nate Begemanb699c9b2009-01-18 06:42:49 +0000612 for (unsigned i = 0; i != NumSrcElts; ++i) {
613 unsigned InIdx = getAccessedFieldNo(i, Elts);
Owen Anderson170229f2009-07-14 23:10:40 +0000614 Mask[InIdx] = VMContext.getConstantInt(llvm::Type::Int32Ty, i);
Nate Begemanb699c9b2009-01-18 06:42:49 +0000615 }
616
Owen Anderson170229f2009-07-14 23:10:40 +0000617 llvm::Value *MaskV = VMContext.getConstantVector(&Mask[0], Mask.size());
Nate Begemanb699c9b2009-01-18 06:42:49 +0000618 Vec = Builder.CreateShuffleVector(SrcVal,
Owen Anderson170229f2009-07-14 23:10:40 +0000619 VMContext.getUndef(Vec->getType()),
Nate Begemanb699c9b2009-01-18 06:42:49 +0000620 MaskV, "tmp");
621 }
622 else if (NumDstElts > NumSrcElts) {
623 // Extended the source vector to the same length and then shuffle it
624 // into the destination.
625 // FIXME: since we're shuffling with undef, can we just use the indices
626 // into that? This could be simpler.
627 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
628 unsigned i;
629 for (i = 0; i != NumSrcElts; ++i)
Owen Anderson170229f2009-07-14 23:10:40 +0000630 ExtMask.push_back(VMContext.getConstantInt(llvm::Type::Int32Ty, i));
Nate Begemanb699c9b2009-01-18 06:42:49 +0000631 for (; i != NumDstElts; ++i)
Owen Anderson170229f2009-07-14 23:10:40 +0000632 ExtMask.push_back(VMContext.getUndef(llvm::Type::Int32Ty));
633 llvm::Value *ExtMaskV = VMContext.getConstantVector(&ExtMask[0],
Nate Begemanb699c9b2009-01-18 06:42:49 +0000634 ExtMask.size());
Daniel Dunbar3d926cb2009-02-17 18:31:04 +0000635 llvm::Value *ExtSrcVal =
636 Builder.CreateShuffleVector(SrcVal,
Owen Anderson170229f2009-07-14 23:10:40 +0000637 VMContext.getUndef(SrcVal->getType()),
Daniel Dunbar3d926cb2009-02-17 18:31:04 +0000638 ExtMaskV, "tmp");
Nate Begemanb699c9b2009-01-18 06:42:49 +0000639 // build identity
640 llvm::SmallVector<llvm::Constant*, 4> Mask;
641 for (unsigned i = 0; i != NumDstElts; ++i) {
Owen Anderson170229f2009-07-14 23:10:40 +0000642 Mask.push_back(VMContext.getConstantInt(llvm::Type::Int32Ty, i));
Nate Begemanb699c9b2009-01-18 06:42:49 +0000643 }
644 // modify when what gets shuffled in
645 for (unsigned i = 0; i != NumSrcElts; ++i) {
646 unsigned Idx = getAccessedFieldNo(i, Elts);
Owen Anderson170229f2009-07-14 23:10:40 +0000647 Mask[Idx] = VMContext.getConstantInt(llvm::Type::Int32Ty, i+NumDstElts);
Nate Begemanb699c9b2009-01-18 06:42:49 +0000648 }
Owen Anderson170229f2009-07-14 23:10:40 +0000649 llvm::Value *MaskV = VMContext.getConstantVector(&Mask[0], Mask.size());
Nate Begemanb699c9b2009-01-18 06:42:49 +0000650 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
651 }
652 else {
653 // We should never shorten the vector
654 assert(0 && "unexpected shorten vector length");
Chris Lattner3a44aa72007-08-03 16:37:04 +0000655 }
656 } else {
657 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman75d69da2008-05-22 00:50:06 +0000658 unsigned InIdx = getAccessedFieldNo(0, Elts);
Owen Anderson170229f2009-07-14 23:10:40 +0000659 llvm::Value *Elt = VMContext.getConstantInt(llvm::Type::Int32Ty, InIdx);
Chris Lattner41d480e2007-08-03 16:28:33 +0000660 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner41d480e2007-08-03 16:28:33 +0000661 }
662
Eli Friedman327944b2008-06-13 23:01:12 +0000663 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner41d480e2007-08-03 16:28:33 +0000664}
665
Chris Lattnerd7f58862007-06-02 05:24:33 +0000666LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff08899ff2008-04-15 22:42:06 +0000667 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
668
Chris Lattner5696e7b2008-06-17 18:05:57 +0000669 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
670 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000671 LValue LV;
Douglas Gregor78bd61f2009-06-18 16:11:24 +0000672 bool NonGCable = VD->hasLocalStorage() &&
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000673 !VD->hasAttr<BlocksAttr>();
Daniel Dunbar0ca16602009-04-14 02:25:56 +0000674 if (VD->hasExternalStorage()) {
Anders Carlsson2d228ce2009-05-19 20:40:02 +0000675 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
676 if (VD->getType()->isReferenceType())
677 V = Builder.CreateLoad(V, "tmp");
678 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000679 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000680 }
Lauro Ramos Venanciobada8d42008-02-16 22:30:38 +0000681 else {
Steve Naroff08899ff2008-04-15 22:42:06 +0000682 llvm::Value *V = LocalDeclMap[VD];
Mike Stump1db7d042009-02-28 09:07:16 +0000683 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanianc86fb5e2009-02-20 01:14:43 +0000684 // local variables do not get their gc attribute set.
685 QualType::GCAttrTypes attr = QualType::GCNone;
686 // local static?
Fariborz Jahanian75512572009-05-27 19:48:48 +0000687 if (!NonGCable)
Fariborz Jahanianc86fb5e2009-02-20 01:14:43 +0000688 attr = getContext().getObjCGCAttrKind(E->getType());
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000689 if (VD->hasAttr<BlocksAttr>()) {
Mike Stump97d01d52009-03-04 03:23:46 +0000690 bool needsCopyDispose = BlockRequiresCopying(VD->getType());
691 const llvm::Type *PtrStructTy = V->getType();
692 const llvm::Type *Ty = PtrStructTy;
Owen Anderson170229f2009-07-14 23:10:40 +0000693 Ty = VMContext.getPointerType(Ty, 0);
Mike Stump97d01d52009-03-04 03:23:46 +0000694 V = Builder.CreateStructGEP(V, 1, "forwarding");
695 V = Builder.CreateBitCast(V, Ty);
696 V = Builder.CreateLoad(V, false);
697 V = Builder.CreateBitCast(V, PtrStructTy);
698 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
699 }
Anders Carlsson2d228ce2009-05-19 20:40:02 +0000700 if (VD->getType()->isReferenceType())
701 V = Builder.CreateLoad(V, "tmp");
Fariborz Jahanianc86fb5e2009-02-20 01:14:43 +0000702 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venanciobada8d42008-02-16 22:30:38 +0000703 }
Fariborz Jahanian75512572009-05-27 19:48:48 +0000704 LValue::SetObjCNonGC(LV, NonGCable);
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000705 return LV;
Steve Naroff08899ff2008-04-15 22:42:06 +0000706 } else if (VD && VD->isFileVarDecl()) {
Anders Carlsson2d228ce2009-05-19 20:40:02 +0000707 llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
708 if (VD->getType()->isReferenceType())
709 V = Builder.CreateLoad(V, "tmp");
710 LValue LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000711 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian32ff7ae2009-05-04 23:27:20 +0000712 if (LV.isObjCStrong())
713 LV.SetGlobalObjCRef(LV, true);
Fariborz Jahanian406b1172008-11-18 20:18:11 +0000714 return LV;
Steve Naroff08899ff2008-04-15 22:42:06 +0000715 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Eli Friedmane32c0212009-06-01 10:04:20 +0000716 llvm::Value* V = CGM.GetAddrOfFunction(GlobalDecl(FD));
717 if (!FD->hasPrototype()) {
718 if (const FunctionProtoType *Proto =
719 FD->getType()->getAsFunctionProtoType()) {
720 // Ugly case: for a K&R-style definition, the type of the definition
721 // isn't the same as the type of a use. Correct for this with a
722 // bitcast.
723 QualType NoProtoType =
724 getContext().getFunctionNoProtoType(Proto->getResultType());
725 NoProtoType = getContext().getPointerType(NoProtoType);
726 V = Builder.CreateBitCast(V, ConvertType(NoProtoType), "tmp");
727 }
728 }
729 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000730 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattnerd7f58862007-06-02 05:24:33 +0000731 }
Chris Lattner5696e7b2008-06-17 18:05:57 +0000732 else if (const ImplicitParamDecl *IPD =
733 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
734 llvm::Value *V = LocalDeclMap[IPD];
735 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000736 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
737 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner5696e7b2008-06-17 18:05:57 +0000738 }
Chris Lattnerd7f58862007-06-02 05:24:33 +0000739 assert(0 && "Unimp declref");
Chris Lattner793d10c2007-09-16 19:23:47 +0000740 //an invalid LValue, but the assert will
741 //ensure that this point is never reached.
742 return LValue();
Chris Lattnerd7f58862007-06-02 05:24:33 +0000743}
Chris Lattnere47e4402007-06-01 18:02:12 +0000744
Mike Stump1db7d042009-02-28 09:07:16 +0000745LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
Daniel Dunbar223db1c2009-05-23 02:49:02 +0000746 return LValue::MakeAddr(GetAddrOfBlockDecl(E),
747 E->getType().getCVRQualifiers(),
748 getContext().getObjCGCAttrKind(E->getType()));
Mike Stump1db7d042009-02-28 09:07:16 +0000749}
750
Chris Lattner8394d792007-06-05 20:53:16 +0000751LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
752 // __extension__ doesn't affect lvalue-ness.
753 if (E->getOpcode() == UnaryOperator::Extension)
754 return EmitLValue(E->getSubExpr());
755
Chris Lattner0f398c42008-07-26 22:37:01 +0000756 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner595db862007-10-30 22:53:42 +0000757 switch (E->getOpcode()) {
758 default: assert(0 && "Unknown unary operator lvalue!");
759 case UnaryOperator::Deref:
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000760 {
Steve Naroff7cae42b2009-07-10 23:34:53 +0000761 QualType T = E->getSubExpr()->getType()->getPointeeType();
762 assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
763
Fariborz Jahanian392124c2009-02-23 18:59:50 +0000764 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Steve Naroff7cae42b2009-07-10 23:34:53 +0000765 T.getCVRQualifiers(),
Fariborz Jahanian392124c2009-02-23 18:59:50 +0000766 getContext().getObjCGCAttrKind(T));
767 // We should not generate __weak write barrier on indirect reference
768 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
769 // But, we continue to generate __strong write barrier on indirect write
770 // into a pointer to object.
771 if (getContext().getLangOptions().ObjC1 &&
772 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
773 LV.isObjCWeak())
Fariborz Jahanianc6d98002009-06-01 21:29:32 +0000774 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahanian392124c2009-02-23 18:59:50 +0000775 return LV;
Fariborz Jahanian0f466c72009-02-19 23:36:06 +0000776 }
Chris Lattner595db862007-10-30 22:53:42 +0000777 case UnaryOperator::Real:
778 case UnaryOperator::Imag:
779 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner3e593cd2008-03-19 05:19:41 +0000780 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
781 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattner574dee62008-07-26 22:17:49 +0000782 Idx, "idx"),
783 ExprTy.getCVRQualifiers());
Chris Lattner595db862007-10-30 22:53:42 +0000784 }
Chris Lattner8394d792007-06-05 20:53:16 +0000785}
786
Chris Lattner4347e3692007-06-06 04:54:52 +0000787LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbarc4baa062008-08-13 23:20:05 +0000788 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4347e3692007-06-06 04:54:52 +0000789}
790
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +0000791LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
792 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
793}
794
795
Daniel Dunbarb3517472008-10-17 21:58:32 +0000796LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson625bfc82007-07-21 05:21:51 +0000797 std::string GlobalVarName;
Daniel Dunbarb3517472008-10-17 21:58:32 +0000798
799 switch (Type) {
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +0000800 default:
801 assert(0 && "Invalid type");
802 case PredefinedExpr::Func:
803 GlobalVarName = "__func__.";
804 break;
805 case PredefinedExpr::Function:
806 GlobalVarName = "__FUNCTION__.";
807 break;
808 case PredefinedExpr::PrettyFunction:
809 // FIXME:: Demangle C++ method names
810 GlobalVarName = "__PRETTY_FUNCTION__.";
811 break;
Anders Carlsson625bfc82007-07-21 05:21:51 +0000812 }
Daniel Dunbarb3517472008-10-17 21:58:32 +0000813
Chris Lattner28ec0cf2009-04-23 05:30:27 +0000814 // FIXME: This isn't right at all. The logic for computing this should go
815 // into a method on PredefinedExpr. This would allow sema and codegen to be
816 // consistent for things like sizeof(__func__) etc.
Daniel Dunbarb3517472008-10-17 21:58:32 +0000817 std::string FunctionName;
Chris Lattner28ec0cf2009-04-23 05:30:27 +0000818 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
Douglas Gregor5f361c92009-02-18 23:53:56 +0000819 FunctionName = CGM.getMangledName(FD);
Daniel Dunbarb3517472008-10-17 21:58:32 +0000820 } else {
Daniel Dunbar15894b72009-04-07 05:48:37 +0000821 // Just get the mangled name; skipping the asm prefix if it
822 // exists.
Daniel Dunbarb3517472008-10-17 21:58:32 +0000823 FunctionName = CurFn->getName();
Daniel Dunbar15894b72009-04-07 05:48:37 +0000824 if (FunctionName[0] == '\01')
825 FunctionName = FunctionName.substr(1, std::string::npos);
Daniel Dunbarb3517472008-10-17 21:58:32 +0000826 }
827
Chris Lattner5506f8c2008-04-04 04:07:35 +0000828 GlobalVarName += FunctionName;
Daniel Dunbarb3517472008-10-17 21:58:32 +0000829 llvm::Constant *C =
830 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
831 return LValue::MakeAddr(C, 0);
832}
833
834LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
835 switch (E->getIdentType()) {
836 default:
837 return EmitUnsupportedLValue(E, "predefined expression");
838 case PredefinedExpr::Func:
839 case PredefinedExpr::Function:
840 case PredefinedExpr::PrettyFunction:
841 return EmitPredefinedFunctionName(E->getIdentType());
842 }
Anders Carlsson625bfc82007-07-21 05:21:51 +0000843}
844
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000845LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenekc81614d2007-08-20 16:18:38 +0000846 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner2da04b32007-08-24 05:35:26 +0000847 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Eli Friedman07bbeca2009-06-06 19:09:26 +0000848 QualType IdxTy = E->getIdx()->getType();
849 bool IdxSigned = IdxTy->isSignedIntegerType();
850
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000851 // If the base is a vector type, then we are forming a vector element lvalue
852 // with this subscript.
Eli Friedman327944b2008-06-13 23:01:12 +0000853 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000854 // Emit the vector as an lvalue to get its address.
Eli Friedman327944b2008-06-13 23:01:12 +0000855 LValue LHS = EmitLValue(E->getBase());
Ted Kremenekc81614d2007-08-20 16:18:38 +0000856 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Eli Friedman07bbeca2009-06-06 19:09:26 +0000857 Idx = Builder.CreateIntCast(Idx, llvm::Type::Int32Ty, IdxSigned, "vidx");
Eli Friedman327944b2008-06-13 23:01:12 +0000858 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
859 E->getBase()->getType().getCVRQualifiers());
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000860 }
861
Ted Kremenekc81614d2007-08-20 16:18:38 +0000862 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner2da04b32007-08-24 05:35:26 +0000863 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000864
Ted Kremenekc81614d2007-08-20 16:18:38 +0000865 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner23b7eb62007-06-15 23:05:46 +0000866 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta47425152009-04-24 02:40:57 +0000867 if (IdxBitwidth != LLVMPointerWidth)
Owen Anderson170229f2009-07-14 23:10:40 +0000868 Idx = Builder.CreateIntCast(Idx, VMContext.getIntegerType(LLVMPointerWidth),
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000869 IdxSigned, "idxprom");
870
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +0000871 // We know that the pointer points to a type of the correct size,
872 // unless the size is a VLA or Objective-C interface.
873 llvm::Value *Address = 0;
Anders Carlsson3d312f82008-12-21 00:11:23 +0000874 if (const VariableArrayType *VAT =
875 getContext().getAsVariableArrayType(E->getType())) {
876 llvm::Value *VLASize = VLASizeMap[VAT];
877
878 Idx = Builder.CreateMul(Idx, VLASize);
879
Anders Carlssone0808df2008-12-21 03:44:36 +0000880 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson3d312f82008-12-21 00:11:23 +0000881
882 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
883 Idx = Builder.CreateUDiv(Idx,
Owen Anderson170229f2009-07-14 23:10:40 +0000884 VMContext.getConstantInt(Idx->getType(),
Anders Carlsson3d312f82008-12-21 00:11:23 +0000885 BaseTypeSize));
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +0000886 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
887 } else if (const ObjCInterfaceType *OIT =
888 dyn_cast<ObjCInterfaceType>(E->getType())) {
889 llvm::Value *InterfaceSize =
Owen Anderson170229f2009-07-14 23:10:40 +0000890 VMContext.getConstantInt(Idx->getType(),
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +0000891 getContext().getTypeSize(OIT) / 8);
892
893 Idx = Builder.CreateMul(Idx, InterfaceSize);
894
Owen Anderson170229f2009-07-14 23:10:40 +0000895 llvm::Type *i8PTy = VMContext.getPointerTypeUnqual(llvm::Type::Int8Ty);
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +0000896 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
897 Idx, "arrayidx");
898 Address = Builder.CreateBitCast(Address, Base->getType());
899 } else {
900 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
Anders Carlsson3d312f82008-12-21 00:11:23 +0000901 }
902
Steve Naroff7cae42b2009-07-10 23:34:53 +0000903 QualType T = E->getBase()->getType()->getPointeeType();
904 assert(!T.isNull() &&
905 "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
906
Daniel Dunbaref2ffbc2009-04-25 05:08:32 +0000907 LValue LV = LValue::MakeAddr(Address,
Daniel Dunbar41595d42009-04-18 08:54:40 +0000908 T.getCVRQualifiers(),
909 getContext().getObjCGCAttrKind(T));
Fariborz Jahaniana9fecf32009-02-21 23:37:19 +0000910 if (getContext().getLangOptions().ObjC1 &&
911 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanianc6d98002009-06-01 21:29:32 +0000912 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
Fariborz Jahaniana9fecf32009-02-21 23:37:19 +0000913 return LV;
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000914}
915
Nate Begemand3862152008-05-13 21:03:02 +0000916static
Owen Anderson170229f2009-07-14 23:10:40 +0000917llvm::Constant *GenerateConstantVector(llvm::LLVMContext &VMContext,
918 llvm::SmallVector<unsigned, 4> &Elts) {
Nate Begemand3862152008-05-13 21:03:02 +0000919 llvm::SmallVector<llvm::Constant *, 4> CElts;
920
921 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
Owen Anderson170229f2009-07-14 23:10:40 +0000922 CElts.push_back(VMContext.getConstantInt(llvm::Type::Int32Ty, Elts[i]));
Nate Begemand3862152008-05-13 21:03:02 +0000923
Owen Anderson170229f2009-07-14 23:10:40 +0000924 return VMContext.getConstantVector(&CElts[0], CElts.size());
Nate Begemand3862152008-05-13 21:03:02 +0000925}
926
Chris Lattner9e751ca2007-08-02 23:37:31 +0000927LValue CodeGenFunction::
Nate Begemance4d7fc2008-04-18 23:10:10 +0000928EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner9e751ca2007-08-02 23:37:31 +0000929 // Emit the base vector as an l-value.
Chris Lattner6c7ce102009-02-16 21:11:58 +0000930 LValue Base;
931
932 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattnerb8211f62009-02-16 22:14:05 +0000933 if (!E->isArrow()) {
Chris Lattner6c7ce102009-02-16 21:11:58 +0000934 assert(E->getBase()->getType()->isVectorType());
935 Base = EmitLValue(E->getBase());
Chris Lattnerb8211f62009-02-16 22:14:05 +0000936 } else {
Ted Kremenek8a286fb2009-07-17 17:50:17 +0000937 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
Chris Lattnerb8211f62009-02-16 22:14:05 +0000938 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
939 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner6c7ce102009-02-16 21:11:58 +0000940 }
Chris Lattner9e751ca2007-08-02 23:37:31 +0000941
Nate Begemand3862152008-05-13 21:03:02 +0000942 // Encode the element access list into a vector of unsigned indices.
943 llvm::SmallVector<unsigned, 4> Indices;
944 E->getEncodedElementAccess(Indices);
945
946 if (Base.isSimple()) {
Owen Anderson170229f2009-07-14 23:10:40 +0000947 llvm::Constant *CV = GenerateConstantVector(VMContext, Indices);
Eli Friedman327944b2008-06-13 23:01:12 +0000948 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattnere084c012009-02-16 22:25:49 +0000949 Base.getQualifiers());
Nate Begemand3862152008-05-13 21:03:02 +0000950 }
951 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
952
953 llvm::Constant *BaseElts = Base.getExtVectorElts();
954 llvm::SmallVector<llvm::Constant *, 4> CElts;
955
956 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
957 if (isa<llvm::ConstantAggregateZero>(BaseElts))
Owen Anderson170229f2009-07-14 23:10:40 +0000958 CElts.push_back(VMContext.getConstantInt(llvm::Type::Int32Ty, 0));
Nate Begemand3862152008-05-13 21:03:02 +0000959 else
960 CElts.push_back(BaseElts->getOperand(Indices[i]));
961 }
Owen Anderson170229f2009-07-14 23:10:40 +0000962 llvm::Constant *CV = VMContext.getConstantVector(&CElts[0], CElts.size());
Eli Friedman327944b2008-06-13 23:01:12 +0000963 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattnere084c012009-02-16 22:25:49 +0000964 Base.getQualifiers());
Chris Lattner9e751ca2007-08-02 23:37:31 +0000965}
966
Devang Patel30efa2e2007-10-23 20:28:39 +0000967LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelb37b12d2007-12-11 21:33:16 +0000968 bool isUnion = false;
Fariborz Jahanian735a4152008-11-21 18:14:01 +0000969 bool isIvar = false;
Fariborz Jahanian10bec102009-02-21 00:30:43 +0000970 bool isNonGC = false;
Devang Pateld68df202007-10-24 22:26:28 +0000971 Expr *BaseExpr = E->getBase();
Devang Pateld68df202007-10-24 22:26:28 +0000972 llvm::Value *BaseValue = NULL;
Eli Friedman327944b2008-06-13 23:01:12 +0000973 unsigned CVRQualifiers=0;
974
Chris Lattner4e4186b2007-12-02 18:52:07 +0000975 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patelb37b12d2007-12-11 21:33:16 +0000976 if (E->isArrow()) {
Devang Patel7718d7a2007-10-26 18:15:21 +0000977 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelb37b12d2007-12-11 21:33:16 +0000978 const PointerType *PTy =
Ted Kremenek8a286fb2009-07-17 17:50:17 +0000979 BaseExpr->getType()->getAsPointerType();
Devang Patelb37b12d2007-12-11 21:33:16 +0000980 if (PTy->getPointeeType()->isUnionType())
981 isUnion = true;
Eli Friedman327944b2008-06-13 23:01:12 +0000982 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattnere084c012009-02-16 22:25:49 +0000983 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
984 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian30e78642009-01-12 23:27:26 +0000985 RValue RV = EmitObjCPropertyGet(BaseExpr);
986 BaseValue = RV.getAggregateAddr();
987 if (BaseExpr->getType()->isUnionType())
988 isUnion = true;
989 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattnere084c012009-02-16 22:25:49 +0000990 } else {
Chris Lattner4e4186b2007-12-02 18:52:07 +0000991 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian735a4152008-11-21 18:14:01 +0000992 if (BaseLV.isObjCIvar())
993 isIvar = true;
Fariborz Jahanian10bec102009-02-21 00:30:43 +0000994 if (BaseLV.isNonGC())
995 isNonGC = true;
Chris Lattner4e4186b2007-12-02 18:52:07 +0000996 // FIXME: this isn't right for bitfields.
997 BaseValue = BaseLV.getAddress();
Devang Patelb37b12d2007-12-11 21:33:16 +0000998 if (BaseExpr->getType()->isUnionType())
999 isUnion = true;
Eli Friedman327944b2008-06-13 23:01:12 +00001000 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner4e4186b2007-12-02 18:52:07 +00001001 }
Devang Patel30efa2e2007-10-23 20:28:39 +00001002
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00001003 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
1004 // FIXME: Handle non-field member expressions
1005 assert(Field && "No code generation for non-field member references");
Chris Lattnere084c012009-02-16 22:25:49 +00001006 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
1007 CVRQualifiers);
Fariborz Jahanian735a4152008-11-21 18:14:01 +00001008 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahanian10bec102009-02-21 00:30:43 +00001009 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian735a4152008-11-21 18:14:01 +00001010 return MemExpLV;
Eli Friedmana62f3e12008-02-09 08:50:58 +00001011}
Devang Patel30efa2e2007-10-23 20:28:39 +00001012
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001013LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
1014 FieldDecl* Field,
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001015 unsigned CVRQualifiers) {
Daniel Dunbar3d926cb2009-02-17 18:31:04 +00001016 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Mike Stump18bb9282009-05-16 07:57:57 +00001017 // FIXME: CodeGenTypes should expose a method to get the appropriate type for
1018 // FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbar3d926cb2009-02-17 18:31:04 +00001019 const llvm::Type *FieldTy =
1020 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001021 const llvm::PointerType *BaseTy =
1022 cast<llvm::PointerType>(BaseValue->getType());
1023 unsigned AS = BaseTy->getAddressSpace();
1024 BaseValue = Builder.CreateBitCast(BaseValue,
Owen Anderson170229f2009-07-14 23:10:40 +00001025 VMContext.getPointerType(FieldTy, AS),
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001026 "tmp");
1027 llvm::Value *V = Builder.CreateGEP(BaseValue,
Owen Anderson170229f2009-07-14 23:10:40 +00001028 VMContext.getConstantInt(llvm::Type::Int32Ty, idx),
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001029 "tmp");
1030
1031 CodeGenTypes::BitFieldInfo bitFieldInfo =
1032 CGM.getTypes().getBitFieldInfo(Field);
1033 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
1034 Field->getType()->isSignedIntegerType(),
1035 Field->getType().getCVRQualifiers()|CVRQualifiers);
1036}
1037
Eli Friedmana62f3e12008-02-09 08:50:58 +00001038LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
1039 FieldDecl* Field,
Eli Friedman327944b2008-06-13 23:01:12 +00001040 bool isUnion,
1041 unsigned CVRQualifiers)
Eli Friedmana62f3e12008-02-09 08:50:58 +00001042{
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001043 if (Field->isBitField())
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001044 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian003e8302008-11-20 00:15:42 +00001045
Fariborz Jahanian712bfa62009-02-03 19:03:09 +00001046 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianb517e902008-12-15 20:35:07 +00001047 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman133e8042008-05-29 11:33:25 +00001048
Devang Pateled93c3c2007-10-26 19:42:18 +00001049 // Match union field type.
Lauro Ramos Venancio9eff02d2008-02-07 19:29:53 +00001050 if (isUnion) {
Eli Friedman327944b2008-06-13 23:01:12 +00001051 const llvm::Type *FieldTy =
1052 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patelffe1e212007-10-30 20:59:40 +00001053 const llvm::PointerType * BaseTy =
1054 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman9a5ffcb2008-05-21 13:24:44 +00001055 unsigned AS = BaseTy->getAddressSpace();
1056 V = Builder.CreateBitCast(V,
Owen Anderson170229f2009-07-14 23:10:40 +00001057 VMContext.getPointerType(FieldTy, AS),
Eli Friedman9a5ffcb2008-05-21 13:24:44 +00001058 "tmp");
Devang Pateled93c3c2007-10-26 19:42:18 +00001059 }
Eli Friedmanf7f9f682009-05-30 21:09:44 +00001060 if (Field->getType()->isReferenceType())
1061 V = Builder.CreateLoad(V, "tmp");
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +00001062
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001063 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanian257eac62009-02-18 17:52:36 +00001064 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian9959eee2009-02-18 18:52:41 +00001065 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1066 QualType Ty = Field->getType();
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001067 attr = Ty.getObjCGCAttr();
Fariborz Jahanian83e3eea2009-02-19 00:48:05 +00001068 if (attr != QualType::GCNone) {
Fariborz Jahanian9959eee2009-02-18 18:52:41 +00001069 // __weak attribute on a field is ignored.
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001070 if (attr == QualType::Weak)
1071 attr = QualType::GCNone;
Fariborz Jahanian83e3eea2009-02-19 00:48:05 +00001072 }
Steve Naroff79d12152009-07-16 15:41:00 +00001073 else if (Ty->isObjCObjectPointerType())
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001074 attr = QualType::Strong;
Fariborz Jahanian9959eee2009-02-18 18:52:41 +00001075 }
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001076 LValue LV =
1077 LValue::MakeAddr(V,
1078 Field->getType().getCVRQualifiers()|CVRQualifiers,
1079 attr);
Fariborz Jahanian003e8302008-11-20 00:15:42 +00001080 return LV;
Devang Patel30efa2e2007-10-23 20:28:39 +00001081}
1082
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001083LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman9fd8b682008-05-13 23:18:27 +00001084 const llvm::Type *LTy = ConvertType(E->getType());
1085 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1086
1087 const Expr* InitExpr = E->getInitializer();
Eli Friedman327944b2008-06-13 23:01:12 +00001088 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman9fd8b682008-05-13 23:18:27 +00001089
1090 if (E->getType()->isComplexType()) {
1091 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1092 } else if (hasAggregateLLVMType(E->getType())) {
1093 EmitAnyExpr(InitExpr, DeclPtr, false);
1094 } else {
1095 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1096 }
1097
1098 return Result;
1099}
1100
Daniel Dunbarbf1fe8c2009-03-24 02:38:23 +00001101LValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator* E) {
1102 // We don't handle vectors yet.
1103 if (E->getType()->isVectorType())
1104 return EmitUnsupportedLValue(E, "conditional operator");
1105
1106 // ?: here should be an aggregate.
1107 assert((hasAggregateLLVMType(E->getType()) &&
1108 !E->getType()->isAnyComplexType()) &&
1109 "Unexpected conditional operator!");
1110
1111 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1112 EmitAggExpr(E, Temp, false);
1113
1114 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1115 getContext().getObjCGCAttrKind(E->getType()));
1116
1117}
1118
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001119/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1120/// generator in an lvalue context, then it must mean that we need the address
1121/// of an aggregate in order to access one of its fields. This can happen for
1122/// all the reasons that casts are permitted with aggregate result, including
1123/// noop aggregate casts, and cast from scalar to union.
1124LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
1125 // If this is an aggregate-to-aggregate cast, just use the input's address as
1126 // the lvalue.
1127 if (getContext().hasSameUnqualifiedType(E->getType(),
1128 E->getSubExpr()->getType()))
1129 return EmitLValue(E->getSubExpr());
1130
1131 // Otherwise, we must have a cast from scalar to union.
1132 assert(E->getType()->isUnionType() && "Expected scalar-to-union cast");
1133
1134 // Casts are only lvalues when the source and destination types are the same.
1135 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
Chris Lattnerab17fb22009-03-18 18:30:44 +00001136 EmitAnyExpr(E->getSubExpr(), Temp, false);
Chris Lattner28bcf1a2009-03-18 18:28:57 +00001137
1138 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1139 getContext().getObjCGCAttrKind(E->getType()));
1140}
1141
Chris Lattnere47e4402007-06-01 18:02:12 +00001142//===--------------------------------------------------------------------===//
1143// Expression Emission
1144//===--------------------------------------------------------------------===//
1145
Chris Lattner76ba8492007-08-20 22:37:10 +00001146
Chris Lattner2b228c92007-06-15 21:34:29 +00001147RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00001148 // Builtins never have block type.
Daniel Dunbarbb197e42009-01-09 16:50:52 +00001149 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlsson2437cbf2009-02-12 00:39:25 +00001150 return EmitBlockCallExpr(E);
Daniel Dunbarbb197e42009-01-09 16:50:52 +00001151
Anders Carlssone5fd6f22009-04-03 22:50:24 +00001152 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1153 return EmitCXXMemberCallExpr(CE);
1154
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00001155 const Decl *TargetDecl = 0;
Daniel Dunbar27032de2009-02-20 19:34:33 +00001156 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1157 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1158 TargetDecl = DRE->getDecl();
1159 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1160 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1161 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00001162 }
1163 }
1164
Chris Lattner4ca97c32009-06-13 00:26:38 +00001165 if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
Anders Carlsson4034a952009-05-27 04:18:27 +00001166 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
1167 return EmitCXXOperatorMemberCallExpr(CE, MD);
Anders Carlsson4034a952009-05-27 04:18:27 +00001168
Chris Lattner2da04b32007-08-24 05:35:26 +00001169 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Anders Carlsson3a9463b2009-05-27 01:22:39 +00001170 return EmitCall(Callee, E->getCallee()->getType(),
1171 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattner9e47ead2007-08-31 04:44:06 +00001172}
1173
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00001174LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
Chris Lattnere541ea32009-05-12 21:28:12 +00001175 // Comma expressions just emit their LHS then their RHS as an l-value.
1176 if (E->getOpcode() == BinaryOperator::Comma) {
1177 EmitAnyExpr(E->getLHS());
1178 return EmitLValue(E->getRHS());
1179 }
1180
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00001181 // Can only get l-value for binary operator expressions which are a
1182 // simple assignment of aggregate type.
1183 if (E->getOpcode() != BinaryOperator::Assign)
1184 return EmitUnsupportedLValue(E, "binary l-value expression");
1185
1186 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1187 EmitAggExpr(E, Temp, false);
1188 // FIXME: Are these qualifiers correct?
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001189 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1190 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar8cde00a2008-09-04 03:20:13 +00001191}
1192
Christopher Lambd91c3d42007-12-29 05:02:41 +00001193LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
Christopher Lambd91c3d42007-12-29 05:02:41 +00001194 RValue RV = EmitCallExpr(E);
Anders Carlsson4ae70ff2009-05-27 01:45:47 +00001195
1196 if (RV.isScalar()) {
1197 assert(E->getCallReturnType()->isReferenceType() &&
1198 "Can't have a scalar return unless the return type is a "
1199 "reference type!");
1200
1201 return LValue::MakeAddr(RV.getScalarVal(), E->getType().getCVRQualifiers(),
1202 getContext().getObjCGCAttrKind(E->getType()));
1203 }
1204
Eli Friedman327944b2008-06-13 23:01:12 +00001205 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001206 E->getType().getCVRQualifiers(),
1207 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lambd91c3d42007-12-29 05:02:41 +00001208}
1209
Daniel Dunbar8d9dc4a2009-02-11 20:59:32 +00001210LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1211 // FIXME: This shouldn't require another copy.
1212 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1213 EmitAggExpr(E, Temp, false);
1214 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1215}
1216
Argyrios Kyrtzidis07052352008-09-10 02:36:38 +00001217LValue
1218CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1219 EmitLocalBlockVarDecl(*E->getVarDecl());
1220 return EmitDeclRefLValue(E);
1221}
1222
Anders Carlsson3be22e22009-05-30 23:23:33 +00001223LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
1224 llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()), "tmp");
1225 EmitCXXConstructExpr(Temp, E);
1226 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1227}
1228
Anders Carlssonfd2af0c2009-05-30 23:30:54 +00001229LValue
1230CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
1231 LValue LV = EmitLValue(E->getSubExpr());
1232
Anders Carlsson8eb93e72009-05-31 00:34:10 +00001233 PushCXXTemporary(E->getTemporary(), LV.getAddress());
Anders Carlssonfd2af0c2009-05-30 23:30:54 +00001234
1235 return LV;
1236}
1237
Daniel Dunbarc8317a42008-08-23 10:51:21 +00001238LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1239 // Can only get l-value for message expression returning aggregate type
1240 RValue RV = EmitObjCMessageExpr(E);
1241 // FIXME: can this be volatile?
1242 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahanian0f466c72009-02-19 23:36:06 +00001243 E->getType().getCVRQualifiers(),
1244 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbarc8317a42008-08-23 10:51:21 +00001245}
1246
Daniel Dunbar722f4242009-04-22 05:08:15 +00001247llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001248 const ObjCIvarDecl *Ivar) {
Fariborz Jahanian21fc74c2009-02-10 19:02:04 +00001249 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001250}
1251
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00001252LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1253 llvm::Value *BaseValue,
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001254 const ObjCIvarDecl *Ivar,
1255 unsigned CVRQualifiers) {
Chris Lattnerc4688d22009-04-17 17:44:48 +00001256 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar9ebf9512009-04-21 01:19:28 +00001257 Ivar, CVRQualifiers);
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001258}
1259
1260LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonc13b85a2008-08-25 01:53:23 +00001261 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1262 llvm::Value *BaseValue = 0;
1263 const Expr *BaseExpr = E->getBase();
1264 unsigned CVRQualifiers = 0;
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00001265 QualType ObjectTy;
Anders Carlssonc13b85a2008-08-25 01:53:23 +00001266 if (E->isArrow()) {
1267 BaseValue = EmitScalarExpr(BaseExpr);
Steve Naroff7cae42b2009-07-10 23:34:53 +00001268 ObjectTy = BaseExpr->getType()->getPointeeType();
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00001269 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonc13b85a2008-08-25 01:53:23 +00001270 } else {
1271 LValue BaseLV = EmitLValue(BaseExpr);
1272 // FIXME: this isn't right for bitfields.
1273 BaseValue = BaseLV.getAddress();
Fariborz Jahanianc88a70d2009-02-03 00:09:52 +00001274 ObjectTy = BaseExpr->getType();
1275 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlssonc13b85a2008-08-25 01:53:23 +00001276 }
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001277
Daniel Dunbar9ebf9512009-04-21 01:19:28 +00001278 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner4bd55962008-03-30 23:03:07 +00001279}
1280
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +00001281LValue
1282CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1283 // This is a special l-value that just issues sends when we load or
1284 // store through it.
1285 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1286}
1287
Fariborz Jahanian9ac53512008-11-22 22:30:21 +00001288LValue
1289CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1290 // This is a special l-value that just issues sends when we load or
1291 // store through it.
1292 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1293}
1294
Douglas Gregor8ea1f532008-11-04 14:56:14 +00001295LValue
Chris Lattnera4185c52009-04-25 19:35:26 +00001296CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregor8ea1f532008-11-04 14:56:14 +00001297 return EmitUnsupportedLValue(E, "use of super");
1298}
1299
Chris Lattnera4185c52009-04-25 19:35:26 +00001300LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
1301
1302 // Can only get l-value for message expression returning aggregate type
1303 RValue RV = EmitAnyExprToTemp(E);
1304 // FIXME: can this be volatile?
1305 return LValue::MakeAddr(RV.getAggregateAddr(),
1306 E->getType().getCVRQualifiers(),
1307 getContext().getObjCGCAttrKind(E->getType()));
1308}
1309
1310
Anders Carlsson3a9463b2009-05-27 01:22:39 +00001311RValue CodeGenFunction::EmitCall(llvm::Value *Callee, QualType CalleeType,
1312 CallExpr::const_arg_iterator ArgBeg,
1313 CallExpr::const_arg_iterator ArgEnd,
1314 const Decl *TargetDecl) {
Daniel Dunbarbb197e42009-01-09 16:50:52 +00001315 // Get the actual function type. The callee type will always be a
1316 // pointer to function type or a block pointer type.
Anders Carlssond8db8532009-04-07 18:53:02 +00001317 assert(CalleeType->isFunctionPointerType() &&
1318 "Call must have function pointer type!");
1319
Ted Kremenek8a286fb2009-07-17 17:50:17 +00001320 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
Anders Carlssond8db8532009-04-07 18:53:02 +00001321 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbarc722b852008-08-30 03:02:31 +00001322
1323 CallArgList Args;
Anders Carlsson479e6fc2009-04-08 23:13:16 +00001324 EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
Daniel Dunbarc722b852008-08-30 03:02:31 +00001325
Daniel Dunbarbf8c24a2009-02-02 23:23:47 +00001326 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbarcdbb5e32009-02-20 18:06:48 +00001327 Callee, Args, TargetDecl);
Daniel Dunbar97db84c2008-08-23 03:46:30 +00001328}