blob: 0b4bf23a49741cab981980d15f432d5f32206a34 [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
Daniel Dunbar6ba82a42008-08-25 20:45:57 +000074LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
75 const char *Name) {
76 ErrorUnsupported(E, Name);
77 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
78 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
79 E->getType().getCVRQualifiers());
80}
81
Reid Spencer5f016e22007-07-11 17:01:13 +000082/// EmitLValue - Emit code to compute a designator that specifies the location
83/// of the expression.
84///
85/// This can return one of two things: a simple address or a bitfield
86/// reference. In either case, the LLVM Value* in the LValue structure is
87/// guaranteed to be an LLVM pointer type.
88///
89/// If this returns a bitfield reference, nothing about the pointee type of
90/// the LLVM value is known: For example, it may not be a pointer to an
91/// integer.
92///
93/// If this returns a normal address, and if the lvalue's C type is fixed
94/// size, this method guarantees that the returned pointer type will point to
95/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
96/// variable length type, this is not possible.
97///
98LValue CodeGenFunction::EmitLValue(const Expr *E) {
99 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000100 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000101
Christopher Lamb22c940e2007-12-29 05:02:41 +0000102 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000103 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
104 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000105 case Expr::PredefinedExprClass:
106 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 case Expr::StringLiteralClass:
108 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000109
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000110 case Expr::ObjCMessageExprClass:
111 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000112 case Expr::ObjCIvarRefExprClass:
113 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000114 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000115 // FIXME: Implement!
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000116 return EmitUnsupportedLValue(E,
117 "l-value expression (Objective-C property)");
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();
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000506 } else if (isa<ObjCMethodDecl>(CurFuncDecl)) {
507 // Just get the mangled name.
508 FunctionName = CurFn->getName();
509 } else {
510 return EmitUnsupportedLValue(E, "predefined expression");
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000511 }
Anders Carlsson22742662007-07-21 05:21:51 +0000512 std::string GlobalVarName;
513
514 switch (E->getIdentType()) {
515 default:
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000516 return EmitUnsupportedLValue(E, "predefined expression");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000517 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000518 GlobalVarName = "__func__.";
519 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000520 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000521 GlobalVarName = "__FUNCTION__.";
522 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000523 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000524 // FIXME:: Demangle C++ method names
525 GlobalVarName = "__PRETTY_FUNCTION__.";
526 break;
527 }
528
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000529 GlobalVarName += FunctionName;
Anders Carlsson22742662007-07-21 05:21:51 +0000530
531 // FIXME: Can cache/reuse these within the module.
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000532 llvm::Constant *C = llvm::ConstantArray::get(FunctionName);
Anders Carlsson22742662007-07-21 05:21:51 +0000533
534 // Create a global variable for this.
535 C = new llvm::GlobalVariable(C->getType(), true,
536 llvm::GlobalValue::InternalLinkage,
537 C, GlobalVarName, CurFn->getParent());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000538 return LValue::MakeAddr(C,0);
Anders Carlsson22742662007-07-21 05:21:51 +0000539}
540
Reid Spencer5f016e22007-07-11 17:01:13 +0000541LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000542 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000543 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000544
545 // If the base is a vector type, then we are forming a vector element lvalue
546 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000547 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000548 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000549 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000550 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000551 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000552 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
553 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000554 }
555
Ted Kremenek23245122007-08-20 16:18:38 +0000556 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000557 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000558
Ted Kremenek23245122007-08-20 16:18:38 +0000559 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000560 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000561 bool IdxSigned = IdxTy->isSignedIntegerType();
562 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
563 if (IdxBitwidth != LLVMPointerWidth)
564 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
565 IdxSigned, "idxprom");
566
567 // We know that the pointer points to a type of the correct size, unless the
568 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000569 if (!E->getType()->isConstantSizeType())
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000570 return EmitUnsupportedLValue(E, "VLA index");
Chris Lattner96196622008-07-26 22:37:01 +0000571 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000572
Eli Friedman1e692ac2008-06-13 23:01:12 +0000573 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000574 ExprTy->getAsPointerType()->getPointeeType()
575 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000576}
577
Nate Begeman3b8d1162008-05-13 21:03:02 +0000578static
579llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
580 llvm::SmallVector<llvm::Constant *, 4> CElts;
581
582 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
583 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
584
585 return llvm::ConstantVector::get(&CElts[0], CElts.size());
586}
587
Chris Lattner349aaec2007-08-02 23:37:31 +0000588LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000589EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000590 // Emit the base vector as an l-value.
591 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000592
Nate Begeman3b8d1162008-05-13 21:03:02 +0000593 // Encode the element access list into a vector of unsigned indices.
594 llvm::SmallVector<unsigned, 4> Indices;
595 E->getEncodedElementAccess(Indices);
596
597 if (Base.isSimple()) {
598 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000599 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
600 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000601 }
602 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
603
604 llvm::Constant *BaseElts = Base.getExtVectorElts();
605 llvm::SmallVector<llvm::Constant *, 4> CElts;
606
607 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
608 if (isa<llvm::ConstantAggregateZero>(BaseElts))
609 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
610 else
611 CElts.push_back(BaseElts->getOperand(Indices[i]));
612 }
613 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000614 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
615 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000616}
617
Devang Patelb9b00ad2007-10-23 20:28:39 +0000618LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000619 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000620 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000621 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000622 unsigned CVRQualifiers=0;
623
Chris Lattner12f65f62007-12-02 18:52:07 +0000624 // 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 +0000625 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000626 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000627 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000628 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000629 if (PTy->getPointeeType()->isUnionType())
630 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000631 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000632 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000633 else {
634 LValue BaseLV = EmitLValue(BaseExpr);
635 // FIXME: this isn't right for bitfields.
636 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000637 if (BaseExpr->getType()->isUnionType())
638 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000639 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000640 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000641
642 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000643 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000644}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000645
Eli Friedman472778e2008-02-09 08:50:58 +0000646LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
647 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000648 bool isUnion,
649 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000650{
651 llvm::Value *V;
652 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000653
Eli Friedman1e86b342008-05-29 11:33:25 +0000654 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000655 // FIXME: CodeGenTypes should expose a method to get the appropriate
656 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000657 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000658 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000659 cast<llvm::PointerType>(BaseValue->getType());
660 unsigned AS = BaseTy->getAddressSpace();
661 BaseValue = Builder.CreateBitCast(BaseValue,
662 llvm::PointerType::get(FieldTy, AS),
663 "tmp");
664 V = Builder.CreateGEP(BaseValue,
665 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
666 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000667
668 CodeGenTypes::BitFieldInfo bitFieldInfo =
669 CGM.getTypes().getBitFieldInfo(Field);
670 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000671 Field->getType()->isSignedIntegerType(),
672 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000673 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000674
Eli Friedman1e86b342008-05-29 11:33:25 +0000675 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
676
Devang Patelabad06c2007-10-26 19:42:18 +0000677 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000678 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000679 const llvm::Type *FieldTy =
680 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000681 const llvm::PointerType * BaseTy =
682 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000683 unsigned AS = BaseTy->getAddressSpace();
684 V = Builder.CreateBitCast(V,
685 llvm::PointerType::get(FieldTy, AS),
686 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000687 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000688
Eli Friedman1e692ac2008-06-13 23:01:12 +0000689 return LValue::MakeAddr(V,
690 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000691}
692
Eli Friedman1e692ac2008-06-13 23:01:12 +0000693LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
694{
Eli Friedman06e863f2008-05-13 23:18:27 +0000695 const llvm::Type *LTy = ConvertType(E->getType());
696 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
697
698 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000699 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000700
701 if (E->getType()->isComplexType()) {
702 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
703 } else if (hasAggregateLLVMType(E->getType())) {
704 EmitAnyExpr(InitExpr, DeclPtr, false);
705 } else {
706 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
707 }
708
709 return Result;
710}
711
Reid Spencer5f016e22007-07-11 17:01:13 +0000712//===--------------------------------------------------------------------===//
713// Expression Emission
714//===--------------------------------------------------------------------===//
715
Chris Lattner7016a702007-08-20 22:37:10 +0000716
Reid Spencer5f016e22007-07-11 17:01:13 +0000717RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000718 if (const ImplicitCastExpr *IcExpr =
719 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
720 if (const DeclRefExpr *DRExpr =
721 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
722 if (const FunctionDecl *FDecl =
723 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
724 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
725 return EmitBuiltinExpr(builtinID, E);
726
Chris Lattner7f02f722007-08-24 05:35:26 +0000727 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000728 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000729 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000730}
731
Ted Kremenek55499762008-06-17 02:43:46 +0000732RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
733 CallExpr::const_arg_iterator ArgBeg,
734 CallExpr::const_arg_iterator ArgEnd) {
735
Nate Begemane2ce1d92008-01-17 17:46:27 +0000736 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000737 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000738}
739
Christopher Lamb22c940e2007-12-29 05:02:41 +0000740LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
741 // Can only get l-value for call expression returning aggregate type
742 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000743 // FIXME: can this be volatile?
744 return LValue::MakeAddr(RV.getAggregateAddr(),
745 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000746}
747
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000748LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
749 // Can only get l-value for message expression returning aggregate type
750 RValue RV = EmitObjCMessageExpr(E);
751 // FIXME: can this be volatile?
752 return LValue::MakeAddr(RV.getAggregateAddr(),
753 E->getType().getCVRQualifiers());
754}
755
Chris Lattner391d77a2008-03-30 23:03:07 +0000756LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
757 // Objective-C objects are traditionally C structures with their layout
758 // defined at compile-time. In some implementations, their layout is not
759 // defined until run time in order to allow instance variables to be added to
760 // a class without recompiling all of the subclasses. If this is the case
761 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
762 // implement the lookup itself.
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000763 if (CGM.getObjCRuntime().LateBoundIVars()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000764 return EmitUnsupportedLValue(E, "late-bound instance variables");
Chris Lattner391d77a2008-03-30 23:03:07 +0000765 }
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000766
Anders Carlsson29b7e502008-08-25 01:53:23 +0000767 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
768 llvm::Value *BaseValue = 0;
769 const Expr *BaseExpr = E->getBase();
770 unsigned CVRQualifiers = 0;
771 if (E->isArrow()) {
772 BaseValue = EmitScalarExpr(BaseExpr);
773 const PointerType *PTy =
774 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
775 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
776 } else {
777 LValue BaseLV = EmitLValue(BaseExpr);
778 // FIXME: this isn't right for bitfields.
779 BaseValue = BaseLV.getAddress();
780 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
781 }
Chris Lattnerce5605e2008-03-30 23:25:33 +0000782
Anders Carlsson29b7e502008-08-25 01:53:23 +0000783 const ObjCIvarDecl *Field = E->getDecl();
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000784 if (Field->isBitField())
785 return EmitUnsupportedLValue(E, "ivar bitfields");
Anders Carlsson29b7e502008-08-25 01:53:23 +0000786
787 // TODO: Add a special case for isa (index 0)
788 unsigned Index = CGM.getTypes().getLLVMFieldNo(Field);
789
790 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
791 return LValue::MakeAddr(V,
792 Field->getType().getCVRQualifiers()|CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +0000793}
794
Nate Begemane2ce1d92008-01-17 17:46:27 +0000795RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek55499762008-06-17 02:43:46 +0000796 CallExpr::const_arg_iterator ArgBeg,
797 CallExpr::const_arg_iterator ArgEnd) {
798
Reid Spencer5f016e22007-07-11 17:01:13 +0000799 // The callee type will always be a pointer to function type, get the function
800 // type.
Chris Lattner96196622008-07-26 22:37:01 +0000801 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner05d2fb42008-07-31 04:58:58 +0000802 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000803 return EmitCallExprExt(Callee, ResultType, ArgBeg, ArgEnd, 0, 0);
804}
Eli Friedman5193b8a2008-01-30 01:32:06 +0000805
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000806RValue CodeGenFunction::EmitCallExprExt(llvm::Value *Callee,
Daniel Dunbar14c80b72008-08-23 09:25:55 +0000807 QualType ResultType,
808 CallExpr::const_arg_iterator ArgBeg,
809 CallExpr::const_arg_iterator ArgEnd,
810 llvm::Value **ExtraArgs,
811 unsigned NumExtraArgs) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000812 llvm::SmallVector<llvm::Value*, 16> Args;
813
Chris Lattnercc666af2007-08-10 17:02:28 +0000814 // Handle struct-return functions by passing a pointer to the location that
815 // we would like to return into.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000816 if (hasAggregateLLVMType(ResultType)) {
Chris Lattnercc666af2007-08-10 17:02:28 +0000817 // Create a temporary alloca to hold the result of the call. :(
Nate Begemane2ce1d92008-01-17 17:46:27 +0000818 Args.push_back(CreateTempAlloca(ConvertType(ResultType)));
Chris Lattnercc666af2007-08-10 17:02:28 +0000819 // FIXME: set the stret attribute on the argument.
820 }
821
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000822 Args.insert(Args.end(), ExtraArgs, ExtraArgs + NumExtraArgs);
823
Ted Kremenek55499762008-06-17 02:43:46 +0000824 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I) {
825 QualType ArgTy = I->getType();
Eli Friedman472778e2008-02-09 08:50:58 +0000826
Chris Lattner660ac122007-08-26 22:55:13 +0000827 if (!hasAggregateLLVMType(ArgTy)) {
828 // Scalar argument is passed by-value.
Ted Kremenek55499762008-06-17 02:43:46 +0000829 Args.push_back(EmitScalarExpr(*I));
Chris Lattner9b2dc282008-04-04 16:54:41 +0000830 } else if (ArgTy->isAnyComplexType()) {
Chris Lattner660ac122007-08-26 22:55:13 +0000831 // Make a temporary alloca to pass the argument.
832 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Ted Kremenek55499762008-06-17 02:43:46 +0000833 EmitComplexExprIntoAddr(*I, DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000834 Args.push_back(DestMem);
835 } else {
836 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Ted Kremenek55499762008-06-17 02:43:46 +0000837 EmitAggExpr(*I, DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000838 Args.push_back(DestMem);
Reid Spencer5f016e22007-07-11 17:01:13 +0000839 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000840 }
841
Nate Begemanec9426c2008-03-09 03:09:36 +0000842 llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000843
844 // Note that there is parallel code in SetFunctionAttributes in CodeGenModule
845 llvm::SmallVector<llvm::ParamAttrsWithIndex, 8> ParamAttrList;
846 if (hasAggregateLLVMType(ResultType))
847 ParamAttrList.push_back(
848 llvm::ParamAttrsWithIndex::get(1, llvm::ParamAttr::StructRet));
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000849 unsigned increment = NumExtraArgs + (hasAggregateLLVMType(ResultType) ? 2 : 1);
Ted Kremenek55499762008-06-17 02:43:46 +0000850
851 unsigned i = 0;
852 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I, ++i) {
853 QualType ParamType = I->getType();
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000854 unsigned ParamAttrs = 0;
855 if (ParamType->isRecordType())
856 ParamAttrs |= llvm::ParamAttr::ByVal;
857 if (ParamType->isSignedIntegerType() && ParamType->isPromotableIntegerType())
858 ParamAttrs |= llvm::ParamAttr::SExt;
859 if (ParamType->isUnsignedIntegerType() && ParamType->isPromotableIntegerType())
860 ParamAttrs |= llvm::ParamAttr::ZExt;
861 if (ParamAttrs)
862 ParamAttrList.push_back(llvm::ParamAttrsWithIndex::get(i + increment,
863 ParamAttrs));
864 }
865 CI->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
866 ParamAttrList.size()));
867
Nate Begemanec9426c2008-03-09 03:09:36 +0000868 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
869 CI->setCallingConv(F->getCallingConv());
870 if (CI->getType() != llvm::Type::VoidTy)
871 CI->setName("call");
Chris Lattner9b2dc282008-04-04 16:54:41 +0000872 else if (ResultType->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +0000873 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000874 else if (hasAggregateLLVMType(ResultType))
Chris Lattnercc666af2007-08-10 17:02:28 +0000875 // Struct return.
876 return RValue::getAggregate(Args[0]);
Chris Lattner2202bce2007-11-30 17:56:23 +0000877 else {
878 // void return.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000879 assert(ResultType->isVoidType() && "Should only have a void expr here");
Nate Begemanec9426c2008-03-09 03:09:36 +0000880 CI = 0;
Chris Lattner2202bce2007-11-30 17:56:23 +0000881 }
Chris Lattnercc666af2007-08-10 17:02:28 +0000882
Nate Begemanec9426c2008-03-09 03:09:36 +0000883 return RValue::get(CI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000884}