blob: 091001e734e4967aa3a581e919b149702faad8ef [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"
16#include "clang/AST/AST.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000017#include "clang/Basic/TargetInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "llvm/Constants.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Function.h"
21#include "llvm/GlobalVariable.h"
Chris Lattner99e0d792007-07-16 05:43:05 +000022#include "llvm/Support/MathExtras.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000023#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25using namespace CodeGen;
26
27//===--------------------------------------------------------------------===//
28// Miscellaneous Helper Methods
29//===--------------------------------------------------------------------===//
30
31/// CreateTempAlloca - This creates a alloca and inserts it into the entry
32/// block.
33llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
34 const char *Name) {
35 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
36}
37
38/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
39/// expression and compare the result against zero, returning an Int1Ty value.
40llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000041 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000042 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000043 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000044
Chris Lattner9069fa22007-08-26 16:46:58 +000045 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000046}
47
Chris Lattner9b655512007-08-31 22:49:20 +000048/// EmitAnyExpr - Emit code to compute the specified expression which can have
49/// any type. The result is returned as an RValue struct. If this is an
50/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
51/// the result should be returned.
52RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
53 bool isAggLocVolatile) {
54 if (!hasAggregateLLVMType(E->getType()))
55 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000056 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000057 return RValue::getComplex(EmitComplexExpr(E));
58
59 EmitAggExpr(E, AggLoc, isAggLocVolatile);
60 return RValue::getAggregate(AggLoc);
61}
62
Dan Gohman4f8d1232008-05-22 00:50:06 +000063/// getAccessedFieldNo - Given an encoded value and a result number, return
64/// the input field number being accessed.
65unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
66 const llvm::Constant *Elts) {
67 if (isa<llvm::ConstantAggregateZero>(Elts))
68 return 0;
69
70 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
71}
72
Chris Lattner9b655512007-08-31 22:49:20 +000073
Reid Spencer5f016e22007-07-11 17:01:13 +000074//===----------------------------------------------------------------------===//
75// LValue Expression Emission
76//===----------------------------------------------------------------------===//
77
78/// EmitLValue - Emit code to compute a designator that specifies the location
79/// of the expression.
80///
81/// This can return one of two things: a simple address or a bitfield
82/// reference. In either case, the LLVM Value* in the LValue structure is
83/// guaranteed to be an LLVM pointer type.
84///
85/// If this returns a bitfield reference, nothing about the pointee type of
86/// the LLVM value is known: For example, it may not be a pointer to an
87/// integer.
88///
89/// If this returns a normal address, and if the lvalue's C type is fixed
90/// size, this method guarantees that the returned pointer type will point to
91/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
92/// variable length type, this is not possible.
93///
94LValue CodeGenFunction::EmitLValue(const Expr *E) {
95 switch (E->getStmtClass()) {
Chris Lattner7013c8c2007-08-26 05:06:40 +000096 default: {
Chris Lattnerce5605e2008-03-30 23:25:33 +000097 printf("Statement class: %d\n", E->getStmtClass());
Chris Lattnerdc4d2802007-12-02 01:49:16 +000098 WarnUnsupported(E, "l-value expression");
Christopher Lambddc23f32007-12-17 01:11:20 +000099 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
Eli Friedman1e692ac2008-06-13 23:01:12 +0000100 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
101 E->getType().getCVRQualifiers());
Chris Lattner7013c8c2007-08-26 05:06:40 +0000102 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000103
Christopher Lamb22c940e2007-12-29 05:02:41 +0000104 case Expr::CallExprClass: return EmitCallExprLValue(cast<CallExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E));
106 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000107 case Expr::PredefinedExprClass:
108 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000109 case Expr::StringLiteralClass:
110 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000111
112 case Expr::ObjCIvarRefExprClass:
113 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000114
115 case Expr::UnaryOperatorClass:
116 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
117 case Expr::ArraySubscriptExprClass:
118 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000119 case Expr::ExtVectorElementExprClass:
120 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000121 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000122 case Expr::CompoundLiteralExprClass:
123 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000124 }
125}
126
127/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
128/// this method emits the address of the lvalue, then loads the result as an
129/// rvalue, returning the rvalue.
130RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000131 if (LV.isSimple()) {
132 llvm::Value *Ptr = LV.getAddress();
133 const llvm::Type *EltTy =
134 cast<llvm::PointerType>(Ptr->getType())->getElementType();
135
136 // Simple scalar l-value.
Dan Gohmand79a7262008-05-22 22:12:56 +0000137 if (EltTy->isSingleValueType()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000138 llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp");
Chris Lattner01e3c9e2008-01-30 07:01:17 +0000139
140 // Bool can have different representation in memory than in registers.
141 if (ExprType->isBooleanType()) {
142 if (V->getType() != llvm::Type::Int1Ty)
143 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
144 }
145
146 return RValue::get(V);
147 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000148
Chris Lattner883f6a72007-08-11 00:04:45 +0000149 assert(ExprType->isFunctionType() && "Unknown scalar value");
150 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 }
152
153 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000154 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
155 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000156 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
157 "vecext"));
158 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000159
160 // If this is a reference to a subset of the elements of a vector, either
161 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000162 if (LV.isExtVectorElt())
163 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000164
165 if (LV.isBitfield())
166 return EmitLoadOfBitfieldLValue(LV, ExprType);
167
168 assert(0 && "Unknown LValue type!");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000169 //an invalid RValue, but the assert will
170 //ensure that this point is never reached
171 return RValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000172}
173
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000174RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
175 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000176 unsigned StartBit = LV.getBitfieldStartBit();
177 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000178 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000179
180 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000181 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000182 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000183
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000184 // In some cases the bitfield may straddle two memory locations.
185 // Currently we load the entire bitfield, then do the magic to
186 // sign-extend it if necessary. This results in somewhat more code
187 // than necessary for the common case (one load), since two shifts
188 // accomplish both the masking and sign extension.
189 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
190 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
191
192 // Shift to proper location.
193 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
194 "bf.lo");
195
196 // Mask off unused bits.
197 llvm::Constant *LowMask =
198 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
199 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
200
201 // Fetch the high bits if necessary.
202 if (LowBits < BitfieldSize) {
203 unsigned HighBits = BitfieldSize - LowBits;
204 llvm::Value *HighPtr =
205 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
206 "bf.ptr.hi");
207 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
208 LV.isVolatileQualified(),
209 "tmp");
210
211 // Mask off unused bits.
212 llvm::Constant *HighMask =
213 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
214 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000215
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000216 // Shift to proper location and or in to bitfield value.
217 HighVal = Builder.CreateShl(HighVal,
218 llvm::ConstantInt::get(EltTy, LowBits));
219 Val = Builder.CreateOr(Val, HighVal, "bf.val");
220 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000221
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000222 // Sign extend if necessary.
223 if (LV.isBitfieldSigned()) {
224 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
225 EltTySize - BitfieldSize);
226 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
227 ExtraBits, "bf.val.sext");
228 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000229
230 // The bitfield type and the normal type differ when the storage sizes
231 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000232 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000233
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000234 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000235}
236
Chris Lattner34cdc862007-08-03 16:18:34 +0000237// If this is a reference to a subset of the elements of a vector, either
238// shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000239RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
240 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000241 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
242 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000243
Nate Begeman8a997642008-05-09 06:41:27 +0000244 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000245
246 // If the result of the expression is a non-vector type, we must be
247 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000248 const VectorType *ExprVT = ExprType->getAsVectorType();
249 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000250 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000251 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
252 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
253 }
254
255 // If the source and destination have the same number of elements, use a
256 // vector shuffle instead of insert/extracts.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000257 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000258 unsigned NumSourceElts =
259 cast<llvm::VectorType>(Vec->getType())->getNumElements();
260
261 if (NumResultElts == NumSourceElts) {
262 llvm::SmallVector<llvm::Constant*, 4> Mask;
263 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000264 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000265 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
266 }
267
268 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
269 Vec = Builder.CreateShuffleVector(Vec,
270 llvm::UndefValue::get(Vec->getType()),
271 MaskV, "tmp");
272 return RValue::get(Vec);
273 }
274
275 // Start out with an undef of the result type.
276 llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType));
277
278 // Extract/Insert each element of the result.
279 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000280 unsigned InIdx = getAccessedFieldNo(i, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000281 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
282 Elt = Builder.CreateExtractElement(Vec, Elt, "tmp");
283
284 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
285 Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp");
286 }
287
288 return RValue::get(Result);
289}
290
291
Reid Spencer5f016e22007-07-11 17:01:13 +0000292
293/// EmitStoreThroughLValue - Store the specified rvalue into the specified
294/// lvalue, where both are guaranteed to the have the same type, and that type
295/// is 'Ty'.
296void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
297 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000298 if (!Dst.isSimple()) {
299 if (Dst.isVectorElt()) {
300 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000301 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
302 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000303 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000304 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000305 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000306 return;
307 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000308
Nate Begeman213541a2008-04-18 23:10:10 +0000309 // If this is an update of extended vector elements, insert them as
310 // appropriate.
311 if (Dst.isExtVectorElt())
312 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000313
314 if (Dst.isBitfield())
315 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
316
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000317 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000318 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000319
320 llvm::Value *DstAddr = Dst.getAddress();
Chris Lattner883f6a72007-08-11 00:04:45 +0000321 assert(Src.isScalar() && "Can't emit an agg store with this method");
322 // FIXME: Handle volatility etc.
Chris Lattner9b655512007-08-31 22:49:20 +0000323 const llvm::Type *SrcTy = Src.getScalarVal()->getType();
Christopher Lambddc23f32007-12-17 01:11:20 +0000324 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType());
325 const llvm::Type *AddrTy = DstPtr->getElementType();
326 unsigned AS = DstPtr->getAddressSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000327
Chris Lattner883f6a72007-08-11 00:04:45 +0000328 if (AddrTy != SrcTy)
Christopher Lambddc23f32007-12-17 01:11:20 +0000329 DstAddr = Builder.CreateBitCast(DstAddr,
330 llvm::PointerType::get(SrcTy, AS),
Chris Lattner883f6a72007-08-11 00:04:45 +0000331 "storetmp");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000332 Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000333}
334
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000335void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
336 QualType Ty) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000337 unsigned StartBit = Dst.getBitfieldStartBit();
338 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000339 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000340
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000341 const llvm::Type *EltTy =
342 cast<llvm::PointerType>(Ptr->getType())->getElementType();
343 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
344
345 // Get the new value, cast to the appropriate type and masked to
346 // exactly the size of the bit-field.
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000347 llvm::Value *NewVal = Src.getScalarVal();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000348 NewVal = Builder.CreateIntCast(NewVal, EltTy, false, "tmp");
349 llvm::Constant *Mask =
350 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
351 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000352
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000353 // In some cases the bitfield may straddle two memory locations.
354 // Emit the low part first and check to see if the high needs to be
355 // done.
356 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
357 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
358 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000359
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000360 // Compute the mask for zero-ing the low part of this bitfield.
361 llvm::Constant *InvMask =
362 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
363 StartBit + LowBits));
364
365 // Compute the new low part as
366 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
367 // with the shift of NewVal implicitly stripping the high bits.
368 llvm::Value *NewLowVal =
369 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
370 "bf.value.lo");
371 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
372 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
373
374 // Write back.
375 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000376
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000377 // If the low part doesn't cover the bitfield emit a high part.
378 if (LowBits < BitfieldSize) {
379 unsigned HighBits = BitfieldSize - LowBits;
380 llvm::Value *HighPtr =
381 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
382 "bf.ptr.hi");
383 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
384 Dst.isVolatileQualified(),
385 "bf.prev.hi");
386
387 // Compute the mask for zero-ing the high part of this bitfield.
388 llvm::Constant *InvMask =
389 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
390
391 // Compute the new high part as
392 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
393 // where the high bits of NewVal have already been cleared and the
394 // shift stripping the low bits.
395 llvm::Value *NewHighVal =
396 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
397 "bf.value.high");
398 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
399 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
400
401 // Write back.
402 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
403 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000404}
405
Nate Begeman213541a2008-04-18 23:10:10 +0000406void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
407 LValue Dst,
408 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000409 // This access turns into a read/modify/write of the vector. Load the input
410 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000411 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
412 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000413 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000414
Chris Lattner9b655512007-08-31 22:49:20 +0000415 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000416
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000417 if (const VectorType *VTy = Ty->getAsVectorType()) {
418 unsigned NumSrcElts = VTy->getNumElements();
419
420 // Extract/Insert each element.
421 for (unsigned i = 0; i != NumSrcElts; ++i) {
422 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
423 Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp");
424
Dan Gohman4f8d1232008-05-22 00:50:06 +0000425 unsigned Idx = getAccessedFieldNo(i, Elts);
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000426 llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx);
427 Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp");
428 }
429 } else {
430 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000431 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000432 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
433 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000434 }
435
Eli Friedman1e692ac2008-06-13 23:01:12 +0000436 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000437}
438
Reid Spencer5f016e22007-07-11 17:01:13 +0000439
440LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000441 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
442
Chris Lattner41110242008-06-17 18:05:57 +0000443 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
444 isa<ImplicitParamDecl>(VD))) {
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000445 if (VD->getStorageClass() == VarDecl::Extern)
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000446 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000447 E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000448 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000449 llvm::Value *V = LocalDeclMap[VD];
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000450 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000451 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000452 }
Steve Naroff248a7532008-04-15 22:42:06 +0000453 } else if (VD && VD->isFileVarDecl()) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000454 return LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000455 E->getType().getCVRQualifiers());
Steve Naroff248a7532008-04-15 22:42:06 +0000456 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000457 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Eli Friedman1e692ac2008-06-13 23:01:12 +0000458 E->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000459 }
Chris Lattner41110242008-06-17 18:05:57 +0000460 else if (const ImplicitParamDecl *IPD =
461 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
462 llvm::Value *V = LocalDeclMap[IPD];
463 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
464 return LValue::MakeAddr(V, E->getType().getCVRQualifiers());
465 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000466 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000467 //an invalid LValue, but the assert will
468 //ensure that this point is never reached.
469 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000470}
471
472LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
473 // __extension__ doesn't affect lvalue-ness.
474 if (E->getOpcode() == UnaryOperator::Extension)
475 return EmitLValue(E->getSubExpr());
476
Chris Lattner96196622008-07-26 22:37:01 +0000477 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000478 switch (E->getOpcode()) {
479 default: assert(0 && "Unknown unary operator lvalue!");
480 case UnaryOperator::Deref:
Eli Friedman1e692ac2008-06-13 23:01:12 +0000481 return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000482 ExprTy->getAsPointerType()->getPointeeType()
483 .getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000484 case UnaryOperator::Real:
485 case UnaryOperator::Imag:
486 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000487 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
488 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000489 Idx, "idx"),
490 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000491 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000492}
493
494LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
495 assert(!E->isWide() && "FIXME: Wide strings not supported yet!");
Eli Friedman922696f2008-05-19 17:51:16 +0000496 // Get the string data
Reid Spencer5f016e22007-07-11 17:01:13 +0000497 const char *StrData = E->getStrData();
498 unsigned Len = E->getByteLength();
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000499 std::string StringLiteral(StrData, StrData+Len);
Eli Friedman922696f2008-05-19 17:51:16 +0000500
501 // Resize the string to the right size
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000502 const ConstantArrayType *CAT =
503 getContext().getAsConstantArrayType(E->getType());
Eli Friedman922696f2008-05-19 17:51:16 +0000504 uint64_t RealLen = CAT->getSize().getZExtValue();
505 StringLiteral.resize(RealLen, '\0');
506
Eli Friedman1e692ac2008-06-13 23:01:12 +0000507 return LValue::MakeAddr(CGM.GetAddrOfConstantString(StringLiteral),0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000508}
509
Chris Lattnerd9f69102008-08-10 01:53:14 +0000510LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000511 std::string FunctionName;
512 if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
513 FunctionName = FD->getName();
514 }
515 else {
516 assert(0 && "Attempting to load predefined constant for invalid decl type");
517 }
Anders Carlsson22742662007-07-21 05:21:51 +0000518 std::string GlobalVarName;
519
520 switch (E->getIdentType()) {
521 default:
522 assert(0 && "unknown pre-defined ident type");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000523 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000524 GlobalVarName = "__func__.";
525 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000526 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000527 GlobalVarName = "__FUNCTION__.";
528 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000529 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000530 // FIXME:: Demangle C++ method names
531 GlobalVarName = "__PRETTY_FUNCTION__.";
532 break;
533 }
534
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000535 GlobalVarName += FunctionName;
Anders Carlsson22742662007-07-21 05:21:51 +0000536
537 // FIXME: Can cache/reuse these within the module.
538 llvm::Constant *C=llvm::ConstantArray::get(FunctionName);
539
540 // Create a global variable for this.
541 C = new llvm::GlobalVariable(C->getType(), true,
542 llvm::GlobalValue::InternalLinkage,
543 C, GlobalVarName, CurFn->getParent());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000544 return LValue::MakeAddr(C,0);
Anders Carlsson22742662007-07-21 05:21:51 +0000545}
546
Reid Spencer5f016e22007-07-11 17:01:13 +0000547LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000548 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000549 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000550
551 // If the base is a vector type, then we are forming a vector element lvalue
552 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000553 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000554 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000555 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000556 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000557 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000558 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
559 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000560 }
561
Ted Kremenek23245122007-08-20 16:18:38 +0000562 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000563 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000564
Ted Kremenek23245122007-08-20 16:18:38 +0000565 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000566 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000567 bool IdxSigned = IdxTy->isSignedIntegerType();
568 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
569 if (IdxBitwidth != LLVMPointerWidth)
570 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
571 IdxSigned, "idxprom");
572
573 // We know that the pointer points to a type of the correct size, unless the
574 // size is a VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000575 if (!E->getType()->isConstantSizeType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000576 assert(0 && "VLA idx not implemented");
Chris Lattner96196622008-07-26 22:37:01 +0000577 QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType());
Chris Lattnerb77792e2008-07-26 22:17:49 +0000578
Eli Friedman1e692ac2008-06-13 23:01:12 +0000579 return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000580 ExprTy->getAsPointerType()->getPointeeType()
581 .getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000582}
583
Nate Begeman3b8d1162008-05-13 21:03:02 +0000584static
585llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
586 llvm::SmallVector<llvm::Constant *, 4> CElts;
587
588 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
589 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
590
591 return llvm::ConstantVector::get(&CElts[0], CElts.size());
592}
593
Chris Lattner349aaec2007-08-02 23:37:31 +0000594LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000595EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000596 // Emit the base vector as an l-value.
597 LValue Base = EmitLValue(E->getBase());
Chris Lattner349aaec2007-08-02 23:37:31 +0000598
Nate Begeman3b8d1162008-05-13 21:03:02 +0000599 // Encode the element access list into a vector of unsigned indices.
600 llvm::SmallVector<unsigned, 4> Indices;
601 E->getEncodedElementAccess(Indices);
602
603 if (Base.isSimple()) {
604 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000605 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
606 E->getBase()->getType().getCVRQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000607 }
608 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
609
610 llvm::Constant *BaseElts = Base.getExtVectorElts();
611 llvm::SmallVector<llvm::Constant *, 4> CElts;
612
613 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
614 if (isa<llvm::ConstantAggregateZero>(BaseElts))
615 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
616 else
617 CElts.push_back(BaseElts->getOperand(Indices[i]));
618 }
619 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000620 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
621 E->getBase()->getType().getCVRQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000622}
623
Devang Patelb9b00ad2007-10-23 20:28:39 +0000624LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000625 bool isUnion = false;
Devang Patel126a8562007-10-24 22:26:28 +0000626 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000627 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000628 unsigned CVRQualifiers=0;
629
Chris Lattner12f65f62007-12-02 18:52:07 +0000630 // 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 +0000631 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000632 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000633 const PointerType *PTy =
Chris Lattner96196622008-07-26 22:37:01 +0000634 cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType()));
Devang Patelfe2419a2007-12-11 21:33:16 +0000635 if (PTy->getPointeeType()->isUnionType())
636 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000637 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Devang Patelfe2419a2007-12-11 21:33:16 +0000638 }
Chris Lattner12f65f62007-12-02 18:52:07 +0000639 else {
640 LValue BaseLV = EmitLValue(BaseExpr);
641 // FIXME: this isn't right for bitfields.
642 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000643 if (BaseExpr->getType()->isUnionType())
644 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000645 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000646 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000647
648 FieldDecl *Field = E->getMemberDecl();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000649 return EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers);
Eli Friedman472778e2008-02-09 08:50:58 +0000650}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000651
Eli Friedman472778e2008-02-09 08:50:58 +0000652LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
653 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000654 bool isUnion,
655 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000656{
657 llvm::Value *V;
658 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000659
Eli Friedman1e86b342008-05-29 11:33:25 +0000660 if (Field->isBitField()) {
Eli Friedman316bb1b2008-05-17 20:03:47 +0000661 // FIXME: CodeGenTypes should expose a method to get the appropriate
662 // type for FieldTy (the appropriate type is ABI-dependent).
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000663 const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000664 const llvm::PointerType *BaseTy =
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000665 cast<llvm::PointerType>(BaseValue->getType());
666 unsigned AS = BaseTy->getAddressSpace();
667 BaseValue = Builder.CreateBitCast(BaseValue,
668 llvm::PointerType::get(FieldTy, AS),
669 "tmp");
670 V = Builder.CreateGEP(BaseValue,
671 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
672 "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000673
674 CodeGenTypes::BitFieldInfo bitFieldInfo =
675 CGM.getTypes().getBitFieldInfo(Field);
676 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000677 Field->getType()->isSignedIntegerType(),
678 Field->getType().getCVRQualifiers()|CVRQualifiers);
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000679 }
Eli Friedmanbfe08e02008-06-01 15:16:01 +0000680
Eli Friedman1e86b342008-05-29 11:33:25 +0000681 V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
682
Devang Patelabad06c2007-10-26 19:42:18 +0000683 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000684 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000685 const llvm::Type *FieldTy =
686 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000687 const llvm::PointerType * BaseTy =
688 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000689 unsigned AS = BaseTy->getAddressSpace();
690 V = Builder.CreateBitCast(V,
691 llvm::PointerType::get(FieldTy, AS),
692 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000693 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000694
Eli Friedman1e692ac2008-06-13 23:01:12 +0000695 return LValue::MakeAddr(V,
696 Field->getType().getCVRQualifiers()|CVRQualifiers);
Devang Patelb9b00ad2007-10-23 20:28:39 +0000697}
698
Eli Friedman1e692ac2008-06-13 23:01:12 +0000699LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E)
700{
Eli Friedman06e863f2008-05-13 23:18:27 +0000701 const llvm::Type *LTy = ConvertType(E->getType());
702 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
703
704 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000705 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +0000706
707 if (E->getType()->isComplexType()) {
708 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
709 } else if (hasAggregateLLVMType(E->getType())) {
710 EmitAnyExpr(InitExpr, DeclPtr, false);
711 } else {
712 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
713 }
714
715 return Result;
716}
717
Reid Spencer5f016e22007-07-11 17:01:13 +0000718//===--------------------------------------------------------------------===//
719// Expression Emission
720//===--------------------------------------------------------------------===//
721
Chris Lattner7016a702007-08-20 22:37:10 +0000722
Reid Spencer5f016e22007-07-11 17:01:13 +0000723RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Anders Carlsson022012e2007-08-20 18:05:56 +0000724 if (const ImplicitCastExpr *IcExpr =
725 dyn_cast<const ImplicitCastExpr>(E->getCallee()))
726 if (const DeclRefExpr *DRExpr =
727 dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr()))
728 if (const FunctionDecl *FDecl =
729 dyn_cast<const FunctionDecl>(DRExpr->getDecl()))
730 if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID())
731 return EmitBuiltinExpr(builtinID, E);
732
Chris Lattner7f02f722007-08-24 05:35:26 +0000733 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +0000734 return EmitCallExpr(Callee, E->getCallee()->getType(),
Ted Kremenek55499762008-06-17 02:43:46 +0000735 E->arg_begin(), E->arg_end());
Nate Begemane2ce1d92008-01-17 17:46:27 +0000736}
737
Ted Kremenek55499762008-06-17 02:43:46 +0000738RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr,
739 CallExpr::const_arg_iterator ArgBeg,
740 CallExpr::const_arg_iterator ArgEnd) {
741
Nate Begemane2ce1d92008-01-17 17:46:27 +0000742 llvm::Value *Callee = EmitScalarExpr(FnExpr);
Ted Kremenek55499762008-06-17 02:43:46 +0000743 return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd);
Chris Lattnerc5e940f2007-08-31 04:44:06 +0000744}
745
Christopher Lamb22c940e2007-12-29 05:02:41 +0000746LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
747 // Can only get l-value for call expression returning aggregate type
748 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000749 // FIXME: can this be volatile?
750 return LValue::MakeAddr(RV.getAggregateAddr(),
751 E->getType().getCVRQualifiers());
Christopher Lamb22c940e2007-12-29 05:02:41 +0000752}
753
Chris Lattner391d77a2008-03-30 23:03:07 +0000754LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
755 // Objective-C objects are traditionally C structures with their layout
756 // defined at compile-time. In some implementations, their layout is not
757 // defined until run time in order to allow instance variables to be added to
758 // a class without recompiling all of the subclasses. If this is the case
759 // then the CGObjCRuntime subclass must return true to LateBoundIvars and
760 // implement the lookup itself.
Chris Lattnerce5605e2008-03-30 23:25:33 +0000761 if (CGM.getObjCRuntime()->LateBoundIVars()) {
Chris Lattner391d77a2008-03-30 23:03:07 +0000762 assert(0 && "FIXME: Implement support for late-bound instance variables");
763 return LValue(); // Not reached.
764 }
Chris Lattnerce5605e2008-03-30 23:25:33 +0000765
766 // Get a structure type for the object
767 QualType ExprTy = E->getBase()->getType();
768 const llvm::Type *ObjectType = ConvertType(ExprTy);
769 // TODO: Add a special case for isa (index 0)
770 // Work out which index the ivar is
771 const ObjCIvarDecl *Decl = E->getDecl();
772 unsigned Index = CGM.getTypes().getLLVMFieldNo(Decl);
Chris Lattner391d77a2008-03-30 23:03:07 +0000773
Chris Lattnerce5605e2008-03-30 23:25:33 +0000774 // Get object pointer and coerce object pointer to correct type.
775 llvm::Value *Object = EmitLValue(E->getBase()).getAddress();
Eli Friedman1e692ac2008-06-13 23:01:12 +0000776 // FIXME: Volatility
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000777 Object = Builder.CreateLoad(Object, E->getDecl()->getName());
Chris Lattnerce5605e2008-03-30 23:25:33 +0000778 if (Object->getType() != ObjectType)
779 Object = Builder.CreateBitCast(Object, ObjectType);
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000780
Chris Lattnerce5605e2008-03-30 23:25:33 +0000781
782 // Return a pointer to the right element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000783 // FIXME: volatile
Chris Lattnerce5605e2008-03-30 23:25:33 +0000784 return LValue::MakeAddr(Builder.CreateStructGEP(Object, Index,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000785 Decl->getName()),0);
Chris Lattner391d77a2008-03-30 23:03:07 +0000786}
787
Nate Begemane2ce1d92008-01-17 17:46:27 +0000788RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType,
Ted Kremenek55499762008-06-17 02:43:46 +0000789 CallExpr::const_arg_iterator ArgBeg,
790 CallExpr::const_arg_iterator ArgEnd) {
791
Reid Spencer5f016e22007-07-11 17:01:13 +0000792 // The callee type will always be a pointer to function type, get the function
793 // type.
Chris Lattner96196622008-07-26 22:37:01 +0000794 FnType = FnType->getAsPointerType()->getPointeeType();
Chris Lattner05d2fb42008-07-31 04:58:58 +0000795 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Eli Friedman5193b8a2008-01-30 01:32:06 +0000796
Reid Spencer5f016e22007-07-11 17:01:13 +0000797 llvm::SmallVector<llvm::Value*, 16> Args;
798
Chris Lattnercc666af2007-08-10 17:02:28 +0000799 // Handle struct-return functions by passing a pointer to the location that
800 // we would like to return into.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000801 if (hasAggregateLLVMType(ResultType)) {
Chris Lattnercc666af2007-08-10 17:02:28 +0000802 // Create a temporary alloca to hold the result of the call. :(
Nate Begemane2ce1d92008-01-17 17:46:27 +0000803 Args.push_back(CreateTempAlloca(ConvertType(ResultType)));
Chris Lattnercc666af2007-08-10 17:02:28 +0000804 // FIXME: set the stret attribute on the argument.
805 }
806
Ted Kremenek55499762008-06-17 02:43:46 +0000807 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I) {
808 QualType ArgTy = I->getType();
Eli Friedman472778e2008-02-09 08:50:58 +0000809
Chris Lattner660ac122007-08-26 22:55:13 +0000810 if (!hasAggregateLLVMType(ArgTy)) {
811 // Scalar argument is passed by-value.
Ted Kremenek55499762008-06-17 02:43:46 +0000812 Args.push_back(EmitScalarExpr(*I));
Chris Lattner9b2dc282008-04-04 16:54:41 +0000813 } else if (ArgTy->isAnyComplexType()) {
Chris Lattner660ac122007-08-26 22:55:13 +0000814 // Make a temporary alloca to pass the argument.
815 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Ted Kremenek55499762008-06-17 02:43:46 +0000816 EmitComplexExprIntoAddr(*I, DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000817 Args.push_back(DestMem);
818 } else {
819 llvm::Value *DestMem = CreateTempAlloca(ConvertType(ArgTy));
Ted Kremenek55499762008-06-17 02:43:46 +0000820 EmitAggExpr(*I, DestMem, false);
Chris Lattner660ac122007-08-26 22:55:13 +0000821 Args.push_back(DestMem);
Reid Spencer5f016e22007-07-11 17:01:13 +0000822 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000823 }
824
Nate Begemanec9426c2008-03-09 03:09:36 +0000825 llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000826
827 // Note that there is parallel code in SetFunctionAttributes in CodeGenModule
828 llvm::SmallVector<llvm::ParamAttrsWithIndex, 8> ParamAttrList;
829 if (hasAggregateLLVMType(ResultType))
830 ParamAttrList.push_back(
831 llvm::ParamAttrsWithIndex::get(1, llvm::ParamAttr::StructRet));
832 unsigned increment = hasAggregateLLVMType(ResultType) ? 2 : 1;
Ted Kremenek55499762008-06-17 02:43:46 +0000833
834 unsigned i = 0;
835 for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I, ++i) {
836 QualType ParamType = I->getType();
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000837 unsigned ParamAttrs = 0;
838 if (ParamType->isRecordType())
839 ParamAttrs |= llvm::ParamAttr::ByVal;
840 if (ParamType->isSignedIntegerType() && ParamType->isPromotableIntegerType())
841 ParamAttrs |= llvm::ParamAttr::SExt;
842 if (ParamType->isUnsignedIntegerType() && ParamType->isPromotableIntegerType())
843 ParamAttrs |= llvm::ParamAttr::ZExt;
844 if (ParamAttrs)
845 ParamAttrList.push_back(llvm::ParamAttrsWithIndex::get(i + increment,
846 ParamAttrs));
847 }
848 CI->setParamAttrs(llvm::PAListPtr::get(ParamAttrList.begin(),
849 ParamAttrList.size()));
850
Nate Begemanec9426c2008-03-09 03:09:36 +0000851 if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
852 CI->setCallingConv(F->getCallingConv());
853 if (CI->getType() != llvm::Type::VoidTy)
854 CI->setName("call");
Chris Lattner9b2dc282008-04-04 16:54:41 +0000855 else if (ResultType->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +0000856 return RValue::getComplex(LoadComplexFromAddr(Args[0], false));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000857 else if (hasAggregateLLVMType(ResultType))
Chris Lattnercc666af2007-08-10 17:02:28 +0000858 // Struct return.
859 return RValue::getAggregate(Args[0]);
Chris Lattner2202bce2007-11-30 17:56:23 +0000860 else {
861 // void return.
Nate Begemane2ce1d92008-01-17 17:46:27 +0000862 assert(ResultType->isVoidType() && "Should only have a void expr here");
Nate Begemanec9426c2008-03-09 03:09:36 +0000863 CI = 0;
Chris Lattner2202bce2007-11-30 17:56:23 +0000864 }
Chris Lattnercc666af2007-08-10 17:02:28 +0000865
Nate Begemanec9426c2008-03-09 03:09:36 +0000866 return RValue::get(CI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000867}