blob: 9d7d8be2f03ce869f15ef1f5b9a96fc79597b268 [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 Dunbarce1d38b2009-01-09 16:50:52 +000086RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
87 const char *Name) {
88 ErrorUnsupported(E, Name);
89 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
90 return RValue::get(llvm::UndefValue::get(Ty));
91}
92
Daniel Dunbar6ba82a42008-08-25 20:45:57 +000093LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
94 const char *Name) {
95 ErrorUnsupported(E, Name);
96 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
97 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
98 E->getType().getCVRQualifiers());
99}
100
Reid Spencer5f016e22007-07-11 17:01:13 +0000101/// EmitLValue - Emit code to compute a designator that specifies the location
102/// of the expression.
103///
104/// This can return one of two things: a simple address or a bitfield
105/// reference. In either case, the LLVM Value* in the LValue structure is
106/// guaranteed to be an LLVM pointer type.
107///
108/// If this returns a bitfield reference, nothing about the pointee type of
109/// the LLVM value is known: For example, it may not be a pointer to an
110/// integer.
111///
112/// If this returns a normal address, and if the lvalue's C type is fixed
113/// size, this method guarantees that the returned pointer type will point to
114/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
115/// variable length type, this is not possible.
116///
117LValue CodeGenFunction::EmitLValue(const Expr *E) {
118 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000119 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000120
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000121 case Expr::BinaryOperatorClass:
122 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregorb4609802008-11-14 16:09:21 +0000123 case Expr::CallExprClass:
124 case Expr::CXXOperatorCallExprClass:
125 return EmitCallExprLValue(cast<CallExpr>(E));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000126 case Expr::DeclRefExprClass:
127 case Expr::QualifiedDeclRefExprClass:
128 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000130 case Expr::PredefinedExprClass:
131 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000132 case Expr::StringLiteralClass:
133 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000134
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000135 case Expr::CXXConditionDeclExprClass:
136 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
137
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000138 case Expr::ObjCMessageExprClass:
139 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000140 case Expr::ObjCIvarRefExprClass:
141 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000142 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000143 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000144 case Expr::ObjCKVCRefExprClass:
145 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000146 case Expr::ObjCSuperExprClass:
147 return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E));
148
Reid Spencer5f016e22007-07-11 17:01:13 +0000149 case Expr::UnaryOperatorClass:
150 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
151 case Expr::ArraySubscriptExprClass:
152 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000153 case Expr::ExtVectorElementExprClass:
154 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000155 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000156 case Expr::CompoundLiteralExprClass:
157 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000158 case Expr::ChooseExprClass:
159 // __builtin_choose_expr is the lvalue of the selected operand.
160 if (cast<ChooseExpr>(E)->isConditionTrue(getContext()))
161 return EmitLValue(cast<ChooseExpr>(E)->getLHS());
162 else
163 return EmitLValue(cast<ChooseExpr>(E)->getRHS());
Reid Spencer5f016e22007-07-11 17:01:13 +0000164 }
165}
166
167/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
168/// this method emits the address of the lvalue, then loads the result as an
169/// rvalue, returning the rvalue.
170RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000171 if (LV.isObjCWeak()) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000172 // load of a __weak object.
173 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000174 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000175 AddrWeakObj);
176 return RValue::get(read_weak);
177 }
178
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 if (LV.isSimple()) {
180 llvm::Value *Ptr = LV.getAddress();
181 const llvm::Type *EltTy =
182 cast<llvm::PointerType>(Ptr->getType())->getElementType();
183
184 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000185 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000186 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000187
188 // Bool can have different representation in memory than in registers.
189 if (ExprType->isBooleanType()) {
190 if (V->getType() != llvm::Type::Int1Ty)
191 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
192 }
193
194 return RValue::get(V);
195 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000196
Chris Lattner883f6a72007-08-11 00:04:45 +0000197 assert(ExprType->isFunctionType() && "Unknown scalar value");
198 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000199 }
200
201 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000202 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
203 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000204 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
205 "vecext"));
206 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000207
208 // If this is a reference to a subset of the elements of a vector, either
209 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000210 if (LV.isExtVectorElt())
211 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000212
213 if (LV.isBitfield())
214 return EmitLoadOfBitfieldLValue(LV, ExprType);
215
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000216 if (LV.isPropertyRef())
217 return EmitLoadOfPropertyRefLValue(LV, ExprType);
218
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000219 if (LV.isKVCRef())
220 return EmitLoadOfKVCRefLValue(LV, ExprType);
221
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000222 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000223 //an invalid RValue, but the assert will
224 //ensure that this point is never reached
225 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000226}
227
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000228RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
229 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000230 unsigned StartBit = LV.getBitfieldStartBit();
231 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000232 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000233
234 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000235 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000236 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000237
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000238 // In some cases the bitfield may straddle two memory locations.
239 // Currently we load the entire bitfield, then do the magic to
240 // sign-extend it if necessary. This results in somewhat more code
241 // than necessary for the common case (one load), since two shifts
242 // accomplish both the masking and sign extension.
243 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
244 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
245
246 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000247 if (StartBit)
248 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
249 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000250
251 // Mask off unused bits.
252 llvm::Constant *LowMask =
253 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
254 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
255
256 // Fetch the high bits if necessary.
257 if (LowBits < BitfieldSize) {
258 unsigned HighBits = BitfieldSize - LowBits;
259 llvm::Value *HighPtr =
260 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
261 "bf.ptr.hi");
262 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
263 LV.isVolatileQualified(),
264 "tmp");
265
266 // Mask off unused bits.
267 llvm::Constant *HighMask =
268 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
269 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000270
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000271 // Shift to proper location and or in to bitfield value.
272 HighVal = Builder.CreateShl(HighVal,
273 llvm::ConstantInt::get(EltTy, LowBits));
274 Val = Builder.CreateOr(Val, HighVal, "bf.val");
275 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000276
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000277 // Sign extend if necessary.
278 if (LV.isBitfieldSigned()) {
279 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
280 EltTySize - BitfieldSize);
281 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
282 ExtraBits, "bf.val.sext");
283 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000284
285 // The bitfield type and the normal type differ when the storage sizes
286 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000287 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000288
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000289 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000290}
291
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000292RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
293 QualType ExprType) {
294 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
295}
296
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000297RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
298 QualType ExprType) {
299 return EmitObjCPropertyGet(LV.getKVCRefExpr());
300}
301
Chris Lattner34cdc862007-08-03 16:18:34 +0000302// If this is a reference to a subset of the elements of a vector, either
303// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000304RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
305 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000306 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
307 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000308
Nate Begeman8a997642008-05-09 06:41:27 +0000309 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000310
311 // If the result of the expression is a non-vector type, we must be
312 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000313 const VectorType *ExprVT = ExprType->getAsVectorType();
314 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000315 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000316 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
317 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
318 }
319
320 // If the source and destination have the same number of elements, use a
321 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000322 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000323 unsigned NumSourceElts =
324 cast<llvm::VectorType>(Vec->getType())->getNumElements();
325
326 if (NumResultElts == NumSourceElts) {
327 llvm::SmallVector<llvm::Constant*, 4> Mask;
328 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000329 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000330 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
331 }
332
333 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
334 Vec = Builder.CreateShuffleVector(Vec,
335 llvm::UndefValue::get(Vec->getType()),
336 MaskV, "tmp");
337 return RValue::get(Vec);
338 }
339
340 // Start out with an undef of the result type.
341 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
342
343 // Extract/Insert each element of the result.
344 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000345 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000346 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
347 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
348
349 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
350 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
351 }
352
353 return RValue::get(Result);
354}
355
356
Reid Spencer5f016e22007-07-11 17:01:13 +0000357
358/// EmitStoreThroughLValue - Store the specified rvalue into the specified
359/// lvalue, where both are guaranteed to the have the same type, and that type
360/// is 'Ty'.
361void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
362 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000363 if (!Dst.isSimple()) {
364 if (Dst.isVectorElt()) {
365 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000366 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
367 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000368 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000369 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000370 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000371 return;
372 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000373
Nate Begeman213541a2008-04-18 23:10:10 +0000374 // If this is an update of extended vector elements, insert them as
375 // appropriate.
376 if (Dst.isExtVectorElt())
377 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000378
379 if (Dst.isBitfield())
380 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
381
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000382 if (Dst.isPropertyRef())
383 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
384
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000385 if (Dst.isKVCRef())
386 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
387
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000388 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000389 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000390
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000391 if (Dst.isObjCWeak()) {
392 // load of a __weak object.
393 llvm::Value *LvalueDst = Dst.getAddress();
394 llvm::Value *src = Src.getScalarVal();
395 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
396 return;
397 }
398
399 if (Dst.isObjCStrong()) {
400 // load of a __strong object.
401 llvm::Value *LvalueDst = Dst.getAddress();
402 llvm::Value *src = Src.getScalarVal();
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000403 if (Dst.isObjCIvar())
404 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
405 else
406 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000407 return;
408 }
409
Reid Spencer5f016e22007-07-11 17:01:13 +0000410 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000411 assert(Src.isScalar() && "Can't emit an agg store with this method");
412 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000413 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000414 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
415 const llvm::Type *AddrTy = DstPtr->getElementType();
416 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000417
Chris Lattner883f6a72007-08-11 00:04:45 +0000418 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000419 DstAddr = Builder.CreateBitCast(DstAddr,
420 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000421 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000422 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000423}
424
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000425void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000426 QualType Ty,
427 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000428 unsigned StartBit = Dst.getBitfieldStartBit();
429 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000430 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000431
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000432 const llvm::Type *EltTy =
433 cast<llvm::PointerType>(Ptr->getType())->getElementType();
434 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
435
436 // Get the new value, cast to the appropriate type and masked to
437 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000438 llvm::Value *SrcVal = Src.getScalarVal();
439 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000440 llvm::Constant *Mask =
441 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
442 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000443
Daniel Dunbared3849b2008-11-19 09:36:46 +0000444 // Return the new value of the bit-field, if requested.
445 if (Result) {
446 // Cast back to the proper type for result.
447 const llvm::Type *SrcTy = SrcVal->getType();
448 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
449 "bf.reload.val");
450
451 // Sign extend if necessary.
452 if (Dst.isBitfieldSigned()) {
453 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
454 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
455 SrcTySize - BitfieldSize);
456 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
457 ExtraBits, "bf.reload.sext");
458 }
459
460 *Result = SrcTrunc;
461 }
462
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000463 // In some cases the bitfield may straddle two memory locations.
464 // Emit the low part first and check to see if the high needs to be
465 // done.
466 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
467 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
468 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000469
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000470 // Compute the mask for zero-ing the low part of this bitfield.
471 llvm::Constant *InvMask =
472 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
473 StartBit + LowBits));
474
475 // Compute the new low part as
476 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
477 // with the shift of NewVal implicitly stripping the high bits.
478 llvm::Value *NewLowVal =
479 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
480 "bf.value.lo");
481 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
482 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
483
484 // Write back.
485 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000486
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000487 // If the low part doesn't cover the bitfield emit a high part.
488 if (LowBits < BitfieldSize) {
489 unsigned HighBits = BitfieldSize - LowBits;
490 llvm::Value *HighPtr =
491 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
492 "bf.ptr.hi");
493 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
494 Dst.isVolatileQualified(),
495 "bf.prev.hi");
496
497 // Compute the mask for zero-ing the high part of this bitfield.
498 llvm::Constant *InvMask =
499 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
500
501 // Compute the new high part as
502 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
503 // where the high bits of NewVal have already been cleared and the
504 // shift stripping the low bits.
505 llvm::Value *NewHighVal =
506 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
507 "bf.value.high");
508 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
509 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
510
511 // Write back.
512 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
513 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000514}
515
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000516void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
517 LValue Dst,
518 QualType Ty) {
519 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
520}
521
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000522void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
523 LValue Dst,
524 QualType Ty) {
525 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
526}
527
Nate Begeman213541a2008-04-18 23:10:10 +0000528void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
529 LValue Dst,
530 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000531 // This access turns into a read/modify/write of the vector. Load the input
532 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000533 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
534 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000535 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000536
Chris Lattner9b655512007-08-31 22:49:20 +0000537 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000538
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000539 if (const VectorType *VTy = Ty->getAsVectorType()) {
540 unsigned NumSrcElts = VTy->getNumElements();
541
542 // Extract/Insert each element.
543 for (unsigned i = 0; i != NumSrcElts; ++i) {
544 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
545 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
546
Dan Gohman4f8d1232008-05-22 00:50:06 +0000547 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000548 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
549 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
550 }
551 } else {
552 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000553 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000554 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
555 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000556 }
557
Eli Friedman1e692ac2008-06-13 23:01:12 +0000558 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000559}
560
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000561/// SetVarDeclObjCAttribute - Set __weak/__strong attributes into the LValue
562/// object.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000563static void SetVarDeclObjCAttribute(ASTContext &Ctx, const Decl *VD,
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000564 const QualType &Ty, LValue &LV)
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000565{
566 if (const ObjCGCAttr *A = VD->getAttr<ObjCGCAttr>()) {
567 ObjCGCAttr::GCAttrTypes attrType = A->getType();
568 LValue::SetObjCType(attrType == ObjCGCAttr::Weak,
569 attrType == ObjCGCAttr::Strong, LV);
570 }
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000571 else if (Ctx.getLangOptions().ObjC1 &&
572 Ctx.getLangOptions().getGCMode() != LangOptions::NonGC) {
573 // Default behavious under objective-c's gc is for objective-c pointers
574 // be treated as though they were declared as __strong.
575 if (Ctx.isObjCObjectPointerType(Ty))
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000576 LValue::SetObjCType(false, true, LV);
577 }
578}
Reid Spencer5f016e22007-07-11 17:01:13 +0000579
580LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000581 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
582
Chris Lattner41110242008-06-17 18:05:57 +0000583 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
584 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000585 LValue LV;
586 if (VD->getStorageClass() == VarDecl::Extern) {
587 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
588 E->getType().getCVRQualifiers());
589 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000590 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000591 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000592 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000593 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000594 }
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000595 if (VD->isBlockVarDecl() &&
596 (VD->getStorageClass() == VarDecl::Static ||
597 VD->getStorageClass() == VarDecl::Extern))
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000598 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000599 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000600 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000601 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
602 E->getType().getCVRQualifiers());
Fariborz Jahanian80b0b422008-11-20 18:10:58 +0000603 SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV);
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000604 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000605 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000606 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000607 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000608 }
Chris Lattner41110242008-06-17 18:05:57 +0000609 else if (const ImplicitParamDecl *IPD =
610 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
611 llvm::Value *V = LocalDeclMap[IPD];
612 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
613 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
614 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000615 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000616 //an invalid LValue, but the assert will
617 //ensure that this point is never reached.
618 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000619}
620
621LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
622 // __extension__ doesn't affect lvalue-ness.
623 if (E->getOpcode() == UnaryOperator::Extension)
624 return EmitLValue(E->getSubExpr());
625
Chris Lattner96196622008-07-26 22:37:01 +0000626 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000627 switch (E->getOpcode()) {
628 default: assert(0 && "Unknown unary operator lvalue!");
629 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000630 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000631 ExprTy->getAsPointerType()->getPointeeType()
632 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000633 case UnaryOperator::Real:
634 case UnaryOperator::Imag:
635 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000636 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
637 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000638 Idx, "idx"),
639 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000640 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000641}
642
643LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000644 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000645}
646
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000647LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000648 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000649
650 switch (Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000651 default:
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000652 assert(0 && "Invalid type");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000653 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000654 GlobalVarName = "__func__.";
655 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000656 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000657 GlobalVarName = "__FUNCTION__.";
658 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000659 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000660 // FIXME:: Demangle C++ method names
661 GlobalVarName = "__PRETTY_FUNCTION__.";
662 break;
663 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000664
665 std::string FunctionName;
666 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000667 FunctionName = FD->getNameAsString();
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000668 } else {
669 // Just get the mangled name.
670 FunctionName = CurFn->getName();
671 }
672
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000673 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000674 llvm::Constant *C =
675 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
676 return LValue::MakeAddr(C, 0);
677}
678
679LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
680 switch (E->getIdentType()) {
681 default:
682 return EmitUnsupportedLValue(E, "predefined expression");
683 case PredefinedExpr::Func:
684 case PredefinedExpr::Function:
685 case PredefinedExpr::PrettyFunction:
686 return EmitPredefinedFunctionName(E->getIdentType());
687 }
Anders Carlsson22742662007-07-21 05:21:51 +0000688}
689
Reid Spencer5f016e22007-07-11 17:01:13 +0000690LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000691 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000692 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000693
694 // If the base is a vector type, then we are forming a vector element lvalue
695 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000696 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000697 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000698 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000699 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000700 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000701 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
702 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000703 }
704
Ted Kremenek23245122007-08-20 16:18:38 +0000705 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000706 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000707
Ted Kremenek23245122007-08-20 16:18:38 +0000708 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000709 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000710 bool IdxSigned = IdxTy->isSignedIntegerType();
711 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
712 if (IdxBitwidth != LLVMPointerWidth)
713 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
714 IdxSigned, "idxprom");
715
716 // We know that the pointer points to a type of the correct size, unless the
717 // size is a VLA.
Anders Carlsson8b33c082008-12-21 00:11:23 +0000718 if (const VariableArrayType *VAT =
719 getContext().getAsVariableArrayType(E->getType())) {
720 llvm::Value *VLASize = VLASizeMap[VAT];
721
722 Idx = Builder.CreateMul(Idx, VLASize);
723
Anders Carlsson6183a992008-12-21 03:44:36 +0000724 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000725
726 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
727 Idx = Builder.CreateUDiv(Idx,
728 llvm::ConstantInt::get(Idx->getType(),
729 BaseTypeSize));
730 }
731
Chris Lattner96196622008-07-26 22:37:01 +0000732 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000733
Eli Friedman1e692ac2008-06-13 23:01:12 +0000734 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000735 ExprTy->getAsPointerType()->getPointeeType()
736 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000737}
738
Nate Begeman3b8d1162008-05-13 21:03:02 +0000739static
740llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
741 llvm::SmallVector<llvm::Constant *, 4> CElts;
742
743 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
744 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
745
746 return llvm::ConstantVector::get(&CElts[0], CElts.size());
747}
748
Chris Lattner349aaec2007-08-02 23:37:31 +0000749LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000750EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000751 // Emit the base vector as an l-value.
752 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000753
Nate Begeman3b8d1162008-05-13 21:03:02 +0000754 // Encode the element access list into a vector of unsigned indices.
755 llvm::SmallVector<unsigned, 4> Indices;
756 E->getEncodedElementAccess(Indices);
757
758 if (Base.isSimple()) {
759 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000760 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
761 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000762 }
763 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
764
765 llvm::Constant *BaseElts = Base.getExtVectorElts();
766 llvm::SmallVector<llvm::Constant *, 4> CElts;
767
768 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
769 if (isa<llvm::ConstantAggregateZero>(BaseElts))
770 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
771 else
772 CElts.push_back(BaseElts->getOperand(Indices[i]));
773 }
774 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000775 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
776 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000777}
778
Devang Patelb9b00ad2007-10-23 20:28:39 +0000779LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000780 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000781 bool isIvar = false;
Devang Patel126a8562007-10-24 22:26:28 +0000782 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000783 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000784 unsigned CVRQualifiers=0;
785
Chris Lattner12f65f62007-12-02 18:52:07 +0000786 // 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 +0000787 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000788 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000789 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000790 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000791 if (PTy->getPointeeType()->isUnionType())
792 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000793 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000794 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000795 else {
796 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000797 if (BaseLV.isObjCIvar())
798 isIvar = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000799 // FIXME: this isn't right for bitfields.
800 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000801 if (BaseExpr->getType()->isUnionType())
802 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000803 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000804 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000805
Douglas Gregor86f19402008-12-20 23:49:58 +0000806 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
807 // FIXME: Handle non-field member expressions
808 assert(Field && "No code generation for non-field member references");
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000809 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
810 LValue::SetObjCIvar(MemExpLV, isIvar);
811 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +0000812}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000813
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000814LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
815 FieldDecl* Field,
816 unsigned CVRQualifiers,
817 unsigned idx) {
818 // FIXME: CodeGenTypes should expose a method to get the appropriate
819 // type for FieldTy (the appropriate type is ABI-dependent).
820 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
821 const llvm::PointerType *BaseTy =
822 cast<llvm::PointerType>(BaseValue->getType());
823 unsigned AS = BaseTy->getAddressSpace();
824 BaseValue = Builder.CreateBitCast(BaseValue,
825 llvm::PointerType::get(FieldTy, AS),
826 "tmp");
827 llvm::Value *V = Builder.CreateGEP(BaseValue,
828 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
829 "tmp");
830
831 CodeGenTypes::BitFieldInfo bitFieldInfo =
832 CGM.getTypes().getBitFieldInfo(Field);
833 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
834 Field->getType()->isSignedIntegerType(),
835 Field->getType().getCVRQualifiers()|CVRQualifiers);
836}
837
Eli Friedman472778e2008-02-09 08:50:58 +0000838LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
839 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000840 bool isUnion,
841 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000842{
Eli Friedman472778e2008-02-09 08:50:58 +0000843 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000844
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000845 if (Field->isBitField())
846 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers, idx);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000847
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000848 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000849
Devang Patelabad06c2007-10-26 19:42:18 +0000850 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000851 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000852 const llvm::Type *FieldTy =
853 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000854 const llvm::PointerType * BaseTy =
855 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000856 unsigned AS = BaseTy->getAddressSpace();
857 V = Builder.CreateBitCast(V,
858 llvm::PointerType::get(FieldTy, AS),
859 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000860 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000861
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000862 LValue LV =
863 LValue::MakeAddr(V,
864 Field->getType().getCVRQualifiers()|CVRQualifiers);
865 if (const ObjCGCAttr *A = Field->getAttr<ObjCGCAttr>()) {
866 ObjCGCAttr::GCAttrTypes attrType = A->getType();
867 // __weak attribute on a field is ignored.
868 LValue::SetObjCType(false, attrType == ObjCGCAttr::Strong, LV);
869 }
870 else if (CGM.getLangOptions().ObjC1 &&
871 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
872 QualType ExprTy = Field->getType();
873 if (getContext().isObjCObjectPointerType(ExprTy))
874 LValue::SetObjCType(false, true, LV);
875 }
876 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +0000877}
878
Eli Friedman1e692ac2008-06-13 23:01:12 +0000879LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
880{
Eli Friedman06e863f2008-05-13 23:18:27 +0000881 const llvm::Type *LTy = ConvertType(E->getType());
882 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
883
884 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000885 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000886
887 if (E->getType()->isComplexType()) {
888 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
889 } else if (hasAggregateLLVMType(E->getType())) {
890 EmitAnyExpr(InitExpr, DeclPtr, false);
891 } else {
892 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
893 }
894
895 return Result;
896}
897
Reid Spencer5f016e22007-07-11 17:01:13 +0000898//===--------------------------------------------------------------------===//
899// Expression Emission
900//===--------------------------------------------------------------------===//
901
Chris Lattner7016a702007-08-20 22:37:10 +0000902
Reid Spencer5f016e22007-07-11 17:01:13 +0000903RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000904 if (const ImplicitCastExpr *IcExpr =
905 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
906 if (const DeclRefExpr *DRExpr =
907 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
908 if (const FunctionDecl *FDecl =
909 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
910 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
911 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000912
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000913 if (E->getCallee()->getType()->isBlockPointerType())
914 return EmitUnsupportedRValue(E->getCallee(), "block pointer reference");
915
Chris Lattner7f02f722007-08-24 05:35:26 +0000916 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000917 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000918 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000919}
920
Ted Kremenek55499762008-06-17 02:43:46 +0000921RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
922 CallExpr::const_arg_iterator ArgBeg,
923 CallExpr::const_arg_iterator ArgEnd) {
924
Nate Begemane2ce1d92008-01-17 17:46:27 +0000925 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000926 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000927}
928
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000929LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
930 // Can only get l-value for binary operator expressions which are a
931 // simple assignment of aggregate type.
932 if (E->getOpcode() != BinaryOperator::Assign)
933 return EmitUnsupportedLValue(E, "binary l-value expression");
934
935 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
936 EmitAggExpr(E, Temp, false);
937 // FIXME: Are these qualifiers correct?
938 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
939}
940
Christopher Lamb22c940e2007-12-29 05:02:41 +0000941LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
942 // Can only get l-value for call expression returning aggregate type
943 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000944 // FIXME: can this be volatile?
945 return LValue::MakeAddr(RV.getAggregateAddr(),
946 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000947}
948
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000949LValue
950CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
951 EmitLocalBlockVarDecl(*E->getVarDecl());
952 return EmitDeclRefLValue(E);
953}
954
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000955LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
956 // Can only get l-value for message expression returning aggregate type
957 RValue RV = EmitObjCMessageExpr(E);
958 // FIXME: can this be volatile?
959 return LValue::MakeAddr(RV.getAggregateAddr(),
960 E->getType().getCVRQualifiers());
961}
962
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000963llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface,
964 const ObjCIvarDecl *Ivar) {
Chris Lattner391d77a2008-03-30 23:03:07 +0000965 // Objective-C objects are traditionally C structures with their layout
966 // defined at compile-time. In some implementations, their layout is not
967 // defined until run time in order to allow instance variables to be added to
968 // a class without recompiling all of the subclasses. If this is the case
969 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
970 // implement the lookup itself.
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000971 if (CGM.getObjCRuntime().LateBoundIVars())
972 assert(0 && "late-bound ivars are unsupported");
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000973
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000974 const llvm::Type *InterfaceLTy =
975 CGM.getTypes().ConvertType(getContext().getObjCInterfaceType(Interface));
976 const llvm::StructLayout *Layout =
977 CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceLTy));
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000978 FieldDecl *Field = Interface->lookupFieldDeclForIvar(getContext(), Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000979 uint64_t Offset =
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000980 Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(Field));
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000981
982 return llvm::ConstantInt::get(CGM.getTypes().ConvertType(getContext().LongTy),
983 Offset);
984}
985
986LValue CodeGenFunction::EmitLValueForIvar(llvm::Value *BaseValue,
987 const ObjCIvarDecl *Ivar,
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000988 const FieldDecl *Field,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000989 unsigned CVRQualifiers) {
990 // See comment in EmitIvarOffset.
991 if (CGM.getObjCRuntime().LateBoundIVars())
992 assert(0 && "late-bound ivars are unsupported");
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000993 // TODO: Add a special case for isa (index 0)
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000994 unsigned Index = CGM.getTypes().getLLVMFieldNo(Field);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +0000995
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000996 if (Ivar->isBitField()) {
997 return EmitLValueForBitfield(BaseValue, const_cast<FieldDecl *>(Field),
998 CVRQualifiers, Index);
999 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001000 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +00001001 LValue LV = LValue::MakeAddr(V, Ivar->getType().getCVRQualifiers()|CVRQualifiers);
1002 SetVarDeclObjCAttribute(getContext(), Ivar, Ivar->getType(), LV);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +00001003 LValue::SetObjCIvar(LV, true);
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +00001004 return LV;
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001005}
1006
1007LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001008 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1009 llvm::Value *BaseValue = 0;
1010 const Expr *BaseExpr = E->getBase();
1011 unsigned CVRQualifiers = 0;
1012 if (E->isArrow()) {
1013 BaseValue = EmitScalarExpr(BaseExpr);
1014 const PointerType *PTy =
1015 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
1016 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
1017 } else {
1018 LValue BaseLV = EmitLValue(BaseExpr);
1019 // FIXME: this isn't right for bitfields.
1020 BaseValue = BaseLV.getAddress();
1021 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
1022 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001023
Fariborz Jahanianefc4c4b2008-12-18 17:29:46 +00001024 return EmitLValueForIvar(BaseValue, E->getDecl(),
1025 getContext().getFieldDecl(E), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001026}
1027
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001028LValue
1029CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1030 // This is a special l-value that just issues sends when we load or
1031 // store through it.
1032 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1033}
1034
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001035LValue
1036CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1037 // This is a special l-value that just issues sends when we load or
1038 // store through it.
1039 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1040}
1041
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001042LValue
1043CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) {
1044 return EmitUnsupportedLValue(E, "use of super");
1045}
1046
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001047RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek55499762008-06-17 02:43:46 +00001048 CallExpr::const_arg_iterator ArgBeg,
1049 CallExpr::const_arg_iterator ArgEnd) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001050 // Get the actual function type. The callee type will always be a
1051 // pointer to function type or a block pointer type.
1052 QualType ResultType;
1053 if (const BlockPointerType *BPT = dyn_cast<BlockPointerType>(CalleeType)) {
1054 ResultType = BPT->getPointeeType()->getAsFunctionType()->getResultType();
1055 } else {
1056 assert(CalleeType->isFunctionPointerType() &&
1057 "Call must have function pointer type!");
1058 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1059 ResultType = FnType->getAsFunctionType()->getResultType();
1060 }
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001061
1062 CallArgList Args;
1063 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar46f45b92008-09-09 01:06:48 +00001064 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
1065 I->getType()));
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001066
1067 return EmitCall(Callee, ResultType, Args);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001068}