blob: d83775ce3e65b4ca44f450d530beec2cdd17f695 [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 Dunbarde7fb842008-08-11 05:00:27 +000016#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000017#include "clang/AST/Decl.h"
18#include "clang/AST/DeclObjC.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000019#include "clang/Basic/TargetInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/Constants.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
23#include "llvm/GlobalVariable.h"
Chris Lattner99e0d792007-07-16 05:43:05 +000024#include "llvm/Support/MathExtras.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000025#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000026using namespace clang;
27using namespace CodeGen;
28
29//===--------------------------------------------------------------------===//
30// Miscellaneous Helper Methods
31//===--------------------------------------------------------------------===//
32
33/// CreateTempAlloca - This creates a alloca and inserts it into the entry
34/// block.
35llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
36 const char *Name) {
37 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
38}
39
40/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
41/// expression and compare the result against zero, returning an Int1Ty value.
42llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000043 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000044 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000045 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000046
Chris Lattner9069fa22007-08-26 16:46:58 +000047 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000048}
49
Chris Lattner9b655512007-08-31 22:49:20 +000050/// EmitAnyExpr - Emit code to compute the specified expression which can have
51/// any type. The result is returned as an RValue struct. If this is an
52/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
53/// the result should be returned.
54RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
55 bool isAggLocVolatile) {
56 if (!hasAggregateLLVMType(E->getType()))
57 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000058 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000059 return RValue::getComplex(EmitComplexExpr(E));
60
61 EmitAggExpr(E, AggLoc, isAggLocVolatile);
62 return RValue::getAggregate(AggLoc);
63}
64
Dan Gohman4f8d1232008-05-22 00:50:06 +000065/// getAccessedFieldNo - Given an encoded value and a result number, return
66/// the input field number being accessed.
67unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
68 const llvm::Constant *Elts) {
69 if (isa<llvm::ConstantAggregateZero>(Elts))
70 return 0;
71
72 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
73}
74
Chris Lattner9b655512007-08-31 22:49:20 +000075
Reid Spencer5f016e22007-07-11 17:01:13 +000076//===----------------------------------------------------------------------===//
77// LValue Expression Emission
78//===----------------------------------------------------------------------===//
79
80/// EmitLValue - Emit code to compute a designator that specifies the location
81/// of the expression.
82///
83/// This can return one of two things: a simple address or a bitfield
84/// reference. In either case, the LLVM Value* in the LValue structure is
85/// guaranteed to be an LLVM pointer type.
86///
87/// If this returns a bitfield reference, nothing about the pointee type of
88/// the LLVM value is known: For example, it may not be a pointer to an
89/// integer.
90///
91/// If this returns a normal address, and if the lvalue's C type is fixed
92/// size, this method guarantees that the returned pointer type will point to
93/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
94/// variable length type, this is not possible.
95///
96LValue CodeGenFunction::EmitLValue(const Expr *E) {
97 switch (E->getStmtClass()) {
Chris Lattner7013c8c2007-08-26 05:06:40 +000098 default: {
Chris Lattnerce5605e2008-03-30 23:25:33 +000099 printf("Statement class: %d\n", E->getStmtClass());
Chris Lattnerdc4d2802007-12-02 01:49:16 +0000100 WarnUnsupported(E, "l-value expression");
Christopher Lambddc23f32007-12-17 01:11:20 +0000101 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Eli Friedman1e692ac2008-06-13 23:01:12 +0000102 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
103 E->getType().getCVRQualifiers());
Chris Lattner7013c8c2007-08-26 05:06:40 +0000104 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000105
Christopher Lamb22c940e2007-12-29 05:02:41 +0000106 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
108 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000109 case Expr::PredefinedExprClass:
110 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 case Expr::StringLiteralClass:
112 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000113
114 case Expr::ObjCIvarRefExprClass:
115 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(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
170 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000171 //an invalid RValue, but the assert will
172 //ensure that this point is never reached
173 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000174}
175
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000176RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
177 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000178 unsigned StartBit = LV.getBitfieldStartBit();
179 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000180 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000181
182 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000183 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000184 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000185
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000186 // In some cases the bitfield may straddle two memory locations.
187 // Currently we load the entire bitfield, then do the magic to
188 // sign-extend it if necessary. This results in somewhat more code
189 // than necessary for the common case (one load), since two shifts
190 // accomplish both the masking and sign extension.
191 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
192 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
193
194 // Shift to proper location.
195 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
196 "bf.lo");
197
198 // Mask off unused bits.
199 llvm::Constant *LowMask =
200 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
201 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
202
203 // Fetch the high bits if necessary.
204 if (LowBits < BitfieldSize) {
205 unsigned HighBits = BitfieldSize - LowBits;
206 llvm::Value *HighPtr =
207 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
208 "bf.ptr.hi");
209 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
210 LV.isVolatileQualified(),
211 "tmp");
212
213 // Mask off unused bits.
214 llvm::Constant *HighMask =
215 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
216 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000217
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000218 // Shift to proper location and or in to bitfield value.
219 HighVal = Builder.CreateShl(HighVal,
220 llvm::ConstantInt::get(EltTy, LowBits));
221 Val = Builder.CreateOr(Val, HighVal, "bf.val");
222 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000223
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000224 // Sign extend if necessary.
225 if (LV.isBitfieldSigned()) {
226 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
227 EltTySize - BitfieldSize);
228 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
229 ExtraBits, "bf.val.sext");
230 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000231
232 // The bitfield type and the normal type differ when the storage sizes
233 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000234 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000235
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000236 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000237}
238
Chris Lattner34cdc862007-08-03 16:18:34 +0000239// If this is a reference to a subset of the elements of a vector, either
240// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000241RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
242 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000243 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
244 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000245
Nate Begeman8a997642008-05-09 06:41:27 +0000246 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000247
248 // If the result of the expression is a non-vector type, we must be
249 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000250 const VectorType *ExprVT = ExprType->getAsVectorType();
251 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000252 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000253 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
254 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
255 }
256
257 // If the source and destination have the same number of elements, use a
258 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000259 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000260 unsigned NumSourceElts =
261 cast<llvm::VectorType>(Vec->getType())->getNumElements();
262
263 if (NumResultElts == NumSourceElts) {
264 llvm::SmallVector<llvm::Constant*, 4> Mask;
265 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000266 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000267 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
268 }
269
270 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
271 Vec = Builder.CreateShuffleVector(Vec,
272 llvm::UndefValue::get(Vec->getType()),
273 MaskV, "tmp");
274 return RValue::get(Vec);
275 }
276
277 // Start out with an undef of the result type.
278 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
279
280 // Extract/Insert each element of the result.
281 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000282 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000283 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
284 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
285
286 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
287 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
288 }
289
290 return RValue::get(Result);
291}
292
293
Reid Spencer5f016e22007-07-11 17:01:13 +0000294
295/// EmitStoreThroughLValue - Store the specified rvalue into the specified
296/// lvalue, where both are guaranteed to the have the same type, and that type
297/// is 'Ty'.
298void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
299 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000300 if (!Dst.isSimple()) {
301 if (Dst.isVectorElt()) {
302 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000303 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
304 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000305 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000306 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000307 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000308 return;
309 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000310
Nate Begeman213541a2008-04-18 23:10:10 +0000311 // If this is an update of extended vector elements, insert them as
312 // appropriate.
313 if (Dst.isExtVectorElt())
314 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000315
316 if (Dst.isBitfield())
317 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
318
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000319 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000320 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000321
322 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000323 assert(Src.isScalar() && "Can't emit an agg store with this method");
324 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000325 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000326 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
327 const llvm::Type *AddrTy = DstPtr->getElementType();
328 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000329
Chris Lattner883f6a72007-08-11 00:04:45 +0000330 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000331 DstAddr = Builder.CreateBitCast(DstAddr,
332 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000333 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000334 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000335}
336
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000337void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
338 QualType Ty) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000339 unsigned StartBit = Dst.getBitfieldStartBit();
340 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000341 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000342
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000343 const llvm::Type *EltTy =
344 cast<llvm::PointerType>(Ptr->getType())->getElementType();
345 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
346
347 // Get the new value, cast to the appropriate type and masked to
348 // exactly the size of the bit-field.
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000349 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000350 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
351 llvm::Constant *Mask =
352 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
353 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000354
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000355 // In some cases the bitfield may straddle two memory locations.
356 // Emit the low part first and check to see if the high needs to be
357 // done.
358 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
359 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
360 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000361
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000362 // Compute the mask for zero-ing the low part of this bitfield.
363 llvm::Constant *InvMask =
364 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
365 StartBit + LowBits));
366
367 // Compute the new low part as
368 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
369 // with the shift of NewVal implicitly stripping the high bits.
370 llvm::Value *NewLowVal =
371 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
372 "bf.value.lo");
373 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
374 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
375
376 // Write back.
377 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000378
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000379 // If the low part doesn't cover the bitfield emit a high part.
380 if (LowBits < BitfieldSize) {
381 unsigned HighBits = BitfieldSize - LowBits;
382 llvm::Value *HighPtr =
383 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
384 "bf.ptr.hi");
385 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
386 Dst.isVolatileQualified(),
387 "bf.prev.hi");
388
389 // Compute the mask for zero-ing the high part of this bitfield.
390 llvm::Constant *InvMask =
391 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
392
393 // Compute the new high part as
394 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
395 // where the high bits of NewVal have already been cleared and the
396 // shift stripping the low bits.
397 llvm::Value *NewHighVal =
398 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
399 "bf.value.high");
400 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
401 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
402
403 // Write back.
404 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
405 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000406}
407
Nate Begeman213541a2008-04-18 23:10:10 +0000408void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
409 LValue Dst,
410 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000411 // This access turns into a read/modify/write of the vector. Load the input
412 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000413 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
414 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000415 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000416
Chris Lattner9b655512007-08-31 22:49:20 +0000417 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000418
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000419 if (const VectorType *VTy = Ty->getAsVectorType()) {
420 unsigned NumSrcElts = VTy->getNumElements();
421
422 // Extract/Insert each element.
423 for (unsigned i = 0; i != NumSrcElts; ++i) {
424 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
425 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
426
Dan Gohman4f8d1232008-05-22 00:50:06 +0000427 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000428 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
429 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
430 }
431 } else {
432 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000433 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000434 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
435 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000436 }
437
Eli Friedman1e692ac2008-06-13 23:01:12 +0000438 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000439}
440
Reid Spencer5f016e22007-07-11 17:01:13 +0000441
442LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000443 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
444
Chris Lattner41110242008-06-17 18:05:57 +0000445 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
446 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000447 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000448 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000449 E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000450 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000451 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000452 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000453 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000454 }
Steve Naroff248a7532008-04-15 22:42:06 +0000455 } else if (VD && VD->isFileVarDecl()) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000456 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000457 E->getType().getCVRQualifiers());
Steve Naroff248a7532008-04-15 22:42:06 +0000458 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000459 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000460 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000461 }
Chris Lattner41110242008-06-17 18:05:57 +0000462 else if (const ImplicitParamDecl *IPD =
463 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
464 llvm::Value *V = LocalDeclMap[IPD];
465 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
466 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
467 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000468 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000469 //an invalid LValue, but the assert will
470 //ensure that this point is never reached.
471 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000472}
473
474LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
475 // __extension__ doesn't affect lvalue-ness.
476 if (E->getOpcode() == UnaryOperator::Extension)
477 return EmitLValue(E->getSubExpr());
478
Chris Lattner96196622008-07-26 22:37:01 +0000479 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000480 switch (E->getOpcode()) {
481 default: assert(0 && "Unknown unary operator lvalue!");
482 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000483 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000484 ExprTy->getAsPointerType()->getPointeeType()
485 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000486 case UnaryOperator::Real:
487 case UnaryOperator::Imag:
488 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000489 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
490 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000491 Idx, "idx"),
492 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000493 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000494}
495
496LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar1e049762008-08-10 20:25:57 +0000497 llvm::Constant *C =
498 CGM.GetAddrOfConstantString(CGM.getStringForStringLiteral(E));
Eli Friedman922696f2008-05-19 17:51:16 +0000499
Daniel Dunbar1e049762008-08-10 20:25:57 +0000500 return LValue::MakeAddr(C,0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000501}
502
Chris Lattnerd9f69102008-08-10 01:53:14 +0000503LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000504 std::string FunctionName;
505 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
506 FunctionName = FD->getName();
507 }
508 else {
509 assert(0 && "Attempting to load predefined constant for invalid decl type");
510 }
Anders Carlsson22742662007-07-21 05:21:51 +0000511 std::string GlobalVarName;
512
513 switch (E->getIdentType()) {
514 default:
515 assert(0 && "unknown pre-defined ident type");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000516 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000517 GlobalVarName = "__func__.";
518 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000519 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000520 GlobalVarName = "__FUNCTION__.";
521 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000522 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000523 // FIXME:: Demangle C++ method names
524 GlobalVarName = "__PRETTY_FUNCTION__.";
525 break;
526 }
527
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000528 GlobalVarName += FunctionName;
Anders Carlsson22742662007-07-21 05:21:51 +0000529
530 // FIXME: Can cache/reuse these within the module.
531 llvm::Constant *C=llvm::ConstantArray::get(FunctionName);
532
533 // Create a global variable for this.
534 C = new llvm::GlobalVariable(C->getType(), true,
535 llvm::GlobalValue::InternalLinkage,
536 C, GlobalVarName, CurFn->getParent());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000537 return LValue::MakeAddr(C,0);
Anders Carlsson22742662007-07-21 05:21:51 +0000538}
539
Reid Spencer5f016e22007-07-11 17:01:13 +0000540LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000541 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000542 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000543
544 // If the base is a vector type, then we are forming a vector element lvalue
545 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000546 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000547 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000548 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000549 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000550 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000551 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
552 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000553 }
554
Ted Kremenek23245122007-08-20 16:18:38 +0000555 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000556 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000557
Ted Kremenek23245122007-08-20 16:18:38 +0000558 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000559 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000560 bool IdxSigned = IdxTy->isSignedIntegerType();
561 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
562 if (IdxBitwidth != LLVMPointerWidth)
563 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
564 IdxSigned, "idxprom");
565
566 // We know that the pointer points to a type of the correct size, unless the
567 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000568 if (!E->getType()->isConstantSizeType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000569 assert(0 && "VLA idx not implemented");
Chris Lattner96196622008-07-26 22:37:01 +0000570 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000571
Eli Friedman1e692ac2008-06-13 23:01:12 +0000572 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000573 ExprTy->getAsPointerType()->getPointeeType()
574 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000575}
576
Nate Begeman3b8d1162008-05-13 21:03:02 +0000577static
578llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
579 llvm::SmallVector<llvm::Constant *, 4> CElts;
580
581 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
582 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
583
584 return llvm::ConstantVector::get(&CElts[0], CElts.size());
585}
586
Chris Lattner349aaec2007-08-02 23:37:31 +0000587LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000588EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000589 // Emit the base vector as an l-value.
590 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000591
Nate Begeman3b8d1162008-05-13 21:03:02 +0000592 // Encode the element access list into a vector of unsigned indices.
593 llvm::SmallVector<unsigned, 4> Indices;
594 E->getEncodedElementAccess(Indices);
595
596 if (Base.isSimple()) {
597 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000598 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
599 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000600 }
601 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
602
603 llvm::Constant *BaseElts = Base.getExtVectorElts();
604 llvm::SmallVector<llvm::Constant *, 4> CElts;
605
606 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
607 if (isa<llvm::ConstantAggregateZero>(BaseElts))
608 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
609 else
610 CElts.push_back(BaseElts->getOperand(Indices[i]));
611 }
612 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000613 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
614 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000615}
616
Devang Patelb9b00ad2007-10-23 20:28:39 +0000617LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000618 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000619 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000620 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000621 unsigned CVRQualifiers=0;
622
Chris Lattner12f65f62007-12-02 18:52:07 +0000623 // 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 +0000624 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000625 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000626 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000627 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000628 if (PTy->getPointeeType()->isUnionType())
629 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000630 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000631 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000632 else {
633 LValue BaseLV = EmitLValue(BaseExpr);
634 // FIXME: this isn't right for bitfields.
635 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000636 if (BaseExpr->getType()->isUnionType())
637 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000638 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000639 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000640
641 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000642 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000643}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000644
Eli Friedman472778e2008-02-09 08:50:58 +0000645LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
646 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000647 bool isUnion,
648 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000649{
650 llvm::Value *V;
651 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000652
Eli Friedman1e86b342008-05-29 11:33:25 +0000653 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000654 // FIXME: CodeGenTypes should expose a method to get the appropriate
655 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000656 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000657 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000658 cast<llvm::PointerType>(BaseValue->getType());
659 unsigned AS = BaseTy->getAddressSpace();
660 BaseValue = Builder.CreateBitCast(BaseValue,
661 llvm::PointerType::get(FieldTy, AS),
662 "tmp");
663 V = Builder.CreateGEP(BaseValue,
664 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
665 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000666
667 CodeGenTypes::BitFieldInfo bitFieldInfo =
668 CGM.getTypes().getBitFieldInfo(Field);
669 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000670 Field->getType()->isSignedIntegerType(),
671 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000672 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000673
Eli Friedman1e86b342008-05-29 11:33:25 +0000674 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
675
Devang Patelabad06c2007-10-26 19:42:18 +0000676 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000677 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000678 const llvm::Type *FieldTy =
679 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000680 const llvm::PointerType * BaseTy =
681 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000682 unsigned AS = BaseTy->getAddressSpace();
683 V = Builder.CreateBitCast(V,
684 llvm::PointerType::get(FieldTy, AS),
685 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000686 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000687
Eli Friedman1e692ac2008-06-13 23:01:12 +0000688 return LValue::MakeAddr(V,
689 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000690}
691
Eli Friedman1e692ac2008-06-13 23:01:12 +0000692LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
693{
Eli Friedman06e863f2008-05-13 23:18:27 +0000694 const llvm::Type *LTy = ConvertType(E->getType());
695 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
696
697 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000698 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000699
700 if (E->getType()->isComplexType()) {
701 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
702 } else if (hasAggregateLLVMType(E->getType())) {
703 EmitAnyExpr(InitExpr, DeclPtr, false);
704 } else {
705 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
706 }
707
708 return Result;
709}
710
Reid Spencer5f016e22007-07-11 17:01:13 +0000711//===--------------------------------------------------------------------===//
712// Expression Emission
713//===--------------------------------------------------------------------===//
714
Chris Lattner7016a702007-08-20 22:37:10 +0000715
Reid Spencer5f016e22007-07-11 17:01:13 +0000716RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000717 if (const ImplicitCastExpr *IcExpr =
718 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
719 if (const DeclRefExpr *DRExpr =
720 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
721 if (const FunctionDecl *FDecl =
722 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
723 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
724 return EmitBuiltinExpr(builtinID, E);
725
Chris Lattner7f02f722007-08-24 05:35:26 +0000726 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000727 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000728 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000729}
730
Ted Kremenek55499762008-06-17 02:43:46 +0000731RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
732 CallExpr::const_arg_iterator ArgBeg,
733 CallExpr::const_arg_iterator ArgEnd) {
734
Nate Begemane2ce1d92008-01-17 17:46:27 +0000735 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000736 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000737}
738
Christopher Lamb22c940e2007-12-29 05:02:41 +0000739LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
740 // Can only get l-value for call expression returning aggregate type
741 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000742 // FIXME: can this be volatile?
743 return LValue::MakeAddr(RV.getAggregateAddr(),
744 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000745}
746
Chris Lattner391d77a2008-03-30 23:03:07 +0000747LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
748 // Objective-C objects are traditionally C structures with their layout
749 // defined at compile-time. In some implementations, their layout is not
750 // defined until run time in order to allow instance variables to be added to
751 // a class without recompiling all of the subclasses. If this is the case
752 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
753 // implement the lookup itself.
Chris Lattnerce5605e2008-03-30 23:25:33 +0000754 if (CGM.getObjCRuntime()->LateBoundIVars()) {
Chris Lattner391d77a2008-03-30 23:03:07 +0000755 assert(0 && "FIXME: Implement support for late-bound instance variables");
756 return LValue(); // Not reached.
757 }
Chris Lattnerce5605e2008-03-30 23:25:33 +0000758
759 // Get a structure type for the object
760 QualType ExprTy = E->getBase()->getType();
761 const llvm::Type *ObjectType = ConvertType(ExprTy);
762 // TODO: Add a special case for isa (index 0)
763 // Work out which index the ivar is
764 const ObjCIvarDecl *Decl = E->getDecl();
765 unsigned Index = CGM.getTypes().getLLVMFieldNo(Decl);
Chris Lattner391d77a2008-03-30 23:03:07 +0000766
Chris Lattnerce5605e2008-03-30 23:25:33 +0000767 // Get object pointer and coerce object pointer to correct type.
768 llvm::Value *Object = EmitLValue(E->getBase()).getAddress();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000769 // FIXME: Volatility
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000770 Object = Builder.CreateLoad(Object, E->getDecl()->getName());
Chris Lattnerce5605e2008-03-30 23:25:33 +0000771 if (Object->getType() != ObjectType)
772 Object = Builder.CreateBitCast(Object, ObjectType);
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000773
Chris Lattnerce5605e2008-03-30 23:25:33 +0000774
775 // Return a pointer to the right element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000776 // FIXME: volatile
Chris Lattnerce5605e2008-03-30 23:25:33 +0000777 return LValue::MakeAddr(Builder.CreateStructGEP(Object, Index,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000778 Decl->getName()),0);
Chris Lattner391d77a2008-03-30 23:03:07 +0000779}
780
Nate Begemane2ce1d92008-01-17 17:46:27 +0000781RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek55499762008-06-17 02:43:46 +0000782 CallExpr::const_arg_iterator ArgBeg,
783 CallExpr::const_arg_iterator ArgEnd) {
784
Reid Spencer5f016e22007-07-11 17:01:13 +0000785 // The callee type will always be a pointer to function type, get the function
786 // type.
Chris Lattner96196622008-07-26 22:37:01 +0000787 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner05d2fb42008-07-31 04:58:58 +0000788 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Eli Friedman5193b8a2008-01-30 01:32:06 +0000789
Reid Spencer5f016e22007-07-11 17:01:13 +0000790 llvm::SmallVector<llvm::Value*, 16> Args;
791
Chris Lattnercc666af2007-08-10 17:02:28 +0000792 // Handle struct-return functions by passing a pointer to the location that
793 // we would like to return into.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000794 if (hasAggregateLLVMType(ResultType)) {
Chris Lattnercc666af2007-08-10 17:02:28 +0000795 // Create a temporary alloca to hold the result of the call. :(
Nate Begemane2ce1d92008-01-17 17:46:27 +0000796 Args.push_back(CreateTempAlloca(ConvertType(ResultType)));
Chris Lattnercc666af2007-08-10 17:02:28 +0000797 // FIXME: set the stret attribute on the argument.
798 }
799
Ted Kremenek55499762008-06-17 02:43:46 +0000800 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I) {
801 QualType ArgTy = I->getType();
Eli Friedman472778e2008-02-09 08:50:58 +0000802
Chris Lattner660ac122007-08-26 22:55:13 +0000803 if (!hasAggregateLLVMType(ArgTy)) {
804 // Scalar argument is passed by-value.
Ted Kremenek55499762008-06-17 02:43:46 +0000805 Args.push_back(EmitScalarExpr(*I));
Chris Lattner9b2dc282008-04-04 16:54:41 +0000806 } else if (ArgTy->isAnyComplexType()) {
Chris Lattner660ac122007-08-26 22:55:13 +0000807 // Make a temporary alloca to pass the argument.
808 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Ted Kremenek55499762008-06-17 02:43:46 +0000809 EmitComplexExprIntoAddr(*I, DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000810 Args.push_back(DestMem);
811 } else {
812 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Ted Kremenek55499762008-06-17 02:43:46 +0000813 EmitAggExpr(*I, DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000814 Args.push_back(DestMem);
Reid Spencer5f016e22007-07-11 17:01:13 +0000815 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000816 }
817
Nate Begemanec9426c2008-03-09 03:09:36 +0000818 llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000819
820 // Note that there is parallel code in SetFunctionAttributes in CodeGenModule
821 llvm::SmallVector<llvm::ParamAttrsWithIndex, 8> ParamAttrList;
822 if (hasAggregateLLVMType(ResultType))
823 ParamAttrList.push_back(
824 llvm::ParamAttrsWithIndex::get(1, llvm::ParamAttr::StructRet));
825 unsigned increment = hasAggregateLLVMType(ResultType) ? 2 : 1;
Ted Kremenek55499762008-06-17 02:43:46 +0000826
827 unsigned i = 0;
828 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I, ++i) {
829 QualType ParamType = I->getType();
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000830 unsigned ParamAttrs = 0;
831 if (ParamType->isRecordType())
832 ParamAttrs |= llvm::ParamAttr::ByVal;
833 if (ParamType->isSignedIntegerType() && ParamType->isPromotableIntegerType())
834 ParamAttrs |= llvm::ParamAttr::SExt;
835 if (ParamType->isUnsignedIntegerType() && ParamType->isPromotableIntegerType())
836 ParamAttrs |= llvm::ParamAttr::ZExt;
837 if (ParamAttrs)
838 ParamAttrList.push_back(llvm::ParamAttrsWithIndex::get(i + increment,
839 ParamAttrs));
840 }
841 CI->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
842 ParamAttrList.size()));
843
Nate Begemanec9426c2008-03-09 03:09:36 +0000844 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
845 CI->setCallingConv(F->getCallingConv());
846 if (CI->getType() != llvm::Type::VoidTy)
847 CI->setName("call");
Chris Lattner9b2dc282008-04-04 16:54:41 +0000848 else if (ResultType->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +0000849 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000850 else if (hasAggregateLLVMType(ResultType))
Chris Lattnercc666af2007-08-10 17:02:28 +0000851 // Struct return.
852 return RValue::getAggregate(Args[0]);
Chris Lattner2202bce2007-11-30 17:56:23 +0000853 else {
854 // void return.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000855 assert(ResultType->isVoidType() && "Should only have a void expr here");
Nate Begemanec9426c2008-03-09 03:09:36 +0000856 CI = 0;
Chris Lattner2202bce2007-11-30 17:56:23 +0000857 }
Chris Lattnercc666af2007-08-10 17:02:28 +0000858
Nate Begemanec9426c2008-03-09 03:09:36 +0000859 return RValue::get(CI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000860}