blob: ad9e15a7cabddeb3646515ee0f70845e73e70f4d [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
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 Lattnere8f49632007-12-02 01:49:16 +000085 WarnUnsupported(E, "l-value expression");
Christopher Lamb4fe5e702007-12-17 01:11:20 +000086 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Chris Lattnera52c8892007-08-26 05:06:40 +000087 return LValue::MakeAddr(llvm::UndefValue::get(Ty));
88 }
Chris Lattner4b009652007-07-25 00:24:17 +000089
Christopher Lambad327ba2007-12-29 05:02:41 +000090 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Chris Lattner4b009652007-07-25 00:24:17 +000091 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();
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000224 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
225 const llvm::Type *AddrTy = DstPtr->getElementType();
226 unsigned AS = DstPtr->getAddressSpace();
Chris Lattner4b009652007-07-25 00:24:17 +0000227
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000228 if (AddrTy != SrcTy)
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000229 DstAddr = Builder.CreateBitCast(DstAddr,
230 llvm::PointerType::get(SrcTy, AS),
Chris Lattnerbdb8ffb2007-08-11 00:04:45 +0000231 "storetmp");
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000232 Builder.CreateStore(Src.getScalarVal(), DstAddr);
Chris Lattner4b009652007-07-25 00:24:17 +0000233}
234
Devang Patel0f2a8fb2007-10-30 20:59:40 +0000235void CodeGenFunction::EmitStoreThroughOCUComponentLValue(RValue Src, LValue Dst,
Chris Lattner5bfdd232007-08-03 16:28:33 +0000236 QualType Ty) {
237 // This access turns into a read/modify/write of the vector. Load the input
238 // value now.
239 llvm::Value *Vec = Builder.CreateLoad(Dst.getOCUVectorAddr(), "tmp");
240 // FIXME: Volatility.
Chris Lattnera0d03a72007-08-03 17:31:20 +0000241 unsigned EncFields = Dst.getOCUVectorElts();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000242
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000243 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner5bfdd232007-08-03 16:28:33 +0000244
Chris Lattner940966d2007-08-03 16:37:04 +0000245 if (const VectorType *VTy = Ty->getAsVectorType()) {
246 unsigned NumSrcElts = VTy->getNumElements();
247
248 // Extract/Insert each element.
249 for (unsigned i = 0; i != NumSrcElts; ++i) {
250 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
251 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
252
Chris Lattnera0d03a72007-08-03 17:31:20 +0000253 unsigned Idx = OCUVectorElementExpr::getAccessedFieldNo(i, EncFields);
Chris Lattner940966d2007-08-03 16:37:04 +0000254 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
255 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
256 }
257 } else {
258 // If the Src is a scalar (not a vector) it must be updating one element.
Chris Lattnera0d03a72007-08-03 17:31:20 +0000259 unsigned InIdx = OCUVectorElementExpr::getAccessedFieldNo(0, EncFields);
Chris Lattner5bfdd232007-08-03 16:28:33 +0000260 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
261 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner5bfdd232007-08-03 16:28:33 +0000262 }
263
Chris Lattner5bfdd232007-08-03 16:28:33 +0000264 Builder.CreateStore(Vec, Dst.getOCUVectorAddr());
265}
266
Chris Lattner4b009652007-07-25 00:24:17 +0000267
268LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroffcb597472007-09-13 21:41:19 +0000269 const ValueDecl *D = E->getDecl();
Chris Lattner4b009652007-07-25 00:24:17 +0000270 if (isa<BlockVarDecl>(D) || isa<ParmVarDecl>(D)) {
271 llvm::Value *V = LocalDeclMap[D];
272 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
273 return LValue::MakeAddr(V);
Chris Lattner1a3c1e22007-12-02 07:09:19 +0000274 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
275 return LValue::MakeAddr(CGM.GetAddrOfFunctionDecl(FD, false));
276 } else if (const FileVarDecl *FVD = dyn_cast<FileVarDecl>(D)) {
Chris Lattnerd2df2b52007-12-18 08:16:44 +0000277 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(FVD, false));
Chris Lattner4b009652007-07-25 00:24:17 +0000278 }
279 assert(0 && "Unimp declref");
Chris Lattner1d2b4612007-09-16 19:23:47 +0000280 //an invalid LValue, but the assert will
281 //ensure that this point is never reached.
282 return LValue();
Chris Lattner4b009652007-07-25 00:24:17 +0000283}
284
285LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
286 // __extension__ doesn't affect lvalue-ness.
287 if (E->getOpcode() == UnaryOperator::Extension)
288 return EmitLValue(E->getSubExpr());
289
Chris Lattner5bf72022007-10-30 22:53:42 +0000290 switch (E->getOpcode()) {
291 default: assert(0 && "Unknown unary operator lvalue!");
292 case UnaryOperator::Deref:
293 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()));
294 case UnaryOperator::Real:
295 case UnaryOperator::Imag:
296 LValue LV = EmitLValue(E->getSubExpr());
297
298 llvm::Constant *Zero = llvm::ConstantInt::get(llvm::Type::Int32Ty, 0);
299 llvm::Constant *Idx = llvm::ConstantInt::get(llvm::Type::Int32Ty,
300 E->getOpcode() == UnaryOperator::Imag);
301 llvm::Value *Ops[] = {Zero, Idx};
302 return LValue::MakeAddr(Builder.CreateGEP(LV.getAddress(), Ops, Ops+2,
303 "idx"));
304 }
Chris Lattner4b009652007-07-25 00:24:17 +0000305}
306
307LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
308 assert(!E->isWide() && "FIXME: Wide strings not supported yet!");
309 const char *StrData = E->getStrData();
310 unsigned Len = E->getByteLength();
Chris Lattnerdb6be562007-11-28 05:34:05 +0000311 std::string StringLiteral(StrData, StrData+Len);
312 return LValue::MakeAddr(CGM.GetAddrOfConstantString(StringLiteral));
Chris Lattner4b009652007-07-25 00:24:17 +0000313}
314
315LValue CodeGenFunction::EmitPreDefinedLValue(const PreDefinedExpr *E) {
316 std::string FunctionName(CurFuncDecl->getName());
317 std::string GlobalVarName;
318
319 switch (E->getIdentType()) {
320 default:
321 assert(0 && "unknown pre-defined ident type");
322 case PreDefinedExpr::Func:
323 GlobalVarName = "__func__.";
324 break;
325 case PreDefinedExpr::Function:
326 GlobalVarName = "__FUNCTION__.";
327 break;
328 case PreDefinedExpr::PrettyFunction:
329 // FIXME:: Demangle C++ method names
330 GlobalVarName = "__PRETTY_FUNCTION__.";
331 break;
332 }
333
334 GlobalVarName += CurFuncDecl->getName();
335
336 // FIXME: Can cache/reuse these within the module.
337 llvm::Constant *C=llvm::ConstantArray::get(FunctionName);
338
339 // Create a global variable for this.
340 C = new llvm::GlobalVariable(C->getType(), true,
341 llvm::GlobalValue::InternalLinkage,
342 C, GlobalVarName, CurFn->getParent());
Chris Lattner4b009652007-07-25 00:24:17 +0000343 return LValue::MakeAddr(C);
344}
345
346LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000347 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000348 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Chris Lattner4b009652007-07-25 00:24:17 +0000349
350 // If the base is a vector type, then we are forming a vector element lvalue
351 // with this subscript.
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000352 if (E->getLHS()->getType()->isVectorType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000353 // Emit the vector as an lvalue to get its address.
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000354 LValue LHS = EmitLValue(E->getLHS());
355 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Chris Lattner4b009652007-07-25 00:24:17 +0000356 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000357 return LValue::MakeVectorElt(LHS.getAddress(), Idx);
Chris Lattner4b009652007-07-25 00:24:17 +0000358 }
359
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000360 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner9fba49a2007-08-24 05:35:26 +0000361 llvm::Value *Base = EmitScalarExpr(E->getBase());
Chris Lattner4b009652007-07-25 00:24:17 +0000362
Ted Kremenek1c1700f2007-08-20 16:18:38 +0000363 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattner2af72ac2007-08-08 17:43:05 +0000364 QualType IdxTy = E->getIdx()->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000365 bool IdxSigned = IdxTy->isSignedIntegerType();
366 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
367 if (IdxBitwidth != LLVMPointerWidth)
368 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
369 IdxSigned, "idxprom");
370
371 // We know that the pointer points to a type of the correct size, unless the
372 // size is a VLA.
373 if (!E->getType()->isConstantSizeType(getContext()))
374 assert(0 && "VLA idx not implemented");
375 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"));
376}
377
Chris Lattner65520192007-08-02 23:37:31 +0000378LValue CodeGenFunction::
Chris Lattnera0d03a72007-08-03 17:31:20 +0000379EmitOCUVectorElementExpr(const OCUVectorElementExpr *E) {
Chris Lattner65520192007-08-02 23:37:31 +0000380 // Emit the base vector as an l-value.
381 LValue Base = EmitLValue(E->getBase());
382 assert(Base.isSimple() && "Can only subscript lvalue vectors here!");
383
Chris Lattnera0d03a72007-08-03 17:31:20 +0000384 return LValue::MakeOCUVectorElt(Base.getAddress(),
385 E->getEncodedElementAccess());
Chris Lattner65520192007-08-02 23:37:31 +0000386}
387
Devang Patel41b66252007-10-23 20:28:39 +0000388LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
389
Devang Patele1f79db2007-12-11 21:33:16 +0000390 bool isUnion = false;
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000391 Expr *BaseExpr = E->getBase();
Devang Patel9dd3e2b2007-10-24 22:26:28 +0000392 llvm::Value *BaseValue = NULL;
Chris Lattner659079e2007-12-02 18:52:07 +0000393
394 // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
Devang Patele1f79db2007-12-11 21:33:16 +0000395 if (E->isArrow()) {
Devang Patel2b24fd92007-10-26 18:15:21 +0000396 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patele1f79db2007-12-11 21:33:16 +0000397 const PointerType *PTy =
398 cast<PointerType>(BaseExpr->getType().getCanonicalType());
399 if (PTy->getPointeeType()->isUnionType())
400 isUnion = true;
401 }
Chris Lattner659079e2007-12-02 18:52:07 +0000402 else {
403 LValue BaseLV = EmitLValue(BaseExpr);
404 // FIXME: this isn't right for bitfields.
405 BaseValue = BaseLV.getAddress();
Devang Patele1f79db2007-12-11 21:33:16 +0000406 if (BaseExpr->getType()->isUnionType())
407 isUnion = true;
Chris Lattner659079e2007-12-02 18:52:07 +0000408 }
Devang Patel41b66252007-10-23 20:28:39 +0000409
410 FieldDecl *Field = E->getMemberDecl();
Devang Patel691e9da2007-12-10 18:52:06 +0000411
412 assert (!Field->isBitField() && "Bit-field access is not yet implmented");
413
Devang Patel41b66252007-10-23 20:28:39 +0000414 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
415 llvm::Value *Idxs[2] = { llvm::Constant::getNullValue(llvm::Type::Int32Ty),
Devang Patel30f6f132007-10-24 00:26:24 +0000416 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx) };
Devang Patel41b66252007-10-23 20:28:39 +0000417
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000418 llvm::Value *V = Builder.CreateGEP(BaseValue,Idxs, Idxs + 2, "tmp");
419 // Match union field type.
Devang Patele1f79db2007-12-11 21:33:16 +0000420 if (isUnion) {
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000421 const llvm::Type * FieldTy = ConvertType(Field->getType());
Devang Patel0f2a8fb2007-10-30 20:59:40 +0000422 const llvm::PointerType * BaseTy =
423 cast<llvm::PointerType>(BaseValue->getType());
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000424 if (FieldTy != BaseTy->getElementType()) {
Christopher Lambd62ab382007-12-29 04:06:57 +0000425 unsigned AS = BaseTy->getAddressSpace();
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000426 V = Builder.CreateBitCast(V,
Christopher Lambd62ab382007-12-29 04:06:57 +0000427 llvm::PointerType::get(FieldTy, AS),
Christopher Lamb4fe5e702007-12-17 01:11:20 +0000428 "tmp");
Devang Patel9b1ca9e2007-10-26 19:42:18 +0000429 }
430 }
431 return LValue::MakeAddr(V);
Devang Patel41b66252007-10-23 20:28:39 +0000432
433 // FIXME: If record field does not have one to one match with llvm::StructType
434 // field then apply appropriate masks to select only member field bits.
435}
436
Chris Lattner4b009652007-07-25 00:24:17 +0000437//===--------------------------------------------------------------------===//
438// Expression Emission
439//===--------------------------------------------------------------------===//
440
Chris Lattnerb2cb9cb2007-08-20 22:37:10 +0000441
Chris Lattner4b009652007-07-25 00:24:17 +0000442RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson49865302007-08-20 18:05:56 +0000443 if (const ImplicitCastExpr *IcExpr =
444 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
445 if (const DeclRefExpr *DRExpr =
446 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
447 if (const FunctionDecl *FDecl =
448 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
449 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
450 return EmitBuiltinExpr(builtinID, E);
451
Chris Lattner9fba49a2007-08-24 05:35:26 +0000452 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000453 return EmitCallExpr(Callee, E->getType(), E->arg_begin());
454}
455
456RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr, Expr *const *Args) {
457 llvm::Value *Callee = EmitScalarExpr(FnExpr);
458 return EmitCallExpr(Callee, FnExpr->getType(), Args);
Chris Lattner02c60f52007-08-31 04:44:06 +0000459}
460
Christopher Lambad327ba2007-12-29 05:02:41 +0000461LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
462 // Can only get l-value for call expression returning aggregate type
463 RValue RV = EmitCallExpr(E);
464 return LValue::MakeAddr(RV.getAggregateAddr());
465}
466
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000467RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
468 Expr *const *ArgExprs) {
Chris Lattner4b009652007-07-25 00:24:17 +0000469 // The callee type will always be a pointer to function type, get the function
470 // type.
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000471 FnType = cast<PointerType>(FnType.getCanonicalType())->getPointeeType();
472 QualType ResultType = cast<FunctionType>(FnType)->getResultType();
Chris Lattner4b009652007-07-25 00:24:17 +0000473
474 // Calling unprototyped functions provides no argument info.
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000475 unsigned NumArgs = 0;
476 if (const FunctionTypeProto *FTP = dyn_cast<FunctionTypeProto>(FnType))
477 NumArgs = FTP->getNumArgs();
Chris Lattner4b009652007-07-25 00:24:17 +0000478
479 llvm::SmallVector<llvm::Value*, 16> Args;
480
Chris Lattner59802042007-08-10 17:02:28 +0000481 // Handle struct-return functions by passing a pointer to the location that
482 // we would like to return into.
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000483 if (hasAggregateLLVMType(ResultType)) {
Chris Lattner59802042007-08-10 17:02:28 +0000484 // Create a temporary alloca to hold the result of the call. :(
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000485 Args.push_back(CreateTempAlloca(ConvertType(ResultType)));
Chris Lattner59802042007-08-10 17:02:28 +0000486 // FIXME: set the stret attribute on the argument.
487 }
488
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000489 for (unsigned i = 0, e = NumArgs; i != e; ++i) {
490 QualType ArgTy = ArgExprs[i]->getType();
Chris Lattner4b009652007-07-25 00:24:17 +0000491
Chris Lattnerb06c8dd2007-08-26 22:55:13 +0000492 if (!hasAggregateLLVMType(ArgTy)) {
493 // Scalar argument is passed by-value.
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000494 Args.push_back(EmitScalarExpr(ArgExprs[i]));
Chris Lattnerb06c8dd2007-08-26 22:55:13 +0000495 } else if (ArgTy->isComplexType()) {
496 // Make a temporary alloca to pass the argument.
497 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000498 EmitComplexExprIntoAddr(ArgExprs[i], DestMem, false);
Chris Lattnerb06c8dd2007-08-26 22:55:13 +0000499 Args.push_back(DestMem);
500 } else {
501 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000502 EmitAggExpr(ArgExprs[i], DestMem, false);
Chris Lattnerb06c8dd2007-08-26 22:55:13 +0000503 Args.push_back(DestMem);
Chris Lattner4b009652007-07-25 00:24:17 +0000504 }
Chris Lattner4b009652007-07-25 00:24:17 +0000505 }
506
Chris Lattnera9572252007-08-01 06:24:52 +0000507 llvm::Value *V = Builder.CreateCall(Callee, &Args[0], &Args[0]+Args.size());
Chris Lattner4b009652007-07-25 00:24:17 +0000508 if (V->getType() != llvm::Type::VoidTy)
509 V->setName("call");
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000510 else if (ResultType->isComplexType())
Chris Lattnere24c4cf2007-08-31 22:49:20 +0000511 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000512 else if (hasAggregateLLVMType(ResultType))
Chris Lattner59802042007-08-10 17:02:28 +0000513 // Struct return.
514 return RValue::getAggregate(Args[0]);
Chris Lattner307da022007-11-30 17:56:23 +0000515 else {
516 // void return.
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000517 assert(ResultType->isVoidType() && "Should only have a void expr here");
Chris Lattner307da022007-11-30 17:56:23 +0000518 V = 0;
519 }
Chris Lattner59802042007-08-10 17:02:28 +0000520
Chris Lattner4b009652007-07-25 00:24:17 +0000521 return RValue::get(V);
522}