blob: 2742395db86df5891edebcfb17e27b8fb2043994 [file] [log] [blame]
Chris Lattnere47e4402007-06-01 18:02:12 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnere47e4402007-06-01 18:02:12 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
Chris Lattnerb6984c42007-06-20 04:44:43 +000015#include "CodeGenModule.h"
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbar89da6ad2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbarad319a72008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedmanf2442dc2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Chris Lattnere47e4402007-06-01 18:02:12 +000021using namespace clang;
22using namespace CodeGen;
23
Chris Lattnerd7f58862007-06-02 05:24:33 +000024//===--------------------------------------------------------------------===//
Chris Lattnerf0106d22007-06-02 19:33:17 +000025// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
Chris Lattnere9a64532007-06-22 21:44:33 +000028/// CreateTempAlloca - This creates a alloca and inserts it into the entry
29/// block.
30llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
31 const char *Name) {
32 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
33}
Chris Lattner8394d792007-06-05 20:53:16 +000034
35/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
36/// expression and compare the result against zero, returning an Int1Ty value.
Chris Lattner23b7eb62007-06-15 23:05:46 +000037llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner268fcce2007-08-26 16:46:58 +000038 QualType BoolTy = getContext().BoolTy;
Chris Lattnerf3bc75a2008-04-04 16:54:41 +000039 if (!E->getType()->isAnyComplexType())
Chris Lattner268fcce2007-08-26 16:46:58 +000040 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner8394d792007-06-05 20:53:16 +000041
Chris Lattner268fcce2007-08-26 16:46:58 +000042 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattnerf0106d22007-06-02 19:33:17 +000043}
44
Chris Lattner4647a212007-08-31 22:49:20 +000045/// EmitAnyExpr - Emit code to compute the specified expression which can have
46/// any type. The result is returned as an RValue struct. If this is an
47/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
48/// the result should be returned.
49RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
50 bool isAggLocVolatile) {
51 if (!hasAggregateLLVMType(E->getType()))
52 return RValue::get(EmitScalarExpr(E));
Chris Lattnerf3bc75a2008-04-04 16:54:41 +000053 else if (E->getType()->isAnyComplexType())
Chris Lattner4647a212007-08-31 22:49:20 +000054 return RValue::getComplex(EmitComplexExpr(E));
55
56 EmitAggExpr(E, AggLoc, isAggLocVolatile);
57 return RValue::getAggregate(AggLoc);
58}
59
Daniel Dunbar41cf9de2008-09-09 01:06:48 +000060/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
61/// will always be accessible even if no aggregate location is
62/// provided.
63RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
64 bool isAggLocVolatile) {
65 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
66 !E->getType()->isAnyComplexType())
67 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
68 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
69}
70
Dan Gohman75d69da2008-05-22 00:50:06 +000071/// getAccessedFieldNo - Given an encoded value and a result number, return
72/// the input field number being accessed.
73unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
74 const llvm::Constant *Elts) {
75 if (isa<llvm::ConstantAggregateZero>(Elts))
76 return 0;
77
78 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
79}
80
Chris Lattner4647a212007-08-31 22:49:20 +000081
Chris Lattnera45c5af2007-06-02 19:47:04 +000082//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +000083// LValue Expression Emission
Chris Lattnera45c5af2007-06-02 19:47:04 +000084//===----------------------------------------------------------------------===//
Chris Lattnerd7f58862007-06-02 05:24:33 +000085
Daniel Dunbarf2e69882008-08-25 20:45:57 +000086LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
87 const char *Name) {
88 ErrorUnsupported(E, Name);
89 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
90 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
91 E->getType().getCVRQualifiers());
92}
93
Chris Lattner8394d792007-06-05 20:53:16 +000094/// EmitLValue - Emit code to compute a designator that specifies the location
95/// of the expression.
96///
97/// This can return one of two things: a simple address or a bitfield
98/// reference. In either case, the LLVM Value* in the LValue structure is
99/// guaranteed to be an LLVM pointer type.
100///
101/// If this returns a bitfield reference, nothing about the pointee type of
102/// the LLVM value is known: For example, it may not be a pointer to an
103/// integer.
104///
105/// If this returns a normal address, and if the lvalue's C type is fixed
106/// size, this method guarantees that the returned pointer type will point to
107/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
108/// variable length type, this is not possible.
109///
Chris Lattnerd7f58862007-06-02 05:24:33 +0000110LValue CodeGenFunction::EmitLValue(const Expr *E) {
111 switch (E->getStmtClass()) {
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000112 default: return EmitUnsupportedLValue(E, "l-value expression");
Chris Lattnerd7f58862007-06-02 05:24:33 +0000113
Daniel Dunbar8cde00a2008-09-04 03:20:13 +0000114 case Expr::BinaryOperatorClass:
115 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregor993603d2008-11-14 16:09:21 +0000116 case Expr::CallExprClass:
117 case Expr::CXXOperatorCallExprClass:
118 return EmitCallExprLValue(cast<CallExpr>(E));
Douglas Gregorc7acfdf2009-01-06 05:10:23 +0000119 case Expr::DeclRefExprClass:
120 case Expr::QualifiedDeclRefExprClass:
121 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Chris Lattner946aa312007-06-05 03:59:43 +0000122 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner6307f192008-08-10 01:53:14 +0000123 case Expr::PredefinedExprClass:
124 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Chris Lattner4347e3692007-06-06 04:54:52 +0000125 case Expr::StringLiteralClass:
126 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner4bd55962008-03-30 23:03:07 +0000127
Argyrios Kyrtzidis07052352008-09-10 02:36:38 +0000128 case Expr::CXXConditionDeclExprClass:
129 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
130
Daniel Dunbarc8317a42008-08-23 10:51:21 +0000131 case Expr::ObjCMessageExprClass:
132 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner4bd55962008-03-30 23:03:07 +0000133 case Expr::ObjCIvarRefExprClass:
134 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbarf2e69882008-08-25 20:45:57 +0000135 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000136 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000137 case Expr::ObjCKVCRefExprClass:
138 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregor8ea1f532008-11-04 14:56:14 +0000139 case Expr::ObjCSuperExprClass:
140 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
141
Chris Lattner8394d792007-06-05 20:53:16 +0000142 case Expr::UnaryOperatorClass:
143 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000144 case Expr::ArraySubscriptExprClass:
145 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begemance4d7fc2008-04-18 23:10:10 +0000146 case Expr::ExtVectorElementExprClass:
147 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patel30efa2e2007-10-23 20:28:39 +0000148 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman9fd8b682008-05-13 23:18:27 +0000149 case Expr::CompoundLiteralExprClass:
150 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattner053441f2008-12-12 05:35:08 +0000151 case Expr::ChooseExprClass:
152 // __builtin_choose_expr is the lvalue of the selected operand.
153 if (cast<ChooseExpr>(E)->isConditionTrue(getContext()))
154 return EmitLValue(cast<ChooseExpr>(E)->getLHS());
155 else
156 return EmitLValue(cast<ChooseExpr>(E)->getRHS());
Chris Lattnerd7f58862007-06-02 05:24:33 +0000157 }
158}
159
Chris Lattner8394d792007-06-05 20:53:16 +0000160/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
161/// this method emits the address of the lvalue, then loads the result as an
162/// rvalue, returning the rvalue.
Chris Lattner9369a562007-06-29 16:31:29 +0000163RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000164 if (LV.isObjCWeak()) {
Fariborz Jahanianf5125d12008-11-18 21:45:40 +0000165 // load of a __weak object.
166 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian83f45b552008-11-18 22:37:34 +0000167 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanianf5125d12008-11-18 21:45:40 +0000168 AddrWeakObj);
169 return RValue::get(read_weak);
170 }
171
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000172 if (LV.isSimple()) {
173 llvm::Value *Ptr = LV.getAddress();
174 const llvm::Type *EltTy =
175 cast<llvm::PointerType>(Ptr->getType())->getElementType();
176
177 // Simple scalar l-value.
Dan Gohman5d309752008-05-22 22:12:56 +0000178 if (EltTy->isSingleValueType()) {
Eli Friedman327944b2008-06-13 23:01:12 +0000179 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner05ba4cb2008-01-30 07:01:17 +0000180
181 // Bool can have different representation in memory than in registers.
182 if (ExprType->isBooleanType()) {
183 if (V->getType() != llvm::Type::Int1Ty)
184 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
185 }
186
187 return RValue::get(V);
188 }
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000189
Chris Lattner6278e6a2007-08-11 00:04:45 +0000190 assert(ExprType->isFunctionType() && "Unknown scalar value");
191 return RValue::get(Ptr);
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000192 }
Chris Lattner09153c02007-06-22 18:48:09 +0000193
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000194 if (LV.isVectorElt()) {
Eli Friedman327944b2008-06-13 23:01:12 +0000195 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
196 LV.isVolatileQualified(), "tmp");
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000197 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
198 "vecext"));
199 }
Chris Lattner73ab9b32007-08-03 00:16:29 +0000200
201 // If this is a reference to a subset of the elements of a vector, either
202 // shuffle the input or extract/insert them as appropriate.
Nate Begemance4d7fc2008-04-18 23:10:10 +0000203 if (LV.isExtVectorElt())
204 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000205
206 if (LV.isBitfield())
207 return EmitLoadOfBitfieldLValue(LV, ExprType);
208
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000209 if (LV.isPropertyRef())
210 return EmitLoadOfPropertyRefLValue(LV, ExprType);
211
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000212 if (LV.isKVCRef())
213 return EmitLoadOfKVCRefLValue(LV, ExprType);
214
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000215 assert(0 && "Unknown LValue type!");
Chris Lattner793d10c2007-09-16 19:23:47 +0000216 //an invalid RValue, but the assert will
217 //ensure that this point is never reached
218 return RValue();
Chris Lattner8394d792007-06-05 20:53:16 +0000219}
220
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000221RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
222 QualType ExprType) {
Daniel Dunbaread7c912008-08-06 05:08:45 +0000223 unsigned StartBit = LV.getBitfieldStartBit();
224 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000225 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbaread7c912008-08-06 05:08:45 +0000226
227 const llvm::Type *EltTy =
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000228 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbaread7c912008-08-06 05:08:45 +0000229 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000230
Daniel Dunbaread7c912008-08-06 05:08:45 +0000231 // In some cases the bitfield may straddle two memory locations.
232 // Currently we load the entire bitfield, then do the magic to
233 // sign-extend it if necessary. This results in somewhat more code
234 // than necessary for the common case (one load), since two shifts
235 // accomplish both the masking and sign extension.
236 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
237 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
238
239 // Shift to proper location.
Daniel Dunbarf7fb7502008-11-13 02:20:34 +0000240 if (StartBit)
241 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
242 "bf.lo");
Daniel Dunbaread7c912008-08-06 05:08:45 +0000243
244 // Mask off unused bits.
245 llvm::Constant *LowMask =
246 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
247 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
248
249 // Fetch the high bits if necessary.
250 if (LowBits < BitfieldSize) {
251 unsigned HighBits = BitfieldSize - LowBits;
252 llvm::Value *HighPtr =
253 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
254 "bf.ptr.hi");
255 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
256 LV.isVolatileQualified(),
257 "tmp");
258
259 // Mask off unused bits.
260 llvm::Constant *HighMask =
261 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
262 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000263
Daniel Dunbaread7c912008-08-06 05:08:45 +0000264 // Shift to proper location and or in to bitfield value.
265 HighVal = Builder.CreateShl(HighVal,
266 llvm::ConstantInt::get(EltTy, LowBits));
267 Val = Builder.CreateOr(Val, HighVal, "bf.val");
268 }
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000269
Daniel Dunbaread7c912008-08-06 05:08:45 +0000270 // Sign extend if necessary.
271 if (LV.isBitfieldSigned()) {
272 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
273 EltTySize - BitfieldSize);
274 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
275 ExtraBits, "bf.val.sext");
276 }
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000277
278 // The bitfield type and the normal type differ when the storage sizes
279 // differ (currently just _Bool).
Daniel Dunbaread7c912008-08-06 05:08:45 +0000280 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000281
Daniel Dunbaread7c912008-08-06 05:08:45 +0000282 return RValue::get(Val);
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000283}
284
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000285RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
286 QualType ExprType) {
287 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
288}
289
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000290RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
291 QualType ExprType) {
292 return EmitObjCPropertyGet(LV.getKVCRefExpr());
293}
294
Chris Lattner40ff7012007-08-03 16:18:34 +0000295// If this is a reference to a subset of the elements of a vector, either
296// shuffle the input or extract/insert them as appropriate.
Nate Begemance4d7fc2008-04-18 23:10:10 +0000297RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
298 QualType ExprType) {
Eli Friedman327944b2008-06-13 23:01:12 +0000299 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
300 LV.isVolatileQualified(), "tmp");
Chris Lattner40ff7012007-08-03 16:18:34 +0000301
Nate Begemanf322eab2008-05-09 06:41:27 +0000302 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner40ff7012007-08-03 16:18:34 +0000303
304 // If the result of the expression is a non-vector type, we must be
305 // extracting a single element. Just codegen as an extractelement.
Chris Lattner8eab8ff2007-08-10 17:10:08 +0000306 const VectorType *ExprVT = ExprType->getAsVectorType();
307 if (!ExprVT) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000308 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner40ff7012007-08-03 16:18:34 +0000309 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
310 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
311 }
312
313 // If the source and destination have the same number of elements, use a
314 // vector shuffle instead of insert/extracts.
Chris Lattner8eab8ff2007-08-10 17:10:08 +0000315 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner40ff7012007-08-03 16:18:34 +0000316 unsigned NumSourceElts =
317 cast<llvm::VectorType>(Vec->getType())->getNumElements();
318
319 if (NumResultElts == NumSourceElts) {
320 llvm::SmallVector<llvm::Constant*, 4> Mask;
321 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000322 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner40ff7012007-08-03 16:18:34 +0000323 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
324 }
325
326 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
327 Vec = Builder.CreateShuffleVector(Vec,
328 llvm::UndefValue::get(Vec->getType()),
329 MaskV, "tmp");
330 return RValue::get(Vec);
331 }
332
333 // Start out with an undef of the result type.
334 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
335
336 // Extract/Insert each element of the result.
337 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman75d69da2008-05-22 00:50:06 +0000338 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner40ff7012007-08-03 16:18:34 +0000339 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
340 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
341
342 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
343 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
344 }
345
346 return RValue::get(Result);
347}
348
349
Chris Lattner9369a562007-06-29 16:31:29 +0000350
Chris Lattner8394d792007-06-05 20:53:16 +0000351/// EmitStoreThroughLValue - Store the specified rvalue into the specified
352/// lvalue, where both are guaranteed to the have the same type, and that type
353/// is 'Ty'.
354void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
355 QualType Ty) {
Chris Lattner41d480e2007-08-03 16:28:33 +0000356 if (!Dst.isSimple()) {
357 if (Dst.isVectorElt()) {
358 // Read/modify/write the vector, inserting the new element.
Eli Friedman327944b2008-06-13 23:01:12 +0000359 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
360 Dst.isVolatileQualified(), "tmp");
Chris Lattner4647a212007-08-31 22:49:20 +0000361 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner41d480e2007-08-03 16:28:33 +0000362 Dst.getVectorIdx(), "vecins");
Eli Friedman327944b2008-06-13 23:01:12 +0000363 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner41d480e2007-08-03 16:28:33 +0000364 return;
365 }
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000366
Nate Begemance4d7fc2008-04-18 23:10:10 +0000367 // If this is an update of extended vector elements, insert them as
368 // appropriate.
369 if (Dst.isExtVectorElt())
370 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000371
372 if (Dst.isBitfield())
373 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
374
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000375 if (Dst.isPropertyRef())
376 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
377
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000378 if (Dst.isKVCRef())
379 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
380
Lauro Ramos Venanciodb449042008-01-22 22:38:35 +0000381 assert(0 && "Unknown LValue type");
Chris Lattner41d480e2007-08-03 16:28:33 +0000382 }
Chris Lattner8394d792007-06-05 20:53:16 +0000383
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000384 if (Dst.isObjCWeak()) {
385 // load of a __weak object.
386 llvm::Value *LvalueDst = Dst.getAddress();
387 llvm::Value *src = Src.getScalarVal();
388 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
389 return;
390 }
391
392 if (Dst.isObjCStrong()) {
393 // load of a __strong object.
394 llvm::Value *LvalueDst = Dst.getAddress();
395 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian75686a52008-11-20 20:53:20 +0000396 if (Dst.isObjCIvar())
397 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
398 else
399 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian50a12702008-11-19 17:34:06 +0000400 return;
401 }
402
Chris Lattner09153c02007-06-22 18:48:09 +0000403 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner6278e6a2007-08-11 00:04:45 +0000404 assert(Src.isScalar() && "Can't emit an agg store with this method");
405 // FIXME: Handle volatility etc.
Chris Lattner4647a212007-08-31 22:49:20 +0000406 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lamb77560fb2007-12-17 01:11:20 +0000407 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
408 const llvm::Type *AddrTy = DstPtr->getElementType();
409 unsigned AS = DstPtr->getAddressSpace();
Chris Lattner8394d792007-06-05 20:53:16 +0000410
Chris Lattner6278e6a2007-08-11 00:04:45 +0000411 if (AddrTy != SrcTy)
Christopher Lamb77560fb2007-12-17 01:11:20 +0000412 DstAddr = Builder.CreateBitCast(DstAddr,
413 llvm::PointerType::get(SrcTy, AS),
Chris Lattner6278e6a2007-08-11 00:04:45 +0000414 "storetmp");
Eli Friedman327944b2008-06-13 23:01:12 +0000415 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Chris Lattner8394d792007-06-05 20:53:16 +0000416}
417
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000418void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000419 QualType Ty,
420 llvm::Value **Result) {
Daniel Dunbaread7c912008-08-06 05:08:45 +0000421 unsigned StartBit = Dst.getBitfieldStartBit();
422 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000423 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000424
Daniel Dunbaread7c912008-08-06 05:08:45 +0000425 const llvm::Type *EltTy =
426 cast<llvm::PointerType>(Ptr->getType())->getElementType();
427 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
428
429 // Get the new value, cast to the appropriate type and masked to
430 // exactly the size of the bit-field.
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000431 llvm::Value *SrcVal = Src.getScalarVal();
432 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbaread7c912008-08-06 05:08:45 +0000433 llvm::Constant *Mask =
434 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
435 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000436
Daniel Dunbar9b1335e2008-11-19 09:36:46 +0000437 // Return the new value of the bit-field, if requested.
438 if (Result) {
439 // Cast back to the proper type for result.
440 const llvm::Type *SrcTy = SrcVal->getType();
441 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
442 "bf.reload.val");
443
444 // Sign extend if necessary.
445 if (Dst.isBitfieldSigned()) {
446 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
447 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
448 SrcTySize - BitfieldSize);
449 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
450 ExtraBits, "bf.reload.sext");
451 }
452
453 *Result = SrcTrunc;
454 }
455
Daniel Dunbaread7c912008-08-06 05:08:45 +0000456 // In some cases the bitfield may straddle two memory locations.
457 // Emit the low part first and check to see if the high needs to be
458 // done.
459 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
460 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
461 "bf.prev.low");
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000462
Daniel Dunbaread7c912008-08-06 05:08:45 +0000463 // Compute the mask for zero-ing the low part of this bitfield.
464 llvm::Constant *InvMask =
465 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
466 StartBit + LowBits));
467
468 // Compute the new low part as
469 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
470 // with the shift of NewVal implicitly stripping the high bits.
471 llvm::Value *NewLowVal =
472 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
473 "bf.value.lo");
474 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
475 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
476
477 // Write back.
478 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedmanf2442dc2008-05-17 20:03:47 +0000479
Daniel Dunbaread7c912008-08-06 05:08:45 +0000480 // If the low part doesn't cover the bitfield emit a high part.
481 if (LowBits < BitfieldSize) {
482 unsigned HighBits = BitfieldSize - LowBits;
483 llvm::Value *HighPtr =
484 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
485 "bf.ptr.hi");
486 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
487 Dst.isVolatileQualified(),
488 "bf.prev.hi");
489
490 // Compute the mask for zero-ing the high part of this bitfield.
491 llvm::Constant *InvMask =
492 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
493
494 // Compute the new high part as
495 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
496 // where the high bits of NewVal have already been cleared and the
497 // shift stripping the low bits.
498 llvm::Value *NewHighVal =
499 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
500 "bf.value.high");
501 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
502 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
503
504 // Write back.
505 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
506 }
Lauro Ramos Venancio09af71c2008-01-22 22:36:45 +0000507}
508
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +0000509void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
510 LValue Dst,
511 QualType Ty) {
512 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
513}
514
Fariborz Jahanian9ac53512008-11-22 22:30:21 +0000515void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
516 LValue Dst,
517 QualType Ty) {
518 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
519}
520
Nate Begemance4d7fc2008-04-18 23:10:10 +0000521void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
522 LValue Dst,
523 QualType Ty) {
Chris Lattner41d480e2007-08-03 16:28:33 +0000524 // This access turns into a read/modify/write of the vector. Load the input
525 // value now.
Eli Friedman327944b2008-06-13 23:01:12 +0000526 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
527 Dst.isVolatileQualified(), "tmp");
Nate Begemanf322eab2008-05-09 06:41:27 +0000528 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner41d480e2007-08-03 16:28:33 +0000529
Chris Lattner4647a212007-08-31 22:49:20 +0000530 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner41d480e2007-08-03 16:28:33 +0000531
Chris Lattner3a44aa72007-08-03 16:37:04 +0000532 if (const VectorType *VTy = Ty->getAsVectorType()) {
533 unsigned NumSrcElts = VTy->getNumElements();
534
535 // Extract/Insert each element.
536 for (unsigned i = 0; i != NumSrcElts; ++i) {
537 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
538 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
539
Dan Gohman75d69da2008-05-22 00:50:06 +0000540 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner3a44aa72007-08-03 16:37:04 +0000541 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
542 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
543 }
544 } else {
545 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman75d69da2008-05-22 00:50:06 +0000546 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner41d480e2007-08-03 16:28:33 +0000547 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
548 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner41d480e2007-08-03 16:28:33 +0000549 }
550
Eli Friedman327944b2008-06-13 23:01:12 +0000551 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner41d480e2007-08-03 16:28:33 +0000552}
553
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000554/// SetVarDeclObjCAttribute - Set __weak/__strong attributes into the LValue
555/// object.
Fariborz Jahanian75686a52008-11-20 20:53:20 +0000556static void SetVarDeclObjCAttribute(ASTContext &Ctx, const Decl *VD,
Fariborz Jahaniand4081c62008-11-20 18:10:58 +0000557 const QualType &Ty, LValue &LV)
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000558{
559 if (const ObjCGCAttr *A = VD->getAttr<ObjCGCAttr>()) {
560 ObjCGCAttr::GCAttrTypes attrType = A->getType();
561 LValue::SetObjCType(attrType == ObjCGCAttr::Weak,
562 attrType == ObjCGCAttr::Strong, LV);
563 }
Fariborz Jahaniand4081c62008-11-20 18:10:58 +0000564 else if (Ctx.getLangOptions().ObjC1 &&
565 Ctx.getLangOptions().getGCMode() != LangOptions::NonGC) {
566 // Default behavious under objective-c's gc is for objective-c pointers
567 // be treated as though they were declared as __strong.
568 if (Ctx.isObjCObjectPointerType(Ty))
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000569 LValue::SetObjCType(false, true, LV);
570 }
571}
Chris Lattnerd7f58862007-06-02 05:24:33 +0000572
573LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff08899ff2008-04-15 22:42:06 +0000574 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
575
Chris Lattner5696e7b2008-06-17 18:05:57 +0000576 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
577 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000578 LValue LV;
579 if (VD->getStorageClass() == VarDecl::Extern) {
580 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
581 E->getType().getCVRQualifiers());
582 }
Lauro Ramos Venanciobada8d42008-02-16 22:30:38 +0000583 else {
Steve Naroff08899ff2008-04-15 22:42:06 +0000584 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciobada8d42008-02-16 22:30:38 +0000585 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000586 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciobada8d42008-02-16 22:30:38 +0000587 }
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000588 if (VD->isBlockVarDecl() &&
589 (VD->getStorageClass() == VarDecl::Static ||
590 VD->getStorageClass() == VarDecl::Extern))
Fariborz Jahaniand4081c62008-11-20 18:10:58 +0000591 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000592 return LV;
Steve Naroff08899ff2008-04-15 22:42:06 +0000593 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanian406b1172008-11-18 20:18:11 +0000594 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
595 E->getType().getCVRQualifiers());
Fariborz Jahaniand4081c62008-11-20 18:10:58 +0000596 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian406b1172008-11-18 20:18:11 +0000597 return LV;
Steve Naroff08899ff2008-04-15 22:42:06 +0000598 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbar9c426522008-07-29 23:18:29 +0000599 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman327944b2008-06-13 23:01:12 +0000600 E->getType().getCVRQualifiers());
Chris Lattnerd7f58862007-06-02 05:24:33 +0000601 }
Chris Lattner5696e7b2008-06-17 18:05:57 +0000602 else if (const ImplicitParamDecl *IPD =
603 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
604 llvm::Value *V = LocalDeclMap[IPD];
605 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
606 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
607 }
Chris Lattnerd7f58862007-06-02 05:24:33 +0000608 assert(0 && "Unimp declref");
Chris Lattner793d10c2007-09-16 19:23:47 +0000609 //an invalid LValue, but the assert will
610 //ensure that this point is never reached.
611 return LValue();
Chris Lattnerd7f58862007-06-02 05:24:33 +0000612}
Chris Lattnere47e4402007-06-01 18:02:12 +0000613
Chris Lattner8394d792007-06-05 20:53:16 +0000614LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
615 // __extension__ doesn't affect lvalue-ness.
616 if (E->getOpcode() == UnaryOperator::Extension)
617 return EmitLValue(E->getSubExpr());
618
Chris Lattner0f398c42008-07-26 22:37:01 +0000619 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner595db862007-10-30 22:53:42 +0000620 switch (E->getOpcode()) {
621 default: assert(0 && "Unknown unary operator lvalue!");
622 case UnaryOperator::Deref:
Eli Friedman327944b2008-06-13 23:01:12 +0000623 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattner574dee62008-07-26 22:17:49 +0000624 ExprTy->getAsPointerType()->getPointeeType()
625 .getCVRQualifiers());
Chris Lattner595db862007-10-30 22:53:42 +0000626 case UnaryOperator::Real:
627 case UnaryOperator::Imag:
628 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner3e593cd2008-03-19 05:19:41 +0000629 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
630 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattner574dee62008-07-26 22:17:49 +0000631 Idx, "idx"),
632 ExprTy.getCVRQualifiers());
Chris Lattner595db862007-10-30 22:53:42 +0000633 }
Chris Lattner8394d792007-06-05 20:53:16 +0000634}
635
Chris Lattner4347e3692007-06-06 04:54:52 +0000636LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbarc4baa062008-08-13 23:20:05 +0000637 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Chris Lattner4347e3692007-06-06 04:54:52 +0000638}
639
Daniel Dunbarb3517472008-10-17 21:58:32 +0000640LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson625bfc82007-07-21 05:21:51 +0000641 std::string GlobalVarName;
Daniel Dunbarb3517472008-10-17 21:58:32 +0000642
643 switch (Type) {
Anders Carlsson625bfc82007-07-21 05:21:51 +0000644 default:
Daniel Dunbarb3517472008-10-17 21:58:32 +0000645 assert(0 && "Invalid type");
Chris Lattner6307f192008-08-10 01:53:14 +0000646 case PredefinedExpr::Func:
Anders Carlsson625bfc82007-07-21 05:21:51 +0000647 GlobalVarName = "__func__.";
648 break;
Chris Lattner6307f192008-08-10 01:53:14 +0000649 case PredefinedExpr::Function:
Anders Carlsson625bfc82007-07-21 05:21:51 +0000650 GlobalVarName = "__FUNCTION__.";
651 break;
Chris Lattner6307f192008-08-10 01:53:14 +0000652 case PredefinedExpr::PrettyFunction:
Anders Carlsson625bfc82007-07-21 05:21:51 +0000653 // FIXME:: Demangle C++ method names
654 GlobalVarName = "__PRETTY_FUNCTION__.";
655 break;
656 }
Daniel Dunbarb3517472008-10-17 21:58:32 +0000657
658 std::string FunctionName;
659 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
Chris Lattnerf3d3fae2008-11-24 05:29:24 +0000660 FunctionName = FD->getNameAsString();
Daniel Dunbarb3517472008-10-17 21:58:32 +0000661 } else {
662 // Just get the mangled name.
663 FunctionName = CurFn->getName();
664 }
665
Chris Lattner5506f8c2008-04-04 04:07:35 +0000666 GlobalVarName += FunctionName;
Daniel Dunbarb3517472008-10-17 21:58:32 +0000667 llvm::Constant *C =
668 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
669 return LValue::MakeAddr(C, 0);
670}
671
672LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
673 switch (E->getIdentType()) {
674 default:
675 return EmitUnsupportedLValue(E, "predefined expression");
676 case PredefinedExpr::Func:
677 case PredefinedExpr::Function:
678 case PredefinedExpr::PrettyFunction:
679 return EmitPredefinedFunctionName(E->getIdentType());
680 }
Anders Carlsson625bfc82007-07-21 05:21:51 +0000681}
682
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000683LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenekc81614d2007-08-20 16:18:38 +0000684 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner2da04b32007-08-24 05:35:26 +0000685 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000686
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000687 // If the base is a vector type, then we are forming a vector element lvalue
688 // with this subscript.
Eli Friedman327944b2008-06-13 23:01:12 +0000689 if (E->getBase()->getType()->isVectorType()) {
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000690 // Emit the vector as an lvalue to get its address.
Eli Friedman327944b2008-06-13 23:01:12 +0000691 LValue LHS = EmitLValue(E->getBase());
Ted Kremenekc81614d2007-08-20 16:18:38 +0000692 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000693 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman327944b2008-06-13 23:01:12 +0000694 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
695 E->getBase()->getType().getCVRQualifiers());
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000696 }
697
Ted Kremenekc81614d2007-08-20 16:18:38 +0000698 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner2da04b32007-08-24 05:35:26 +0000699 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner08c4b9f2007-07-10 21:17:59 +0000700
Ted Kremenekc81614d2007-08-20 16:18:38 +0000701 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner5ebb2fe2007-08-08 17:43:05 +0000702 QualType IdxTy = E->getIdx()->getType();
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000703 bool IdxSigned = IdxTy->isSignedIntegerType();
Chris Lattner23b7eb62007-06-15 23:05:46 +0000704 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000705 if (IdxBitwidth != LLVMPointerWidth)
Chris Lattner23b7eb62007-06-15 23:05:46 +0000706 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000707 IdxSigned, "idxprom");
708
709 // We know that the pointer points to a type of the correct size, unless the
710 // size is a VLA.
Anders Carlsson3d312f82008-12-21 00:11:23 +0000711 if (const VariableArrayType *VAT =
712 getContext().getAsVariableArrayType(E->getType())) {
713 llvm::Value *VLASize = VLASizeMap[VAT];
714
715 Idx = Builder.CreateMul(Idx, VLASize);
716
Anders Carlssone0808df2008-12-21 03:44:36 +0000717 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson3d312f82008-12-21 00:11:23 +0000718
719 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
720 Idx = Builder.CreateUDiv(Idx,
721 llvm::ConstantInt::get(Idx->getType(),
722 BaseTypeSize));
723 }
724
Chris Lattner0f398c42008-07-26 22:37:01 +0000725 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattner574dee62008-07-26 22:17:49 +0000726
Eli Friedman327944b2008-06-13 23:01:12 +0000727 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattner574dee62008-07-26 22:17:49 +0000728 ExprTy->getAsPointerType()->getPointeeType()
729 .getCVRQualifiers());
Chris Lattnerd9d2fb12007-06-08 23:31:14 +0000730}
731
Nate Begemand3862152008-05-13 21:03:02 +0000732static
733llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
734 llvm::SmallVector<llvm::Constant *, 4> CElts;
735
736 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
737 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
738
739 return llvm::ConstantVector::get(&CElts[0], CElts.size());
740}
741
Chris Lattner9e751ca2007-08-02 23:37:31 +0000742LValue CodeGenFunction::
Nate Begemance4d7fc2008-04-18 23:10:10 +0000743EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner9e751ca2007-08-02 23:37:31 +0000744 // Emit the base vector as an l-value.
745 LValue Base = EmitLValue(E->getBase());
Chris Lattner9e751ca2007-08-02 23:37:31 +0000746
Nate Begemand3862152008-05-13 21:03:02 +0000747 // Encode the element access list into a vector of unsigned indices.
748 llvm::SmallVector<unsigned, 4> Indices;
749 E->getEncodedElementAccess(Indices);
750
751 if (Base.isSimple()) {
752 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman327944b2008-06-13 23:01:12 +0000753 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
754 E->getBase()->getType().getCVRQualifiers());
Nate Begemand3862152008-05-13 21:03:02 +0000755 }
756 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
757
758 llvm::Constant *BaseElts = Base.getExtVectorElts();
759 llvm::SmallVector<llvm::Constant *, 4> CElts;
760
761 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
762 if (isa<llvm::ConstantAggregateZero>(BaseElts))
763 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
764 else
765 CElts.push_back(BaseElts->getOperand(Indices[i]));
766 }
767 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman327944b2008-06-13 23:01:12 +0000768 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
769 E->getBase()->getType().getCVRQualifiers());
Chris Lattner9e751ca2007-08-02 23:37:31 +0000770}
771
Devang Patel30efa2e2007-10-23 20:28:39 +0000772LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelb37b12d2007-12-11 21:33:16 +0000773 bool isUnion = false;
Fariborz Jahanian735a4152008-11-21 18:14:01 +0000774 bool isIvar = false;
Devang Pateld68df202007-10-24 22:26:28 +0000775 Expr *BaseExpr = E->getBase();
Devang Pateld68df202007-10-24 22:26:28 +0000776 llvm::Value *BaseValue = NULL;
Eli Friedman327944b2008-06-13 23:01:12 +0000777 unsigned CVRQualifiers=0;
778
Chris Lattner4e4186b2007-12-02 18:52:07 +0000779 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patelb37b12d2007-12-11 21:33:16 +0000780 if (E->isArrow()) {
Devang Patel7718d7a2007-10-26 18:15:21 +0000781 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelb37b12d2007-12-11 21:33:16 +0000782 const PointerType *PTy =
Chris Lattner0f398c42008-07-26 22:37:01 +0000783 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelb37b12d2007-12-11 21:33:16 +0000784 if (PTy->getPointeeType()->isUnionType())
785 isUnion = true;
Eli Friedman327944b2008-06-13 23:01:12 +0000786 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelb37b12d2007-12-11 21:33:16 +0000787 }
Chris Lattner4e4186b2007-12-02 18:52:07 +0000788 else {
789 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian735a4152008-11-21 18:14:01 +0000790 if (BaseLV.isObjCIvar())
791 isIvar = true;
Chris Lattner4e4186b2007-12-02 18:52:07 +0000792 // FIXME: this isn't right for bitfields.
793 BaseValue = BaseLV.getAddress();
Devang Patelb37b12d2007-12-11 21:33:16 +0000794 if (BaseExpr->getType()->isUnionType())
795 isUnion = true;
Eli Friedman327944b2008-06-13 23:01:12 +0000796 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner4e4186b2007-12-02 18:52:07 +0000797 }
Devang Patel30efa2e2007-10-23 20:28:39 +0000798
Douglas Gregor2eedc3a2008-12-20 23:49:58 +0000799 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
800 // FIXME: Handle non-field member expressions
801 assert(Field && "No code generation for non-field member references");
Fariborz Jahanian735a4152008-11-21 18:14:01 +0000802 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
803 LValue::SetObjCIvar(MemExpLV, isIvar);
804 return MemExpLV;
Eli Friedmana62f3e12008-02-09 08:50:58 +0000805}
Devang Patel30efa2e2007-10-23 20:28:39 +0000806
Fariborz Jahanianb517e902008-12-15 20:35:07 +0000807LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
808 FieldDecl* Field,
809 unsigned CVRQualifiers,
810 unsigned idx) {
811 // FIXME: CodeGenTypes should expose a method to get the appropriate
812 // type for FieldTy (the appropriate type is ABI-dependent).
813 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
814 const llvm::PointerType *BaseTy =
815 cast<llvm::PointerType>(BaseValue->getType());
816 unsigned AS = BaseTy->getAddressSpace();
817 BaseValue = Builder.CreateBitCast(BaseValue,
818 llvm::PointerType::get(FieldTy, AS),
819 "tmp");
820 llvm::Value *V = Builder.CreateGEP(BaseValue,
821 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
822 "tmp");
823
824 CodeGenTypes::BitFieldInfo bitFieldInfo =
825 CGM.getTypes().getBitFieldInfo(Field);
826 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
827 Field->getType()->isSignedIntegerType(),
828 Field->getType().getCVRQualifiers()|CVRQualifiers);
829}
830
Eli Friedmana62f3e12008-02-09 08:50:58 +0000831LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
832 FieldDecl* Field,
Eli Friedman327944b2008-06-13 23:01:12 +0000833 bool isUnion,
834 unsigned CVRQualifiers)
Eli Friedmana62f3e12008-02-09 08:50:58 +0000835{
Eli Friedmana62f3e12008-02-09 08:50:58 +0000836 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venancio9eff02d2008-02-07 19:29:53 +0000837
Fariborz Jahanianb517e902008-12-15 20:35:07 +0000838 if (Field->isBitField())
839 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers, idx);
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000840
Fariborz Jahanianb517e902008-12-15 20:35:07 +0000841 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman133e8042008-05-29 11:33:25 +0000842
Devang Pateled93c3c2007-10-26 19:42:18 +0000843 // Match union field type.
Lauro Ramos Venancio9eff02d2008-02-07 19:29:53 +0000844 if (isUnion) {
Eli Friedman327944b2008-06-13 23:01:12 +0000845 const llvm::Type *FieldTy =
846 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patelffe1e212007-10-30 20:59:40 +0000847 const llvm::PointerType * BaseTy =
848 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman9a5ffcb2008-05-21 13:24:44 +0000849 unsigned AS = BaseTy->getAddressSpace();
850 V = Builder.CreateBitCast(V,
851 llvm::PointerType::get(FieldTy, AS),
852 "tmp");
Devang Pateled93c3c2007-10-26 19:42:18 +0000853 }
Lauro Ramos Venancio2ddcb25a32008-01-22 20:17:04 +0000854
Fariborz Jahanian003e8302008-11-20 00:15:42 +0000855 LValue LV =
856 LValue::MakeAddr(V,
857 Field->getType().getCVRQualifiers()|CVRQualifiers);
858 if (const ObjCGCAttr *A = Field->getAttr<ObjCGCAttr>()) {
859 ObjCGCAttr::GCAttrTypes attrType = A->getType();
860 // __weak attribute on a field is ignored.
861 LValue::SetObjCType(false, attrType == ObjCGCAttr::Strong, LV);
862 }
863 else if (CGM.getLangOptions().ObjC1 &&
864 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
865 QualType ExprTy = Field->getType();
866 if (getContext().isObjCObjectPointerType(ExprTy))
867 LValue::SetObjCType(false, true, LV);
868 }
869 return LV;
Devang Patel30efa2e2007-10-23 20:28:39 +0000870}
871
Eli Friedman327944b2008-06-13 23:01:12 +0000872LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
873{
Eli Friedman9fd8b682008-05-13 23:18:27 +0000874 const llvm::Type *LTy = ConvertType(E->getType());
875 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
876
877 const Expr* InitExpr = E->getInitializer();
Eli Friedman327944b2008-06-13 23:01:12 +0000878 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman9fd8b682008-05-13 23:18:27 +0000879
880 if (E->getType()->isComplexType()) {
881 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
882 } else if (hasAggregateLLVMType(E->getType())) {
883 EmitAnyExpr(InitExpr, DeclPtr, false);
884 } else {
885 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
886 }
887
888 return Result;
889}
890
Chris Lattnere47e4402007-06-01 18:02:12 +0000891//===--------------------------------------------------------------------===//
892// Expression Emission
893//===--------------------------------------------------------------------===//
894
Chris Lattner76ba8492007-08-20 22:37:10 +0000895
Chris Lattner2b228c92007-06-15 21:34:29 +0000896RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson1d8e5212007-08-20 18:05:56 +0000897 if (const ImplicitCastExpr *IcExpr =
898 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
899 if (const DeclRefExpr *DRExpr =
900 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
901 if (const FunctionDecl *FDecl =
902 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
903 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
904 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbar8cde00a2008-09-04 03:20:13 +0000905
Chris Lattner2da04b32007-08-24 05:35:26 +0000906 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman9d92ce82008-01-30 01:32:06 +0000907 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek08e17112008-06-17 02:43:46 +0000908 E->arg_begin(), E->arg_end());
Nate Begeman1e36a852008-01-17 17:46:27 +0000909}
910
Ted Kremenek08e17112008-06-17 02:43:46 +0000911RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
912 CallExpr::const_arg_iterator ArgBeg,
913 CallExpr::const_arg_iterator ArgEnd) {
914
Nate Begeman1e36a852008-01-17 17:46:27 +0000915 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek08e17112008-06-17 02:43:46 +0000916 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattner9e47ead2007-08-31 04:44:06 +0000917}
918
Daniel Dunbar8cde00a2008-09-04 03:20:13 +0000919LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
920 // Can only get l-value for binary operator expressions which are a
921 // simple assignment of aggregate type.
922 if (E->getOpcode() != BinaryOperator::Assign)
923 return EmitUnsupportedLValue(E, "binary l-value expression");
924
925 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
926 EmitAggExpr(E, Temp, false);
927 // FIXME: Are these qualifiers correct?
928 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
929}
930
Christopher Lambd91c3d42007-12-29 05:02:41 +0000931LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
932 // Can only get l-value for call expression returning aggregate type
933 RValue RV = EmitCallExpr(E);
Eli Friedman327944b2008-06-13 23:01:12 +0000934 // FIXME: can this be volatile?
935 return LValue::MakeAddr(RV.getAggregateAddr(),
936 E->getType().getCVRQualifiers());
Christopher Lambd91c3d42007-12-29 05:02:41 +0000937}
938
Argyrios Kyrtzidis07052352008-09-10 02:36:38 +0000939LValue
940CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
941 EmitLocalBlockVarDecl(*E->getVarDecl());
942 return EmitDeclRefLValue(E);
943}
944
Daniel Dunbarc8317a42008-08-23 10:51:21 +0000945LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
946 // Can only get l-value for message expression returning aggregate type
947 RValue RV = EmitObjCMessageExpr(E);
948 // FIXME: can this be volatile?
949 return LValue::MakeAddr(RV.getAggregateAddr(),
950 E->getType().getCVRQualifiers());
951}
952
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000953llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
954 const ObjCIvarDecl *Ivar) {
Chris Lattner4bd55962008-03-30 23:03:07 +0000955 // Objective-C objects are traditionally C structures with their layout
956 // defined at compile-time. In some implementations, their layout is not
957 // defined until run time in order to allow instance variables to be added to
958 // a class without recompiling all of the subclasses. If this is the case
959 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
960 // implement the lookup itself.
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000961 if (CGM.getObjCRuntime().LateBoundIVars())
962 assert(0 && "late-bound ivars are unsupported");
Chris Lattner5506f8c2008-04-04 04:07:35 +0000963
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000964 const llvm::Type *InterfaceLTy =
965 CGM.getTypes().ConvertType(getContext().getObjCInterfaceType(Interface));
966 const llvm::StructLayout *Layout =
967 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceLTy));
Fariborz Jahanianb517e902008-12-15 20:35:07 +0000968 FieldDecl *Field = Interface->lookupFieldDeclForIvar(getContext(), Ivar);
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000969 uint64_t Offset =
Fariborz Jahanianb517e902008-12-15 20:35:07 +0000970 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(Field));
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000971
972 return llvm::ConstantInt::get(CGM.getTypes().ConvertType(getContext().LongTy),
973 Offset);
974}
975
976LValue CodeGenFunction::EmitLValueForIvar(llvm::Value *BaseValue,
977 const ObjCIvarDecl *Ivar,
Fariborz Jahanianb517e902008-12-15 20:35:07 +0000978 const FieldDecl *Field,
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000979 unsigned CVRQualifiers) {
980 // See comment in EmitIvarOffset.
981 if (CGM.getObjCRuntime().LateBoundIVars())
982 assert(0 && "late-bound ivars are unsupported");
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000983 // TODO: Add a special case for isa (index 0)
Fariborz Jahanianb517e902008-12-15 20:35:07 +0000984 unsigned Index = CGM.getTypes().getLLVMFieldNo(Field);
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000985
Fariborz Jahanianb517e902008-12-15 20:35:07 +0000986 if (Ivar->isBitField()) {
987 return EmitLValueForBitfield(BaseValue, const_cast<FieldDecl *>(Field),
988 CVRQualifiers, Index);
989 }
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000990 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
Fariborz Jahanian75686a52008-11-20 20:53:20 +0000991 LValue LV = LValue::MakeAddr(V, Ivar->getType().getCVRQualifiers()|CVRQualifiers);
992 SetVarDeclObjCAttribute(getContext(), Ivar, Ivar->getType(), LV);
Fariborz Jahanian735a4152008-11-21 18:14:01 +0000993 LValue::SetObjCIvar(LV, true);
Fariborz Jahanian75686a52008-11-20 20:53:20 +0000994 return LV;
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +0000995}
996
997LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlssonc13b85a2008-08-25 01:53:23 +0000998 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
999 llvm::Value *BaseValue = 0;
1000 const Expr *BaseExpr = E->getBase();
1001 unsigned CVRQualifiers = 0;
1002 if (E->isArrow()) {
1003 BaseValue = EmitScalarExpr(BaseExpr);
1004 const PointerType *PTy =
1005 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
1006 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
1007 } else {
1008 LValue BaseLV = EmitLValue(BaseExpr);
1009 // FIXME: this isn't right for bitfields.
1010 BaseValue = BaseLV.getAddress();
1011 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
1012 }
Daniel Dunbar1c64e5d2008-09-24 04:00:38 +00001013
Fariborz Jahanianf8f0c6b2008-12-18 17:29:46 +00001014 return EmitLValueForIvar(BaseValue, E->getDecl(),
1015 getContext().getFieldDecl(E), CVRQualifiers);
Chris Lattner4bd55962008-03-30 23:03:07 +00001016}
1017
Daniel Dunbar9e22c0d2008-08-29 08:11:39 +00001018LValue
1019CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1020 // This is a special l-value that just issues sends when we load or
1021 // store through it.
1022 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1023}
1024
Fariborz Jahanian9ac53512008-11-22 22:30:21 +00001025LValue
1026CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1027 // This is a special l-value that just issues sends when we load or
1028 // store through it.
1029 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1030}
1031
Douglas Gregor8ea1f532008-11-04 14:56:14 +00001032LValue
1033CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
1034 return EmitUnsupportedLValue(E, "use of super");
1035}
1036
Nate Begeman1e36a852008-01-17 17:46:27 +00001037RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek08e17112008-06-17 02:43:46 +00001038 CallExpr::const_arg_iterator ArgBeg,
1039 CallExpr::const_arg_iterator ArgEnd) {
1040
Chris Lattnerc14236b2007-07-10 22:18:37 +00001041 // The callee type will always be a pointer to function type, get the function
1042 // type.
Chris Lattner0f398c42008-07-26 22:37:01 +00001043 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner330f0f22008-07-31 04:58:58 +00001044 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbarc722b852008-08-30 03:02:31 +00001045
1046 CallArgList Args;
1047 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar41cf9de2008-09-09 01:06:48 +00001048 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
1049 I->getType()));
Daniel Dunbarc722b852008-08-30 03:02:31 +00001050
1051 return EmitCall(Callee, ResultType, Args);
Daniel Dunbar97db84c2008-08-23 03:46:30 +00001052}