blob: 1c101711945422bd6440f5e941a6b49e8ab1362a [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 Dunbar0dbe2272008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22using namespace CodeGen;
23
24//===--------------------------------------------------------------------===//
25// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
28/// CreateTempAlloca - This creates a alloca and inserts it into the entry
29/// block.
30llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
31 const char *Name) {
32 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
33}
34
35/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
36/// expression and compare the result against zero, returning an Int1Ty value.
37llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000038 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000039 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000040 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000041
Chris Lattner9069fa22007-08-26 16:46:58 +000042 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000043}
44
Chris Lattner9b655512007-08-31 22:49:20 +000045/// EmitAnyExpr - Emit code to compute the specified expression which can have
46/// any type. The result is returned as an RValue struct. If this is an
47/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
48/// the result should be returned.
49RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
50 bool isAggLocVolatile) {
51 if (!hasAggregateLLVMType(E->getType()))
52 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000053 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000054 return RValue::getComplex(EmitComplexExpr(E));
55
56 EmitAggExpr(E, AggLoc, isAggLocVolatile);
57 return RValue::getAggregate(AggLoc);
58}
59
Daniel Dunbar46f45b92008-09-09 01:06:48 +000060/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
61/// will always be accessible even if no aggregate location is
62/// provided.
63RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
64 bool isAggLocVolatile) {
65 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
66 !E->getType()->isAnyComplexType())
67 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
68 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
69}
70
Dan Gohman4f8d1232008-05-22 00:50:06 +000071/// getAccessedFieldNo - Given an encoded value and a result number, return
72/// the input field number being accessed.
73unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
74 const llvm::Constant *Elts) {
75 if (isa<llvm::ConstantAggregateZero>(Elts))
76 return 0;
77
78 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
79}
80
Chris Lattner9b655512007-08-31 22:49:20 +000081
Reid Spencer5f016e22007-07-11 17:01:13 +000082//===----------------------------------------------------------------------===//
83// LValue Expression Emission
84//===----------------------------------------------------------------------===//
85
Daniel Dunbar6ba82a42008-08-25 20:45:57 +000086LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
87 const char *Name) {
88 ErrorUnsupported(E, Name);
89 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
90 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
91 E->getType().getCVRQualifiers());
92}
93
Reid Spencer5f016e22007-07-11 17:01:13 +000094/// EmitLValue - Emit code to compute a designator that specifies the location
95/// of the expression.
96///
97/// This can return one of two things: a simple address or a bitfield
98/// reference. In either case, the LLVM Value* in the LValue structure is
99/// guaranteed to be an LLVM pointer type.
100///
101/// If this returns a bitfield reference, nothing about the pointee type of
102/// the LLVM value is known: For example, it may not be a pointer to an
103/// integer.
104///
105/// If this returns a normal address, and if the lvalue's C type is fixed
106/// size, this method guarantees that the returned pointer type will point to
107/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
108/// variable length type, this is not possible.
109///
110LValue CodeGenFunction::EmitLValue(const Expr *E) {
111 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000112 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000113
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000114 case Expr::BinaryOperatorClass:
115 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Christopher Lamb22c940e2007-12-29 05:02:41 +0000116 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000117 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
118 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000119 case Expr::PredefinedExprClass:
120 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000121 case Expr::StringLiteralClass:
122 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000123
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000124 case Expr::ObjCMessageExprClass:
125 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000126 case Expr::ObjCIvarRefExprClass:
127 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000128 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000129 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000130
131 case Expr::UnaryOperatorClass:
132 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
133 case Expr::ArraySubscriptExprClass:
134 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000135 case Expr::ExtVectorElementExprClass:
136 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000137 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000138 case Expr::CompoundLiteralExprClass:
139 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000140 }
141}
142
143/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
144/// this method emits the address of the lvalue, then loads the result as an
145/// rvalue, returning the rvalue.
146RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 if (LV.isSimple()) {
148 llvm::Value *Ptr = LV.getAddress();
149 const llvm::Type *EltTy =
150 cast<llvm::PointerType>(Ptr->getType())->getElementType();
151
152 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000153 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000154 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000155
156 // Bool can have different representation in memory than in registers.
157 if (ExprType->isBooleanType()) {
158 if (V->getType() != llvm::Type::Int1Ty)
159 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
160 }
161
162 return RValue::get(V);
163 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000164
Chris Lattner883f6a72007-08-11 00:04:45 +0000165 assert(ExprType->isFunctionType() && "Unknown scalar value");
166 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000167 }
168
169 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000170 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
171 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
173 "vecext"));
174 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000175
176 // If this is a reference to a subset of the elements of a vector, either
177 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000178 if (LV.isExtVectorElt())
179 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000180
181 if (LV.isBitfield())
182 return EmitLoadOfBitfieldLValue(LV, ExprType);
183
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000184 if (LV.isPropertyRef())
185 return EmitLoadOfPropertyRefLValue(LV, ExprType);
186
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000187 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000188 //an invalid RValue, but the assert will
189 //ensure that this point is never reached
190 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000191}
192
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000193RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
194 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000195 unsigned StartBit = LV.getBitfieldStartBit();
196 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000197 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000198
199 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000200 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000201 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000202
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000203 // In some cases the bitfield may straddle two memory locations.
204 // Currently we load the entire bitfield, then do the magic to
205 // sign-extend it if necessary. This results in somewhat more code
206 // than necessary for the common case (one load), since two shifts
207 // accomplish both the masking and sign extension.
208 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
209 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
210
211 // Shift to proper location.
212 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
213 "bf.lo");
214
215 // Mask off unused bits.
216 llvm::Constant *LowMask =
217 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
218 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
219
220 // Fetch the high bits if necessary.
221 if (LowBits < BitfieldSize) {
222 unsigned HighBits = BitfieldSize - LowBits;
223 llvm::Value *HighPtr =
224 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
225 "bf.ptr.hi");
226 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
227 LV.isVolatileQualified(),
228 "tmp");
229
230 // Mask off unused bits.
231 llvm::Constant *HighMask =
232 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
233 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000234
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000235 // Shift to proper location and or in to bitfield value.
236 HighVal = Builder.CreateShl(HighVal,
237 llvm::ConstantInt::get(EltTy, LowBits));
238 Val = Builder.CreateOr(Val, HighVal, "bf.val");
239 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000240
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000241 // Sign extend if necessary.
242 if (LV.isBitfieldSigned()) {
243 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
244 EltTySize - BitfieldSize);
245 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
246 ExtraBits, "bf.val.sext");
247 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000248
249 // The bitfield type and the normal type differ when the storage sizes
250 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000251 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000252
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000253 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000254}
255
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000256RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
257 QualType ExprType) {
258 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
259}
260
Chris Lattner34cdc862007-08-03 16:18:34 +0000261// If this is a reference to a subset of the elements of a vector, either
262// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000263RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
264 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000265 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
266 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000267
Nate Begeman8a997642008-05-09 06:41:27 +0000268 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000269
270 // If the result of the expression is a non-vector type, we must be
271 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000272 const VectorType *ExprVT = ExprType->getAsVectorType();
273 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000274 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000275 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
276 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
277 }
278
279 // If the source and destination have the same number of elements, use a
280 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000281 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000282 unsigned NumSourceElts =
283 cast<llvm::VectorType>(Vec->getType())->getNumElements();
284
285 if (NumResultElts == NumSourceElts) {
286 llvm::SmallVector<llvm::Constant*, 4> Mask;
287 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000288 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000289 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
290 }
291
292 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
293 Vec = Builder.CreateShuffleVector(Vec,
294 llvm::UndefValue::get(Vec->getType()),
295 MaskV, "tmp");
296 return RValue::get(Vec);
297 }
298
299 // Start out with an undef of the result type.
300 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
301
302 // Extract/Insert each element of the result.
303 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000304 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000305 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
306 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
307
308 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
309 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
310 }
311
312 return RValue::get(Result);
313}
314
315
Reid Spencer5f016e22007-07-11 17:01:13 +0000316
317/// EmitStoreThroughLValue - Store the specified rvalue into the specified
318/// lvalue, where both are guaranteed to the have the same type, and that type
319/// is 'Ty'.
320void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
321 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000322 if (!Dst.isSimple()) {
323 if (Dst.isVectorElt()) {
324 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000325 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
326 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000327 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000328 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000329 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000330 return;
331 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000332
Nate Begeman213541a2008-04-18 23:10:10 +0000333 // If this is an update of extended vector elements, insert them as
334 // appropriate.
335 if (Dst.isExtVectorElt())
336 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000337
338 if (Dst.isBitfield())
339 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
340
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000341 if (Dst.isPropertyRef())
342 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
343
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000344 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000345 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000346
347 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000348 assert(Src.isScalar() && "Can't emit an agg store with this method");
349 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000350 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000351 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
352 const llvm::Type *AddrTy = DstPtr->getElementType();
353 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000354
Chris Lattner883f6a72007-08-11 00:04:45 +0000355 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000356 DstAddr = Builder.CreateBitCast(DstAddr,
357 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000358 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000359 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000360}
361
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000362void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
363 QualType Ty) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000364 unsigned StartBit = Dst.getBitfieldStartBit();
365 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000366 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000367
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000368 const llvm::Type *EltTy =
369 cast<llvm::PointerType>(Ptr->getType())->getElementType();
370 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
371
372 // Get the new value, cast to the appropriate type and masked to
373 // exactly the size of the bit-field.
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000374 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000375 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
376 llvm::Constant *Mask =
377 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
378 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000379
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000380 // In some cases the bitfield may straddle two memory locations.
381 // Emit the low part first and check to see if the high needs to be
382 // done.
383 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
384 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
385 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000386
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000387 // Compute the mask for zero-ing the low part of this bitfield.
388 llvm::Constant *InvMask =
389 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
390 StartBit + LowBits));
391
392 // Compute the new low part as
393 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
394 // with the shift of NewVal implicitly stripping the high bits.
395 llvm::Value *NewLowVal =
396 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
397 "bf.value.lo");
398 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
399 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
400
401 // Write back.
402 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000403
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000404 // If the low part doesn't cover the bitfield emit a high part.
405 if (LowBits < BitfieldSize) {
406 unsigned HighBits = BitfieldSize - LowBits;
407 llvm::Value *HighPtr =
408 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
409 "bf.ptr.hi");
410 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
411 Dst.isVolatileQualified(),
412 "bf.prev.hi");
413
414 // Compute the mask for zero-ing the high part of this bitfield.
415 llvm::Constant *InvMask =
416 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
417
418 // Compute the new high part as
419 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
420 // where the high bits of NewVal have already been cleared and the
421 // shift stripping the low bits.
422 llvm::Value *NewHighVal =
423 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
424 "bf.value.high");
425 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
426 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
427
428 // Write back.
429 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
430 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000431}
432
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000433void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
434 LValue Dst,
435 QualType Ty) {
436 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
437}
438
Nate Begeman213541a2008-04-18 23:10:10 +0000439void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
440 LValue Dst,
441 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000442 // This access turns into a read/modify/write of the vector. Load the input
443 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000444 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
445 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000446 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000447
Chris Lattner9b655512007-08-31 22:49:20 +0000448 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000449
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000450 if (const VectorType *VTy = Ty->getAsVectorType()) {
451 unsigned NumSrcElts = VTy->getNumElements();
452
453 // Extract/Insert each element.
454 for (unsigned i = 0; i != NumSrcElts; ++i) {
455 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
456 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
457
Dan Gohman4f8d1232008-05-22 00:50:06 +0000458 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000459 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
460 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
461 }
462 } else {
463 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000464 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000465 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
466 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000467 }
468
Eli Friedman1e692ac2008-06-13 23:01:12 +0000469 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000470}
471
Reid Spencer5f016e22007-07-11 17:01:13 +0000472
473LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000474 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
475
Chris Lattner41110242008-06-17 18:05:57 +0000476 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
477 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000478 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000479 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000480 E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000481 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000482 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000483 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000484 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000485 }
Steve Naroff248a7532008-04-15 22:42:06 +0000486 } else if (VD && VD->isFileVarDecl()) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000487 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000488 E->getType().getCVRQualifiers());
Steve Naroff248a7532008-04-15 22:42:06 +0000489 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000490 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000491 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000492 }
Chris Lattner41110242008-06-17 18:05:57 +0000493 else if (const ImplicitParamDecl *IPD =
494 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
495 llvm::Value *V = LocalDeclMap[IPD];
496 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
497 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
498 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000499 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000500 //an invalid LValue, but the assert will
501 //ensure that this point is never reached.
502 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000503}
504
505LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
506 // __extension__ doesn't affect lvalue-ness.
507 if (E->getOpcode() == UnaryOperator::Extension)
508 return EmitLValue(E->getSubExpr());
509
Chris Lattner96196622008-07-26 22:37:01 +0000510 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000511 switch (E->getOpcode()) {
512 default: assert(0 && "Unknown unary operator lvalue!");
513 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000514 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000515 ExprTy->getAsPointerType()->getPointeeType()
516 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000517 case UnaryOperator::Real:
518 case UnaryOperator::Imag:
519 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000520 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
521 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000522 Idx, "idx"),
523 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000524 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000525}
526
527LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000528 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000529}
530
Chris Lattnerd9f69102008-08-10 01:53:14 +0000531LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000532 std::string FunctionName;
533 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
534 FunctionName = FD->getName();
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000535 } else if (isa<ObjCMethodDecl>(CurFuncDecl)) {
536 // Just get the mangled name.
537 FunctionName = CurFn->getName();
538 } else {
539 return EmitUnsupportedLValue(E, "predefined expression");
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000540 }
Anders Carlsson22742662007-07-21 05:21:51 +0000541 std::string GlobalVarName;
542
543 switch (E->getIdentType()) {
544 default:
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000545 return EmitUnsupportedLValue(E, "predefined expression");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000546 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000547 GlobalVarName = "__func__.";
548 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000549 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000550 GlobalVarName = "__FUNCTION__.";
551 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000552 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000553 // FIXME:: Demangle C++ method names
554 GlobalVarName = "__PRETTY_FUNCTION__.";
555 break;
556 }
557
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000558 GlobalVarName += FunctionName;
Anders Carlsson22742662007-07-21 05:21:51 +0000559
560 // FIXME: Can cache/reuse these within the module.
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000561 llvm::Constant *C = llvm::ConstantArray::get(FunctionName);
Anders Carlsson22742662007-07-21 05:21:51 +0000562
563 // Create a global variable for this.
564 C = new llvm::GlobalVariable(C->getType(), true,
565 llvm::GlobalValue::InternalLinkage,
566 C, GlobalVarName, CurFn->getParent());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000567 return LValue::MakeAddr(C,0);
Anders Carlsson22742662007-07-21 05:21:51 +0000568}
569
Reid Spencer5f016e22007-07-11 17:01:13 +0000570LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000571 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000572 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000573
574 // If the base is a vector type, then we are forming a vector element lvalue
575 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000576 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000577 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000578 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000579 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000580 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000581 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
582 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000583 }
584
Ted Kremenek23245122007-08-20 16:18:38 +0000585 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000586 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000587
Ted Kremenek23245122007-08-20 16:18:38 +0000588 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000589 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000590 bool IdxSigned = IdxTy->isSignedIntegerType();
591 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
592 if (IdxBitwidth != LLVMPointerWidth)
593 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
594 IdxSigned, "idxprom");
595
596 // We know that the pointer points to a type of the correct size, unless the
597 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000598 if (!E->getType()->isConstantSizeType())
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000599 return EmitUnsupportedLValue(E, "VLA index");
Chris Lattner96196622008-07-26 22:37:01 +0000600 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000601
Eli Friedman1e692ac2008-06-13 23:01:12 +0000602 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000603 ExprTy->getAsPointerType()->getPointeeType()
604 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000605}
606
Nate Begeman3b8d1162008-05-13 21:03:02 +0000607static
608llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
609 llvm::SmallVector<llvm::Constant *, 4> CElts;
610
611 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
612 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
613
614 return llvm::ConstantVector::get(&CElts[0], CElts.size());
615}
616
Chris Lattner349aaec2007-08-02 23:37:31 +0000617LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000618EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000619 // Emit the base vector as an l-value.
620 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000621
Nate Begeman3b8d1162008-05-13 21:03:02 +0000622 // Encode the element access list into a vector of unsigned indices.
623 llvm::SmallVector<unsigned, 4> Indices;
624 E->getEncodedElementAccess(Indices);
625
626 if (Base.isSimple()) {
627 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000628 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
629 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000630 }
631 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
632
633 llvm::Constant *BaseElts = Base.getExtVectorElts();
634 llvm::SmallVector<llvm::Constant *, 4> CElts;
635
636 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
637 if (isa<llvm::ConstantAggregateZero>(BaseElts))
638 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
639 else
640 CElts.push_back(BaseElts->getOperand(Indices[i]));
641 }
642 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000643 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
644 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000645}
646
Devang Patelb9b00ad2007-10-23 20:28:39 +0000647LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000648 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000649 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000650 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000651 unsigned CVRQualifiers=0;
652
Chris Lattner12f65f62007-12-02 18:52:07 +0000653 // 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 +0000654 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000655 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000656 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000657 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000658 if (PTy->getPointeeType()->isUnionType())
659 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000660 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000661 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000662 else {
663 LValue BaseLV = EmitLValue(BaseExpr);
664 // FIXME: this isn't right for bitfields.
665 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000666 if (BaseExpr->getType()->isUnionType())
667 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000668 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000669 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000670
671 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000672 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000673}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000674
Eli Friedman472778e2008-02-09 08:50:58 +0000675LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
676 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000677 bool isUnion,
678 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000679{
680 llvm::Value *V;
681 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000682
Eli Friedman1e86b342008-05-29 11:33:25 +0000683 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000684 // FIXME: CodeGenTypes should expose a method to get the appropriate
685 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000686 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000687 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000688 cast<llvm::PointerType>(BaseValue->getType());
689 unsigned AS = BaseTy->getAddressSpace();
690 BaseValue = Builder.CreateBitCast(BaseValue,
691 llvm::PointerType::get(FieldTy, AS),
692 "tmp");
693 V = Builder.CreateGEP(BaseValue,
694 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
695 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000696
697 CodeGenTypes::BitFieldInfo bitFieldInfo =
698 CGM.getTypes().getBitFieldInfo(Field);
699 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000700 Field->getType()->isSignedIntegerType(),
701 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000702 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000703
Eli Friedman1e86b342008-05-29 11:33:25 +0000704 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
705
Devang Patelabad06c2007-10-26 19:42:18 +0000706 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000707 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000708 const llvm::Type *FieldTy =
709 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000710 const llvm::PointerType * BaseTy =
711 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000712 unsigned AS = BaseTy->getAddressSpace();
713 V = Builder.CreateBitCast(V,
714 llvm::PointerType::get(FieldTy, AS),
715 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000716 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000717
Eli Friedman1e692ac2008-06-13 23:01:12 +0000718 return LValue::MakeAddr(V,
719 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000720}
721
Eli Friedman1e692ac2008-06-13 23:01:12 +0000722LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
723{
Eli Friedman06e863f2008-05-13 23:18:27 +0000724 const llvm::Type *LTy = ConvertType(E->getType());
725 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
726
727 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000728 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000729
730 if (E->getType()->isComplexType()) {
731 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
732 } else if (hasAggregateLLVMType(E->getType())) {
733 EmitAnyExpr(InitExpr, DeclPtr, false);
734 } else {
735 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
736 }
737
738 return Result;
739}
740
Reid Spencer5f016e22007-07-11 17:01:13 +0000741//===--------------------------------------------------------------------===//
742// Expression Emission
743//===--------------------------------------------------------------------===//
744
Chris Lattner7016a702007-08-20 22:37:10 +0000745
Reid Spencer5f016e22007-07-11 17:01:13 +0000746RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000747 if (const ImplicitCastExpr *IcExpr =
748 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
749 if (const DeclRefExpr *DRExpr =
750 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
751 if (const FunctionDecl *FDecl =
752 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
753 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
754 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000755
Chris Lattner7f02f722007-08-24 05:35:26 +0000756 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000757 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000758 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000759}
760
Ted Kremenek55499762008-06-17 02:43:46 +0000761RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
762 CallExpr::const_arg_iterator ArgBeg,
763 CallExpr::const_arg_iterator ArgEnd) {
764
Nate Begemane2ce1d92008-01-17 17:46:27 +0000765 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000766 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000767}
768
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000769LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
770 // Can only get l-value for binary operator expressions which are a
771 // simple assignment of aggregate type.
772 if (E->getOpcode() != BinaryOperator::Assign)
773 return EmitUnsupportedLValue(E, "binary l-value expression");
774
775 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
776 EmitAggExpr(E, Temp, false);
777 // FIXME: Are these qualifiers correct?
778 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
779}
780
Christopher Lamb22c940e2007-12-29 05:02:41 +0000781LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
782 // Can only get l-value for call expression returning aggregate type
783 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000784 // FIXME: can this be volatile?
785 return LValue::MakeAddr(RV.getAggregateAddr(),
786 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000787}
788
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000789LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
790 // Can only get l-value for message expression returning aggregate type
791 RValue RV = EmitObjCMessageExpr(E);
792 // FIXME: can this be volatile?
793 return LValue::MakeAddr(RV.getAggregateAddr(),
794 E->getType().getCVRQualifiers());
795}
796
Chris Lattner391d77a2008-03-30 23:03:07 +0000797LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
798 // Objective-C objects are traditionally C structures with their layout
799 // defined at compile-time. In some implementations, their layout is not
800 // defined until run time in order to allow instance variables to be added to
801 // a class without recompiling all of the subclasses. If this is the case
802 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
803 // implement the lookup itself.
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000804 if (CGM.getObjCRuntime().LateBoundIVars()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000805 return EmitUnsupportedLValue(E, "late-bound instance variables");
Chris Lattner391d77a2008-03-30 23:03:07 +0000806 }
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000807
Anders Carlsson29b7e502008-08-25 01:53:23 +0000808 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
809 llvm::Value *BaseValue = 0;
810 const Expr *BaseExpr = E->getBase();
811 unsigned CVRQualifiers = 0;
812 if (E->isArrow()) {
813 BaseValue = EmitScalarExpr(BaseExpr);
814 const PointerType *PTy =
815 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
816 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
817 } else {
818 LValue BaseLV = EmitLValue(BaseExpr);
819 // FIXME: this isn't right for bitfields.
820 BaseValue = BaseLV.getAddress();
821 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
822 }
Chris Lattnerce5605e2008-03-30 23:25:33 +0000823
Anders Carlsson29b7e502008-08-25 01:53:23 +0000824 const ObjCIvarDecl *Field = E->getDecl();
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000825 if (Field->isBitField())
826 return EmitUnsupportedLValue(E, "ivar bitfields");
Anders Carlsson29b7e502008-08-25 01:53:23 +0000827
828 // TODO: Add a special case for isa (index 0)
829 unsigned Index = CGM.getTypes().getLLVMFieldNo(Field);
830
831 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
832 return LValue::MakeAddr(V,
833 Field->getType().getCVRQualifiers()|CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +0000834}
835
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000836LValue
837CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
838 // This is a special l-value that just issues sends when we load or
839 // store through it.
840 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
841}
842
Nate Begemane2ce1d92008-01-17 17:46:27 +0000843RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek55499762008-06-17 02:43:46 +0000844 CallExpr::const_arg_iterator ArgBeg,
845 CallExpr::const_arg_iterator ArgEnd) {
846
Reid Spencer5f016e22007-07-11 17:01:13 +0000847 // The callee type will always be a pointer to function type, get the function
848 // type.
Chris Lattner96196622008-07-26 22:37:01 +0000849 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner05d2fb42008-07-31 04:58:58 +0000850 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000851
852 CallArgList Args;
853 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
Daniel Dunbar46f45b92008-09-09 01:06:48 +0000854 Args.push_back(std::make_pair(EmitAnyExprToTemp(*I),
855 I->getType()));
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000856
857 return EmitCall(Callee, ResultType, Args);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000858}
Eli Friedman5193b8a2008-01-30 01:32:06 +0000859
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000860RValue CodeGenFunction::EmitCall(llvm::Value *Callee,
861 QualType ResultType,
862 const CallArgList &CallArgs) {
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000863 // FIXME: Factor out code to load from args into locals into target.
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000864 llvm::SmallVector<llvm::Value*, 16> Args;
865 llvm::Value *TempArg0 = 0;
866
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000867 // Handle struct-return functions by passing a pointer to the
868 // location that we would like to return into.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000869 if (hasAggregateLLVMType(ResultType)) {
Chris Lattnercc666af2007-08-10 17:02:28 +0000870 // Create a temporary alloca to hold the result of the call. :(
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000871 TempArg0 = CreateTempAlloca(ConvertType(ResultType));
872 Args.push_back(TempArg0);
Chris Lattnercc666af2007-08-10 17:02:28 +0000873 }
874
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000875 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
Daniel Dunbar46f45b92008-09-09 01:06:48 +0000876 I != E; ++I) {
877 RValue RV = I->first;
878 if (RV.isScalar()) {
879 Args.push_back(RV.getScalarVal());
880 } else if (RV.isComplex()) {
881 // Make a temporary alloca to pass the argument.
882 Args.push_back(CreateTempAlloca(ConvertType(I->second)));
883 StoreComplexToAddr(RV.getComplexVal(), Args.back(), false);
884 } else {
885 Args.push_back(RV.getAggregateAddr());
886 }
887 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000888
Nate Begemanec9426c2008-03-09 03:09:36 +0000889 llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000890 CGCallInfo CallInfo(ResultType, CallArgs);
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000891
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000892 CodeGen::ParamAttrListType ParamAttrList;
893 CallInfo.constructParamAttrList(ParamAttrList);
894 CI->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
895 ParamAttrList.size()));
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000896
Nate Begemanec9426c2008-03-09 03:09:36 +0000897 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
898 CI->setCallingConv(F->getCallingConv());
899 if (CI->getType() != llvm::Type::VoidTy)
900 CI->setName("call");
Chris Lattner9b2dc282008-04-04 16:54:41 +0000901 else if (ResultType->isAnyComplexType())
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000902 return RValue::getComplex(LoadComplexFromAddr(TempArg0, false));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000903 else if (hasAggregateLLVMType(ResultType))
Chris Lattnercc666af2007-08-10 17:02:28 +0000904 // Struct return.
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000905 return RValue::getAggregate(TempArg0);
Chris Lattner2202bce2007-11-30 17:56:23 +0000906 else {
907 // void return.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000908 assert(ResultType->isVoidType() && "Should only have a void expr here");
Nate Begemanec9426c2008-03-09 03:09:36 +0000909 CI = 0;
Chris Lattner2202bce2007-11-30 17:56:23 +0000910 }
Chris Lattnercc666af2007-08-10 17:02:28 +0000911
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000912 return RValue::get(CI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000913}