blob: 1c8eda1f6076617f1e53ac60f2e76afba6a372e1 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
16#include "clang/AST/AST.h"
17#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/Function.h"
20#include "llvm/GlobalVariable.h"
21#include "llvm/Support/MathExtras.h"
22using namespace clang;
23using namespace CodeGen;
24
25//===--------------------------------------------------------------------===//
26// Miscellaneous Helper Methods
27//===--------------------------------------------------------------------===//
28
29/// CreateTempAlloca - This creates a alloca and inserts it into the entry
30/// block.
31llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
32 const char *Name) {
33 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
34}
35
36/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
37/// expression and compare the result against zero, returning an Int1Ty value.
38llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattnercc50a512007-08-26 16:46:58 +000039 QualType BoolTy = getContext().BoolTy;
40 if (!E->getType()->isComplexType())
41 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Chris Lattner4b009652007-07-25 00:24:17 +000042
Chris Lattnercc50a512007-08-26 16:46:58 +000043 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Chris Lattner4b009652007-07-25 00:24:17 +000044}
45
Chris Lattnere24c4cf2007-08-31 22:49:20 +000046/// EmitAnyExpr - Emit code to compute the specified expression which can have
47/// any type. The result is returned as an RValue struct. If this is an
48/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
49/// the result should be returned.
50RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
51 bool isAggLocVolatile) {
52 if (!hasAggregateLLVMType(E->getType()))
53 return RValue::get(EmitScalarExpr(E));
54 else if (E->getType()->isComplexType())
55 return RValue::getComplex(EmitComplexExpr(E));
56
57 EmitAggExpr(E, AggLoc, isAggLocVolatile);
58 return RValue::getAggregate(AggLoc);
59}
60
61
Chris Lattner4b009652007-07-25 00:24:17 +000062//===----------------------------------------------------------------------===//
63// LValue Expression Emission
64//===----------------------------------------------------------------------===//
65
66/// EmitLValue - Emit code to compute a designator that specifies the location
67/// of the expression.
68///
69/// This can return one of two things: a simple address or a bitfield
70/// reference. In either case, the LLVM Value* in the LValue structure is
71/// guaranteed to be an LLVM pointer type.
72///
73/// If this returns a bitfield reference, nothing about the pointee type of
74/// the LLVM value is known: For example, it may not be a pointer to an
75/// integer.
76///
77/// If this returns a normal address, and if the lvalue's C type is fixed
78/// size, this method guarantees that the returned pointer type will point to
79/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
80/// variable length type, this is not possible.
81///
82LValue CodeGenFunction::EmitLValue(const Expr *E) {
83 switch (E->getStmtClass()) {
Chris Lattnera52c8892007-08-26 05:06:40 +000084 default: {
Chris Lattner4b009652007-07-25 00:24:17 +000085 fprintf(stderr, "Unimplemented lvalue expr!\n");
Chris Lattner1aef6212007-09-13 01:17:29 +000086 E->dump(getContext().SourceMgr);
Chris Lattnera52c8892007-08-26 05:06:40 +000087 llvm::Type *Ty = llvm::PointerType::get(ConvertType(E->getType()));
88 return LValue::MakeAddr(llvm::UndefValue::get(Ty));
89 }
Chris Lattner4b009652007-07-25 00:24:17 +000090
91 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
92 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
93 case Expr::PreDefinedExprClass:
94 return EmitPreDefinedLValue(cast<PreDefinedExpr>(E));
95 case Expr::StringLiteralClass:
96 return EmitStringLiteralLValue(cast<StringLiteral>(E));
97
98 case Expr::UnaryOperatorClass:
99 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
100 case Expr::ArraySubscriptExprClass:
101 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Chris Lattnera0d03a72007-08-03 17:31:20 +0000102 case Expr::OCUVectorElementExprClass:
103 return EmitOCUVectorElementExpr(cast<OCUVectorElementExpr>(E));
Devang Patel41b66252007-10-23 20:28:39 +0000104 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +0000105 }
106}
107
108/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
109/// this method emits the address of the lvalue, then loads the result as an
110/// rvalue, returning the rvalue.
111RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Chris Lattner4b009652007-07-25 00:24:17 +0000112 if (LV.isSimple()) {
113 llvm::Value *Ptr = LV.getAddress();
114 const llvm::Type *EltTy =
115 cast<llvm::PointerType>(Ptr->getType())->getElementType();
116
117 // Simple scalar l-value.
118 if (EltTy->isFirstClassType())
119 return RValue::get(Builder.CreateLoad(Ptr, "tmp"));
120
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000121 assert(ExprType->isFunctionType() && "Unknown scalar value");
122 return RValue::get(Ptr);
Chris Lattner4b009652007-07-25 00:24:17 +0000123 }
124
125 if (LV.isVectorElt()) {
126 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(), "tmp");
127 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
128 "vecext"));
129 }
Chris Lattnera735fac2007-08-03 00:16:29 +0000130
131 // If this is a reference to a subset of the elements of a vector, either
132 // shuffle the input or extract/insert them as appropriate.
Chris Lattnera0d03a72007-08-03 17:31:20 +0000133 if (LV.isOCUVectorElt())
134 return EmitLoadOfOCUElementLValue(LV, ExprType);
Chris Lattner4b009652007-07-25 00:24:17 +0000135
136 assert(0 && "Bitfield ref not impl!");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000137 //an invalid RValue, but the assert will
138 //ensure that this point is never reached
139 return RValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000140}
141
Chris Lattner944f7962007-08-03 16:18:34 +0000142// If this is a reference to a subset of the elements of a vector, either
143// shuffle the input or extract/insert them as appropriate.
Chris Lattnera0d03a72007-08-03 17:31:20 +0000144RValue CodeGenFunction::EmitLoadOfOCUElementLValue(LValue LV,
Chris Lattner4b492962007-08-10 17:10:08 +0000145 QualType ExprType) {
Chris Lattner944f7962007-08-03 16:18:34 +0000146 llvm::Value *Vec = Builder.CreateLoad(LV.getOCUVectorAddr(), "tmp");
147
Chris Lattnera0d03a72007-08-03 17:31:20 +0000148 unsigned EncFields = LV.getOCUVectorElts();
Chris Lattner944f7962007-08-03 16:18:34 +0000149
150 // If the result of the expression is a non-vector type, we must be
151 // extracting a single element. Just codegen as an extractelement.
Chris Lattner4b492962007-08-10 17:10:08 +0000152 const VectorType *ExprVT = ExprType->getAsVectorType();
153 if (!ExprVT) {
Chris Lattnera0d03a72007-08-03 17:31:20 +0000154 unsigned InIdx = OCUVectorElementExpr::getAccessedFieldNo(0, EncFields);
Chris Lattner944f7962007-08-03 16:18:34 +0000155 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
156 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
157 }
158
159 // If the source and destination have the same number of elements, use a
160 // vector shuffle instead of insert/extracts.
Chris Lattner4b492962007-08-10 17:10:08 +0000161 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner944f7962007-08-03 16:18:34 +0000162 unsigned NumSourceElts =
163 cast<llvm::VectorType>(Vec->getType())->getNumElements();
164
165 if (NumResultElts == NumSourceElts) {
166 llvm::SmallVector<llvm::Constant*, 4> Mask;
167 for (unsigned i = 0; i != NumResultElts; ++i) {
Chris Lattnera0d03a72007-08-03 17:31:20 +0000168 unsigned InIdx = OCUVectorElementExpr::getAccessedFieldNo(i, EncFields);
Chris Lattner944f7962007-08-03 16:18:34 +0000169 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
170 }
171
172 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
173 Vec = Builder.CreateShuffleVector(Vec,
174 llvm::UndefValue::get(Vec->getType()),
175 MaskV, "tmp");
176 return RValue::get(Vec);
177 }
178
179 // Start out with an undef of the result type.
180 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
181
182 // Extract/Insert each element of the result.
183 for (unsigned i = 0; i != NumResultElts; ++i) {
Chris Lattnera0d03a72007-08-03 17:31:20 +0000184 unsigned InIdx = OCUVectorElementExpr::getAccessedFieldNo(i, EncFields);
Chris Lattner944f7962007-08-03 16:18:34 +0000185 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
186 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
187
188 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
189 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
190 }
191
192 return RValue::get(Result);
193}
194
195
Chris Lattner4b009652007-07-25 00:24:17 +0000196
197/// EmitStoreThroughLValue - Store the specified rvalue into the specified
198/// lvalue, where both are guaranteed to the have the same type, and that type
199/// is 'Ty'.
200void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
201 QualType Ty) {
Chris Lattner5bfdd232007-08-03 16:28:33 +0000202 if (!Dst.isSimple()) {
203 if (Dst.isVectorElt()) {
204 // Read/modify/write the vector, inserting the new element.
205 // FIXME: Volatility.
206 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(), "tmp");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000207 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner5bfdd232007-08-03 16:28:33 +0000208 Dst.getVectorIdx(), "vecins");
209 Builder.CreateStore(Vec, Dst.getVectorAddr());
210 return;
211 }
Chris Lattner4b009652007-07-25 00:24:17 +0000212
Chris Lattner5bfdd232007-08-03 16:28:33 +0000213 // If this is an update of elements of a vector, insert them as appropriate.
Chris Lattnera0d03a72007-08-03 17:31:20 +0000214 if (Dst.isOCUVectorElt())
Chris Lattner5bfdd232007-08-03 16:28:33 +0000215 return EmitStoreThroughOCUComponentLValue(Src, Dst, Ty);
216
217 assert(0 && "FIXME: Don't support store to bitfield yet");
218 }
Chris Lattner4b009652007-07-25 00:24:17 +0000219
220 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000221 assert(Src.isScalar() && "Can't emit an agg store with this method");
222 // FIXME: Handle volatility etc.
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000223 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000224 const llvm::Type *AddrTy =
225 cast<llvm::PointerType>(DstAddr->getType())->getElementType();
Chris Lattner4b009652007-07-25 00:24:17 +0000226
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000227 if (AddrTy != SrcTy)
228 DstAddr = Builder.CreateBitCast(DstAddr, llvm::PointerType::get(SrcTy),
229 "storetmp");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000230 Builder.CreateStore(Src.getScalarVal(), DstAddr);
Chris Lattner4b009652007-07-25 00:24:17 +0000231}
232
Chris Lattner5bfdd232007-08-03 16:28:33 +0000233void CodeGenFunction::EmitStoreThroughOCUComponentLValue(RValue Src, LValue Dst,
234 QualType Ty) {
235 // This access turns into a read/modify/write of the vector. Load the input
236 // value now.
237 llvm::Value *Vec = Builder.CreateLoad(Dst.getOCUVectorAddr(), "tmp");
238 // FIXME: Volatility.
Chris Lattnera0d03a72007-08-03 17:31:20 +0000239 unsigned EncFields = Dst.getOCUVectorElts();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000240
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000241 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000242
Chris Lattner940966d2007-08-03 16:37:04 +0000243 if (const VectorType *VTy = Ty->getAsVectorType()) {
244 unsigned NumSrcElts = VTy->getNumElements();
245
246 // Extract/Insert each element.
247 for (unsigned i = 0; i != NumSrcElts; ++i) {
248 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
249 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
250
Chris Lattnera0d03a72007-08-03 17:31:20 +0000251 unsigned Idx = OCUVectorElementExpr::getAccessedFieldNo(i, EncFields);
Chris Lattner940966d2007-08-03 16:37:04 +0000252 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
253 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
254 }
255 } else {
256 // If the Src is a scalar (not a vector) it must be updating one element.
Chris Lattnera0d03a72007-08-03 17:31:20 +0000257 unsigned InIdx = OCUVectorElementExpr::getAccessedFieldNo(0, EncFields);
Chris Lattner5bfdd232007-08-03 16:28:33 +0000258 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
259 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000260 }
261
Chris Lattner5bfdd232007-08-03 16:28:33 +0000262 Builder.CreateStore(Vec, Dst.getOCUVectorAddr());
263}
264
Chris Lattner4b009652007-07-25 00:24:17 +0000265
266LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroffcb597472007-09-13 21:41:19 +0000267 const ValueDecl *D = E->getDecl();
Chris Lattner4b009652007-07-25 00:24:17 +0000268 if (isa<BlockVarDecl>(D) || isa<ParmVarDecl>(D)) {
269 llvm::Value *V = LocalDeclMap[D];
270 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
271 return LValue::MakeAddr(V);
272 } else if (isa<FunctionDecl>(D) || isa<FileVarDecl>(D)) {
273 return LValue::MakeAddr(CGM.GetAddrOfGlobalDecl(D));
274 }
275 assert(0 && "Unimp declref");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000276 //an invalid LValue, but the assert will
277 //ensure that this point is never reached.
278 return LValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000279}
280
281LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
282 // __extension__ doesn't affect lvalue-ness.
283 if (E->getOpcode() == UnaryOperator::Extension)
284 return EmitLValue(E->getSubExpr());
285
286 assert(E->getOpcode() == UnaryOperator::Deref &&
287 "'*' is the only unary operator that produces an lvalue");
Chris Lattner9fba49a2007-08-24 05:35:26 +0000288 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()));
Chris Lattner4b009652007-07-25 00:24:17 +0000289}
290
291LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
292 assert(!E->isWide() && "FIXME: Wide strings not supported yet!");
293 const char *StrData = E->getStrData();
294 unsigned Len = E->getByteLength();
295
296 // FIXME: Can cache/reuse these within the module.
297 llvm::Constant *C=llvm::ConstantArray::get(std::string(StrData, StrData+Len));
298
299 // Create a global variable for this.
300 C = new llvm::GlobalVariable(C->getType(), true,
301 llvm::GlobalValue::InternalLinkage,
302 C, ".str", CurFn->getParent());
303 llvm::Constant *Zero = llvm::Constant::getNullValue(llvm::Type::Int32Ty);
304 llvm::Constant *Zeros[] = { Zero, Zero };
305 C = llvm::ConstantExpr::getGetElementPtr(C, Zeros, 2);
306 return LValue::MakeAddr(C);
307}
308
309LValue CodeGenFunction::EmitPreDefinedLValue(const PreDefinedExpr *E) {
310 std::string FunctionName(CurFuncDecl->getName());
311 std::string GlobalVarName;
312
313 switch (E->getIdentType()) {
314 default:
315 assert(0 && "unknown pre-defined ident type");
316 case PreDefinedExpr::Func:
317 GlobalVarName = "__func__.";
318 break;
319 case PreDefinedExpr::Function:
320 GlobalVarName = "__FUNCTION__.";
321 break;
322 case PreDefinedExpr::PrettyFunction:
323 // FIXME:: Demangle C++ method names
324 GlobalVarName = "__PRETTY_FUNCTION__.";
325 break;
326 }
327
328 GlobalVarName += CurFuncDecl->getName();
329
330 // FIXME: Can cache/reuse these within the module.
331 llvm::Constant *C=llvm::ConstantArray::get(FunctionName);
332
333 // Create a global variable for this.
334 C = new llvm::GlobalVariable(C->getType(), true,
335 llvm::GlobalValue::InternalLinkage,
336 C, GlobalVarName, CurFn->getParent());
337 llvm::Constant *Zero = llvm::Constant::getNullValue(llvm::Type::Int32Ty);
338 llvm::Constant *Zeros[] = { Zero, Zero };
339 C = llvm::ConstantExpr::getGetElementPtr(C, Zeros, 2);
340 return LValue::MakeAddr(C);
341}
342
343LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000344 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000345 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Chris Lattner4b009652007-07-25 00:24:17 +0000346
347 // If the base is a vector type, then we are forming a vector element lvalue
348 // with this subscript.
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000349 if (E->getLHS()->getType()->isVectorType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000350 // Emit the vector as an lvalue to get its address.
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000351 LValue LHS = EmitLValue(E->getLHS());
352 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Chris Lattner4b009652007-07-25 00:24:17 +0000353 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000354 return LValue::MakeVectorElt(LHS.getAddress(), Idx);
Chris Lattner4b009652007-07-25 00:24:17 +0000355 }
356
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000357 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000358 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner4b009652007-07-25 00:24:17 +0000359
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000360 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner2af72ac2007-08-08 17:43:05 +0000361 QualType IdxTy = E->getIdx()->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000362 bool IdxSigned = IdxTy->isSignedIntegerType();
363 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
364 if (IdxBitwidth != LLVMPointerWidth)
365 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
366 IdxSigned, "idxprom");
367
368 // We know that the pointer points to a type of the correct size, unless the
369 // size is a VLA.
370 if (!E->getType()->isConstantSizeType(getContext()))
371 assert(0 && "VLA idx not implemented");
372 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"));
373}
374
Chris Lattner65520192007-08-02 23:37:31 +0000375LValue CodeGenFunction::
Chris Lattnera0d03a72007-08-03 17:31:20 +0000376EmitOCUVectorElementExpr(const OCUVectorElementExpr *E) {
Chris Lattner65520192007-08-02 23:37:31 +0000377 // Emit the base vector as an l-value.
378 LValue Base = EmitLValue(E->getBase());
379 assert(Base.isSimple() && "Can only subscript lvalue vectors here!");
380
Chris Lattnera0d03a72007-08-03 17:31:20 +0000381 return LValue::MakeOCUVectorElt(Base.getAddress(),
382 E->getEncodedElementAccess());
Chris Lattner65520192007-08-02 23:37:31 +0000383}
384
Devang Patel41b66252007-10-23 20:28:39 +0000385LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
386
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000387 Expr *BaseExpr = E->getBase();
Devang Patel41b66252007-10-23 20:28:39 +0000388 // FIXME: Handle union members.
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000389 if (BaseExpr->getType()->isUnionType()) {
Devang Patel41b66252007-10-23 20:28:39 +0000390 fprintf(stderr, "Unimplemented lvalue expr!\n");
391 E->dump(getContext().SourceMgr);
392 llvm::Type *Ty = llvm::PointerType::get(ConvertType(E->getType()));
393 return LValue::MakeAddr(llvm::UndefValue::get(Ty));
394 }
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000395
396 llvm::Value *BaseValue = NULL;
Devang Patel2b24fd92007-10-26 18:15:21 +0000397 if (BaseExpr->isLvalue() == Expr::LV_Valid) {
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000398 LValue BaseLV = EmitLValue(BaseExpr);
399 BaseValue = BaseLV.getAddress();
Devang Patel2b24fd92007-10-26 18:15:21 +0000400
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000401 if (E->isArrow()) {
402 QualType PTy = cast<PointerType>(BaseExpr->getType())->getPointeeType();
403 BaseValue = Builder.CreateBitCast(BaseValue,
Devang Patel2b24fd92007-10-26 18:15:21 +0000404 llvm::PointerType::get(ConvertType(PTy)),
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000405 "tmp");
406 }
Devang Patel2b24fd92007-10-26 18:15:21 +0000407 } else
408 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patel41b66252007-10-23 20:28:39 +0000409
410 FieldDecl *Field = E->getMemberDecl();
411 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
412 llvm::Value *Idxs[2] = { llvm::Constant::getNullValue(llvm::Type::Int32Ty),
Devang Patel30f6f132007-10-24 00:26:24 +0000413 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx) };
Devang Patel41b66252007-10-23 20:28:39 +0000414
415 return LValue::MakeAddr(Builder.CreateGEP(BaseValue,Idxs, Idxs + 2, "tmp"));
416
417 // FIXME: If record field does not have one to one match with llvm::StructType
418 // field then apply appropriate masks to select only member field bits.
419}
420
Chris Lattner4b009652007-07-25 00:24:17 +0000421//===--------------------------------------------------------------------===//
422// Expression Emission
423//===--------------------------------------------------------------------===//
424
Chris Lattnerb2cb9cb2007-08-20 22:37:10 +0000425
Chris Lattner4b009652007-07-25 00:24:17 +0000426RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson49865302007-08-20 18:05:56 +0000427 if (const ImplicitCastExpr *IcExpr =
428 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
429 if (const DeclRefExpr *DRExpr =
430 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
431 if (const FunctionDecl *FDecl =
432 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
433 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
434 return EmitBuiltinExpr(builtinID, E);
435
Chris Lattner9fba49a2007-08-24 05:35:26 +0000436 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Chris Lattner02c60f52007-08-31 04:44:06 +0000437 return EmitCallExpr(Callee, E);
438}
439
440RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, const CallExpr *E) {
Chris Lattner4b009652007-07-25 00:24:17 +0000441 // The callee type will always be a pointer to function type, get the function
442 // type.
Chris Lattner2af72ac2007-08-08 17:43:05 +0000443 QualType CalleeTy = E->getCallee()->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000444 CalleeTy = cast<PointerType>(CalleeTy.getCanonicalType())->getPointeeType();
445
446 // Get information about the argument types.
447 FunctionTypeProto::arg_type_iterator ArgTyIt = 0, ArgTyEnd = 0;
448
449 // Calling unprototyped functions provides no argument info.
450 if (const FunctionTypeProto *FTP = dyn_cast<FunctionTypeProto>(CalleeTy)) {
451 ArgTyIt = FTP->arg_type_begin();
452 ArgTyEnd = FTP->arg_type_end();
453 }
454
455 llvm::SmallVector<llvm::Value*, 16> Args;
456
Chris Lattner59802042007-08-10 17:02:28 +0000457 // Handle struct-return functions by passing a pointer to the location that
458 // we would like to return into.
459 if (hasAggregateLLVMType(E->getType())) {
460 // Create a temporary alloca to hold the result of the call. :(
461 Args.push_back(CreateTempAlloca(ConvertType(E->getType())));
462 // FIXME: set the stret attribute on the argument.
463 }
464
Chris Lattner4b009652007-07-25 00:24:17 +0000465 for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) {
Chris Lattner2af72ac2007-08-08 17:43:05 +0000466 QualType ArgTy = E->getArg(i)->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000467
Chris Lattnerb06c8dd2007-08-26 22:55:13 +0000468 if (!hasAggregateLLVMType(ArgTy)) {
469 // Scalar argument is passed by-value.
470 Args.push_back(EmitScalarExpr(E->getArg(i)));
Chris Lattnerb06c8dd2007-08-26 22:55:13 +0000471 } else if (ArgTy->isComplexType()) {
472 // Make a temporary alloca to pass the argument.
473 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
474 EmitComplexExprIntoAddr(E->getArg(i), DestMem, false);
475 Args.push_back(DestMem);
476 } else {
477 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
478 EmitAggExpr(E->getArg(i), DestMem, false);
479 Args.push_back(DestMem);
Chris Lattner4b009652007-07-25 00:24:17 +0000480 }
Chris Lattner4b009652007-07-25 00:24:17 +0000481 }
482
Chris Lattnera9572252007-08-01 06:24:52 +0000483 llvm::Value *V = Builder.CreateCall(Callee, &Args[0], &Args[0]+Args.size());
Chris Lattner4b009652007-07-25 00:24:17 +0000484 if (V->getType() != llvm::Type::VoidTy)
485 V->setName("call");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000486 else if (E->getType()->isComplexType())
487 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Chris Lattner59802042007-08-10 17:02:28 +0000488 else if (hasAggregateLLVMType(E->getType()))
489 // Struct return.
490 return RValue::getAggregate(Args[0]);
491
Chris Lattner4b009652007-07-25 00:24:17 +0000492 return RValue::get(V);
493}