blob: a9cf4535cf84c62d816c74c8b471973936d5eb3d [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-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 Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Daniel Dunbara8f02052008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbar84bb85f2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbareee5cd12008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbar64789f82008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedmana04e70d2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Chris Lattner4b009652007-07-25 00:24:17 +000021using namespace clang;
22using namespace CodeGen;
23
24//===--------------------------------------------------------------------===//
25// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
28/// CreateTempAlloca - This creates a alloca and inserts it into the entry
29/// block.
30llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
31 const char *Name) {
32 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
33}
34
35/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
36/// expression and compare the result against zero, returning an Int1Ty value.
37llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattnercc50a512007-08-26 16:46:58 +000038 QualType BoolTy = getContext().BoolTy;
Chris Lattnerde0908b2008-04-04 16:54:41 +000039 if (!E->getType()->isAnyComplexType())
Chris Lattnercc50a512007-08-26 16:46:58 +000040 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner4b009652007-07-25 00:24:17 +000041
Chris Lattnercc50a512007-08-26 16:46:58 +000042 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattner4b009652007-07-25 00:24:17 +000043}
44
Chris Lattnere24c4cf2007-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 Lattnerde0908b2008-04-04 16:54:41 +000053 else if (E->getType()->isAnyComplexType())
Chris Lattnere24c4cf2007-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 Dunbar0a2da0f2008-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 Gohman4751a3a2008-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 Lattnere24c4cf2007-08-31 22:49:20 +000081
Chris Lattner4b009652007-07-25 00:24:17 +000082//===----------------------------------------------------------------------===//
83// LValue Expression Emission
84//===----------------------------------------------------------------------===//
85
Daniel Dunbarde1bd942008-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 Lattner4b009652007-07-25 00:24:17 +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///
110LValue CodeGenFunction::EmitLValue(const Expr *E) {
111 switch (E->getStmtClass()) {
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000112 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000113
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000114 case Expr::BinaryOperatorClass:
115 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000116 case Expr::CallExprClass:
117 case Expr::CXXOperatorCallExprClass:
118 return EmitCallExprLValue(cast<CallExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000119 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
120 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner69909292008-08-10 01:53:14 +0000121 case Expr::PredefinedExprClass:
122 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000123 case Expr::StringLiteralClass:
124 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000125
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +0000126 case Expr::CXXConditionDeclExprClass:
127 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
128
Daniel Dunbar5e105892008-08-23 10:51:21 +0000129 case Expr::ObjCMessageExprClass:
130 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000131 case Expr::ObjCIvarRefExprClass:
132 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000133 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbare6c31752008-08-29 08:11:39 +0000134 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Douglas Gregord8606632008-11-04 14:56:14 +0000135 case Expr::ObjCSuperExprClass:
136 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
137
Chris Lattner4b009652007-07-25 00:24:17 +0000138 case Expr::UnaryOperatorClass:
139 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
140 case Expr::ArraySubscriptExprClass:
141 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemanaf6ed502008-04-18 23:10:10 +0000142 case Expr::ExtVectorElementExprClass:
143 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patel41b66252007-10-23 20:28:39 +0000144 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000145 case Expr::CompoundLiteralExprClass:
146 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000147 }
148}
149
150/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
151/// this method emits the address of the lvalue, then loads the result as an
152/// rvalue, returning the rvalue.
153RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000154 if (LV.isObjCWeak()) {
Fariborz Jahanian3305ad32008-11-18 21:45:40 +0000155 // load of a __weak object.
156 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian252d87f2008-11-18 22:37:34 +0000157 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian3305ad32008-11-18 21:45:40 +0000158 AddrWeakObj);
159 return RValue::get(read_weak);
160 }
161
Chris Lattner4b009652007-07-25 00:24:17 +0000162 if (LV.isSimple()) {
163 llvm::Value *Ptr = LV.getAddress();
164 const llvm::Type *EltTy =
165 cast<llvm::PointerType>(Ptr->getType())->getElementType();
166
167 // Simple scalar l-value.
Dan Gohman377ba9f2008-05-22 22:12:56 +0000168 if (EltTy->isSingleValueType()) {
Eli Friedman2e630542008-06-13 23:01:12 +0000169 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner6b79f4e2008-01-30 07:01:17 +0000170
171 // Bool can have different representation in memory than in registers.
172 if (ExprType->isBooleanType()) {
173 if (V->getType() != llvm::Type::Int1Ty)
174 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
175 }
176
177 return RValue::get(V);
178 }
Chris Lattner4b009652007-07-25 00:24:17 +0000179
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000180 assert(ExprType->isFunctionType() && "Unknown scalar value");
181 return RValue::get(Ptr);
Chris Lattner4b009652007-07-25 00:24:17 +0000182 }
183
184 if (LV.isVectorElt()) {
Eli Friedman2e630542008-06-13 23:01:12 +0000185 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
186 LV.isVolatileQualified(), "tmp");
Chris Lattner4b009652007-07-25 00:24:17 +0000187 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
188 "vecext"));
189 }
Chris Lattnera735fac2007-08-03 00:16:29 +0000190
191 // If this is a reference to a subset of the elements of a vector, either
192 // shuffle the input or extract/insert them as appropriate.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000193 if (LV.isExtVectorElt())
194 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000195
196 if (LV.isBitfield())
197 return EmitLoadOfBitfieldLValue(LV, ExprType);
198
Daniel Dunbare6c31752008-08-29 08:11:39 +0000199 if (LV.isPropertyRef())
200 return EmitLoadOfPropertyRefLValue(LV, ExprType);
201
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000202 assert(0 && "Unknown LValue type!");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000203 //an invalid RValue, but the assert will
204 //ensure that this point is never reached
205 return RValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000206}
207
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000208RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
209 QualType ExprType) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000210 unsigned StartBit = LV.getBitfieldStartBit();
211 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000212 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000213
214 const llvm::Type *EltTy =
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000215 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000216 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000217
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000218 // In some cases the bitfield may straddle two memory locations.
219 // Currently we load the entire bitfield, then do the magic to
220 // sign-extend it if necessary. This results in somewhat more code
221 // than necessary for the common case (one load), since two shifts
222 // accomplish both the masking and sign extension.
223 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
224 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
225
226 // Shift to proper location.
Daniel Dunbar198edd52008-11-13 02:20:34 +0000227 if (StartBit)
228 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
229 "bf.lo");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000230
231 // Mask off unused bits.
232 llvm::Constant *LowMask =
233 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
234 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
235
236 // Fetch the high bits if necessary.
237 if (LowBits < BitfieldSize) {
238 unsigned HighBits = BitfieldSize - LowBits;
239 llvm::Value *HighPtr =
240 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
241 "bf.ptr.hi");
242 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
243 LV.isVolatileQualified(),
244 "tmp");
245
246 // Mask off unused bits.
247 llvm::Constant *HighMask =
248 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
249 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000250
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000251 // Shift to proper location and or in to bitfield value.
252 HighVal = Builder.CreateShl(HighVal,
253 llvm::ConstantInt::get(EltTy, LowBits));
254 Val = Builder.CreateOr(Val, HighVal, "bf.val");
255 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000256
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000257 // Sign extend if necessary.
258 if (LV.isBitfieldSigned()) {
259 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
260 EltTySize - BitfieldSize);
261 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
262 ExtraBits, "bf.val.sext");
263 }
Eli Friedmana04e70d2008-05-17 20:03:47 +0000264
265 // The bitfield type and the normal type differ when the storage sizes
266 // differ (currently just _Bool).
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000267 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000268
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000269 return RValue::get(Val);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000270}
271
Daniel Dunbare6c31752008-08-29 08:11:39 +0000272RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
273 QualType ExprType) {
274 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
275}
276
Chris Lattner944f7962007-08-03 16:18:34 +0000277// If this is a reference to a subset of the elements of a vector, either
278// shuffle the input or extract/insert them as appropriate.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000279RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
280 QualType ExprType) {
Eli Friedman2e630542008-06-13 23:01:12 +0000281 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
282 LV.isVolatileQualified(), "tmp");
Chris Lattner944f7962007-08-03 16:18:34 +0000283
Nate Begemanc8e51f82008-05-09 06:41:27 +0000284 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner944f7962007-08-03 16:18:34 +0000285
286 // If the result of the expression is a non-vector type, we must be
287 // extracting a single element. Just codegen as an extractelement.
Chris Lattner4b492962007-08-10 17:10:08 +0000288 const VectorType *ExprVT = ExprType->getAsVectorType();
289 if (!ExprVT) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000290 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000291 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
292 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
293 }
294
295 // If the source and destination have the same number of elements, use a
296 // vector shuffle instead of insert/extracts.
Chris Lattner4b492962007-08-10 17:10:08 +0000297 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner944f7962007-08-03 16:18:34 +0000298 unsigned NumSourceElts =
299 cast<llvm::VectorType>(Vec->getType())->getNumElements();
300
301 if (NumResultElts == NumSourceElts) {
302 llvm::SmallVector<llvm::Constant*, 4> Mask;
303 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000304 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000305 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
306 }
307
308 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
309 Vec = Builder.CreateShuffleVector(Vec,
310 llvm::UndefValue::get(Vec->getType()),
311 MaskV, "tmp");
312 return RValue::get(Vec);
313 }
314
315 // Start out with an undef of the result type.
316 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
317
318 // Extract/Insert each element of the result.
319 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000320 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000321 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
322 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
323
324 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
325 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
326 }
327
328 return RValue::get(Result);
329}
330
331
Chris Lattner4b009652007-07-25 00:24:17 +0000332
333/// EmitStoreThroughLValue - Store the specified rvalue into the specified
334/// lvalue, where both are guaranteed to the have the same type, and that type
335/// is 'Ty'.
336void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
337 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000338 if (!Dst.isSimple()) {
339 if (Dst.isVectorElt()) {
340 // Read/modify/write the vector, inserting the new element.
Eli Friedman2e630542008-06-13 23:01:12 +0000341 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
342 Dst.isVolatileQualified(), "tmp");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000343 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner5bfdd232007-08-03 16:28:33 +0000344 Dst.getVectorIdx(), "vecins");
Eli Friedman2e630542008-06-13 23:01:12 +0000345 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000346 return;
347 }
Chris Lattner4b009652007-07-25 00:24:17 +0000348
Nate Begemanaf6ed502008-04-18 23:10:10 +0000349 // If this is an update of extended vector elements, insert them as
350 // appropriate.
351 if (Dst.isExtVectorElt())
352 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000353
354 if (Dst.isBitfield())
355 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
356
Daniel Dunbare6c31752008-08-29 08:11:39 +0000357 if (Dst.isPropertyRef())
358 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
359
Lauro Ramos Venancio14d39842008-01-22 22:38:35 +0000360 assert(0 && "Unknown LValue type");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000361 }
Chris Lattner4b009652007-07-25 00:24:17 +0000362
Fariborz Jahaniand2f661a2008-11-19 17:34:06 +0000363 if (Dst.isObjCWeak()) {
364 // load of a __weak object.
365 llvm::Value *LvalueDst = Dst.getAddress();
366 llvm::Value *src = Src.getScalarVal();
367 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
368 return;
369 }
370
371 if (Dst.isObjCStrong()) {
372 // load of a __strong object.
373 llvm::Value *LvalueDst = Dst.getAddress();
374 llvm::Value *src = Src.getScalarVal();
375 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
376 return;
377 }
378
Chris Lattner4b009652007-07-25 00:24:17 +0000379 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000380 assert(Src.isScalar() && "Can't emit an agg store with this method");
381 // FIXME: Handle volatility etc.
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000382 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000383 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
384 const llvm::Type *AddrTy = DstPtr->getElementType();
385 unsigned AS = DstPtr->getAddressSpace();
Chris Lattner4b009652007-07-25 00:24:17 +0000386
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000387 if (AddrTy != SrcTy)
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000388 DstAddr = Builder.CreateBitCast(DstAddr,
389 llvm::PointerType::get(SrcTy, AS),
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000390 "storetmp");
Eli Friedman2e630542008-06-13 23:01:12 +0000391 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Chris Lattner4b009652007-07-25 00:24:17 +0000392}
393
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000394void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000395 QualType Ty,
396 llvm::Value **Result) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000397 unsigned StartBit = Dst.getBitfieldStartBit();
398 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000399 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000400
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000401 const llvm::Type *EltTy =
402 cast<llvm::PointerType>(Ptr->getType())->getElementType();
403 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
404
405 // Get the new value, cast to the appropriate type and masked to
406 // exactly the size of the bit-field.
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000407 llvm::Value *SrcVal = Src.getScalarVal();
408 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000409 llvm::Constant *Mask =
410 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
411 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000412
Daniel Dunbar2668dd12008-11-19 09:36:46 +0000413 // Return the new value of the bit-field, if requested.
414 if (Result) {
415 // Cast back to the proper type for result.
416 const llvm::Type *SrcTy = SrcVal->getType();
417 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
418 "bf.reload.val");
419
420 // Sign extend if necessary.
421 if (Dst.isBitfieldSigned()) {
422 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
423 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
424 SrcTySize - BitfieldSize);
425 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
426 ExtraBits, "bf.reload.sext");
427 }
428
429 *Result = SrcTrunc;
430 }
431
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000432 // In some cases the bitfield may straddle two memory locations.
433 // Emit the low part first and check to see if the high needs to be
434 // done.
435 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
436 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
437 "bf.prev.low");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000438
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000439 // Compute the mask for zero-ing the low part of this bitfield.
440 llvm::Constant *InvMask =
441 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
442 StartBit + LowBits));
443
444 // Compute the new low part as
445 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
446 // with the shift of NewVal implicitly stripping the high bits.
447 llvm::Value *NewLowVal =
448 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
449 "bf.value.lo");
450 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
451 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
452
453 // Write back.
454 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedmana04e70d2008-05-17 20:03:47 +0000455
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000456 // If the low part doesn't cover the bitfield emit a high part.
457 if (LowBits < BitfieldSize) {
458 unsigned HighBits = BitfieldSize - LowBits;
459 llvm::Value *HighPtr =
460 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
461 "bf.ptr.hi");
462 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
463 Dst.isVolatileQualified(),
464 "bf.prev.hi");
465
466 // Compute the mask for zero-ing the high part of this bitfield.
467 llvm::Constant *InvMask =
468 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
469
470 // Compute the new high part as
471 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
472 // where the high bits of NewVal have already been cleared and the
473 // shift stripping the low bits.
474 llvm::Value *NewHighVal =
475 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
476 "bf.value.high");
477 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
478 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
479
480 // Write back.
481 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
482 }
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000483}
484
Daniel Dunbare6c31752008-08-29 08:11:39 +0000485void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
486 LValue Dst,
487 QualType Ty) {
488 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
489}
490
Nate Begemanaf6ed502008-04-18 23:10:10 +0000491void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
492 LValue Dst,
493 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000494 // This access turns into a read/modify/write of the vector. Load the input
495 // value now.
Eli Friedman2e630542008-06-13 23:01:12 +0000496 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
497 Dst.isVolatileQualified(), "tmp");
Nate Begemanc8e51f82008-05-09 06:41:27 +0000498 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000499
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000500 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000501
Chris Lattner940966d2007-08-03 16:37:04 +0000502 if (const VectorType *VTy = Ty->getAsVectorType()) {
503 unsigned NumSrcElts = VTy->getNumElements();
504
505 // Extract/Insert each element.
506 for (unsigned i = 0; i != NumSrcElts; ++i) {
507 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
508 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
509
Dan Gohman4751a3a2008-05-22 00:50:06 +0000510 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner940966d2007-08-03 16:37:04 +0000511 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
512 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
513 }
514 } else {
515 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4751a3a2008-05-22 00:50:06 +0000516 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner5bfdd232007-08-03 16:28:33 +0000517 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
518 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000519 }
520
Eli Friedman2e630542008-06-13 23:01:12 +0000521 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000522}
523
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000524/// SetVarDeclObjCAttribute - Set __weak/__strong attributes into the LValue
525/// object.
Fariborz Jahanian6f19a0a2008-11-20 18:10:58 +0000526static void SetVarDeclObjCAttribute(ASTContext &Ctx, const VarDecl *VD,
527 const QualType &Ty, LValue &LV)
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000528{
529 if (const ObjCGCAttr *A = VD->getAttr<ObjCGCAttr>()) {
530 ObjCGCAttr::GCAttrTypes attrType = A->getType();
531 LValue::SetObjCType(attrType == ObjCGCAttr::Weak,
532 attrType == ObjCGCAttr::Strong, LV);
533 }
Fariborz Jahanian6f19a0a2008-11-20 18:10:58 +0000534 else if (Ctx.getLangOptions().ObjC1 &&
535 Ctx.getLangOptions().getGCMode() != LangOptions::NonGC) {
536 // Default behavious under objective-c's gc is for objective-c pointers
537 // be treated as though they were declared as __strong.
538 if (Ctx.isObjCObjectPointerType(Ty))
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000539 LValue::SetObjCType(false, true, LV);
540 }
541}
Chris Lattner4b009652007-07-25 00:24:17 +0000542
543LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000544 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
545
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000546 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
547 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000548 LValue LV;
549 if (VD->getStorageClass() == VarDecl::Extern) {
550 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
551 E->getType().getCVRQualifiers());
552 }
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000553 else {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000554 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000555 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000556 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000557 }
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000558 if (VD->isBlockVarDecl() &&
559 (VD->getStorageClass() == VarDecl::Static ||
560 VD->getStorageClass() == VarDecl::Extern))
Fariborz Jahanian6f19a0a2008-11-20 18:10:58 +0000561 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000562 return LV;
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000563 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanianc192d4d2008-11-18 20:18:11 +0000564 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
565 E->getType().getCVRQualifiers());
Fariborz Jahanian6f19a0a2008-11-20 18:10:58 +0000566 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanianc192d4d2008-11-18 20:18:11 +0000567 return LV;
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000568 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000569 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman2e630542008-06-13 23:01:12 +0000570 E->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000571 }
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000572 else if (const ImplicitParamDecl *IPD =
573 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
574 llvm::Value *V = LocalDeclMap[IPD];
575 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
576 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
577 }
Chris Lattner4b009652007-07-25 00:24:17 +0000578 assert(0 && "Unimp declref");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000579 //an invalid LValue, but the assert will
580 //ensure that this point is never reached.
581 return LValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000582}
583
584LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
585 // __extension__ doesn't affect lvalue-ness.
586 if (E->getOpcode() == UnaryOperator::Extension)
587 return EmitLValue(E->getSubExpr());
588
Chris Lattnerc154ac12008-07-26 22:37:01 +0000589 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner5bf72022007-10-30 22:53:42 +0000590 switch (E->getOpcode()) {
591 default: assert(0 && "Unknown unary operator lvalue!");
592 case UnaryOperator::Deref:
Eli Friedman2e630542008-06-13 23:01:12 +0000593 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000594 ExprTy->getAsPointerType()->getPointeeType()
595 .getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000596 case UnaryOperator::Real:
597 case UnaryOperator::Imag:
598 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner07307562008-03-19 05:19:41 +0000599 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
600 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000601 Idx, "idx"),
602 ExprTy.getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000603 }
Chris Lattner4b009652007-07-25 00:24:17 +0000604}
605
606LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000607 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4b009652007-07-25 00:24:17 +0000608}
609
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000610LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000611 std::string GlobalVarName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000612
613 switch (Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000614 default:
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000615 assert(0 && "Invalid type");
Chris Lattner69909292008-08-10 01:53:14 +0000616 case PredefinedExpr::Func:
Chris Lattner4b009652007-07-25 00:24:17 +0000617 GlobalVarName = "__func__.";
618 break;
Chris Lattner69909292008-08-10 01:53:14 +0000619 case PredefinedExpr::Function:
Chris Lattner4b009652007-07-25 00:24:17 +0000620 GlobalVarName = "__FUNCTION__.";
621 break;
Chris Lattner69909292008-08-10 01:53:14 +0000622 case PredefinedExpr::PrettyFunction:
Chris Lattner4b009652007-07-25 00:24:17 +0000623 // FIXME:: Demangle C++ method names
624 GlobalVarName = "__PRETTY_FUNCTION__.";
625 break;
626 }
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000627
628 std::string FunctionName;
629 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
630 FunctionName = FD->getName();
631 } else {
632 // Just get the mangled name.
633 FunctionName = CurFn->getName();
634 }
635
Chris Lattner6e6a5972008-04-04 04:07:35 +0000636 GlobalVarName += FunctionName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000637 llvm::Constant *C =
638 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
639 return LValue::MakeAddr(C, 0);
640}
641
642LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
643 switch (E->getIdentType()) {
644 default:
645 return EmitUnsupportedLValue(E, "predefined expression");
646 case PredefinedExpr::Func:
647 case PredefinedExpr::Function:
648 case PredefinedExpr::PrettyFunction:
649 return EmitPredefinedFunctionName(E->getIdentType());
650 }
Chris Lattner4b009652007-07-25 00:24:17 +0000651}
652
653LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000654 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000655 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Chris Lattner4b009652007-07-25 00:24:17 +0000656
657 // If the base is a vector type, then we are forming a vector element lvalue
658 // with this subscript.
Eli Friedman2e630542008-06-13 23:01:12 +0000659 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000660 // Emit the vector as an lvalue to get its address.
Eli Friedman2e630542008-06-13 23:01:12 +0000661 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000662 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Chris Lattner4b009652007-07-25 00:24:17 +0000663 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman2e630542008-06-13 23:01:12 +0000664 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
665 E->getBase()->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000666 }
667
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000668 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000669 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner4b009652007-07-25 00:24:17 +0000670
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000671 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner2af72ac2007-08-08 17:43:05 +0000672 QualType IdxTy = E->getIdx()->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000673 bool IdxSigned = IdxTy->isSignedIntegerType();
674 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
675 if (IdxBitwidth != LLVMPointerWidth)
676 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
677 IdxSigned, "idxprom");
678
679 // We know that the pointer points to a type of the correct size, unless the
680 // size is a VLA.
Eli Friedman62f67fd2008-02-15 12:20:59 +0000681 if (!E->getType()->isConstantSizeType())
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000682 return EmitUnsupportedLValue(E, "VLA index");
Chris Lattnerc154ac12008-07-26 22:37:01 +0000683 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000684
Eli Friedman2e630542008-06-13 23:01:12 +0000685 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000686 ExprTy->getAsPointerType()->getPointeeType()
687 .getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000688}
689
Nate Begemana1ae7442008-05-13 21:03:02 +0000690static
691llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
692 llvm::SmallVector<llvm::Constant *, 4> CElts;
693
694 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
695 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
696
697 return llvm::ConstantVector::get(&CElts[0], CElts.size());
698}
699
Chris Lattner65520192007-08-02 23:37:31 +0000700LValue CodeGenFunction::
Nate Begemanaf6ed502008-04-18 23:10:10 +0000701EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner65520192007-08-02 23:37:31 +0000702 // Emit the base vector as an l-value.
703 LValue Base = EmitLValue(E->getBase());
Chris Lattner65520192007-08-02 23:37:31 +0000704
Nate Begemana1ae7442008-05-13 21:03:02 +0000705 // Encode the element access list into a vector of unsigned indices.
706 llvm::SmallVector<unsigned, 4> Indices;
707 E->getEncodedElementAccess(Indices);
708
709 if (Base.isSimple()) {
710 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman2e630542008-06-13 23:01:12 +0000711 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
712 E->getBase()->getType().getCVRQualifiers());
Nate Begemana1ae7442008-05-13 21:03:02 +0000713 }
714 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
715
716 llvm::Constant *BaseElts = Base.getExtVectorElts();
717 llvm::SmallVector<llvm::Constant *, 4> CElts;
718
719 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
720 if (isa<llvm::ConstantAggregateZero>(BaseElts))
721 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
722 else
723 CElts.push_back(BaseElts->getOperand(Indices[i]));
724 }
725 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman2e630542008-06-13 23:01:12 +0000726 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
727 E->getBase()->getType().getCVRQualifiers());
Chris Lattner65520192007-08-02 23:37:31 +0000728}
729
Devang Patel41b66252007-10-23 20:28:39 +0000730LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patele1f79db2007-12-11 21:33:16 +0000731 bool isUnion = false;
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000732 Expr *BaseExpr = E->getBase();
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000733 llvm::Value *BaseValue = NULL;
Eli Friedman2e630542008-06-13 23:01:12 +0000734 unsigned CVRQualifiers=0;
735
Chris Lattner659079e2007-12-02 18:52:07 +0000736 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patele1f79db2007-12-11 21:33:16 +0000737 if (E->isArrow()) {
Devang Patel2b24fd92007-10-26 18:15:21 +0000738 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patele1f79db2007-12-11 21:33:16 +0000739 const PointerType *PTy =
Chris Lattnerc154ac12008-07-26 22:37:01 +0000740 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patele1f79db2007-12-11 21:33:16 +0000741 if (PTy->getPointeeType()->isUnionType())
742 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000743 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patele1f79db2007-12-11 21:33:16 +0000744 }
Chris Lattner659079e2007-12-02 18:52:07 +0000745 else {
746 LValue BaseLV = EmitLValue(BaseExpr);
747 // FIXME: this isn't right for bitfields.
748 BaseValue = BaseLV.getAddress();
Devang Patele1f79db2007-12-11 21:33:16 +0000749 if (BaseExpr->getType()->isUnionType())
750 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000751 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner659079e2007-12-02 18:52:07 +0000752 }
Devang Patel41b66252007-10-23 20:28:39 +0000753
754 FieldDecl *Field = E->getMemberDecl();
Eli Friedman2e630542008-06-13 23:01:12 +0000755 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedmand3550112008-02-09 08:50:58 +0000756}
Devang Patel41b66252007-10-23 20:28:39 +0000757
Eli Friedmand3550112008-02-09 08:50:58 +0000758LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
759 FieldDecl* Field,
Eli Friedman2e630542008-06-13 23:01:12 +0000760 bool isUnion,
761 unsigned CVRQualifiers)
Eli Friedmand3550112008-02-09 08:50:58 +0000762{
763 llvm::Value *V;
764 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000765
Eli Friedman66813742008-05-29 11:33:25 +0000766 if (Field->isBitField()) {
Eli Friedmana04e70d2008-05-17 20:03:47 +0000767 // FIXME: CodeGenTypes should expose a method to get the appropriate
768 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedman070fee42008-06-01 15:16:01 +0000769 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner07307562008-03-19 05:19:41 +0000770 const llvm::PointerType *BaseTy =
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000771 cast<llvm::PointerType>(BaseValue->getType());
772 unsigned AS = BaseTy->getAddressSpace();
773 BaseValue = Builder.CreateBitCast(BaseValue,
774 llvm::PointerType::get(FieldTy, AS),
775 "tmp");
776 V = Builder.CreateGEP(BaseValue,
777 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
778 "tmp");
Eli Friedman66813742008-05-29 11:33:25 +0000779
780 CodeGenTypes::BitFieldInfo bitFieldInfo =
781 CGM.getTypes().getBitFieldInfo(Field);
782 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman2e630542008-06-13 23:01:12 +0000783 Field->getType()->isSignedIntegerType(),
784 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000785 }
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000786
Eli Friedman66813742008-05-29 11:33:25 +0000787 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
788
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000789 // Match union field type.
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000790 if (isUnion) {
Eli Friedman2e630542008-06-13 23:01:12 +0000791 const llvm::Type *FieldTy =
792 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patel0f2a8fb2007-10-30 20:59:40 +0000793 const llvm::PointerType * BaseTy =
794 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedmancecdc6b2008-05-21 13:24:44 +0000795 unsigned AS = BaseTy->getAddressSpace();
796 V = Builder.CreateBitCast(V,
797 llvm::PointerType::get(FieldTy, AS),
798 "tmp");
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000799 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000800
Fariborz Jahanianf0ca65f2008-11-20 00:15:42 +0000801 LValue LV =
802 LValue::MakeAddr(V,
803 Field->getType().getCVRQualifiers()|CVRQualifiers);
804 if (const ObjCGCAttr *A = Field->getAttr<ObjCGCAttr>()) {
805 ObjCGCAttr::GCAttrTypes attrType = A->getType();
806 // __weak attribute on a field is ignored.
807 LValue::SetObjCType(false, attrType == ObjCGCAttr::Strong, LV);
808 }
809 else if (CGM.getLangOptions().ObjC1 &&
810 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
811 QualType ExprTy = Field->getType();
812 if (getContext().isObjCObjectPointerType(ExprTy))
813 LValue::SetObjCType(false, true, LV);
814 }
815 return LV;
Devang Patel41b66252007-10-23 20:28:39 +0000816}
817
Eli Friedman2e630542008-06-13 23:01:12 +0000818LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
819{
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000820 const llvm::Type *LTy = ConvertType(E->getType());
821 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
822
823 const Expr* InitExpr = E->getInitializer();
Eli Friedman2e630542008-06-13 23:01:12 +0000824 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000825
826 if (E->getType()->isComplexType()) {
827 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
828 } else if (hasAggregateLLVMType(E->getType())) {
829 EmitAnyExpr(InitExpr, DeclPtr, false);
830 } else {
831 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
832 }
833
834 return Result;
835}
836
Chris Lattner4b009652007-07-25 00:24:17 +0000837//===--------------------------------------------------------------------===//
838// Expression Emission
839//===--------------------------------------------------------------------===//
840
Chris Lattnerb2cb9cb2007-08-20 22:37:10 +0000841
Chris Lattner4b009652007-07-25 00:24:17 +0000842RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson49865302007-08-20 18:05:56 +0000843 if (const ImplicitCastExpr *IcExpr =
844 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
845 if (const DeclRefExpr *DRExpr =
846 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
847 if (const FunctionDecl *FDecl =
848 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
849 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
850 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000851
Chris Lattner9fba49a2007-08-24 05:35:26 +0000852 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman261f4ad2008-01-30 01:32:06 +0000853 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek2719e982008-06-17 02:43:46 +0000854 E->arg_begin(), E->arg_end());
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000855}
856
Ted Kremenek2719e982008-06-17 02:43:46 +0000857RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
858 CallExpr::const_arg_iterator ArgBeg,
859 CallExpr::const_arg_iterator ArgEnd) {
860
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000861 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek2719e982008-06-17 02:43:46 +0000862 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattner02c60f52007-08-31 04:44:06 +0000863}
864
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000865LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
866 // Can only get l-value for binary operator expressions which are a
867 // simple assignment of aggregate type.
868 if (E->getOpcode() != BinaryOperator::Assign)
869 return EmitUnsupportedLValue(E, "binary l-value expression");
870
871 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
872 EmitAggExpr(E, Temp, false);
873 // FIXME: Are these qualifiers correct?
874 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
875}
876
Christopher Lambad327ba2007-12-29 05:02:41 +0000877LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
878 // Can only get l-value for call expression returning aggregate type
879 RValue RV = EmitCallExpr(E);
Eli Friedman2e630542008-06-13 23:01:12 +0000880 // FIXME: can this be volatile?
881 return LValue::MakeAddr(RV.getAggregateAddr(),
882 E->getType().getCVRQualifiers());
Christopher Lambad327ba2007-12-29 05:02:41 +0000883}
884
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +0000885LValue
886CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
887 EmitLocalBlockVarDecl(*E->getVarDecl());
888 return EmitDeclRefLValue(E);
889}
890
Daniel Dunbar5e105892008-08-23 10:51:21 +0000891LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
892 // Can only get l-value for message expression returning aggregate type
893 RValue RV = EmitObjCMessageExpr(E);
894 // FIXME: can this be volatile?
895 return LValue::MakeAddr(RV.getAggregateAddr(),
896 E->getType().getCVRQualifiers());
897}
898
Daniel Dunbare856ac22008-09-24 04:00:38 +0000899llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
900 const ObjCIvarDecl *Ivar) {
Chris Lattnerb326b172008-03-30 23:03:07 +0000901 // Objective-C objects are traditionally C structures with their layout
902 // defined at compile-time. In some implementations, their layout is not
903 // defined until run time in order to allow instance variables to be added to
904 // a class without recompiling all of the subclasses. If this is the case
905 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
906 // implement the lookup itself.
Daniel Dunbare856ac22008-09-24 04:00:38 +0000907 if (CGM.getObjCRuntime().LateBoundIVars())
908 assert(0 && "late-bound ivars are unsupported");
Chris Lattner6e6a5972008-04-04 04:07:35 +0000909
Daniel Dunbare856ac22008-09-24 04:00:38 +0000910 const llvm::Type *InterfaceLTy =
911 CGM.getTypes().ConvertType(getContext().getObjCInterfaceType(Interface));
912 const llvm::StructLayout *Layout =
913 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceLTy));
914 uint64_t Offset =
915 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(Ivar));
916
917 return llvm::ConstantInt::get(CGM.getTypes().ConvertType(getContext().LongTy),
918 Offset);
919}
920
921LValue CodeGenFunction::EmitLValueForIvar(llvm::Value *BaseValue,
922 const ObjCIvarDecl *Ivar,
923 unsigned CVRQualifiers) {
924 // See comment in EmitIvarOffset.
925 if (CGM.getObjCRuntime().LateBoundIVars())
926 assert(0 && "late-bound ivars are unsupported");
927
928 if (Ivar->isBitField())
929 assert(0 && "ivar bitfields are unsupported");
930
931 // TODO: Add a special case for isa (index 0)
932 unsigned Index = CGM.getTypes().getLLVMFieldNo(Ivar);
933
934 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
935 return LValue::MakeAddr(V, Ivar->getType().getCVRQualifiers()|CVRQualifiers);
936}
937
938LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonae61b002008-08-25 01:53:23 +0000939 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
940 llvm::Value *BaseValue = 0;
941 const Expr *BaseExpr = E->getBase();
942 unsigned CVRQualifiers = 0;
943 if (E->isArrow()) {
944 BaseValue = EmitScalarExpr(BaseExpr);
945 const PointerType *PTy =
946 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
947 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
948 } else {
949 LValue BaseLV = EmitLValue(BaseExpr);
950 // FIXME: this isn't right for bitfields.
951 BaseValue = BaseLV.getAddress();
952 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
953 }
Daniel Dunbare856ac22008-09-24 04:00:38 +0000954
955 return EmitLValueForIvar(BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattnerb326b172008-03-30 23:03:07 +0000956}
957
Daniel Dunbare6c31752008-08-29 08:11:39 +0000958LValue
959CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
960 // This is a special l-value that just issues sends when we load or
961 // store through it.
962 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
963}
964
Douglas Gregord8606632008-11-04 14:56:14 +0000965LValue
966CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
967 return EmitUnsupportedLValue(E, "use of super");
968}
969
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000970RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek2719e982008-06-17 02:43:46 +0000971 CallExpr::const_arg_iterator ArgBeg,
972 CallExpr::const_arg_iterator ArgEnd) {
973
Chris Lattner4b009652007-07-25 00:24:17 +0000974 // The callee type will always be a pointer to function type, get the function
975 // type.
Chris Lattnerc154ac12008-07-26 22:37:01 +0000976 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner69cc2f92008-07-31 04:58:58 +0000977 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar0ed60b02008-08-30 03:02:31 +0000978
979 CallArgList Args;
980 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar0a2da0f2008-09-09 01:06:48 +0000981 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
982 I->getType()));
Daniel Dunbar0ed60b02008-08-30 03:02:31 +0000983
984 return EmitCall(Callee, ResultType, Args);
Daniel Dunbara04840b2008-08-23 03:46:30 +0000985}