blob: c8aa26155e2967ded1e7557b7aa0e1d92a127cae [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000016#include "CGObjCRuntime.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000019#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21using namespace CodeGen;
22
23//===--------------------------------------------------------------------===//
24// Miscellaneous Helper Methods
25//===--------------------------------------------------------------------===//
26
27/// CreateTempAlloca - This creates a alloca and inserts it into the entry
28/// block.
29llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
30 const char *Name) {
31 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
32}
33
34/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
35/// expression and compare the result against zero, returning an Int1Ty value.
36llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000037 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000038 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000039 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000040
Chris Lattner9069fa22007-08-26 16:46:58 +000041 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000042}
43
Chris Lattner9b655512007-08-31 22:49:20 +000044/// EmitAnyExpr - Emit code to compute the specified expression which can have
45/// any type. The result is returned as an RValue struct. If this is an
46/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
47/// the result should be returned.
48RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
49 bool isAggLocVolatile) {
50 if (!hasAggregateLLVMType(E->getType()))
51 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000052 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000053 return RValue::getComplex(EmitComplexExpr(E));
54
55 EmitAggExpr(E, AggLoc, isAggLocVolatile);
56 return RValue::getAggregate(AggLoc);
57}
58
Dan Gohman4f8d1232008-05-22 00:50:06 +000059/// getAccessedFieldNo - Given an encoded value and a result number, return
60/// the input field number being accessed.
61unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
62 const llvm::Constant *Elts) {
63 if (isa<llvm::ConstantAggregateZero>(Elts))
64 return 0;
65
66 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
67}
68
Chris Lattner9b655512007-08-31 22:49:20 +000069
Reid Spencer5f016e22007-07-11 17:01:13 +000070//===----------------------------------------------------------------------===//
71// LValue Expression Emission
72//===----------------------------------------------------------------------===//
73
Daniel Dunbar6ba82a42008-08-25 20:45:57 +000074LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
75 const char *Name) {
76 ErrorUnsupported(E, Name);
77 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
78 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
79 E->getType().getCVRQualifiers());
80}
81
Reid Spencer5f016e22007-07-11 17:01:13 +000082/// EmitLValue - Emit code to compute a designator that specifies the location
83/// of the expression.
84///
85/// This can return one of two things: a simple address or a bitfield
86/// reference. In either case, the LLVM Value* in the LValue structure is
87/// guaranteed to be an LLVM pointer type.
88///
89/// If this returns a bitfield reference, nothing about the pointee type of
90/// the LLVM value is known: For example, it may not be a pointer to an
91/// integer.
92///
93/// If this returns a normal address, and if the lvalue's C type is fixed
94/// size, this method guarantees that the returned pointer type will point to
95/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
96/// variable length type, this is not possible.
97///
98LValue CodeGenFunction::EmitLValue(const Expr *E) {
99 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000100 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000101
Christopher Lamb22c940e2007-12-29 05:02:41 +0000102 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000103 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
104 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000105 case Expr::PredefinedExprClass:
106 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 case Expr::StringLiteralClass:
108 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000109
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000110 case Expr::ObjCMessageExprClass:
111 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000112 case Expr::ObjCIvarRefExprClass:
113 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000114 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000115 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000116
117 case Expr::UnaryOperatorClass:
118 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
119 case Expr::ArraySubscriptExprClass:
120 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000121 case Expr::ExtVectorElementExprClass:
122 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000123 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000124 case Expr::CompoundLiteralExprClass:
125 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000126 }
127}
128
129/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
130/// this method emits the address of the lvalue, then loads the result as an
131/// rvalue, returning the rvalue.
132RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000133 if (LV.isSimple()) {
134 llvm::Value *Ptr = LV.getAddress();
135 const llvm::Type *EltTy =
136 cast<llvm::PointerType>(Ptr->getType())->getElementType();
137
138 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000139 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000140 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000141
142 // Bool can have different representation in memory than in registers.
143 if (ExprType->isBooleanType()) {
144 if (V->getType() != llvm::Type::Int1Ty)
145 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
146 }
147
148 return RValue::get(V);
149 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000150
Chris Lattner883f6a72007-08-11 00:04:45 +0000151 assert(ExprType->isFunctionType() && "Unknown scalar value");
152 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000153 }
154
155 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000156 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
157 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000158 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
159 "vecext"));
160 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000161
162 // If this is a reference to a subset of the elements of a vector, either
163 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000164 if (LV.isExtVectorElt())
165 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000166
167 if (LV.isBitfield())
168 return EmitLoadOfBitfieldLValue(LV, ExprType);
169
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000170 if (LV.isPropertyRef())
171 return EmitLoadOfPropertyRefLValue(LV, ExprType);
172
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000173 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000174 //an invalid RValue, but the assert will
175 //ensure that this point is never reached
176 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000177}
178
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000179RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
180 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000181 unsigned StartBit = LV.getBitfieldStartBit();
182 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000183 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000184
185 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000186 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000187 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000188
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000189 // In some cases the bitfield may straddle two memory locations.
190 // Currently we load the entire bitfield, then do the magic to
191 // sign-extend it if necessary. This results in somewhat more code
192 // than necessary for the common case (one load), since two shifts
193 // accomplish both the masking and sign extension.
194 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
195 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
196
197 // Shift to proper location.
198 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
199 "bf.lo");
200
201 // Mask off unused bits.
202 llvm::Constant *LowMask =
203 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
204 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
205
206 // Fetch the high bits if necessary.
207 if (LowBits < BitfieldSize) {
208 unsigned HighBits = BitfieldSize - LowBits;
209 llvm::Value *HighPtr =
210 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
211 "bf.ptr.hi");
212 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
213 LV.isVolatileQualified(),
214 "tmp");
215
216 // Mask off unused bits.
217 llvm::Constant *HighMask =
218 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
219 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000220
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000221 // Shift to proper location and or in to bitfield value.
222 HighVal = Builder.CreateShl(HighVal,
223 llvm::ConstantInt::get(EltTy, LowBits));
224 Val = Builder.CreateOr(Val, HighVal, "bf.val");
225 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000226
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000227 // Sign extend if necessary.
228 if (LV.isBitfieldSigned()) {
229 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
230 EltTySize - BitfieldSize);
231 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
232 ExtraBits, "bf.val.sext");
233 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000234
235 // The bitfield type and the normal type differ when the storage sizes
236 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000237 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000238
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000239 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000240}
241
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000242RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
243 QualType ExprType) {
244 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
245}
246
Chris Lattner34cdc862007-08-03 16:18:34 +0000247// If this is a reference to a subset of the elements of a vector, either
248// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000249RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
250 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000251 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
252 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000253
Nate Begeman8a997642008-05-09 06:41:27 +0000254 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000255
256 // If the result of the expression is a non-vector type, we must be
257 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000258 const VectorType *ExprVT = ExprType->getAsVectorType();
259 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000260 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000261 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
262 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
263 }
264
265 // If the source and destination have the same number of elements, use a
266 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000267 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000268 unsigned NumSourceElts =
269 cast<llvm::VectorType>(Vec->getType())->getNumElements();
270
271 if (NumResultElts == NumSourceElts) {
272 llvm::SmallVector<llvm::Constant*, 4> Mask;
273 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000274 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000275 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
276 }
277
278 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
279 Vec = Builder.CreateShuffleVector(Vec,
280 llvm::UndefValue::get(Vec->getType()),
281 MaskV, "tmp");
282 return RValue::get(Vec);
283 }
284
285 // Start out with an undef of the result type.
286 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
287
288 // Extract/Insert each element of the result.
289 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000290 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000291 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
292 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
293
294 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
295 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
296 }
297
298 return RValue::get(Result);
299}
300
301
Reid Spencer5f016e22007-07-11 17:01:13 +0000302
303/// EmitStoreThroughLValue - Store the specified rvalue into the specified
304/// lvalue, where both are guaranteed to the have the same type, and that type
305/// is 'Ty'.
306void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
307 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000308 if (!Dst.isSimple()) {
309 if (Dst.isVectorElt()) {
310 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000311 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
312 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000313 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000314 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000315 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000316 return;
317 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000318
Nate Begeman213541a2008-04-18 23:10:10 +0000319 // If this is an update of extended vector elements, insert them as
320 // appropriate.
321 if (Dst.isExtVectorElt())
322 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000323
324 if (Dst.isBitfield())
325 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
326
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000327 if (Dst.isPropertyRef())
328 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
329
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000330 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000331 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000332
333 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000334 assert(Src.isScalar() && "Can't emit an agg store with this method");
335 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000336 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000337 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
338 const llvm::Type *AddrTy = DstPtr->getElementType();
339 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000340
Chris Lattner883f6a72007-08-11 00:04:45 +0000341 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000342 DstAddr = Builder.CreateBitCast(DstAddr,
343 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000344 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000345 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000346}
347
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000348void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
349 QualType Ty) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000350 unsigned StartBit = Dst.getBitfieldStartBit();
351 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000352 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000353
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000354 const llvm::Type *EltTy =
355 cast<llvm::PointerType>(Ptr->getType())->getElementType();
356 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
357
358 // Get the new value, cast to the appropriate type and masked to
359 // exactly the size of the bit-field.
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000360 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000361 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
362 llvm::Constant *Mask =
363 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
364 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000365
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000366 // In some cases the bitfield may straddle two memory locations.
367 // Emit the low part first and check to see if the high needs to be
368 // done.
369 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
370 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
371 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000372
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000373 // Compute the mask for zero-ing the low part of this bitfield.
374 llvm::Constant *InvMask =
375 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
376 StartBit + LowBits));
377
378 // Compute the new low part as
379 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
380 // with the shift of NewVal implicitly stripping the high bits.
381 llvm::Value *NewLowVal =
382 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
383 "bf.value.lo");
384 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
385 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
386
387 // Write back.
388 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000389
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000390 // If the low part doesn't cover the bitfield emit a high part.
391 if (LowBits < BitfieldSize) {
392 unsigned HighBits = BitfieldSize - LowBits;
393 llvm::Value *HighPtr =
394 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
395 "bf.ptr.hi");
396 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
397 Dst.isVolatileQualified(),
398 "bf.prev.hi");
399
400 // Compute the mask for zero-ing the high part of this bitfield.
401 llvm::Constant *InvMask =
402 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
403
404 // Compute the new high part as
405 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
406 // where the high bits of NewVal have already been cleared and the
407 // shift stripping the low bits.
408 llvm::Value *NewHighVal =
409 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
410 "bf.value.high");
411 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
412 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
413
414 // Write back.
415 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
416 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000417}
418
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000419void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
420 LValue Dst,
421 QualType Ty) {
422 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
423}
424
Nate Begeman213541a2008-04-18 23:10:10 +0000425void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
426 LValue Dst,
427 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000428 // This access turns into a read/modify/write of the vector. Load the input
429 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000430 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
431 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000432 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000433
Chris Lattner9b655512007-08-31 22:49:20 +0000434 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000435
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000436 if (const VectorType *VTy = Ty->getAsVectorType()) {
437 unsigned NumSrcElts = VTy->getNumElements();
438
439 // Extract/Insert each element.
440 for (unsigned i = 0; i != NumSrcElts; ++i) {
441 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
442 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
443
Dan Gohman4f8d1232008-05-22 00:50:06 +0000444 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000445 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
446 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
447 }
448 } else {
449 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000450 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000451 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
452 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000453 }
454
Eli Friedman1e692ac2008-06-13 23:01:12 +0000455 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000456}
457
Reid Spencer5f016e22007-07-11 17:01:13 +0000458
459LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000460 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
461
Chris Lattner41110242008-06-17 18:05:57 +0000462 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
463 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000464 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000465 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000466 E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000467 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000468 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000469 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000470 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000471 }
Steve Naroff248a7532008-04-15 22:42:06 +0000472 } else if (VD && VD->isFileVarDecl()) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000473 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000474 E->getType().getCVRQualifiers());
Steve Naroff248a7532008-04-15 22:42:06 +0000475 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000476 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000477 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000478 }
Chris Lattner41110242008-06-17 18:05:57 +0000479 else if (const ImplicitParamDecl *IPD =
480 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
481 llvm::Value *V = LocalDeclMap[IPD];
482 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
483 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
484 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000485 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000486 //an invalid LValue, but the assert will
487 //ensure that this point is never reached.
488 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000489}
490
491LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
492 // __extension__ doesn't affect lvalue-ness.
493 if (E->getOpcode() == UnaryOperator::Extension)
494 return EmitLValue(E->getSubExpr());
495
Chris Lattner96196622008-07-26 22:37:01 +0000496 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000497 switch (E->getOpcode()) {
498 default: assert(0 && "Unknown unary operator lvalue!");
499 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000500 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000501 ExprTy->getAsPointerType()->getPointeeType()
502 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000503 case UnaryOperator::Real:
504 case UnaryOperator::Imag:
505 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000506 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
507 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000508 Idx, "idx"),
509 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000510 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000511}
512
513LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000514 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000515}
516
Chris Lattnerd9f69102008-08-10 01:53:14 +0000517LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000518 std::string FunctionName;
519 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
520 FunctionName = FD->getName();
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000521 } else if (isa<ObjCMethodDecl>(CurFuncDecl)) {
522 // Just get the mangled name.
523 FunctionName = CurFn->getName();
524 } else {
525 return EmitUnsupportedLValue(E, "predefined expression");
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000526 }
Anders Carlsson22742662007-07-21 05:21:51 +0000527 std::string GlobalVarName;
528
529 switch (E->getIdentType()) {
530 default:
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000531 return EmitUnsupportedLValue(E, "predefined expression");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000532 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000533 GlobalVarName = "__func__.";
534 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000535 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000536 GlobalVarName = "__FUNCTION__.";
537 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000538 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000539 // FIXME:: Demangle C++ method names
540 GlobalVarName = "__PRETTY_FUNCTION__.";
541 break;
542 }
543
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000544 GlobalVarName += FunctionName;
Anders Carlsson22742662007-07-21 05:21:51 +0000545
546 // FIXME: Can cache/reuse these within the module.
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000547 llvm::Constant *C = llvm::ConstantArray::get(FunctionName);
Anders Carlsson22742662007-07-21 05:21:51 +0000548
549 // Create a global variable for this.
550 C = new llvm::GlobalVariable(C->getType(), true,
551 llvm::GlobalValue::InternalLinkage,
552 C, GlobalVarName, CurFn->getParent());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000553 return LValue::MakeAddr(C,0);
Anders Carlsson22742662007-07-21 05:21:51 +0000554}
555
Reid Spencer5f016e22007-07-11 17:01:13 +0000556LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000557 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000558 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000559
560 // If the base is a vector type, then we are forming a vector element lvalue
561 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000562 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000563 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000564 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000565 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000566 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000567 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
568 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000569 }
570
Ted Kremenek23245122007-08-20 16:18:38 +0000571 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000572 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000573
Ted Kremenek23245122007-08-20 16:18:38 +0000574 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000575 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000576 bool IdxSigned = IdxTy->isSignedIntegerType();
577 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
578 if (IdxBitwidth != LLVMPointerWidth)
579 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
580 IdxSigned, "idxprom");
581
582 // We know that the pointer points to a type of the correct size, unless the
583 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000584 if (!E->getType()->isConstantSizeType())
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000585 return EmitUnsupportedLValue(E, "VLA index");
Chris Lattner96196622008-07-26 22:37:01 +0000586 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000587
Eli Friedman1e692ac2008-06-13 23:01:12 +0000588 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000589 ExprTy->getAsPointerType()->getPointeeType()
590 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000591}
592
Nate Begeman3b8d1162008-05-13 21:03:02 +0000593static
594llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
595 llvm::SmallVector<llvm::Constant *, 4> CElts;
596
597 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
598 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
599
600 return llvm::ConstantVector::get(&CElts[0], CElts.size());
601}
602
Chris Lattner349aaec2007-08-02 23:37:31 +0000603LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000604EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000605 // Emit the base vector as an l-value.
606 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000607
Nate Begeman3b8d1162008-05-13 21:03:02 +0000608 // Encode the element access list into a vector of unsigned indices.
609 llvm::SmallVector<unsigned, 4> Indices;
610 E->getEncodedElementAccess(Indices);
611
612 if (Base.isSimple()) {
613 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000614 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
615 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000616 }
617 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
618
619 llvm::Constant *BaseElts = Base.getExtVectorElts();
620 llvm::SmallVector<llvm::Constant *, 4> CElts;
621
622 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
623 if (isa<llvm::ConstantAggregateZero>(BaseElts))
624 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
625 else
626 CElts.push_back(BaseElts->getOperand(Indices[i]));
627 }
628 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000629 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
630 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000631}
632
Devang Patelb9b00ad2007-10-23 20:28:39 +0000633LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000634 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000635 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000636 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000637 unsigned CVRQualifiers=0;
638
Chris Lattner12f65f62007-12-02 18:52:07 +0000639 // 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 +0000640 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000641 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000642 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000643 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000644 if (PTy->getPointeeType()->isUnionType())
645 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000646 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000647 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000648 else {
649 LValue BaseLV = EmitLValue(BaseExpr);
650 // FIXME: this isn't right for bitfields.
651 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000652 if (BaseExpr->getType()->isUnionType())
653 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000654 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000655 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000656
657 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000658 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000659}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000660
Eli Friedman472778e2008-02-09 08:50:58 +0000661LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
662 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000663 bool isUnion,
664 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000665{
666 llvm::Value *V;
667 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000668
Eli Friedman1e86b342008-05-29 11:33:25 +0000669 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000670 // FIXME: CodeGenTypes should expose a method to get the appropriate
671 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000672 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000673 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000674 cast<llvm::PointerType>(BaseValue->getType());
675 unsigned AS = BaseTy->getAddressSpace();
676 BaseValue = Builder.CreateBitCast(BaseValue,
677 llvm::PointerType::get(FieldTy, AS),
678 "tmp");
679 V = Builder.CreateGEP(BaseValue,
680 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
681 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000682
683 CodeGenTypes::BitFieldInfo bitFieldInfo =
684 CGM.getTypes().getBitFieldInfo(Field);
685 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000686 Field->getType()->isSignedIntegerType(),
687 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000688 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000689
Eli Friedman1e86b342008-05-29 11:33:25 +0000690 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
691
Devang Patelabad06c2007-10-26 19:42:18 +0000692 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000693 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000694 const llvm::Type *FieldTy =
695 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000696 const llvm::PointerType * BaseTy =
697 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000698 unsigned AS = BaseTy->getAddressSpace();
699 V = Builder.CreateBitCast(V,
700 llvm::PointerType::get(FieldTy, AS),
701 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000702 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000703
Eli Friedman1e692ac2008-06-13 23:01:12 +0000704 return LValue::MakeAddr(V,
705 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000706}
707
Eli Friedman1e692ac2008-06-13 23:01:12 +0000708LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
709{
Eli Friedman06e863f2008-05-13 23:18:27 +0000710 const llvm::Type *LTy = ConvertType(E->getType());
711 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
712
713 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000714 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000715
716 if (E->getType()->isComplexType()) {
717 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
718 } else if (hasAggregateLLVMType(E->getType())) {
719 EmitAnyExpr(InitExpr, DeclPtr, false);
720 } else {
721 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
722 }
723
724 return Result;
725}
726
Reid Spencer5f016e22007-07-11 17:01:13 +0000727//===--------------------------------------------------------------------===//
728// Expression Emission
729//===--------------------------------------------------------------------===//
730
Chris Lattner7016a702007-08-20 22:37:10 +0000731
Reid Spencer5f016e22007-07-11 17:01:13 +0000732RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000733 if (const ImplicitCastExpr *IcExpr =
734 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
735 if (const DeclRefExpr *DRExpr =
736 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
737 if (const FunctionDecl *FDecl =
738 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
739 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
740 return EmitBuiltinExpr(builtinID, E);
741
Chris Lattner7f02f722007-08-24 05:35:26 +0000742 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000743 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000744 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000745}
746
Ted Kremenek55499762008-06-17 02:43:46 +0000747RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
748 CallExpr::const_arg_iterator ArgBeg,
749 CallExpr::const_arg_iterator ArgEnd) {
750
Nate Begemane2ce1d92008-01-17 17:46:27 +0000751 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000752 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000753}
754
Christopher Lamb22c940e2007-12-29 05:02:41 +0000755LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
756 // Can only get l-value for call expression returning aggregate type
757 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000758 // FIXME: can this be volatile?
759 return LValue::MakeAddr(RV.getAggregateAddr(),
760 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000761}
762
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000763LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
764 // Can only get l-value for message expression returning aggregate type
765 RValue RV = EmitObjCMessageExpr(E);
766 // FIXME: can this be volatile?
767 return LValue::MakeAddr(RV.getAggregateAddr(),
768 E->getType().getCVRQualifiers());
769}
770
Chris Lattner391d77a2008-03-30 23:03:07 +0000771LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
772 // Objective-C objects are traditionally C structures with their layout
773 // defined at compile-time. In some implementations, their layout is not
774 // defined until run time in order to allow instance variables to be added to
775 // a class without recompiling all of the subclasses. If this is the case
776 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
777 // implement the lookup itself.
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000778 if (CGM.getObjCRuntime().LateBoundIVars()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000779 return EmitUnsupportedLValue(E, "late-bound instance variables");
Chris Lattner391d77a2008-03-30 23:03:07 +0000780 }
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000781
Anders Carlsson29b7e502008-08-25 01:53:23 +0000782 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
783 llvm::Value *BaseValue = 0;
784 const Expr *BaseExpr = E->getBase();
785 unsigned CVRQualifiers = 0;
786 if (E->isArrow()) {
787 BaseValue = EmitScalarExpr(BaseExpr);
788 const PointerType *PTy =
789 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
790 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
791 } else {
792 LValue BaseLV = EmitLValue(BaseExpr);
793 // FIXME: this isn't right for bitfields.
794 BaseValue = BaseLV.getAddress();
795 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
796 }
Chris Lattnerce5605e2008-03-30 23:25:33 +0000797
Anders Carlsson29b7e502008-08-25 01:53:23 +0000798 const ObjCIvarDecl *Field = E->getDecl();
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000799 if (Field->isBitField())
800 return EmitUnsupportedLValue(E, "ivar bitfields");
Anders Carlsson29b7e502008-08-25 01:53:23 +0000801
802 // TODO: Add a special case for isa (index 0)
803 unsigned Index = CGM.getTypes().getLLVMFieldNo(Field);
804
805 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
806 return LValue::MakeAddr(V,
807 Field->getType().getCVRQualifiers()|CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +0000808}
809
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000810LValue
811CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
812 // This is a special l-value that just issues sends when we load or
813 // store through it.
814 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
815}
816
Nate Begemane2ce1d92008-01-17 17:46:27 +0000817RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek55499762008-06-17 02:43:46 +0000818 CallExpr::const_arg_iterator ArgBeg,
819 CallExpr::const_arg_iterator ArgEnd) {
820
Reid Spencer5f016e22007-07-11 17:01:13 +0000821 // The callee type will always be a pointer to function type, get the function
822 // type.
Chris Lattner96196622008-07-26 22:37:01 +0000823 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner05d2fb42008-07-31 04:58:58 +0000824 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000825
826 CallArgList Args;
827 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
828 EmitCallArg(*I, Args);
829
830 return EmitCall(Callee, ResultType, Args);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000831}
Eli Friedman5193b8a2008-01-30 01:32:06 +0000832
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000833void CodeGenFunction::EmitCallArg(const Expr *E, CallArgList &Args) {
834 QualType ArgTy = E->getType();
835 llvm::Value *ArgValue;
Reid Spencer5f016e22007-07-11 17:01:13 +0000836
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000837 if (!hasAggregateLLVMType(ArgTy)) {
838 // Scalar argument is passed by-value.
839 ArgValue = EmitScalarExpr(E);
840 } else if (ArgTy->isAnyComplexType()) {
841 // Make a temporary alloca to pass the argument.
842 ArgValue = CreateTempAlloca(ConvertType(ArgTy));
843 EmitComplexExprIntoAddr(E, ArgValue, false);
844 } else {
845 ArgValue = CreateTempAlloca(ConvertType(ArgTy));
846 EmitAggExpr(E, ArgValue, false);
847 }
848
849 Args.push_back(std::make_pair(ArgValue, E->getType()));
850}
851
852RValue CodeGenFunction::EmitCall(llvm::Value *Callee,
853 QualType ResultType,
854 const CallArgList &CallArgs) {
855 llvm::SmallVector<llvm::Value*, 16> Args;
856 llvm::Value *TempArg0 = 0;
857
Chris Lattnercc666af2007-08-10 17:02:28 +0000858 // Handle struct-return functions by passing a pointer to the location that
859 // we would like to return into.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000860 if (hasAggregateLLVMType(ResultType)) {
Chris Lattnercc666af2007-08-10 17:02:28 +0000861 // Create a temporary alloca to hold the result of the call. :(
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000862 TempArg0 = CreateTempAlloca(ConvertType(ResultType));
863 Args.push_back(TempArg0);
Chris Lattnercc666af2007-08-10 17:02:28 +0000864 }
865
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000866 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
867 I != E; ++I)
868 Args.push_back(I->first);
Reid Spencer5f016e22007-07-11 17:01:13 +0000869
Nate Begemanec9426c2008-03-09 03:09:36 +0000870 llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000871
872 // Note that there is parallel code in SetFunctionAttributes in CodeGenModule
873 llvm::SmallVector<llvm::ParamAttrsWithIndex, 8> ParamAttrList;
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000874 unsigned Index = 1;
875 if (TempArg0) {
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000876 ParamAttrList.push_back(
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000877 llvm::ParamAttrsWithIndex::get(Index, llvm::ParamAttr::StructRet));
878 ++Index;
879 }
880
881 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
882 I != E; ++I, ++Index) {
883 QualType ParamType = I->second;
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000884 unsigned ParamAttrs = 0;
885 if (ParamType->isRecordType())
886 ParamAttrs |= llvm::ParamAttr::ByVal;
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000887 if (ParamType->isPromotableIntegerType()) {
888 if (ParamType->isSignedIntegerType()) {
889 ParamAttrs |= llvm::ParamAttr::SExt;
890 } else if (ParamType->isUnsignedIntegerType()) {
891 ParamAttrs |= llvm::ParamAttr::ZExt;
892 }
893 }
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000894 if (ParamAttrs)
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000895 ParamAttrList.push_back(llvm::ParamAttrsWithIndex::get(Index,
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000896 ParamAttrs));
897 }
898 CI->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
899 ParamAttrList.size()));
900
Nate Begemanec9426c2008-03-09 03:09:36 +0000901 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
902 CI->setCallingConv(F->getCallingConv());
903 if (CI->getType() != llvm::Type::VoidTy)
904 CI->setName("call");
Chris Lattner9b2dc282008-04-04 16:54:41 +0000905 else if (ResultType->isAnyComplexType())
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000906 return RValue::getComplex(LoadComplexFromAddr(TempArg0, false));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000907 else if (hasAggregateLLVMType(ResultType))
Chris Lattnercc666af2007-08-10 17:02:28 +0000908 // Struct return.
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000909 return RValue::getAggregate(TempArg0);
Chris Lattner2202bce2007-11-30 17:56:23 +0000910 else {
911 // void return.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000912 assert(ResultType->isVoidType() && "Should only have a void expr here");
Nate Begemanec9426c2008-03-09 03:09:36 +0000913 CI = 0;
Chris Lattner2202bce2007-11-30 17:56:23 +0000914 }
Chris Lattnercc666af2007-08-10 17:02:28 +0000915
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000916 return RValue::get(CI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000917}