blob: 8a978160d00b6be65175f2aaebe5d4f0e97cf611 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22using namespace CodeGen;
23
24//===--------------------------------------------------------------------===//
25// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
28/// CreateTempAlloca - This creates a alloca and inserts it into the entry
29/// block.
30llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
31 const char *Name) {
32 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
33}
34
35/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
36/// expression and compare the result against zero, returning an Int1Ty value.
37llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000038 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000039 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000040 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000041
Chris Lattner9069fa22007-08-26 16:46:58 +000042 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000043}
44
Chris Lattner9b655512007-08-31 22:49:20 +000045/// EmitAnyExpr - Emit code to compute the specified expression which can have
46/// any type. The result is returned as an RValue struct. If this is an
47/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
48/// the result should be returned.
49RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
50 bool isAggLocVolatile) {
51 if (!hasAggregateLLVMType(E->getType()))
52 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000053 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000054 return RValue::getComplex(EmitComplexExpr(E));
55
56 EmitAggExpr(E, AggLoc, isAggLocVolatile);
57 return RValue::getAggregate(AggLoc);
58}
59
Dan Gohman4f8d1232008-05-22 00:50:06 +000060/// getAccessedFieldNo - Given an encoded value and a result number, return
61/// the input field number being accessed.
62unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
63 const llvm::Constant *Elts) {
64 if (isa<llvm::ConstantAggregateZero>(Elts))
65 return 0;
66
67 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
68}
69
Chris Lattner9b655512007-08-31 22:49:20 +000070
Reid Spencer5f016e22007-07-11 17:01:13 +000071//===----------------------------------------------------------------------===//
72// LValue Expression Emission
73//===----------------------------------------------------------------------===//
74
Daniel Dunbar6ba82a42008-08-25 20:45:57 +000075LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
76 const char *Name) {
77 ErrorUnsupported(E, Name);
78 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
79 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
80 E->getType().getCVRQualifiers());
81}
82
Reid Spencer5f016e22007-07-11 17:01:13 +000083/// EmitLValue - Emit code to compute a designator that specifies the location
84/// of the expression.
85///
86/// This can return one of two things: a simple address or a bitfield
87/// reference. In either case, the LLVM Value* in the LValue structure is
88/// guaranteed to be an LLVM pointer type.
89///
90/// If this returns a bitfield reference, nothing about the pointee type of
91/// the LLVM value is known: For example, it may not be a pointer to an
92/// integer.
93///
94/// If this returns a normal address, and if the lvalue's C type is fixed
95/// size, this method guarantees that the returned pointer type will point to
96/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
97/// variable length type, this is not possible.
98///
99LValue CodeGenFunction::EmitLValue(const Expr *E) {
100 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000101 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000102
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000103 case Expr::BinaryOperatorClass:
104 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Christopher Lamb22c940e2007-12-29 05:02:41 +0000105 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000106 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
107 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000108 case Expr::PredefinedExprClass:
109 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 case Expr::StringLiteralClass:
111 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000112
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000113 case Expr::ObjCMessageExprClass:
114 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000115 case Expr::ObjCIvarRefExprClass:
116 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000117 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000118 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000119
120 case Expr::UnaryOperatorClass:
121 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
122 case Expr::ArraySubscriptExprClass:
123 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000124 case Expr::ExtVectorElementExprClass:
125 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000126 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000127 case Expr::CompoundLiteralExprClass:
128 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 }
130}
131
132/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
133/// this method emits the address of the lvalue, then loads the result as an
134/// rvalue, returning the rvalue.
135RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000136 if (LV.isSimple()) {
137 llvm::Value *Ptr = LV.getAddress();
138 const llvm::Type *EltTy =
139 cast<llvm::PointerType>(Ptr->getType())->getElementType();
140
141 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000142 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000143 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000144
145 // Bool can have different representation in memory than in registers.
146 if (ExprType->isBooleanType()) {
147 if (V->getType() != llvm::Type::Int1Ty)
148 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
149 }
150
151 return RValue::get(V);
152 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000153
Chris Lattner883f6a72007-08-11 00:04:45 +0000154 assert(ExprType->isFunctionType() && "Unknown scalar value");
155 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000156 }
157
158 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000159 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
160 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
162 "vecext"));
163 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000164
165 // If this is a reference to a subset of the elements of a vector, either
166 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000167 if (LV.isExtVectorElt())
168 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000169
170 if (LV.isBitfield())
171 return EmitLoadOfBitfieldLValue(LV, ExprType);
172
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000173 if (LV.isPropertyRef())
174 return EmitLoadOfPropertyRefLValue(LV, ExprType);
175
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000176 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000177 //an invalid RValue, but the assert will
178 //ensure that this point is never reached
179 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000180}
181
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000182RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
183 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000184 unsigned StartBit = LV.getBitfieldStartBit();
185 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000186 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000187
188 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000189 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000190 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000191
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000192 // In some cases the bitfield may straddle two memory locations.
193 // Currently we load the entire bitfield, then do the magic to
194 // sign-extend it if necessary. This results in somewhat more code
195 // than necessary for the common case (one load), since two shifts
196 // accomplish both the masking and sign extension.
197 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
198 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
199
200 // Shift to proper location.
201 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
202 "bf.lo");
203
204 // Mask off unused bits.
205 llvm::Constant *LowMask =
206 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
207 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
208
209 // Fetch the high bits if necessary.
210 if (LowBits < BitfieldSize) {
211 unsigned HighBits = BitfieldSize - LowBits;
212 llvm::Value *HighPtr =
213 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
214 "bf.ptr.hi");
215 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
216 LV.isVolatileQualified(),
217 "tmp");
218
219 // Mask off unused bits.
220 llvm::Constant *HighMask =
221 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
222 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000223
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000224 // Shift to proper location and or in to bitfield value.
225 HighVal = Builder.CreateShl(HighVal,
226 llvm::ConstantInt::get(EltTy, LowBits));
227 Val = Builder.CreateOr(Val, HighVal, "bf.val");
228 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000229
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000230 // Sign extend if necessary.
231 if (LV.isBitfieldSigned()) {
232 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
233 EltTySize - BitfieldSize);
234 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
235 ExtraBits, "bf.val.sext");
236 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000237
238 // The bitfield type and the normal type differ when the storage sizes
239 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000240 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000241
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000242 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000243}
244
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000245RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
246 QualType ExprType) {
247 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
248}
249
Chris Lattner34cdc862007-08-03 16:18:34 +0000250// If this is a reference to a subset of the elements of a vector, either
251// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000252RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
253 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000254 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
255 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000256
Nate Begeman8a997642008-05-09 06:41:27 +0000257 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000258
259 // If the result of the expression is a non-vector type, we must be
260 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000261 const VectorType *ExprVT = ExprType->getAsVectorType();
262 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000263 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000264 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
265 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
266 }
267
268 // If the source and destination have the same number of elements, use a
269 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000270 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000271 unsigned NumSourceElts =
272 cast<llvm::VectorType>(Vec->getType())->getNumElements();
273
274 if (NumResultElts == NumSourceElts) {
275 llvm::SmallVector<llvm::Constant*, 4> Mask;
276 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000277 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000278 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
279 }
280
281 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
282 Vec = Builder.CreateShuffleVector(Vec,
283 llvm::UndefValue::get(Vec->getType()),
284 MaskV, "tmp");
285 return RValue::get(Vec);
286 }
287
288 // Start out with an undef of the result type.
289 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
290
291 // Extract/Insert each element of the result.
292 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000293 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000294 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
295 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
296
297 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
298 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
299 }
300
301 return RValue::get(Result);
302}
303
304
Reid Spencer5f016e22007-07-11 17:01:13 +0000305
306/// EmitStoreThroughLValue - Store the specified rvalue into the specified
307/// lvalue, where both are guaranteed to the have the same type, and that type
308/// is 'Ty'.
309void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
310 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000311 if (!Dst.isSimple()) {
312 if (Dst.isVectorElt()) {
313 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000314 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
315 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000316 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000317 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000318 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000319 return;
320 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000321
Nate Begeman213541a2008-04-18 23:10:10 +0000322 // If this is an update of extended vector elements, insert them as
323 // appropriate.
324 if (Dst.isExtVectorElt())
325 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000326
327 if (Dst.isBitfield())
328 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
329
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000330 if (Dst.isPropertyRef())
331 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
332
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000333 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000334 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000335
336 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000337 assert(Src.isScalar() && "Can't emit an agg store with this method");
338 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000339 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000340 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
341 const llvm::Type *AddrTy = DstPtr->getElementType();
342 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000343
Chris Lattner883f6a72007-08-11 00:04:45 +0000344 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000345 DstAddr = Builder.CreateBitCast(DstAddr,
346 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000347 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000348 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000349}
350
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000351void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
352 QualType Ty) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000353 unsigned StartBit = Dst.getBitfieldStartBit();
354 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000355 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000356
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000357 const llvm::Type *EltTy =
358 cast<llvm::PointerType>(Ptr->getType())->getElementType();
359 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
360
361 // Get the new value, cast to the appropriate type and masked to
362 // exactly the size of the bit-field.
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000363 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000364 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
365 llvm::Constant *Mask =
366 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
367 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000368
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000369 // In some cases the bitfield may straddle two memory locations.
370 // Emit the low part first and check to see if the high needs to be
371 // done.
372 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
373 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
374 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000375
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000376 // Compute the mask for zero-ing the low part of this bitfield.
377 llvm::Constant *InvMask =
378 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
379 StartBit + LowBits));
380
381 // Compute the new low part as
382 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
383 // with the shift of NewVal implicitly stripping the high bits.
384 llvm::Value *NewLowVal =
385 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
386 "bf.value.lo");
387 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
388 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
389
390 // Write back.
391 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000392
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000393 // If the low part doesn't cover the bitfield emit a high part.
394 if (LowBits < BitfieldSize) {
395 unsigned HighBits = BitfieldSize - LowBits;
396 llvm::Value *HighPtr =
397 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
398 "bf.ptr.hi");
399 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
400 Dst.isVolatileQualified(),
401 "bf.prev.hi");
402
403 // Compute the mask for zero-ing the high part of this bitfield.
404 llvm::Constant *InvMask =
405 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
406
407 // Compute the new high part as
408 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
409 // where the high bits of NewVal have already been cleared and the
410 // shift stripping the low bits.
411 llvm::Value *NewHighVal =
412 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
413 "bf.value.high");
414 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
415 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
416
417 // Write back.
418 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
419 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000420}
421
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000422void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
423 LValue Dst,
424 QualType Ty) {
425 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
426}
427
Nate Begeman213541a2008-04-18 23:10:10 +0000428void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
429 LValue Dst,
430 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000431 // This access turns into a read/modify/write of the vector. Load the input
432 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000433 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
434 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000435 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000436
Chris Lattner9b655512007-08-31 22:49:20 +0000437 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000438
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000439 if (const VectorType *VTy = Ty->getAsVectorType()) {
440 unsigned NumSrcElts = VTy->getNumElements();
441
442 // Extract/Insert each element.
443 for (unsigned i = 0; i != NumSrcElts; ++i) {
444 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
445 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
446
Dan Gohman4f8d1232008-05-22 00:50:06 +0000447 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000448 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
449 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
450 }
451 } else {
452 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000453 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000454 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
455 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000456 }
457
Eli Friedman1e692ac2008-06-13 23:01:12 +0000458 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000459}
460
Reid Spencer5f016e22007-07-11 17:01:13 +0000461
462LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000463 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
464
Chris Lattner41110242008-06-17 18:05:57 +0000465 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
466 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000467 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000468 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000469 E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000470 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000471 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000472 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000473 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000474 }
Steve Naroff248a7532008-04-15 22:42:06 +0000475 } else if (VD && VD->isFileVarDecl()) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000476 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000477 E->getType().getCVRQualifiers());
Steve Naroff248a7532008-04-15 22:42:06 +0000478 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000479 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000480 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000481 }
Chris Lattner41110242008-06-17 18:05:57 +0000482 else if (const ImplicitParamDecl *IPD =
483 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
484 llvm::Value *V = LocalDeclMap[IPD];
485 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
486 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
487 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000488 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000489 //an invalid LValue, but the assert will
490 //ensure that this point is never reached.
491 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000492}
493
494LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
495 // __extension__ doesn't affect lvalue-ness.
496 if (E->getOpcode() == UnaryOperator::Extension)
497 return EmitLValue(E->getSubExpr());
498
Chris Lattner96196622008-07-26 22:37:01 +0000499 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000500 switch (E->getOpcode()) {
501 default: assert(0 && "Unknown unary operator lvalue!");
502 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000503 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000504 ExprTy->getAsPointerType()->getPointeeType()
505 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000506 case UnaryOperator::Real:
507 case UnaryOperator::Imag:
508 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000509 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
510 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000511 Idx, "idx"),
512 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000513 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000514}
515
516LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000517 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000518}
519
Chris Lattnerd9f69102008-08-10 01:53:14 +0000520LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000521 std::string FunctionName;
522 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
523 FunctionName = FD->getName();
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000524 } else if (isa<ObjCMethodDecl>(CurFuncDecl)) {
525 // Just get the mangled name.
526 FunctionName = CurFn->getName();
527 } else {
528 return EmitUnsupportedLValue(E, "predefined expression");
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000529 }
Anders Carlsson22742662007-07-21 05:21:51 +0000530 std::string GlobalVarName;
531
532 switch (E->getIdentType()) {
533 default:
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000534 return EmitUnsupportedLValue(E, "predefined expression");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000535 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000536 GlobalVarName = "__func__.";
537 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000538 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000539 GlobalVarName = "__FUNCTION__.";
540 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000541 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000542 // FIXME:: Demangle C++ method names
543 GlobalVarName = "__PRETTY_FUNCTION__.";
544 break;
545 }
546
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000547 GlobalVarName += FunctionName;
Anders Carlsson22742662007-07-21 05:21:51 +0000548
549 // FIXME: Can cache/reuse these within the module.
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000550 llvm::Constant *C = llvm::ConstantArray::get(FunctionName);
Anders Carlsson22742662007-07-21 05:21:51 +0000551
552 // Create a global variable for this.
553 C = new llvm::GlobalVariable(C->getType(), true,
554 llvm::GlobalValue::InternalLinkage,
555 C, GlobalVarName, CurFn->getParent());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000556 return LValue::MakeAddr(C,0);
Anders Carlsson22742662007-07-21 05:21:51 +0000557}
558
Reid Spencer5f016e22007-07-11 17:01:13 +0000559LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000560 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000561 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000562
563 // If the base is a vector type, then we are forming a vector element lvalue
564 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000565 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000566 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000567 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000568 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000569 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000570 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
571 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000572 }
573
Ted Kremenek23245122007-08-20 16:18:38 +0000574 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000575 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000576
Ted Kremenek23245122007-08-20 16:18:38 +0000577 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000578 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000579 bool IdxSigned = IdxTy->isSignedIntegerType();
580 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
581 if (IdxBitwidth != LLVMPointerWidth)
582 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
583 IdxSigned, "idxprom");
584
585 // We know that the pointer points to a type of the correct size, unless the
586 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000587 if (!E->getType()->isConstantSizeType())
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000588 return EmitUnsupportedLValue(E, "VLA index");
Chris Lattner96196622008-07-26 22:37:01 +0000589 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000590
Eli Friedman1e692ac2008-06-13 23:01:12 +0000591 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000592 ExprTy->getAsPointerType()->getPointeeType()
593 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000594}
595
Nate Begeman3b8d1162008-05-13 21:03:02 +0000596static
597llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
598 llvm::SmallVector<llvm::Constant *, 4> CElts;
599
600 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
601 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
602
603 return llvm::ConstantVector::get(&CElts[0], CElts.size());
604}
605
Chris Lattner349aaec2007-08-02 23:37:31 +0000606LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000607EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000608 // Emit the base vector as an l-value.
609 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000610
Nate Begeman3b8d1162008-05-13 21:03:02 +0000611 // Encode the element access list into a vector of unsigned indices.
612 llvm::SmallVector<unsigned, 4> Indices;
613 E->getEncodedElementAccess(Indices);
614
615 if (Base.isSimple()) {
616 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000617 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
618 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000619 }
620 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
621
622 llvm::Constant *BaseElts = Base.getExtVectorElts();
623 llvm::SmallVector<llvm::Constant *, 4> CElts;
624
625 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
626 if (isa<llvm::ConstantAggregateZero>(BaseElts))
627 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
628 else
629 CElts.push_back(BaseElts->getOperand(Indices[i]));
630 }
631 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000632 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
633 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000634}
635
Devang Patelb9b00ad2007-10-23 20:28:39 +0000636LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000637 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000638 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000639 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000640 unsigned CVRQualifiers=0;
641
Chris Lattner12f65f62007-12-02 18:52:07 +0000642 // 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 +0000643 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000644 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000645 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000646 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000647 if (PTy->getPointeeType()->isUnionType())
648 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000649 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000650 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000651 else {
652 LValue BaseLV = EmitLValue(BaseExpr);
653 // FIXME: this isn't right for bitfields.
654 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000655 if (BaseExpr->getType()->isUnionType())
656 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000657 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000658 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000659
660 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000661 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000662}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000663
Eli Friedman472778e2008-02-09 08:50:58 +0000664LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
665 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000666 bool isUnion,
667 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000668{
669 llvm::Value *V;
670 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000671
Eli Friedman1e86b342008-05-29 11:33:25 +0000672 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000673 // FIXME: CodeGenTypes should expose a method to get the appropriate
674 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000675 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000676 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000677 cast<llvm::PointerType>(BaseValue->getType());
678 unsigned AS = BaseTy->getAddressSpace();
679 BaseValue = Builder.CreateBitCast(BaseValue,
680 llvm::PointerType::get(FieldTy, AS),
681 "tmp");
682 V = Builder.CreateGEP(BaseValue,
683 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
684 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000685
686 CodeGenTypes::BitFieldInfo bitFieldInfo =
687 CGM.getTypes().getBitFieldInfo(Field);
688 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000689 Field->getType()->isSignedIntegerType(),
690 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000691 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000692
Eli Friedman1e86b342008-05-29 11:33:25 +0000693 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
694
Devang Patelabad06c2007-10-26 19:42:18 +0000695 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000696 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000697 const llvm::Type *FieldTy =
698 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000699 const llvm::PointerType * BaseTy =
700 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000701 unsigned AS = BaseTy->getAddressSpace();
702 V = Builder.CreateBitCast(V,
703 llvm::PointerType::get(FieldTy, AS),
704 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000705 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000706
Eli Friedman1e692ac2008-06-13 23:01:12 +0000707 return LValue::MakeAddr(V,
708 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000709}
710
Eli Friedman1e692ac2008-06-13 23:01:12 +0000711LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
712{
Eli Friedman06e863f2008-05-13 23:18:27 +0000713 const llvm::Type *LTy = ConvertType(E->getType());
714 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
715
716 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000717 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000718
719 if (E->getType()->isComplexType()) {
720 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
721 } else if (hasAggregateLLVMType(E->getType())) {
722 EmitAnyExpr(InitExpr, DeclPtr, false);
723 } else {
724 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
725 }
726
727 return Result;
728}
729
Reid Spencer5f016e22007-07-11 17:01:13 +0000730//===--------------------------------------------------------------------===//
731// Expression Emission
732//===--------------------------------------------------------------------===//
733
Chris Lattner7016a702007-08-20 22:37:10 +0000734
Reid Spencer5f016e22007-07-11 17:01:13 +0000735RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000736 if (const ImplicitCastExpr *IcExpr =
737 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
738 if (const DeclRefExpr *DRExpr =
739 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
740 if (const FunctionDecl *FDecl =
741 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
742 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
743 return EmitBuiltinExpr(builtinID, E);
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000744
Chris Lattner7f02f722007-08-24 05:35:26 +0000745 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000746 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000747 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000748}
749
Ted Kremenek55499762008-06-17 02:43:46 +0000750RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
751 CallExpr::const_arg_iterator ArgBeg,
752 CallExpr::const_arg_iterator ArgEnd) {
753
Nate Begemane2ce1d92008-01-17 17:46:27 +0000754 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000755 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000756}
757
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000758LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
759 // Can only get l-value for binary operator expressions which are a
760 // simple assignment of aggregate type.
761 if (E->getOpcode() != BinaryOperator::Assign)
762 return EmitUnsupportedLValue(E, "binary l-value expression");
763
764 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
765 EmitAggExpr(E, Temp, false);
766 // FIXME: Are these qualifiers correct?
767 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
768}
769
Christopher Lamb22c940e2007-12-29 05:02:41 +0000770LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
771 // Can only get l-value for call expression returning aggregate type
772 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000773 // FIXME: can this be volatile?
774 return LValue::MakeAddr(RV.getAggregateAddr(),
775 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000776}
777
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000778LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
779 // Can only get l-value for message expression returning aggregate type
780 RValue RV = EmitObjCMessageExpr(E);
781 // FIXME: can this be volatile?
782 return LValue::MakeAddr(RV.getAggregateAddr(),
783 E->getType().getCVRQualifiers());
784}
785
Chris Lattner391d77a2008-03-30 23:03:07 +0000786LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
787 // Objective-C objects are traditionally C structures with their layout
788 // defined at compile-time. In some implementations, their layout is not
789 // defined until run time in order to allow instance variables to be added to
790 // a class without recompiling all of the subclasses. If this is the case
791 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
792 // implement the lookup itself.
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000793 if (CGM.getObjCRuntime().LateBoundIVars()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000794 return EmitUnsupportedLValue(E, "late-bound instance variables");
Chris Lattner391d77a2008-03-30 23:03:07 +0000795 }
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000796
Anders Carlsson29b7e502008-08-25 01:53:23 +0000797 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
798 llvm::Value *BaseValue = 0;
799 const Expr *BaseExpr = E->getBase();
800 unsigned CVRQualifiers = 0;
801 if (E->isArrow()) {
802 BaseValue = EmitScalarExpr(BaseExpr);
803 const PointerType *PTy =
804 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
805 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
806 } else {
807 LValue BaseLV = EmitLValue(BaseExpr);
808 // FIXME: this isn't right for bitfields.
809 BaseValue = BaseLV.getAddress();
810 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
811 }
Chris Lattnerce5605e2008-03-30 23:25:33 +0000812
Anders Carlsson29b7e502008-08-25 01:53:23 +0000813 const ObjCIvarDecl *Field = E->getDecl();
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000814 if (Field->isBitField())
815 return EmitUnsupportedLValue(E, "ivar bitfields");
Anders Carlsson29b7e502008-08-25 01:53:23 +0000816
817 // TODO: Add a special case for isa (index 0)
818 unsigned Index = CGM.getTypes().getLLVMFieldNo(Field);
819
820 llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp");
821 return LValue::MakeAddr(V,
822 Field->getType().getCVRQualifiers()|CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +0000823}
824
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000825LValue
826CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
827 // This is a special l-value that just issues sends when we load or
828 // store through it.
829 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
830}
831
Nate Begemane2ce1d92008-01-17 17:46:27 +0000832RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek55499762008-06-17 02:43:46 +0000833 CallExpr::const_arg_iterator ArgBeg,
834 CallExpr::const_arg_iterator ArgEnd) {
835
Reid Spencer5f016e22007-07-11 17:01:13 +0000836 // The callee type will always be a pointer to function type, get the function
837 // type.
Chris Lattner96196622008-07-26 22:37:01 +0000838 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner05d2fb42008-07-31 04:58:58 +0000839 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000840
841 CallArgList Args;
842 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I)
843 EmitCallArg(*I, Args);
844
845 return EmitCall(Callee, ResultType, Args);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +0000846}
Eli Friedman5193b8a2008-01-30 01:32:06 +0000847
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +0000848// FIXME: Merge the following two functions.
849void CodeGenFunction::EmitCallArg(RValue RV, QualType Ty,
850 CallArgList &Args) {
851 llvm::Value *ArgValue;
852
853 if (RV.isScalar()) {
854 ArgValue = RV.getScalarVal();
855 } else if (RV.isComplex()) {
856 // Make a temporary alloca to pass the argument.
857 ArgValue = CreateTempAlloca(ConvertType(Ty));
858 StoreComplexToAddr(RV.getComplexVal(), ArgValue, false);
859 } else {
860 ArgValue = RV.getAggregateAddr();
861 }
862
863 Args.push_back(std::make_pair(ArgValue, Ty));
864}
865
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000866void CodeGenFunction::EmitCallArg(const Expr *E, CallArgList &Args) {
867 QualType ArgTy = E->getType();
868 llvm::Value *ArgValue;
Reid Spencer5f016e22007-07-11 17:01:13 +0000869
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000870 if (!hasAggregateLLVMType(ArgTy)) {
871 // Scalar argument is passed by-value.
872 ArgValue = EmitScalarExpr(E);
873 } else if (ArgTy->isAnyComplexType()) {
874 // Make a temporary alloca to pass the argument.
875 ArgValue = CreateTempAlloca(ConvertType(ArgTy));
876 EmitComplexExprIntoAddr(E, ArgValue, false);
877 } else {
878 ArgValue = CreateTempAlloca(ConvertType(ArgTy));
879 EmitAggExpr(E, ArgValue, false);
880 }
881
882 Args.push_back(std::make_pair(ArgValue, E->getType()));
883}
884
885RValue CodeGenFunction::EmitCall(llvm::Value *Callee,
886 QualType ResultType,
887 const CallArgList &CallArgs) {
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000888 // FIXME: Factor out code to load from args into locals into target.
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000889 llvm::SmallVector<llvm::Value*, 16> Args;
890 llvm::Value *TempArg0 = 0;
891
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000892 // Handle struct-return functions by passing a pointer to the
893 // location that we would like to return into.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000894 if (hasAggregateLLVMType(ResultType)) {
Chris Lattnercc666af2007-08-10 17:02:28 +0000895 // Create a temporary alloca to hold the result of the call. :(
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000896 TempArg0 = CreateTempAlloca(ConvertType(ResultType));
897 Args.push_back(TempArg0);
Chris Lattnercc666af2007-08-10 17:02:28 +0000898 }
899
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000900 for (CallArgList::const_iterator I = CallArgs.begin(), E = CallArgs.end();
901 I != E; ++I)
902 Args.push_back(I->first);
Reid Spencer5f016e22007-07-11 17:01:13 +0000903
Nate Begemanec9426c2008-03-09 03:09:36 +0000904 llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000905 CGCallInfo CallInfo(ResultType, CallArgs);
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000906
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000907 CodeGen::ParamAttrListType ParamAttrList;
908 CallInfo.constructParamAttrList(ParamAttrList);
909 CI->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
910 ParamAttrList.size()));
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000911
Nate Begemanec9426c2008-03-09 03:09:36 +0000912 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
913 CI->setCallingConv(F->getCallingConv());
914 if (CI->getType() != llvm::Type::VoidTy)
915 CI->setName("call");
Chris Lattner9b2dc282008-04-04 16:54:41 +0000916 else if (ResultType->isAnyComplexType())
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000917 return RValue::getComplex(LoadComplexFromAddr(TempArg0, false));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000918 else if (hasAggregateLLVMType(ResultType))
Chris Lattnercc666af2007-08-10 17:02:28 +0000919 // Struct return.
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000920 return RValue::getAggregate(TempArg0);
Chris Lattner2202bce2007-11-30 17:56:23 +0000921 else {
922 // void return.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000923 assert(ResultType->isVoidType() && "Should only have a void expr here");
Nate Begemanec9426c2008-03-09 03:09:36 +0000924 CI = 0;
Chris Lattner2202bce2007-11-30 17:56:23 +0000925 }
Chris Lattnercc666af2007-08-10 17:02:28 +0000926
Daniel Dunbar19cd87e2008-08-30 03:02:31 +0000927 return RValue::get(CI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000928}