blob: 05a8972a4049fbf59ee840c8260e61f9c788726b [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"
16#include "clang/AST/AST.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000017#include "clang/Basic/TargetInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "llvm/Constants.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Function.h"
21#include "llvm/GlobalVariable.h"
Chris Lattner99e0d792007-07-16 05:43:05 +000022#include "llvm/Support/MathExtras.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000023#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25using namespace CodeGen;
26
27//===--------------------------------------------------------------------===//
28// Miscellaneous Helper Methods
29//===--------------------------------------------------------------------===//
30
31/// CreateTempAlloca - This creates a alloca and inserts it into the entry
32/// block.
33llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
34 const char *Name) {
35 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
36}
37
38/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
39/// expression and compare the result against zero, returning an Int1Ty value.
40llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000041 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000042 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000043 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000044
Chris Lattner9069fa22007-08-26 16:46:58 +000045 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000046}
47
Chris Lattner9b655512007-08-31 22:49:20 +000048/// EmitAnyExpr - Emit code to compute the specified expression which can have
49/// any type. The result is returned as an RValue struct. If this is an
50/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
51/// the result should be returned.
52RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
53 bool isAggLocVolatile) {
54 if (!hasAggregateLLVMType(E->getType()))
55 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000056 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000057 return RValue::getComplex(EmitComplexExpr(E));
58
59 EmitAggExpr(E, AggLoc, isAggLocVolatile);
60 return RValue::getAggregate(AggLoc);
61}
62
Dan Gohman4f8d1232008-05-22 00:50:06 +000063/// getAccessedFieldNo - Given an encoded value and a result number, return
64/// the input field number being accessed.
65unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
66 const llvm::Constant *Elts) {
67 if (isa<llvm::ConstantAggregateZero>(Elts))
68 return 0;
69
70 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
71}
72
Chris Lattner9b655512007-08-31 22:49:20 +000073
Reid Spencer5f016e22007-07-11 17:01:13 +000074//===----------------------------------------------------------------------===//
75// LValue Expression Emission
76//===----------------------------------------------------------------------===//
77
78/// EmitLValue - Emit code to compute a designator that specifies the location
79/// of the expression.
80///
81/// This can return one of two things: a simple address or a bitfield
82/// reference. In either case, the LLVM Value* in the LValue structure is
83/// guaranteed to be an LLVM pointer type.
84///
85/// If this returns a bitfield reference, nothing about the pointee type of
86/// the LLVM value is known: For example, it may not be a pointer to an
87/// integer.
88///
89/// If this returns a normal address, and if the lvalue's C type is fixed
90/// size, this method guarantees that the returned pointer type will point to
91/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
92/// variable length type, this is not possible.
93///
94LValue CodeGenFunction::EmitLValue(const Expr *E) {
95 switch (E->getStmtClass()) {
Chris Lattner7013c8c2007-08-26 05:06:40 +000096 default: {
Chris Lattnerce5605e2008-03-30 23:25:33 +000097 printf("Statement class: %d\n", E->getStmtClass());
Chris Lattnerdc4d2802007-12-02 01:49:16 +000098 WarnUnsupported(E, "l-value expression");
Christopher Lambddc23f32007-12-17 01:11:20 +000099 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Eli Friedman1e692ac2008-06-13 23:01:12 +0000100 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
101 E->getType().getCVRQualifiers());
Chris Lattner7013c8c2007-08-26 05:06:40 +0000102 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000103
Christopher Lamb22c940e2007-12-29 05:02:41 +0000104 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
106 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Anders Carlsson22742662007-07-21 05:21:51 +0000107 case Expr::PreDefinedExprClass:
108 return EmitPreDefinedLValue(cast<PreDefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000109 case Expr::StringLiteralClass:
110 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000111
112 case Expr::ObjCIvarRefExprClass:
113 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000114
115 case Expr::UnaryOperatorClass:
116 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
117 case Expr::ArraySubscriptExprClass:
118 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000119 case Expr::ExtVectorElementExprClass:
120 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000121 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000122 case Expr::CompoundLiteralExprClass:
123 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000124 }
125}
126
127/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
128/// this method emits the address of the lvalue, then loads the result as an
129/// rvalue, returning the rvalue.
130RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000131 if (LV.isSimple()) {
132 llvm::Value *Ptr = LV.getAddress();
133 const llvm::Type *EltTy =
134 cast<llvm::PointerType>(Ptr->getType())->getElementType();
135
136 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000137 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000138 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000139
140 // Bool can have different representation in memory than in registers.
141 if (ExprType->isBooleanType()) {
142 if (V->getType() != llvm::Type::Int1Ty)
143 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
144 }
145
146 return RValue::get(V);
147 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000148
Chris Lattner883f6a72007-08-11 00:04:45 +0000149 assert(ExprType->isFunctionType() && "Unknown scalar value");
150 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 }
152
153 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000154 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
155 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000156 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
157 "vecext"));
158 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000159
160 // If this is a reference to a subset of the elements of a vector, either
161 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000162 if (LV.isExtVectorElt())
163 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000164
165 if (LV.isBitfield())
166 return EmitLoadOfBitfieldLValue(LV, ExprType);
167
168 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000169 //an invalid RValue, but the assert will
170 //ensure that this point is never reached
171 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000172}
173
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000174RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
175 QualType ExprType) {
176 llvm::Value *Ptr = LV.getBitfieldAddr();
177 const llvm::Type *EltTy =
178 cast<llvm::PointerType>(Ptr->getType())->getElementType();
179 unsigned EltTySize = EltTy->getPrimitiveSizeInBits();
180 unsigned short BitfieldSize = LV.getBitfieldSize();
181 unsigned short EndBit = LV.getBitfieldStartBit() + BitfieldSize;
182
Eli Friedman1e692ac2008-06-13 23:01:12 +0000183 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000184
185 llvm::Value *ShAmt = llvm::ConstantInt::get(EltTy, EltTySize - EndBit);
186 V = Builder.CreateShl(V, ShAmt, "tmp");
187
188 ShAmt = llvm::ConstantInt::get(EltTy, EltTySize - BitfieldSize);
189 V = LV.isBitfieldSigned() ?
190 Builder.CreateAShr(V, ShAmt, "tmp") :
191 Builder.CreateLShr(V, ShAmt, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000192
193 // The bitfield type and the normal type differ when the storage sizes
194 // differ (currently just _Bool).
195 V = Builder.CreateIntCast(V, ConvertType(ExprType), false, "tmp");
196
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000197 return RValue::get(V);
198}
199
Chris Lattner34cdc862007-08-03 16:18:34 +0000200// If this is a reference to a subset of the elements of a vector, either
201// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000202RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
203 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000204 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
205 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000206
Nate Begeman8a997642008-05-09 06:41:27 +0000207 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000208
209 // If the result of the expression is a non-vector type, we must be
210 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000211 const VectorType *ExprVT = ExprType->getAsVectorType();
212 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000213 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000214 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
215 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
216 }
217
218 // If the source and destination have the same number of elements, use a
219 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000220 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000221 unsigned NumSourceElts =
222 cast<llvm::VectorType>(Vec->getType())->getNumElements();
223
224 if (NumResultElts == NumSourceElts) {
225 llvm::SmallVector<llvm::Constant*, 4> Mask;
226 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000227 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000228 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
229 }
230
231 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
232 Vec = Builder.CreateShuffleVector(Vec,
233 llvm::UndefValue::get(Vec->getType()),
234 MaskV, "tmp");
235 return RValue::get(Vec);
236 }
237
238 // Start out with an undef of the result type.
239 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
240
241 // Extract/Insert each element of the result.
242 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000243 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000244 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
245 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
246
247 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
248 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
249 }
250
251 return RValue::get(Result);
252}
253
254
Reid Spencer5f016e22007-07-11 17:01:13 +0000255
256/// EmitStoreThroughLValue - Store the specified rvalue into the specified
257/// lvalue, where both are guaranteed to the have the same type, and that type
258/// is 'Ty'.
259void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
260 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000261 if (!Dst.isSimple()) {
262 if (Dst.isVectorElt()) {
263 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000264 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
265 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000266 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000267 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000268 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000269 return;
270 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000271
Nate Begeman213541a2008-04-18 23:10:10 +0000272 // If this is an update of extended vector elements, insert them as
273 // appropriate.
274 if (Dst.isExtVectorElt())
275 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000276
277 if (Dst.isBitfield())
278 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
279
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000280 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000281 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000282
283 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000284 assert(Src.isScalar() && "Can't emit an agg store with this method");
285 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000286 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000287 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
288 const llvm::Type *AddrTy = DstPtr->getElementType();
289 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000290
Chris Lattner883f6a72007-08-11 00:04:45 +0000291 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000292 DstAddr = Builder.CreateBitCast(DstAddr,
293 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000294 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000295 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000296}
297
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000298void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
299 QualType Ty) {
300 unsigned short StartBit = Dst.getBitfieldStartBit();
301 unsigned short BitfieldSize = Dst.getBitfieldSize();
302 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000303
304 llvm::Value *NewVal = Src.getScalarVal();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000305 llvm::Value *OldVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
306 "tmp");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000307
Eli Friedman316bb1b2008-05-17 20:03:47 +0000308 // The bitfield type and the normal type differ when the storage sizes
309 // differ (currently just _Bool).
310 const llvm::Type *EltTy = OldVal->getType();
311 unsigned EltTySize = CGM.getTargetData().getABITypeSizeInBits(EltTy);
312
313 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
314
315 // Move the bits into the appropriate location
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000316 llvm::Value *ShAmt = llvm::ConstantInt::get(EltTy, StartBit);
317 NewVal = Builder.CreateShl(NewVal, ShAmt, "tmp");
318
319 llvm::Constant *Mask = llvm::ConstantInt::get(
320 llvm::APInt::getBitsSet(EltTySize, StartBit,
Dan Gohmand254f002008-02-12 21:49:34 +0000321 StartBit + BitfieldSize));
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000322
323 // Mask out any bits that shouldn't be set in the result.
324 NewVal = Builder.CreateAnd(NewVal, Mask, "tmp");
325
326 // Next, mask out the bits this bit-field should include from the old value.
327 Mask = llvm::ConstantExpr::getNot(Mask);
328 OldVal = Builder.CreateAnd(OldVal, Mask, "tmp");
329
330 // Finally, merge the two together and store it.
331 NewVal = Builder.CreateOr(OldVal, NewVal, "tmp");
332
Eli Friedman1e692ac2008-06-13 23:01:12 +0000333 Builder.CreateStore(NewVal, Ptr, Dst.isVolatileQualified());
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000334}
335
Nate Begeman213541a2008-04-18 23:10:10 +0000336void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
337 LValue Dst,
338 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000339 // This access turns into a read/modify/write of the vector. Load the input
340 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000341 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
342 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000343 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000344
Chris Lattner9b655512007-08-31 22:49:20 +0000345 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000346
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000347 if (const VectorType *VTy = Ty->getAsVectorType()) {
348 unsigned NumSrcElts = VTy->getNumElements();
349
350 // Extract/Insert each element.
351 for (unsigned i = 0; i != NumSrcElts; ++i) {
352 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
353 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
354
Dan Gohman4f8d1232008-05-22 00:50:06 +0000355 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000356 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
357 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
358 }
359 } else {
360 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000361 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000362 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
363 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000364 }
365
Eli Friedman1e692ac2008-06-13 23:01:12 +0000366 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000367}
368
Reid Spencer5f016e22007-07-11 17:01:13 +0000369
370LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000371 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
372
373 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD))) {
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000374 if (VD->getStorageClass() == VarDecl::Extern)
Eli Friedman1e692ac2008-06-13 23:01:12 +0000375 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD, false),
376 E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000377 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000378 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000379 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000380 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000381 }
Steve Naroff248a7532008-04-15 22:42:06 +0000382 } else if (VD && VD->isFileVarDecl()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000383 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD, false),
384 E->getType().getCVRQualifiers());
Steve Naroff248a7532008-04-15 22:42:06 +0000385 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000386 return LValue::MakeAddr(CGM.GetAddrOfFunctionDecl(FD, false),
387 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000388 }
389 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000390 //an invalid LValue, but the assert will
391 //ensure that this point is never reached.
392 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000393}
394
395LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
396 // __extension__ doesn't affect lvalue-ness.
397 if (E->getOpcode() == UnaryOperator::Extension)
398 return EmitLValue(E->getSubExpr());
399
Chris Lattner7da36f62007-10-30 22:53:42 +0000400 switch (E->getOpcode()) {
401 default: assert(0 && "Unknown unary operator lvalue!");
402 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000403 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
404 E->getSubExpr()->getType().getCanonicalType()->getAsPointerType()
405 ->getPointeeType().getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000406 case UnaryOperator::Real:
407 case UnaryOperator::Imag:
408 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000409 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
410 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000411 Idx, "idx"),E->getSubExpr()->getType().getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000412 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000413}
414
415LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
416 assert(!E->isWide() && "FIXME: Wide strings not supported yet!");
Eli Friedman922696f2008-05-19 17:51:16 +0000417 // Get the string data
Reid Spencer5f016e22007-07-11 17:01:13 +0000418 const char *StrData = E->getStrData();
419 unsigned Len = E->getByteLength();
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000420 std::string StringLiteral(StrData, StrData+Len);
Eli Friedman922696f2008-05-19 17:51:16 +0000421
422 // Resize the string to the right size
423 const ConstantArrayType *CAT = E->getType()->getAsConstantArrayType();
424 uint64_t RealLen = CAT->getSize().getZExtValue();
425 StringLiteral.resize(RealLen, '\0');
426
Eli Friedman1e692ac2008-06-13 23:01:12 +0000427 return LValue::MakeAddr(CGM.GetAddrOfConstantString(StringLiteral),0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000428}
429
Anders Carlsson22742662007-07-21 05:21:51 +0000430LValue CodeGenFunction::EmitPreDefinedLValue(const PreDefinedExpr *E) {
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000431 std::string FunctionName;
432 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
433 FunctionName = FD->getName();
434 }
435 else {
436 assert(0 && "Attempting to load predefined constant for invalid decl type");
437 }
Anders Carlsson22742662007-07-21 05:21:51 +0000438 std::string GlobalVarName;
439
440 switch (E->getIdentType()) {
441 default:
442 assert(0 && "unknown pre-defined ident type");
443 case PreDefinedExpr::Func:
444 GlobalVarName = "__func__.";
445 break;
446 case PreDefinedExpr::Function:
447 GlobalVarName = "__FUNCTION__.";
448 break;
449 case PreDefinedExpr::PrettyFunction:
450 // FIXME:: Demangle C++ method names
451 GlobalVarName = "__PRETTY_FUNCTION__.";
452 break;
453 }
454
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000455 GlobalVarName += FunctionName;
Anders Carlsson22742662007-07-21 05:21:51 +0000456
457 // FIXME: Can cache/reuse these within the module.
458 llvm::Constant *C=llvm::ConstantArray::get(FunctionName);
459
460 // Create a global variable for this.
461 C = new llvm::GlobalVariable(C->getType(), true,
462 llvm::GlobalValue::InternalLinkage,
463 C, GlobalVarName, CurFn->getParent());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000464 return LValue::MakeAddr(C,0);
Anders Carlsson22742662007-07-21 05:21:51 +0000465}
466
Reid Spencer5f016e22007-07-11 17:01:13 +0000467LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000468 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000469 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000470
471 // If the base is a vector type, then we are forming a vector element lvalue
472 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000473 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000474 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000475 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000476 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000477 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000478 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
479 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000480 }
481
Ted Kremenek23245122007-08-20 16:18:38 +0000482 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000483 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000484
Ted Kremenek23245122007-08-20 16:18:38 +0000485 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000486 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000487 bool IdxSigned = IdxTy->isSignedIntegerType();
488 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
489 if (IdxBitwidth != LLVMPointerWidth)
490 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
491 IdxSigned, "idxprom");
492
493 // We know that the pointer points to a type of the correct size, unless the
494 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000495 if (!E->getType()->isConstantSizeType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000496 assert(0 && "VLA idx not implemented");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000497 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
498 E->getBase()->getType().getCanonicalType()->getAsPointerType()
499 ->getPointeeType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000500}
501
Nate Begeman3b8d1162008-05-13 21:03:02 +0000502static
503llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
504 llvm::SmallVector<llvm::Constant *, 4> CElts;
505
506 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
507 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
508
509 return llvm::ConstantVector::get(&CElts[0], CElts.size());
510}
511
Chris Lattner349aaec2007-08-02 23:37:31 +0000512LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000513EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000514 // Emit the base vector as an l-value.
515 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000516
Nate Begeman3b8d1162008-05-13 21:03:02 +0000517 // Encode the element access list into a vector of unsigned indices.
518 llvm::SmallVector<unsigned, 4> Indices;
519 E->getEncodedElementAccess(Indices);
520
521 if (Base.isSimple()) {
522 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000523 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
524 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000525 }
526 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
527
528 llvm::Constant *BaseElts = Base.getExtVectorElts();
529 llvm::SmallVector<llvm::Constant *, 4> CElts;
530
531 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
532 if (isa<llvm::ConstantAggregateZero>(BaseElts))
533 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
534 else
535 CElts.push_back(BaseElts->getOperand(Indices[i]));
536 }
537 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000538 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
539 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000540}
541
Devang Patelb9b00ad2007-10-23 20:28:39 +0000542LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000543 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000544 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000545 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000546 unsigned CVRQualifiers=0;
547
Chris Lattner12f65f62007-12-02 18:52:07 +0000548 // 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 +0000549 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000550 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000551 const PointerType *PTy =
552 cast<PointerType>(BaseExpr->getType().getCanonicalType());
553 if (PTy->getPointeeType()->isUnionType())
554 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000555 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000556 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000557 else {
558 LValue BaseLV = EmitLValue(BaseExpr);
559 // FIXME: this isn't right for bitfields.
560 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000561 if (BaseExpr->getType()->isUnionType())
562 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000563 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000564 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000565
566 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000567 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000568}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000569
Eli Friedman472778e2008-02-09 08:50:58 +0000570LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
571 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000572 bool isUnion,
573 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000574{
575 llvm::Value *V;
576 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000577
Eli Friedman1e86b342008-05-29 11:33:25 +0000578 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000579 // FIXME: CodeGenTypes should expose a method to get the appropriate
580 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000581 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000582 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000583 cast<llvm::PointerType>(BaseValue->getType());
584 unsigned AS = BaseTy->getAddressSpace();
585 BaseValue = Builder.CreateBitCast(BaseValue,
586 llvm::PointerType::get(FieldTy, AS),
587 "tmp");
588 V = Builder.CreateGEP(BaseValue,
589 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
590 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000591
592 CodeGenTypes::BitFieldInfo bitFieldInfo =
593 CGM.getTypes().getBitFieldInfo(Field);
594 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000595 Field->getType()->isSignedIntegerType(),
596 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000597 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000598
Eli Friedman1e86b342008-05-29 11:33:25 +0000599 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
600
Devang Patelabad06c2007-10-26 19:42:18 +0000601 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000602 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000603 const llvm::Type *FieldTy =
604 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000605 const llvm::PointerType * BaseTy =
606 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000607 unsigned AS = BaseTy->getAddressSpace();
608 V = Builder.CreateBitCast(V,
609 llvm::PointerType::get(FieldTy, AS),
610 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000611 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000612
Eli Friedman1e692ac2008-06-13 23:01:12 +0000613 return LValue::MakeAddr(V,
614 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000615}
616
Eli Friedman1e692ac2008-06-13 23:01:12 +0000617LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
618{
Eli Friedman06e863f2008-05-13 23:18:27 +0000619 const llvm::Type *LTy = ConvertType(E->getType());
620 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
621
622 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000623 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000624
625 if (E->getType()->isComplexType()) {
626 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
627 } else if (hasAggregateLLVMType(E->getType())) {
628 EmitAnyExpr(InitExpr, DeclPtr, false);
629 } else {
630 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
631 }
632
633 return Result;
634}
635
Reid Spencer5f016e22007-07-11 17:01:13 +0000636//===--------------------------------------------------------------------===//
637// Expression Emission
638//===--------------------------------------------------------------------===//
639
Chris Lattner7016a702007-08-20 22:37:10 +0000640
Reid Spencer5f016e22007-07-11 17:01:13 +0000641RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000642 if (const ImplicitCastExpr *IcExpr =
643 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
644 if (const DeclRefExpr *DRExpr =
645 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
646 if (const FunctionDecl *FDecl =
647 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
648 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
649 return EmitBuiltinExpr(builtinID, E);
650
Chris Lattner7f02f722007-08-24 05:35:26 +0000651 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000652 return EmitCallExpr(Callee, E->getCallee()->getType(),
653 E->arg_begin(), E->getNumArgs());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000654}
655
Eli Friedman5193b8a2008-01-30 01:32:06 +0000656RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr, Expr *const *Args,
657 unsigned NumArgs) {
Nate Begemane2ce1d92008-01-17 17:46:27 +0000658 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Eli Friedman5193b8a2008-01-30 01:32:06 +0000659 return EmitCallExpr(Callee, FnExpr->getType(), Args, NumArgs);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000660}
661
Christopher Lamb22c940e2007-12-29 05:02:41 +0000662LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
663 // Can only get l-value for call expression returning aggregate type
664 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000665 // FIXME: can this be volatile?
666 return LValue::MakeAddr(RV.getAggregateAddr(),
667 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000668}
669
Chris Lattner391d77a2008-03-30 23:03:07 +0000670LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
671 // Objective-C objects are traditionally C structures with their layout
672 // defined at compile-time. In some implementations, their layout is not
673 // defined until run time in order to allow instance variables to be added to
674 // a class without recompiling all of the subclasses. If this is the case
675 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
676 // implement the lookup itself.
Chris Lattnerce5605e2008-03-30 23:25:33 +0000677 if (CGM.getObjCRuntime()->LateBoundIVars()) {
Chris Lattner391d77a2008-03-30 23:03:07 +0000678 assert(0 && "FIXME: Implement support for late-bound instance variables");
679 return LValue(); // Not reached.
680 }
Chris Lattnerce5605e2008-03-30 23:25:33 +0000681
682 // Get a structure type for the object
683 QualType ExprTy = E->getBase()->getType();
684 const llvm::Type *ObjectType = ConvertType(ExprTy);
685 // TODO: Add a special case for isa (index 0)
686 // Work out which index the ivar is
687 const ObjCIvarDecl *Decl = E->getDecl();
688 unsigned Index = CGM.getTypes().getLLVMFieldNo(Decl);
Chris Lattner391d77a2008-03-30 23:03:07 +0000689
Chris Lattnerce5605e2008-03-30 23:25:33 +0000690 // Get object pointer and coerce object pointer to correct type.
691 llvm::Value *Object = EmitLValue(E->getBase()).getAddress();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000692 // FIXME: Volatility
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000693 Object = Builder.CreateLoad(Object, E->getDecl()->getName());
Chris Lattnerce5605e2008-03-30 23:25:33 +0000694 if (Object->getType() != ObjectType)
695 Object = Builder.CreateBitCast(Object, ObjectType);
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000696
Chris Lattnerce5605e2008-03-30 23:25:33 +0000697
698 // Return a pointer to the right element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000699 // FIXME: volatile
Chris Lattnerce5605e2008-03-30 23:25:33 +0000700 return LValue::MakeAddr(Builder.CreateStructGEP(Object, Index,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000701 Decl->getName()),0);
Chris Lattner391d77a2008-03-30 23:03:07 +0000702}
703
Nate Begemane2ce1d92008-01-17 17:46:27 +0000704RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Eli Friedman5193b8a2008-01-30 01:32:06 +0000705 Expr *const *ArgExprs, unsigned NumArgs) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000706 // The callee type will always be a pointer to function type, get the function
707 // type.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000708 FnType = cast<PointerType>(FnType.getCanonicalType())->getPointeeType();
709 QualType ResultType = cast<FunctionType>(FnType)->getResultType();
Eli Friedman5193b8a2008-01-30 01:32:06 +0000710
Reid Spencer5f016e22007-07-11 17:01:13 +0000711 llvm::SmallVector<llvm::Value*, 16> Args;
712
Chris Lattnercc666af2007-08-10 17:02:28 +0000713 // Handle struct-return functions by passing a pointer to the location that
714 // we would like to return into.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000715 if (hasAggregateLLVMType(ResultType)) {
Chris Lattnercc666af2007-08-10 17:02:28 +0000716 // Create a temporary alloca to hold the result of the call. :(
Nate Begemane2ce1d92008-01-17 17:46:27 +0000717 Args.push_back(CreateTempAlloca(ConvertType(ResultType)));
Chris Lattnercc666af2007-08-10 17:02:28 +0000718 // FIXME: set the stret attribute on the argument.
719 }
720
Nate Begemane2ce1d92008-01-17 17:46:27 +0000721 for (unsigned i = 0, e = NumArgs; i != e; ++i) {
722 QualType ArgTy = ArgExprs[i]->getType();
Eli Friedman472778e2008-02-09 08:50:58 +0000723
Chris Lattner660ac122007-08-26 22:55:13 +0000724 if (!hasAggregateLLVMType(ArgTy)) {
725 // Scalar argument is passed by-value.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000726 Args.push_back(EmitScalarExpr(ArgExprs[i]));
Chris Lattner9b2dc282008-04-04 16:54:41 +0000727 } else if (ArgTy->isAnyComplexType()) {
Chris Lattner660ac122007-08-26 22:55:13 +0000728 // Make a temporary alloca to pass the argument.
729 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000730 EmitComplexExprIntoAddr(ArgExprs[i], DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000731 Args.push_back(DestMem);
732 } else {
733 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000734 EmitAggExpr(ArgExprs[i], DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000735 Args.push_back(DestMem);
Reid Spencer5f016e22007-07-11 17:01:13 +0000736 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000737 }
738
Nate Begemanec9426c2008-03-09 03:09:36 +0000739 llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000740
741 // Note that there is parallel code in SetFunctionAttributes in CodeGenModule
742 llvm::SmallVector<llvm::ParamAttrsWithIndex, 8> ParamAttrList;
743 if (hasAggregateLLVMType(ResultType))
744 ParamAttrList.push_back(
745 llvm::ParamAttrsWithIndex::get(1, llvm::ParamAttr::StructRet));
746 unsigned increment = hasAggregateLLVMType(ResultType) ? 2 : 1;
747 for (unsigned i = 0; i < NumArgs; i++) {
748 QualType ParamType = ArgExprs[i]->getType();
749 unsigned ParamAttrs = 0;
750 if (ParamType->isRecordType())
751 ParamAttrs |= llvm::ParamAttr::ByVal;
752 if (ParamType->isSignedIntegerType() && ParamType->isPromotableIntegerType())
753 ParamAttrs |= llvm::ParamAttr::SExt;
754 if (ParamType->isUnsignedIntegerType() && ParamType->isPromotableIntegerType())
755 ParamAttrs |= llvm::ParamAttr::ZExt;
756 if (ParamAttrs)
757 ParamAttrList.push_back(llvm::ParamAttrsWithIndex::get(i + increment,
758 ParamAttrs));
759 }
760 CI->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
761 ParamAttrList.size()));
762
Nate Begemanec9426c2008-03-09 03:09:36 +0000763 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
764 CI->setCallingConv(F->getCallingConv());
765 if (CI->getType() != llvm::Type::VoidTy)
766 CI->setName("call");
Chris Lattner9b2dc282008-04-04 16:54:41 +0000767 else if (ResultType->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +0000768 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000769 else if (hasAggregateLLVMType(ResultType))
Chris Lattnercc666af2007-08-10 17:02:28 +0000770 // Struct return.
771 return RValue::getAggregate(Args[0]);
Chris Lattner2202bce2007-11-30 17:56:23 +0000772 else {
773 // void return.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000774 assert(ResultType->isVoidType() && "Should only have a void expr here");
Nate Begemanec9426c2008-03-09 03:09:36 +0000775 CI = 0;
Chris Lattner2202bce2007-11-30 17:56:23 +0000776 }
Chris Lattnercc666af2007-08-10 17:02:28 +0000777
Nate Begemanec9426c2008-03-09 03:09:36 +0000778 return RValue::get(CI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000779}