blob: d537c9ca8137dc841d20bffac722d40bddf603c3 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +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 Dunbar0dbe2272008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +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 Lattner9069fa22007-08-26 16:46:58 +000038 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000039 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000040 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000041
Chris Lattner9069fa22007-08-26 16:46:58 +000042 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000043}
44
Chris Lattner9b655512007-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 Lattner9b2dc282008-04-04 16:54:41 +000053 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-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 Dunbar46f45b92008-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 Gohman4f8d1232008-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 Lattner9b655512007-08-31 22:49:20 +000081
Reid Spencer5f016e22007-07-11 17:01:13 +000082//===----------------------------------------------------------------------===//
83// LValue Expression Emission
84//===----------------------------------------------------------------------===//
85
Daniel Dunbar6ba82a42008-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
Reid Spencer5f016e22007-07-11 17:01:13 +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 Dunbar6ba82a42008-08-25 20:45:57 +0000112 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000113
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000114 case Expr::BinaryOperatorClass:
115 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregorb4609802008-11-14 16:09:21 +0000116 case Expr::CallExprClass:
117 case Expr::CXXOperatorCallExprClass:
118 return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000119 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
120 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000121 case Expr::PredefinedExprClass:
122 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000123 case Expr::StringLiteralClass:
124 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000125
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000126 case Expr::CXXConditionDeclExprClass:
127 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
128
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000129 case Expr::ObjCMessageExprClass:
130 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000131 case Expr::ObjCIvarRefExprClass:
132 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000133 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000134 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000135 case Expr::ObjCSuperExprClass:
136 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
137
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 case Expr::UnaryOperatorClass:
139 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
140 case Expr::ArraySubscriptExprClass:
141 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000142 case Expr::ExtVectorElementExprClass:
143 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000144 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000145 case Expr::CompoundLiteralExprClass:
146 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 }
148}
149
150/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
151/// this method emits the address of the lvalue, then loads the result as an
152/// rvalue, returning the rvalue.
153RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000154 if (LV.isObjcWeak()) {
155 // load of a __weak object.
156 llvm::Value *AddrWeakObj = LV.getAddress();
157 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakCall(*this,
158 AddrWeakObj);
159 return RValue::get(read_weak);
160 }
161
Reid Spencer5f016e22007-07-11 17:01:13 +0000162 if (LV.isSimple()) {
163 llvm::Value *Ptr = LV.getAddress();
164 const llvm::Type *EltTy =
165 cast<llvm::PointerType>(Ptr->getType())->getElementType();
166
167 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000168 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000169 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000170
171 // Bool can have different representation in memory than in registers.
172 if (ExprType->isBooleanType()) {
173 if (V->getType() != llvm::Type::Int1Ty)
174 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
175 }
176
177 return RValue::get(V);
178 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000179
Chris Lattner883f6a72007-08-11 00:04:45 +0000180 assert(ExprType->isFunctionType() && "Unknown scalar value");
181 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 }
183
184 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000185 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
186 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000187 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
188 "vecext"));
189 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000190
191 // If this is a reference to a subset of the elements of a vector, either
192 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000193 if (LV.isExtVectorElt())
194 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000195
196 if (LV.isBitfield())
197 return EmitLoadOfBitfieldLValue(LV, ExprType);
198
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000199 if (LV.isPropertyRef())
200 return EmitLoadOfPropertyRefLValue(LV, ExprType);
201
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000202 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000203 //an invalid RValue, but the assert will
204 //ensure that this point is never reached
205 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000206}
207
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000208RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
209 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000210 unsigned StartBit = LV.getBitfieldStartBit();
211 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000212 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000213
214 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000215 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000216 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000217
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000218 // In some cases the bitfield may straddle two memory locations.
219 // Currently we load the entire bitfield, then do the magic to
220 // sign-extend it if necessary. This results in somewhat more code
221 // than necessary for the common case (one load), since two shifts
222 // accomplish both the masking and sign extension.
223 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
224 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
225
226 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000227 if (StartBit)
228 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
229 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000230
231 // Mask off unused bits.
232 llvm::Constant *LowMask =
233 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
234 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
235
236 // Fetch the high bits if necessary.
237 if (LowBits < BitfieldSize) {
238 unsigned HighBits = BitfieldSize - LowBits;
239 llvm::Value *HighPtr =
240 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
241 "bf.ptr.hi");
242 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
243 LV.isVolatileQualified(),
244 "tmp");
245
246 // Mask off unused bits.
247 llvm::Constant *HighMask =
248 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
249 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000250
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000251 // Shift to proper location and or in to bitfield value.
252 HighVal = Builder.CreateShl(HighVal,
253 llvm::ConstantInt::get(EltTy, LowBits));
254 Val = Builder.CreateOr(Val, HighVal, "bf.val");
255 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000256
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000257 // Sign extend if necessary.
258 if (LV.isBitfieldSigned()) {
259 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
260 EltTySize - BitfieldSize);
261 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
262 ExtraBits, "bf.val.sext");
263 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000264
265 // The bitfield type and the normal type differ when the storage sizes
266 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000267 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000268
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000269 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000270}
271
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000272RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
273 QualType ExprType) {
274 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
275}
276
Chris Lattner34cdc862007-08-03 16:18:34 +0000277// If this is a reference to a subset of the elements of a vector, either
278// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000279RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
280 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000281 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
282 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000283
Nate Begeman8a997642008-05-09 06:41:27 +0000284 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000285
286 // If the result of the expression is a non-vector type, we must be
287 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000288 const VectorType *ExprVT = ExprType->getAsVectorType();
289 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000290 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000291 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
292 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
293 }
294
295 // If the source and destination have the same number of elements, use a
296 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000297 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000298 unsigned NumSourceElts =
299 cast<llvm::VectorType>(Vec->getType())->getNumElements();
300
301 if (NumResultElts == NumSourceElts) {
302 llvm::SmallVector<llvm::Constant*, 4> Mask;
303 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000304 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000305 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
306 }
307
308 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
309 Vec = Builder.CreateShuffleVector(Vec,
310 llvm::UndefValue::get(Vec->getType()),
311 MaskV, "tmp");
312 return RValue::get(Vec);
313 }
314
315 // Start out with an undef of the result type.
316 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
317
318 // Extract/Insert each element of the result.
319 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000320 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000321 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
322 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
323
324 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
325 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
326 }
327
328 return RValue::get(Result);
329}
330
331
Reid Spencer5f016e22007-07-11 17:01:13 +0000332
333/// EmitStoreThroughLValue - Store the specified rvalue into the specified
334/// lvalue, where both are guaranteed to the have the same type, and that type
335/// is 'Ty'.
336void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
337 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000338 if (!Dst.isSimple()) {
339 if (Dst.isVectorElt()) {
340 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000341 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
342 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000343 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000344 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000345 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000346 return;
347 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000348
Nate Begeman213541a2008-04-18 23:10:10 +0000349 // If this is an update of extended vector elements, insert them as
350 // appropriate.
351 if (Dst.isExtVectorElt())
352 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000353
354 if (Dst.isBitfield())
355 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
356
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000357 if (Dst.isPropertyRef())
358 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
359
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000360 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000361 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000362
363 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000364 assert(Src.isScalar() && "Can't emit an agg store with this method");
365 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000366 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000367 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
368 const llvm::Type *AddrTy = DstPtr->getElementType();
369 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000370
Chris Lattner883f6a72007-08-11 00:04:45 +0000371 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000372 DstAddr = Builder.CreateBitCast(DstAddr,
373 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000374 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000375 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000376}
377
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000378void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
379 QualType Ty) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000380 unsigned StartBit = Dst.getBitfieldStartBit();
381 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000382 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000383
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000384 const llvm::Type *EltTy =
385 cast<llvm::PointerType>(Ptr->getType())->getElementType();
386 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
387
388 // Get the new value, cast to the appropriate type and masked to
389 // exactly the size of the bit-field.
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000390 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000391 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
392 llvm::Constant *Mask =
393 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
394 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000395
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000396 // In some cases the bitfield may straddle two memory locations.
397 // Emit the low part first and check to see if the high needs to be
398 // done.
399 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
400 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
401 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000402
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000403 // Compute the mask for zero-ing the low part of this bitfield.
404 llvm::Constant *InvMask =
405 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
406 StartBit + LowBits));
407
408 // Compute the new low part as
409 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
410 // with the shift of NewVal implicitly stripping the high bits.
411 llvm::Value *NewLowVal =
412 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
413 "bf.value.lo");
414 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
415 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
416
417 // Write back.
418 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000419
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000420 // If the low part doesn't cover the bitfield emit a high part.
421 if (LowBits < BitfieldSize) {
422 unsigned HighBits = BitfieldSize - LowBits;
423 llvm::Value *HighPtr =
424 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
425 "bf.ptr.hi");
426 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
427 Dst.isVolatileQualified(),
428 "bf.prev.hi");
429
430 // Compute the mask for zero-ing the high part of this bitfield.
431 llvm::Constant *InvMask =
432 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
433
434 // Compute the new high part as
435 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
436 // where the high bits of NewVal have already been cleared and the
437 // shift stripping the low bits.
438 llvm::Value *NewHighVal =
439 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
440 "bf.value.high");
441 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
442 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
443
444 // Write back.
445 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
446 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000447}
448
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000449void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
450 LValue Dst,
451 QualType Ty) {
452 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
453}
454
Nate Begeman213541a2008-04-18 23:10:10 +0000455void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
456 LValue Dst,
457 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000458 // This access turns into a read/modify/write of the vector. Load the input
459 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000460 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
461 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000462 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000463
Chris Lattner9b655512007-08-31 22:49:20 +0000464 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000465
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000466 if (const VectorType *VTy = Ty->getAsVectorType()) {
467 unsigned NumSrcElts = VTy->getNumElements();
468
469 // Extract/Insert each element.
470 for (unsigned i = 0; i != NumSrcElts; ++i) {
471 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
472 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
473
Dan Gohman4f8d1232008-05-22 00:50:06 +0000474 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000475 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
476 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
477 }
478 } else {
479 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000480 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000481 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
482 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000483 }
484
Eli Friedman1e692ac2008-06-13 23:01:12 +0000485 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000486}
487
Reid Spencer5f016e22007-07-11 17:01:13 +0000488
489LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000490 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
491
Chris Lattner41110242008-06-17 18:05:57 +0000492 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
493 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000494 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000495 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000496 E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000497 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000498 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000499 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000500 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000501 }
Steve Naroff248a7532008-04-15 22:42:06 +0000502 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000503 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
504 E->getType().getCVRQualifiers());
505 if (VD->getAttr<ObjCGCAttr>())
506 {
507 ObjCGCAttr::GCAttrTypes attrType = (VD->getAttr<ObjCGCAttr>())->getType();
508 LValue::SetObjCGCAttrs(attrType == ObjCGCAttr::Weak, attrType == ObjCGCAttr::Strong, LV);
509 }
510 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000511 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000512 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000513 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000514 }
Chris Lattner41110242008-06-17 18:05:57 +0000515 else if (const ImplicitParamDecl *IPD =
516 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
517 llvm::Value *V = LocalDeclMap[IPD];
518 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
519 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
520 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000521 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000522 //an invalid LValue, but the assert will
523 //ensure that this point is never reached.
524 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000525}
526
527LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
528 // __extension__ doesn't affect lvalue-ness.
529 if (E->getOpcode() == UnaryOperator::Extension)
530 return EmitLValue(E->getSubExpr());
531
Chris Lattner96196622008-07-26 22:37:01 +0000532 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000533 switch (E->getOpcode()) {
534 default: assert(0 && "Unknown unary operator lvalue!");
535 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000536 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000537 ExprTy->getAsPointerType()->getPointeeType()
538 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000539 case UnaryOperator::Real:
540 case UnaryOperator::Imag:
541 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000542 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
543 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000544 Idx, "idx"),
545 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000546 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000547}
548
549LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000550 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000551}
552
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000553LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000554 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000555
556 switch (Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000557 default:
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000558 assert(0 && "Invalid type");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000559 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000560 GlobalVarName = "__func__.";
561 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000562 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000563 GlobalVarName = "__FUNCTION__.";
564 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000565 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000566 // FIXME:: Demangle C++ method names
567 GlobalVarName = "__PRETTY_FUNCTION__.";
568 break;
569 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000570
571 std::string FunctionName;
572 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
573 FunctionName = FD->getName();
574 } else {
575 // Just get the mangled name.
576 FunctionName = CurFn->getName();
577 }
578
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000579 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000580 llvm::Constant *C =
581 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
582 return LValue::MakeAddr(C, 0);
583}
584
585LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
586 switch (E->getIdentType()) {
587 default:
588 return EmitUnsupportedLValue(E, "predefined expression");
589 case PredefinedExpr::Func:
590 case PredefinedExpr::Function:
591 case PredefinedExpr::PrettyFunction:
592 return EmitPredefinedFunctionName(E->getIdentType());
593 }
Anders Carlsson22742662007-07-21 05:21:51 +0000594}
595
Reid Spencer5f016e22007-07-11 17:01:13 +0000596LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000597 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000598 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000599
600 // If the base is a vector type, then we are forming a vector element lvalue
601 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000602 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000603 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000604 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000605 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000606 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000607 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
608 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000609 }
610
Ted Kremenek23245122007-08-20 16:18:38 +0000611 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000612 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000613
Ted Kremenek23245122007-08-20 16:18:38 +0000614 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000615 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000616 bool IdxSigned = IdxTy->isSignedIntegerType();
617 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
618 if (IdxBitwidth != LLVMPointerWidth)
619 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
620 IdxSigned, "idxprom");
621
622 // We know that the pointer points to a type of the correct size, unless the
623 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000624 if (!E->getType()->isConstantSizeType())
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000625 return EmitUnsupportedLValue(E, "VLA index");
Chris Lattner96196622008-07-26 22:37:01 +0000626 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000627
Eli Friedman1e692ac2008-06-13 23:01:12 +0000628 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000629 ExprTy->getAsPointerType()->getPointeeType()
630 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000631}
632
Nate Begeman3b8d1162008-05-13 21:03:02 +0000633static
634llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
635 llvm::SmallVector<llvm::Constant *, 4> CElts;
636
637 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
638 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
639
640 return llvm::ConstantVector::get(&CElts[0], CElts.size());
641}
642
Chris Lattner349aaec2007-08-02 23:37:31 +0000643LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000644EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000645 // Emit the base vector as an l-value.
646 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000647
Nate Begeman3b8d1162008-05-13 21:03:02 +0000648 // Encode the element access list into a vector of unsigned indices.
649 llvm::SmallVector<unsigned, 4> Indices;
650 E->getEncodedElementAccess(Indices);
651
652 if (Base.isSimple()) {
653 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000654 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
655 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000656 }
657 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
658
659 llvm::Constant *BaseElts = Base.getExtVectorElts();
660 llvm::SmallVector<llvm::Constant *, 4> CElts;
661
662 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
663 if (isa<llvm::ConstantAggregateZero>(BaseElts))
664 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
665 else
666 CElts.push_back(BaseElts->getOperand(Indices[i]));
667 }
668 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000669 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
670 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000671}
672
Devang Patelb9b00ad2007-10-23 20:28:39 +0000673LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000674 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000675 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000676 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000677 unsigned CVRQualifiers=0;
678
Chris Lattner12f65f62007-12-02 18:52:07 +0000679 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patelfe2419a2007-12-11 21:33:16 +0000680 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000681 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000682 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000683 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000684 if (PTy->getPointeeType()->isUnionType())
685 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000686 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000687 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000688 else {
689 LValue BaseLV = EmitLValue(BaseExpr);
690 // FIXME: this isn't right for bitfields.
691 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000692 if (BaseExpr->getType()->isUnionType())
693 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000694 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000695 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000696
697 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000698 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000699}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000700
Eli Friedman472778e2008-02-09 08:50:58 +0000701LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
702 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000703 bool isUnion,
704 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000705{
706 llvm::Value *V;
707 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000708
Eli Friedman1e86b342008-05-29 11:33:25 +0000709 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000710 // FIXME: CodeGenTypes should expose a method to get the appropriate
711 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000712 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000713 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000714 cast<llvm::PointerType>(BaseValue->getType());
715 unsigned AS = BaseTy->getAddressSpace();
716 BaseValue = Builder.CreateBitCast(BaseValue,
717 llvm::PointerType::get(FieldTy, AS),
718 "tmp");
719 V = Builder.CreateGEP(BaseValue,
720 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
721 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000722
723 CodeGenTypes::BitFieldInfo bitFieldInfo =
724 CGM.getTypes().getBitFieldInfo(Field);
725 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000726 Field->getType()->isSignedIntegerType(),
727 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000728 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000729
Eli Friedman1e86b342008-05-29 11:33:25 +0000730 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
731
Devang Patelabad06c2007-10-26 19:42:18 +0000732 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000733 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000734 const llvm::Type *FieldTy =
735 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000736 const llvm::PointerType * BaseTy =
737 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000738 unsigned AS = BaseTy->getAddressSpace();
739 V = Builder.CreateBitCast(V,
740 llvm::PointerType::get(FieldTy, AS),
741 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000742 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000743
Eli Friedman1e692ac2008-06-13 23:01:12 +0000744 return LValue::MakeAddr(V,
745 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000746}
747
Eli Friedman1e692ac2008-06-13 23:01:12 +0000748LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
749{
Eli Friedman06e863f2008-05-13 23:18:27 +0000750 const llvm::Type *LTy = ConvertType(E->getType());
751 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
752
753 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000754 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000755
756 if (E->getType()->isComplexType()) {
757 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
758 } else if (hasAggregateLLVMType(E->getType())) {
759 EmitAnyExpr(InitExpr, DeclPtr, false);
760 } else {
761 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
762 }
763
764 return Result;
765}
766
Reid Spencer5f016e22007-07-11 17:01:13 +0000767//===--------------------------------------------------------------------===//
768// Expression Emission
769//===--------------------------------------------------------------------===//
770
Chris Lattner7016a702007-08-20 22:37:10 +0000771
Reid Spencer5f016e22007-07-11 17:01:13 +0000772RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000773 if (const ImplicitCastExpr *IcExpr =
774 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
775 if (const DeclRefExpr *DRExpr =
776 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
777 if (const FunctionDecl *FDecl =
778 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
779 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
780 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000781
Chris Lattner7f02f722007-08-24 05:35:26 +0000782 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000783 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000784 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000785}
786
Ted Kremenek55499762008-06-17 02:43:46 +0000787RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
788 CallExpr::const_arg_iterator ArgBeg,
789 CallExpr::const_arg_iterator ArgEnd) {
790
Nate Begemane2ce1d92008-01-17 17:46:27 +0000791 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000792 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000793}
794
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000795LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
796 // Can only get l-value for binary operator expressions which are a
797 // simple assignment of aggregate type.
798 if (E->getOpcode() != BinaryOperator::Assign)
799 return EmitUnsupportedLValue(E, "binary l-value expression");
800
801 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
802 EmitAggExpr(E, Temp, false);
803 // FIXME: Are these qualifiers correct?
804 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
805}
806
Christopher Lamb22c940e2007-12-29 05:02:41 +0000807LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
808 // Can only get l-value for call expression returning aggregate type
809 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000810 // FIXME: can this be volatile?
811 return LValue::MakeAddr(RV.getAggregateAddr(),
812 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000813}
814
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000815LValue
816CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
817 EmitLocalBlockVarDecl(*E->getVarDecl());
818 return EmitDeclRefLValue(E);
819}
820
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000821LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
822 // Can only get l-value for message expression returning aggregate type
823 RValue RV = EmitObjCMessageExpr(E);
824 // FIXME: can this be volatile?
825 return LValue::MakeAddr(RV.getAggregateAddr(),
826 E->getType().getCVRQualifiers());
827}
828
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000829llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
830 const ObjCIvarDecl *Ivar) {
Chris Lattner391d77a2008-03-30 23:03:07 +0000831 // Objective-C objects are traditionally C structures with their layout
832 // defined at compile-time. In some implementations, their layout is not
833 // defined until run time in order to allow instance variables to be added to
834 // a class without recompiling all of the subclasses. If this is the case
835 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
836 // implement the lookup itself.
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000837 if (CGM.getObjCRuntime().LateBoundIVars())
838 assert(0 && "late-bound ivars are unsupported");
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000839
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000840 const llvm::Type *InterfaceLTy =
841 CGM.getTypes().ConvertType(getContext().getObjCInterfaceType(Interface));
842 const llvm::StructLayout *Layout =
843 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceLTy));
844 uint64_t Offset =
845 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(Ivar));
846
847 return llvm::ConstantInt::get(CGM.getTypes().ConvertType(getContext().LongTy),
848 Offset);
849}
850
851LValue CodeGenFunction::EmitLValueForIvar(llvm::Value *BaseValue,
852 const ObjCIvarDecl *Ivar,
853 unsigned CVRQualifiers) {
854 // See comment in EmitIvarOffset.
855 if (CGM.getObjCRuntime().LateBoundIVars())
856 assert(0 && "late-bound ivars are unsupported");
857
858 if (Ivar->isBitField())
859 assert(0 && "ivar bitfields are unsupported");
860
861 // TODO: Add a special case for isa (index 0)
862 unsigned Index = CGM.getTypes().getLLVMFieldNo(Ivar);
863
864 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
865 return LValue::MakeAddr(V, Ivar->getType().getCVRQualifiers()|CVRQualifiers);
866}
867
868LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +0000869 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
870 llvm::Value *BaseValue = 0;
871 const Expr *BaseExpr = E->getBase();
872 unsigned CVRQualifiers = 0;
873 if (E->isArrow()) {
874 BaseValue = EmitScalarExpr(BaseExpr);
875 const PointerType *PTy =
876 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
877 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
878 } else {
879 LValue BaseLV = EmitLValue(BaseExpr);
880 // FIXME: this isn't right for bitfields.
881 BaseValue = BaseLV.getAddress();
882 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
883 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000884
885 return EmitLValueForIvar(BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +0000886}
887
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000888LValue
889CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
890 // This is a special l-value that just issues sends when we load or
891 // store through it.
892 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
893}
894
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000895LValue
896CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
897 return EmitUnsupportedLValue(E, "use of super");
898}
899
Nate Begemane2ce1d92008-01-17 17:46:27 +0000900RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek55499762008-06-17 02:43:46 +0000901 CallExpr::const_arg_iterator ArgBeg,
902 CallExpr::const_arg_iterator ArgEnd) {
903
Reid Spencer5f016e22007-07-11 17:01:13 +0000904 // The callee type will always be a pointer to function type, get the function
905 // type.
Chris Lattner96196622008-07-26 22:37:01 +0000906 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner05d2fb42008-07-31 04:58:58 +0000907 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000908
909 CallArgList Args;
910 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar46f45b92008-09-09 01:06:48 +0000911 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
912 I->getType()));
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000913
914 return EmitCall(Callee, ResultType, Args);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000915}