blob: 4ad698ad11ac566ea327c4f295d6547cbf05f3e7 [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) {
32 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
33}
Chris Lattner8394d792007-06-05 20:53:16 +000034
35/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
36/// expression and compare the result against zero, returning an Int1Ty value.
Chris Lattner23b7eb62007-06-15 23:05:46 +000037llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner268fcce2007-08-26 16:46:58 +000038 QualType BoolTy = getContext().BoolTy;
Chris Lattnerf3bc75a2008-04-04 16:54:41 +000039 if (!E->getType()->isAnyComplexType())
Chris Lattner268fcce2007-08-26 16:46:58 +000040 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner8394d792007-06-05 20:53:16 +000041
Chris Lattner268fcce2007-08-26 16:46:58 +000042 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattnerf0106d22007-06-02 19:33:17 +000043}
44
Chris Lattner4647a212007-08-31 22:49:20 +000045/// EmitAnyExpr - Emit code to compute the specified expression which can have
46/// any type. The result is returned as an RValue struct. If this is an
47/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
48/// the result should be returned.
49RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
50 bool isAggLocVolatile) {
51 if (!hasAggregateLLVMType(E->getType()))
52 return RValue::get(EmitScalarExpr(E));
Chris Lattnerf3bc75a2008-04-04 16:54:41 +000053 else if (E->getType()->isAnyComplexType())
Chris Lattner4647a212007-08-31 22:49:20 +000054 return RValue::getComplex(EmitComplexExpr(E));
55
56 EmitAggExpr(E, AggLoc, isAggLocVolatile);
57 return RValue::getAggregate(AggLoc);
58}
59
Daniel Dunbar41cf9de2008-09-09 01:06:48 +000060/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
61/// will always be accessible even if no aggregate location is
62/// provided.
63RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
64 bool isAggLocVolatile) {
65 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
66 !E->getType()->isAnyComplexType())
67 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
68 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
69}
70
Dan Gohman75d69da2008-05-22 00:50:06 +000071/// getAccessedFieldNo - Given an encoded value and a result number, return
72/// the input field number being accessed.
73unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
74 const llvm::Constant *Elts) {
75 if (isa<llvm::ConstantAggregateZero>(Elts))
76 return 0;
77
78 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
79}
80
Chris Lattner4647a212007-08-31 22:49:20 +000081
Chris Lattnera45c5af2007-06-02 19:47:04 +000082//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +000083// LValue Expression Emission
Chris Lattnera45c5af2007-06-02 19:47:04 +000084//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +000085
Daniel Dunbarf2e69882008-08-25 20:45:57 +000086LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
87 const char *Name) {
88 ErrorUnsupported(E, Name);
89 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
90 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
91 E->getType().getCVRQualifiers());
92}
93
Chris Lattner8394d792007-06-05 20:53:16 +000094/// EmitLValue - Emit code to compute a designator that specifies the location
95/// of the expression.
96///
97/// This can return one of two things: a simple address or a bitfield
98/// reference. In either case, the LLVM Value* in the LValue structure is
99/// guaranteed to be an LLVM pointer type.
100///
101/// If this returns a bitfield reference, nothing about the pointee type of
102/// the LLVM value is known: For example, it may not be a pointer to an
103/// integer.
104///
105/// If this returns a normal address, and if the lvalue's C type is fixed
106/// size, this method guarantees that the returned pointer type will point to
107/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
108/// variable length type, this is not possible.
109///
Chris Lattnerd7f58862007-06-02 05:24:33 +0000110LValue CodeGenFunction::EmitLValue(const Expr *E) {
111 switch (E->getStmtClass()) {
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000112 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattnerd7f58862007-06-02 05:24:33 +0000113
Daniel Dunbar8cde00a2008-09-04 03:20:13 +0000114 case Expr::BinaryOperatorClass:
115 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor993603d2008-11-14 16:09:21 +0000116 case Expr::CallExprClass:
117 case Expr::CXXOperatorCallExprClass:
118 return EmitCallExprLValue(cast<CallExpr>(E));
Chris Lattnerd7f58862007-06-02 05:24:33 +0000119 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Chris Lattner946aa312007-06-05 03:59:43 +0000120 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner6307f192008-08-10 01:53:14 +0000121 case Expr::PredefinedExprClass:
122 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4347e3692007-06-06 04:54:52 +0000123 case Expr::StringLiteralClass:
124 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner4bd55962008-03-30 23:03:07 +0000125
Argyrios Kyrtzidis07052352008-09-10 02:36:38 +0000126 case Expr::CXXConditionDeclExprClass:
127 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
128
Daniel Dunbarc8317a42008-08-23 10:51:21 +0000129 case Expr::ObjCMessageExprClass:
130 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner4bd55962008-03-30 23:03:07 +0000131 case Expr::ObjCIvarRefExprClass:
132 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000133 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000134 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000135 case Expr::ObjCKVCRefExprClass:
136 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregor8ea1f532008-11-04 14:56:14 +0000137 case Expr::ObjCSuperExprClass:
138 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
139
Chris Lattner8394d792007-06-05 20:53:16 +0000140 case Expr::UnaryOperatorClass:
141 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000142 case Expr::ArraySubscriptExprClass:
143 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemance4d7fc2008-04-18 23:10:10 +0000144 case Expr::ExtVectorElementExprClass:
145 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patel30efa2e2007-10-23 20:28:39 +0000146 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman9fd8b682008-05-13 23:18:27 +0000147 case Expr::CompoundLiteralExprClass:
148 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattnerd7f58862007-06-02 05:24:33 +0000149 }
150}
151
Chris Lattner8394d792007-06-05 20:53:16 +0000152/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
153/// this method emits the address of the lvalue, then loads the result as an
154/// rvalue, returning the rvalue.
Chris Lattner9369a562007-06-29 16:31:29 +0000155RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000156 if (LV.isObjCWeak()) {
Fariborz Jahanianf5125d12008-11-18 21:45:40 +0000157 // load of a __weak object.
158 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian83f45b552008-11-18 22:37:34 +0000159 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanianf5125d12008-11-18 21:45:40 +0000160 AddrWeakObj);
161 return RValue::get(read_weak);
162 }
163
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000164 if (LV.isSimple()) {
165 llvm::Value *Ptr = LV.getAddress();
166 const llvm::Type *EltTy =
167 cast<llvm::PointerType>(Ptr->getType())->getElementType();
168
169 // Simple scalar l-value.
Dan Gohman5d309752008-05-22 22:12:56 +0000170 if (EltTy->isSingleValueType()) {
Eli Friedman327944b2008-06-13 23:01:12 +0000171 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner05ba4cb2008-01-30 07:01:17 +0000172
173 // Bool can have different representation in memory than in registers.
174 if (ExprType->isBooleanType()) {
175 if (V->getType() != llvm::Type::Int1Ty)
176 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
177 }
178
179 return RValue::get(V);
180 }
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000181
Chris Lattner6278e6a2007-08-11 00:04:45 +0000182 assert(ExprType->isFunctionType() && "Unknown scalar value");
183 return RValue::get(Ptr);
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000184 }
Chris Lattner09153c02007-06-22 18:48:09 +0000185
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000186 if (LV.isVectorElt()) {
Eli Friedman327944b2008-06-13 23:01:12 +0000187 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
188 LV.isVolatileQualified(), "tmp");
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000189 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
190 "vecext"));
191 }
Chris Lattner73ab9b32007-08-03 00:16:29 +0000192
193 // If this is a reference to a subset of the elements of a vector, either
194 // shuffle the input or extract/insert them as appropriate.
Nate Begemance4d7fc2008-04-18 23:10:10 +0000195 if (LV.isExtVectorElt())
196 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000197
198 if (LV.isBitfield())
199 return EmitLoadOfBitfieldLValue(LV, ExprType);
200
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000201 if (LV.isPropertyRef())
202 return EmitLoadOfPropertyRefLValue(LV, ExprType);
203
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000204 if (LV.isKVCRef())
205 return EmitLoadOfKVCRefLValue(LV, ExprType);
206
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000207 assert(0 && "Unknown LValue type!");
Chris Lattner793d10c2007-09-16 19:23:47 +0000208 //an invalid RValue, but the assert will
209 //ensure that this point is never reached
210 return RValue();
Chris Lattner8394d792007-06-05 20:53:16 +0000211}
212
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000213RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
214 QualType ExprType) {
Daniel Dunbaread7c912008-08-06 05:08:45 +0000215 unsigned StartBit = LV.getBitfieldStartBit();
216 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000217 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbaread7c912008-08-06 05:08:45 +0000218
219 const llvm::Type *EltTy =
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000220 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbaread7c912008-08-06 05:08:45 +0000221 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000222
Daniel Dunbaread7c912008-08-06 05:08:45 +0000223 // In some cases the bitfield may straddle two memory locations.
224 // Currently we load the entire bitfield, then do the magic to
225 // sign-extend it if necessary. This results in somewhat more code
226 // than necessary for the common case (one load), since two shifts
227 // accomplish both the masking and sign extension.
228 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
229 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
230
231 // Shift to proper location.
Daniel Dunbarf7fb7502008-11-13 02:20:34 +0000232 if (StartBit)
233 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
234 "bf.lo");
Daniel Dunbaread7c912008-08-06 05:08:45 +0000235
236 // Mask off unused bits.
237 llvm::Constant *LowMask =
238 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
239 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
240
241 // Fetch the high bits if necessary.
242 if (LowBits < BitfieldSize) {
243 unsigned HighBits = BitfieldSize - LowBits;
244 llvm::Value *HighPtr =
245 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
246 "bf.ptr.hi");
247 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
248 LV.isVolatileQualified(),
249 "tmp");
250
251 // Mask off unused bits.
252 llvm::Constant *HighMask =
253 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
254 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000255
Daniel Dunbaread7c912008-08-06 05:08:45 +0000256 // Shift to proper location and or in to bitfield value.
257 HighVal = Builder.CreateShl(HighVal,
258 llvm::ConstantInt::get(EltTy, LowBits));
259 Val = Builder.CreateOr(Val, HighVal, "bf.val");
260 }
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000261
Daniel Dunbaread7c912008-08-06 05:08:45 +0000262 // Sign extend if necessary.
263 if (LV.isBitfieldSigned()) {
264 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
265 EltTySize - BitfieldSize);
266 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
267 ExtraBits, "bf.val.sext");
268 }
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000269
270 // The bitfield type and the normal type differ when the storage sizes
271 // differ (currently just _Bool).
Daniel Dunbaread7c912008-08-06 05:08:45 +0000272 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000273
Daniel Dunbaread7c912008-08-06 05:08:45 +0000274 return RValue::get(Val);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000275}
276
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000277RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
278 QualType ExprType) {
279 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
280}
281
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000282RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
283 QualType ExprType) {
284 return EmitObjCPropertyGet(LV.getKVCRefExpr());
285}
286
Chris Lattner40ff7012007-08-03 16:18:34 +0000287// If this is a reference to a subset of the elements of a vector, either
288// shuffle the input or extract/insert them as appropriate.
Nate Begemance4d7fc2008-04-18 23:10:10 +0000289RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
290 QualType ExprType) {
Eli Friedman327944b2008-06-13 23:01:12 +0000291 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
292 LV.isVolatileQualified(), "tmp");
Chris Lattner40ff7012007-08-03 16:18:34 +0000293
Nate Begemanf322eab2008-05-09 06:41:27 +0000294 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner40ff7012007-08-03 16:18:34 +0000295
296 // If the result of the expression is a non-vector type, we must be
297 // extracting a single element. Just codegen as an extractelement.
Chris Lattner8eab8ff2007-08-10 17:10:08 +0000298 const VectorType *ExprVT = ExprType->getAsVectorType();
299 if (!ExprVT) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000300 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner40ff7012007-08-03 16:18:34 +0000301 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
302 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
303 }
304
305 // If the source and destination have the same number of elements, use a
306 // vector shuffle instead of insert/extracts.
Chris Lattner8eab8ff2007-08-10 17:10:08 +0000307 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner40ff7012007-08-03 16:18:34 +0000308 unsigned NumSourceElts =
309 cast<llvm::VectorType>(Vec->getType())->getNumElements();
310
311 if (NumResultElts == NumSourceElts) {
312 llvm::SmallVector<llvm::Constant*, 4> Mask;
313 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000314 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner40ff7012007-08-03 16:18:34 +0000315 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
316 }
317
318 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
319 Vec = Builder.CreateShuffleVector(Vec,
320 llvm::UndefValue::get(Vec->getType()),
321 MaskV, "tmp");
322 return RValue::get(Vec);
323 }
324
325 // Start out with an undef of the result type.
326 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
327
328 // Extract/Insert each element of the result.
329 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000330 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner40ff7012007-08-03 16:18:34 +0000331 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
332 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
333
334 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
335 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
336 }
337
338 return RValue::get(Result);
339}
340
341
Chris Lattner9369a562007-06-29 16:31:29 +0000342
Chris Lattner8394d792007-06-05 20:53:16 +0000343/// EmitStoreThroughLValue - Store the specified rvalue into the specified
344/// lvalue, where both are guaranteed to the have the same type, and that type
345/// is 'Ty'.
346void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
347 QualType Ty) {
Chris Lattner41d480e2007-08-03 16:28:33 +0000348 if (!Dst.isSimple()) {
349 if (Dst.isVectorElt()) {
350 // Read/modify/write the vector, inserting the new element.
Eli Friedman327944b2008-06-13 23:01:12 +0000351 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
352 Dst.isVolatileQualified(), "tmp");
Chris Lattner4647a212007-08-31 22:49:20 +0000353 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner41d480e2007-08-03 16:28:33 +0000354 Dst.getVectorIdx(), "vecins");
Eli Friedman327944b2008-06-13 23:01:12 +0000355 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner41d480e2007-08-03 16:28:33 +0000356 return;
357 }
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000358
Nate Begemance4d7fc2008-04-18 23:10:10 +0000359 // If this is an update of extended vector elements, insert them as
360 // appropriate.
361 if (Dst.isExtVectorElt())
362 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000363
364 if (Dst.isBitfield())
365 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
366
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000367 if (Dst.isPropertyRef())
368 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
369
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000370 if (Dst.isKVCRef())
371 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
372
Lauro Ramos Venanciodb449042008-01-22 22:38:35 +0000373 assert(0 && "Unknown LValue type");
Chris Lattner41d480e2007-08-03 16:28:33 +0000374 }
Chris Lattner8394d792007-06-05 20:53:16 +0000375
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000376 if (Dst.isObjCWeak()) {
377 // load of a __weak object.
378 llvm::Value *LvalueDst = Dst.getAddress();
379 llvm::Value *src = Src.getScalarVal();
380 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
381 return;
382 }
383
384 if (Dst.isObjCStrong()) {
385 // load of a __strong object.
386 llvm::Value *LvalueDst = Dst.getAddress();
387 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian75686a52008-11-20 20:53:20 +0000388 if (Dst.isObjCIvar())
389 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
390 else
391 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000392 return;
393 }
394
Chris Lattner09153c02007-06-22 18:48:09 +0000395 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner6278e6a2007-08-11 00:04:45 +0000396 assert(Src.isScalar() && "Can't emit an agg store with this method");
397 // FIXME: Handle volatility etc.
Chris Lattner4647a212007-08-31 22:49:20 +0000398 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lamb77560fb2007-12-17 01:11:20 +0000399 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
400 const llvm::Type *AddrTy = DstPtr->getElementType();
401 unsigned AS = DstPtr->getAddressSpace();
Chris Lattner8394d792007-06-05 20:53:16 +0000402
Chris Lattner6278e6a2007-08-11 00:04:45 +0000403 if (AddrTy != SrcTy)
Christopher Lamb77560fb2007-12-17 01:11:20 +0000404 DstAddr = Builder.CreateBitCast(DstAddr,
405 llvm::PointerType::get(SrcTy, AS),
Chris Lattner6278e6a2007-08-11 00:04:45 +0000406 "storetmp");
Eli Friedman327944b2008-06-13 23:01:12 +0000407 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Chris Lattner8394d792007-06-05 20:53:16 +0000408}
409
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000410void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000411 QualType Ty,
412 llvm::Value **Result) {
Daniel Dunbaread7c912008-08-06 05:08:45 +0000413 unsigned StartBit = Dst.getBitfieldStartBit();
414 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000415 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000416
Daniel Dunbaread7c912008-08-06 05:08:45 +0000417 const llvm::Type *EltTy =
418 cast<llvm::PointerType>(Ptr->getType())->getElementType();
419 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
420
421 // Get the new value, cast to the appropriate type and masked to
422 // exactly the size of the bit-field.
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000423 llvm::Value *SrcVal = Src.getScalarVal();
424 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbaread7c912008-08-06 05:08:45 +0000425 llvm::Constant *Mask =
426 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
427 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000428
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000429 // Return the new value of the bit-field, if requested.
430 if (Result) {
431 // Cast back to the proper type for result.
432 const llvm::Type *SrcTy = SrcVal->getType();
433 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
434 "bf.reload.val");
435
436 // Sign extend if necessary.
437 if (Dst.isBitfieldSigned()) {
438 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
439 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
440 SrcTySize - BitfieldSize);
441 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
442 ExtraBits, "bf.reload.sext");
443 }
444
445 *Result = SrcTrunc;
446 }
447
Daniel Dunbaread7c912008-08-06 05:08:45 +0000448 // In some cases the bitfield may straddle two memory locations.
449 // Emit the low part first and check to see if the high needs to be
450 // done.
451 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
452 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
453 "bf.prev.low");
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000454
Daniel Dunbaread7c912008-08-06 05:08:45 +0000455 // Compute the mask for zero-ing the low part of this bitfield.
456 llvm::Constant *InvMask =
457 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
458 StartBit + LowBits));
459
460 // Compute the new low part as
461 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
462 // with the shift of NewVal implicitly stripping the high bits.
463 llvm::Value *NewLowVal =
464 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
465 "bf.value.lo");
466 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
467 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
468
469 // Write back.
470 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000471
Daniel Dunbaread7c912008-08-06 05:08:45 +0000472 // If the low part doesn't cover the bitfield emit a high part.
473 if (LowBits < BitfieldSize) {
474 unsigned HighBits = BitfieldSize - LowBits;
475 llvm::Value *HighPtr =
476 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
477 "bf.ptr.hi");
478 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
479 Dst.isVolatileQualified(),
480 "bf.prev.hi");
481
482 // Compute the mask for zero-ing the high part of this bitfield.
483 llvm::Constant *InvMask =
484 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
485
486 // Compute the new high part as
487 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
488 // where the high bits of NewVal have already been cleared and the
489 // shift stripping the low bits.
490 llvm::Value *NewHighVal =
491 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
492 "bf.value.high");
493 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
494 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
495
496 // Write back.
497 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
498 }
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000499}
500
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000501void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
502 LValue Dst,
503 QualType Ty) {
504 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
505}
506
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000507void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
508 LValue Dst,
509 QualType Ty) {
510 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
511}
512
Nate Begemance4d7fc2008-04-18 23:10:10 +0000513void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
514 LValue Dst,
515 QualType Ty) {
Chris Lattner41d480e2007-08-03 16:28:33 +0000516 // This access turns into a read/modify/write of the vector. Load the input
517 // value now.
Eli Friedman327944b2008-06-13 23:01:12 +0000518 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
519 Dst.isVolatileQualified(), "tmp");
Nate Begemanf322eab2008-05-09 06:41:27 +0000520 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner41d480e2007-08-03 16:28:33 +0000521
Chris Lattner4647a212007-08-31 22:49:20 +0000522 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner41d480e2007-08-03 16:28:33 +0000523
Chris Lattner3a44aa72007-08-03 16:37:04 +0000524 if (const VectorType *VTy = Ty->getAsVectorType()) {
525 unsigned NumSrcElts = VTy->getNumElements();
526
527 // Extract/Insert each element.
528 for (unsigned i = 0; i != NumSrcElts; ++i) {
529 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
530 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
531
Dan Gohman75d69da2008-05-22 00:50:06 +0000532 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner3a44aa72007-08-03 16:37:04 +0000533 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
534 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
535 }
536 } else {
537 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman75d69da2008-05-22 00:50:06 +0000538 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner41d480e2007-08-03 16:28:33 +0000539 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
540 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner41d480e2007-08-03 16:28:33 +0000541 }
542
Eli Friedman327944b2008-06-13 23:01:12 +0000543 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner41d480e2007-08-03 16:28:33 +0000544}
545
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000546/// SetVarDeclObjCAttribute - Set __weak/__strong attributes into the LValue
547/// object.
Fariborz Jahanian75686a52008-11-20 20:53:20 +0000548static void SetVarDeclObjCAttribute(ASTContext &Ctx, const Decl *VD,
Fariborz Jahaniand4081c62008-11-20 18:10:58 +0000549 const QualType &Ty, LValue &LV)
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000550{
551 if (const ObjCGCAttr *A = VD->getAttr<ObjCGCAttr>()) {
552 ObjCGCAttr::GCAttrTypes attrType = A->getType();
553 LValue::SetObjCType(attrType == ObjCGCAttr::Weak,
554 attrType == ObjCGCAttr::Strong, LV);
555 }
Fariborz Jahaniand4081c62008-11-20 18:10:58 +0000556 else if (Ctx.getLangOptions().ObjC1 &&
557 Ctx.getLangOptions().getGCMode() != LangOptions::NonGC) {
558 // Default behavious under objective-c's gc is for objective-c pointers
559 // be treated as though they were declared as __strong.
560 if (Ctx.isObjCObjectPointerType(Ty))
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000561 LValue::SetObjCType(false, true, LV);
562 }
563}
Chris Lattnerd7f58862007-06-02 05:24:33 +0000564
565LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff08899ff2008-04-15 22:42:06 +0000566 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
567
Chris Lattner5696e7b2008-06-17 18:05:57 +0000568 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
569 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000570 LValue LV;
571 if (VD->getStorageClass() == VarDecl::Extern) {
572 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
573 E->getType().getCVRQualifiers());
574 }
Lauro Ramos Venanciobada8d42008-02-16 22:30:38 +0000575 else {
Steve Naroff08899ff2008-04-15 22:42:06 +0000576 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciobada8d42008-02-16 22:30:38 +0000577 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000578 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciobada8d42008-02-16 22:30:38 +0000579 }
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000580 if (VD->isBlockVarDecl() &&
581 (VD->getStorageClass() == VarDecl::Static ||
582 VD->getStorageClass() == VarDecl::Extern))
Fariborz Jahaniand4081c62008-11-20 18:10:58 +0000583 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000584 return LV;
Steve Naroff08899ff2008-04-15 22:42:06 +0000585 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanian406b1172008-11-18 20:18:11 +0000586 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
587 E->getType().getCVRQualifiers());
Fariborz Jahaniand4081c62008-11-20 18:10:58 +0000588 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian406b1172008-11-18 20:18:11 +0000589 return LV;
Steve Naroff08899ff2008-04-15 22:42:06 +0000590 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbar9c426522008-07-29 23:18:29 +0000591 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman327944b2008-06-13 23:01:12 +0000592 E->getType().getCVRQualifiers());
Chris Lattnerd7f58862007-06-02 05:24:33 +0000593 }
Chris Lattner5696e7b2008-06-17 18:05:57 +0000594 else if (const ImplicitParamDecl *IPD =
595 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
596 llvm::Value *V = LocalDeclMap[IPD];
597 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
598 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
599 }
Chris Lattnerd7f58862007-06-02 05:24:33 +0000600 assert(0 && "Unimp declref");
Chris Lattner793d10c2007-09-16 19:23:47 +0000601 //an invalid LValue, but the assert will
602 //ensure that this point is never reached.
603 return LValue();
Chris Lattnerd7f58862007-06-02 05:24:33 +0000604}
Chris Lattnere47e4402007-06-01 18:02:12 +0000605
Chris Lattner8394d792007-06-05 20:53:16 +0000606LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
607 // __extension__ doesn't affect lvalue-ness.
608 if (E->getOpcode() == UnaryOperator::Extension)
609 return EmitLValue(E->getSubExpr());
610
Chris Lattner0f398c42008-07-26 22:37:01 +0000611 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner595db862007-10-30 22:53:42 +0000612 switch (E->getOpcode()) {
613 default: assert(0 && "Unknown unary operator lvalue!");
614 case UnaryOperator::Deref:
Eli Friedman327944b2008-06-13 23:01:12 +0000615 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattner574dee62008-07-26 22:17:49 +0000616 ExprTy->getAsPointerType()->getPointeeType()
617 .getCVRQualifiers());
Chris Lattner595db862007-10-30 22:53:42 +0000618 case UnaryOperator::Real:
619 case UnaryOperator::Imag:
620 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner3e593cd2008-03-19 05:19:41 +0000621 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
622 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattner574dee62008-07-26 22:17:49 +0000623 Idx, "idx"),
624 ExprTy.getCVRQualifiers());
Chris Lattner595db862007-10-30 22:53:42 +0000625 }
Chris Lattner8394d792007-06-05 20:53:16 +0000626}
627
Chris Lattner4347e3692007-06-06 04:54:52 +0000628LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbarc4baa062008-08-13 23:20:05 +0000629 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4347e3692007-06-06 04:54:52 +0000630}
631
Daniel Dunbarb3517472008-10-17 21:58:32 +0000632LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson625bfc82007-07-21 05:21:51 +0000633 std::string GlobalVarName;
Daniel Dunbarb3517472008-10-17 21:58:32 +0000634
635 switch (Type) {
Anders Carlsson625bfc82007-07-21 05:21:51 +0000636 default:
Daniel Dunbarb3517472008-10-17 21:58:32 +0000637 assert(0 && "Invalid type");
Chris Lattner6307f192008-08-10 01:53:14 +0000638 case PredefinedExpr::Func:
Anders Carlsson625bfc82007-07-21 05:21:51 +0000639 GlobalVarName = "__func__.";
640 break;
Chris Lattner6307f192008-08-10 01:53:14 +0000641 case PredefinedExpr::Function:
Anders Carlsson625bfc82007-07-21 05:21:51 +0000642 GlobalVarName = "__FUNCTION__.";
643 break;
Chris Lattner6307f192008-08-10 01:53:14 +0000644 case PredefinedExpr::PrettyFunction:
Anders Carlsson625bfc82007-07-21 05:21:51 +0000645 // FIXME:: Demangle C++ method names
646 GlobalVarName = "__PRETTY_FUNCTION__.";
647 break;
648 }
Daniel Dunbarb3517472008-10-17 21:58:32 +0000649
650 std::string FunctionName;
651 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
652 FunctionName = FD->getName();
653 } else {
654 // Just get the mangled name.
655 FunctionName = CurFn->getName();
656 }
657
Chris Lattner5506f8c2008-04-04 04:07:35 +0000658 GlobalVarName += FunctionName;
Daniel Dunbarb3517472008-10-17 21:58:32 +0000659 llvm::Constant *C =
660 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
661 return LValue::MakeAddr(C, 0);
662}
663
664LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
665 switch (E->getIdentType()) {
666 default:
667 return EmitUnsupportedLValue(E, "predefined expression");
668 case PredefinedExpr::Func:
669 case PredefinedExpr::Function:
670 case PredefinedExpr::PrettyFunction:
671 return EmitPredefinedFunctionName(E->getIdentType());
672 }
Anders Carlsson625bfc82007-07-21 05:21:51 +0000673}
674
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000675LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenekc81614d2007-08-20 16:18:38 +0000676 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner2da04b32007-08-24 05:35:26 +0000677 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000678
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000679 // If the base is a vector type, then we are forming a vector element lvalue
680 // with this subscript.
Eli Friedman327944b2008-06-13 23:01:12 +0000681 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000682 // Emit the vector as an lvalue to get its address.
Eli Friedman327944b2008-06-13 23:01:12 +0000683 LValue LHS = EmitLValue(E->getBase());
Ted Kremenekc81614d2007-08-20 16:18:38 +0000684 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000685 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman327944b2008-06-13 23:01:12 +0000686 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
687 E->getBase()->getType().getCVRQualifiers());
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000688 }
689
Ted Kremenekc81614d2007-08-20 16:18:38 +0000690 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner2da04b32007-08-24 05:35:26 +0000691 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000692
Ted Kremenekc81614d2007-08-20 16:18:38 +0000693 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner5ebb2fe2007-08-08 17:43:05 +0000694 QualType IdxTy = E->getIdx()->getType();
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000695 bool IdxSigned = IdxTy->isSignedIntegerType();
Chris Lattner23b7eb62007-06-15 23:05:46 +0000696 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000697 if (IdxBitwidth != LLVMPointerWidth)
Chris Lattner23b7eb62007-06-15 23:05:46 +0000698 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000699 IdxSigned, "idxprom");
700
701 // We know that the pointer points to a type of the correct size, unless the
702 // size is a VLA.
Eli Friedmana682d392008-02-15 12:20:59 +0000703 if (!E->getType()->isConstantSizeType())
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000704 return EmitUnsupportedLValue(E, "VLA index");
Chris Lattner0f398c42008-07-26 22:37:01 +0000705 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattner574dee62008-07-26 22:17:49 +0000706
Eli Friedman327944b2008-06-13 23:01:12 +0000707 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattner574dee62008-07-26 22:17:49 +0000708 ExprTy->getAsPointerType()->getPointeeType()
709 .getCVRQualifiers());
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000710}
711
Nate Begemand3862152008-05-13 21:03:02 +0000712static
713llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
714 llvm::SmallVector<llvm::Constant *, 4> CElts;
715
716 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
717 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
718
719 return llvm::ConstantVector::get(&CElts[0], CElts.size());
720}
721
Chris Lattner9e751ca2007-08-02 23:37:31 +0000722LValue CodeGenFunction::
Nate Begemance4d7fc2008-04-18 23:10:10 +0000723EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner9e751ca2007-08-02 23:37:31 +0000724 // Emit the base vector as an l-value.
725 LValue Base = EmitLValue(E->getBase());
Chris Lattner9e751ca2007-08-02 23:37:31 +0000726
Nate Begemand3862152008-05-13 21:03:02 +0000727 // Encode the element access list into a vector of unsigned indices.
728 llvm::SmallVector<unsigned, 4> Indices;
729 E->getEncodedElementAccess(Indices);
730
731 if (Base.isSimple()) {
732 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman327944b2008-06-13 23:01:12 +0000733 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
734 E->getBase()->getType().getCVRQualifiers());
Nate Begemand3862152008-05-13 21:03:02 +0000735 }
736 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
737
738 llvm::Constant *BaseElts = Base.getExtVectorElts();
739 llvm::SmallVector<llvm::Constant *, 4> CElts;
740
741 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
742 if (isa<llvm::ConstantAggregateZero>(BaseElts))
743 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
744 else
745 CElts.push_back(BaseElts->getOperand(Indices[i]));
746 }
747 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman327944b2008-06-13 23:01:12 +0000748 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
749 E->getBase()->getType().getCVRQualifiers());
Chris Lattner9e751ca2007-08-02 23:37:31 +0000750}
751
Devang Patel30efa2e2007-10-23 20:28:39 +0000752LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelb37b12d2007-12-11 21:33:16 +0000753 bool isUnion = false;
Fariborz Jahanian735a4152008-11-21 18:14:01 +0000754 bool isIvar = false;
Devang Pateld68df202007-10-24 22:26:28 +0000755 Expr *BaseExpr = E->getBase();
Devang Pateld68df202007-10-24 22:26:28 +0000756 llvm::Value *BaseValue = NULL;
Eli Friedman327944b2008-06-13 23:01:12 +0000757 unsigned CVRQualifiers=0;
758
Chris Lattner4e4186b2007-12-02 18:52:07 +0000759 // 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 +0000760 if (E->isArrow()) {
Devang Patel7718d7a2007-10-26 18:15:21 +0000761 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelb37b12d2007-12-11 21:33:16 +0000762 const PointerType *PTy =
Chris Lattner0f398c42008-07-26 22:37:01 +0000763 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelb37b12d2007-12-11 21:33:16 +0000764 if (PTy->getPointeeType()->isUnionType())
765 isUnion = true;
Eli Friedman327944b2008-06-13 23:01:12 +0000766 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelb37b12d2007-12-11 21:33:16 +0000767 }
Chris Lattner4e4186b2007-12-02 18:52:07 +0000768 else {
769 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian735a4152008-11-21 18:14:01 +0000770 if (BaseLV.isObjCIvar())
771 isIvar = true;
Chris Lattner4e4186b2007-12-02 18:52:07 +0000772 // FIXME: this isn't right for bitfields.
773 BaseValue = BaseLV.getAddress();
Devang Patelb37b12d2007-12-11 21:33:16 +0000774 if (BaseExpr->getType()->isUnionType())
775 isUnion = true;
Eli Friedman327944b2008-06-13 23:01:12 +0000776 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner4e4186b2007-12-02 18:52:07 +0000777 }
Devang Patel30efa2e2007-10-23 20:28:39 +0000778
779 FieldDecl *Field = E->getMemberDecl();
Fariborz Jahanian735a4152008-11-21 18:14:01 +0000780 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
781 LValue::SetObjCIvar(MemExpLV, isIvar);
782 return MemExpLV;
Eli Friedmana62f3e12008-02-09 08:50:58 +0000783}
Devang Patel30efa2e2007-10-23 20:28:39 +0000784
Eli Friedmana62f3e12008-02-09 08:50:58 +0000785LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
786 FieldDecl* Field,
Eli Friedman327944b2008-06-13 23:01:12 +0000787 bool isUnion,
788 unsigned CVRQualifiers)
Eli Friedmana62f3e12008-02-09 08:50:58 +0000789{
790 llvm::Value *V;
791 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venancio9eff02d2008-02-07 19:29:53 +0000792
Eli Friedman133e8042008-05-29 11:33:25 +0000793 if (Field->isBitField()) {
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000794 // FIXME: CodeGenTypes should expose a method to get the appropriate
795 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedman149a57f2008-06-01 15:16:01 +0000796 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner3e593cd2008-03-19 05:19:41 +0000797 const llvm::PointerType *BaseTy =
Lauro Ramos Venancio9eff02d2008-02-07 19:29:53 +0000798 cast<llvm::PointerType>(BaseValue->getType());
799 unsigned AS = BaseTy->getAddressSpace();
800 BaseValue = Builder.CreateBitCast(BaseValue,
801 llvm::PointerType::get(FieldTy, AS),
802 "tmp");
803 V = Builder.CreateGEP(BaseValue,
804 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
805 "tmp");
Eli Friedman133e8042008-05-29 11:33:25 +0000806
807 CodeGenTypes::BitFieldInfo bitFieldInfo =
808 CGM.getTypes().getBitFieldInfo(Field);
809 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman327944b2008-06-13 23:01:12 +0000810 Field->getType()->isSignedIntegerType(),
811 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venancio9eff02d2008-02-07 19:29:53 +0000812 }
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000813
Eli Friedman133e8042008-05-29 11:33:25 +0000814 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
815
Devang Pateled93c3c2007-10-26 19:42:18 +0000816 // Match union field type.
Lauro Ramos Venancio9eff02d2008-02-07 19:29:53 +0000817 if (isUnion) {
Eli Friedman327944b2008-06-13 23:01:12 +0000818 const llvm::Type *FieldTy =
819 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patelffe1e212007-10-30 20:59:40 +0000820 const llvm::PointerType * BaseTy =
821 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman9a5ffcb2008-05-21 13:24:44 +0000822 unsigned AS = BaseTy->getAddressSpace();
823 V = Builder.CreateBitCast(V,
824 llvm::PointerType::get(FieldTy, AS),
825 "tmp");
Devang Pateled93c3c2007-10-26 19:42:18 +0000826 }
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000827
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000828 LValue LV =
829 LValue::MakeAddr(V,
830 Field->getType().getCVRQualifiers()|CVRQualifiers);
831 if (const ObjCGCAttr *A = Field->getAttr<ObjCGCAttr>()) {
832 ObjCGCAttr::GCAttrTypes attrType = A->getType();
833 // __weak attribute on a field is ignored.
834 LValue::SetObjCType(false, attrType == ObjCGCAttr::Strong, LV);
835 }
836 else if (CGM.getLangOptions().ObjC1 &&
837 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
838 QualType ExprTy = Field->getType();
839 if (getContext().isObjCObjectPointerType(ExprTy))
840 LValue::SetObjCType(false, true, LV);
841 }
842 return LV;
Devang Patel30efa2e2007-10-23 20:28:39 +0000843}
844
Eli Friedman327944b2008-06-13 23:01:12 +0000845LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
846{
Eli Friedman9fd8b682008-05-13 23:18:27 +0000847 const llvm::Type *LTy = ConvertType(E->getType());
848 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
849
850 const Expr* InitExpr = E->getInitializer();
Eli Friedman327944b2008-06-13 23:01:12 +0000851 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman9fd8b682008-05-13 23:18:27 +0000852
853 if (E->getType()->isComplexType()) {
854 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
855 } else if (hasAggregateLLVMType(E->getType())) {
856 EmitAnyExpr(InitExpr, DeclPtr, false);
857 } else {
858 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
859 }
860
861 return Result;
862}
863
Chris Lattnere47e4402007-06-01 18:02:12 +0000864//===--------------------------------------------------------------------===//
865// Expression Emission
866//===--------------------------------------------------------------------===//
867
Chris Lattner76ba8492007-08-20 22:37:10 +0000868
Chris Lattner2b228c92007-06-15 21:34:29 +0000869RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson1d8e5212007-08-20 18:05:56 +0000870 if (const ImplicitCastExpr *IcExpr =
871 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
872 if (const DeclRefExpr *DRExpr =
873 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
874 if (const FunctionDecl *FDecl =
875 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
876 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
877 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbar8cde00a2008-09-04 03:20:13 +0000878
Chris Lattner2da04b32007-08-24 05:35:26 +0000879 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman9d92ce82008-01-30 01:32:06 +0000880 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek08e17112008-06-17 02:43:46 +0000881 E->arg_begin(), E->arg_end());
Nate Begeman1e36a852008-01-17 17:46:27 +0000882}
883
Ted Kremenek08e17112008-06-17 02:43:46 +0000884RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
885 CallExpr::const_arg_iterator ArgBeg,
886 CallExpr::const_arg_iterator ArgEnd) {
887
Nate Begeman1e36a852008-01-17 17:46:27 +0000888 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek08e17112008-06-17 02:43:46 +0000889 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattner9e47ead2007-08-31 04:44:06 +0000890}
891
Daniel Dunbar8cde00a2008-09-04 03:20:13 +0000892LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
893 // Can only get l-value for binary operator expressions which are a
894 // simple assignment of aggregate type.
895 if (E->getOpcode() != BinaryOperator::Assign)
896 return EmitUnsupportedLValue(E, "binary l-value expression");
897
898 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
899 EmitAggExpr(E, Temp, false);
900 // FIXME: Are these qualifiers correct?
901 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
902}
903
Christopher Lambd91c3d42007-12-29 05:02:41 +0000904LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
905 // Can only get l-value for call expression returning aggregate type
906 RValue RV = EmitCallExpr(E);
Eli Friedman327944b2008-06-13 23:01:12 +0000907 // FIXME: can this be volatile?
908 return LValue::MakeAddr(RV.getAggregateAddr(),
909 E->getType().getCVRQualifiers());
Christopher Lambd91c3d42007-12-29 05:02:41 +0000910}
911
Argyrios Kyrtzidis07052352008-09-10 02:36:38 +0000912LValue
913CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
914 EmitLocalBlockVarDecl(*E->getVarDecl());
915 return EmitDeclRefLValue(E);
916}
917
Daniel Dunbarc8317a42008-08-23 10:51:21 +0000918LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
919 // Can only get l-value for message expression returning aggregate type
920 RValue RV = EmitObjCMessageExpr(E);
921 // FIXME: can this be volatile?
922 return LValue::MakeAddr(RV.getAggregateAddr(),
923 E->getType().getCVRQualifiers());
924}
925
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000926llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
927 const ObjCIvarDecl *Ivar) {
Chris Lattner4bd55962008-03-30 23:03:07 +0000928 // Objective-C objects are traditionally C structures with their layout
929 // defined at compile-time. In some implementations, their layout is not
930 // defined until run time in order to allow instance variables to be added to
931 // a class without recompiling all of the subclasses. If this is the case
932 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
933 // implement the lookup itself.
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000934 if (CGM.getObjCRuntime().LateBoundIVars())
935 assert(0 && "late-bound ivars are unsupported");
Chris Lattner5506f8c2008-04-04 04:07:35 +0000936
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000937 const llvm::Type *InterfaceLTy =
938 CGM.getTypes().ConvertType(getContext().getObjCInterfaceType(Interface));
939 const llvm::StructLayout *Layout =
940 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceLTy));
941 uint64_t Offset =
942 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(Ivar));
943
944 return llvm::ConstantInt::get(CGM.getTypes().ConvertType(getContext().LongTy),
945 Offset);
946}
947
948LValue CodeGenFunction::EmitLValueForIvar(llvm::Value *BaseValue,
949 const ObjCIvarDecl *Ivar,
950 unsigned CVRQualifiers) {
951 // See comment in EmitIvarOffset.
952 if (CGM.getObjCRuntime().LateBoundIVars())
953 assert(0 && "late-bound ivars are unsupported");
954
955 if (Ivar->isBitField())
956 assert(0 && "ivar bitfields are unsupported");
957
958 // TODO: Add a special case for isa (index 0)
959 unsigned Index = CGM.getTypes().getLLVMFieldNo(Ivar);
960
961 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
Fariborz Jahanian75686a52008-11-20 20:53:20 +0000962 LValue LV = LValue::MakeAddr(V, Ivar->getType().getCVRQualifiers()|CVRQualifiers);
963 SetVarDeclObjCAttribute(getContext(), Ivar, Ivar->getType(), LV);
Fariborz Jahanian735a4152008-11-21 18:14:01 +0000964 LValue::SetObjCIvar(LV, true);
Fariborz Jahanian75686a52008-11-20 20:53:20 +0000965 return LV;
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000966}
967
968LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonc13b85a2008-08-25 01:53:23 +0000969 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
970 llvm::Value *BaseValue = 0;
971 const Expr *BaseExpr = E->getBase();
972 unsigned CVRQualifiers = 0;
973 if (E->isArrow()) {
974 BaseValue = EmitScalarExpr(BaseExpr);
975 const PointerType *PTy =
976 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
977 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
978 } else {
979 LValue BaseLV = EmitLValue(BaseExpr);
980 // FIXME: this isn't right for bitfields.
981 BaseValue = BaseLV.getAddress();
982 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
983 }
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000984
985 return EmitLValueForIvar(BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner4bd55962008-03-30 23:03:07 +0000986}
987
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000988LValue
989CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
990 // This is a special l-value that just issues sends when we load or
991 // store through it.
992 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
993}
994
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000995LValue
996CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
997 // This is a special l-value that just issues sends when we load or
998 // store through it.
999 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1000}
1001
Douglas Gregor8ea1f532008-11-04 14:56:14 +00001002LValue
1003CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
1004 return EmitUnsupportedLValue(E, "use of super");
1005}
1006
Nate Begeman1e36a852008-01-17 17:46:27 +00001007RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek08e17112008-06-17 02:43:46 +00001008 CallExpr::const_arg_iterator ArgBeg,
1009 CallExpr::const_arg_iterator ArgEnd) {
1010
Chris Lattnerc14236b2007-07-10 22:18:37 +00001011 // The callee type will always be a pointer to function type, get the function
1012 // type.
Chris Lattner0f398c42008-07-26 22:37:01 +00001013 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner330f0f22008-07-31 04:58:58 +00001014 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbarc722b852008-08-30 03:02:31 +00001015
1016 CallArgList Args;
1017 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar41cf9de2008-09-09 01:06:48 +00001018 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
1019 I->getType()));
Daniel Dunbarc722b852008-08-30 03:02:31 +00001020
1021 return EmitCall(Callee, ResultType, Args);
Daniel Dunbar97db84c2008-08-23 03:46:30 +00001022}