blob: 34d025d289b4cfcfa5b99aa3b542202fa5110c28 [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));
Christopher Lambad327ba2007-12-29 05:02:41 +0000116 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000117 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
118 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner69909292008-08-10 01:53:14 +0000119 case Expr::PredefinedExprClass:
120 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000121 case Expr::StringLiteralClass:
122 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000123
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +0000124 case Expr::CXXConditionDeclExprClass:
125 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
126
Daniel Dunbar5e105892008-08-23 10:51:21 +0000127 case Expr::ObjCMessageExprClass:
128 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattnerb326b172008-03-30 23:03:07 +0000129 case Expr::ObjCIvarRefExprClass:
130 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000131 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbare6c31752008-08-29 08:11:39 +0000132 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000133
134 case Expr::UnaryOperatorClass:
135 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
136 case Expr::ArraySubscriptExprClass:
137 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemanaf6ed502008-04-18 23:10:10 +0000138 case Expr::ExtVectorElementExprClass:
139 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patel41b66252007-10-23 20:28:39 +0000140 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000141 case Expr::CompoundLiteralExprClass:
142 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000143 }
144}
145
146/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
147/// this method emits the address of the lvalue, then loads the result as an
148/// rvalue, returning the rvalue.
149RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Chris Lattner4b009652007-07-25 00:24:17 +0000150 if (LV.isSimple()) {
151 llvm::Value *Ptr = LV.getAddress();
152 const llvm::Type *EltTy =
153 cast<llvm::PointerType>(Ptr->getType())->getElementType();
154
155 // Simple scalar l-value.
Dan Gohman377ba9f2008-05-22 22:12:56 +0000156 if (EltTy->isSingleValueType()) {
Eli Friedman2e630542008-06-13 23:01:12 +0000157 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner6b79f4e2008-01-30 07:01:17 +0000158
159 // Bool can have different representation in memory than in registers.
160 if (ExprType->isBooleanType()) {
161 if (V->getType() != llvm::Type::Int1Ty)
162 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
163 }
164
165 return RValue::get(V);
166 }
Chris Lattner4b009652007-07-25 00:24:17 +0000167
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000168 assert(ExprType->isFunctionType() && "Unknown scalar value");
169 return RValue::get(Ptr);
Chris Lattner4b009652007-07-25 00:24:17 +0000170 }
171
172 if (LV.isVectorElt()) {
Eli Friedman2e630542008-06-13 23:01:12 +0000173 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
174 LV.isVolatileQualified(), "tmp");
Chris Lattner4b009652007-07-25 00:24:17 +0000175 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
176 "vecext"));
177 }
Chris Lattnera735fac2007-08-03 00:16:29 +0000178
179 // If this is a reference to a subset of the elements of a vector, either
180 // shuffle the input or extract/insert them as appropriate.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000181 if (LV.isExtVectorElt())
182 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000183
184 if (LV.isBitfield())
185 return EmitLoadOfBitfieldLValue(LV, ExprType);
186
Daniel Dunbare6c31752008-08-29 08:11:39 +0000187 if (LV.isPropertyRef())
188 return EmitLoadOfPropertyRefLValue(LV, ExprType);
189
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000190 assert(0 && "Unknown LValue type!");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000191 //an invalid RValue, but the assert will
192 //ensure that this point is never reached
193 return RValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000194}
195
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000196RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
197 QualType ExprType) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000198 unsigned StartBit = LV.getBitfieldStartBit();
199 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000200 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000201
202 const llvm::Type *EltTy =
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000203 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000204 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000205
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000206 // In some cases the bitfield may straddle two memory locations.
207 // Currently we load the entire bitfield, then do the magic to
208 // sign-extend it if necessary. This results in somewhat more code
209 // than necessary for the common case (one load), since two shifts
210 // accomplish both the masking and sign extension.
211 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
212 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
213
214 // Shift to proper location.
215 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
216 "bf.lo");
217
218 // Mask off unused bits.
219 llvm::Constant *LowMask =
220 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
221 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
222
223 // Fetch the high bits if necessary.
224 if (LowBits < BitfieldSize) {
225 unsigned HighBits = BitfieldSize - LowBits;
226 llvm::Value *HighPtr =
227 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
228 "bf.ptr.hi");
229 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
230 LV.isVolatileQualified(),
231 "tmp");
232
233 // Mask off unused bits.
234 llvm::Constant *HighMask =
235 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
236 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000237
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000238 // Shift to proper location and or in to bitfield value.
239 HighVal = Builder.CreateShl(HighVal,
240 llvm::ConstantInt::get(EltTy, LowBits));
241 Val = Builder.CreateOr(Val, HighVal, "bf.val");
242 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000243
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000244 // Sign extend if necessary.
245 if (LV.isBitfieldSigned()) {
246 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
247 EltTySize - BitfieldSize);
248 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
249 ExtraBits, "bf.val.sext");
250 }
Eli Friedmana04e70d2008-05-17 20:03:47 +0000251
252 // The bitfield type and the normal type differ when the storage sizes
253 // differ (currently just _Bool).
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000254 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000255
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000256 return RValue::get(Val);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000257}
258
Daniel Dunbare6c31752008-08-29 08:11:39 +0000259RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
260 QualType ExprType) {
261 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
262}
263
Chris Lattner944f7962007-08-03 16:18:34 +0000264// If this is a reference to a subset of the elements of a vector, either
265// shuffle the input or extract/insert them as appropriate.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000266RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
267 QualType ExprType) {
Eli Friedman2e630542008-06-13 23:01:12 +0000268 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
269 LV.isVolatileQualified(), "tmp");
Chris Lattner944f7962007-08-03 16:18:34 +0000270
Nate Begemanc8e51f82008-05-09 06:41:27 +0000271 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner944f7962007-08-03 16:18:34 +0000272
273 // If the result of the expression is a non-vector type, we must be
274 // extracting a single element. Just codegen as an extractelement.
Chris Lattner4b492962007-08-10 17:10:08 +0000275 const VectorType *ExprVT = ExprType->getAsVectorType();
276 if (!ExprVT) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000277 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000278 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
279 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
280 }
281
282 // If the source and destination have the same number of elements, use a
283 // vector shuffle instead of insert/extracts.
Chris Lattner4b492962007-08-10 17:10:08 +0000284 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner944f7962007-08-03 16:18:34 +0000285 unsigned NumSourceElts =
286 cast<llvm::VectorType>(Vec->getType())->getNumElements();
287
288 if (NumResultElts == NumSourceElts) {
289 llvm::SmallVector<llvm::Constant*, 4> Mask;
290 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000291 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000292 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
293 }
294
295 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
296 Vec = Builder.CreateShuffleVector(Vec,
297 llvm::UndefValue::get(Vec->getType()),
298 MaskV, "tmp");
299 return RValue::get(Vec);
300 }
301
302 // Start out with an undef of the result type.
303 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
304
305 // Extract/Insert each element of the result.
306 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000307 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000308 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
309 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
310
311 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
312 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
313 }
314
315 return RValue::get(Result);
316}
317
318
Chris Lattner4b009652007-07-25 00:24:17 +0000319
320/// EmitStoreThroughLValue - Store the specified rvalue into the specified
321/// lvalue, where both are guaranteed to the have the same type, and that type
322/// is 'Ty'.
323void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
324 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000325 if (!Dst.isSimple()) {
326 if (Dst.isVectorElt()) {
327 // Read/modify/write the vector, inserting the new element.
Eli Friedman2e630542008-06-13 23:01:12 +0000328 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
329 Dst.isVolatileQualified(), "tmp");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000330 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner5bfdd232007-08-03 16:28:33 +0000331 Dst.getVectorIdx(), "vecins");
Eli Friedman2e630542008-06-13 23:01:12 +0000332 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000333 return;
334 }
Chris Lattner4b009652007-07-25 00:24:17 +0000335
Nate Begemanaf6ed502008-04-18 23:10:10 +0000336 // If this is an update of extended vector elements, insert them as
337 // appropriate.
338 if (Dst.isExtVectorElt())
339 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000340
341 if (Dst.isBitfield())
342 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
343
Daniel Dunbare6c31752008-08-29 08:11:39 +0000344 if (Dst.isPropertyRef())
345 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
346
Lauro Ramos Venancio14d39842008-01-22 22:38:35 +0000347 assert(0 && "Unknown LValue type");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000348 }
Chris Lattner4b009652007-07-25 00:24:17 +0000349
350 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000351 assert(Src.isScalar() && "Can't emit an agg store with this method");
352 // FIXME: Handle volatility etc.
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000353 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000354 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
355 const llvm::Type *AddrTy = DstPtr->getElementType();
356 unsigned AS = DstPtr->getAddressSpace();
Chris Lattner4b009652007-07-25 00:24:17 +0000357
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000358 if (AddrTy != SrcTy)
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000359 DstAddr = Builder.CreateBitCast(DstAddr,
360 llvm::PointerType::get(SrcTy, AS),
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000361 "storetmp");
Eli Friedman2e630542008-06-13 23:01:12 +0000362 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Chris Lattner4b009652007-07-25 00:24:17 +0000363}
364
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000365void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
366 QualType Ty) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000367 unsigned StartBit = Dst.getBitfieldStartBit();
368 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000369 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000370
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000371 const llvm::Type *EltTy =
372 cast<llvm::PointerType>(Ptr->getType())->getElementType();
373 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
374
375 // Get the new value, cast to the appropriate type and masked to
376 // exactly the size of the bit-field.
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000377 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000378 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
379 llvm::Constant *Mask =
380 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
381 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000382
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000383 // In some cases the bitfield may straddle two memory locations.
384 // Emit the low part first and check to see if the high needs to be
385 // done.
386 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
387 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
388 "bf.prev.low");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000389
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000390 // Compute the mask for zero-ing the low part of this bitfield.
391 llvm::Constant *InvMask =
392 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
393 StartBit + LowBits));
394
395 // Compute the new low part as
396 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
397 // with the shift of NewVal implicitly stripping the high bits.
398 llvm::Value *NewLowVal =
399 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
400 "bf.value.lo");
401 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
402 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
403
404 // Write back.
405 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedmana04e70d2008-05-17 20:03:47 +0000406
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000407 // If the low part doesn't cover the bitfield emit a high part.
408 if (LowBits < BitfieldSize) {
409 unsigned HighBits = BitfieldSize - LowBits;
410 llvm::Value *HighPtr =
411 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
412 "bf.ptr.hi");
413 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
414 Dst.isVolatileQualified(),
415 "bf.prev.hi");
416
417 // Compute the mask for zero-ing the high part of this bitfield.
418 llvm::Constant *InvMask =
419 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
420
421 // Compute the new high part as
422 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
423 // where the high bits of NewVal have already been cleared and the
424 // shift stripping the low bits.
425 llvm::Value *NewHighVal =
426 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
427 "bf.value.high");
428 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
429 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
430
431 // Write back.
432 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
433 }
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000434}
435
Daniel Dunbare6c31752008-08-29 08:11:39 +0000436void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
437 LValue Dst,
438 QualType Ty) {
439 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
440}
441
Nate Begemanaf6ed502008-04-18 23:10:10 +0000442void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
443 LValue Dst,
444 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000445 // This access turns into a read/modify/write of the vector. Load the input
446 // value now.
Eli Friedman2e630542008-06-13 23:01:12 +0000447 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
448 Dst.isVolatileQualified(), "tmp");
Nate Begemanc8e51f82008-05-09 06:41:27 +0000449 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000450
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000451 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000452
Chris Lattner940966d2007-08-03 16:37:04 +0000453 if (const VectorType *VTy = Ty->getAsVectorType()) {
454 unsigned NumSrcElts = VTy->getNumElements();
455
456 // Extract/Insert each element.
457 for (unsigned i = 0; i != NumSrcElts; ++i) {
458 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
459 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
460
Dan Gohman4751a3a2008-05-22 00:50:06 +0000461 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner940966d2007-08-03 16:37:04 +0000462 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
463 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
464 }
465 } else {
466 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4751a3a2008-05-22 00:50:06 +0000467 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner5bfdd232007-08-03 16:28:33 +0000468 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
469 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000470 }
471
Eli Friedman2e630542008-06-13 23:01:12 +0000472 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000473}
474
Chris Lattner4b009652007-07-25 00:24:17 +0000475
476LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000477 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
478
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000479 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
480 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000481 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000482 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman2e630542008-06-13 23:01:12 +0000483 E->getType().getCVRQualifiers());
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000484 else {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000485 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000486 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman2e630542008-06-13 23:01:12 +0000487 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000488 }
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000489 } else if (VD && VD->isFileVarDecl()) {
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000490 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman2e630542008-06-13 23:01:12 +0000491 E->getType().getCVRQualifiers());
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000492 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000493 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman2e630542008-06-13 23:01:12 +0000494 E->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000495 }
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000496 else if (const ImplicitParamDecl *IPD =
497 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
498 llvm::Value *V = LocalDeclMap[IPD];
499 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
500 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
501 }
Chris Lattner4b009652007-07-25 00:24:17 +0000502 assert(0 && "Unimp declref");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000503 //an invalid LValue, but the assert will
504 //ensure that this point is never reached.
505 return LValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000506}
507
508LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
509 // __extension__ doesn't affect lvalue-ness.
510 if (E->getOpcode() == UnaryOperator::Extension)
511 return EmitLValue(E->getSubExpr());
512
Chris Lattnerc154ac12008-07-26 22:37:01 +0000513 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner5bf72022007-10-30 22:53:42 +0000514 switch (E->getOpcode()) {
515 default: assert(0 && "Unknown unary operator lvalue!");
516 case UnaryOperator::Deref:
Eli Friedman2e630542008-06-13 23:01:12 +0000517 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000518 ExprTy->getAsPointerType()->getPointeeType()
519 .getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000520 case UnaryOperator::Real:
521 case UnaryOperator::Imag:
522 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner07307562008-03-19 05:19:41 +0000523 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
524 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000525 Idx, "idx"),
526 ExprTy.getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000527 }
Chris Lattner4b009652007-07-25 00:24:17 +0000528}
529
530LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000531 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4b009652007-07-25 00:24:17 +0000532}
533
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000534LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000535 std::string GlobalVarName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000536
537 switch (Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000538 default:
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000539 assert(0 && "Invalid type");
Chris Lattner69909292008-08-10 01:53:14 +0000540 case PredefinedExpr::Func:
Chris Lattner4b009652007-07-25 00:24:17 +0000541 GlobalVarName = "__func__.";
542 break;
Chris Lattner69909292008-08-10 01:53:14 +0000543 case PredefinedExpr::Function:
Chris Lattner4b009652007-07-25 00:24:17 +0000544 GlobalVarName = "__FUNCTION__.";
545 break;
Chris Lattner69909292008-08-10 01:53:14 +0000546 case PredefinedExpr::PrettyFunction:
Chris Lattner4b009652007-07-25 00:24:17 +0000547 // FIXME:: Demangle C++ method names
548 GlobalVarName = "__PRETTY_FUNCTION__.";
549 break;
550 }
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000551
552 std::string FunctionName;
553 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
554 FunctionName = FD->getName();
555 } else {
556 // Just get the mangled name.
557 FunctionName = CurFn->getName();
558 }
559
Chris Lattner6e6a5972008-04-04 04:07:35 +0000560 GlobalVarName += FunctionName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000561 llvm::Constant *C =
562 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
563 return LValue::MakeAddr(C, 0);
564}
565
566LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
567 switch (E->getIdentType()) {
568 default:
569 return EmitUnsupportedLValue(E, "predefined expression");
570 case PredefinedExpr::Func:
571 case PredefinedExpr::Function:
572 case PredefinedExpr::PrettyFunction:
573 return EmitPredefinedFunctionName(E->getIdentType());
574 }
Chris Lattner4b009652007-07-25 00:24:17 +0000575}
576
577LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000578 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000579 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Chris Lattner4b009652007-07-25 00:24:17 +0000580
581 // If the base is a vector type, then we are forming a vector element lvalue
582 // with this subscript.
Eli Friedman2e630542008-06-13 23:01:12 +0000583 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000584 // Emit the vector as an lvalue to get its address.
Eli Friedman2e630542008-06-13 23:01:12 +0000585 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000586 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Chris Lattner4b009652007-07-25 00:24:17 +0000587 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman2e630542008-06-13 23:01:12 +0000588 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
589 E->getBase()->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000590 }
591
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000592 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000593 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner4b009652007-07-25 00:24:17 +0000594
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000595 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner2af72ac2007-08-08 17:43:05 +0000596 QualType IdxTy = E->getIdx()->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000597 bool IdxSigned = IdxTy->isSignedIntegerType();
598 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
599 if (IdxBitwidth != LLVMPointerWidth)
600 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
601 IdxSigned, "idxprom");
602
603 // We know that the pointer points to a type of the correct size, unless the
604 // size is a VLA.
Eli Friedman62f67fd2008-02-15 12:20:59 +0000605 if (!E->getType()->isConstantSizeType())
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000606 return EmitUnsupportedLValue(E, "VLA index");
Chris Lattnerc154ac12008-07-26 22:37:01 +0000607 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000608
Eli Friedman2e630542008-06-13 23:01:12 +0000609 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000610 ExprTy->getAsPointerType()->getPointeeType()
611 .getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000612}
613
Nate Begemana1ae7442008-05-13 21:03:02 +0000614static
615llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
616 llvm::SmallVector<llvm::Constant *, 4> CElts;
617
618 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
619 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
620
621 return llvm::ConstantVector::get(&CElts[0], CElts.size());
622}
623
Chris Lattner65520192007-08-02 23:37:31 +0000624LValue CodeGenFunction::
Nate Begemanaf6ed502008-04-18 23:10:10 +0000625EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner65520192007-08-02 23:37:31 +0000626 // Emit the base vector as an l-value.
627 LValue Base = EmitLValue(E->getBase());
Chris Lattner65520192007-08-02 23:37:31 +0000628
Nate Begemana1ae7442008-05-13 21:03:02 +0000629 // Encode the element access list into a vector of unsigned indices.
630 llvm::SmallVector<unsigned, 4> Indices;
631 E->getEncodedElementAccess(Indices);
632
633 if (Base.isSimple()) {
634 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman2e630542008-06-13 23:01:12 +0000635 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
636 E->getBase()->getType().getCVRQualifiers());
Nate Begemana1ae7442008-05-13 21:03:02 +0000637 }
638 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
639
640 llvm::Constant *BaseElts = Base.getExtVectorElts();
641 llvm::SmallVector<llvm::Constant *, 4> CElts;
642
643 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
644 if (isa<llvm::ConstantAggregateZero>(BaseElts))
645 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
646 else
647 CElts.push_back(BaseElts->getOperand(Indices[i]));
648 }
649 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman2e630542008-06-13 23:01:12 +0000650 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
651 E->getBase()->getType().getCVRQualifiers());
Chris Lattner65520192007-08-02 23:37:31 +0000652}
653
Devang Patel41b66252007-10-23 20:28:39 +0000654LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patele1f79db2007-12-11 21:33:16 +0000655 bool isUnion = false;
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000656 Expr *BaseExpr = E->getBase();
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000657 llvm::Value *BaseValue = NULL;
Eli Friedman2e630542008-06-13 23:01:12 +0000658 unsigned CVRQualifiers=0;
659
Chris Lattner659079e2007-12-02 18:52:07 +0000660 // 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 +0000661 if (E->isArrow()) {
Devang Patel2b24fd92007-10-26 18:15:21 +0000662 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patele1f79db2007-12-11 21:33:16 +0000663 const PointerType *PTy =
Chris Lattnerc154ac12008-07-26 22:37:01 +0000664 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patele1f79db2007-12-11 21:33:16 +0000665 if (PTy->getPointeeType()->isUnionType())
666 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000667 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patele1f79db2007-12-11 21:33:16 +0000668 }
Chris Lattner659079e2007-12-02 18:52:07 +0000669 else {
670 LValue BaseLV = EmitLValue(BaseExpr);
671 // FIXME: this isn't right for bitfields.
672 BaseValue = BaseLV.getAddress();
Devang Patele1f79db2007-12-11 21:33:16 +0000673 if (BaseExpr->getType()->isUnionType())
674 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000675 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner659079e2007-12-02 18:52:07 +0000676 }
Devang Patel41b66252007-10-23 20:28:39 +0000677
678 FieldDecl *Field = E->getMemberDecl();
Eli Friedman2e630542008-06-13 23:01:12 +0000679 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedmand3550112008-02-09 08:50:58 +0000680}
Devang Patel41b66252007-10-23 20:28:39 +0000681
Eli Friedmand3550112008-02-09 08:50:58 +0000682LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
683 FieldDecl* Field,
Eli Friedman2e630542008-06-13 23:01:12 +0000684 bool isUnion,
685 unsigned CVRQualifiers)
Eli Friedmand3550112008-02-09 08:50:58 +0000686{
687 llvm::Value *V;
688 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000689
Eli Friedman66813742008-05-29 11:33:25 +0000690 if (Field->isBitField()) {
Eli Friedmana04e70d2008-05-17 20:03:47 +0000691 // FIXME: CodeGenTypes should expose a method to get the appropriate
692 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedman070fee42008-06-01 15:16:01 +0000693 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner07307562008-03-19 05:19:41 +0000694 const llvm::PointerType *BaseTy =
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000695 cast<llvm::PointerType>(BaseValue->getType());
696 unsigned AS = BaseTy->getAddressSpace();
697 BaseValue = Builder.CreateBitCast(BaseValue,
698 llvm::PointerType::get(FieldTy, AS),
699 "tmp");
700 V = Builder.CreateGEP(BaseValue,
701 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
702 "tmp");
Eli Friedman66813742008-05-29 11:33:25 +0000703
704 CodeGenTypes::BitFieldInfo bitFieldInfo =
705 CGM.getTypes().getBitFieldInfo(Field);
706 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman2e630542008-06-13 23:01:12 +0000707 Field->getType()->isSignedIntegerType(),
708 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000709 }
Eli Friedman070fee42008-06-01 15:16:01 +0000710
Eli Friedman66813742008-05-29 11:33:25 +0000711 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
712
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000713 // Match union field type.
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000714 if (isUnion) {
Eli Friedman2e630542008-06-13 23:01:12 +0000715 const llvm::Type *FieldTy =
716 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patel0f2a8fb2007-10-30 20:59:40 +0000717 const llvm::PointerType * BaseTy =
718 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedmancecdc6b2008-05-21 13:24:44 +0000719 unsigned AS = BaseTy->getAddressSpace();
720 V = Builder.CreateBitCast(V,
721 llvm::PointerType::get(FieldTy, AS),
722 "tmp");
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000723 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000724
Eli Friedman2e630542008-06-13 23:01:12 +0000725 return LValue::MakeAddr(V,
726 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patel41b66252007-10-23 20:28:39 +0000727}
728
Eli Friedman2e630542008-06-13 23:01:12 +0000729LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
730{
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000731 const llvm::Type *LTy = ConvertType(E->getType());
732 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
733
734 const Expr* InitExpr = E->getInitializer();
Eli Friedman2e630542008-06-13 23:01:12 +0000735 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000736
737 if (E->getType()->isComplexType()) {
738 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
739 } else if (hasAggregateLLVMType(E->getType())) {
740 EmitAnyExpr(InitExpr, DeclPtr, false);
741 } else {
742 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
743 }
744
745 return Result;
746}
747
Chris Lattner4b009652007-07-25 00:24:17 +0000748//===--------------------------------------------------------------------===//
749// Expression Emission
750//===--------------------------------------------------------------------===//
751
Chris Lattnerb2cb9cb2007-08-20 22:37:10 +0000752
Chris Lattner4b009652007-07-25 00:24:17 +0000753RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson49865302007-08-20 18:05:56 +0000754 if (const ImplicitCastExpr *IcExpr =
755 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
756 if (const DeclRefExpr *DRExpr =
757 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
758 if (const FunctionDecl *FDecl =
759 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
760 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
761 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000762
Chris Lattner9fba49a2007-08-24 05:35:26 +0000763 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman261f4ad2008-01-30 01:32:06 +0000764 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek2719e982008-06-17 02:43:46 +0000765 E->arg_begin(), E->arg_end());
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000766}
767
Ted Kremenek2719e982008-06-17 02:43:46 +0000768RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
769 CallExpr::const_arg_iterator ArgBeg,
770 CallExpr::const_arg_iterator ArgEnd) {
771
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000772 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek2719e982008-06-17 02:43:46 +0000773 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattner02c60f52007-08-31 04:44:06 +0000774}
775
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000776LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
777 // Can only get l-value for binary operator expressions which are a
778 // simple assignment of aggregate type.
779 if (E->getOpcode() != BinaryOperator::Assign)
780 return EmitUnsupportedLValue(E, "binary l-value expression");
781
782 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
783 EmitAggExpr(E, Temp, false);
784 // FIXME: Are these qualifiers correct?
785 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
786}
787
Christopher Lambad327ba2007-12-29 05:02:41 +0000788LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
789 // Can only get l-value for call expression returning aggregate type
790 RValue RV = EmitCallExpr(E);
Eli Friedman2e630542008-06-13 23:01:12 +0000791 // FIXME: can this be volatile?
792 return LValue::MakeAddr(RV.getAggregateAddr(),
793 E->getType().getCVRQualifiers());
Christopher Lambad327ba2007-12-29 05:02:41 +0000794}
795
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +0000796LValue
797CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
798 EmitLocalBlockVarDecl(*E->getVarDecl());
799 return EmitDeclRefLValue(E);
800}
801
Daniel Dunbar5e105892008-08-23 10:51:21 +0000802LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
803 // Can only get l-value for message expression returning aggregate type
804 RValue RV = EmitObjCMessageExpr(E);
805 // FIXME: can this be volatile?
806 return LValue::MakeAddr(RV.getAggregateAddr(),
807 E->getType().getCVRQualifiers());
808}
809
Daniel Dunbare856ac22008-09-24 04:00:38 +0000810llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
811 const ObjCIvarDecl *Ivar) {
Chris Lattnerb326b172008-03-30 23:03:07 +0000812 // Objective-C objects are traditionally C structures with their layout
813 // defined at compile-time. In some implementations, their layout is not
814 // defined until run time in order to allow instance variables to be added to
815 // a class without recompiling all of the subclasses. If this is the case
816 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
817 // implement the lookup itself.
Daniel Dunbare856ac22008-09-24 04:00:38 +0000818 if (CGM.getObjCRuntime().LateBoundIVars())
819 assert(0 && "late-bound ivars are unsupported");
Chris Lattner6e6a5972008-04-04 04:07:35 +0000820
Daniel Dunbare856ac22008-09-24 04:00:38 +0000821 const llvm::Type *InterfaceLTy =
822 CGM.getTypes().ConvertType(getContext().getObjCInterfaceType(Interface));
823 const llvm::StructLayout *Layout =
824 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceLTy));
825 uint64_t Offset =
826 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(Ivar));
827
828 return llvm::ConstantInt::get(CGM.getTypes().ConvertType(getContext().LongTy),
829 Offset);
830}
831
832LValue CodeGenFunction::EmitLValueForIvar(llvm::Value *BaseValue,
833 const ObjCIvarDecl *Ivar,
834 unsigned CVRQualifiers) {
835 // See comment in EmitIvarOffset.
836 if (CGM.getObjCRuntime().LateBoundIVars())
837 assert(0 && "late-bound ivars are unsupported");
838
839 if (Ivar->isBitField())
840 assert(0 && "ivar bitfields are unsupported");
841
842 // TODO: Add a special case for isa (index 0)
843 unsigned Index = CGM.getTypes().getLLVMFieldNo(Ivar);
844
845 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
846 return LValue::MakeAddr(V, Ivar->getType().getCVRQualifiers()|CVRQualifiers);
847}
848
849LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonae61b002008-08-25 01:53:23 +0000850 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
851 llvm::Value *BaseValue = 0;
852 const Expr *BaseExpr = E->getBase();
853 unsigned CVRQualifiers = 0;
854 if (E->isArrow()) {
855 BaseValue = EmitScalarExpr(BaseExpr);
856 const PointerType *PTy =
857 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
858 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
859 } else {
860 LValue BaseLV = EmitLValue(BaseExpr);
861 // FIXME: this isn't right for bitfields.
862 BaseValue = BaseLV.getAddress();
863 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
864 }
Daniel Dunbare856ac22008-09-24 04:00:38 +0000865
866 return EmitLValueForIvar(BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattnerb326b172008-03-30 23:03:07 +0000867}
868
Daniel Dunbare6c31752008-08-29 08:11:39 +0000869LValue
870CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
871 // This is a special l-value that just issues sends when we load or
872 // store through it.
873 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
874}
875
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000876RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek2719e982008-06-17 02:43:46 +0000877 CallExpr::const_arg_iterator ArgBeg,
878 CallExpr::const_arg_iterator ArgEnd) {
879
Chris Lattner4b009652007-07-25 00:24:17 +0000880 // The callee type will always be a pointer to function type, get the function
881 // type.
Chris Lattnerc154ac12008-07-26 22:37:01 +0000882 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner69cc2f92008-07-31 04:58:58 +0000883 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar0ed60b02008-08-30 03:02:31 +0000884
885 CallArgList Args;
886 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar0a2da0f2008-09-09 01:06:48 +0000887 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
888 I->getType()));
Daniel Dunbar0ed60b02008-08-30 03:02:31 +0000889
890 return EmitCall(Callee, ResultType, Args);
Daniel Dunbara04840b2008-08-23 03:46:30 +0000891}