1 //===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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 "CGCall.h"
17 #include "CGObjCRuntime.h"
18 #include "clang/AST/ASTContext.h"
19 #include "clang/AST/DeclObjC.h"
20 #include "llvm/Target/TargetData.h"
21 using namespace clang;
22 using namespace CodeGen;
23 
24 //===--------------------------------------------------------------------===//
25 //                        Miscellaneous Helper Methods
26 //===--------------------------------------------------------------------===//
27 
28 /// CreateTempAlloca - This creates a alloca and inserts it into the entry
29 /// block.
30 llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
31                                                     const char *Name) {
32   if (!Builder.isNamePreserving())
33     Name = "";
34   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.
39 llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
40   QualType BoolTy = getContext().BoolTy;
41   if (!E->getType()->isAnyComplexType())
42     return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
43 
44   return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
45 }
46 
47 /// 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.
51 RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc,
52                                     bool isAggLocVolatile, bool IgnoreResult) {
53   if (!hasAggregateLLVMType(E->getType()))
54     return RValue::get(EmitScalarExpr(E, IgnoreResult));
55   else if (E->getType()->isAnyComplexType())
56     return RValue::getComplex(EmitComplexExpr(E, false, false,
57                                               IgnoreResult, IgnoreResult));
58 
59   EmitAggExpr(E, AggLoc, isAggLocVolatile, IgnoreResult);
60   return RValue::getAggregate(AggLoc, isAggLocVolatile);
61 }
62 
63 /// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result
64 /// will always be accessible even if no aggregate location is
65 /// provided.
66 RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc,
67                                           bool isAggLocVolatile) {
68   if (!AggLoc && hasAggregateLLVMType(E->getType()) &&
69       !E->getType()->isAnyComplexType())
70     AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp");
71   return EmitAnyExpr(E, AggLoc, isAggLocVolatile);
72 }
73 
74 RValue CodeGenFunction::EmitReferenceBindingToExpr(const Expr* E,
75                                                    QualType DestType) {
76   RValue Val;
77   if (E->isLvalue(getContext()) == Expr::LV_Valid) {
78     // Emit the expr as an lvalue.
79     LValue LV = EmitLValue(E);
80     if (LV.isSimple())
81       return RValue::get(LV.getAddress());
82     Val = EmitLoadOfLValue(LV, E->getType());
83   } else {
84     Val = EmitAnyExprToTemp(E);
85   }
86 
87   if (Val.isAggregate()) {
88     Val = RValue::get(Val.getAggregateAddr());
89   } else {
90     // Create a temporary variable that we can bind the reference to.
91     llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()),
92                                          "reftmp");
93     if (Val.isScalar())
94       EmitStoreOfScalar(Val.getScalarVal(), Temp, false, E->getType());
95     else
96       StoreComplexToAddr(Val.getComplexVal(), Temp, false);
97     Val = RValue::get(Temp);
98   }
99 
100   return Val;
101 }
102 
103 
104 /// getAccessedFieldNo - Given an encoded value and a result number, return
105 /// the input field number being accessed.
106 unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
107                                              const llvm::Constant *Elts) {
108   if (isa<llvm::ConstantAggregateZero>(Elts))
109     return 0;
110 
111   return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
112 }
113 
114 
115 //===----------------------------------------------------------------------===//
116 //                         LValue Expression Emission
117 //===----------------------------------------------------------------------===//
118 
119 RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
120   if (Ty->isVoidType()) {
121     return RValue::get(0);
122   } else if (const ComplexType *CTy = Ty->getAsComplexType()) {
123     const llvm::Type *EltTy = ConvertType(CTy->getElementType());
124     llvm::Value *U = llvm::UndefValue::get(EltTy);
125     return RValue::getComplex(std::make_pair(U, U));
126   } else if (hasAggregateLLVMType(Ty)) {
127     const llvm::Type *LTy = llvm::PointerType::getUnqual(ConvertType(Ty));
128     return RValue::getAggregate(llvm::UndefValue::get(LTy));
129   } else {
130     return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
131   }
132 }
133 
134 RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
135                                               const char *Name) {
136   ErrorUnsupported(E, Name);
137   return GetUndefRValue(E->getType());
138 }
139 
140 LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
141                                               const char *Name) {
142   ErrorUnsupported(E, Name);
143   llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
144   return LValue::MakeAddr(llvm::UndefValue::get(Ty),
145                           E->getType().getCVRQualifiers(),
146                           getContext().getObjCGCAttrKind(E->getType()),
147                           E->getType().getAddressSpace());
148 }
149 
150 /// EmitLValue - Emit code to compute a designator that specifies the location
151 /// of the expression.
152 ///
153 /// This can return one of two things: a simple address or a bitfield
154 /// reference.  In either case, the LLVM Value* in the LValue structure is
155 /// guaranteed to be an LLVM pointer type.
156 ///
157 /// If this returns a bitfield reference, nothing about the pointee type of
158 /// the LLVM value is known: For example, it may not be a pointer to an
159 /// integer.
160 ///
161 /// If this returns a normal address, and if the lvalue's C type is fixed
162 /// size, this method guarantees that the returned pointer type will point to
163 /// an LLVM type of the same size of the lvalue's type.  If the lvalue has a
164 /// variable length type, this is not possible.
165 ///
166 LValue CodeGenFunction::EmitLValue(const Expr *E) {
167   switch (E->getStmtClass()) {
168   default: return EmitUnsupportedLValue(E, "l-value expression");
169 
170   case Expr::BinaryOperatorClass:
171     return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
172   case Expr::CallExprClass:
173   case Expr::CXXOperatorCallExprClass:
174     return EmitCallExprLValue(cast<CallExpr>(E));
175   case Expr::VAArgExprClass:
176     return EmitVAArgExprLValue(cast<VAArgExpr>(E));
177   case Expr::DeclRefExprClass:
178   case Expr::QualifiedDeclRefExprClass:
179     return EmitDeclRefLValue(cast<DeclRefExpr>(E));
180   case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
181   case Expr::PredefinedExprClass:
182     return EmitPredefinedLValue(cast<PredefinedExpr>(E));
183   case Expr::StringLiteralClass:
184     return EmitStringLiteralLValue(cast<StringLiteral>(E));
185   case Expr::ObjCEncodeExprClass:
186     return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
187 
188   case Expr::BlockDeclRefExprClass:
189     return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
190 
191   case Expr::CXXConditionDeclExprClass:
192     return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
193   case Expr::CXXTemporaryObjectExprClass:
194   case Expr::CXXConstructExprClass:
195     return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
196   case Expr::CXXBindTemporaryExprClass:
197     return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
198 
199   case Expr::ObjCMessageExprClass:
200     return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
201   case Expr::ObjCIvarRefExprClass:
202     return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
203   case Expr::ObjCPropertyRefExprClass:
204     return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E));
205   case Expr::ObjCKVCRefExprClass:
206     return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E));
207   case Expr::ObjCSuperExprClass:
208     return EmitObjCSuperExprLValue(cast<ObjCSuperExpr>(E));
209 
210   case Expr::StmtExprClass:
211     return EmitStmtExprLValue(cast<StmtExpr>(E));
212   case Expr::UnaryOperatorClass:
213     return EmitUnaryOpLValue(cast<UnaryOperator>(E));
214   case Expr::ArraySubscriptExprClass:
215     return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
216   case Expr::ExtVectorElementExprClass:
217     return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
218   case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E));
219   case Expr::CompoundLiteralExprClass:
220     return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
221   case Expr::ConditionalOperatorClass:
222     return EmitConditionalOperator(cast<ConditionalOperator>(E));
223   case Expr::ChooseExprClass:
224     return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
225   case Expr::ImplicitCastExprClass:
226   case Expr::CStyleCastExprClass:
227   case Expr::CXXFunctionalCastExprClass:
228   case Expr::CXXStaticCastExprClass:
229   case Expr::CXXDynamicCastExprClass:
230   case Expr::CXXReinterpretCastExprClass:
231   case Expr::CXXConstCastExprClass:
232     return EmitCastLValue(cast<CastExpr>(E));
233   }
234 }
235 
236 llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
237                                                QualType Ty) {
238   llvm::Value *V = Builder.CreateLoad(Addr, Volatile, "tmp");
239 
240   // Bool can have different representation in memory than in registers.
241   if (Ty->isBooleanType())
242     if (V->getType() != llvm::Type::Int1Ty)
243       V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool");
244 
245   return V;
246 }
247 
248 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
249                                         bool Volatile, QualType Ty) {
250 
251   if (Ty->isBooleanType()) {
252     // Bool can have different representation in memory than in registers.
253     const llvm::Type *SrcTy = Value->getType();
254     const llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
255     if (DstPtr->getElementType() != SrcTy) {
256       const llvm::Type *MemTy =
257         llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
258       Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
259     }
260   }
261   Builder.CreateStore(Value, Addr, Volatile);
262 }
263 
264 /// EmitLoadOfLValue - Given an expression that represents a value lvalue,
265 /// this method emits the address of the lvalue, then loads the result as an
266 /// rvalue, returning the rvalue.
267 RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) {
268   if (LV.isObjCWeak()) {
269     // load of a __weak object.
270     llvm::Value *AddrWeakObj = LV.getAddress();
271     llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this,
272                                                                    AddrWeakObj);
273     return RValue::get(read_weak);
274   }
275 
276   if (LV.isSimple()) {
277     llvm::Value *Ptr = LV.getAddress();
278     const llvm::Type *EltTy =
279       cast<llvm::PointerType>(Ptr->getType())->getElementType();
280 
281     // Simple scalar l-value.
282     if (EltTy->isSingleValueType())
283       return RValue::get(EmitLoadOfScalar(Ptr, LV.isVolatileQualified(),
284                                           ExprType));
285 
286     assert(ExprType->isFunctionType() && "Unknown scalar value");
287     return RValue::get(Ptr);
288   }
289 
290   if (LV.isVectorElt()) {
291     llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
292                                           LV.isVolatileQualified(), "tmp");
293     return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
294                                                     "vecext"));
295   }
296 
297   // If this is a reference to a subset of the elements of a vector, either
298   // shuffle the input or extract/insert them as appropriate.
299   if (LV.isExtVectorElt())
300     return EmitLoadOfExtVectorElementLValue(LV, ExprType);
301 
302   if (LV.isBitfield())
303     return EmitLoadOfBitfieldLValue(LV, ExprType);
304 
305   if (LV.isPropertyRef())
306     return EmitLoadOfPropertyRefLValue(LV, ExprType);
307 
308   assert(LV.isKVCRef() && "Unknown LValue type!");
309   return EmitLoadOfKVCRefLValue(LV, ExprType);
310 }
311 
312 RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV,
313                                                  QualType ExprType) {
314   unsigned StartBit = LV.getBitfieldStartBit();
315   unsigned BitfieldSize = LV.getBitfieldSize();
316   llvm::Value *Ptr = LV.getBitfieldAddr();
317 
318   const llvm::Type *EltTy =
319     cast<llvm::PointerType>(Ptr->getType())->getElementType();
320   unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
321 
322   // In some cases the bitfield may straddle two memory locations.
323   // Currently we load the entire bitfield, then do the magic to
324   // sign-extend it if necessary. This results in somewhat more code
325   // than necessary for the common case (one load), since two shifts
326   // accomplish both the masking and sign extension.
327   unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
328   llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp");
329 
330   // Shift to proper location.
331   if (StartBit)
332     Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit),
333                              "bf.lo");
334 
335   // Mask off unused bits.
336   llvm::Constant *LowMask = llvm::ConstantInt::get(VMContext,
337                                 llvm::APInt::getLowBitsSet(EltTySize, LowBits));
338   Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared");
339 
340   // Fetch the high bits if necessary.
341   if (LowBits < BitfieldSize) {
342     unsigned HighBits = BitfieldSize - LowBits;
343     llvm::Value *HighPtr =
344       Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
345                         "bf.ptr.hi");
346     llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
347                                               LV.isVolatileQualified(),
348                                               "tmp");
349 
350     // Mask off unused bits.
351     llvm::Constant *HighMask = llvm::ConstantInt::get(VMContext,
352                                llvm::APInt::getLowBitsSet(EltTySize, HighBits));
353     HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared");
354 
355     // Shift to proper location and or in to bitfield value.
356     HighVal = Builder.CreateShl(HighVal,
357                                 llvm::ConstantInt::get(EltTy, LowBits));
358     Val = Builder.CreateOr(Val, HighVal, "bf.val");
359   }
360 
361   // Sign extend if necessary.
362   if (LV.isBitfieldSigned()) {
363     llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy,
364                                                     EltTySize - BitfieldSize);
365     Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits),
366                              ExtraBits, "bf.val.sext");
367   }
368 
369   // The bitfield type and the normal type differ when the storage sizes
370   // differ (currently just _Bool).
371   Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp");
372 
373   return RValue::get(Val);
374 }
375 
376 RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV,
377                                                     QualType ExprType) {
378   return EmitObjCPropertyGet(LV.getPropertyRefExpr());
379 }
380 
381 RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV,
382                                                QualType ExprType) {
383   return EmitObjCPropertyGet(LV.getKVCRefExpr());
384 }
385 
386 // If this is a reference to a subset of the elements of a vector, create an
387 // appropriate shufflevector.
388 RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV,
389                                                          QualType ExprType) {
390   llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
391                                         LV.isVolatileQualified(), "tmp");
392 
393   const llvm::Constant *Elts = LV.getExtVectorElts();
394 
395   // If the result of the expression is a non-vector type, we must be
396   // extracting a single element.  Just codegen as an extractelement.
397   const VectorType *ExprVT = ExprType->getAsVectorType();
398   if (!ExprVT) {
399     unsigned InIdx = getAccessedFieldNo(0, Elts);
400     llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
401     return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp"));
402   }
403 
404   // Always use shuffle vector to try to retain the original program structure
405   unsigned NumResultElts = ExprVT->getNumElements();
406 
407   llvm::SmallVector<llvm::Constant*, 4> Mask;
408   for (unsigned i = 0; i != NumResultElts; ++i) {
409     unsigned InIdx = getAccessedFieldNo(i, Elts);
410     Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx));
411   }
412 
413   llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
414   Vec = Builder.CreateShuffleVector(Vec,
415                                     llvm::UndefValue::get(Vec->getType()),
416                                     MaskV, "tmp");
417   return RValue::get(Vec);
418 }
419 
420 
421 
422 /// EmitStoreThroughLValue - Store the specified rvalue into the specified
423 /// lvalue, where both are guaranteed to the have the same type, and that type
424 /// is 'Ty'.
425 void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
426                                              QualType Ty) {
427   if (!Dst.isSimple()) {
428     if (Dst.isVectorElt()) {
429       // Read/modify/write the vector, inserting the new element.
430       llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
431                                             Dst.isVolatileQualified(), "tmp");
432       Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
433                                         Dst.getVectorIdx(), "vecins");
434       Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
435       return;
436     }
437 
438     // If this is an update of extended vector elements, insert them as
439     // appropriate.
440     if (Dst.isExtVectorElt())
441       return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty);
442 
443     if (Dst.isBitfield())
444       return EmitStoreThroughBitfieldLValue(Src, Dst, Ty);
445 
446     if (Dst.isPropertyRef())
447       return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty);
448 
449     if (Dst.isKVCRef())
450       return EmitStoreThroughKVCRefLValue(Src, Dst, Ty);
451 
452     assert(0 && "Unknown LValue type");
453   }
454 
455   if (Dst.isObjCWeak() && !Dst.isNonGC()) {
456     // load of a __weak object.
457     llvm::Value *LvalueDst = Dst.getAddress();
458     llvm::Value *src = Src.getScalarVal();
459      CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
460     return;
461   }
462 
463   if (Dst.isObjCStrong() && !Dst.isNonGC()) {
464     // load of a __strong object.
465     llvm::Value *LvalueDst = Dst.getAddress();
466     llvm::Value *src = Src.getScalarVal();
467 #if 0
468     // FIXME. We cannot positively determine if we have an 'ivar' assignment,
469     // object assignment or an unknown assignment. For now, generate call to
470     // objc_assign_strongCast assignment which is a safe, but consevative
471     // assumption.
472     if (Dst.isObjCIvar())
473       CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst);
474     else
475       CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
476 #endif
477     if (Dst.isGlobalObjCRef())
478       CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
479     else
480       CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
481     return;
482   }
483 
484   assert(Src.isScalar() && "Can't emit an agg store with this method");
485   EmitStoreOfScalar(Src.getScalarVal(), Dst.getAddress(),
486                     Dst.isVolatileQualified(), Ty);
487 }
488 
489 void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
490                                                      QualType Ty,
491                                                      llvm::Value **Result) {
492   unsigned StartBit = Dst.getBitfieldStartBit();
493   unsigned BitfieldSize = Dst.getBitfieldSize();
494   llvm::Value *Ptr = Dst.getBitfieldAddr();
495 
496   const llvm::Type *EltTy =
497     cast<llvm::PointerType>(Ptr->getType())->getElementType();
498   unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy);
499 
500   // Get the new value, cast to the appropriate type and masked to
501   // exactly the size of the bit-field.
502   llvm::Value *SrcVal = Src.getScalarVal();
503   llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp");
504   llvm::Constant *Mask = llvm::ConstantInt::get(VMContext,
505                            llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize));
506   NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value");
507 
508   // Return the new value of the bit-field, if requested.
509   if (Result) {
510     // Cast back to the proper type for result.
511     const llvm::Type *SrcTy = SrcVal->getType();
512     llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false,
513                                                   "bf.reload.val");
514 
515     // Sign extend if necessary.
516     if (Dst.isBitfieldSigned()) {
517       unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy);
518       llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy,
519                                                       SrcTySize - BitfieldSize);
520       SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits),
521                                     ExtraBits, "bf.reload.sext");
522     }
523 
524     *Result = SrcTrunc;
525   }
526 
527   // In some cases the bitfield may straddle two memory locations.
528   // Emit the low part first and check to see if the high needs to be
529   // done.
530   unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit);
531   llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
532                                            "bf.prev.low");
533 
534   // Compute the mask for zero-ing the low part of this bitfield.
535   llvm::Constant *InvMask =
536     llvm::ConstantInt::get(VMContext,
537              ~llvm::APInt::getBitsSet(EltTySize, StartBit, StartBit + LowBits));
538 
539   // Compute the new low part as
540   //   LowVal = (LowVal & InvMask) | (NewVal << StartBit),
541   // with the shift of NewVal implicitly stripping the high bits.
542   llvm::Value *NewLowVal =
543     Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit),
544                       "bf.value.lo");
545   LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared");
546   LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo");
547 
548   // Write back.
549   Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified());
550 
551   // If the low part doesn't cover the bitfield emit a high part.
552   if (LowBits < BitfieldSize) {
553     unsigned HighBits = BitfieldSize - LowBits;
554     llvm::Value *HighPtr =
555       Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1),
556                         "bf.ptr.hi");
557     llvm::Value *HighVal = Builder.CreateLoad(HighPtr,
558                                               Dst.isVolatileQualified(),
559                                               "bf.prev.hi");
560 
561     // Compute the mask for zero-ing the high part of this bitfield.
562     llvm::Constant *InvMask =
563       llvm::ConstantInt::get(VMContext, ~llvm::APInt::getLowBitsSet(EltTySize,
564                                HighBits));
565 
566     // Compute the new high part as
567     //   HighVal = (HighVal & InvMask) | (NewVal lshr LowBits),
568     // where the high bits of NewVal have already been cleared and the
569     // shift stripping the low bits.
570     llvm::Value *NewHighVal =
571       Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits),
572                         "bf.value.high");
573     HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared");
574     HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi");
575 
576     // Write back.
577     Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified());
578   }
579 }
580 
581 void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src,
582                                                         LValue Dst,
583                                                         QualType Ty) {
584   EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src);
585 }
586 
587 void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src,
588                                                    LValue Dst,
589                                                    QualType Ty) {
590   EmitObjCPropertySet(Dst.getKVCRefExpr(), Src);
591 }
592 
593 void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
594                                                                LValue Dst,
595                                                                QualType Ty) {
596   // This access turns into a read/modify/write of the vector.  Load the input
597   // value now.
598   llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
599                                         Dst.isVolatileQualified(), "tmp");
600   const llvm::Constant *Elts = Dst.getExtVectorElts();
601 
602   llvm::Value *SrcVal = Src.getScalarVal();
603 
604   if (const VectorType *VTy = Ty->getAsVectorType()) {
605     unsigned NumSrcElts = VTy->getNumElements();
606     unsigned NumDstElts =
607        cast<llvm::VectorType>(Vec->getType())->getNumElements();
608     if (NumDstElts == NumSrcElts) {
609       // Use shuffle vector is the src and destination are the same number
610       // of elements and restore the vector mask since it is on the side
611       // it will be stored.
612       llvm::SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
613       for (unsigned i = 0; i != NumSrcElts; ++i) {
614         unsigned InIdx = getAccessedFieldNo(i, Elts);
615         Mask[InIdx] = llvm::ConstantInt::get(llvm::Type::Int32Ty, i);
616       }
617 
618       llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
619       Vec = Builder.CreateShuffleVector(SrcVal,
620                                         llvm::UndefValue::get(Vec->getType()),
621                                         MaskV, "tmp");
622     } else if (NumDstElts > NumSrcElts) {
623       // Extended the source vector to the same length and then shuffle it
624       // into the destination.
625       // FIXME: since we're shuffling with undef, can we just use the indices
626       //        into that?  This could be simpler.
627       llvm::SmallVector<llvm::Constant*, 4> ExtMask;
628       unsigned i;
629       for (i = 0; i != NumSrcElts; ++i)
630         ExtMask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
631       for (; i != NumDstElts; ++i)
632         ExtMask.push_back(llvm::UndefValue::get(llvm::Type::Int32Ty));
633       llvm::Value *ExtMaskV = llvm::ConstantVector::get(&ExtMask[0],
634                                                         ExtMask.size());
635       llvm::Value *ExtSrcVal =
636         Builder.CreateShuffleVector(SrcVal,
637                                     llvm::UndefValue::get(SrcVal->getType()),
638                                     ExtMaskV, "tmp");
639       // build identity
640       llvm::SmallVector<llvm::Constant*, 4> Mask;
641       for (unsigned i = 0; i != NumDstElts; ++i) {
642         Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, i));
643       }
644       // modify when what gets shuffled in
645       for (unsigned i = 0; i != NumSrcElts; ++i) {
646         unsigned Idx = getAccessedFieldNo(i, Elts);
647         Mask[Idx] = llvm::ConstantInt::get(llvm::Type::Int32Ty, i+NumDstElts);
648       }
649       llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size());
650       Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV, "tmp");
651     } else {
652       // We should never shorten the vector
653       assert(0 && "unexpected shorten vector length");
654     }
655   } else {
656     // If the Src is a scalar (not a vector) it must be updating one element.
657     unsigned InIdx = getAccessedFieldNo(0, Elts);
658     llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx);
659     Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp");
660   }
661 
662   Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
663 }
664 
665 LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
666   const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
667 
668   if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) ||
669         isa<ImplicitParamDecl>(VD))) {
670     LValue LV;
671     bool NonGCable = VD->hasLocalStorage() &&
672       !VD->hasAttr<BlocksAttr>();
673     if (VD->hasExternalStorage()) {
674       llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
675       if (VD->getType()->isReferenceType())
676         V = Builder.CreateLoad(V, "tmp");
677       LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
678                             getContext().getObjCGCAttrKind(E->getType()),
679                             E->getType().getAddressSpace());
680     } else {
681       llvm::Value *V = LocalDeclMap[VD];
682       assert(V && "DeclRefExpr not entered in LocalDeclMap?");
683       // local variables do not get their gc attribute set.
684       QualType::GCAttrTypes attr = QualType::GCNone;
685       // local static?
686       if (!NonGCable)
687         attr = getContext().getObjCGCAttrKind(E->getType());
688       if (VD->hasAttr<BlocksAttr>()) {
689         bool needsCopyDispose = BlockRequiresCopying(VD->getType());
690         const llvm::Type *PtrStructTy = V->getType();
691         const llvm::Type *Ty = PtrStructTy;
692         Ty = llvm::PointerType::get(Ty, 0);
693         V = Builder.CreateStructGEP(V, 1, "forwarding");
694         V = Builder.CreateBitCast(V, Ty);
695         V = Builder.CreateLoad(V, false);
696         V = Builder.CreateBitCast(V, PtrStructTy);
697         V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
698       }
699       if (VD->getType()->isReferenceType())
700         V = Builder.CreateLoad(V, "tmp");
701       LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr,
702                             E->getType().getAddressSpace());
703     }
704     LValue::SetObjCNonGC(LV, NonGCable);
705     return LV;
706   } else if (VD && VD->isFileVarDecl()) {
707     llvm::Value *V = CGM.GetAddrOfGlobalVar(VD);
708     if (VD->getType()->isReferenceType())
709       V = Builder.CreateLoad(V, "tmp");
710     LValue LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
711                                  getContext().getObjCGCAttrKind(E->getType()),
712                                  E->getType().getAddressSpace());
713     if (LV.isObjCStrong())
714       LV.SetGlobalObjCRef(LV, true);
715     return LV;
716   } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
717     llvm::Value* V = CGM.GetAddrOfFunction(GlobalDecl(FD));
718     if (!FD->hasPrototype()) {
719       if (const FunctionProtoType *Proto =
720               FD->getType()->getAsFunctionProtoType()) {
721         // Ugly case: for a K&R-style definition, the type of the definition
722         // isn't the same as the type of a use.  Correct for this with a
723         // bitcast.
724         QualType NoProtoType =
725             getContext().getFunctionNoProtoType(Proto->getResultType());
726         NoProtoType = getContext().getPointerType(NoProtoType);
727         V = Builder.CreateBitCast(V, ConvertType(NoProtoType), "tmp");
728       }
729     }
730     return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
731                             getContext().getObjCGCAttrKind(E->getType()),
732                             E->getType().getAddressSpace());
733   } else if (const ImplicitParamDecl *IPD =
734       dyn_cast<ImplicitParamDecl>(E->getDecl())) {
735     llvm::Value *V = LocalDeclMap[IPD];
736     assert(V && "BlockVarDecl not entered in LocalDeclMap?");
737     return LValue::MakeAddr(V, E->getType().getCVRQualifiers(),
738                             getContext().getObjCGCAttrKind(E->getType()),
739                             E->getType().getAddressSpace());
740   }
741   assert(0 && "Unimp declref");
742   //an invalid LValue, but the assert will
743   //ensure that this point is never reached.
744   return LValue();
745 }
746 
747 LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
748   return LValue::MakeAddr(GetAddrOfBlockDecl(E),
749                           E->getType().getCVRQualifiers(),
750                           getContext().getObjCGCAttrKind(E->getType()),
751                           E->getType().getAddressSpace());
752 }
753 
754 LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
755   // __extension__ doesn't affect lvalue-ness.
756   if (E->getOpcode() == UnaryOperator::Extension)
757     return EmitLValue(E->getSubExpr());
758 
759   QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
760   switch (E->getOpcode()) {
761   default: assert(0 && "Unknown unary operator lvalue!");
762   case UnaryOperator::Deref:
763     {
764       QualType T = E->getSubExpr()->getType()->getPointeeType();
765       assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
766 
767       LValue LV = LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()),
768                                    T.getCVRQualifiers(),
769                                    getContext().getObjCGCAttrKind(T),
770                                    ExprTy.getAddressSpace());
771      // We should not generate __weak write barrier on indirect reference
772      // of a pointer to object; as in void foo (__weak id *param); *param = 0;
773      // But, we continue to generate __strong write barrier on indirect write
774      // into a pointer to object.
775      if (getContext().getLangOptions().ObjC1 &&
776          getContext().getLangOptions().getGCMode() != LangOptions::NonGC &&
777          LV.isObjCWeak())
778        LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
779      return LV;
780     }
781   case UnaryOperator::Real:
782   case UnaryOperator::Imag:
783     LValue LV = EmitLValue(E->getSubExpr());
784     unsigned Idx = E->getOpcode() == UnaryOperator::Imag;
785     return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(),
786                                                     Idx, "idx"),
787                             ExprTy.getCVRQualifiers(),
788                             QualType::GCNone,
789                             ExprTy.getAddressSpace());
790   }
791 }
792 
793 LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
794   return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0);
795 }
796 
797 LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
798   return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromObjCEncode(E), 0);
799 }
800 
801 
802 LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) {
803   std::string GlobalVarName;
804 
805   switch (Type) {
806   default:
807     assert(0 && "Invalid type");
808   case PredefinedExpr::Func:
809     GlobalVarName = "__func__.";
810     break;
811   case PredefinedExpr::Function:
812     GlobalVarName = "__FUNCTION__.";
813     break;
814   case PredefinedExpr::PrettyFunction:
815     // FIXME:: Demangle C++ method names
816     GlobalVarName = "__PRETTY_FUNCTION__.";
817     break;
818   }
819 
820   // FIXME: This isn't right at all.  The logic for computing this should go
821   // into a method on PredefinedExpr.  This would allow sema and codegen to be
822   // consistent for things like sizeof(__func__) etc.
823   std::string FunctionName;
824   if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurCodeDecl)) {
825     FunctionName = CGM.getMangledName(FD);
826   } else {
827     // Just get the mangled name; skipping the asm prefix if it
828     // exists.
829     FunctionName = CurFn->getName();
830     if (FunctionName[0] == '\01')
831       FunctionName = FunctionName.substr(1, std::string::npos);
832   }
833 
834   GlobalVarName += FunctionName;
835   llvm::Constant *C =
836     CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
837   return LValue::MakeAddr(C, 0);
838 }
839 
840 LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
841   switch (E->getIdentType()) {
842   default:
843     return EmitUnsupportedLValue(E, "predefined expression");
844   case PredefinedExpr::Func:
845   case PredefinedExpr::Function:
846   case PredefinedExpr::PrettyFunction:
847     return EmitPredefinedFunctionName(E->getIdentType());
848   }
849 }
850 
851 LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
852   // The index must always be an integer, which is not an aggregate.  Emit it.
853   llvm::Value *Idx = EmitScalarExpr(E->getIdx());
854   QualType IdxTy  = E->getIdx()->getType();
855   bool IdxSigned = IdxTy->isSignedIntegerType();
856 
857   // If the base is a vector type, then we are forming a vector element lvalue
858   // with this subscript.
859   if (E->getBase()->getType()->isVectorType()) {
860     // Emit the vector as an lvalue to get its address.
861     LValue LHS = EmitLValue(E->getBase());
862     assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
863     Idx = Builder.CreateIntCast(Idx, llvm::Type::Int32Ty, IdxSigned, "vidx");
864     return LValue::MakeVectorElt(LHS.getAddress(), Idx,
865       E->getBase()->getType().getCVRQualifiers());
866   }
867 
868   // The base must be a pointer, which is not an aggregate.  Emit it.
869   llvm::Value *Base = EmitScalarExpr(E->getBase());
870 
871   // Extend or truncate the index type to 32 or 64-bits.
872   unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth();
873   if (IdxBitwidth != LLVMPointerWidth)
874     Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth),
875                                 IdxSigned, "idxprom");
876 
877   // We know that the pointer points to a type of the correct size,
878   // unless the size is a VLA or Objective-C interface.
879   llvm::Value *Address = 0;
880   if (const VariableArrayType *VAT =
881         getContext().getAsVariableArrayType(E->getType())) {
882     llvm::Value *VLASize = VLASizeMap[VAT];
883 
884     Idx = Builder.CreateMul(Idx, VLASize);
885 
886     QualType BaseType = getContext().getBaseElementType(VAT);
887 
888     uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8;
889     Idx = Builder.CreateUDiv(Idx,
890                              llvm::ConstantInt::get(Idx->getType(),
891                                                     BaseTypeSize));
892     Address = Builder.CreateGEP(Base, Idx, "arrayidx");
893   } else if (const ObjCInterfaceType *OIT =
894              dyn_cast<ObjCInterfaceType>(E->getType())) {
895     llvm::Value *InterfaceSize =
896       llvm::ConstantInt::get(Idx->getType(),
897                              getContext().getTypeSize(OIT) / 8);
898 
899     Idx = Builder.CreateMul(Idx, InterfaceSize);
900 
901     llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
902     Address = Builder.CreateGEP(Builder.CreateBitCast(Base, i8PTy),
903                                 Idx, "arrayidx");
904     Address = Builder.CreateBitCast(Address, Base->getType());
905   } else {
906     Address = Builder.CreateGEP(Base, Idx, "arrayidx");
907   }
908 
909   QualType T = E->getBase()->getType()->getPointeeType();
910   assert(!T.isNull() &&
911          "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
912 
913   LValue LV = LValue::MakeAddr(Address,
914                                T.getCVRQualifiers(),
915                                getContext().getObjCGCAttrKind(T),
916                                E->getBase()->getType().getAddressSpace());
917   if (getContext().getLangOptions().ObjC1 &&
918       getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
919     LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate(getContext()));
920   return LV;
921 }
922 
923 static
924 llvm::Constant *GenerateConstantVector(llvm::LLVMContext &VMContext,
925                                        llvm::SmallVector<unsigned, 4> &Elts) {
926   llvm::SmallVector<llvm::Constant *, 4> CElts;
927 
928   for (unsigned i = 0, e = Elts.size(); i != e; ++i)
929     CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i]));
930 
931   return llvm::ConstantVector::get(&CElts[0], CElts.size());
932 }
933 
934 LValue CodeGenFunction::
935 EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
936   // Emit the base vector as an l-value.
937   LValue Base;
938 
939   // ExtVectorElementExpr's base can either be a vector or pointer to vector.
940   if (!E->isArrow()) {
941     assert(E->getBase()->getType()->isVectorType());
942     Base = EmitLValue(E->getBase());
943   } else {
944     const PointerType *PT = E->getBase()->getType()->getAs<PointerType>();
945     llvm::Value *Ptr = EmitScalarExpr(E->getBase());
946     Base = LValue::MakeAddr(Ptr, PT->getPointeeType().getCVRQualifiers(),
947                             QualType::GCNone,
948                             PT->getPointeeType().getAddressSpace());
949   }
950 
951   // Encode the element access list into a vector of unsigned indices.
952   llvm::SmallVector<unsigned, 4> Indices;
953   E->getEncodedElementAccess(Indices);
954 
955   if (Base.isSimple()) {
956     llvm::Constant *CV = GenerateConstantVector(VMContext, Indices);
957     return LValue::MakeExtVectorElt(Base.getAddress(), CV,
958                                     Base.getQualifiers());
959   }
960   assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
961 
962   llvm::Constant *BaseElts = Base.getExtVectorElts();
963   llvm::SmallVector<llvm::Constant *, 4> CElts;
964 
965   for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
966     if (isa<llvm::ConstantAggregateZero>(BaseElts))
967       CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
968     else
969       CElts.push_back(BaseElts->getOperand(Indices[i]));
970   }
971   llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size());
972   return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV,
973                                   Base.getQualifiers());
974 }
975 
976 LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
977   bool isUnion = false;
978   bool isIvar = false;
979   bool isNonGC = false;
980   Expr *BaseExpr = E->getBase();
981   llvm::Value *BaseValue = NULL;
982   unsigned CVRQualifiers=0;
983 
984   // If this is s.x, emit s as an lvalue.  If it is s->x, emit s as a scalar.
985   if (E->isArrow()) {
986     BaseValue = EmitScalarExpr(BaseExpr);
987     const PointerType *PTy =
988       BaseExpr->getType()->getAs<PointerType>();
989     if (PTy->getPointeeType()->isUnionType())
990       isUnion = true;
991     CVRQualifiers = PTy->getPointeeType().getCVRQualifiers();
992   } else if (isa<ObjCPropertyRefExpr>(BaseExpr) ||
993              isa<ObjCKVCRefExpr>(BaseExpr)) {
994     RValue RV = EmitObjCPropertyGet(BaseExpr);
995     BaseValue = RV.getAggregateAddr();
996     if (BaseExpr->getType()->isUnionType())
997       isUnion = true;
998     CVRQualifiers = BaseExpr->getType().getCVRQualifiers();
999   } else {
1000     LValue BaseLV = EmitLValue(BaseExpr);
1001     if (BaseLV.isObjCIvar())
1002       isIvar = true;
1003     if (BaseLV.isNonGC())
1004       isNonGC = true;
1005     // FIXME: this isn't right for bitfields.
1006     BaseValue = BaseLV.getAddress();
1007     QualType BaseTy = BaseExpr->getType();
1008     if (BaseTy->isUnionType())
1009       isUnion = true;
1010     CVRQualifiers = BaseTy.getCVRQualifiers();
1011   }
1012 
1013   FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl());
1014   // FIXME: Handle non-field member expressions
1015   assert(Field && "No code generation for non-field member references");
1016   LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion,
1017                                        CVRQualifiers);
1018   LValue::SetObjCIvar(MemExpLV, isIvar);
1019   LValue::SetObjCNonGC(MemExpLV, isNonGC);
1020   return MemExpLV;
1021 }
1022 
1023 LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue,
1024                                               FieldDecl* Field,
1025                                               unsigned CVRQualifiers) {
1026   CodeGenTypes::BitFieldInfo Info = CGM.getTypes().getBitFieldInfo(Field);
1027 
1028   // FIXME: CodeGenTypes should expose a method to get the appropriate type for
1029   // FieldTy (the appropriate type is ABI-dependent).
1030   const llvm::Type *FieldTy =
1031     CGM.getTypes().ConvertTypeForMem(Field->getType());
1032   const llvm::PointerType *BaseTy =
1033   cast<llvm::PointerType>(BaseValue->getType());
1034   unsigned AS = BaseTy->getAddressSpace();
1035   BaseValue = Builder.CreateBitCast(BaseValue,
1036                                     llvm::PointerType::get(FieldTy, AS),
1037                                     "tmp");
1038 
1039   llvm::Value *Idx =
1040     llvm::ConstantInt::get(llvm::Type::Int32Ty, Info.FieldNo);
1041   llvm::Value *V = Builder.CreateGEP(BaseValue, Idx, "tmp");
1042 
1043   return LValue::MakeBitfield(V, Info.Start, Info.Size,
1044                               Field->getType()->isSignedIntegerType(),
1045                             Field->getType().getCVRQualifiers()|CVRQualifiers);
1046 }
1047 
1048 LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue,
1049                                            FieldDecl* Field,
1050                                            bool isUnion,
1051                                            unsigned CVRQualifiers)
1052 {
1053   if (Field->isBitField())
1054     return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers);
1055 
1056   unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
1057   llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp");
1058 
1059   // Match union field type.
1060   if (isUnion) {
1061     const llvm::Type *FieldTy =
1062       CGM.getTypes().ConvertTypeForMem(Field->getType());
1063     const llvm::PointerType * BaseTy =
1064       cast<llvm::PointerType>(BaseValue->getType());
1065     unsigned AS = BaseTy->getAddressSpace();
1066     V = Builder.CreateBitCast(V,
1067                               llvm::PointerType::get(FieldTy, AS),
1068                               "tmp");
1069   }
1070   if (Field->getType()->isReferenceType())
1071     V = Builder.CreateLoad(V, "tmp");
1072 
1073   QualType::GCAttrTypes attr = QualType::GCNone;
1074   if (CGM.getLangOptions().ObjC1 &&
1075       CGM.getLangOptions().getGCMode() != LangOptions::NonGC) {
1076     QualType Ty = Field->getType();
1077     attr = Ty.getObjCGCAttr();
1078     if (attr != QualType::GCNone) {
1079       // __weak attribute on a field is ignored.
1080       if (attr == QualType::Weak)
1081         attr = QualType::GCNone;
1082     } else if (Ty->isObjCObjectPointerType())
1083       attr = QualType::Strong;
1084   }
1085   LValue LV =
1086     LValue::MakeAddr(V,
1087                      Field->getType().getCVRQualifiers()|CVRQualifiers,
1088                      attr,
1089                      Field->getType().getAddressSpace());
1090   return LV;
1091 }
1092 
1093 LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E){
1094   const llvm::Type *LTy = ConvertType(E->getType());
1095   llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral");
1096 
1097   const Expr* InitExpr = E->getInitializer();
1098   LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers(),
1099                                    QualType::GCNone,
1100                                    E->getType().getAddressSpace());
1101 
1102   if (E->getType()->isComplexType()) {
1103     EmitComplexExprIntoAddr(InitExpr, DeclPtr, false);
1104   } else if (hasAggregateLLVMType(E->getType())) {
1105     EmitAnyExpr(InitExpr, DeclPtr, false);
1106   } else {
1107     EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType());
1108   }
1109 
1110   return Result;
1111 }
1112 
1113 LValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator* E) {
1114   if (E->isLvalue(getContext()) == Expr::LV_Valid)
1115     return EmitUnsupportedLValue(E, "conditional operator");
1116 
1117   // ?: here should be an aggregate.
1118   assert((hasAggregateLLVMType(E->getType()) &&
1119           !E->getType()->isAnyComplexType()) &&
1120          "Unexpected conditional operator!");
1121 
1122   llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1123   EmitAggExpr(E, Temp, false);
1124 
1125   return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1126                           getContext().getObjCGCAttrKind(E->getType()),
1127                           E->getType().getAddressSpace());
1128 
1129 }
1130 
1131 /// EmitCastLValue - Casts are never lvalues.  If a cast is needed by the code
1132 /// generator in an lvalue context, then it must mean that we need the address
1133 /// of an aggregate in order to access one of its fields.  This can happen for
1134 /// all the reasons that casts are permitted with aggregate result, including
1135 /// noop aggregate casts, and cast from scalar to union.
1136 LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
1137   // If this is an aggregate-to-aggregate cast, just use the input's address as
1138   // the lvalue.
1139   if (getContext().hasSameUnqualifiedType(E->getType(),
1140                                           E->getSubExpr()->getType()))
1141     return EmitLValue(E->getSubExpr());
1142 
1143   // Otherwise, we must have a cast from scalar to union.
1144   assert(E->getType()->isUnionType() && "Expected scalar-to-union cast");
1145 
1146   // Casts are only lvalues when the source and destination types are the same.
1147   llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1148   EmitAnyExpr(E->getSubExpr(), Temp, false);
1149 
1150   return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1151                           getContext().getObjCGCAttrKind(E->getType()),
1152                           E->getType().getAddressSpace());
1153 }
1154 
1155 //===--------------------------------------------------------------------===//
1156 //                             Expression Emission
1157 //===--------------------------------------------------------------------===//
1158 
1159 
1160 RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) {
1161   // Builtins never have block type.
1162   if (E->getCallee()->getType()->isBlockPointerType())
1163     return EmitBlockCallExpr(E);
1164 
1165   if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
1166     return EmitCXXMemberCallExpr(CE);
1167 
1168   const Decl *TargetDecl = 0;
1169   if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
1170     if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
1171       TargetDecl = DRE->getDecl();
1172       if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(TargetDecl))
1173         if (unsigned builtinID = FD->getBuiltinID(getContext()))
1174           return EmitBuiltinExpr(FD, builtinID, E);
1175     }
1176   }
1177 
1178   if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
1179     if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
1180       return EmitCXXOperatorMemberCallExpr(CE, MD);
1181 
1182   llvm::Value *Callee = EmitScalarExpr(E->getCallee());
1183   return EmitCall(Callee, E->getCallee()->getType(),
1184                   E->arg_begin(), E->arg_end(), TargetDecl);
1185 }
1186 
1187 LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
1188   // Comma expressions just emit their LHS then their RHS as an l-value.
1189   if (E->getOpcode() == BinaryOperator::Comma) {
1190     EmitAnyExpr(E->getLHS());
1191     return EmitLValue(E->getRHS());
1192   }
1193 
1194   // Can only get l-value for binary operator expressions which are a
1195   // simple assignment of aggregate type.
1196   if (E->getOpcode() != BinaryOperator::Assign)
1197     return EmitUnsupportedLValue(E, "binary l-value expression");
1198 
1199   llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1200   EmitAggExpr(E, Temp, false);
1201   // FIXME: Are these qualifiers correct?
1202   return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1203                           getContext().getObjCGCAttrKind(E->getType()),
1204                           E->getType().getAddressSpace());
1205 }
1206 
1207 LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
1208   RValue RV = EmitCallExpr(E);
1209 
1210   if (RV.isScalar()) {
1211     assert(E->getCallReturnType()->isReferenceType() &&
1212            "Can't have a scalar return unless the return type is a "
1213            "reference type!");
1214 
1215     return LValue::MakeAddr(RV.getScalarVal(), E->getType().getCVRQualifiers(),
1216                             getContext().getObjCGCAttrKind(E->getType()),
1217                             E->getType().getAddressSpace());
1218   }
1219 
1220   return LValue::MakeAddr(RV.getAggregateAddr(),
1221                           E->getType().getCVRQualifiers(),
1222                           getContext().getObjCGCAttrKind(E->getType()),
1223                           E->getType().getAddressSpace());
1224 }
1225 
1226 LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
1227   // FIXME: This shouldn't require another copy.
1228   llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType()));
1229   EmitAggExpr(E, Temp, false);
1230   return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1231                           QualType::GCNone, E->getType().getAddressSpace());
1232 }
1233 
1234 LValue
1235 CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
1236   EmitLocalBlockVarDecl(*E->getVarDecl());
1237   return EmitDeclRefLValue(E);
1238 }
1239 
1240 LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
1241   llvm::Value *Temp = CreateTempAlloca(ConvertTypeForMem(E->getType()), "tmp");
1242   EmitCXXConstructExpr(Temp, E);
1243   return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers(),
1244                           QualType::GCNone, E->getType().getAddressSpace());
1245 }
1246 
1247 LValue
1248 CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
1249   LValue LV = EmitLValue(E->getSubExpr());
1250 
1251   PushCXXTemporary(E->getTemporary(), LV.getAddress());
1252 
1253   return LV;
1254 }
1255 
1256 LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
1257   // Can only get l-value for message expression returning aggregate type
1258   RValue RV = EmitObjCMessageExpr(E);
1259   // FIXME: can this be volatile?
1260   return LValue::MakeAddr(RV.getAggregateAddr(),
1261                           E->getType().getCVRQualifiers(),
1262                           getContext().getObjCGCAttrKind(E->getType()),
1263                           E->getType().getAddressSpace());
1264 }
1265 
1266 llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
1267                                              const ObjCIvarDecl *Ivar) {
1268   return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
1269 }
1270 
1271 LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
1272                                           llvm::Value *BaseValue,
1273                                           const ObjCIvarDecl *Ivar,
1274                                           unsigned CVRQualifiers) {
1275   return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
1276                                                    Ivar, CVRQualifiers);
1277 }
1278 
1279 LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
1280   // FIXME: A lot of the code below could be shared with EmitMemberExpr.
1281   llvm::Value *BaseValue = 0;
1282   const Expr *BaseExpr = E->getBase();
1283   unsigned CVRQualifiers = 0;
1284   QualType ObjectTy;
1285   if (E->isArrow()) {
1286     BaseValue = EmitScalarExpr(BaseExpr);
1287     ObjectTy = BaseExpr->getType()->getPointeeType();
1288     CVRQualifiers = ObjectTy.getCVRQualifiers();
1289   } else {
1290     LValue BaseLV = EmitLValue(BaseExpr);
1291     // FIXME: this isn't right for bitfields.
1292     BaseValue = BaseLV.getAddress();
1293     ObjectTy = BaseExpr->getType();
1294     CVRQualifiers = ObjectTy.getCVRQualifiers();
1295   }
1296 
1297   return EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(), CVRQualifiers);
1298 }
1299 
1300 LValue
1301 CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) {
1302   // This is a special l-value that just issues sends when we load or
1303   // store through it.
1304   return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers());
1305 }
1306 
1307 LValue
1308 CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) {
1309   // This is a special l-value that just issues sends when we load or
1310   // store through it.
1311   return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers());
1312 }
1313 
1314 LValue
1315 CodeGenFunction::EmitObjCSuperExprLValue(const ObjCSuperExpr *E) {
1316   return EmitUnsupportedLValue(E, "use of super");
1317 }
1318 
1319 LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
1320 
1321   // Can only get l-value for message expression returning aggregate type
1322   RValue RV = EmitAnyExprToTemp(E);
1323   // FIXME: can this be volatile?
1324   return LValue::MakeAddr(RV.getAggregateAddr(),
1325                           E->getType().getCVRQualifiers(),
1326                           getContext().getObjCGCAttrKind(E->getType()),
1327                           E->getType().getAddressSpace());
1328 }
1329 
1330 
1331 RValue CodeGenFunction::EmitCall(llvm::Value *Callee, QualType CalleeType,
1332                                  CallExpr::const_arg_iterator ArgBeg,
1333                                  CallExpr::const_arg_iterator ArgEnd,
1334                                  const Decl *TargetDecl) {
1335   // Get the actual function type. The callee type will always be a
1336   // pointer to function type or a block pointer type.
1337   assert(CalleeType->isFunctionPointerType() &&
1338          "Call must have function pointer type!");
1339 
1340   QualType FnType = CalleeType->getAs<PointerType>()->getPointeeType();
1341   QualType ResultType = FnType->getAsFunctionType()->getResultType();
1342 
1343   CallArgList Args;
1344   EmitCallArgs(Args, FnType->getAsFunctionProtoType(), ArgBeg, ArgEnd);
1345 
1346   return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
1347                   Callee, Args, TargetDecl);
1348 }
1349