blob: a191610d1f54203f9c2a1780c97ed5ce296a17db [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000016#include "CGObjCRuntime.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000019#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21using namespace CodeGen;
22
23//===--------------------------------------------------------------------===//
24// Miscellaneous Helper Methods
25//===--------------------------------------------------------------------===//
26
27/// CreateTempAlloca - This creates a alloca and inserts it into the entry
28/// block.
29llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
30 const char *Name) {
31 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
32}
33
34/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
35/// expression and compare the result against zero, returning an Int1Ty value.
36llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000037 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000038 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000039 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000040
Chris Lattner9069fa22007-08-26 16:46:58 +000041 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000042}
43
Chris Lattner9b655512007-08-31 22:49:20 +000044/// EmitAnyExpr - Emit code to compute the specified expression which can have
45/// any type. The result is returned as an RValue struct. If this is an
46/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
47/// the result should be returned.
48RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
49 bool isAggLocVolatile) {
50 if (!hasAggregateLLVMType(E->getType()))
51 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000052 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000053 return RValue::getComplex(EmitComplexExpr(E));
54
55 EmitAggExpr(E, AggLoc, isAggLocVolatile);
56 return RValue::getAggregate(AggLoc);
57}
58
Dan Gohman4f8d1232008-05-22 00:50:06 +000059/// getAccessedFieldNo - Given an encoded value and a result number, return
60/// the input field number being accessed.
61unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
62 const llvm::Constant *Elts) {
63 if (isa<llvm::ConstantAggregateZero>(Elts))
64 return 0;
65
66 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
67}
68
Chris Lattner9b655512007-08-31 22:49:20 +000069
Reid Spencer5f016e22007-07-11 17:01:13 +000070//===----------------------------------------------------------------------===//
71// LValue Expression Emission
72//===----------------------------------------------------------------------===//
73
74/// EmitLValue - Emit code to compute a designator that specifies the location
75/// of the expression.
76///
77/// This can return one of two things: a simple address or a bitfield
78/// reference. In either case, the LLVM Value* in the LValue structure is
79/// guaranteed to be an LLVM pointer type.
80///
81/// If this returns a bitfield reference, nothing about the pointee type of
82/// the LLVM value is known: For example, it may not be a pointer to an
83/// integer.
84///
85/// If this returns a normal address, and if the lvalue's C type is fixed
86/// size, this method guarantees that the returned pointer type will point to
87/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
88/// variable length type, this is not possible.
89///
90LValue CodeGenFunction::EmitLValue(const Expr *E) {
91 switch (E->getStmtClass()) {
Chris Lattner7013c8c2007-08-26 05:06:40 +000092 default: {
Daniel Dunbar488e9932008-08-16 00:56:44 +000093 ErrorUnsupported(E, "l-value expression");
Christopher Lambddc23f32007-12-17 01:11:20 +000094 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Eli Friedman1e692ac2008-06-13 23:01:12 +000095 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
96 E->getType().getCVRQualifiers());
Chris Lattner7013c8c2007-08-26 05:06:40 +000097 }
Reid Spencer5f016e22007-07-11 17:01:13 +000098
Christopher Lamb22c940e2007-12-29 05:02:41 +000099 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000100 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
101 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000102 case Expr::PredefinedExprClass:
103 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 case Expr::StringLiteralClass:
105 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000106
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000107 case Expr::ObjCMessageExprClass:
108 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000109 case Expr::ObjCIvarRefExprClass:
110 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000111 case Expr::ObjCPropertyRefExprClass: {
112 // FIXME: Implement!
113 ErrorUnsupported(E, "l-value expression (Objective-C property reference)");
114 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
115 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
116 E->getType().getCVRQualifiers());
117 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000118
119 case Expr::UnaryOperatorClass:
120 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
121 case Expr::ArraySubscriptExprClass:
122 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000123 case Expr::ExtVectorElementExprClass:
124 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000125 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000126 case Expr::CompoundLiteralExprClass:
127 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000128 }
129}
130
131/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
132/// this method emits the address of the lvalue, then loads the result as an
133/// rvalue, returning the rvalue.
134RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000135 if (LV.isSimple()) {
136 llvm::Value *Ptr = LV.getAddress();
137 const llvm::Type *EltTy =
138 cast<llvm::PointerType>(Ptr->getType())->getElementType();
139
140 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000141 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000142 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000143
144 // Bool can have different representation in memory than in registers.
145 if (ExprType->isBooleanType()) {
146 if (V->getType() != llvm::Type::Int1Ty)
147 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
148 }
149
150 return RValue::get(V);
151 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000152
Chris Lattner883f6a72007-08-11 00:04:45 +0000153 assert(ExprType->isFunctionType() && "Unknown scalar value");
154 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 }
156
157 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000158 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
159 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000160 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
161 "vecext"));
162 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000163
164 // If this is a reference to a subset of the elements of a vector, either
165 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000166 if (LV.isExtVectorElt())
167 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000168
169 if (LV.isBitfield())
170 return EmitLoadOfBitfieldLValue(LV, ExprType);
171
172 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000173 //an invalid RValue, but the assert will
174 //ensure that this point is never reached
175 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000176}
177
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000178RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
179 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000180 unsigned StartBit = LV.getBitfieldStartBit();
181 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000182 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000183
184 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000185 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000186 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000187
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000188 // In some cases the bitfield may straddle two memory locations.
189 // Currently we load the entire bitfield, then do the magic to
190 // sign-extend it if necessary. This results in somewhat more code
191 // than necessary for the common case (one load), since two shifts
192 // accomplish both the masking and sign extension.
193 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
194 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
195
196 // Shift to proper location.
197 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
198 "bf.lo");
199
200 // Mask off unused bits.
201 llvm::Constant *LowMask =
202 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
203 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
204
205 // Fetch the high bits if necessary.
206 if (LowBits < BitfieldSize) {
207 unsigned HighBits = BitfieldSize - LowBits;
208 llvm::Value *HighPtr =
209 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
210 "bf.ptr.hi");
211 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
212 LV.isVolatileQualified(),
213 "tmp");
214
215 // Mask off unused bits.
216 llvm::Constant *HighMask =
217 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
218 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000219
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000220 // Shift to proper location and or in to bitfield value.
221 HighVal = Builder.CreateShl(HighVal,
222 llvm::ConstantInt::get(EltTy, LowBits));
223 Val = Builder.CreateOr(Val, HighVal, "bf.val");
224 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000225
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000226 // Sign extend if necessary.
227 if (LV.isBitfieldSigned()) {
228 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
229 EltTySize - BitfieldSize);
230 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
231 ExtraBits, "bf.val.sext");
232 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000233
234 // The bitfield type and the normal type differ when the storage sizes
235 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000236 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000237
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000238 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000239}
240
Chris Lattner34cdc862007-08-03 16:18:34 +0000241// If this is a reference to a subset of the elements of a vector, either
242// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000243RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
244 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000245 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
246 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000247
Nate Begeman8a997642008-05-09 06:41:27 +0000248 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000249
250 // If the result of the expression is a non-vector type, we must be
251 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000252 const VectorType *ExprVT = ExprType->getAsVectorType();
253 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000254 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000255 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
256 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
257 }
258
259 // If the source and destination have the same number of elements, use a
260 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000261 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000262 unsigned NumSourceElts =
263 cast<llvm::VectorType>(Vec->getType())->getNumElements();
264
265 if (NumResultElts == NumSourceElts) {
266 llvm::SmallVector<llvm::Constant*, 4> Mask;
267 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000268 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000269 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
270 }
271
272 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
273 Vec = Builder.CreateShuffleVector(Vec,
274 llvm::UndefValue::get(Vec->getType()),
275 MaskV, "tmp");
276 return RValue::get(Vec);
277 }
278
279 // Start out with an undef of the result type.
280 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
281
282 // Extract/Insert each element of the result.
283 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000284 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000285 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
286 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
287
288 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
289 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
290 }
291
292 return RValue::get(Result);
293}
294
295
Reid Spencer5f016e22007-07-11 17:01:13 +0000296
297/// EmitStoreThroughLValue - Store the specified rvalue into the specified
298/// lvalue, where both are guaranteed to the have the same type, and that type
299/// is 'Ty'.
300void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
301 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000302 if (!Dst.isSimple()) {
303 if (Dst.isVectorElt()) {
304 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000305 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
306 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000307 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000308 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000309 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000310 return;
311 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000312
Nate Begeman213541a2008-04-18 23:10:10 +0000313 // If this is an update of extended vector elements, insert them as
314 // appropriate.
315 if (Dst.isExtVectorElt())
316 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000317
318 if (Dst.isBitfield())
319 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
320
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000321 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000322 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000323
324 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000325 assert(Src.isScalar() && "Can't emit an agg store with this method");
326 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000327 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000328 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
329 const llvm::Type *AddrTy = DstPtr->getElementType();
330 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000331
Chris Lattner883f6a72007-08-11 00:04:45 +0000332 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000333 DstAddr = Builder.CreateBitCast(DstAddr,
334 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000335 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000336 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000337}
338
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000339void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
340 QualType Ty) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000341 unsigned StartBit = Dst.getBitfieldStartBit();
342 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000343 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000344
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000345 const llvm::Type *EltTy =
346 cast<llvm::PointerType>(Ptr->getType())->getElementType();
347 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
348
349 // Get the new value, cast to the appropriate type and masked to
350 // exactly the size of the bit-field.
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000351 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000352 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
353 llvm::Constant *Mask =
354 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
355 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000356
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000357 // In some cases the bitfield may straddle two memory locations.
358 // Emit the low part first and check to see if the high needs to be
359 // done.
360 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
361 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
362 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000363
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000364 // Compute the mask for zero-ing the low part of this bitfield.
365 llvm::Constant *InvMask =
366 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
367 StartBit + LowBits));
368
369 // Compute the new low part as
370 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
371 // with the shift of NewVal implicitly stripping the high bits.
372 llvm::Value *NewLowVal =
373 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
374 "bf.value.lo");
375 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
376 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
377
378 // Write back.
379 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000380
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000381 // If the low part doesn't cover the bitfield emit a high part.
382 if (LowBits < BitfieldSize) {
383 unsigned HighBits = BitfieldSize - LowBits;
384 llvm::Value *HighPtr =
385 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
386 "bf.ptr.hi");
387 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
388 Dst.isVolatileQualified(),
389 "bf.prev.hi");
390
391 // Compute the mask for zero-ing the high part of this bitfield.
392 llvm::Constant *InvMask =
393 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
394
395 // Compute the new high part as
396 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
397 // where the high bits of NewVal have already been cleared and the
398 // shift stripping the low bits.
399 llvm::Value *NewHighVal =
400 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
401 "bf.value.high");
402 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
403 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
404
405 // Write back.
406 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
407 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000408}
409
Nate Begeman213541a2008-04-18 23:10:10 +0000410void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
411 LValue Dst,
412 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000413 // This access turns into a read/modify/write of the vector. Load the input
414 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000415 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
416 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000417 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000418
Chris Lattner9b655512007-08-31 22:49:20 +0000419 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000420
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000421 if (const VectorType *VTy = Ty->getAsVectorType()) {
422 unsigned NumSrcElts = VTy->getNumElements();
423
424 // Extract/Insert each element.
425 for (unsigned i = 0; i != NumSrcElts; ++i) {
426 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
427 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
428
Dan Gohman4f8d1232008-05-22 00:50:06 +0000429 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000430 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
431 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
432 }
433 } else {
434 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000435 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000436 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
437 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000438 }
439
Eli Friedman1e692ac2008-06-13 23:01:12 +0000440 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000441}
442
Reid Spencer5f016e22007-07-11 17:01:13 +0000443
444LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000445 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
446
Chris Lattner41110242008-06-17 18:05:57 +0000447 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
448 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000449 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000450 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000451 E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000452 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000453 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000454 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000455 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000456 }
Steve Naroff248a7532008-04-15 22:42:06 +0000457 } else if (VD && VD->isFileVarDecl()) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000458 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000459 E->getType().getCVRQualifiers());
Steve Naroff248a7532008-04-15 22:42:06 +0000460 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000461 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000462 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000463 }
Chris Lattner41110242008-06-17 18:05:57 +0000464 else if (const ImplicitParamDecl *IPD =
465 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
466 llvm::Value *V = LocalDeclMap[IPD];
467 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
468 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
469 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000470 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000471 //an invalid LValue, but the assert will
472 //ensure that this point is never reached.
473 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000474}
475
476LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
477 // __extension__ doesn't affect lvalue-ness.
478 if (E->getOpcode() == UnaryOperator::Extension)
479 return EmitLValue(E->getSubExpr());
480
Chris Lattner96196622008-07-26 22:37:01 +0000481 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000482 switch (E->getOpcode()) {
483 default: assert(0 && "Unknown unary operator lvalue!");
484 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000485 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000486 ExprTy->getAsPointerType()->getPointeeType()
487 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000488 case UnaryOperator::Real:
489 case UnaryOperator::Imag:
490 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000491 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
492 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000493 Idx, "idx"),
494 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000495 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000496}
497
498LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000499 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000500}
501
Chris Lattnerd9f69102008-08-10 01:53:14 +0000502LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000503 std::string FunctionName;
504 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
505 FunctionName = FD->getName();
506 }
507 else {
508 assert(0 && "Attempting to load predefined constant for invalid decl type");
509 }
Anders Carlsson22742662007-07-21 05:21:51 +0000510 std::string GlobalVarName;
511
512 switch (E->getIdentType()) {
513 default:
514 assert(0 && "unknown pre-defined ident type");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000515 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000516 GlobalVarName = "__func__.";
517 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000518 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000519 GlobalVarName = "__FUNCTION__.";
520 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000521 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000522 // FIXME:: Demangle C++ method names
523 GlobalVarName = "__PRETTY_FUNCTION__.";
524 break;
525 }
526
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000527 GlobalVarName += FunctionName;
Anders Carlsson22742662007-07-21 05:21:51 +0000528
529 // FIXME: Can cache/reuse these within the module.
530 llvm::Constant *C=llvm::ConstantArray::get(FunctionName);
531
532 // Create a global variable for this.
533 C = new llvm::GlobalVariable(C->getType(), true,
534 llvm::GlobalValue::InternalLinkage,
535 C, GlobalVarName, CurFn->getParent());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000536 return LValue::MakeAddr(C,0);
Anders Carlsson22742662007-07-21 05:21:51 +0000537}
538
Reid Spencer5f016e22007-07-11 17:01:13 +0000539LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000540 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000541 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000542
543 // If the base is a vector type, then we are forming a vector element lvalue
544 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000545 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000546 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000547 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000548 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000549 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000550 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
551 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000552 }
553
Ted Kremenek23245122007-08-20 16:18:38 +0000554 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000555 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000556
Ted Kremenek23245122007-08-20 16:18:38 +0000557 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000558 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000559 bool IdxSigned = IdxTy->isSignedIntegerType();
560 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
561 if (IdxBitwidth != LLVMPointerWidth)
562 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
563 IdxSigned, "idxprom");
564
565 // We know that the pointer points to a type of the correct size, unless the
566 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000567 if (!E->getType()->isConstantSizeType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000568 assert(0 && "VLA idx not implemented");
Chris Lattner96196622008-07-26 22:37:01 +0000569 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000570
Eli Friedman1e692ac2008-06-13 23:01:12 +0000571 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000572 ExprTy->getAsPointerType()->getPointeeType()
573 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000574}
575
Nate Begeman3b8d1162008-05-13 21:03:02 +0000576static
577llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
578 llvm::SmallVector<llvm::Constant *, 4> CElts;
579
580 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
581 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
582
583 return llvm::ConstantVector::get(&CElts[0], CElts.size());
584}
585
Chris Lattner349aaec2007-08-02 23:37:31 +0000586LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000587EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000588 // Emit the base vector as an l-value.
589 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000590
Nate Begeman3b8d1162008-05-13 21:03:02 +0000591 // Encode the element access list into a vector of unsigned indices.
592 llvm::SmallVector<unsigned, 4> Indices;
593 E->getEncodedElementAccess(Indices);
594
595 if (Base.isSimple()) {
596 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000597 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
598 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000599 }
600 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
601
602 llvm::Constant *BaseElts = Base.getExtVectorElts();
603 llvm::SmallVector<llvm::Constant *, 4> CElts;
604
605 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
606 if (isa<llvm::ConstantAggregateZero>(BaseElts))
607 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
608 else
609 CElts.push_back(BaseElts->getOperand(Indices[i]));
610 }
611 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000612 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
613 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000614}
615
Devang Patelb9b00ad2007-10-23 20:28:39 +0000616LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000617 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000618 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000619 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000620 unsigned CVRQualifiers=0;
621
Chris Lattner12f65f62007-12-02 18:52:07 +0000622 // 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 +0000623 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000624 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000625 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000626 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000627 if (PTy->getPointeeType()->isUnionType())
628 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000629 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000630 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000631 else {
632 LValue BaseLV = EmitLValue(BaseExpr);
633 // FIXME: this isn't right for bitfields.
634 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000635 if (BaseExpr->getType()->isUnionType())
636 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000637 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000638 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000639
640 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000641 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000642}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000643
Eli Friedman472778e2008-02-09 08:50:58 +0000644LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
645 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000646 bool isUnion,
647 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000648{
649 llvm::Value *V;
650 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000651
Eli Friedman1e86b342008-05-29 11:33:25 +0000652 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000653 // FIXME: CodeGenTypes should expose a method to get the appropriate
654 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000655 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000656 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000657 cast<llvm::PointerType>(BaseValue->getType());
658 unsigned AS = BaseTy->getAddressSpace();
659 BaseValue = Builder.CreateBitCast(BaseValue,
660 llvm::PointerType::get(FieldTy, AS),
661 "tmp");
662 V = Builder.CreateGEP(BaseValue,
663 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
664 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000665
666 CodeGenTypes::BitFieldInfo bitFieldInfo =
667 CGM.getTypes().getBitFieldInfo(Field);
668 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000669 Field->getType()->isSignedIntegerType(),
670 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000671 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000672
Eli Friedman1e86b342008-05-29 11:33:25 +0000673 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
674
Devang Patelabad06c2007-10-26 19:42:18 +0000675 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000676 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000677 const llvm::Type *FieldTy =
678 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000679 const llvm::PointerType * BaseTy =
680 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000681 unsigned AS = BaseTy->getAddressSpace();
682 V = Builder.CreateBitCast(V,
683 llvm::PointerType::get(FieldTy, AS),
684 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000685 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000686
Eli Friedman1e692ac2008-06-13 23:01:12 +0000687 return LValue::MakeAddr(V,
688 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000689}
690
Eli Friedman1e692ac2008-06-13 23:01:12 +0000691LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
692{
Eli Friedman06e863f2008-05-13 23:18:27 +0000693 const llvm::Type *LTy = ConvertType(E->getType());
694 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
695
696 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000697 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000698
699 if (E->getType()->isComplexType()) {
700 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
701 } else if (hasAggregateLLVMType(E->getType())) {
702 EmitAnyExpr(InitExpr, DeclPtr, false);
703 } else {
704 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
705 }
706
707 return Result;
708}
709
Reid Spencer5f016e22007-07-11 17:01:13 +0000710//===--------------------------------------------------------------------===//
711// Expression Emission
712//===--------------------------------------------------------------------===//
713
Chris Lattner7016a702007-08-20 22:37:10 +0000714
Reid Spencer5f016e22007-07-11 17:01:13 +0000715RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000716 if (const ImplicitCastExpr *IcExpr =
717 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
718 if (const DeclRefExpr *DRExpr =
719 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
720 if (const FunctionDecl *FDecl =
721 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
722 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
723 return EmitBuiltinExpr(builtinID, E);
724
Chris Lattner7f02f722007-08-24 05:35:26 +0000725 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000726 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000727 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000728}
729
Ted Kremenek55499762008-06-17 02:43:46 +0000730RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
731 CallExpr::const_arg_iterator ArgBeg,
732 CallExpr::const_arg_iterator ArgEnd) {
733
Nate Begemane2ce1d92008-01-17 17:46:27 +0000734 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000735 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000736}
737
Christopher Lamb22c940e2007-12-29 05:02:41 +0000738LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
739 // Can only get l-value for call expression returning aggregate type
740 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000741 // FIXME: can this be volatile?
742 return LValue::MakeAddr(RV.getAggregateAddr(),
743 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000744}
745
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000746LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
747 // Can only get l-value for message expression returning aggregate type
748 RValue RV = EmitObjCMessageExpr(E);
749 // FIXME: can this be volatile?
750 return LValue::MakeAddr(RV.getAggregateAddr(),
751 E->getType().getCVRQualifiers());
752}
753
Chris Lattner391d77a2008-03-30 23:03:07 +0000754LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
755 // Objective-C objects are traditionally C structures with their layout
756 // defined at compile-time. In some implementations, their layout is not
757 // defined until run time in order to allow instance variables to be added to
758 // a class without recompiling all of the subclasses. If this is the case
759 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
760 // implement the lookup itself.
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000761 if (CGM.getObjCRuntime().LateBoundIVars()) {
Chris Lattner391d77a2008-03-30 23:03:07 +0000762 assert(0 && "FIXME: Implement support for late-bound instance variables");
763 return LValue(); // Not reached.
764 }
Chris Lattnerce5605e2008-03-30 23:25:33 +0000765
766 // Get a structure type for the object
767 QualType ExprTy = E->getBase()->getType();
768 const llvm::Type *ObjectType = ConvertType(ExprTy);
769 // TODO: Add a special case for isa (index 0)
770 // Work out which index the ivar is
771 const ObjCIvarDecl *Decl = E->getDecl();
772 unsigned Index = CGM.getTypes().getLLVMFieldNo(Decl);
Chris Lattner391d77a2008-03-30 23:03:07 +0000773
Chris Lattnerce5605e2008-03-30 23:25:33 +0000774 // Get object pointer and coerce object pointer to correct type.
775 llvm::Value *Object = EmitLValue(E->getBase()).getAddress();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000776 // FIXME: Volatility
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000777 Object = Builder.CreateLoad(Object, E->getDecl()->getName());
Chris Lattnerce5605e2008-03-30 23:25:33 +0000778 if (Object->getType() != ObjectType)
779 Object = Builder.CreateBitCast(Object, ObjectType);
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000780
Chris Lattnerce5605e2008-03-30 23:25:33 +0000781
782 // Return a pointer to the right element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000783 // FIXME: volatile
Chris Lattnerce5605e2008-03-30 23:25:33 +0000784 return LValue::MakeAddr(Builder.CreateStructGEP(Object, Index,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000785 Decl->getName()),0);
Chris Lattner391d77a2008-03-30 23:03:07 +0000786}
787
Nate Begemane2ce1d92008-01-17 17:46:27 +0000788RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek55499762008-06-17 02:43:46 +0000789 CallExpr::const_arg_iterator ArgBeg,
790 CallExpr::const_arg_iterator ArgEnd) {
791
Reid Spencer5f016e22007-07-11 17:01:13 +0000792 // The callee type will always be a pointer to function type, get the function
793 // type.
Chris Lattner96196622008-07-26 22:37:01 +0000794 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner05d2fb42008-07-31 04:58:58 +0000795 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000796 return EmitCallExprExt(Callee, ResultType, ArgBeg, ArgEnd, 0, 0);
797}
Eli Friedman5193b8a2008-01-30 01:32:06 +0000798
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000799RValue CodeGenFunction::EmitCallExprExt(llvm::Value *Callee,
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000800 QualType ResultType,
801 CallExpr::const_arg_iterator ArgBeg,
802 CallExpr::const_arg_iterator ArgEnd,
803 llvm::Value **ExtraArgs,
804 unsigned NumExtraArgs) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000805 llvm::SmallVector<llvm::Value*, 16> Args;
806
Chris Lattnercc666af2007-08-10 17:02:28 +0000807 // Handle struct-return functions by passing a pointer to the location that
808 // we would like to return into.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000809 if (hasAggregateLLVMType(ResultType)) {
Chris Lattnercc666af2007-08-10 17:02:28 +0000810 // Create a temporary alloca to hold the result of the call. :(
Nate Begemane2ce1d92008-01-17 17:46:27 +0000811 Args.push_back(CreateTempAlloca(ConvertType(ResultType)));
Chris Lattnercc666af2007-08-10 17:02:28 +0000812 // FIXME: set the stret attribute on the argument.
813 }
814
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000815 Args.insert(Args.end(), ExtraArgs, ExtraArgs + NumExtraArgs);
816
Ted Kremenek55499762008-06-17 02:43:46 +0000817 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I) {
818 QualType ArgTy = I->getType();
Eli Friedman472778e2008-02-09 08:50:58 +0000819
Chris Lattner660ac122007-08-26 22:55:13 +0000820 if (!hasAggregateLLVMType(ArgTy)) {
821 // Scalar argument is passed by-value.
Ted Kremenek55499762008-06-17 02:43:46 +0000822 Args.push_back(EmitScalarExpr(*I));
Chris Lattner9b2dc282008-04-04 16:54:41 +0000823 } else if (ArgTy->isAnyComplexType()) {
Chris Lattner660ac122007-08-26 22:55:13 +0000824 // Make a temporary alloca to pass the argument.
825 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Ted Kremenek55499762008-06-17 02:43:46 +0000826 EmitComplexExprIntoAddr(*I, DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000827 Args.push_back(DestMem);
828 } else {
829 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Ted Kremenek55499762008-06-17 02:43:46 +0000830 EmitAggExpr(*I, DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000831 Args.push_back(DestMem);
Reid Spencer5f016e22007-07-11 17:01:13 +0000832 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000833 }
834
Nate Begemanec9426c2008-03-09 03:09:36 +0000835 llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000836
837 // Note that there is parallel code in SetFunctionAttributes in CodeGenModule
838 llvm::SmallVector<llvm::ParamAttrsWithIndex, 8> ParamAttrList;
839 if (hasAggregateLLVMType(ResultType))
840 ParamAttrList.push_back(
841 llvm::ParamAttrsWithIndex::get(1, llvm::ParamAttr::StructRet));
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000842 unsigned increment = NumExtraArgs + (hasAggregateLLVMType(ResultType) ? 2 : 1);
Ted Kremenek55499762008-06-17 02:43:46 +0000843
844 unsigned i = 0;
845 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I, ++i) {
846 QualType ParamType = I->getType();
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000847 unsigned ParamAttrs = 0;
848 if (ParamType->isRecordType())
849 ParamAttrs |= llvm::ParamAttr::ByVal;
850 if (ParamType->isSignedIntegerType() && ParamType->isPromotableIntegerType())
851 ParamAttrs |= llvm::ParamAttr::SExt;
852 if (ParamType->isUnsignedIntegerType() && ParamType->isPromotableIntegerType())
853 ParamAttrs |= llvm::ParamAttr::ZExt;
854 if (ParamAttrs)
855 ParamAttrList.push_back(llvm::ParamAttrsWithIndex::get(i + increment,
856 ParamAttrs));
857 }
858 CI->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
859 ParamAttrList.size()));
860
Nate Begemanec9426c2008-03-09 03:09:36 +0000861 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
862 CI->setCallingConv(F->getCallingConv());
863 if (CI->getType() != llvm::Type::VoidTy)
864 CI->setName("call");
Chris Lattner9b2dc282008-04-04 16:54:41 +0000865 else if (ResultType->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +0000866 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000867 else if (hasAggregateLLVMType(ResultType))
Chris Lattnercc666af2007-08-10 17:02:28 +0000868 // Struct return.
869 return RValue::getAggregate(Args[0]);
Chris Lattner2202bce2007-11-30 17:56:23 +0000870 else {
871 // void return.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000872 assert(ResultType->isVoidType() && "Should only have a void expr here");
Nate Begemanec9426c2008-03-09 03:09:36 +0000873 CI = 0;
Chris Lattner2202bce2007-11-30 17:56:23 +0000874 }
Chris Lattnercc666af2007-08-10 17:02:28 +0000875
Nate Begemanec9426c2008-03-09 03:09:36 +0000876 return RValue::get(CI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000877}