blob: 86993fbe150bb8283e58167252861d9bf30c7d7d [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This contains code to emit Expr nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000016#include "CGCall.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000017#include "CGObjCRuntime.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000018#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000019#include "clang/AST/DeclObjC.h"
Eli Friedman316bb1b2008-05-17 20:03:47 +000020#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22using namespace CodeGen;
23
24//===--------------------------------------------------------------------===//
25// Miscellaneous Helper Methods
26//===--------------------------------------------------------------------===//
27
28/// CreateTempAlloca - This creates a alloca and inserts it into the entry
29/// block.
30llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
31 const char *Name) {
Chris Lattnerf1466842009-03-22 00:24:14 +000032 if (!Builder.isNamePreserving())
33 Name = "";
Reid Spencer5f016e22007-07-11 17:01:13 +000034 return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
35}
36
37/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
38/// expression and compare the result against zero, returning an Int1Ty value.
39llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
Chris Lattner9069fa22007-08-26 16:46:58 +000040 QualType BoolTy = getContext().BoolTy;
Chris Lattner9b2dc282008-04-04 16:54:41 +000041 if (!E->getType()->isAnyComplexType())
Chris Lattner9069fa22007-08-26 16:46:58 +000042 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000043
Chris Lattner9069fa22007-08-26 16:46:58 +000044 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000045}
46
Chris Lattner9b655512007-08-31 22:49:20 +000047/// EmitAnyExpr - Emit code to compute the specified expression which can have
48/// any type. The result is returned as an RValue struct. If this is an
49/// aggregate expression, the aggloc/agglocvolatile arguments indicate where
50/// the result should be returned.
51RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
52 bool isAggLocVolatile) {
53 if (!hasAggregateLLVMType(E->getType()))
54 return RValue::get(EmitScalarExpr(E));
Chris Lattner9b2dc282008-04-04 16:54:41 +000055 else if (E->getType()->isAnyComplexType())
Chris Lattner9b655512007-08-31 22:49:20 +000056 return RValue::getComplex(EmitComplexExpr(E));
57
58 EmitAggExpr(E, AggLoc, isAggLocVolatile);
59 return RValue::getAggregate(AggLoc);
60}
61
Daniel Dunbar46f45b92008-09-09 01:06:48 +000062/// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
63/// will always be accessible even if no aggregate location is
64/// provided.
65RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
66 bool isAggLocVolatile) {
67 if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
68 !E->getType()->isAnyComplexType())
69 AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
70 return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
71}
72
Dan Gohman4f8d1232008-05-22 00:50:06 +000073/// getAccessedFieldNo - Given an encoded value and a result number, return
74/// the input field number being accessed.
75unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
76 const llvm::Constant *Elts) {
77 if (isa<llvm::ConstantAggregateZero>(Elts))
78 return 0;
79
80 return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
81}
82
Chris Lattner9b655512007-08-31 22:49:20 +000083
Reid Spencer5f016e22007-07-11 17:01:13 +000084//===----------------------------------------------------------------------===//
85// LValue Expression Emission
86//===----------------------------------------------------------------------===//
87
Daniel Dunbar13e81732009-02-05 07:09:07 +000088RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
89 if (Ty->isVoidType()) {
90 return RValue::get(0);
91 } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000092 const llvm::Type *EltTy = ConvertType(CTy->getElementType());
93 llvm::Value *U = llvm::UndefValue::get(EltTy);
94 return RValue::getComplex(std::make_pair(U, U));
Daniel Dunbar13e81732009-02-05 07:09:07 +000095 } else if (hasAggregateLLVMType(Ty)) {
96 const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
97 return RValue::getAggregate(llvm::UndefValue::get(LTy));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +000098 } else {
Daniel Dunbar13e81732009-02-05 07:09:07 +000099 return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
Daniel Dunbar8fa73ed2009-01-09 20:09:28 +0000100 }
Daniel Dunbarce1d38b2009-01-09 16:50:52 +0000101}
102
Daniel Dunbar13e81732009-02-05 07:09:07 +0000103RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
104 const char *Name) {
105 ErrorUnsupported(E, Name);
106 return GetUndefRValue(E->getType());
107}
108
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000109LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
110 const char *Name) {
111 ErrorUnsupported(E, Name);
112 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
113 return LValue::MakeAddr(llvm::UndefValue::get(Ty),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000114 E->getType().getCVRQualifiers(),
115 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000116}
117
Reid Spencer5f016e22007-07-11 17:01:13 +0000118/// EmitLValue - Emit code to compute a designator that specifies the location
119/// of the expression.
120///
121/// This can return one of two things: a simple address or a bitfield
122/// reference. In either case, the LLVM Value* in the LValue structure is
123/// guaranteed to be an LLVM pointer type.
124///
125/// If this returns a bitfield reference, nothing about the pointee type of
126/// the LLVM value is known: For example, it may not be a pointer to an
127/// integer.
128///
129/// If this returns a normal address, and if the lvalue's C type is fixed
130/// size, this method guarantees that the returned pointer type will point to
131/// an LLVM type of the same size of the lvalue's type. If the lvalue has a
132/// variable length type, this is not possible.
133///
134LValue CodeGenFunction::EmitLValue(const Expr *E) {
135 switch (E->getStmtClass()) {
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000136 default: return EmitUnsupportedLValue(E, "l-value expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000137
Daniel Dunbar80e62c22008-09-04 03:20:13 +0000138 case Expr::BinaryOperatorClass:
139 return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
Douglas Gregorb4609802008-11-14 16:09:21 +0000140 case Expr::CallExprClass:
141 case Expr::CXXOperatorCallExprClass:
142 return EmitCallExprLValue(cast<CallExpr>(E));
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +0000143 case Expr::VAArgExprClass:
144 return EmitVAArgExprLValue(cast<VAArgExpr>(E));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000145 case Expr::DeclRefExprClass:
146 case Expr::QualifiedDeclRefExprClass:
147 return EmitDeclRefLValue(cast<DeclRefExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000148 case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerd9f69102008-08-10 01:53:14 +0000149 case Expr::PredefinedExprClass:
150 return EmitPredefinedLValue(cast<PredefinedExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 case Expr::StringLiteralClass:
152 return EmitStringLiteralLValue(cast<StringLiteral>(E));
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000153 case Expr::ObjCEncodeExprClass:
154 return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000155
Mike Stumpa99038c2009-02-28 09:07:16 +0000156 case Expr::BlockDeclRefExprClass:
157 return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
158
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +0000159 case Expr::CXXConditionDeclExprClass:
160 return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
161
Daniel Dunbar0a04d772008-08-23 10:51:21 +0000162 case Expr::ObjCMessageExprClass:
163 return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
Chris Lattner391d77a2008-03-30 23:03:07 +0000164 case Expr::ObjCIvarRefExprClass:
165 return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
Daniel Dunbar6ba82a42008-08-25 20:45:57 +0000166 case Expr::ObjCPropertyRefExprClass:
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000167 return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000168 case Expr::ObjCKVCRefExprClass:
169 return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000170 case Expr::ObjCSuperExprClass:
Chris Lattner65459942009-04-25 19:35:26 +0000171 return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000172
Chris Lattner65459942009-04-25 19:35:26 +0000173 case Expr::StmtExprClass:
174 return EmitStmtExprLValue(cast<StmtExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000175 case Expr::UnaryOperatorClass:
176 return EmitUnaryOpLValue(cast<UnaryOperator>(E));
177 case Expr::ArraySubscriptExprClass:
178 return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
Nate Begeman213541a2008-04-18 23:10:10 +0000179 case Expr::ExtVectorElementExprClass:
180 return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
Devang Patelb9b00ad2007-10-23 20:28:39 +0000181 case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
Eli Friedman06e863f2008-05-13 23:18:27 +0000182 case Expr::CompoundLiteralExprClass:
183 return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
Daniel Dunbar90345582009-03-24 02:38:23 +0000184 case Expr::ConditionalOperatorClass:
185 return EmitConditionalOperator(cast<ConditionalOperator>(E));
Chris Lattner670a62c2008-12-12 05:35:08 +0000186 case Expr::ChooseExprClass:
Eli Friedman79769322009-03-04 05:52:32 +0000187 return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
Chris Lattnerc3953a62009-03-18 04:02:57 +0000188 case Expr::ImplicitCastExprClass:
189 case Expr::CStyleCastExprClass:
190 case Expr::CXXFunctionalCastExprClass:
191 case Expr::CXXStaticCastExprClass:
192 case Expr::CXXDynamicCastExprClass:
193 case Expr::CXXReinterpretCastExprClass:
194 case Expr::CXXConstCastExprClass:
Chris Lattner75dfeda2009-03-18 18:28:57 +0000195 return EmitCastLValue(cast<CastExpr>(E));
Anders Carlssonb14095a2009-04-17 00:06:03 +0000196 case Expr::CXXTemporaryObjectExprClass:
197 return EmitCXXTemporaryObjectExprLValue(cast<CXXTemporaryObjectExpr>(E));
Reid Spencer5f016e22007-07-11 17:01:13 +0000198 }
199}
200
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000201llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
202 QualType Ty) {
203 llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
204
205 // Bool can have different representation in memory than in
206 // registers.
207 if (Ty->isBooleanType())
208 if (V->getType() != llvm::Type::Int1Ty)
209 V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
210
211 return V;
212}
213
214void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
215 bool Volatile) {
216 // Handle stores of types which have different representations in
217 // memory and as LLVM values.
218
219 // FIXME: We shouldn't be this loose, we should only do this
220 // conversion when we have a type we know has a different memory
221 // representation (e.g., bool).
222
223 const llvm::Type *SrcTy = Value->getType();
224 const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
225 if (DstPtr->getElementType() != SrcTy) {
226 const llvm::Type *MemTy =
227 llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
228 Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
229 }
230
231 Builder.CreateStore(Value, Addr, Volatile);
232}
233
Reid Spencer5f016e22007-07-11 17:01:13 +0000234/// EmitLoadOfLValue - Given an expression that represents a value lvalue,
235/// this method emits the address of the lvalue, then loads the result as an
236/// rvalue, returning the rvalue.
237RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000238 if (LV.isObjCWeak()) {
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000239 // load of a __weak object.
240 llvm::Value *AddrWeakObj = LV.getAddress();
Fariborz Jahanian3e283e32008-11-18 22:37:34 +0000241 llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
Fariborz Jahanian6dc23172008-11-18 21:45:40 +0000242 AddrWeakObj);
243 return RValue::get(read_weak);
244 }
245
Reid Spencer5f016e22007-07-11 17:01:13 +0000246 if (LV.isSimple()) {
247 llvm::Value *Ptr = LV.getAddress();
248 const llvm::Type *EltTy =
249 cast<llvm::PointerType>(Ptr->getType())->getElementType();
250
251 // Simple scalar l-value.
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000252 if (EltTy->isSingleValueType())
253 return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
254 ExprType));
Reid Spencer5f016e22007-07-11 17:01:13 +0000255
Chris Lattner883f6a72007-08-11 00:04:45 +0000256 assert(ExprType->isFunctionType() && "Unknown scalar value");
257 return RValue::get(Ptr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000258 }
259
260 if (LV.isVectorElt()) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000261 llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
262 LV.isVolatileQualified(), "tmp");
Reid Spencer5f016e22007-07-11 17:01:13 +0000263 return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
264 "vecext"));
265 }
Chris Lattner46ea8eb2007-08-03 00:16:29 +0000266
267 // If this is a reference to a subset of the elements of a vector, either
268 // shuffle the input or extract/insert them as appropriate.
Nate Begeman213541a2008-04-18 23:10:10 +0000269 if (LV.isExtVectorElt())
270 return EmitLoadOfExtVectorElementLValue(LV, ExprType);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000271
272 if (LV.isBitfield())
273 return EmitLoadOfBitfieldLValue(LV, ExprType);
274
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000275 if (LV.isPropertyRef())
276 return EmitLoadOfPropertyRefLValue(LV, ExprType);
277
Chris Lattner73525de2009-02-16 21:11:58 +0000278 assert(LV.isKVCRef() && "Unknown LValue type!");
279 return EmitLoadOfKVCRefLValue(LV, ExprType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000280}
281
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000282RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
283 QualType ExprType) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000284 unsigned StartBit = LV.getBitfieldStartBit();
285 unsigned BitfieldSize = LV.getBitfieldSize();
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000286 llvm::Value *Ptr = LV.getBitfieldAddr();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000287
288 const llvm::Type *EltTy =
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000289 cast<llvm::PointerType>(Ptr->getType())->getElementType();
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000290 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000291
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000292 // In some cases the bitfield may straddle two memory locations.
293 // Currently we load the entire bitfield, then do the magic to
294 // sign-extend it if necessary. This results in somewhat more code
295 // than necessary for the common case (one load), since two shifts
296 // accomplish both the masking and sign extension.
297 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
298 llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
299
300 // Shift to proper location.
Daniel Dunbarf3edc2f2008-11-13 02:20:34 +0000301 if (StartBit)
302 Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
303 "bf.lo");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000304
305 // Mask off unused bits.
306 llvm::Constant *LowMask =
307 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits));
308 Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
309
310 // Fetch the high bits if necessary.
311 if (LowBits < BitfieldSize) {
312 unsigned HighBits = BitfieldSize - LowBits;
313 llvm::Value *HighPtr =
314 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
315 "bf.ptr.hi");
316 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
317 LV.isVolatileQualified(),
318 "tmp");
319
320 // Mask off unused bits.
321 llvm::Constant *HighMask =
322 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits));
323 HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000324
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000325 // Shift to proper location and or in to bitfield value.
326 HighVal = Builder.CreateShl(HighVal,
327 llvm::ConstantInt::get(EltTy, LowBits));
328 Val = Builder.CreateOr(Val, HighVal, "bf.val");
329 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000330
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000331 // Sign extend if necessary.
332 if (LV.isBitfieldSigned()) {
333 llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
334 EltTySize - BitfieldSize);
335 Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
336 ExtraBits, "bf.val.sext");
337 }
Eli Friedman316bb1b2008-05-17 20:03:47 +0000338
339 // The bitfield type and the normal type differ when the storage sizes
340 // differ (currently just _Bool).
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000341 Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000342
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000343 return RValue::get(Val);
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000344}
345
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000346RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
347 QualType ExprType) {
348 return EmitObjCPropertyGet(LV.getPropertyRefExpr());
349}
350
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000351RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
352 QualType ExprType) {
353 return EmitObjCPropertyGet(LV.getKVCRefExpr());
354}
355
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000356// If this is a reference to a subset of the elements of a vector, create an
357// appropriate shufflevector.
Nate Begeman213541a2008-04-18 23:10:10 +0000358RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
359 QualType ExprType) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000360 llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
361 LV.isVolatileQualified(), "tmp");
Chris Lattner34cdc862007-08-03 16:18:34 +0000362
Nate Begeman8a997642008-05-09 06:41:27 +0000363 const llvm::Constant *Elts = LV.getExtVectorElts();
Chris Lattner34cdc862007-08-03 16:18:34 +0000364
365 // If the result of the expression is a non-vector type, we must be
366 // extracting a single element. Just codegen as an extractelement.
Chris Lattnercf60cd22007-08-10 17:10:08 +0000367 const VectorType *ExprVT = ExprType->getAsVectorType();
368 if (!ExprVT) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000369 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner34cdc862007-08-03 16:18:34 +0000370 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
371 return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
372 }
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000373
374 // Always use shuffle vector to try to retain the original program structure
Chris Lattnercf60cd22007-08-10 17:10:08 +0000375 unsigned NumResultElts = ExprVT->getNumElements();
Chris Lattner34cdc862007-08-03 16:18:34 +0000376
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000377 llvm::SmallVector<llvm::Constant*, 4> Mask;
Chris Lattner34cdc862007-08-03 16:18:34 +0000378 for (unsigned i = 0; i != NumResultElts; ++i) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000379 unsigned InIdx = getAccessedFieldNo(i, Elts);
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000380 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
Chris Lattner34cdc862007-08-03 16:18:34 +0000381 }
382
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000383 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
384 Vec = Builder.CreateShuffleVector(Vec,
385 llvm::UndefValue::get(Vec->getType()),
386 MaskV, "tmp");
387 return RValue::get(Vec);
Chris Lattner34cdc862007-08-03 16:18:34 +0000388}
389
390
Reid Spencer5f016e22007-07-11 17:01:13 +0000391
392/// EmitStoreThroughLValue - Store the specified rvalue into the specified
393/// lvalue, where both are guaranteed to the have the same type, and that type
394/// is 'Ty'.
395void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
396 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000397 if (!Dst.isSimple()) {
398 if (Dst.isVectorElt()) {
399 // Read/modify/write the vector, inserting the new element.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000400 llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
401 Dst.isVolatileQualified(), "tmp");
Chris Lattner9b655512007-08-31 22:49:20 +0000402 Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
Chris Lattner017d6aa2007-08-03 16:28:33 +0000403 Dst.getVectorIdx(), "vecins");
Eli Friedman1e692ac2008-06-13 23:01:12 +0000404 Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000405 return;
406 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000407
Nate Begeman213541a2008-04-18 23:10:10 +0000408 // If this is an update of extended vector elements, insert them as
409 // appropriate.
410 if (Dst.isExtVectorElt())
411 return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000412
413 if (Dst.isBitfield())
414 return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
415
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000416 if (Dst.isPropertyRef())
417 return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
418
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000419 if (Dst.isKVCRef())
420 return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
421
Lauro Ramos Venancio65539822008-01-22 22:38:35 +0000422 assert(0 && "Unknown LValue type");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000423 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000424
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000425 if (Dst.isObjCWeak() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000426 // load of a __weak object.
427 llvm::Value *LvalueDst = Dst.getAddress();
428 llvm::Value *src = Src.getScalarVal();
Mike Stumpf33651c2009-04-14 00:57:29 +0000429 CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000430 return;
431 }
432
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000433 if (Dst.isObjCStrong() && !Dst.isNonGC()) {
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000434 // load of a __strong object.
435 llvm::Value *LvalueDst = Dst.getAddress();
436 llvm::Value *src = Src.getScalarVal();
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000437#if 0
438 // FIXME. We cannot positively determine if we have an
439 // 'ivar' assignment, object assignment or an unknown
440 // assignment. For now, generate call to objc_assign_strongCast
441 // assignment which is a safe, but consevative assumption.
Fariborz Jahaniand1cc8042008-11-20 20:53:20 +0000442 if (Dst.isObjCIvar())
443 CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
444 else
445 CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
Fariborz Jahanian167fdc12009-02-19 18:29:24 +0000446#endif
447 CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
Fariborz Jahaniandbd32c22008-11-19 17:34:06 +0000448 return;
449 }
450
Chris Lattner883f6a72007-08-11 00:04:45 +0000451 assert(Src.isScalar() && "Can't emit an agg store with this method");
Daniel Dunbar9d9cc872009-02-10 00:57:50 +0000452 EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
453 Dst.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000454}
455
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000456void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
Daniel Dunbared3849b2008-11-19 09:36:46 +0000457 QualType Ty,
458 llvm::Value **Result) {
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000459 unsigned StartBit = Dst.getBitfieldStartBit();
460 unsigned BitfieldSize = Dst.getBitfieldSize();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000461 llvm::Value *Ptr = Dst.getBitfieldAddr();
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000462
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000463 const llvm::Type *EltTy =
464 cast<llvm::PointerType>(Ptr->getType())->getElementType();
465 unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
466
467 // Get the new value, cast to the appropriate type and masked to
468 // exactly the size of the bit-field.
Daniel Dunbared3849b2008-11-19 09:36:46 +0000469 llvm::Value *SrcVal = Src.getScalarVal();
470 llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000471 llvm::Constant *Mask =
472 llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
473 NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000474
Daniel Dunbared3849b2008-11-19 09:36:46 +0000475 // Return the new value of the bit-field, if requested.
476 if (Result) {
477 // Cast back to the proper type for result.
478 const llvm::Type *SrcTy = SrcVal->getType();
479 llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
480 "bf.reload.val");
481
482 // Sign extend if necessary.
483 if (Dst.isBitfieldSigned()) {
484 unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
485 llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
486 SrcTySize - BitfieldSize);
487 SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
488 ExtraBits, "bf.reload.sext");
489 }
490
491 *Result = SrcTrunc;
492 }
493
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000494 // In some cases the bitfield may straddle two memory locations.
495 // Emit the low part first and check to see if the high needs to be
496 // done.
497 unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
498 llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
499 "bf.prev.low");
Eli Friedman316bb1b2008-05-17 20:03:47 +0000500
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000501 // Compute the mask for zero-ing the low part of this bitfield.
502 llvm::Constant *InvMask =
503 llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit,
504 StartBit + LowBits));
505
506 // Compute the new low part as
507 // LowVal = (LowVal & InvMask) | (NewVal << StartBit),
508 // with the shift of NewVal implicitly stripping the high bits.
509 llvm::Value *NewLowVal =
510 Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
511 "bf.value.lo");
512 LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
513 LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
514
515 // Write back.
516 Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
Eli Friedman316bb1b2008-05-17 20:03:47 +0000517
Daniel Dunbar10e3ded2008-08-06 05:08:45 +0000518 // If the low part doesn't cover the bitfield emit a high part.
519 if (LowBits < BitfieldSize) {
520 unsigned HighBits = BitfieldSize - LowBits;
521 llvm::Value *HighPtr =
522 Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
523 "bf.ptr.hi");
524 llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
525 Dst.isVolatileQualified(),
526 "bf.prev.hi");
527
528 // Compute the mask for zero-ing the high part of this bitfield.
529 llvm::Constant *InvMask =
530 llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits));
531
532 // Compute the new high part as
533 // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
534 // where the high bits of NewVal have already been cleared and the
535 // shift stripping the low bits.
536 llvm::Value *NewHighVal =
537 Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
538 "bf.value.high");
539 HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
540 HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
541
542 // Write back.
543 Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
544 }
Lauro Ramos Venancioa0c5d0e2008-01-22 22:36:45 +0000545}
546
Daniel Dunbar85c59ed2008-08-29 08:11:39 +0000547void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
548 LValue Dst,
549 QualType Ty) {
550 EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
551}
552
Fariborz Jahanian43f44702008-11-22 22:30:21 +0000553void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
554 LValue Dst,
555 QualType Ty) {
556 EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
557}
558
Nate Begeman213541a2008-04-18 23:10:10 +0000559void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
560 LValue Dst,
561 QualType Ty) {
Chris Lattner017d6aa2007-08-03 16:28:33 +0000562 // This access turns into a read/modify/write of the vector. Load the input
563 // value now.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000564 llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
565 Dst.isVolatileQualified(), "tmp");
Nate Begeman8a997642008-05-09 06:41:27 +0000566 const llvm::Constant *Elts = Dst.getExtVectorElts();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000567
Chris Lattner9b655512007-08-31 22:49:20 +0000568 llvm::Value *SrcVal = Src.getScalarVal();
Chris Lattner017d6aa2007-08-03 16:28:33 +0000569
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000570 if (const VectorType *VTy = Ty->getAsVectorType()) {
571 unsigned NumSrcElts = VTy->getNumElements();
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000572 unsigned NumDstElts =
573 cast<llvm::VectorType>(Vec->getType())->getNumElements();
574 if (NumDstElts == NumSrcElts) {
575 // Use shuffle vector is the src and destination are the same number
576 // of elements
577 llvm::SmallVector<llvm::Constant*, 4> Mask;
578 for (unsigned i = 0; i != NumSrcElts; ++i) {
579 unsigned InIdx = getAccessedFieldNo(i, Elts);
580 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
581 }
582
583 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
584 Vec = Builder.CreateShuffleVector(SrcVal,
585 llvm::UndefValue::get(Vec->getType()),
586 MaskV, "tmp");
587 }
588 else if (NumDstElts > NumSrcElts) {
589 // Extended the source vector to the same length and then shuffle it
590 // into the destination.
591 // FIXME: since we're shuffling with undef, can we just use the indices
592 // into that? This could be simpler.
593 llvm::SmallVector<llvm::Constant*, 4> ExtMask;
594 unsigned i;
595 for (i = 0; i != NumSrcElts; ++i)
596 ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
597 for (; i != NumDstElts; ++i)
598 ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
599 llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
600 ExtMask.size());
Daniel Dunbarbb767732009-02-17 18:31:04 +0000601 llvm::Value *ExtSrcVal =
602 Builder.CreateShuffleVector(SrcVal,
603 llvm::UndefValue::get(SrcVal->getType()),
604 ExtMaskV, "tmp");
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000605 // build identity
606 llvm::SmallVector<llvm::Constant*, 4> Mask;
607 for (unsigned i = 0; i != NumDstElts; ++i) {
608 Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
609 }
610 // modify when what gets shuffled in
611 for (unsigned i = 0; i != NumSrcElts; ++i) {
612 unsigned Idx = getAccessedFieldNo(i, Elts);
613 Mask[Idx] =llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
614 }
615 llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
616 Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
617 }
618 else {
619 // We should never shorten the vector
620 assert(0 && "unexpected shorten vector length");
Chris Lattner7e6b51b2007-08-03 16:37:04 +0000621 }
622 } else {
623 // If the Src is a scalar (not a vector) it must be updating one element.
Dan Gohman4f8d1232008-05-22 00:50:06 +0000624 unsigned InIdx = getAccessedFieldNo(0, Elts);
Chris Lattner017d6aa2007-08-03 16:28:33 +0000625 llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
626 Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
Chris Lattner017d6aa2007-08-03 16:28:33 +0000627 }
628
Eli Friedman1e692ac2008-06-13 23:01:12 +0000629 Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
Chris Lattner017d6aa2007-08-03 16:28:33 +0000630}
631
Reid Spencer5f016e22007-07-11 17:01:13 +0000632LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
Steve Naroff248a7532008-04-15 22:42:06 +0000633 const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
634
Chris Lattner41110242008-06-17 18:05:57 +0000635 if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
636 isa<ImplicitParamDecl>(VD))) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000637 LValue LV;
Mike Stumpaa771a82009-04-14 18:24:37 +0000638 bool GCable = VD->hasLocalStorage() && !VD->hasAttr<BlocksAttr>();
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000639 if (VD->hasExternalStorage()) {
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000640 LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000641 E->getType().getCVRQualifiers(),
642 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000643 }
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000644 else {
Steve Naroff248a7532008-04-15 22:42:06 +0000645 llvm::Value *V = LocalDeclMap[VD];
Mike Stumpa99038c2009-02-28 09:07:16 +0000646 assert(V && "DeclRefExpr not entered in LocalDeclMap?");
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000647 // local variables do not get their gc attribute set.
648 QualType::GCAttrTypes attr = QualType::GCNone;
649 // local static?
Mike Stumpf33651c2009-04-14 00:57:29 +0000650 if (!GCable)
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000651 attr = getContext().getObjCGCAttrKind(E->getType());
Daniel Dunbarb11fa0d2009-04-13 21:08:27 +0000652 if (VD->hasAttr<BlocksAttr>()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000653 bool needsCopyDispose = BlockRequiresCopying(VD->getType());
654 const llvm::Type *PtrStructTy = V->getType();
655 const llvm::Type *Ty = PtrStructTy;
656 Ty = llvm::PointerType::get(Ty, 0);
657 V = Builder.CreateStructGEP(V, 1, "forwarding");
658 V = Builder.CreateBitCast(V, Ty);
659 V = Builder.CreateLoad(V, false);
660 V = Builder.CreateBitCast(V, PtrStructTy);
661 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
662 }
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000663 LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr);
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +0000664 }
Mike Stumpf33651c2009-04-14 00:57:29 +0000665 LValue::SetObjCNonGC(LV, GCable);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000666 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000667 } else if (VD && VD->isFileVarDecl()) {
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000668 LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000669 E->getType().getCVRQualifiers(),
670 getContext().getObjCGCAttrKind(E->getType()));
Fariborz Jahanian6d657c42008-11-18 20:18:11 +0000671 return LV;
Steve Naroff248a7532008-04-15 22:42:06 +0000672 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000673 return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000674 E->getType().getCVRQualifiers(),
675 getContext().getObjCGCAttrKind(E->getType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000676 }
Chris Lattner41110242008-06-17 18:05:57 +0000677 else if (const ImplicitParamDecl *IPD =
678 dyn_cast<ImplicitParamDecl>(E->getDecl())) {
679 llvm::Value *V = LocalDeclMap[IPD];
680 assert(V && "BlockVarDecl not entered in LocalDeclMap?");
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000681 return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
682 getContext().getObjCGCAttrKind(E->getType()));
Chris Lattner41110242008-06-17 18:05:57 +0000683 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000684 assert(0 && "Unimp declref");
Chris Lattnerb1776cb2007-09-16 19:23:47 +0000685 //an invalid LValue, but the assert will
686 //ensure that this point is never reached.
687 return LValue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000688}
689
Mike Stumpa99038c2009-02-28 09:07:16 +0000690LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
691 return LValue::MakeAddr(GetAddrOfBlockDecl(E), 0);
692}
693
Reid Spencer5f016e22007-07-11 17:01:13 +0000694LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
695 // __extension__ doesn't affect lvalue-ness.
696 if (E->getOpcode() == UnaryOperator::Extension)
697 return EmitLValue(E->getSubExpr());
698
Chris Lattner96196622008-07-26 22:37:01 +0000699 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
Chris Lattner7da36f62007-10-30 22:53:42 +0000700 switch (E->getOpcode()) {
701 default: assert(0 && "Unknown unary operator lvalue!");
702 case UnaryOperator::Deref:
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000703 {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000704 QualType T =
705 E->getSubExpr()->getType()->getAsPointerType()->getPointeeType();
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000706 LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
707 ExprTy->getAsPointerType()->getPointeeType()
Fariborz Jahanian4f545262009-02-20 01:14:43 +0000708 .getCVRQualifiers(),
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000709 getContext().getObjCGCAttrKind(T));
710 // We should not generate __weak write barrier on indirect reference
711 // of a pointer to object; as in void foo (__weak id *param); *param = 0;
712 // But, we continue to generate __strong write barrier on indirect write
713 // into a pointer to object.
714 if (getContext().getLangOptions().ObjC1 &&
715 getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
716 LV.isObjCWeak())
717 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
718 return LV;
Fariborz Jahaniana223cca2009-02-19 23:36:06 +0000719 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000720 case UnaryOperator::Real:
721 case UnaryOperator::Imag:
722 LValue LV = EmitLValue(E->getSubExpr());
Chris Lattner36b6a0a2008-03-19 05:19:41 +0000723 unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
724 return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
Chris Lattnerb77792e2008-07-26 22:17:49 +0000725 Idx, "idx"),
726 ExprTy.getCVRQualifiers());
Chris Lattner7da36f62007-10-30 22:53:42 +0000727 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000728}
729
730LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
Daniel Dunbar61432932008-08-13 23:20:05 +0000731 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000732}
733
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000734LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
735 return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
736}
737
738
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000739LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
Anders Carlsson22742662007-07-21 05:21:51 +0000740 std::string GlobalVarName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000741
742 switch (Type) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000743 default:
744 assert(0 && "Invalid type");
745 case PredefinedExpr::Func:
746 GlobalVarName = "__func__.";
747 break;
748 case PredefinedExpr::Function:
749 GlobalVarName = "__FUNCTION__.";
750 break;
751 case PredefinedExpr::PrettyFunction:
752 // FIXME:: Demangle C++ method names
753 GlobalVarName = "__PRETTY_FUNCTION__.";
754 break;
Anders Carlsson22742662007-07-21 05:21:51 +0000755 }
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000756
Chris Lattnerb5437d22009-04-23 05:30:27 +0000757 // FIXME: This isn't right at all. The logic for computing this should go
758 // into a method on PredefinedExpr. This would allow sema and codegen to be
759 // consistent for things like sizeof(__func__) etc.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000760 std::string FunctionName;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000761 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
Douglas Gregor6ec36682009-02-18 23:53:56 +0000762 FunctionName = CGM.getMangledName(FD);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000763 } else {
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000764 // Just get the mangled name; skipping the asm prefix if it
765 // exists.
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000766 FunctionName = CurFn->getName();
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000767 if (FunctionName[0] == '\01')
768 FunctionName = FunctionName.substr(1, std::string::npos);
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000769 }
770
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000771 GlobalVarName += FunctionName;
Daniel Dunbar662b71e2008-10-17 21:58:32 +0000772 llvm::Constant *C =
773 CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
774 return LValue::MakeAddr(C, 0);
775}
776
777LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
778 switch (E->getIdentType()) {
779 default:
780 return EmitUnsupportedLValue(E, "predefined expression");
781 case PredefinedExpr::Func:
782 case PredefinedExpr::Function:
783 case PredefinedExpr::PrettyFunction:
784 return EmitPredefinedFunctionName(E->getIdentType());
785 }
Anders Carlsson22742662007-07-21 05:21:51 +0000786}
787
Reid Spencer5f016e22007-07-11 17:01:13 +0000788LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Ted Kremenek23245122007-08-20 16:18:38 +0000789 // The index must always be an integer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000790 llvm::Value *Idx = EmitScalarExpr(E->getIdx());
Reid Spencer5f016e22007-07-11 17:01:13 +0000791
792 // If the base is a vector type, then we are forming a vector element lvalue
793 // with this subscript.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000794 if (E->getBase()->getType()->isVectorType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000795 // Emit the vector as an lvalue to get its address.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000796 LValue LHS = EmitLValue(E->getBase());
Ted Kremenek23245122007-08-20 16:18:38 +0000797 assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000798 // FIXME: This should properly sign/zero/extend or truncate Idx to i32.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000799 return LValue::MakeVectorElt(LHS.getAddress(), Idx,
800 E->getBase()->getType().getCVRQualifiers());
Reid Spencer5f016e22007-07-11 17:01:13 +0000801 }
802
Ted Kremenek23245122007-08-20 16:18:38 +0000803 // The base must be a pointer, which is not an aggregate. Emit it.
Chris Lattner7f02f722007-08-24 05:35:26 +0000804 llvm::Value *Base = EmitScalarExpr(E->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +0000805
Ted Kremenek23245122007-08-20 16:18:38 +0000806 // Extend or truncate the index type to 32 or 64-bits.
Chris Lattnerd4f08022007-08-08 17:43:05 +0000807 QualType IdxTy = E->getIdx()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000808 bool IdxSigned = IdxTy->isSignedIntegerType();
809 unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
Sanjiv Gupta7cabee52009-04-24 02:40:57 +0000810 if (IdxBitwidth != LLVMPointerWidth)
811 Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
Reid Spencer5f016e22007-07-11 17:01:13 +0000812 IdxSigned, "idxprom");
813
Daniel Dunbar2a866252009-04-25 05:08:32 +0000814 // We know that the pointer points to a type of the correct size,
815 // unless the size is a VLA or Objective-C interface.
816 llvm::Value *Address = 0;
Anders Carlsson8b33c082008-12-21 00:11:23 +0000817 if (const VariableArrayType *VAT =
818 getContext().getAsVariableArrayType(E->getType())) {
819 llvm::Value *VLASize = VLASizeMap[VAT];
820
821 Idx = Builder.CreateMul(Idx, VLASize);
822
Anders Carlsson6183a992008-12-21 03:44:36 +0000823 QualType BaseType = getContext().getBaseElementType(VAT);
Anders Carlsson8b33c082008-12-21 00:11:23 +0000824
825 uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
826 Idx = Builder.CreateUDiv(Idx,
827 llvm::ConstantInt::get(Idx->getType(),
828 BaseTypeSize));
Daniel Dunbar2a866252009-04-25 05:08:32 +0000829 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
830 } else if (const ObjCInterfaceType *OIT =
831 dyn_cast<ObjCInterfaceType>(E->getType())) {
832 llvm::Value *InterfaceSize =
833 llvm::ConstantInt::get(Idx->getType(),
834 getContext().getTypeSize(OIT) / 8);
835
836 Idx = Builder.CreateMul(Idx, InterfaceSize);
837
838 llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
839 Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
840 Idx, "arrayidx");
841 Address = Builder.CreateBitCast(Address, Base->getType());
842 } else {
843 Address = Builder.CreateGEP(Base, Idx, "arrayidx");
Anders Carlsson8b33c082008-12-21 00:11:23 +0000844 }
845
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000846 QualType T = E->getBase()->getType()->getAsPointerType()->getPointeeType();
Daniel Dunbar2a866252009-04-25 05:08:32 +0000847 LValue LV = LValue::MakeAddr(Address,
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000848 T.getCVRQualifiers(),
849 getContext().getObjCGCAttrKind(T));
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000850 if (getContext().getLangOptions().ObjC1 &&
851 getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000852 LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
Fariborz Jahanian643887a2009-02-21 23:37:19 +0000853 return LV;
Reid Spencer5f016e22007-07-11 17:01:13 +0000854}
855
Nate Begeman3b8d1162008-05-13 21:03:02 +0000856static
857llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) {
858 llvm::SmallVector<llvm::Constant *, 4> CElts;
859
860 for (unsigned i = 0, e = Elts.size(); i != e; ++i)
861 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
862
863 return llvm::ConstantVector::get(&CElts[0], CElts.size());
864}
865
Chris Lattner349aaec2007-08-02 23:37:31 +0000866LValue CodeGenFunction::
Nate Begeman213541a2008-04-18 23:10:10 +0000867EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
Chris Lattner349aaec2007-08-02 23:37:31 +0000868 // Emit the base vector as an l-value.
Chris Lattner73525de2009-02-16 21:11:58 +0000869 LValue Base;
870
871 // ExtVectorElementExpr's base can either be a vector or pointer to vector.
Chris Lattner2140e902009-02-16 22:14:05 +0000872 if (!E->isArrow()) {
Chris Lattner73525de2009-02-16 21:11:58 +0000873 assert(E->getBase()->getType()->isVectorType());
874 Base = EmitLValue(E->getBase());
Chris Lattner2140e902009-02-16 22:14:05 +0000875 } else {
876 const PointerType *PT = E->getBase()->getType()->getAsPointerType();
877 llvm::Value *Ptr = EmitScalarExpr(E->getBase());
878 Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers());
Chris Lattner73525de2009-02-16 21:11:58 +0000879 }
Chris Lattner349aaec2007-08-02 23:37:31 +0000880
Nate Begeman3b8d1162008-05-13 21:03:02 +0000881 // Encode the element access list into a vector of unsigned indices.
882 llvm::SmallVector<unsigned, 4> Indices;
883 E->getEncodedElementAccess(Indices);
884
885 if (Base.isSimple()) {
886 llvm::Constant *CV = GenerateConstantVector(Indices);
Eli Friedman1e692ac2008-06-13 23:01:12 +0000887 return LValue::MakeExtVectorElt(Base.getAddress(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000888 Base.getQualifiers());
Nate Begeman3b8d1162008-05-13 21:03:02 +0000889 }
890 assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
891
892 llvm::Constant *BaseElts = Base.getExtVectorElts();
893 llvm::SmallVector<llvm::Constant *, 4> CElts;
894
895 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
896 if (isa<llvm::ConstantAggregateZero>(BaseElts))
897 CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
898 else
899 CElts.push_back(BaseElts->getOperand(Indices[i]));
900 }
901 llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
Eli Friedman1e692ac2008-06-13 23:01:12 +0000902 return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
Chris Lattner1bd885e2009-02-16 22:25:49 +0000903 Base.getQualifiers());
Chris Lattner349aaec2007-08-02 23:37:31 +0000904}
905
Devang Patelb9b00ad2007-10-23 20:28:39 +0000906LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
Devang Patelfe2419a2007-12-11 21:33:16 +0000907 bool isUnion = false;
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000908 bool isIvar = false;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000909 bool isNonGC = false;
Devang Patel126a8562007-10-24 22:26:28 +0000910 Expr *BaseExpr = E->getBase();
Devang Patel126a8562007-10-24 22:26:28 +0000911 llvm::Value *BaseValue = NULL;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000912 unsigned CVRQualifiers=0;
913
Chris Lattner12f65f62007-12-02 18:52:07 +0000914 // 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 +0000915 if (E->isArrow()) {
Devang Patel0a961182007-10-26 18:15:21 +0000916 BaseValue = EmitScalarExpr(BaseExpr);
Devang Patelfe2419a2007-12-11 21:33:16 +0000917 const PointerType *PTy =
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +0000918 BaseExpr->getType()->getAsPointerType();
Devang Patelfe2419a2007-12-11 21:33:16 +0000919 if (PTy->getPointeeType()->isUnionType())
920 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000921 CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000922 } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
923 isa<ObjCKVCRefExpr>(BaseExpr)) {
Fariborz Jahanian35c33292009-01-12 23:27:26 +0000924 RValue RV = EmitObjCPropertyGet(BaseExpr);
925 BaseValue = RV.getAggregateAddr();
926 if (BaseExpr->getType()->isUnionType())
927 isUnion = true;
928 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner1bd885e2009-02-16 22:25:49 +0000929 } else {
Chris Lattner12f65f62007-12-02 18:52:07 +0000930 LValue BaseLV = EmitLValue(BaseExpr);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000931 if (BaseLV.isObjCIvar())
932 isIvar = true;
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000933 if (BaseLV.isNonGC())
934 isNonGC = true;
Chris Lattner12f65f62007-12-02 18:52:07 +0000935 // FIXME: this isn't right for bitfields.
936 BaseValue = BaseLV.getAddress();
Devang Patelfe2419a2007-12-11 21:33:16 +0000937 if (BaseExpr->getType()->isUnionType())
938 isUnion = true;
Eli Friedman1e692ac2008-06-13 23:01:12 +0000939 CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
Chris Lattner12f65f62007-12-02 18:52:07 +0000940 }
Devang Patelb9b00ad2007-10-23 20:28:39 +0000941
Douglas Gregor86f19402008-12-20 23:49:58 +0000942 FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
943 // FIXME: Handle non-field member expressions
944 assert(Field && "No code generation for non-field member references");
Chris Lattner1bd885e2009-02-16 22:25:49 +0000945 LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
946 CVRQualifiers);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000947 LValue::SetObjCIvar(MemExpLV, isIvar);
Fariborz Jahanian4f676ed2009-02-21 00:30:43 +0000948 LValue::SetObjCNonGC(MemExpLV, isNonGC);
Fariborz Jahanian2ab19682008-11-21 18:14:01 +0000949 return MemExpLV;
Eli Friedman472778e2008-02-09 08:50:58 +0000950}
Devang Patelb9b00ad2007-10-23 20:28:39 +0000951
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000952LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
953 FieldDecl* Field,
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000954 unsigned CVRQualifiers) {
Daniel Dunbarbb767732009-02-17 18:31:04 +0000955 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000956 // FIXME: CodeGenTypes should expose a method to get the appropriate
957 // type for FieldTy (the appropriate type is ABI-dependent).
Daniel Dunbarbb767732009-02-17 18:31:04 +0000958 const llvm::Type *FieldTy =
959 CGM.getTypes().ConvertTypeForMem(Field->getType());
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000960 const llvm::PointerType *BaseTy =
961 cast<llvm::PointerType>(BaseValue->getType());
962 unsigned AS = BaseTy->getAddressSpace();
963 BaseValue = Builder.CreateBitCast(BaseValue,
964 llvm::PointerType::get(FieldTy, AS),
965 "tmp");
966 llvm::Value *V = Builder.CreateGEP(BaseValue,
967 llvm::ConstantInt::get(llvm::Type::Int32Ty, idx),
968 "tmp");
969
970 CodeGenTypes::BitFieldInfo bitFieldInfo =
971 CGM.getTypes().getBitFieldInfo(Field);
972 return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size,
973 Field->getType()->isSignedIntegerType(),
974 Field->getType().getCVRQualifiers()|CVRQualifiers);
975}
976
Eli Friedman472778e2008-02-09 08:50:58 +0000977LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
978 FieldDecl* Field,
Eli Friedman1e692ac2008-06-13 23:01:12 +0000979 bool isUnion,
980 unsigned CVRQualifiers)
Eli Friedman472778e2008-02-09 08:50:58 +0000981{
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000982 if (Field->isBitField())
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000983 return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +0000984
Fariborz Jahanian598d3f62009-02-03 19:03:09 +0000985 unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
Fariborz Jahanianfd64bb62008-12-15 20:35:07 +0000986 llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
Eli Friedman1e86b342008-05-29 11:33:25 +0000987
Devang Patelabad06c2007-10-26 19:42:18 +0000988 // Match union field type.
Lauro Ramos Venanciod957aa02008-02-07 19:29:53 +0000989 if (isUnion) {
Eli Friedman1e692ac2008-06-13 23:01:12 +0000990 const llvm::Type *FieldTy =
991 CGM.getTypes().ConvertTypeForMem(Field->getType());
Devang Patele9b8c0a2007-10-30 20:59:40 +0000992 const llvm::PointerType * BaseTy =
993 cast<llvm::PointerType>(BaseValue->getType());
Eli Friedman788d5712008-05-21 13:24:44 +0000994 unsigned AS = BaseTy->getAddressSpace();
995 V = Builder.CreateBitCast(V,
996 llvm::PointerType::get(FieldTy, AS),
997 "tmp");
Devang Patelabad06c2007-10-26 19:42:18 +0000998 }
Lauro Ramos Venancio3b8c22d2008-01-22 20:17:04 +0000999
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001000 QualType::GCAttrTypes attr = QualType::GCNone;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001001 if (CGM.getLangOptions().ObjC1 &&
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001002 CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1003 QualType Ty = Field->getType();
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001004 attr = Ty.getObjCGCAttr();
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001005 if (attr != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001006 // __weak attribute on a field is ignored.
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001007 if (attr == QualType::Weak)
1008 attr = QualType::GCNone;
Fariborz Jahanianc1debf32009-02-19 00:48:05 +00001009 }
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001010 else if (getContext().isObjCObjectPointerType(Ty))
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001011 attr = QualType::Strong;
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001012 }
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001013 LValue LV =
1014 LValue::MakeAddr(V,
1015 Field->getType().getCVRQualifiers()|CVRQualifiers,
1016 attr);
Fariborz Jahanian2682d8b2008-11-20 00:15:42 +00001017 return LV;
Devang Patelb9b00ad2007-10-23 20:28:39 +00001018}
1019
Chris Lattner75dfeda2009-03-18 18:28:57 +00001020LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
Eli Friedman06e863f2008-05-13 23:18:27 +00001021 const llvm::Type *LTy = ConvertType(E->getType());
1022 llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1023
1024 const Expr* InitExpr = E->getInitializer();
Eli Friedman1e692ac2008-06-13 23:01:12 +00001025 LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers());
Eli Friedman06e863f2008-05-13 23:18:27 +00001026
1027 if (E->getType()->isComplexType()) {
1028 EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1029 } else if (hasAggregateLLVMType(E->getType())) {
1030 EmitAnyExpr(InitExpr, DeclPtr, false);
1031 } else {
1032 EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1033 }
1034
1035 return Result;
1036}
1037
Daniel Dunbar90345582009-03-24 02:38:23 +00001038LValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator* E) {
1039 // We don't handle vectors yet.
1040 if (E->getType()->isVectorType())
1041 return EmitUnsupportedLValue(E, "conditional operator");
1042
1043 // ?: here should be an aggregate.
1044 assert((hasAggregateLLVMType(E->getType()) &&
1045 !E->getType()->isAnyComplexType()) &&
1046 "Unexpected conditional operator!");
1047
1048 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1049 EmitAggExpr(E, Temp, false);
1050
1051 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1052 getContext().getObjCGCAttrKind(E->getType()));
1053
1054}
1055
Chris Lattner75dfeda2009-03-18 18:28:57 +00001056/// EmitCastLValue - Casts are never lvalues. If a cast is needed by the code
1057/// generator in an lvalue context, then it must mean that we need the address
1058/// of an aggregate in order to access one of its fields. This can happen for
1059/// all the reasons that casts are permitted with aggregate result, including
1060/// noop aggregate casts, and cast from scalar to union.
1061LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
1062 // If this is an aggregate-to-aggregate cast, just use the input's address as
1063 // the lvalue.
1064 if (getContext().hasSameUnqualifiedType(E->getType(),
1065 E->getSubExpr()->getType()))
1066 return EmitLValue(E->getSubExpr());
1067
1068 // Otherwise, we must have a cast from scalar to union.
1069 assert(E->getType()->isUnionType() && "Expected scalar-to-union cast");
1070
1071 // Casts are only lvalues when the source and destination types are the same.
1072 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
Chris Lattner40f92922009-03-18 18:30:44 +00001073 EmitAnyExpr(E->getSubExpr(), Temp, false);
Chris Lattner75dfeda2009-03-18 18:28:57 +00001074
1075 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1076 getContext().getObjCGCAttrKind(E->getType()));
1077}
1078
Reid Spencer5f016e22007-07-11 17:01:13 +00001079//===--------------------------------------------------------------------===//
1080// Expression Emission
1081//===--------------------------------------------------------------------===//
1082
Chris Lattner7016a702007-08-20 22:37:10 +00001083
Reid Spencer5f016e22007-07-11 17:01:13 +00001084RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001085 // Builtins never have block type.
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001086 if (E->getCallee()->getType()->isBlockPointerType())
Anders Carlssonacfde802009-02-12 00:39:25 +00001087 return EmitBlockCallExpr(E);
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001088
Anders Carlsson774e7c62009-04-03 22:50:24 +00001089 if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1090 return EmitCXXMemberCallExpr(CE);
1091
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001092 const Decl *TargetDecl = 0;
Daniel Dunbardd7b8972009-02-20 19:34:33 +00001093 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1094 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1095 TargetDecl = DRE->getDecl();
1096 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1097 if (unsigned builtinID = FD->getBuiltinID(getContext()))
1098 return EmitBuiltinExpr(FD, builtinID, E);
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001099 }
1100 }
1101
Chris Lattner7f02f722007-08-24 05:35:26 +00001102 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
Eli Friedman5193b8a2008-01-30 01:32:06 +00001103 return EmitCallExpr(Callee, E->getCallee()->getType(),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001104 E->arg_begin(), E->arg_end(), TargetDecl);
Chris Lattnerc5e940f2007-08-31 04:44:06 +00001105}
1106
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001107LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
1108 // Can only get l-value for binary operator expressions which are a
1109 // simple assignment of aggregate type.
1110 if (E->getOpcode() != BinaryOperator::Assign)
1111 return EmitUnsupportedLValue(E, "binary l-value expression");
1112
1113 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1114 EmitAggExpr(E, Temp, false);
1115 // FIXME: Are these qualifiers correct?
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001116 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1117 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar80e62c22008-09-04 03:20:13 +00001118}
1119
Christopher Lamb22c940e2007-12-29 05:02:41 +00001120LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
1121 // Can only get l-value for call expression returning aggregate type
1122 RValue RV = EmitCallExpr(E);
Eli Friedman1e692ac2008-06-13 23:01:12 +00001123 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001124 E->getType().getCVRQualifiers(),
1125 getContext().getObjCGCAttrKind(E->getType()));
Christopher Lamb22c940e2007-12-29 05:02:41 +00001126}
1127
Daniel Dunbar5b5c9ef2009-02-11 20:59:32 +00001128LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1129 // FIXME: This shouldn't require another copy.
1130 llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1131 EmitAggExpr(E, Temp, false);
1132 return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers());
1133}
1134
Argyrios Kyrtzidise3a09e62008-09-10 02:36:38 +00001135LValue
1136CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1137 EmitLocalBlockVarDecl(*E->getVarDecl());
1138 return EmitDeclRefLValue(E);
1139}
1140
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001141LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1142 // Can only get l-value for message expression returning aggregate type
1143 RValue RV = EmitObjCMessageExpr(E);
1144 // FIXME: can this be volatile?
1145 return LValue::MakeAddr(RV.getAggregateAddr(),
Fariborz Jahaniana223cca2009-02-19 23:36:06 +00001146 E->getType().getCVRQualifiers(),
1147 getContext().getObjCGCAttrKind(E->getType()));
Daniel Dunbar0a04d772008-08-23 10:51:21 +00001148}
1149
Daniel Dunbar2a031922009-04-22 05:08:15 +00001150llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001151 const ObjCIvarDecl *Ivar) {
Fariborz Jahanianf63aa3f2009-02-10 19:02:04 +00001152 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001153}
1154
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001155LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1156 llvm::Value *BaseValue,
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001157 const ObjCIvarDecl *Ivar,
1158 unsigned CVRQualifiers) {
Chris Lattner26f074b2009-04-17 17:44:48 +00001159 return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001160 Ivar, CVRQualifiers);
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001161}
1162
1163LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
Anders Carlsson29b7e502008-08-25 01:53:23 +00001164 // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1165 llvm::Value *BaseValue = 0;
1166 const Expr *BaseExpr = E->getBase();
1167 unsigned CVRQualifiers = 0;
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001168 QualType ObjectTy;
Anders Carlsson29b7e502008-08-25 01:53:23 +00001169 if (E->isArrow()) {
1170 BaseValue = EmitScalarExpr(BaseExpr);
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +00001171 const PointerType *PTy = BaseExpr->getType()->getAsPointerType();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001172 ObjectTy = PTy->getPointeeType();
1173 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001174 } else {
1175 LValue BaseLV = EmitLValue(BaseExpr);
1176 // FIXME: this isn't right for bitfields.
1177 BaseValue = BaseLV.getAddress();
Fariborz Jahanian45012a72009-02-03 00:09:52 +00001178 ObjectTy = BaseExpr->getType();
1179 CVRQualifiers = ObjectTy.getCVRQualifiers();
Anders Carlsson29b7e502008-08-25 01:53:23 +00001180 }
Daniel Dunbar29e0bcc2008-09-24 04:00:38 +00001181
Daniel Dunbar525c9b72009-04-21 01:19:28 +00001182 return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
Chris Lattner391d77a2008-03-30 23:03:07 +00001183}
1184
Daniel Dunbar85c59ed2008-08-29 08:11:39 +00001185LValue
1186CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1187 // This is a special l-value that just issues sends when we load or
1188 // store through it.
1189 return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1190}
1191
Fariborz Jahanian43f44702008-11-22 22:30:21 +00001192LValue
1193CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1194 // This is a special l-value that just issues sends when we load or
1195 // store through it.
1196 return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1197}
1198
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001199LValue
Chris Lattner65459942009-04-25 19:35:26 +00001200CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001201 return EmitUnsupportedLValue(E, "use of super");
1202}
1203
Chris Lattner65459942009-04-25 19:35:26 +00001204LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
1205
1206 // Can only get l-value for message expression returning aggregate type
1207 RValue RV = EmitAnyExprToTemp(E);
1208 // FIXME: can this be volatile?
1209 return LValue::MakeAddr(RV.getAggregateAddr(),
1210 E->getType().getCVRQualifiers(),
1211 getContext().getObjCGCAttrKind(E->getType()));
1212}
1213
1214
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001215RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType CalleeType,
Ted Kremenek55499762008-06-17 02:43:46 +00001216 CallExpr::const_arg_iterator ArgBeg,
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001217 CallExpr::const_arg_iterator ArgEnd,
1218 const Decl *TargetDecl) {
Daniel Dunbarce1d38b2009-01-09 16:50:52 +00001219 // Get the actual function type. The callee type will always be a
1220 // pointer to function type or a block pointer type.
Anders Carlsson8ac67a72009-04-07 18:53:02 +00001221 assert(CalleeType->isFunctionPointerType() &&
1222 "Call must have function pointer type!");
1223
1224 QualType FnType = CalleeType->getAsPointerType()->getPointeeType();
1225 QualType ResultType = FnType->getAsFunctionType()->getResultType();
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001226
1227 CallArgList Args;
Anders Carlsson782f3972009-04-08 23:13:16 +00001228 EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
Daniel Dunbar19cd87e2008-08-30 03:02:31 +00001229
Daniel Dunbar541b63b2009-02-02 23:23:47 +00001230 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
Daniel Dunbarc0ef9f52009-02-20 18:06:48 +00001231 Callee, Args, TargetDecl);
Daniel Dunbar8f2926b2008-08-23 03:46:30 +00001232}