blob: 6bfd5cb30999568eabf813f5a6f92d9f8eaec87b [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: {
Chris Lattnerce5605e2008-03-30 23:25:33 +000093 printf("Statement class: %d\n", E->getStmtClass());
Chris Lattnerdc4d2802007-12-02 01:49:16 +000094 WarnUnsupported(E, "l-value expression");
Christopher Lambddc23f32007-12-17 01:11:20 +000095 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Eli Friedman1e692ac2008-06-13 23:01:12 +000096 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
97 E->getType().getCVRQualifiers());
Chris Lattner7013c8c2007-08-26 05:06:40 +000098 }
Reid Spencer5f016e22007-07-11 17:01:13 +000099
Christopher Lamb22c940e2007-12-29 05:02:41 +0000100 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000101 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
102 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000103 case Expr::PredefinedExprClass:
104 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 case Expr::StringLiteralClass:
106 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000107
108 case Expr::ObjCIvarRefExprClass:
109 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000110
111 case Expr::UnaryOperatorClass:
112 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
113 case Expr::ArraySubscriptExprClass:
114 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000115 case Expr::ExtVectorElementExprClass:
116 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000117 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000118 case Expr::CompoundLiteralExprClass:
119 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000120 }
121}
122
123/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
124/// this method emits the address of the lvalue, then loads the result as an
125/// rvalue, returning the rvalue.
126RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000127 if (LV.isSimple()) {
128 llvm::Value *Ptr = LV.getAddress();
129 const llvm::Type *EltTy =
130 cast<llvm::PointerType>(Ptr->getType())->getElementType();
131
132 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000133 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000134 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000135
136 // Bool can have different representation in memory than in registers.
137 if (ExprType->isBooleanType()) {
138 if (V->getType() != llvm::Type::Int1Ty)
139 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
140 }
141
142 return RValue::get(V);
143 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000144
Chris Lattner883f6a72007-08-11 00:04:45 +0000145 assert(ExprType->isFunctionType() && "Unknown scalar value");
146 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 }
148
149 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000150 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
151 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000152 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
153 "vecext"));
154 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000155
156 // If this is a reference to a subset of the elements of a vector, either
157 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000158 if (LV.isExtVectorElt())
159 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000160
161 if (LV.isBitfield())
162 return EmitLoadOfBitfieldLValue(LV, ExprType);
163
164 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000165 //an invalid RValue, but the assert will
166 //ensure that this point is never reached
167 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000168}
169
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000170RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
171 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000172 unsigned StartBit = LV.getBitfieldStartBit();
173 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000174 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000175
176 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000177 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000178 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000179
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000180 // In some cases the bitfield may straddle two memory locations.
181 // Currently we load the entire bitfield, then do the magic to
182 // sign-extend it if necessary. This results in somewhat more code
183 // than necessary for the common case (one load), since two shifts
184 // accomplish both the masking and sign extension.
185 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
186 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
187
188 // Shift to proper location.
189 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
190 "bf.lo");
191
192 // Mask off unused bits.
193 llvm::Constant *LowMask =
194 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
195 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
196
197 // Fetch the high bits if necessary.
198 if (LowBits < BitfieldSize) {
199 unsigned HighBits = BitfieldSize - LowBits;
200 llvm::Value *HighPtr =
201 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
202 "bf.ptr.hi");
203 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
204 LV.isVolatileQualified(),
205 "tmp");
206
207 // Mask off unused bits.
208 llvm::Constant *HighMask =
209 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
210 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000211
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000212 // Shift to proper location and or in to bitfield value.
213 HighVal = Builder.CreateShl(HighVal,
214 llvm::ConstantInt::get(EltTy, LowBits));
215 Val = Builder.CreateOr(Val, HighVal, "bf.val");
216 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000217
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000218 // Sign extend if necessary.
219 if (LV.isBitfieldSigned()) {
220 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
221 EltTySize - BitfieldSize);
222 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
223 ExtraBits, "bf.val.sext");
224 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000225
226 // The bitfield type and the normal type differ when the storage sizes
227 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000228 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000229
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000230 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000231}
232
Chris Lattner34cdc862007-08-03 16:18:34 +0000233// If this is a reference to a subset of the elements of a vector, either
234// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000235RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
236 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000237 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
238 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000239
Nate Begeman8a997642008-05-09 06:41:27 +0000240 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000241
242 // If the result of the expression is a non-vector type, we must be
243 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000244 const VectorType *ExprVT = ExprType->getAsVectorType();
245 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000246 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000247 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
248 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
249 }
250
251 // If the source and destination have the same number of elements, use a
252 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000253 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000254 unsigned NumSourceElts =
255 cast<llvm::VectorType>(Vec->getType())->getNumElements();
256
257 if (NumResultElts == NumSourceElts) {
258 llvm::SmallVector<llvm::Constant*, 4> Mask;
259 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000260 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000261 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
262 }
263
264 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
265 Vec = Builder.CreateShuffleVector(Vec,
266 llvm::UndefValue::get(Vec->getType()),
267 MaskV, "tmp");
268 return RValue::get(Vec);
269 }
270
271 // Start out with an undef of the result type.
272 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
273
274 // Extract/Insert each element of the result.
275 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000276 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000277 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
278 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
279
280 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
281 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
282 }
283
284 return RValue::get(Result);
285}
286
287
Reid Spencer5f016e22007-07-11 17:01:13 +0000288
289/// EmitStoreThroughLValue - Store the specified rvalue into the specified
290/// lvalue, where both are guaranteed to the have the same type, and that type
291/// is 'Ty'.
292void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
293 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000294 if (!Dst.isSimple()) {
295 if (Dst.isVectorElt()) {
296 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000297 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
298 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000299 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000300 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000301 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000302 return;
303 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000304
Nate Begeman213541a2008-04-18 23:10:10 +0000305 // If this is an update of extended vector elements, insert them as
306 // appropriate.
307 if (Dst.isExtVectorElt())
308 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000309
310 if (Dst.isBitfield())
311 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
312
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000313 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000314 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000315
316 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000317 assert(Src.isScalar() && "Can't emit an agg store with this method");
318 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000319 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000320 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
321 const llvm::Type *AddrTy = DstPtr->getElementType();
322 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000323
Chris Lattner883f6a72007-08-11 00:04:45 +0000324 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000325 DstAddr = Builder.CreateBitCast(DstAddr,
326 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000327 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000328 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000329}
330
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000331void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
332 QualType Ty) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000333 unsigned StartBit = Dst.getBitfieldStartBit();
334 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000335 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000336
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000337 const llvm::Type *EltTy =
338 cast<llvm::PointerType>(Ptr->getType())->getElementType();
339 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
340
341 // Get the new value, cast to the appropriate type and masked to
342 // exactly the size of the bit-field.
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000343 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000344 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
345 llvm::Constant *Mask =
346 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
347 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000348
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000349 // In some cases the bitfield may straddle two memory locations.
350 // Emit the low part first and check to see if the high needs to be
351 // done.
352 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
353 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
354 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000355
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000356 // Compute the mask for zero-ing the low part of this bitfield.
357 llvm::Constant *InvMask =
358 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
359 StartBit + LowBits));
360
361 // Compute the new low part as
362 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
363 // with the shift of NewVal implicitly stripping the high bits.
364 llvm::Value *NewLowVal =
365 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
366 "bf.value.lo");
367 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
368 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
369
370 // Write back.
371 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000372
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000373 // If the low part doesn't cover the bitfield emit a high part.
374 if (LowBits < BitfieldSize) {
375 unsigned HighBits = BitfieldSize - LowBits;
376 llvm::Value *HighPtr =
377 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
378 "bf.ptr.hi");
379 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
380 Dst.isVolatileQualified(),
381 "bf.prev.hi");
382
383 // Compute the mask for zero-ing the high part of this bitfield.
384 llvm::Constant *InvMask =
385 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
386
387 // Compute the new high part as
388 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
389 // where the high bits of NewVal have already been cleared and the
390 // shift stripping the low bits.
391 llvm::Value *NewHighVal =
392 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
393 "bf.value.high");
394 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
395 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
396
397 // Write back.
398 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
399 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000400}
401
Nate Begeman213541a2008-04-18 23:10:10 +0000402void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
403 LValue Dst,
404 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000405 // This access turns into a read/modify/write of the vector. Load the input
406 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000407 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
408 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000409 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000410
Chris Lattner9b655512007-08-31 22:49:20 +0000411 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000412
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000413 if (const VectorType *VTy = Ty->getAsVectorType()) {
414 unsigned NumSrcElts = VTy->getNumElements();
415
416 // Extract/Insert each element.
417 for (unsigned i = 0; i != NumSrcElts; ++i) {
418 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
419 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
420
Dan Gohman4f8d1232008-05-22 00:50:06 +0000421 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000422 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
423 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
424 }
425 } else {
426 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000427 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000428 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
429 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000430 }
431
Eli Friedman1e692ac2008-06-13 23:01:12 +0000432 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000433}
434
Reid Spencer5f016e22007-07-11 17:01:13 +0000435
436LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000437 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
438
Chris Lattner41110242008-06-17 18:05:57 +0000439 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
440 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000441 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000442 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000443 E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000444 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000445 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000446 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000447 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000448 }
Steve Naroff248a7532008-04-15 22:42:06 +0000449 } else if (VD && VD->isFileVarDecl()) {
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());
Steve Naroff248a7532008-04-15 22:42:06 +0000452 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000453 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000454 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000455 }
Chris Lattner41110242008-06-17 18:05:57 +0000456 else if (const ImplicitParamDecl *IPD =
457 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
458 llvm::Value *V = LocalDeclMap[IPD];
459 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
460 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
461 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000462 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000463 //an invalid LValue, but the assert will
464 //ensure that this point is never reached.
465 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000466}
467
468LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
469 // __extension__ doesn't affect lvalue-ness.
470 if (E->getOpcode() == UnaryOperator::Extension)
471 return EmitLValue(E->getSubExpr());
472
Chris Lattner96196622008-07-26 22:37:01 +0000473 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000474 switch (E->getOpcode()) {
475 default: assert(0 && "Unknown unary operator lvalue!");
476 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000477 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000478 ExprTy->getAsPointerType()->getPointeeType()
479 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000480 case UnaryOperator::Real:
481 case UnaryOperator::Imag:
482 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000483 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
484 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000485 Idx, "idx"),
486 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000487 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000488}
489
490LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar1e049762008-08-10 20:25:57 +0000491 llvm::Constant *C =
492 CGM.GetAddrOfConstantString(CGM.getStringForStringLiteral(E));
Eli Friedman922696f2008-05-19 17:51:16 +0000493
Daniel Dunbar1e049762008-08-10 20:25:57 +0000494 return LValue::MakeAddr(C,0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000495}
496
Chris Lattnerd9f69102008-08-10 01:53:14 +0000497LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000498 std::string FunctionName;
499 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
500 FunctionName = FD->getName();
501 }
502 else {
503 assert(0 && "Attempting to load predefined constant for invalid decl type");
504 }
Anders Carlsson22742662007-07-21 05:21:51 +0000505 std::string GlobalVarName;
506
507 switch (E->getIdentType()) {
508 default:
509 assert(0 && "unknown pre-defined ident type");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000510 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000511 GlobalVarName = "__func__.";
512 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000513 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000514 GlobalVarName = "__FUNCTION__.";
515 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000516 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000517 // FIXME:: Demangle C++ method names
518 GlobalVarName = "__PRETTY_FUNCTION__.";
519 break;
520 }
521
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000522 GlobalVarName += FunctionName;
Anders Carlsson22742662007-07-21 05:21:51 +0000523
524 // FIXME: Can cache/reuse these within the module.
525 llvm::Constant *C=llvm::ConstantArray::get(FunctionName);
526
527 // Create a global variable for this.
528 C = new llvm::GlobalVariable(C->getType(), true,
529 llvm::GlobalValue::InternalLinkage,
530 C, GlobalVarName, CurFn->getParent());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000531 return LValue::MakeAddr(C,0);
Anders Carlsson22742662007-07-21 05:21:51 +0000532}
533
Reid Spencer5f016e22007-07-11 17:01:13 +0000534LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000535 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000536 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000537
538 // If the base is a vector type, then we are forming a vector element lvalue
539 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000540 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000541 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000542 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000543 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000544 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000545 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
546 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000547 }
548
Ted Kremenek23245122007-08-20 16:18:38 +0000549 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000550 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000551
Ted Kremenek23245122007-08-20 16:18:38 +0000552 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000553 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000554 bool IdxSigned = IdxTy->isSignedIntegerType();
555 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
556 if (IdxBitwidth != LLVMPointerWidth)
557 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
558 IdxSigned, "idxprom");
559
560 // We know that the pointer points to a type of the correct size, unless the
561 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000562 if (!E->getType()->isConstantSizeType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000563 assert(0 && "VLA idx not implemented");
Chris Lattner96196622008-07-26 22:37:01 +0000564 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000565
Eli Friedman1e692ac2008-06-13 23:01:12 +0000566 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000567 ExprTy->getAsPointerType()->getPointeeType()
568 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000569}
570
Nate Begeman3b8d1162008-05-13 21:03:02 +0000571static
572llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
573 llvm::SmallVector<llvm::Constant *, 4> CElts;
574
575 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
576 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
577
578 return llvm::ConstantVector::get(&CElts[0], CElts.size());
579}
580
Chris Lattner349aaec2007-08-02 23:37:31 +0000581LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000582EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000583 // Emit the base vector as an l-value.
584 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000585
Nate Begeman3b8d1162008-05-13 21:03:02 +0000586 // Encode the element access list into a vector of unsigned indices.
587 llvm::SmallVector<unsigned, 4> Indices;
588 E->getEncodedElementAccess(Indices);
589
590 if (Base.isSimple()) {
591 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000592 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
593 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000594 }
595 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
596
597 llvm::Constant *BaseElts = Base.getExtVectorElts();
598 llvm::SmallVector<llvm::Constant *, 4> CElts;
599
600 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
601 if (isa<llvm::ConstantAggregateZero>(BaseElts))
602 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
603 else
604 CElts.push_back(BaseElts->getOperand(Indices[i]));
605 }
606 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000607 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
608 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000609}
610
Devang Patelb9b00ad2007-10-23 20:28:39 +0000611LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000612 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000613 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000614 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000615 unsigned CVRQualifiers=0;
616
Chris Lattner12f65f62007-12-02 18:52:07 +0000617 // 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 +0000618 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000619 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000620 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000621 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000622 if (PTy->getPointeeType()->isUnionType())
623 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000624 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000625 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000626 else {
627 LValue BaseLV = EmitLValue(BaseExpr);
628 // FIXME: this isn't right for bitfields.
629 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000630 if (BaseExpr->getType()->isUnionType())
631 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000632 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000633 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000634
635 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000636 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000637}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000638
Eli Friedman472778e2008-02-09 08:50:58 +0000639LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
640 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000641 bool isUnion,
642 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000643{
644 llvm::Value *V;
645 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000646
Eli Friedman1e86b342008-05-29 11:33:25 +0000647 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000648 // FIXME: CodeGenTypes should expose a method to get the appropriate
649 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000650 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000651 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000652 cast<llvm::PointerType>(BaseValue->getType());
653 unsigned AS = BaseTy->getAddressSpace();
654 BaseValue = Builder.CreateBitCast(BaseValue,
655 llvm::PointerType::get(FieldTy, AS),
656 "tmp");
657 V = Builder.CreateGEP(BaseValue,
658 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
659 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000660
661 CodeGenTypes::BitFieldInfo bitFieldInfo =
662 CGM.getTypes().getBitFieldInfo(Field);
663 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000664 Field->getType()->isSignedIntegerType(),
665 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000666 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000667
Eli Friedman1e86b342008-05-29 11:33:25 +0000668 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
669
Devang Patelabad06c2007-10-26 19:42:18 +0000670 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000671 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000672 const llvm::Type *FieldTy =
673 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000674 const llvm::PointerType * BaseTy =
675 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000676 unsigned AS = BaseTy->getAddressSpace();
677 V = Builder.CreateBitCast(V,
678 llvm::PointerType::get(FieldTy, AS),
679 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000680 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000681
Eli Friedman1e692ac2008-06-13 23:01:12 +0000682 return LValue::MakeAddr(V,
683 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000684}
685
Eli Friedman1e692ac2008-06-13 23:01:12 +0000686LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
687{
Eli Friedman06e863f2008-05-13 23:18:27 +0000688 const llvm::Type *LTy = ConvertType(E->getType());
689 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
690
691 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000692 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000693
694 if (E->getType()->isComplexType()) {
695 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
696 } else if (hasAggregateLLVMType(E->getType())) {
697 EmitAnyExpr(InitExpr, DeclPtr, false);
698 } else {
699 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
700 }
701
702 return Result;
703}
704
Reid Spencer5f016e22007-07-11 17:01:13 +0000705//===--------------------------------------------------------------------===//
706// Expression Emission
707//===--------------------------------------------------------------------===//
708
Chris Lattner7016a702007-08-20 22:37:10 +0000709
Reid Spencer5f016e22007-07-11 17:01:13 +0000710RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000711 if (const ImplicitCastExpr *IcExpr =
712 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
713 if (const DeclRefExpr *DRExpr =
714 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
715 if (const FunctionDecl *FDecl =
716 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
717 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
718 return EmitBuiltinExpr(builtinID, E);
719
Chris Lattner7f02f722007-08-24 05:35:26 +0000720 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000721 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000722 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000723}
724
Ted Kremenek55499762008-06-17 02:43:46 +0000725RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
726 CallExpr::const_arg_iterator ArgBeg,
727 CallExpr::const_arg_iterator ArgEnd) {
728
Nate Begemane2ce1d92008-01-17 17:46:27 +0000729 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000730 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000731}
732
Christopher Lamb22c940e2007-12-29 05:02:41 +0000733LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
734 // Can only get l-value for call expression returning aggregate type
735 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000736 // FIXME: can this be volatile?
737 return LValue::MakeAddr(RV.getAggregateAddr(),
738 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000739}
740
Chris Lattner391d77a2008-03-30 23:03:07 +0000741LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
742 // Objective-C objects are traditionally C structures with their layout
743 // defined at compile-time. In some implementations, their layout is not
744 // defined until run time in order to allow instance variables to be added to
745 // a class without recompiling all of the subclasses. If this is the case
746 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
747 // implement the lookup itself.
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000748 if (CGM.getObjCRuntime().LateBoundIVars()) {
Chris Lattner391d77a2008-03-30 23:03:07 +0000749 assert(0 && "FIXME: Implement support for late-bound instance variables");
750 return LValue(); // Not reached.
751 }
Chris Lattnerce5605e2008-03-30 23:25:33 +0000752
753 // Get a structure type for the object
754 QualType ExprTy = E->getBase()->getType();
755 const llvm::Type *ObjectType = ConvertType(ExprTy);
756 // TODO: Add a special case for isa (index 0)
757 // Work out which index the ivar is
758 const ObjCIvarDecl *Decl = E->getDecl();
759 unsigned Index = CGM.getTypes().getLLVMFieldNo(Decl);
Chris Lattner391d77a2008-03-30 23:03:07 +0000760
Chris Lattnerce5605e2008-03-30 23:25:33 +0000761 // Get object pointer and coerce object pointer to correct type.
762 llvm::Value *Object = EmitLValue(E->getBase()).getAddress();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000763 // FIXME: Volatility
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000764 Object = Builder.CreateLoad(Object, E->getDecl()->getName());
Chris Lattnerce5605e2008-03-30 23:25:33 +0000765 if (Object->getType() != ObjectType)
766 Object = Builder.CreateBitCast(Object, ObjectType);
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000767
Chris Lattnerce5605e2008-03-30 23:25:33 +0000768
769 // Return a pointer to the right element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000770 // FIXME: volatile
Chris Lattnerce5605e2008-03-30 23:25:33 +0000771 return LValue::MakeAddr(Builder.CreateStructGEP(Object, Index,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000772 Decl->getName()),0);
Chris Lattner391d77a2008-03-30 23:03:07 +0000773}
774
Nate Begemane2ce1d92008-01-17 17:46:27 +0000775RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek55499762008-06-17 02:43:46 +0000776 CallExpr::const_arg_iterator ArgBeg,
777 CallExpr::const_arg_iterator ArgEnd) {
778
Reid Spencer5f016e22007-07-11 17:01:13 +0000779 // The callee type will always be a pointer to function type, get the function
780 // type.
Chris Lattner96196622008-07-26 22:37:01 +0000781 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner05d2fb42008-07-31 04:58:58 +0000782 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Eli Friedman5193b8a2008-01-30 01:32:06 +0000783
Reid Spencer5f016e22007-07-11 17:01:13 +0000784 llvm::SmallVector<llvm::Value*, 16> Args;
785
Chris Lattnercc666af2007-08-10 17:02:28 +0000786 // Handle struct-return functions by passing a pointer to the location that
787 // we would like to return into.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000788 if (hasAggregateLLVMType(ResultType)) {
Chris Lattnercc666af2007-08-10 17:02:28 +0000789 // Create a temporary alloca to hold the result of the call. :(
Nate Begemane2ce1d92008-01-17 17:46:27 +0000790 Args.push_back(CreateTempAlloca(ConvertType(ResultType)));
Chris Lattnercc666af2007-08-10 17:02:28 +0000791 // FIXME: set the stret attribute on the argument.
792 }
793
Ted Kremenek55499762008-06-17 02:43:46 +0000794 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I) {
795 QualType ArgTy = I->getType();
Eli Friedman472778e2008-02-09 08:50:58 +0000796
Chris Lattner660ac122007-08-26 22:55:13 +0000797 if (!hasAggregateLLVMType(ArgTy)) {
798 // Scalar argument is passed by-value.
Ted Kremenek55499762008-06-17 02:43:46 +0000799 Args.push_back(EmitScalarExpr(*I));
Chris Lattner9b2dc282008-04-04 16:54:41 +0000800 } else if (ArgTy->isAnyComplexType()) {
Chris Lattner660ac122007-08-26 22:55:13 +0000801 // Make a temporary alloca to pass the argument.
802 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Ted Kremenek55499762008-06-17 02:43:46 +0000803 EmitComplexExprIntoAddr(*I, DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000804 Args.push_back(DestMem);
805 } else {
806 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Ted Kremenek55499762008-06-17 02:43:46 +0000807 EmitAggExpr(*I, DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000808 Args.push_back(DestMem);
Reid Spencer5f016e22007-07-11 17:01:13 +0000809 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000810 }
811
Nate Begemanec9426c2008-03-09 03:09:36 +0000812 llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000813
814 // Note that there is parallel code in SetFunctionAttributes in CodeGenModule
815 llvm::SmallVector<llvm::ParamAttrsWithIndex, 8> ParamAttrList;
816 if (hasAggregateLLVMType(ResultType))
817 ParamAttrList.push_back(
818 llvm::ParamAttrsWithIndex::get(1, llvm::ParamAttr::StructRet));
819 unsigned increment = hasAggregateLLVMType(ResultType) ? 2 : 1;
Ted Kremenek55499762008-06-17 02:43:46 +0000820
821 unsigned i = 0;
822 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I, ++i) {
823 QualType ParamType = I->getType();
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000824 unsigned ParamAttrs = 0;
825 if (ParamType->isRecordType())
826 ParamAttrs |= llvm::ParamAttr::ByVal;
827 if (ParamType->isSignedIntegerType() && ParamType->isPromotableIntegerType())
828 ParamAttrs |= llvm::ParamAttr::SExt;
829 if (ParamType->isUnsignedIntegerType() && ParamType->isPromotableIntegerType())
830 ParamAttrs |= llvm::ParamAttr::ZExt;
831 if (ParamAttrs)
832 ParamAttrList.push_back(llvm::ParamAttrsWithIndex::get(i + increment,
833 ParamAttrs));
834 }
835 CI->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
836 ParamAttrList.size()));
837
Nate Begemanec9426c2008-03-09 03:09:36 +0000838 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
839 CI->setCallingConv(F->getCallingConv());
840 if (CI->getType() != llvm::Type::VoidTy)
841 CI->setName("call");
Chris Lattner9b2dc282008-04-04 16:54:41 +0000842 else if (ResultType->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +0000843 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000844 else if (hasAggregateLLVMType(ResultType))
Chris Lattnercc666af2007-08-10 17:02:28 +0000845 // Struct return.
846 return RValue::getAggregate(Args[0]);
Chris Lattner2202bce2007-11-30 17:56:23 +0000847 else {
848 // void return.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000849 assert(ResultType->isVoidType() && "Should only have a void expr here");
Nate Begemanec9426c2008-03-09 03:09:36 +0000850 CI = 0;
Chris Lattner2202bce2007-11-30 17:56:23 +0000851 }
Chris Lattnercc666af2007-08-10 17:02:28 +0000852
Nate Begemanec9426c2008-03-09 03:09:36 +0000853 return RValue::get(CI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000854}