blob: cc5e705c39224cb6dd9fd4ab55798873d8b8fcbf [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000016#include "CGObjCRuntime.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000019#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21using namespace CodeGen;
22
23//===--------------------------------------------------------------------===//
24// Miscellaneous Helper Methods
25//===--------------------------------------------------------------------===//
26
27/// CreateTempAlloca - This creates a alloca and inserts it into the entry
28/// block.
29llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
30 const char *Name) {
31 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
32}
33
34/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
35/// expression and compare the result against zero, returning an Int1Ty value.
36llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000037 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000038 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000039 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000040
Chris Lattner9069fa22007-08-26 16:46:58 +000041 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000042}
43
Chris Lattner9b655512007-08-31 22:49:20 +000044/// EmitAnyExpr - Emit code to compute the specified expression which can have
45/// any type. The result is returned as an RValue struct. If this is an
46/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
47/// the result should be returned.
48RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
49 bool isAggLocVolatile) {
50 if (!hasAggregateLLVMType(E->getType()))
51 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000052 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000053 return RValue::getComplex(EmitComplexExpr(E));
54
55 EmitAggExpr(E, AggLoc, isAggLocVolatile);
56 return RValue::getAggregate(AggLoc);
57}
58
Dan Gohman4f8d1232008-05-22 00:50:06 +000059/// getAccessedFieldNo - Given an encoded value and a result number, return
60/// the input field number being accessed.
61unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
62 const llvm::Constant *Elts) {
63 if (isa<llvm::ConstantAggregateZero>(Elts))
64 return 0;
65
66 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
67}
68
Chris Lattner9b655512007-08-31 22:49:20 +000069
Reid Spencer5f016e22007-07-11 17:01:13 +000070//===----------------------------------------------------------------------===//
71// LValue Expression Emission
72//===----------------------------------------------------------------------===//
73
Daniel Dunbar6ba82a42008-08-25 20:45:57 +000074LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
75 const char *Name) {
76 ErrorUnsupported(E, Name);
77 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
78 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
79 E->getType().getCVRQualifiers());
80}
81
Reid Spencer5f016e22007-07-11 17:01:13 +000082/// EmitLValue - Emit code to compute a designator that specifies the location
83/// of the expression.
84///
85/// This can return one of two things: a simple address or a bitfield
86/// reference. In either case, the LLVM Value* in the LValue structure is
87/// guaranteed to be an LLVM pointer type.
88///
89/// If this returns a bitfield reference, nothing about the pointee type of
90/// the LLVM value is known: For example, it may not be a pointer to an
91/// integer.
92///
93/// If this returns a normal address, and if the lvalue's C type is fixed
94/// size, this method guarantees that the returned pointer type will point to
95/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
96/// variable length type, this is not possible.
97///
98LValue CodeGenFunction::EmitLValue(const Expr *E) {
99 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000100 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000101
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000102 case Expr::BinaryOperatorClass:
103 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Christopher Lamb22c940e2007-12-29 05:02:41 +0000104 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
106 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000107 case Expr::PredefinedExprClass:
108 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000109 case Expr::StringLiteralClass:
110 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000111
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000112 case Expr::ObjCMessageExprClass:
113 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000114 case Expr::ObjCIvarRefExprClass:
115 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000116 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000117 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000118
119 case Expr::UnaryOperatorClass:
120 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
121 case Expr::ArraySubscriptExprClass:
122 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000123 case Expr::ExtVectorElementExprClass:
124 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000125 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000126 case Expr::CompoundLiteralExprClass:
127 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000128 }
129}
130
131/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
132/// this method emits the address of the lvalue, then loads the result as an
133/// rvalue, returning the rvalue.
134RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000135 if (LV.isSimple()) {
136 llvm::Value *Ptr = LV.getAddress();
137 const llvm::Type *EltTy =
138 cast<llvm::PointerType>(Ptr->getType())->getElementType();
139
140 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000141 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000142 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000143
144 // Bool can have different representation in memory than in registers.
145 if (ExprType->isBooleanType()) {
146 if (V->getType() != llvm::Type::Int1Ty)
147 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
148 }
149
150 return RValue::get(V);
151 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000152
Chris Lattner883f6a72007-08-11 00:04:45 +0000153 assert(ExprType->isFunctionType() && "Unknown scalar value");
154 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 }
156
157 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000158 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
159 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000160 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
161 "vecext"));
162 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000163
164 // If this is a reference to a subset of the elements of a vector, either
165 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000166 if (LV.isExtVectorElt())
167 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000168
169 if (LV.isBitfield())
170 return EmitLoadOfBitfieldLValue(LV, ExprType);
171
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000172 if (LV.isPropertyRef())
173 return EmitLoadOfPropertyRefLValue(LV, ExprType);
174
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000175 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000176 //an invalid RValue, but the assert will
177 //ensure that this point is never reached
178 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000179}
180
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000181RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
182 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000183 unsigned StartBit = LV.getBitfieldStartBit();
184 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000185 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000186
187 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000188 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000189 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000190
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000191 // In some cases the bitfield may straddle two memory locations.
192 // Currently we load the entire bitfield, then do the magic to
193 // sign-extend it if necessary. This results in somewhat more code
194 // than necessary for the common case (one load), since two shifts
195 // accomplish both the masking and sign extension.
196 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
197 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
198
199 // Shift to proper location.
200 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
201 "bf.lo");
202
203 // Mask off unused bits.
204 llvm::Constant *LowMask =
205 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
206 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
207
208 // Fetch the high bits if necessary.
209 if (LowBits < BitfieldSize) {
210 unsigned HighBits = BitfieldSize - LowBits;
211 llvm::Value *HighPtr =
212 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
213 "bf.ptr.hi");
214 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
215 LV.isVolatileQualified(),
216 "tmp");
217
218 // Mask off unused bits.
219 llvm::Constant *HighMask =
220 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
221 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000222
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000223 // Shift to proper location and or in to bitfield value.
224 HighVal = Builder.CreateShl(HighVal,
225 llvm::ConstantInt::get(EltTy, LowBits));
226 Val = Builder.CreateOr(Val, HighVal, "bf.val");
227 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000228
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000229 // Sign extend if necessary.
230 if (LV.isBitfieldSigned()) {
231 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
232 EltTySize - BitfieldSize);
233 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
234 ExtraBits, "bf.val.sext");
235 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000236
237 // The bitfield type and the normal type differ when the storage sizes
238 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000239 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000240
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000241 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000242}
243
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000244RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
245 QualType ExprType) {
246 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
247}
248
Chris Lattner34cdc862007-08-03 16:18:34 +0000249// If this is a reference to a subset of the elements of a vector, either
250// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000251RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
252 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000253 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
254 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000255
Nate Begeman8a997642008-05-09 06:41:27 +0000256 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000257
258 // If the result of the expression is a non-vector type, we must be
259 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000260 const VectorType *ExprVT = ExprType->getAsVectorType();
261 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000262 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000263 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
264 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
265 }
266
267 // If the source and destination have the same number of elements, use a
268 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000269 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000270 unsigned NumSourceElts =
271 cast<llvm::VectorType>(Vec->getType())->getNumElements();
272
273 if (NumResultElts == NumSourceElts) {
274 llvm::SmallVector<llvm::Constant*, 4> Mask;
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 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
278 }
279
280 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
281 Vec = Builder.CreateShuffleVector(Vec,
282 llvm::UndefValue::get(Vec->getType()),
283 MaskV, "tmp");
284 return RValue::get(Vec);
285 }
286
287 // Start out with an undef of the result type.
288 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
289
290 // Extract/Insert each element of the result.
291 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000292 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000293 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
294 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
295
296 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
297 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
298 }
299
300 return RValue::get(Result);
301}
302
303
Reid Spencer5f016e22007-07-11 17:01:13 +0000304
305/// EmitStoreThroughLValue - Store the specified rvalue into the specified
306/// lvalue, where both are guaranteed to the have the same type, and that type
307/// is 'Ty'.
308void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
309 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000310 if (!Dst.isSimple()) {
311 if (Dst.isVectorElt()) {
312 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000313 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
314 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000315 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000316 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000317 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000318 return;
319 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000320
Nate Begeman213541a2008-04-18 23:10:10 +0000321 // If this is an update of extended vector elements, insert them as
322 // appropriate.
323 if (Dst.isExtVectorElt())
324 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000325
326 if (Dst.isBitfield())
327 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
328
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000329 if (Dst.isPropertyRef())
330 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
331
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000332 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000333 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000334
335 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000336 assert(Src.isScalar() && "Can't emit an agg store with this method");
337 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000338 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000339 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
340 const llvm::Type *AddrTy = DstPtr->getElementType();
341 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000342
Chris Lattner883f6a72007-08-11 00:04:45 +0000343 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000344 DstAddr = Builder.CreateBitCast(DstAddr,
345 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000346 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000347 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000348}
349
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000350void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
351 QualType Ty) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000352 unsigned StartBit = Dst.getBitfieldStartBit();
353 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000354 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000355
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000356 const llvm::Type *EltTy =
357 cast<llvm::PointerType>(Ptr->getType())->getElementType();
358 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
359
360 // Get the new value, cast to the appropriate type and masked to
361 // exactly the size of the bit-field.
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000362 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000363 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
364 llvm::Constant *Mask =
365 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
366 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000367
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000368 // In some cases the bitfield may straddle two memory locations.
369 // Emit the low part first and check to see if the high needs to be
370 // done.
371 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
372 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
373 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000374
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000375 // Compute the mask for zero-ing the low part of this bitfield.
376 llvm::Constant *InvMask =
377 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
378 StartBit + LowBits));
379
380 // Compute the new low part as
381 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
382 // with the shift of NewVal implicitly stripping the high bits.
383 llvm::Value *NewLowVal =
384 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
385 "bf.value.lo");
386 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
387 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
388
389 // Write back.
390 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000391
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000392 // If the low part doesn't cover the bitfield emit a high part.
393 if (LowBits < BitfieldSize) {
394 unsigned HighBits = BitfieldSize - LowBits;
395 llvm::Value *HighPtr =
396 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
397 "bf.ptr.hi");
398 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
399 Dst.isVolatileQualified(),
400 "bf.prev.hi");
401
402 // Compute the mask for zero-ing the high part of this bitfield.
403 llvm::Constant *InvMask =
404 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
405
406 // Compute the new high part as
407 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
408 // where the high bits of NewVal have already been cleared and the
409 // shift stripping the low bits.
410 llvm::Value *NewHighVal =
411 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
412 "bf.value.high");
413 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
414 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
415
416 // Write back.
417 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
418 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000419}
420
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000421void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
422 LValue Dst,
423 QualType Ty) {
424 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
425}
426
Nate Begeman213541a2008-04-18 23:10:10 +0000427void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
428 LValue Dst,
429 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000430 // This access turns into a read/modify/write of the vector. Load the input
431 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000432 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
433 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000434 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000435
Chris Lattner9b655512007-08-31 22:49:20 +0000436 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000437
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000438 if (const VectorType *VTy = Ty->getAsVectorType()) {
439 unsigned NumSrcElts = VTy->getNumElements();
440
441 // Extract/Insert each element.
442 for (unsigned i = 0; i != NumSrcElts; ++i) {
443 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
444 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
445
Dan Gohman4f8d1232008-05-22 00:50:06 +0000446 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000447 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
448 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
449 }
450 } else {
451 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000452 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000453 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
454 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000455 }
456
Eli Friedman1e692ac2008-06-13 23:01:12 +0000457 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000458}
459
Reid Spencer5f016e22007-07-11 17:01:13 +0000460
461LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000462 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
463
Chris Lattner41110242008-06-17 18:05:57 +0000464 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
465 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000466 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000467 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000468 E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000469 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000470 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000471 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000472 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000473 }
Steve Naroff248a7532008-04-15 22:42:06 +0000474 } else if (VD && VD->isFileVarDecl()) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000475 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000476 E->getType().getCVRQualifiers());
Steve Naroff248a7532008-04-15 22:42:06 +0000477 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000478 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000479 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000480 }
Chris Lattner41110242008-06-17 18:05:57 +0000481 else if (const ImplicitParamDecl *IPD =
482 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
483 llvm::Value *V = LocalDeclMap[IPD];
484 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
485 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
486 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000487 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000488 //an invalid LValue, but the assert will
489 //ensure that this point is never reached.
490 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000491}
492
493LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
494 // __extension__ doesn't affect lvalue-ness.
495 if (E->getOpcode() == UnaryOperator::Extension)
496 return EmitLValue(E->getSubExpr());
497
Chris Lattner96196622008-07-26 22:37:01 +0000498 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000499 switch (E->getOpcode()) {
500 default: assert(0 && "Unknown unary operator lvalue!");
501 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000502 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000503 ExprTy->getAsPointerType()->getPointeeType()
504 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000505 case UnaryOperator::Real:
506 case UnaryOperator::Imag:
507 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000508 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
509 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000510 Idx, "idx"),
511 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000512 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000513}
514
515LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000516 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000517}
518
Chris Lattnerd9f69102008-08-10 01:53:14 +0000519LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000520 std::string FunctionName;
521 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
522 FunctionName = FD->getName();
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000523 } else if (isa<ObjCMethodDecl>(CurFuncDecl)) {
524 // Just get the mangled name.
525 FunctionName = CurFn->getName();
526 } else {
527 return EmitUnsupportedLValue(E, "predefined expression");
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000528 }
Anders Carlsson22742662007-07-21 05:21:51 +0000529 std::string GlobalVarName;
530
531 switch (E->getIdentType()) {
532 default:
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000533 return EmitUnsupportedLValue(E, "predefined expression");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000534 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000535 GlobalVarName = "__func__.";
536 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000537 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000538 GlobalVarName = "__FUNCTION__.";
539 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000540 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000541 // FIXME:: Demangle C++ method names
542 GlobalVarName = "__PRETTY_FUNCTION__.";
543 break;
544 }
545
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000546 GlobalVarName += FunctionName;
Anders Carlsson22742662007-07-21 05:21:51 +0000547
548 // FIXME: Can cache/reuse these within the module.
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000549 llvm::Constant *C = llvm::ConstantArray::get(FunctionName);
Anders Carlsson22742662007-07-21 05:21:51 +0000550
551 // Create a global variable for this.
552 C = new llvm::GlobalVariable(C->getType(), true,
553 llvm::GlobalValue::InternalLinkage,
554 C, GlobalVarName, CurFn->getParent());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000555 return LValue::MakeAddr(C,0);
Anders Carlsson22742662007-07-21 05:21:51 +0000556}
557
Reid Spencer5f016e22007-07-11 17:01:13 +0000558LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000559 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000560 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000561
562 // If the base is a vector type, then we are forming a vector element lvalue
563 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000564 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000565 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000566 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000567 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000568 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000569 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
570 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000571 }
572
Ted Kremenek23245122007-08-20 16:18:38 +0000573 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000574 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000575
Ted Kremenek23245122007-08-20 16:18:38 +0000576 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000577 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000578 bool IdxSigned = IdxTy->isSignedIntegerType();
579 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
580 if (IdxBitwidth != LLVMPointerWidth)
581 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
582 IdxSigned, "idxprom");
583
584 // We know that the pointer points to a type of the correct size, unless the
585 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000586 if (!E->getType()->isConstantSizeType())
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000587 return EmitUnsupportedLValue(E, "VLA index");
Chris Lattner96196622008-07-26 22:37:01 +0000588 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000589
Eli Friedman1e692ac2008-06-13 23:01:12 +0000590 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000591 ExprTy->getAsPointerType()->getPointeeType()
592 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000593}
594
Nate Begeman3b8d1162008-05-13 21:03:02 +0000595static
596llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
597 llvm::SmallVector<llvm::Constant *, 4> CElts;
598
599 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
600 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
601
602 return llvm::ConstantVector::get(&CElts[0], CElts.size());
603}
604
Chris Lattner349aaec2007-08-02 23:37:31 +0000605LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000606EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000607 // Emit the base vector as an l-value.
608 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000609
Nate Begeman3b8d1162008-05-13 21:03:02 +0000610 // Encode the element access list into a vector of unsigned indices.
611 llvm::SmallVector<unsigned, 4> Indices;
612 E->getEncodedElementAccess(Indices);
613
614 if (Base.isSimple()) {
615 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000616 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
617 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000618 }
619 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
620
621 llvm::Constant *BaseElts = Base.getExtVectorElts();
622 llvm::SmallVector<llvm::Constant *, 4> CElts;
623
624 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
625 if (isa<llvm::ConstantAggregateZero>(BaseElts))
626 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
627 else
628 CElts.push_back(BaseElts->getOperand(Indices[i]));
629 }
630 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000631 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
632 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000633}
634
Devang Patelb9b00ad2007-10-23 20:28:39 +0000635LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000636 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000637 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000638 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000639 unsigned CVRQualifiers=0;
640
Chris Lattner12f65f62007-12-02 18:52:07 +0000641 // 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 +0000642 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000643 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000644 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000645 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000646 if (PTy->getPointeeType()->isUnionType())
647 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000648 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000649 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000650 else {
651 LValue BaseLV = EmitLValue(BaseExpr);
652 // FIXME: this isn't right for bitfields.
653 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000654 if (BaseExpr->getType()->isUnionType())
655 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000656 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000657 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000658
659 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000660 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000661}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000662
Eli Friedman472778e2008-02-09 08:50:58 +0000663LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
664 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000665 bool isUnion,
666 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000667{
668 llvm::Value *V;
669 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000670
Eli Friedman1e86b342008-05-29 11:33:25 +0000671 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000672 // FIXME: CodeGenTypes should expose a method to get the appropriate
673 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000674 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000675 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000676 cast<llvm::PointerType>(BaseValue->getType());
677 unsigned AS = BaseTy->getAddressSpace();
678 BaseValue = Builder.CreateBitCast(BaseValue,
679 llvm::PointerType::get(FieldTy, AS),
680 "tmp");
681 V = Builder.CreateGEP(BaseValue,
682 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
683 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000684
685 CodeGenTypes::BitFieldInfo bitFieldInfo =
686 CGM.getTypes().getBitFieldInfo(Field);
687 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000688 Field->getType()->isSignedIntegerType(),
689 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000690 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000691
Eli Friedman1e86b342008-05-29 11:33:25 +0000692 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
693
Devang Patelabad06c2007-10-26 19:42:18 +0000694 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000695 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000696 const llvm::Type *FieldTy =
697 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000698 const llvm::PointerType * BaseTy =
699 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000700 unsigned AS = BaseTy->getAddressSpace();
701 V = Builder.CreateBitCast(V,
702 llvm::PointerType::get(FieldTy, AS),
703 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000704 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000705
Eli Friedman1e692ac2008-06-13 23:01:12 +0000706 return LValue::MakeAddr(V,
707 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000708}
709
Eli Friedman1e692ac2008-06-13 23:01:12 +0000710LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
711{
Eli Friedman06e863f2008-05-13 23:18:27 +0000712 const llvm::Type *LTy = ConvertType(E->getType());
713 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
714
715 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000716 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000717
718 if (E->getType()->isComplexType()) {
719 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
720 } else if (hasAggregateLLVMType(E->getType())) {
721 EmitAnyExpr(InitExpr, DeclPtr, false);
722 } else {
723 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
724 }
725
726 return Result;
727}
728
Reid Spencer5f016e22007-07-11 17:01:13 +0000729//===--------------------------------------------------------------------===//
730// Expression Emission
731//===--------------------------------------------------------------------===//
732
Chris Lattner7016a702007-08-20 22:37:10 +0000733
Reid Spencer5f016e22007-07-11 17:01:13 +0000734RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000735 if (const ImplicitCastExpr *IcExpr =
736 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
737 if (const DeclRefExpr *DRExpr =
738 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
739 if (const FunctionDecl *FDecl =
740 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
741 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
742 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000743
Chris Lattner7f02f722007-08-24 05:35:26 +0000744 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000745 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000746 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000747}
748
Ted Kremenek55499762008-06-17 02:43:46 +0000749RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
750 CallExpr::const_arg_iterator ArgBeg,
751 CallExpr::const_arg_iterator ArgEnd) {
752
Nate Begemane2ce1d92008-01-17 17:46:27 +0000753 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000754 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000755}
756
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000757LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
758 // Can only get l-value for binary operator expressions which are a
759 // simple assignment of aggregate type.
760 if (E->getOpcode() != BinaryOperator::Assign)
761 return EmitUnsupportedLValue(E, "binary l-value expression");
762
763 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
764 EmitAggExpr(E, Temp, false);
765 // FIXME: Are these qualifiers correct?
766 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
767}
768
Christopher Lamb22c940e2007-12-29 05:02:41 +0000769LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
770 // Can only get l-value for call expression returning aggregate type
771 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000772 // FIXME: can this be volatile?
773 return LValue::MakeAddr(RV.getAggregateAddr(),
774 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000775}
776
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000777LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
778 // Can only get l-value for message expression returning aggregate type
779 RValue RV = EmitObjCMessageExpr(E);
780 // FIXME: can this be volatile?
781 return LValue::MakeAddr(RV.getAggregateAddr(),
782 E->getType().getCVRQualifiers());
783}
784
Chris Lattner391d77a2008-03-30 23:03:07 +0000785LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
786 // Objective-C objects are traditionally C structures with their layout
787 // defined at compile-time. In some implementations, their layout is not
788 // defined until run time in order to allow instance variables to be added to
789 // a class without recompiling all of the subclasses. If this is the case
790 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
791 // implement the lookup itself.
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000792 if (CGM.getObjCRuntime().LateBoundIVars()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000793 return EmitUnsupportedLValue(E, "late-bound instance variables");
Chris Lattner391d77a2008-03-30 23:03:07 +0000794 }
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000795
Anders Carlsson29b7e502008-08-25 01:53:23 +0000796 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
797 llvm::Value *BaseValue = 0;
798 const Expr *BaseExpr = E->getBase();
799 unsigned CVRQualifiers = 0;
800 if (E->isArrow()) {
801 BaseValue = EmitScalarExpr(BaseExpr);
802 const PointerType *PTy =
803 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
804 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
805 } else {
806 LValue BaseLV = EmitLValue(BaseExpr);
807 // FIXME: this isn't right for bitfields.
808 BaseValue = BaseLV.getAddress();
809 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
810 }
Chris Lattnerce5605e2008-03-30 23:25:33 +0000811
Anders Carlsson29b7e502008-08-25 01:53:23 +0000812 const ObjCIvarDecl *Field = E->getDecl();
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000813 if (Field->isBitField())
814 return EmitUnsupportedLValue(E, "ivar bitfields");
Anders Carlsson29b7e502008-08-25 01:53:23 +0000815
816 // TODO: Add a special case for isa (index 0)
817 unsigned Index = CGM.getTypes().getLLVMFieldNo(Field);
818
819 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
820 return LValue::MakeAddr(V,
821 Field->getType().getCVRQualifiers()|CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +0000822}
823
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000824LValue
825CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
826 // This is a special l-value that just issues sends when we load or
827 // store through it.
828 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
829}
830
Nate Begemane2ce1d92008-01-17 17:46:27 +0000831RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek55499762008-06-17 02:43:46 +0000832 CallExpr::const_arg_iterator ArgBeg,
833 CallExpr::const_arg_iterator ArgEnd) {
834
Reid Spencer5f016e22007-07-11 17:01:13 +0000835 // The callee type will always be a pointer to function type, get the function
836 // type.
Chris Lattner96196622008-07-26 22:37:01 +0000837 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner05d2fb42008-07-31 04:58:58 +0000838 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000839
840 CallArgList Args;
841 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
842 EmitCallArg(*I, Args);
843
844 return EmitCall(Callee, ResultType, Args);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000845}
Eli Friedman5193b8a2008-01-30 01:32:06 +0000846
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000847// FIXME: Merge the following two functions.
848void CodeGenFunction::EmitCallArg(RValue RV, QualType Ty,
849 CallArgList &Args) {
850 llvm::Value *ArgValue;
851
852 if (RV.isScalar()) {
853 ArgValue = RV.getScalarVal();
854 } else if (RV.isComplex()) {
855 // Make a temporary alloca to pass the argument.
856 ArgValue = CreateTempAlloca(ConvertType(Ty));
857 StoreComplexToAddr(RV.getComplexVal(), ArgValue, false);
858 } else {
859 ArgValue = RV.getAggregateAddr();
860 }
861
862 Args.push_back(std::make_pair(ArgValue, Ty));
863}
864
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000865void CodeGenFunction::EmitCallArg(const Expr *E, CallArgList &Args) {
866 QualType ArgTy = E->getType();
867 llvm::Value *ArgValue;
Reid Spencer5f016e22007-07-11 17:01:13 +0000868
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000869 if (!hasAggregateLLVMType(ArgTy)) {
870 // Scalar argument is passed by-value.
871 ArgValue = EmitScalarExpr(E);
872 } else if (ArgTy->isAnyComplexType()) {
873 // Make a temporary alloca to pass the argument.
874 ArgValue = CreateTempAlloca(ConvertType(ArgTy));
875 EmitComplexExprIntoAddr(E, ArgValue, false);
876 } else {
877 ArgValue = CreateTempAlloca(ConvertType(ArgTy));
878 EmitAggExpr(E, ArgValue, false);
879 }
880
881 Args.push_back(std::make_pair(ArgValue, E->getType()));
882}
883
884RValue CodeGenFunction::EmitCall(llvm::Value *Callee,
885 QualType ResultType,
886 const CallArgList &CallArgs) {
887 llvm::SmallVector<llvm::Value*, 16> Args;
888 llvm::Value *TempArg0 = 0;
889
Chris Lattnercc666af2007-08-10 17:02:28 +0000890 // Handle struct-return functions by passing a pointer to the location that
891 // we would like to return into.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000892 if (hasAggregateLLVMType(ResultType)) {
Chris Lattnercc666af2007-08-10 17:02:28 +0000893 // Create a temporary alloca to hold the result of the call. :(
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000894 TempArg0 = CreateTempAlloca(ConvertType(ResultType));
895 Args.push_back(TempArg0);
Chris Lattnercc666af2007-08-10 17:02:28 +0000896 }
897
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000898 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
899 I != E; ++I)
900 Args.push_back(I->first);
Reid Spencer5f016e22007-07-11 17:01:13 +0000901
Nate Begemanec9426c2008-03-09 03:09:36 +0000902 llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000903
904 // Note that there is parallel code in SetFunctionAttributes in CodeGenModule
905 llvm::SmallVector<llvm::ParamAttrsWithIndex, 8> ParamAttrList;
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000906 unsigned Index = 1;
907 if (TempArg0) {
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000908 ParamAttrList.push_back(
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000909 llvm::ParamAttrsWithIndex::get(Index, llvm::ParamAttr::StructRet));
910 ++Index;
911 }
912
913 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
914 I != E; ++I, ++Index) {
915 QualType ParamType = I->second;
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000916 unsigned ParamAttrs = 0;
917 if (ParamType->isRecordType())
918 ParamAttrs |= llvm::ParamAttr::ByVal;
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000919 if (ParamType->isPromotableIntegerType()) {
920 if (ParamType->isSignedIntegerType()) {
921 ParamAttrs |= llvm::ParamAttr::SExt;
922 } else if (ParamType->isUnsignedIntegerType()) {
923 ParamAttrs |= llvm::ParamAttr::ZExt;
924 }
925 }
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000926 if (ParamAttrs)
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000927 ParamAttrList.push_back(llvm::ParamAttrsWithIndex::get(Index,
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000928 ParamAttrs));
929 }
930 CI->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
931 ParamAttrList.size()));
932
Nate Begemanec9426c2008-03-09 03:09:36 +0000933 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
934 CI->setCallingConv(F->getCallingConv());
935 if (CI->getType() != llvm::Type::VoidTy)
936 CI->setName("call");
Chris Lattner9b2dc282008-04-04 16:54:41 +0000937 else if (ResultType->isAnyComplexType())
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000938 return RValue::getComplex(LoadComplexFromAddr(TempArg0, false));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000939 else if (hasAggregateLLVMType(ResultType))
Chris Lattnercc666af2007-08-10 17:02:28 +0000940 // Struct return.
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000941 return RValue::getAggregate(TempArg0);
Chris Lattner2202bce2007-11-30 17:56:23 +0000942 else {
943 // void return.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000944 assert(ResultType->isVoidType() && "Should only have a void expr here");
Nate Begemanec9426c2008-03-09 03:09:36 +0000945 CI = 0;
Chris Lattner2202bce2007-11-30 17:56:23 +0000946 }
Chris Lattnercc666af2007-08-10 17:02:28 +0000947
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000948 return RValue::get(CI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000949}