blob: ad2f78b8e77d5c6d90bc07d3a5544924f510ba6d [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));
Douglas Gregord8606632008-11-04 14:56:14 +0000133 case Expr::ObjCSuperExprClass:
134 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
135
Chris Lattner4b009652007-07-25 00:24:17 +0000136 case Expr::UnaryOperatorClass:
137 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
138 case Expr::ArraySubscriptExprClass:
139 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemanaf6ed502008-04-18 23:10:10 +0000140 case Expr::ExtVectorElementExprClass:
141 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patel41b66252007-10-23 20:28:39 +0000142 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000143 case Expr::CompoundLiteralExprClass:
144 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000145 }
146}
147
148/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
149/// this method emits the address of the lvalue, then loads the result as an
150/// rvalue, returning the rvalue.
151RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Chris Lattner4b009652007-07-25 00:24:17 +0000152 if (LV.isSimple()) {
153 llvm::Value *Ptr = LV.getAddress();
154 const llvm::Type *EltTy =
155 cast<llvm::PointerType>(Ptr->getType())->getElementType();
156
157 // Simple scalar l-value.
Dan Gohman377ba9f2008-05-22 22:12:56 +0000158 if (EltTy->isSingleValueType()) {
Eli Friedman2e630542008-06-13 23:01:12 +0000159 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner6b79f4e2008-01-30 07:01:17 +0000160
161 // Bool can have different representation in memory than in registers.
162 if (ExprType->isBooleanType()) {
163 if (V->getType() != llvm::Type::Int1Ty)
164 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
165 }
166
167 return RValue::get(V);
168 }
Chris Lattner4b009652007-07-25 00:24:17 +0000169
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000170 assert(ExprType->isFunctionType() && "Unknown scalar value");
171 return RValue::get(Ptr);
Chris Lattner4b009652007-07-25 00:24:17 +0000172 }
173
174 if (LV.isVectorElt()) {
Eli Friedman2e630542008-06-13 23:01:12 +0000175 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
176 LV.isVolatileQualified(), "tmp");
Chris Lattner4b009652007-07-25 00:24:17 +0000177 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
178 "vecext"));
179 }
Chris Lattnera735fac2007-08-03 00:16:29 +0000180
181 // If this is a reference to a subset of the elements of a vector, either
182 // shuffle the input or extract/insert them as appropriate.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000183 if (LV.isExtVectorElt())
184 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000185
186 if (LV.isBitfield())
187 return EmitLoadOfBitfieldLValue(LV, ExprType);
188
Daniel Dunbare6c31752008-08-29 08:11:39 +0000189 if (LV.isPropertyRef())
190 return EmitLoadOfPropertyRefLValue(LV, ExprType);
191
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000192 assert(0 && "Unknown LValue type!");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000193 //an invalid RValue, but the assert will
194 //ensure that this point is never reached
195 return RValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000196}
197
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000198RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
199 QualType ExprType) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000200 unsigned StartBit = LV.getBitfieldStartBit();
201 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000202 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000203
204 const llvm::Type *EltTy =
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000205 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000206 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000207
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000208 // In some cases the bitfield may straddle two memory locations.
209 // Currently we load the entire bitfield, then do the magic to
210 // sign-extend it if necessary. This results in somewhat more code
211 // than necessary for the common case (one load), since two shifts
212 // accomplish both the masking and sign extension.
213 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
214 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
215
216 // Shift to proper location.
Daniel Dunbar198edd52008-11-13 02:20:34 +0000217 if (StartBit)
218 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
219 "bf.lo");
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000220
221 // Mask off unused bits.
222 llvm::Constant *LowMask =
223 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
224 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
225
226 // Fetch the high bits if necessary.
227 if (LowBits < BitfieldSize) {
228 unsigned HighBits = BitfieldSize - LowBits;
229 llvm::Value *HighPtr =
230 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
231 "bf.ptr.hi");
232 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
233 LV.isVolatileQualified(),
234 "tmp");
235
236 // Mask off unused bits.
237 llvm::Constant *HighMask =
238 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
239 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000240
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000241 // Shift to proper location and or in to bitfield value.
242 HighVal = Builder.CreateShl(HighVal,
243 llvm::ConstantInt::get(EltTy, LowBits));
244 Val = Builder.CreateOr(Val, HighVal, "bf.val");
245 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000246
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000247 // Sign extend if necessary.
248 if (LV.isBitfieldSigned()) {
249 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
250 EltTySize - BitfieldSize);
251 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
252 ExtraBits, "bf.val.sext");
253 }
Eli Friedmana04e70d2008-05-17 20:03:47 +0000254
255 // The bitfield type and the normal type differ when the storage sizes
256 // differ (currently just _Bool).
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000257 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000258
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000259 return RValue::get(Val);
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000260}
261
Daniel Dunbare6c31752008-08-29 08:11:39 +0000262RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
263 QualType ExprType) {
264 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
265}
266
Chris Lattner944f7962007-08-03 16:18:34 +0000267// If this is a reference to a subset of the elements of a vector, either
268// shuffle the input or extract/insert them as appropriate.
Nate Begemanaf6ed502008-04-18 23:10:10 +0000269RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
270 QualType ExprType) {
Eli Friedman2e630542008-06-13 23:01:12 +0000271 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
272 LV.isVolatileQualified(), "tmp");
Chris Lattner944f7962007-08-03 16:18:34 +0000273
Nate Begemanc8e51f82008-05-09 06:41:27 +0000274 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner944f7962007-08-03 16:18:34 +0000275
276 // If the result of the expression is a non-vector type, we must be
277 // extracting a single element. Just codegen as an extractelement.
Chris Lattner4b492962007-08-10 17:10:08 +0000278 const VectorType *ExprVT = ExprType->getAsVectorType();
279 if (!ExprVT) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000280 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000281 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
282 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
283 }
284
285 // If the source and destination have the same number of elements, use a
286 // vector shuffle instead of insert/extracts.
Chris Lattner4b492962007-08-10 17:10:08 +0000287 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner944f7962007-08-03 16:18:34 +0000288 unsigned NumSourceElts =
289 cast<llvm::VectorType>(Vec->getType())->getNumElements();
290
291 if (NumResultElts == NumSourceElts) {
292 llvm::SmallVector<llvm::Constant*, 4> Mask;
293 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000294 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000295 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
296 }
297
298 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
299 Vec = Builder.CreateShuffleVector(Vec,
300 llvm::UndefValue::get(Vec->getType()),
301 MaskV, "tmp");
302 return RValue::get(Vec);
303 }
304
305 // Start out with an undef of the result type.
306 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
307
308 // Extract/Insert each element of the result.
309 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4751a3a2008-05-22 00:50:06 +0000310 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner944f7962007-08-03 16:18:34 +0000311 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
312 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
313
314 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
315 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
316 }
317
318 return RValue::get(Result);
319}
320
321
Chris Lattner4b009652007-07-25 00:24:17 +0000322
323/// EmitStoreThroughLValue - Store the specified rvalue into the specified
324/// lvalue, where both are guaranteed to the have the same type, and that type
325/// is 'Ty'.
326void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
327 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000328 if (!Dst.isSimple()) {
329 if (Dst.isVectorElt()) {
330 // Read/modify/write the vector, inserting the new element.
Eli Friedman2e630542008-06-13 23:01:12 +0000331 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
332 Dst.isVolatileQualified(), "tmp");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000333 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner5bfdd232007-08-03 16:28:33 +0000334 Dst.getVectorIdx(), "vecins");
Eli Friedman2e630542008-06-13 23:01:12 +0000335 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000336 return;
337 }
Chris Lattner4b009652007-07-25 00:24:17 +0000338
Nate Begemanaf6ed502008-04-18 23:10:10 +0000339 // If this is an update of extended vector elements, insert them as
340 // appropriate.
341 if (Dst.isExtVectorElt())
342 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000343
344 if (Dst.isBitfield())
345 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
346
Daniel Dunbare6c31752008-08-29 08:11:39 +0000347 if (Dst.isPropertyRef())
348 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
349
Lauro Ramos Venancio14d39842008-01-22 22:38:35 +0000350 assert(0 && "Unknown LValue type");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000351 }
Chris Lattner4b009652007-07-25 00:24:17 +0000352
353 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000354 assert(Src.isScalar() && "Can't emit an agg store with this method");
355 // FIXME: Handle volatility etc.
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000356 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000357 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
358 const llvm::Type *AddrTy = DstPtr->getElementType();
359 unsigned AS = DstPtr->getAddressSpace();
Chris Lattner4b009652007-07-25 00:24:17 +0000360
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000361 if (AddrTy != SrcTy)
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000362 DstAddr = Builder.CreateBitCast(DstAddr,
363 llvm::PointerType::get(SrcTy, AS),
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000364 "storetmp");
Eli Friedman2e630542008-06-13 23:01:12 +0000365 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Chris Lattner4b009652007-07-25 00:24:17 +0000366}
367
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000368void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
369 QualType Ty) {
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000370 unsigned StartBit = Dst.getBitfieldStartBit();
371 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000372 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000373
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000374 const llvm::Type *EltTy =
375 cast<llvm::PointerType>(Ptr->getType())->getElementType();
376 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
377
378 // Get the new value, cast to the appropriate type and masked to
379 // exactly the size of the bit-field.
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000380 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000381 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
382 llvm::Constant *Mask =
383 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
384 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000385
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000386 // In some cases the bitfield may straddle two memory locations.
387 // Emit the low part first and check to see if the high needs to be
388 // done.
389 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
390 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
391 "bf.prev.low");
Eli Friedmana04e70d2008-05-17 20:03:47 +0000392
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000393 // Compute the mask for zero-ing the low part of this bitfield.
394 llvm::Constant *InvMask =
395 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
396 StartBit + LowBits));
397
398 // Compute the new low part as
399 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
400 // with the shift of NewVal implicitly stripping the high bits.
401 llvm::Value *NewLowVal =
402 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
403 "bf.value.lo");
404 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
405 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
406
407 // Write back.
408 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedmana04e70d2008-05-17 20:03:47 +0000409
Daniel Dunbar833b03b2008-08-06 05:08:45 +0000410 // If the low part doesn't cover the bitfield emit a high part.
411 if (LowBits < BitfieldSize) {
412 unsigned HighBits = BitfieldSize - LowBits;
413 llvm::Value *HighPtr =
414 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
415 "bf.ptr.hi");
416 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
417 Dst.isVolatileQualified(),
418 "bf.prev.hi");
419
420 // Compute the mask for zero-ing the high part of this bitfield.
421 llvm::Constant *InvMask =
422 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
423
424 // Compute the new high part as
425 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
426 // where the high bits of NewVal have already been cleared and the
427 // shift stripping the low bits.
428 llvm::Value *NewHighVal =
429 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
430 "bf.value.high");
431 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
432 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
433
434 // Write back.
435 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
436 }
Lauro Ramos Venancio2d7a34c2008-01-22 22:36:45 +0000437}
438
Daniel Dunbare6c31752008-08-29 08:11:39 +0000439void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
440 LValue Dst,
441 QualType Ty) {
442 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
443}
444
Nate Begemanaf6ed502008-04-18 23:10:10 +0000445void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
446 LValue Dst,
447 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000448 // This access turns into a read/modify/write of the vector. Load the input
449 // value now.
Eli Friedman2e630542008-06-13 23:01:12 +0000450 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
451 Dst.isVolatileQualified(), "tmp");
Nate Begemanc8e51f82008-05-09 06:41:27 +0000452 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000453
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000454 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000455
Chris Lattner940966d2007-08-03 16:37:04 +0000456 if (const VectorType *VTy = Ty->getAsVectorType()) {
457 unsigned NumSrcElts = VTy->getNumElements();
458
459 // Extract/Insert each element.
460 for (unsigned i = 0; i != NumSrcElts; ++i) {
461 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
462 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
463
Dan Gohman4751a3a2008-05-22 00:50:06 +0000464 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner940966d2007-08-03 16:37:04 +0000465 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
466 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
467 }
468 } else {
469 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4751a3a2008-05-22 00:50:06 +0000470 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner5bfdd232007-08-03 16:28:33 +0000471 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
472 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000473 }
474
Eli Friedman2e630542008-06-13 23:01:12 +0000475 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner5bfdd232007-08-03 16:28:33 +0000476}
477
Chris Lattner4b009652007-07-25 00:24:17 +0000478
479LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000480 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
481
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000482 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
483 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000484 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000485 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman2e630542008-06-13 23:01:12 +0000486 E->getType().getCVRQualifiers());
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000487 else {
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000488 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000489 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman2e630542008-06-13 23:01:12 +0000490 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venancio2348d972008-02-16 22:30:38 +0000491 }
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000492 } else if (VD && VD->isFileVarDecl()) {
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000493 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman2e630542008-06-13 23:01:12 +0000494 E->getType().getCVRQualifiers());
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000495 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000496 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman2e630542008-06-13 23:01:12 +0000497 E->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000498 }
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000499 else if (const ImplicitParamDecl *IPD =
500 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
501 llvm::Value *V = LocalDeclMap[IPD];
502 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
503 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
504 }
Chris Lattner4b009652007-07-25 00:24:17 +0000505 assert(0 && "Unimp declref");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000506 //an invalid LValue, but the assert will
507 //ensure that this point is never reached.
508 return LValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000509}
510
511LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
512 // __extension__ doesn't affect lvalue-ness.
513 if (E->getOpcode() == UnaryOperator::Extension)
514 return EmitLValue(E->getSubExpr());
515
Chris Lattnerc154ac12008-07-26 22:37:01 +0000516 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner5bf72022007-10-30 22:53:42 +0000517 switch (E->getOpcode()) {
518 default: assert(0 && "Unknown unary operator lvalue!");
519 case UnaryOperator::Deref:
Eli Friedman2e630542008-06-13 23:01:12 +0000520 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000521 ExprTy->getAsPointerType()->getPointeeType()
522 .getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000523 case UnaryOperator::Real:
524 case UnaryOperator::Imag:
525 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner07307562008-03-19 05:19:41 +0000526 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
527 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000528 Idx, "idx"),
529 ExprTy.getCVRQualifiers());
Chris Lattner5bf72022007-10-30 22:53:42 +0000530 }
Chris Lattner4b009652007-07-25 00:24:17 +0000531}
532
533LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000534 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4b009652007-07-25 00:24:17 +0000535}
536
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000537LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000538 std::string GlobalVarName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000539
540 switch (Type) {
Chris Lattner4b009652007-07-25 00:24:17 +0000541 default:
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000542 assert(0 && "Invalid type");
Chris Lattner69909292008-08-10 01:53:14 +0000543 case PredefinedExpr::Func:
Chris Lattner4b009652007-07-25 00:24:17 +0000544 GlobalVarName = "__func__.";
545 break;
Chris Lattner69909292008-08-10 01:53:14 +0000546 case PredefinedExpr::Function:
Chris Lattner4b009652007-07-25 00:24:17 +0000547 GlobalVarName = "__FUNCTION__.";
548 break;
Chris Lattner69909292008-08-10 01:53:14 +0000549 case PredefinedExpr::PrettyFunction:
Chris Lattner4b009652007-07-25 00:24:17 +0000550 // FIXME:: Demangle C++ method names
551 GlobalVarName = "__PRETTY_FUNCTION__.";
552 break;
553 }
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000554
555 std::string FunctionName;
556 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
557 FunctionName = FD->getName();
558 } else {
559 // Just get the mangled name.
560 FunctionName = CurFn->getName();
561 }
562
Chris Lattner6e6a5972008-04-04 04:07:35 +0000563 GlobalVarName += FunctionName;
Daniel Dunbara9f0be22008-10-17 21:58:32 +0000564 llvm::Constant *C =
565 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
566 return LValue::MakeAddr(C, 0);
567}
568
569LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
570 switch (E->getIdentType()) {
571 default:
572 return EmitUnsupportedLValue(E, "predefined expression");
573 case PredefinedExpr::Func:
574 case PredefinedExpr::Function:
575 case PredefinedExpr::PrettyFunction:
576 return EmitPredefinedFunctionName(E->getIdentType());
577 }
Chris Lattner4b009652007-07-25 00:24:17 +0000578}
579
580LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000581 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000582 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Chris Lattner4b009652007-07-25 00:24:17 +0000583
584 // If the base is a vector type, then we are forming a vector element lvalue
585 // with this subscript.
Eli Friedman2e630542008-06-13 23:01:12 +0000586 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000587 // Emit the vector as an lvalue to get its address.
Eli Friedman2e630542008-06-13 23:01:12 +0000588 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000589 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Chris Lattner4b009652007-07-25 00:24:17 +0000590 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman2e630542008-06-13 23:01:12 +0000591 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
592 E->getBase()->getType().getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000593 }
594
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000595 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000596 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner4b009652007-07-25 00:24:17 +0000597
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000598 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner2af72ac2007-08-08 17:43:05 +0000599 QualType IdxTy = E->getIdx()->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000600 bool IdxSigned = IdxTy->isSignedIntegerType();
601 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
602 if (IdxBitwidth != LLVMPointerWidth)
603 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
604 IdxSigned, "idxprom");
605
606 // We know that the pointer points to a type of the correct size, unless the
607 // size is a VLA.
Eli Friedman62f67fd2008-02-15 12:20:59 +0000608 if (!E->getType()->isConstantSizeType())
Daniel Dunbarde1bd942008-08-25 20:45:57 +0000609 return EmitUnsupportedLValue(E, "VLA index");
Chris Lattnerc154ac12008-07-26 22:37:01 +0000610 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000611
Eli Friedman2e630542008-06-13 23:01:12 +0000612 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000613 ExprTy->getAsPointerType()->getPointeeType()
614 .getCVRQualifiers());
Chris Lattner4b009652007-07-25 00:24:17 +0000615}
616
Nate Begemana1ae7442008-05-13 21:03:02 +0000617static
618llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
619 llvm::SmallVector<llvm::Constant *, 4> CElts;
620
621 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
622 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
623
624 return llvm::ConstantVector::get(&CElts[0], CElts.size());
625}
626
Chris Lattner65520192007-08-02 23:37:31 +0000627LValue CodeGenFunction::
Nate Begemanaf6ed502008-04-18 23:10:10 +0000628EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner65520192007-08-02 23:37:31 +0000629 // Emit the base vector as an l-value.
630 LValue Base = EmitLValue(E->getBase());
Chris Lattner65520192007-08-02 23:37:31 +0000631
Nate Begemana1ae7442008-05-13 21:03:02 +0000632 // Encode the element access list into a vector of unsigned indices.
633 llvm::SmallVector<unsigned, 4> Indices;
634 E->getEncodedElementAccess(Indices);
635
636 if (Base.isSimple()) {
637 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman2e630542008-06-13 23:01:12 +0000638 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
639 E->getBase()->getType().getCVRQualifiers());
Nate Begemana1ae7442008-05-13 21:03:02 +0000640 }
641 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
642
643 llvm::Constant *BaseElts = Base.getExtVectorElts();
644 llvm::SmallVector<llvm::Constant *, 4> CElts;
645
646 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
647 if (isa<llvm::ConstantAggregateZero>(BaseElts))
648 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
649 else
650 CElts.push_back(BaseElts->getOperand(Indices[i]));
651 }
652 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman2e630542008-06-13 23:01:12 +0000653 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
654 E->getBase()->getType().getCVRQualifiers());
Chris Lattner65520192007-08-02 23:37:31 +0000655}
656
Devang Patel41b66252007-10-23 20:28:39 +0000657LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patele1f79db2007-12-11 21:33:16 +0000658 bool isUnion = false;
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000659 Expr *BaseExpr = E->getBase();
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000660 llvm::Value *BaseValue = NULL;
Eli Friedman2e630542008-06-13 23:01:12 +0000661 unsigned CVRQualifiers=0;
662
Chris Lattner659079e2007-12-02 18:52:07 +0000663 // 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 +0000664 if (E->isArrow()) {
Devang Patel2b24fd92007-10-26 18:15:21 +0000665 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patele1f79db2007-12-11 21:33:16 +0000666 const PointerType *PTy =
Chris Lattnerc154ac12008-07-26 22:37:01 +0000667 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patele1f79db2007-12-11 21:33:16 +0000668 if (PTy->getPointeeType()->isUnionType())
669 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000670 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patele1f79db2007-12-11 21:33:16 +0000671 }
Chris Lattner659079e2007-12-02 18:52:07 +0000672 else {
673 LValue BaseLV = EmitLValue(BaseExpr);
674 // FIXME: this isn't right for bitfields.
675 BaseValue = BaseLV.getAddress();
Devang Patele1f79db2007-12-11 21:33:16 +0000676 if (BaseExpr->getType()->isUnionType())
677 isUnion = true;
Eli Friedman2e630542008-06-13 23:01:12 +0000678 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner659079e2007-12-02 18:52:07 +0000679 }
Devang Patel41b66252007-10-23 20:28:39 +0000680
681 FieldDecl *Field = E->getMemberDecl();
Eli Friedman2e630542008-06-13 23:01:12 +0000682 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedmand3550112008-02-09 08:50:58 +0000683}
Devang Patel41b66252007-10-23 20:28:39 +0000684
Eli Friedmand3550112008-02-09 08:50:58 +0000685LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
686 FieldDecl* Field,
Eli Friedman2e630542008-06-13 23:01:12 +0000687 bool isUnion,
688 unsigned CVRQualifiers)
Eli Friedmand3550112008-02-09 08:50:58 +0000689{
690 llvm::Value *V;
691 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000692
Eli Friedman66813742008-05-29 11:33:25 +0000693 if (Field->isBitField()) {
Eli Friedmana04e70d2008-05-17 20:03:47 +0000694 // FIXME: CodeGenTypes should expose a method to get the appropriate
695 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedman070fee42008-06-01 15:16:01 +0000696 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner07307562008-03-19 05:19:41 +0000697 const llvm::PointerType *BaseTy =
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000698 cast<llvm::PointerType>(BaseValue->getType());
699 unsigned AS = BaseTy->getAddressSpace();
700 BaseValue = Builder.CreateBitCast(BaseValue,
701 llvm::PointerType::get(FieldTy, AS),
702 "tmp");
703 V = Builder.CreateGEP(BaseValue,
704 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
705 "tmp");
Eli Friedman66813742008-05-29 11:33:25 +0000706
707 CodeGenTypes::BitFieldInfo bitFieldInfo =
708 CGM.getTypes().getBitFieldInfo(Field);
709 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman2e630542008-06-13 23:01:12 +0000710 Field->getType()->isSignedIntegerType(),
711 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000712 }
Eli Friedman070fee42008-06-01 15:16:01 +0000713
Eli Friedman66813742008-05-29 11:33:25 +0000714 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
715
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000716 // Match union field type.
Lauro Ramos Venancio63fc38f2008-02-07 19:29:53 +0000717 if (isUnion) {
Eli Friedman2e630542008-06-13 23:01:12 +0000718 const llvm::Type *FieldTy =
719 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patel0f2a8fb2007-10-30 20:59:40 +0000720 const llvm::PointerType * BaseTy =
721 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedmancecdc6b2008-05-21 13:24:44 +0000722 unsigned AS = BaseTy->getAddressSpace();
723 V = Builder.CreateBitCast(V,
724 llvm::PointerType::get(FieldTy, AS),
725 "tmp");
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000726 }
Lauro Ramos Venanciob40307c2008-01-22 20:17:04 +0000727
Eli Friedman2e630542008-06-13 23:01:12 +0000728 return LValue::MakeAddr(V,
729 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patel41b66252007-10-23 20:28:39 +0000730}
731
Eli Friedman2e630542008-06-13 23:01:12 +0000732LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
733{
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000734 const llvm::Type *LTy = ConvertType(E->getType());
735 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
736
737 const Expr* InitExpr = E->getInitializer();
Eli Friedman2e630542008-06-13 23:01:12 +0000738 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedmanf3c2cb42008-05-13 23:18:27 +0000739
740 if (E->getType()->isComplexType()) {
741 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
742 } else if (hasAggregateLLVMType(E->getType())) {
743 EmitAnyExpr(InitExpr, DeclPtr, false);
744 } else {
745 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
746 }
747
748 return Result;
749}
750
Chris Lattner4b009652007-07-25 00:24:17 +0000751//===--------------------------------------------------------------------===//
752// Expression Emission
753//===--------------------------------------------------------------------===//
754
Chris Lattnerb2cb9cb2007-08-20 22:37:10 +0000755
Chris Lattner4b009652007-07-25 00:24:17 +0000756RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson49865302007-08-20 18:05:56 +0000757 if (const ImplicitCastExpr *IcExpr =
758 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
759 if (const DeclRefExpr *DRExpr =
760 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
761 if (const FunctionDecl *FDecl =
762 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
763 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
764 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000765
Chris Lattner9fba49a2007-08-24 05:35:26 +0000766 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman261f4ad2008-01-30 01:32:06 +0000767 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek2719e982008-06-17 02:43:46 +0000768 E->arg_begin(), E->arg_end());
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000769}
770
Ted Kremenek2719e982008-06-17 02:43:46 +0000771RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
772 CallExpr::const_arg_iterator ArgBeg,
773 CallExpr::const_arg_iterator ArgEnd) {
774
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000775 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek2719e982008-06-17 02:43:46 +0000776 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattner02c60f52007-08-31 04:44:06 +0000777}
778
Daniel Dunbaref0d4c72008-09-04 03:20:13 +0000779LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
780 // Can only get l-value for binary operator expressions which are a
781 // simple assignment of aggregate type.
782 if (E->getOpcode() != BinaryOperator::Assign)
783 return EmitUnsupportedLValue(E, "binary l-value expression");
784
785 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
786 EmitAggExpr(E, Temp, false);
787 // FIXME: Are these qualifiers correct?
788 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
789}
790
Christopher Lambad327ba2007-12-29 05:02:41 +0000791LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
792 // Can only get l-value for call expression returning aggregate type
793 RValue RV = EmitCallExpr(E);
Eli Friedman2e630542008-06-13 23:01:12 +0000794 // FIXME: can this be volatile?
795 return LValue::MakeAddr(RV.getAggregateAddr(),
796 E->getType().getCVRQualifiers());
Christopher Lambad327ba2007-12-29 05:02:41 +0000797}
798
Argiris Kirtzidisbf615b02008-09-10 02:36:38 +0000799LValue
800CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
801 EmitLocalBlockVarDecl(*E->getVarDecl());
802 return EmitDeclRefLValue(E);
803}
804
Daniel Dunbar5e105892008-08-23 10:51:21 +0000805LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
806 // Can only get l-value for message expression returning aggregate type
807 RValue RV = EmitObjCMessageExpr(E);
808 // FIXME: can this be volatile?
809 return LValue::MakeAddr(RV.getAggregateAddr(),
810 E->getType().getCVRQualifiers());
811}
812
Daniel Dunbare856ac22008-09-24 04:00:38 +0000813llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
814 const ObjCIvarDecl *Ivar) {
Chris Lattnerb326b172008-03-30 23:03:07 +0000815 // Objective-C objects are traditionally C structures with their layout
816 // defined at compile-time. In some implementations, their layout is not
817 // defined until run time in order to allow instance variables to be added to
818 // a class without recompiling all of the subclasses. If this is the case
819 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
820 // implement the lookup itself.
Daniel Dunbare856ac22008-09-24 04:00:38 +0000821 if (CGM.getObjCRuntime().LateBoundIVars())
822 assert(0 && "late-bound ivars are unsupported");
Chris Lattner6e6a5972008-04-04 04:07:35 +0000823
Daniel Dunbare856ac22008-09-24 04:00:38 +0000824 const llvm::Type *InterfaceLTy =
825 CGM.getTypes().ConvertType(getContext().getObjCInterfaceType(Interface));
826 const llvm::StructLayout *Layout =
827 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceLTy));
828 uint64_t Offset =
829 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(Ivar));
830
831 return llvm::ConstantInt::get(CGM.getTypes().ConvertType(getContext().LongTy),
832 Offset);
833}
834
835LValue CodeGenFunction::EmitLValueForIvar(llvm::Value *BaseValue,
836 const ObjCIvarDecl *Ivar,
837 unsigned CVRQualifiers) {
838 // See comment in EmitIvarOffset.
839 if (CGM.getObjCRuntime().LateBoundIVars())
840 assert(0 && "late-bound ivars are unsupported");
841
842 if (Ivar->isBitField())
843 assert(0 && "ivar bitfields are unsupported");
844
845 // TODO: Add a special case for isa (index 0)
846 unsigned Index = CGM.getTypes().getLLVMFieldNo(Ivar);
847
848 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
849 return LValue::MakeAddr(V, Ivar->getType().getCVRQualifiers()|CVRQualifiers);
850}
851
852LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonae61b002008-08-25 01:53:23 +0000853 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
854 llvm::Value *BaseValue = 0;
855 const Expr *BaseExpr = E->getBase();
856 unsigned CVRQualifiers = 0;
857 if (E->isArrow()) {
858 BaseValue = EmitScalarExpr(BaseExpr);
859 const PointerType *PTy =
860 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
861 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
862 } else {
863 LValue BaseLV = EmitLValue(BaseExpr);
864 // FIXME: this isn't right for bitfields.
865 BaseValue = BaseLV.getAddress();
866 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
867 }
Daniel Dunbare856ac22008-09-24 04:00:38 +0000868
869 return EmitLValueForIvar(BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattnerb326b172008-03-30 23:03:07 +0000870}
871
Daniel Dunbare6c31752008-08-29 08:11:39 +0000872LValue
873CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
874 // This is a special l-value that just issues sends when we load or
875 // store through it.
876 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
877}
878
Douglas Gregord8606632008-11-04 14:56:14 +0000879LValue
880CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
881 return EmitUnsupportedLValue(E, "use of super");
882}
883
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000884RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek2719e982008-06-17 02:43:46 +0000885 CallExpr::const_arg_iterator ArgBeg,
886 CallExpr::const_arg_iterator ArgEnd) {
887
Chris Lattner4b009652007-07-25 00:24:17 +0000888 // The callee type will always be a pointer to function type, get the function
889 // type.
Chris Lattnerc154ac12008-07-26 22:37:01 +0000890 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner69cc2f92008-07-31 04:58:58 +0000891 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar0ed60b02008-08-30 03:02:31 +0000892
893 CallArgList Args;
894 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar0a2da0f2008-09-09 01:06:48 +0000895 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
896 I->getType()));
Daniel Dunbar0ed60b02008-08-30 03:02:31 +0000897
898 return EmitCall(Callee, ResultType, Args);
Daniel Dunbara04840b2008-08-23 03:46:30 +0000899}