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 "CGCXXABI.h"
18 #include "CGDebugInfo.h"
19 #include "CGRecordLayout.h"
20 #include "CGObjCRuntime.h"
21 #include "TargetInfo.h"
22 #include "clang/AST/ASTContext.h"
23 #include "clang/AST/DeclObjC.h"
24 #include "clang/Frontend/CodeGenOptions.h"
25 #include "llvm/Intrinsics.h"
26 #include "llvm/LLVMContext.h"
27 #include "llvm/Target/TargetData.h"
28 using namespace clang;
29 using namespace CodeGen;
30 
31 //===--------------------------------------------------------------------===//
32 //                        Miscellaneous Helper Methods
33 //===--------------------------------------------------------------------===//
34 
35 llvm::Value *CodeGenFunction::EmitCastToVoidPtr(llvm::Value *value) {
36   unsigned addressSpace =
37     cast<llvm::PointerType>(value->getType())->getAddressSpace();
38 
39   llvm::PointerType *destType = Int8PtrTy;
40   if (addressSpace)
41     destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace);
42 
43   if (value->getType() == destType) return value;
44   return Builder.CreateBitCast(value, destType);
45 }
46 
47 /// CreateTempAlloca - This creates a alloca and inserts it into the entry
48 /// block.
49 llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(llvm::Type *Ty,
50                                                     const Twine &Name) {
51   if (!Builder.isNamePreserving())
52     return new llvm::AllocaInst(Ty, 0, "", AllocaInsertPt);
53   return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
54 }
55 
56 void CodeGenFunction::InitTempAlloca(llvm::AllocaInst *Var,
57                                      llvm::Value *Init) {
58   llvm::StoreInst *Store = new llvm::StoreInst(Init, Var);
59   llvm::BasicBlock *Block = AllocaInsertPt->getParent();
60   Block->getInstList().insertAfter(&*AllocaInsertPt, Store);
61 }
62 
63 llvm::AllocaInst *CodeGenFunction::CreateIRTemp(QualType Ty,
64                                                 const Twine &Name) {
65   llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertType(Ty), Name);
66   // FIXME: Should we prefer the preferred type alignment here?
67   CharUnits Align = getContext().getTypeAlignInChars(Ty);
68   Alloc->setAlignment(Align.getQuantity());
69   return Alloc;
70 }
71 
72 llvm::AllocaInst *CodeGenFunction::CreateMemTemp(QualType Ty,
73                                                  const Twine &Name) {
74   llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertTypeForMem(Ty), Name);
75   // FIXME: Should we prefer the preferred type alignment here?
76   CharUnits Align = getContext().getTypeAlignInChars(Ty);
77   Alloc->setAlignment(Align.getQuantity());
78   return Alloc;
79 }
80 
81 /// EvaluateExprAsBool - Perform the usual unary conversions on the specified
82 /// expression and compare the result against zero, returning an Int1Ty value.
83 llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
84   if (const MemberPointerType *MPT = E->getType()->getAs<MemberPointerType>()) {
85     llvm::Value *MemPtr = EmitScalarExpr(E);
86     return CGM.getCXXABI().EmitMemberPointerIsNotNull(*this, MemPtr, MPT);
87   }
88 
89   QualType BoolTy = getContext().BoolTy;
90   if (!E->getType()->isAnyComplexType())
91     return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
92 
93   return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
94 }
95 
96 /// EmitIgnoredExpr - Emit code to compute the specified expression,
97 /// ignoring the result.
98 void CodeGenFunction::EmitIgnoredExpr(const Expr *E) {
99   if (E->isRValue())
100     return (void) EmitAnyExpr(E, AggValueSlot::ignored(), true);
101 
102   // Just emit it as an l-value and drop the result.
103   EmitLValue(E);
104 }
105 
106 /// EmitAnyExpr - Emit code to compute the specified expression which
107 /// can have any type.  The result is returned as an RValue struct.
108 /// If this is an aggregate expression, AggSlot indicates where the
109 /// result should be returned.
110 RValue CodeGenFunction::EmitAnyExpr(const Expr *E, AggValueSlot AggSlot,
111                                     bool IgnoreResult) {
112   if (!hasAggregateLLVMType(E->getType()))
113     return RValue::get(EmitScalarExpr(E, IgnoreResult));
114   else if (E->getType()->isAnyComplexType())
115     return RValue::getComplex(EmitComplexExpr(E, IgnoreResult, IgnoreResult));
116 
117   EmitAggExpr(E, AggSlot, IgnoreResult);
118   return AggSlot.asRValue();
119 }
120 
121 /// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result will
122 /// always be accessible even if no aggregate location is provided.
123 RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E) {
124   AggValueSlot AggSlot = AggValueSlot::ignored();
125 
126   if (hasAggregateLLVMType(E->getType()) &&
127       !E->getType()->isAnyComplexType())
128     AggSlot = CreateAggTemp(E->getType(), "agg.tmp");
129   return EmitAnyExpr(E, AggSlot);
130 }
131 
132 /// EmitAnyExprToMem - Evaluate an expression into a given memory
133 /// location.
134 void CodeGenFunction::EmitAnyExprToMem(const Expr *E,
135                                        llvm::Value *Location,
136                                        Qualifiers Quals,
137                                        bool IsInit) {
138   // FIXME: This function should take an LValue as an argument.
139   if (E->getType()->isAnyComplexType()) {
140     EmitComplexExprIntoAddr(E, Location, Quals.hasVolatile());
141   } else if (hasAggregateLLVMType(E->getType())) {
142     CharUnits Alignment = getContext().getTypeAlignInChars(E->getType());
143     EmitAggExpr(E, AggValueSlot::forAddr(Location, Alignment, Quals,
144                                          AggValueSlot::IsDestructed_t(IsInit),
145                                          AggValueSlot::DoesNotNeedGCBarriers,
146                                          AggValueSlot::IsAliased_t(!IsInit)));
147   } else {
148     RValue RV = RValue::get(EmitScalarExpr(E, /*Ignore*/ false));
149     LValue LV = MakeAddrLValue(Location, E->getType());
150     EmitStoreThroughLValue(RV, LV);
151   }
152 }
153 
154 namespace {
155 /// \brief An adjustment to be made to the temporary created when emitting a
156 /// reference binding, which accesses a particular subobject of that temporary.
157   struct SubobjectAdjustment {
158     enum { DerivedToBaseAdjustment, FieldAdjustment } Kind;
159 
160     union {
161       struct {
162         const CastExpr *BasePath;
163         const CXXRecordDecl *DerivedClass;
164       } DerivedToBase;
165 
166       FieldDecl *Field;
167     };
168 
169     SubobjectAdjustment(const CastExpr *BasePath,
170                         const CXXRecordDecl *DerivedClass)
171       : Kind(DerivedToBaseAdjustment) {
172       DerivedToBase.BasePath = BasePath;
173       DerivedToBase.DerivedClass = DerivedClass;
174     }
175 
176     SubobjectAdjustment(FieldDecl *Field)
177       : Kind(FieldAdjustment) {
178       this->Field = Field;
179     }
180   };
181 }
182 
183 static llvm::Value *
184 CreateReferenceTemporary(CodeGenFunction &CGF, QualType Type,
185                          const NamedDecl *InitializedDecl) {
186   if (const VarDecl *VD = dyn_cast_or_null<VarDecl>(InitializedDecl)) {
187     if (VD->hasGlobalStorage()) {
188       llvm::SmallString<256> Name;
189       llvm::raw_svector_ostream Out(Name);
190       CGF.CGM.getCXXABI().getMangleContext().mangleReferenceTemporary(VD, Out);
191       Out.flush();
192 
193       llvm::Type *RefTempTy = CGF.ConvertTypeForMem(Type);
194 
195       // Create the reference temporary.
196       llvm::GlobalValue *RefTemp =
197         new llvm::GlobalVariable(CGF.CGM.getModule(),
198                                  RefTempTy, /*isConstant=*/false,
199                                  llvm::GlobalValue::InternalLinkage,
200                                  llvm::Constant::getNullValue(RefTempTy),
201                                  Name.str());
202       return RefTemp;
203     }
204   }
205 
206   return CGF.CreateMemTemp(Type, "ref.tmp");
207 }
208 
209 static llvm::Value *
210 EmitExprForReferenceBinding(CodeGenFunction &CGF, const Expr *E,
211                             llvm::Value *&ReferenceTemporary,
212                             const CXXDestructorDecl *&ReferenceTemporaryDtor,
213                             QualType &ObjCARCReferenceLifetimeType,
214                             const NamedDecl *InitializedDecl) {
215   // Look through single-element init lists that claim to be lvalues. They're
216   // just syntactic wrappers in this case.
217   if (const InitListExpr *ILE = dyn_cast<InitListExpr>(E)) {
218     if (ILE->getNumInits() == 1 && ILE->isGLValue())
219       E = ILE->getInit(0);
220   }
221 
222   // Look through expressions for materialized temporaries (for now).
223   if (const MaterializeTemporaryExpr *M
224                                       = dyn_cast<MaterializeTemporaryExpr>(E)) {
225     // Objective-C++ ARC:
226     //   If we are binding a reference to a temporary that has ownership, we
227     //   need to perform retain/release operations on the temporary.
228     if (CGF.getContext().getLangOptions().ObjCAutoRefCount &&
229         E->getType()->isObjCLifetimeType() &&
230         (E->getType().getObjCLifetime() == Qualifiers::OCL_Strong ||
231          E->getType().getObjCLifetime() == Qualifiers::OCL_Weak ||
232          E->getType().getObjCLifetime() == Qualifiers::OCL_Autoreleasing))
233       ObjCARCReferenceLifetimeType = E->getType();
234 
235     E = M->GetTemporaryExpr();
236   }
237 
238   if (const CXXDefaultArgExpr *DAE = dyn_cast<CXXDefaultArgExpr>(E))
239     E = DAE->getExpr();
240 
241   if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(E)) {
242     CGF.enterFullExpression(EWC);
243     CodeGenFunction::RunCleanupsScope Scope(CGF);
244 
245     return EmitExprForReferenceBinding(CGF, EWC->getSubExpr(),
246                                        ReferenceTemporary,
247                                        ReferenceTemporaryDtor,
248                                        ObjCARCReferenceLifetimeType,
249                                        InitializedDecl);
250   }
251 
252   RValue RV;
253   if (E->isGLValue()) {
254     // Emit the expression as an lvalue.
255     LValue LV = CGF.EmitLValue(E);
256 
257     if (LV.isSimple())
258       return LV.getAddress();
259 
260     // We have to load the lvalue.
261     RV = CGF.EmitLoadOfLValue(LV);
262   } else {
263     if (!ObjCARCReferenceLifetimeType.isNull()) {
264       ReferenceTemporary = CreateReferenceTemporary(CGF,
265                                                   ObjCARCReferenceLifetimeType,
266                                                     InitializedDecl);
267 
268 
269       LValue RefTempDst = CGF.MakeAddrLValue(ReferenceTemporary,
270                                              ObjCARCReferenceLifetimeType);
271 
272       CGF.EmitScalarInit(E, dyn_cast_or_null<ValueDecl>(InitializedDecl),
273                          RefTempDst, false);
274 
275       bool ExtendsLifeOfTemporary = false;
276       if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(InitializedDecl)) {
277         if (Var->extendsLifetimeOfTemporary())
278           ExtendsLifeOfTemporary = true;
279       } else if (InitializedDecl && isa<FieldDecl>(InitializedDecl)) {
280         ExtendsLifeOfTemporary = true;
281       }
282 
283       if (!ExtendsLifeOfTemporary) {
284         // Since the lifetime of this temporary isn't going to be extended,
285         // we need to clean it up ourselves at the end of the full expression.
286         switch (ObjCARCReferenceLifetimeType.getObjCLifetime()) {
287         case Qualifiers::OCL_None:
288         case Qualifiers::OCL_ExplicitNone:
289         case Qualifiers::OCL_Autoreleasing:
290           break;
291 
292         case Qualifiers::OCL_Strong: {
293           assert(!ObjCARCReferenceLifetimeType->isArrayType());
294           CleanupKind cleanupKind = CGF.getARCCleanupKind();
295           CGF.pushDestroy(cleanupKind,
296                           ReferenceTemporary,
297                           ObjCARCReferenceLifetimeType,
298                           CodeGenFunction::destroyARCStrongImprecise,
299                           cleanupKind & EHCleanup);
300           break;
301         }
302 
303         case Qualifiers::OCL_Weak:
304           assert(!ObjCARCReferenceLifetimeType->isArrayType());
305           CGF.pushDestroy(NormalAndEHCleanup,
306                           ReferenceTemporary,
307                           ObjCARCReferenceLifetimeType,
308                           CodeGenFunction::destroyARCWeak,
309                           /*useEHCleanupForArray*/ true);
310           break;
311         }
312 
313         ObjCARCReferenceLifetimeType = QualType();
314       }
315 
316       return ReferenceTemporary;
317     }
318 
319     SmallVector<SubobjectAdjustment, 2> Adjustments;
320     while (true) {
321       E = E->IgnoreParens();
322 
323       if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
324         if ((CE->getCastKind() == CK_DerivedToBase ||
325              CE->getCastKind() == CK_UncheckedDerivedToBase) &&
326             E->getType()->isRecordType()) {
327           E = CE->getSubExpr();
328           CXXRecordDecl *Derived
329             = cast<CXXRecordDecl>(E->getType()->getAs<RecordType>()->getDecl());
330           Adjustments.push_back(SubobjectAdjustment(CE, Derived));
331           continue;
332         }
333 
334         if (CE->getCastKind() == CK_NoOp) {
335           E = CE->getSubExpr();
336           continue;
337         }
338       } else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
339         if (!ME->isArrow() && ME->getBase()->isRValue()) {
340           assert(ME->getBase()->getType()->isRecordType());
341           if (FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
342             E = ME->getBase();
343             Adjustments.push_back(SubobjectAdjustment(Field));
344             continue;
345           }
346         }
347       }
348 
349       if (const OpaqueValueExpr *opaque = dyn_cast<OpaqueValueExpr>(E))
350         if (opaque->getType()->isRecordType())
351           return CGF.EmitOpaqueValueLValue(opaque).getAddress();
352 
353       // Nothing changed.
354       break;
355     }
356 
357     // Create a reference temporary if necessary.
358     AggValueSlot AggSlot = AggValueSlot::ignored();
359     if (CGF.hasAggregateLLVMType(E->getType()) &&
360         !E->getType()->isAnyComplexType()) {
361       ReferenceTemporary = CreateReferenceTemporary(CGF, E->getType(),
362                                                     InitializedDecl);
363       CharUnits Alignment = CGF.getContext().getTypeAlignInChars(E->getType());
364       AggValueSlot::IsDestructed_t isDestructed
365         = AggValueSlot::IsDestructed_t(InitializedDecl != 0);
366       AggSlot = AggValueSlot::forAddr(ReferenceTemporary, Alignment,
367                                       Qualifiers(), isDestructed,
368                                       AggValueSlot::DoesNotNeedGCBarriers,
369                                       AggValueSlot::IsNotAliased);
370     }
371 
372     if (InitializedDecl) {
373       // Get the destructor for the reference temporary.
374       if (const RecordType *RT = E->getType()->getAs<RecordType>()) {
375         CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RT->getDecl());
376         if (!ClassDecl->hasTrivialDestructor())
377           ReferenceTemporaryDtor = ClassDecl->getDestructor();
378       }
379     }
380 
381     RV = CGF.EmitAnyExpr(E, AggSlot);
382 
383     // Check if need to perform derived-to-base casts and/or field accesses, to
384     // get from the temporary object we created (and, potentially, for which we
385     // extended the lifetime) to the subobject we're binding the reference to.
386     if (!Adjustments.empty()) {
387       llvm::Value *Object = RV.getAggregateAddr();
388       for (unsigned I = Adjustments.size(); I != 0; --I) {
389         SubobjectAdjustment &Adjustment = Adjustments[I-1];
390         switch (Adjustment.Kind) {
391         case SubobjectAdjustment::DerivedToBaseAdjustment:
392           Object =
393               CGF.GetAddressOfBaseClass(Object,
394                                         Adjustment.DerivedToBase.DerivedClass,
395                               Adjustment.DerivedToBase.BasePath->path_begin(),
396                               Adjustment.DerivedToBase.BasePath->path_end(),
397                                         /*NullCheckValue=*/false);
398           break;
399 
400         case SubobjectAdjustment::FieldAdjustment: {
401           LValue LV =
402             CGF.EmitLValueForField(Object, Adjustment.Field, 0);
403           if (LV.isSimple()) {
404             Object = LV.getAddress();
405             break;
406           }
407 
408           // For non-simple lvalues, we actually have to create a copy of
409           // the object we're binding to.
410           QualType T = Adjustment.Field->getType().getNonReferenceType()
411                                                   .getUnqualifiedType();
412           Object = CreateReferenceTemporary(CGF, T, InitializedDecl);
413           LValue TempLV = CGF.MakeAddrLValue(Object,
414                                              Adjustment.Field->getType());
415           CGF.EmitStoreThroughLValue(CGF.EmitLoadOfLValue(LV), TempLV);
416           break;
417         }
418 
419         }
420       }
421 
422       return Object;
423     }
424   }
425 
426   if (RV.isAggregate())
427     return RV.getAggregateAddr();
428 
429   // Create a temporary variable that we can bind the reference to.
430   ReferenceTemporary = CreateReferenceTemporary(CGF, E->getType(),
431                                                 InitializedDecl);
432 
433 
434   unsigned Alignment =
435     CGF.getContext().getTypeAlignInChars(E->getType()).getQuantity();
436   if (RV.isScalar())
437     CGF.EmitStoreOfScalar(RV.getScalarVal(), ReferenceTemporary,
438                           /*Volatile=*/false, Alignment, E->getType());
439   else
440     CGF.StoreComplexToAddr(RV.getComplexVal(), ReferenceTemporary,
441                            /*Volatile=*/false);
442   return ReferenceTemporary;
443 }
444 
445 RValue
446 CodeGenFunction::EmitReferenceBindingToExpr(const Expr *E,
447                                             const NamedDecl *InitializedDecl) {
448   llvm::Value *ReferenceTemporary = 0;
449   const CXXDestructorDecl *ReferenceTemporaryDtor = 0;
450   QualType ObjCARCReferenceLifetimeType;
451   llvm::Value *Value = EmitExprForReferenceBinding(*this, E, ReferenceTemporary,
452                                                    ReferenceTemporaryDtor,
453                                                    ObjCARCReferenceLifetimeType,
454                                                    InitializedDecl);
455   if (!ReferenceTemporaryDtor && ObjCARCReferenceLifetimeType.isNull())
456     return RValue::get(Value);
457 
458   // Make sure to call the destructor for the reference temporary.
459   const VarDecl *VD = dyn_cast_or_null<VarDecl>(InitializedDecl);
460   if (VD && VD->hasGlobalStorage()) {
461     if (ReferenceTemporaryDtor) {
462       llvm::Constant *DtorFn =
463         CGM.GetAddrOfCXXDestructor(ReferenceTemporaryDtor, Dtor_Complete);
464       EmitCXXGlobalDtorRegistration(DtorFn,
465                                     cast<llvm::Constant>(ReferenceTemporary));
466     } else {
467       assert(!ObjCARCReferenceLifetimeType.isNull());
468       // Note: We intentionally do not register a global "destructor" to
469       // release the object.
470     }
471 
472     return RValue::get(Value);
473   }
474 
475   if (ReferenceTemporaryDtor)
476     PushDestructorCleanup(ReferenceTemporaryDtor, ReferenceTemporary);
477   else {
478     switch (ObjCARCReferenceLifetimeType.getObjCLifetime()) {
479     case Qualifiers::OCL_None:
480       llvm_unreachable(
481                       "Not a reference temporary that needs to be deallocated");
482     case Qualifiers::OCL_ExplicitNone:
483     case Qualifiers::OCL_Autoreleasing:
484       // Nothing to do.
485       break;
486 
487     case Qualifiers::OCL_Strong: {
488       bool precise = VD && VD->hasAttr<ObjCPreciseLifetimeAttr>();
489       CleanupKind cleanupKind = getARCCleanupKind();
490       pushDestroy(cleanupKind, ReferenceTemporary, ObjCARCReferenceLifetimeType,
491                   precise ? destroyARCStrongPrecise : destroyARCStrongImprecise,
492                   cleanupKind & EHCleanup);
493       break;
494     }
495 
496     case Qualifiers::OCL_Weak: {
497       // __weak objects always get EH cleanups; otherwise, exceptions
498       // could cause really nasty crashes instead of mere leaks.
499       pushDestroy(NormalAndEHCleanup, ReferenceTemporary,
500                   ObjCARCReferenceLifetimeType, destroyARCWeak, true);
501       break;
502     }
503     }
504   }
505 
506   return RValue::get(Value);
507 }
508 
509 
510 /// getAccessedFieldNo - Given an encoded value and a result number, return the
511 /// input field number being accessed.
512 unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
513                                              const llvm::Constant *Elts) {
514   if (isa<llvm::ConstantAggregateZero>(Elts))
515     return 0;
516 
517   return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue();
518 }
519 
520 void CodeGenFunction::EmitCheck(llvm::Value *Address, unsigned Size) {
521   if (!CatchUndefined)
522     return;
523 
524   // This needs to be to the standard address space.
525   Address = Builder.CreateBitCast(Address, Int8PtrTy);
526 
527   llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::objectsize, IntPtrTy);
528 
529   // In time, people may want to control this and use a 1 here.
530   llvm::Value *Arg = Builder.getFalse();
531   llvm::Value *C = Builder.CreateCall2(F, Address, Arg);
532   llvm::BasicBlock *Cont = createBasicBlock();
533   llvm::BasicBlock *Check = createBasicBlock();
534   llvm::Value *NegativeOne = llvm::ConstantInt::get(IntPtrTy, -1ULL);
535   Builder.CreateCondBr(Builder.CreateICmpEQ(C, NegativeOne), Cont, Check);
536 
537   EmitBlock(Check);
538   Builder.CreateCondBr(Builder.CreateICmpUGE(C,
539                                         llvm::ConstantInt::get(IntPtrTy, Size)),
540                        Cont, getTrapBB());
541   EmitBlock(Cont);
542 }
543 
544 
545 CodeGenFunction::ComplexPairTy CodeGenFunction::
546 EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV,
547                          bool isInc, bool isPre) {
548   ComplexPairTy InVal = LoadComplexFromAddr(LV.getAddress(),
549                                             LV.isVolatileQualified());
550 
551   llvm::Value *NextVal;
552   if (isa<llvm::IntegerType>(InVal.first->getType())) {
553     uint64_t AmountVal = isInc ? 1 : -1;
554     NextVal = llvm::ConstantInt::get(InVal.first->getType(), AmountVal, true);
555 
556     // Add the inc/dec to the real part.
557     NextVal = Builder.CreateAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
558   } else {
559     QualType ElemTy = E->getType()->getAs<ComplexType>()->getElementType();
560     llvm::APFloat FVal(getContext().getFloatTypeSemantics(ElemTy), 1);
561     if (!isInc)
562       FVal.changeSign();
563     NextVal = llvm::ConstantFP::get(getLLVMContext(), FVal);
564 
565     // Add the inc/dec to the real part.
566     NextVal = Builder.CreateFAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
567   }
568 
569   ComplexPairTy IncVal(NextVal, InVal.second);
570 
571   // Store the updated result through the lvalue.
572   StoreComplexToAddr(IncVal, LV.getAddress(), LV.isVolatileQualified());
573 
574   // If this is a postinc, return the value read from memory, otherwise use the
575   // updated value.
576   return isPre ? IncVal : InVal;
577 }
578 
579 
580 //===----------------------------------------------------------------------===//
581 //                         LValue Expression Emission
582 //===----------------------------------------------------------------------===//
583 
584 RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
585   if (Ty->isVoidType())
586     return RValue::get(0);
587 
588   if (const ComplexType *CTy = Ty->getAs<ComplexType>()) {
589     llvm::Type *EltTy = ConvertType(CTy->getElementType());
590     llvm::Value *U = llvm::UndefValue::get(EltTy);
591     return RValue::getComplex(std::make_pair(U, U));
592   }
593 
594   // If this is a use of an undefined aggregate type, the aggregate must have an
595   // identifiable address.  Just because the contents of the value are undefined
596   // doesn't mean that the address can't be taken and compared.
597   if (hasAggregateLLVMType(Ty)) {
598     llvm::Value *DestPtr = CreateMemTemp(Ty, "undef.agg.tmp");
599     return RValue::getAggregate(DestPtr);
600   }
601 
602   return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
603 }
604 
605 RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
606                                               const char *Name) {
607   ErrorUnsupported(E, Name);
608   return GetUndefRValue(E->getType());
609 }
610 
611 LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
612                                               const char *Name) {
613   ErrorUnsupported(E, Name);
614   llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
615   return MakeAddrLValue(llvm::UndefValue::get(Ty), E->getType());
616 }
617 
618 LValue CodeGenFunction::EmitCheckedLValue(const Expr *E) {
619   LValue LV = EmitLValue(E);
620   if (!isa<DeclRefExpr>(E) && !LV.isBitField() && LV.isSimple())
621     EmitCheck(LV.getAddress(),
622               getContext().getTypeSizeInChars(E->getType()).getQuantity());
623   return LV;
624 }
625 
626 /// EmitLValue - Emit code to compute a designator that specifies the location
627 /// of the expression.
628 ///
629 /// This can return one of two things: a simple address or a bitfield reference.
630 /// In either case, the LLVM Value* in the LValue structure is guaranteed to be
631 /// an LLVM pointer type.
632 ///
633 /// If this returns a bitfield reference, nothing about the pointee type of the
634 /// LLVM value is known: For example, it may not be a pointer to an integer.
635 ///
636 /// If this returns a normal address, and if the lvalue's C type is fixed size,
637 /// this method guarantees that the returned pointer type will point to an LLVM
638 /// type of the same size of the lvalue's type.  If the lvalue has a variable
639 /// length type, this is not possible.
640 ///
641 LValue CodeGenFunction::EmitLValue(const Expr *E) {
642   switch (E->getStmtClass()) {
643   default: return EmitUnsupportedLValue(E, "l-value expression");
644 
645   case Expr::ObjCPropertyRefExprClass:
646     llvm_unreachable("cannot emit a property reference directly");
647 
648   case Expr::ObjCSelectorExprClass:
649   return EmitObjCSelectorLValue(cast<ObjCSelectorExpr>(E));
650   case Expr::ObjCIsaExprClass:
651     return EmitObjCIsaExpr(cast<ObjCIsaExpr>(E));
652   case Expr::BinaryOperatorClass:
653     return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
654   case Expr::CompoundAssignOperatorClass:
655     if (!E->getType()->isAnyComplexType())
656       return EmitCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
657     return EmitComplexCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
658   case Expr::CallExprClass:
659   case Expr::CXXMemberCallExprClass:
660   case Expr::CXXOperatorCallExprClass:
661     return EmitCallExprLValue(cast<CallExpr>(E));
662   case Expr::VAArgExprClass:
663     return EmitVAArgExprLValue(cast<VAArgExpr>(E));
664   case Expr::DeclRefExprClass:
665     return EmitDeclRefLValue(cast<DeclRefExpr>(E));
666   case Expr::ParenExprClass:
667     return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
668   case Expr::GenericSelectionExprClass:
669     return EmitLValue(cast<GenericSelectionExpr>(E)->getResultExpr());
670   case Expr::PredefinedExprClass:
671     return EmitPredefinedLValue(cast<PredefinedExpr>(E));
672   case Expr::StringLiteralClass:
673     return EmitStringLiteralLValue(cast<StringLiteral>(E));
674   case Expr::ObjCEncodeExprClass:
675     return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
676   case Expr::PseudoObjectExprClass:
677     return EmitPseudoObjectLValue(cast<PseudoObjectExpr>(E));
678   case Expr::InitListExprClass:
679     assert(cast<InitListExpr>(E)->getNumInits() == 1 &&
680            "Only single-element init list can be lvalue.");
681     return EmitLValue(cast<InitListExpr>(E)->getInit(0));
682 
683   case Expr::BlockDeclRefExprClass:
684     return EmitBlockDeclRefLValue(cast<BlockDeclRefExpr>(E));
685 
686   case Expr::CXXTemporaryObjectExprClass:
687   case Expr::CXXConstructExprClass:
688     return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
689   case Expr::CXXBindTemporaryExprClass:
690     return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
691 
692   case Expr::ExprWithCleanupsClass: {
693     const ExprWithCleanups *cleanups = cast<ExprWithCleanups>(E);
694     enterFullExpression(cleanups);
695     RunCleanupsScope Scope(*this);
696     return EmitLValue(cleanups->getSubExpr());
697   }
698 
699   case Expr::CXXScalarValueInitExprClass:
700     return EmitNullInitializationLValue(cast<CXXScalarValueInitExpr>(E));
701   case Expr::CXXDefaultArgExprClass:
702     return EmitLValue(cast<CXXDefaultArgExpr>(E)->getExpr());
703   case Expr::CXXTypeidExprClass:
704     return EmitCXXTypeidLValue(cast<CXXTypeidExpr>(E));
705 
706   case Expr::ObjCMessageExprClass:
707     return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
708   case Expr::ObjCIvarRefExprClass:
709     return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
710   case Expr::StmtExprClass:
711     return EmitStmtExprLValue(cast<StmtExpr>(E));
712   case Expr::UnaryOperatorClass:
713     return EmitUnaryOpLValue(cast<UnaryOperator>(E));
714   case Expr::ArraySubscriptExprClass:
715     return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
716   case Expr::ExtVectorElementExprClass:
717     return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
718   case Expr::MemberExprClass:
719     return EmitMemberExpr(cast<MemberExpr>(E));
720   case Expr::CompoundLiteralExprClass:
721     return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
722   case Expr::ConditionalOperatorClass:
723     return EmitConditionalOperatorLValue(cast<ConditionalOperator>(E));
724   case Expr::BinaryConditionalOperatorClass:
725     return EmitConditionalOperatorLValue(cast<BinaryConditionalOperator>(E));
726   case Expr::ChooseExprClass:
727     return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
728   case Expr::OpaqueValueExprClass:
729     return EmitOpaqueValueLValue(cast<OpaqueValueExpr>(E));
730   case Expr::SubstNonTypeTemplateParmExprClass:
731     return EmitLValue(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement());
732   case Expr::ImplicitCastExprClass:
733   case Expr::CStyleCastExprClass:
734   case Expr::CXXFunctionalCastExprClass:
735   case Expr::CXXStaticCastExprClass:
736   case Expr::CXXDynamicCastExprClass:
737   case Expr::CXXReinterpretCastExprClass:
738   case Expr::CXXConstCastExprClass:
739   case Expr::ObjCBridgedCastExprClass:
740     return EmitCastLValue(cast<CastExpr>(E));
741 
742   case Expr::MaterializeTemporaryExprClass:
743     return EmitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(E));
744   }
745 }
746 
747 llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue) {
748   return EmitLoadOfScalar(lvalue.getAddress(), lvalue.isVolatile(),
749                           lvalue.getAlignment().getQuantity(),
750                           lvalue.getType(), lvalue.getTBAAInfo());
751 }
752 
753 llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
754                                               unsigned Alignment, QualType Ty,
755                                               llvm::MDNode *TBAAInfo) {
756   llvm::LoadInst *Load = Builder.CreateLoad(Addr);
757   if (Volatile)
758     Load->setVolatile(true);
759   if (Alignment)
760     Load->setAlignment(Alignment);
761   if (TBAAInfo)
762     CGM.DecorateInstruction(Load, TBAAInfo);
763   // If this is an atomic type, all normal reads must be atomic
764   if (Ty->isAtomicType())
765     Load->setAtomic(llvm::SequentiallyConsistent);
766 
767   return EmitFromMemory(Load, Ty);
768 }
769 
770 static bool isBooleanUnderlyingType(QualType Ty) {
771   if (const EnumType *ET = dyn_cast<EnumType>(Ty))
772     return ET->getDecl()->getIntegerType()->isBooleanType();
773   return false;
774 }
775 
776 llvm::Value *CodeGenFunction::EmitToMemory(llvm::Value *Value, QualType Ty) {
777   // Bool has a different representation in memory than in registers.
778   if (Ty->isBooleanType() || isBooleanUnderlyingType(Ty)) {
779     // This should really always be an i1, but sometimes it's already
780     // an i8, and it's awkward to track those cases down.
781     if (Value->getType()->isIntegerTy(1))
782       return Builder.CreateZExt(Value, Builder.getInt8Ty(), "frombool");
783     assert(Value->getType()->isIntegerTy(8) && "value rep of bool not i1/i8");
784   }
785 
786   return Value;
787 }
788 
789 llvm::Value *CodeGenFunction::EmitFromMemory(llvm::Value *Value, QualType Ty) {
790   // Bool has a different representation in memory than in registers.
791   if (Ty->isBooleanType() || isBooleanUnderlyingType(Ty)) {
792     assert(Value->getType()->isIntegerTy(8) && "memory rep of bool not i8");
793     return Builder.CreateTrunc(Value, Builder.getInt1Ty(), "tobool");
794   }
795 
796   return Value;
797 }
798 
799 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
800                                         bool Volatile, unsigned Alignment,
801                                         QualType Ty,
802                                         llvm::MDNode *TBAAInfo,
803                                         bool isInit) {
804   Value = EmitToMemory(Value, Ty);
805 
806   llvm::StoreInst *Store = Builder.CreateStore(Value, Addr, Volatile);
807   if (Alignment)
808     Store->setAlignment(Alignment);
809   if (TBAAInfo)
810     CGM.DecorateInstruction(Store, TBAAInfo);
811   if (!isInit && Ty->isAtomicType())
812     Store->setAtomic(llvm::SequentiallyConsistent);
813 }
814 
815 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *value, LValue lvalue,
816     bool isInit) {
817   EmitStoreOfScalar(value, lvalue.getAddress(), lvalue.isVolatile(),
818                     lvalue.getAlignment().getQuantity(), lvalue.getType(),
819                     lvalue.getTBAAInfo(), isInit);
820 }
821 
822 /// EmitLoadOfLValue - Given an expression that represents a value lvalue, this
823 /// method emits the address of the lvalue, then loads the result as an rvalue,
824 /// returning the rvalue.
825 RValue CodeGenFunction::EmitLoadOfLValue(LValue LV) {
826   if (LV.isObjCWeak()) {
827     // load of a __weak object.
828     llvm::Value *AddrWeakObj = LV.getAddress();
829     return RValue::get(CGM.getObjCRuntime().EmitObjCWeakRead(*this,
830                                                              AddrWeakObj));
831   }
832   if (LV.getQuals().getObjCLifetime() == Qualifiers::OCL_Weak)
833     return RValue::get(EmitARCLoadWeak(LV.getAddress()));
834 
835   if (LV.isSimple()) {
836     assert(!LV.getType()->isFunctionType());
837 
838     // Everything needs a load.
839     return RValue::get(EmitLoadOfScalar(LV));
840   }
841 
842   if (LV.isVectorElt()) {
843     llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(),
844                                           LV.isVolatileQualified());
845     return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(),
846                                                     "vecext"));
847   }
848 
849   // If this is a reference to a subset of the elements of a vector, either
850   // shuffle the input or extract/insert them as appropriate.
851   if (LV.isExtVectorElt())
852     return EmitLoadOfExtVectorElementLValue(LV);
853 
854   assert(LV.isBitField() && "Unknown LValue type!");
855   return EmitLoadOfBitfieldLValue(LV);
856 }
857 
858 RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV) {
859   const CGBitFieldInfo &Info = LV.getBitFieldInfo();
860 
861   // Get the output type.
862   llvm::Type *ResLTy = ConvertType(LV.getType());
863   unsigned ResSizeInBits = CGM.getTargetData().getTypeSizeInBits(ResLTy);
864 
865   // Compute the result as an OR of all of the individual component accesses.
866   llvm::Value *Res = 0;
867   for (unsigned i = 0, e = Info.getNumComponents(); i != e; ++i) {
868     const CGBitFieldInfo::AccessInfo &AI = Info.getComponent(i);
869 
870     // Get the field pointer.
871     llvm::Value *Ptr = LV.getBitFieldBaseAddr();
872 
873     // Only offset by the field index if used, so that incoming values are not
874     // required to be structures.
875     if (AI.FieldIndex)
876       Ptr = Builder.CreateStructGEP(Ptr, AI.FieldIndex, "bf.field");
877 
878     // Offset by the byte offset, if used.
879     if (!AI.FieldByteOffset.isZero()) {
880       Ptr = EmitCastToVoidPtr(Ptr);
881       Ptr = Builder.CreateConstGEP1_32(Ptr, AI.FieldByteOffset.getQuantity(),
882                                        "bf.field.offs");
883     }
884 
885     // Cast to the access type.
886     llvm::Type *PTy = llvm::Type::getIntNPtrTy(getLLVMContext(),
887                                                      AI.AccessWidth,
888                        CGM.getContext().getTargetAddressSpace(LV.getType()));
889     Ptr = Builder.CreateBitCast(Ptr, PTy);
890 
891     // Perform the load.
892     llvm::LoadInst *Load = Builder.CreateLoad(Ptr, LV.isVolatileQualified());
893     if (!AI.AccessAlignment.isZero())
894       Load->setAlignment(AI.AccessAlignment.getQuantity());
895 
896     // Shift out unused low bits and mask out unused high bits.
897     llvm::Value *Val = Load;
898     if (AI.FieldBitStart)
899       Val = Builder.CreateLShr(Load, AI.FieldBitStart);
900     Val = Builder.CreateAnd(Val, llvm::APInt::getLowBitsSet(AI.AccessWidth,
901                                                             AI.TargetBitWidth),
902                             "bf.clear");
903 
904     // Extend or truncate to the target size.
905     if (AI.AccessWidth < ResSizeInBits)
906       Val = Builder.CreateZExt(Val, ResLTy);
907     else if (AI.AccessWidth > ResSizeInBits)
908       Val = Builder.CreateTrunc(Val, ResLTy);
909 
910     // Shift into place, and OR into the result.
911     if (AI.TargetBitOffset)
912       Val = Builder.CreateShl(Val, AI.TargetBitOffset);
913     Res = Res ? Builder.CreateOr(Res, Val) : Val;
914   }
915 
916   // If the bit-field is signed, perform the sign-extension.
917   //
918   // FIXME: This can easily be folded into the load of the high bits, which
919   // could also eliminate the mask of high bits in some situations.
920   if (Info.isSigned()) {
921     unsigned ExtraBits = ResSizeInBits - Info.getSize();
922     if (ExtraBits)
923       Res = Builder.CreateAShr(Builder.CreateShl(Res, ExtraBits),
924                                ExtraBits, "bf.val.sext");
925   }
926 
927   return RValue::get(Res);
928 }
929 
930 // If this is a reference to a subset of the elements of a vector, create an
931 // appropriate shufflevector.
932 RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV) {
933   llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(),
934                                         LV.isVolatileQualified());
935 
936   const llvm::Constant *Elts = LV.getExtVectorElts();
937 
938   // If the result of the expression is a non-vector type, we must be extracting
939   // a single element.  Just codegen as an extractelement.
940   const VectorType *ExprVT = LV.getType()->getAs<VectorType>();
941   if (!ExprVT) {
942     unsigned InIdx = getAccessedFieldNo(0, Elts);
943     llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx);
944     return RValue::get(Builder.CreateExtractElement(Vec, Elt));
945   }
946 
947   // Always use shuffle vector to try to retain the original program structure
948   unsigned NumResultElts = ExprVT->getNumElements();
949 
950   SmallVector<llvm::Constant*, 4> Mask;
951   for (unsigned i = 0; i != NumResultElts; ++i)
952     Mask.push_back(Builder.getInt32(getAccessedFieldNo(i, Elts)));
953 
954   llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
955   Vec = Builder.CreateShuffleVector(Vec, llvm::UndefValue::get(Vec->getType()),
956                                     MaskV);
957   return RValue::get(Vec);
958 }
959 
960 
961 
962 /// EmitStoreThroughLValue - Store the specified rvalue into the specified
963 /// lvalue, where both are guaranteed to the have the same type, and that type
964 /// is 'Ty'.
965 void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit) {
966   if (!Dst.isSimple()) {
967     if (Dst.isVectorElt()) {
968       // Read/modify/write the vector, inserting the new element.
969       llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(),
970                                             Dst.isVolatileQualified());
971       Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
972                                         Dst.getVectorIdx(), "vecins");
973       Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified());
974       return;
975     }
976 
977     // If this is an update of extended vector elements, insert them as
978     // appropriate.
979     if (Dst.isExtVectorElt())
980       return EmitStoreThroughExtVectorComponentLValue(Src, Dst);
981 
982     assert(Dst.isBitField() && "Unknown LValue type");
983     return EmitStoreThroughBitfieldLValue(Src, Dst);
984   }
985 
986   // There's special magic for assigning into an ARC-qualified l-value.
987   if (Qualifiers::ObjCLifetime Lifetime = Dst.getQuals().getObjCLifetime()) {
988     switch (Lifetime) {
989     case Qualifiers::OCL_None:
990       llvm_unreachable("present but none");
991 
992     case Qualifiers::OCL_ExplicitNone:
993       // nothing special
994       break;
995 
996     case Qualifiers::OCL_Strong:
997       EmitARCStoreStrong(Dst, Src.getScalarVal(), /*ignore*/ true);
998       return;
999 
1000     case Qualifiers::OCL_Weak:
1001       EmitARCStoreWeak(Dst.getAddress(), Src.getScalarVal(), /*ignore*/ true);
1002       return;
1003 
1004     case Qualifiers::OCL_Autoreleasing:
1005       Src = RValue::get(EmitObjCExtendObjectLifetime(Dst.getType(),
1006                                                      Src.getScalarVal()));
1007       // fall into the normal path
1008       break;
1009     }
1010   }
1011 
1012   if (Dst.isObjCWeak() && !Dst.isNonGC()) {
1013     // load of a __weak object.
1014     llvm::Value *LvalueDst = Dst.getAddress();
1015     llvm::Value *src = Src.getScalarVal();
1016      CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
1017     return;
1018   }
1019 
1020   if (Dst.isObjCStrong() && !Dst.isNonGC()) {
1021     // load of a __strong object.
1022     llvm::Value *LvalueDst = Dst.getAddress();
1023     llvm::Value *src = Src.getScalarVal();
1024     if (Dst.isObjCIvar()) {
1025       assert(Dst.getBaseIvarExp() && "BaseIvarExp is NULL");
1026       llvm::Type *ResultType = ConvertType(getContext().LongTy);
1027       llvm::Value *RHS = EmitScalarExpr(Dst.getBaseIvarExp());
1028       llvm::Value *dst = RHS;
1029       RHS = Builder.CreatePtrToInt(RHS, ResultType, "sub.ptr.rhs.cast");
1030       llvm::Value *LHS =
1031         Builder.CreatePtrToInt(LvalueDst, ResultType, "sub.ptr.lhs.cast");
1032       llvm::Value *BytesBetween = Builder.CreateSub(LHS, RHS, "ivar.offset");
1033       CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, dst,
1034                                               BytesBetween);
1035     } else if (Dst.isGlobalObjCRef()) {
1036       CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst,
1037                                                 Dst.isThreadLocalRef());
1038     }
1039     else
1040       CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
1041     return;
1042   }
1043 
1044   assert(Src.isScalar() && "Can't emit an agg store with this method");
1045   EmitStoreOfScalar(Src.getScalarVal(), Dst, isInit);
1046 }
1047 
1048 void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
1049                                                      llvm::Value **Result) {
1050   const CGBitFieldInfo &Info = Dst.getBitFieldInfo();
1051 
1052   // Get the output type.
1053   llvm::Type *ResLTy = ConvertTypeForMem(Dst.getType());
1054   unsigned ResSizeInBits = CGM.getTargetData().getTypeSizeInBits(ResLTy);
1055 
1056   // Get the source value, truncated to the width of the bit-field.
1057   llvm::Value *SrcVal = Src.getScalarVal();
1058 
1059   if (Dst.getType()->isBooleanType())
1060     SrcVal = Builder.CreateIntCast(SrcVal, ResLTy, /*IsSigned=*/false);
1061 
1062   SrcVal = Builder.CreateAnd(SrcVal, llvm::APInt::getLowBitsSet(ResSizeInBits,
1063                                                                 Info.getSize()),
1064                              "bf.value");
1065 
1066   // Return the new value of the bit-field, if requested.
1067   if (Result) {
1068     // Cast back to the proper type for result.
1069     llvm::Type *SrcTy = Src.getScalarVal()->getType();
1070     llvm::Value *ReloadVal = Builder.CreateIntCast(SrcVal, SrcTy, false,
1071                                                    "bf.reload.val");
1072 
1073     // Sign extend if necessary.
1074     if (Info.isSigned()) {
1075       unsigned ExtraBits = ResSizeInBits - Info.getSize();
1076       if (ExtraBits)
1077         ReloadVal = Builder.CreateAShr(Builder.CreateShl(ReloadVal, ExtraBits),
1078                                        ExtraBits, "bf.reload.sext");
1079     }
1080 
1081     *Result = ReloadVal;
1082   }
1083 
1084   // Iterate over the components, writing each piece to memory.
1085   for (unsigned i = 0, e = Info.getNumComponents(); i != e; ++i) {
1086     const CGBitFieldInfo::AccessInfo &AI = Info.getComponent(i);
1087 
1088     // Get the field pointer.
1089     llvm::Value *Ptr = Dst.getBitFieldBaseAddr();
1090     unsigned addressSpace =
1091       cast<llvm::PointerType>(Ptr->getType())->getAddressSpace();
1092 
1093     // Only offset by the field index if used, so that incoming values are not
1094     // required to be structures.
1095     if (AI.FieldIndex)
1096       Ptr = Builder.CreateStructGEP(Ptr, AI.FieldIndex, "bf.field");
1097 
1098     // Offset by the byte offset, if used.
1099     if (!AI.FieldByteOffset.isZero()) {
1100       Ptr = EmitCastToVoidPtr(Ptr);
1101       Ptr = Builder.CreateConstGEP1_32(Ptr, AI.FieldByteOffset.getQuantity(),
1102                                        "bf.field.offs");
1103     }
1104 
1105     // Cast to the access type.
1106     llvm::Type *AccessLTy =
1107       llvm::Type::getIntNTy(getLLVMContext(), AI.AccessWidth);
1108 
1109     llvm::Type *PTy = AccessLTy->getPointerTo(addressSpace);
1110     Ptr = Builder.CreateBitCast(Ptr, PTy);
1111 
1112     // Extract the piece of the bit-field value to write in this access, limited
1113     // to the values that are part of this access.
1114     llvm::Value *Val = SrcVal;
1115     if (AI.TargetBitOffset)
1116       Val = Builder.CreateLShr(Val, AI.TargetBitOffset);
1117     Val = Builder.CreateAnd(Val, llvm::APInt::getLowBitsSet(ResSizeInBits,
1118                                                             AI.TargetBitWidth));
1119 
1120     // Extend or truncate to the access size.
1121     if (ResSizeInBits < AI.AccessWidth)
1122       Val = Builder.CreateZExt(Val, AccessLTy);
1123     else if (ResSizeInBits > AI.AccessWidth)
1124       Val = Builder.CreateTrunc(Val, AccessLTy);
1125 
1126     // Shift into the position in memory.
1127     if (AI.FieldBitStart)
1128       Val = Builder.CreateShl(Val, AI.FieldBitStart);
1129 
1130     // If necessary, load and OR in bits that are outside of the bit-field.
1131     if (AI.TargetBitWidth != AI.AccessWidth) {
1132       llvm::LoadInst *Load = Builder.CreateLoad(Ptr, Dst.isVolatileQualified());
1133       if (!AI.AccessAlignment.isZero())
1134         Load->setAlignment(AI.AccessAlignment.getQuantity());
1135 
1136       // Compute the mask for zeroing the bits that are part of the bit-field.
1137       llvm::APInt InvMask =
1138         ~llvm::APInt::getBitsSet(AI.AccessWidth, AI.FieldBitStart,
1139                                  AI.FieldBitStart + AI.TargetBitWidth);
1140 
1141       // Apply the mask and OR in to the value to write.
1142       Val = Builder.CreateOr(Builder.CreateAnd(Load, InvMask), Val);
1143     }
1144 
1145     // Write the value.
1146     llvm::StoreInst *Store = Builder.CreateStore(Val, Ptr,
1147                                                  Dst.isVolatileQualified());
1148     if (!AI.AccessAlignment.isZero())
1149       Store->setAlignment(AI.AccessAlignment.getQuantity());
1150   }
1151 }
1152 
1153 void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
1154                                                                LValue Dst) {
1155   // This access turns into a read/modify/write of the vector.  Load the input
1156   // value now.
1157   llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(),
1158                                         Dst.isVolatileQualified());
1159   const llvm::Constant *Elts = Dst.getExtVectorElts();
1160 
1161   llvm::Value *SrcVal = Src.getScalarVal();
1162 
1163   if (const VectorType *VTy = Dst.getType()->getAs<VectorType>()) {
1164     unsigned NumSrcElts = VTy->getNumElements();
1165     unsigned NumDstElts =
1166        cast<llvm::VectorType>(Vec->getType())->getNumElements();
1167     if (NumDstElts == NumSrcElts) {
1168       // Use shuffle vector is the src and destination are the same number of
1169       // elements and restore the vector mask since it is on the side it will be
1170       // stored.
1171       SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
1172       for (unsigned i = 0; i != NumSrcElts; ++i)
1173         Mask[getAccessedFieldNo(i, Elts)] = Builder.getInt32(i);
1174 
1175       llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
1176       Vec = Builder.CreateShuffleVector(SrcVal,
1177                                         llvm::UndefValue::get(Vec->getType()),
1178                                         MaskV);
1179     } else if (NumDstElts > NumSrcElts) {
1180       // Extended the source vector to the same length and then shuffle it
1181       // into the destination.
1182       // FIXME: since we're shuffling with undef, can we just use the indices
1183       //        into that?  This could be simpler.
1184       SmallVector<llvm::Constant*, 4> ExtMask;
1185       unsigned i;
1186       for (i = 0; i != NumSrcElts; ++i)
1187         ExtMask.push_back(Builder.getInt32(i));
1188       for (; i != NumDstElts; ++i)
1189         ExtMask.push_back(llvm::UndefValue::get(Int32Ty));
1190       llvm::Value *ExtMaskV = llvm::ConstantVector::get(ExtMask);
1191       llvm::Value *ExtSrcVal =
1192         Builder.CreateShuffleVector(SrcVal,
1193                                     llvm::UndefValue::get(SrcVal->getType()),
1194                                     ExtMaskV);
1195       // build identity
1196       SmallVector<llvm::Constant*, 4> Mask;
1197       for (unsigned i = 0; i != NumDstElts; ++i)
1198         Mask.push_back(Builder.getInt32(i));
1199 
1200       // modify when what gets shuffled in
1201       for (unsigned i = 0; i != NumSrcElts; ++i)
1202         Mask[getAccessedFieldNo(i, Elts)] = Builder.getInt32(i+NumDstElts);
1203       llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
1204       Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV);
1205     } else {
1206       // We should never shorten the vector
1207       llvm_unreachable("unexpected shorten vector length");
1208     }
1209   } else {
1210     // If the Src is a scalar (not a vector) it must be updating one element.
1211     unsigned InIdx = getAccessedFieldNo(0, Elts);
1212     llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx);
1213     Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt);
1214   }
1215 
1216   Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified());
1217 }
1218 
1219 // setObjCGCLValueClass - sets class of he lvalue for the purpose of
1220 // generating write-barries API. It is currently a global, ivar,
1221 // or neither.
1222 static void setObjCGCLValueClass(const ASTContext &Ctx, const Expr *E,
1223                                  LValue &LV,
1224                                  bool IsMemberAccess=false) {
1225   if (Ctx.getLangOptions().getGC() == LangOptions::NonGC)
1226     return;
1227 
1228   if (isa<ObjCIvarRefExpr>(E)) {
1229     QualType ExpTy = E->getType();
1230     if (IsMemberAccess && ExpTy->isPointerType()) {
1231       // If ivar is a structure pointer, assigning to field of
1232       // this struct follows gcc's behavior and makes it a non-ivar
1233       // writer-barrier conservatively.
1234       ExpTy = ExpTy->getAs<PointerType>()->getPointeeType();
1235       if (ExpTy->isRecordType()) {
1236         LV.setObjCIvar(false);
1237         return;
1238       }
1239     }
1240     LV.setObjCIvar(true);
1241     ObjCIvarRefExpr *Exp = cast<ObjCIvarRefExpr>(const_cast<Expr*>(E));
1242     LV.setBaseIvarExp(Exp->getBase());
1243     LV.setObjCArray(E->getType()->isArrayType());
1244     return;
1245   }
1246 
1247   if (const DeclRefExpr *Exp = dyn_cast<DeclRefExpr>(E)) {
1248     if (const VarDecl *VD = dyn_cast<VarDecl>(Exp->getDecl())) {
1249       if (VD->hasGlobalStorage()) {
1250         LV.setGlobalObjCRef(true);
1251         LV.setThreadLocalRef(VD->isThreadSpecified());
1252       }
1253     }
1254     LV.setObjCArray(E->getType()->isArrayType());
1255     return;
1256   }
1257 
1258   if (const UnaryOperator *Exp = dyn_cast<UnaryOperator>(E)) {
1259     setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
1260     return;
1261   }
1262 
1263   if (const ParenExpr *Exp = dyn_cast<ParenExpr>(E)) {
1264     setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
1265     if (LV.isObjCIvar()) {
1266       // If cast is to a structure pointer, follow gcc's behavior and make it
1267       // a non-ivar write-barrier.
1268       QualType ExpTy = E->getType();
1269       if (ExpTy->isPointerType())
1270         ExpTy = ExpTy->getAs<PointerType>()->getPointeeType();
1271       if (ExpTy->isRecordType())
1272         LV.setObjCIvar(false);
1273     }
1274     return;
1275   }
1276 
1277   if (const GenericSelectionExpr *Exp = dyn_cast<GenericSelectionExpr>(E)) {
1278     setObjCGCLValueClass(Ctx, Exp->getResultExpr(), LV);
1279     return;
1280   }
1281 
1282   if (const ImplicitCastExpr *Exp = dyn_cast<ImplicitCastExpr>(E)) {
1283     setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
1284     return;
1285   }
1286 
1287   if (const CStyleCastExpr *Exp = dyn_cast<CStyleCastExpr>(E)) {
1288     setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
1289     return;
1290   }
1291 
1292   if (const ObjCBridgedCastExpr *Exp = dyn_cast<ObjCBridgedCastExpr>(E)) {
1293     setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
1294     return;
1295   }
1296 
1297   if (const ArraySubscriptExpr *Exp = dyn_cast<ArraySubscriptExpr>(E)) {
1298     setObjCGCLValueClass(Ctx, Exp->getBase(), LV);
1299     if (LV.isObjCIvar() && !LV.isObjCArray())
1300       // Using array syntax to assigning to what an ivar points to is not
1301       // same as assigning to the ivar itself. {id *Names;} Names[i] = 0;
1302       LV.setObjCIvar(false);
1303     else if (LV.isGlobalObjCRef() && !LV.isObjCArray())
1304       // Using array syntax to assigning to what global points to is not
1305       // same as assigning to the global itself. {id *G;} G[i] = 0;
1306       LV.setGlobalObjCRef(false);
1307     return;
1308   }
1309 
1310   if (const MemberExpr *Exp = dyn_cast<MemberExpr>(E)) {
1311     setObjCGCLValueClass(Ctx, Exp->getBase(), LV, true);
1312     // We don't know if member is an 'ivar', but this flag is looked at
1313     // only in the context of LV.isObjCIvar().
1314     LV.setObjCArray(E->getType()->isArrayType());
1315     return;
1316   }
1317 }
1318 
1319 static llvm::Value *
1320 EmitBitCastOfLValueToProperType(CodeGenFunction &CGF,
1321                                 llvm::Value *V, llvm::Type *IRType,
1322                                 StringRef Name = StringRef()) {
1323   unsigned AS = cast<llvm::PointerType>(V->getType())->getAddressSpace();
1324   return CGF.Builder.CreateBitCast(V, IRType->getPointerTo(AS), Name);
1325 }
1326 
1327 static LValue EmitGlobalVarDeclLValue(CodeGenFunction &CGF,
1328                                       const Expr *E, const VarDecl *VD) {
1329   assert((VD->hasExternalStorage() || VD->isFileVarDecl()) &&
1330          "Var decl must have external storage or be a file var decl!");
1331 
1332   llvm::Value *V = CGF.CGM.GetAddrOfGlobalVar(VD);
1333   llvm::Type *RealVarTy = CGF.getTypes().ConvertTypeForMem(VD->getType());
1334   V = EmitBitCastOfLValueToProperType(CGF, V, RealVarTy);
1335   CharUnits Alignment = CGF.getContext().getDeclAlign(VD);
1336   QualType T = E->getType();
1337   LValue LV;
1338   if (VD->getType()->isReferenceType()) {
1339     llvm::LoadInst *LI = CGF.Builder.CreateLoad(V);
1340     LI->setAlignment(Alignment.getQuantity());
1341     V = LI;
1342     LV = CGF.MakeNaturalAlignAddrLValue(V, T);
1343   } else {
1344     LV = CGF.MakeAddrLValue(V, E->getType(), Alignment);
1345   }
1346   setObjCGCLValueClass(CGF.getContext(), E, LV);
1347   return LV;
1348 }
1349 
1350 static LValue EmitFunctionDeclLValue(CodeGenFunction &CGF,
1351                                      const Expr *E, const FunctionDecl *FD) {
1352   llvm::Value *V = CGF.CGM.GetAddrOfFunction(FD);
1353   if (!FD->hasPrototype()) {
1354     if (const FunctionProtoType *Proto =
1355             FD->getType()->getAs<FunctionProtoType>()) {
1356       // Ugly case: for a K&R-style definition, the type of the definition
1357       // isn't the same as the type of a use.  Correct for this with a
1358       // bitcast.
1359       QualType NoProtoType =
1360           CGF.getContext().getFunctionNoProtoType(Proto->getResultType());
1361       NoProtoType = CGF.getContext().getPointerType(NoProtoType);
1362       V = CGF.Builder.CreateBitCast(V, CGF.ConvertType(NoProtoType));
1363     }
1364   }
1365   CharUnits Alignment = CGF.getContext().getDeclAlign(FD);
1366   return CGF.MakeAddrLValue(V, E->getType(), Alignment);
1367 }
1368 
1369 LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
1370   const NamedDecl *ND = E->getDecl();
1371   CharUnits Alignment = getContext().getDeclAlign(ND);
1372   QualType T = E->getType();
1373 
1374   // FIXME: We should be able to assert this for FunctionDecls as well!
1375   // FIXME: We should be able to assert this for all DeclRefExprs, not just
1376   // those with a valid source location.
1377   assert((ND->isUsed(false) || !isa<VarDecl>(ND) ||
1378           !E->getLocation().isValid()) &&
1379          "Should not use decl without marking it used!");
1380 
1381   if (ND->hasAttr<WeakRefAttr>()) {
1382     const ValueDecl *VD = cast<ValueDecl>(ND);
1383     llvm::Constant *Aliasee = CGM.GetWeakRefReference(VD);
1384     return MakeAddrLValue(Aliasee, E->getType(), Alignment);
1385   }
1386 
1387   if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
1388 
1389     // Check if this is a global variable.
1390     if (VD->hasExternalStorage() || VD->isFileVarDecl())
1391       return EmitGlobalVarDeclLValue(*this, E, VD);
1392 
1393     bool NonGCable = VD->hasLocalStorage() &&
1394                      !VD->getType()->isReferenceType() &&
1395                      !VD->hasAttr<BlocksAttr>();
1396 
1397     llvm::Value *V = LocalDeclMap[VD];
1398     if (!V && VD->isStaticLocal())
1399       V = CGM.getStaticLocalDeclAddress(VD);
1400     assert(V && "DeclRefExpr not entered in LocalDeclMap?");
1401 
1402     if (VD->hasAttr<BlocksAttr>())
1403       V = BuildBlockByrefAddress(V, VD);
1404 
1405     LValue LV;
1406     if (VD->getType()->isReferenceType()) {
1407       llvm::LoadInst *LI = Builder.CreateLoad(V);
1408       LI->setAlignment(Alignment.getQuantity());
1409       V = LI;
1410       LV = MakeNaturalAlignAddrLValue(V, T);
1411     } else {
1412       LV = MakeAddrLValue(V, T, Alignment);
1413     }
1414 
1415     if (NonGCable) {
1416       LV.getQuals().removeObjCGCAttr();
1417       LV.setNonGC(true);
1418     }
1419     setObjCGCLValueClass(getContext(), E, LV);
1420     return LV;
1421   }
1422 
1423   if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(ND))
1424     return EmitFunctionDeclLValue(*this, E, fn);
1425 
1426   llvm_unreachable("Unhandled DeclRefExpr");
1427 }
1428 
1429 LValue CodeGenFunction::EmitBlockDeclRefLValue(const BlockDeclRefExpr *E) {
1430   CharUnits Alignment = getContext().getDeclAlign(E->getDecl());
1431   return MakeAddrLValue(GetAddrOfBlockDecl(E), E->getType(), Alignment);
1432 }
1433 
1434 LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
1435   // __extension__ doesn't affect lvalue-ness.
1436   if (E->getOpcode() == UO_Extension)
1437     return EmitLValue(E->getSubExpr());
1438 
1439   QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
1440   switch (E->getOpcode()) {
1441   default: llvm_unreachable("Unknown unary operator lvalue!");
1442   case UO_Deref: {
1443     QualType T = E->getSubExpr()->getType()->getPointeeType();
1444     assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
1445 
1446     LValue LV = MakeNaturalAlignAddrLValue(EmitScalarExpr(E->getSubExpr()), T);
1447     LV.getQuals().setAddressSpace(ExprTy.getAddressSpace());
1448 
1449     // We should not generate __weak write barrier on indirect reference
1450     // of a pointer to object; as in void foo (__weak id *param); *param = 0;
1451     // But, we continue to generate __strong write barrier on indirect write
1452     // into a pointer to object.
1453     if (getContext().getLangOptions().ObjC1 &&
1454         getContext().getLangOptions().getGC() != LangOptions::NonGC &&
1455         LV.isObjCWeak())
1456       LV.setNonGC(!E->isOBJCGCCandidate(getContext()));
1457     return LV;
1458   }
1459   case UO_Real:
1460   case UO_Imag: {
1461     LValue LV = EmitLValue(E->getSubExpr());
1462     assert(LV.isSimple() && "real/imag on non-ordinary l-value");
1463     llvm::Value *Addr = LV.getAddress();
1464 
1465     // real and imag are valid on scalars.  This is a faster way of
1466     // testing that.
1467     if (!cast<llvm::PointerType>(Addr->getType())
1468            ->getElementType()->isStructTy()) {
1469       assert(E->getSubExpr()->getType()->isArithmeticType());
1470       return LV;
1471     }
1472 
1473     assert(E->getSubExpr()->getType()->isAnyComplexType());
1474 
1475     unsigned Idx = E->getOpcode() == UO_Imag;
1476     return MakeAddrLValue(Builder.CreateStructGEP(LV.getAddress(),
1477                                                   Idx, "idx"),
1478                           ExprTy);
1479   }
1480   case UO_PreInc:
1481   case UO_PreDec: {
1482     LValue LV = EmitLValue(E->getSubExpr());
1483     bool isInc = E->getOpcode() == UO_PreInc;
1484 
1485     if (E->getType()->isAnyComplexType())
1486       EmitComplexPrePostIncDec(E, LV, isInc, true/*isPre*/);
1487     else
1488       EmitScalarPrePostIncDec(E, LV, isInc, true/*isPre*/);
1489     return LV;
1490   }
1491   }
1492 }
1493 
1494 LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
1495   return MakeAddrLValue(CGM.GetAddrOfConstantStringFromLiteral(E),
1496                         E->getType());
1497 }
1498 
1499 LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
1500   return MakeAddrLValue(CGM.GetAddrOfConstantStringFromObjCEncode(E),
1501                         E->getType());
1502 }
1503 
1504 
1505 LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
1506   switch (E->getIdentType()) {
1507   default:
1508     return EmitUnsupportedLValue(E, "predefined expression");
1509 
1510   case PredefinedExpr::Func:
1511   case PredefinedExpr::Function:
1512   case PredefinedExpr::PrettyFunction: {
1513     unsigned Type = E->getIdentType();
1514     std::string GlobalVarName;
1515 
1516     switch (Type) {
1517     default: llvm_unreachable("Invalid type");
1518     case PredefinedExpr::Func:
1519       GlobalVarName = "__func__.";
1520       break;
1521     case PredefinedExpr::Function:
1522       GlobalVarName = "__FUNCTION__.";
1523       break;
1524     case PredefinedExpr::PrettyFunction:
1525       GlobalVarName = "__PRETTY_FUNCTION__.";
1526       break;
1527     }
1528 
1529     StringRef FnName = CurFn->getName();
1530     if (FnName.startswith("\01"))
1531       FnName = FnName.substr(1);
1532     GlobalVarName += FnName;
1533 
1534     const Decl *CurDecl = CurCodeDecl;
1535     if (CurDecl == 0)
1536       CurDecl = getContext().getTranslationUnitDecl();
1537 
1538     std::string FunctionName =
1539         (isa<BlockDecl>(CurDecl)
1540          ? FnName.str()
1541          : PredefinedExpr::ComputeName((PredefinedExpr::IdentType)Type, CurDecl));
1542 
1543     llvm::Constant *C =
1544       CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str());
1545     return MakeAddrLValue(C, E->getType());
1546   }
1547   }
1548 }
1549 
1550 llvm::BasicBlock *CodeGenFunction::getTrapBB() {
1551   const CodeGenOptions &GCO = CGM.getCodeGenOpts();
1552 
1553   // If we are not optimzing, don't collapse all calls to trap in the function
1554   // to the same call, that way, in the debugger they can see which operation
1555   // did in fact fail.  If we are optimizing, we collapse all calls to trap down
1556   // to just one per function to save on codesize.
1557   if (GCO.OptimizationLevel && TrapBB)
1558     return TrapBB;
1559 
1560   llvm::BasicBlock *Cont = 0;
1561   if (HaveInsertPoint()) {
1562     Cont = createBasicBlock("cont");
1563     EmitBranch(Cont);
1564   }
1565   TrapBB = createBasicBlock("trap");
1566   EmitBlock(TrapBB);
1567 
1568   llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::trap);
1569   llvm::CallInst *TrapCall = Builder.CreateCall(F);
1570   TrapCall->setDoesNotReturn();
1571   TrapCall->setDoesNotThrow();
1572   Builder.CreateUnreachable();
1573 
1574   if (Cont)
1575     EmitBlock(Cont);
1576   return TrapBB;
1577 }
1578 
1579 /// isSimpleArrayDecayOperand - If the specified expr is a simple decay from an
1580 /// array to pointer, return the array subexpression.
1581 static const Expr *isSimpleArrayDecayOperand(const Expr *E) {
1582   // If this isn't just an array->pointer decay, bail out.
1583   const CastExpr *CE = dyn_cast<CastExpr>(E);
1584   if (CE == 0 || CE->getCastKind() != CK_ArrayToPointerDecay)
1585     return 0;
1586 
1587   // If this is a decay from variable width array, bail out.
1588   const Expr *SubExpr = CE->getSubExpr();
1589   if (SubExpr->getType()->isVariableArrayType())
1590     return 0;
1591 
1592   return SubExpr;
1593 }
1594 
1595 LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
1596   // The index must always be an integer, which is not an aggregate.  Emit it.
1597   llvm::Value *Idx = EmitScalarExpr(E->getIdx());
1598   QualType IdxTy  = E->getIdx()->getType();
1599   bool IdxSigned = IdxTy->isSignedIntegerOrEnumerationType();
1600 
1601   // If the base is a vector type, then we are forming a vector element lvalue
1602   // with this subscript.
1603   if (E->getBase()->getType()->isVectorType()) {
1604     // Emit the vector as an lvalue to get its address.
1605     LValue LHS = EmitLValue(E->getBase());
1606     assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
1607     Idx = Builder.CreateIntCast(Idx, Int32Ty, IdxSigned, "vidx");
1608     return LValue::MakeVectorElt(LHS.getAddress(), Idx,
1609                                  E->getBase()->getType());
1610   }
1611 
1612   // Extend or truncate the index type to 32 or 64-bits.
1613   if (Idx->getType() != IntPtrTy)
1614     Idx = Builder.CreateIntCast(Idx, IntPtrTy, IdxSigned, "idxprom");
1615 
1616   // FIXME: As llvm implements the object size checking, this can come out.
1617   if (CatchUndefined) {
1618     if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E->getBase())){
1619       if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) {
1620         if (ICE->getCastKind() == CK_ArrayToPointerDecay) {
1621           if (const ConstantArrayType *CAT
1622               = getContext().getAsConstantArrayType(DRE->getType())) {
1623             llvm::APInt Size = CAT->getSize();
1624             llvm::BasicBlock *Cont = createBasicBlock("cont");
1625             Builder.CreateCondBr(Builder.CreateICmpULE(Idx,
1626                                   llvm::ConstantInt::get(Idx->getType(), Size)),
1627                                  Cont, getTrapBB());
1628             EmitBlock(Cont);
1629           }
1630         }
1631       }
1632     }
1633   }
1634 
1635   // We know that the pointer points to a type of the correct size, unless the
1636   // size is a VLA or Objective-C interface.
1637   llvm::Value *Address = 0;
1638   CharUnits ArrayAlignment;
1639   if (const VariableArrayType *vla =
1640         getContext().getAsVariableArrayType(E->getType())) {
1641     // The base must be a pointer, which is not an aggregate.  Emit
1642     // it.  It needs to be emitted first in case it's what captures
1643     // the VLA bounds.
1644     Address = EmitScalarExpr(E->getBase());
1645 
1646     // The element count here is the total number of non-VLA elements.
1647     llvm::Value *numElements = getVLASize(vla).first;
1648 
1649     // Effectively, the multiply by the VLA size is part of the GEP.
1650     // GEP indexes are signed, and scaling an index isn't permitted to
1651     // signed-overflow, so we use the same semantics for our explicit
1652     // multiply.  We suppress this if overflow is not undefined behavior.
1653     if (getLangOptions().isSignedOverflowDefined()) {
1654       Idx = Builder.CreateMul(Idx, numElements);
1655       Address = Builder.CreateGEP(Address, Idx, "arrayidx");
1656     } else {
1657       Idx = Builder.CreateNSWMul(Idx, numElements);
1658       Address = Builder.CreateInBoundsGEP(Address, Idx, "arrayidx");
1659     }
1660   } else if (const ObjCObjectType *OIT = E->getType()->getAs<ObjCObjectType>()){
1661     // Indexing over an interface, as in "NSString *P; P[4];"
1662     llvm::Value *InterfaceSize =
1663       llvm::ConstantInt::get(Idx->getType(),
1664           getContext().getTypeSizeInChars(OIT).getQuantity());
1665 
1666     Idx = Builder.CreateMul(Idx, InterfaceSize);
1667 
1668     // The base must be a pointer, which is not an aggregate.  Emit it.
1669     llvm::Value *Base = EmitScalarExpr(E->getBase());
1670     Address = EmitCastToVoidPtr(Base);
1671     Address = Builder.CreateGEP(Address, Idx, "arrayidx");
1672     Address = Builder.CreateBitCast(Address, Base->getType());
1673   } else if (const Expr *Array = isSimpleArrayDecayOperand(E->getBase())) {
1674     // If this is A[i] where A is an array, the frontend will have decayed the
1675     // base to be a ArrayToPointerDecay implicit cast.  While correct, it is
1676     // inefficient at -O0 to emit a "gep A, 0, 0" when codegen'ing it, then a
1677     // "gep x, i" here.  Emit one "gep A, 0, i".
1678     assert(Array->getType()->isArrayType() &&
1679            "Array to pointer decay must have array source type!");
1680     LValue ArrayLV = EmitLValue(Array);
1681     llvm::Value *ArrayPtr = ArrayLV.getAddress();
1682     llvm::Value *Zero = llvm::ConstantInt::get(Int32Ty, 0);
1683     llvm::Value *Args[] = { Zero, Idx };
1684 
1685     // Propagate the alignment from the array itself to the result.
1686     ArrayAlignment = ArrayLV.getAlignment();
1687 
1688     if (getContext().getLangOptions().isSignedOverflowDefined())
1689       Address = Builder.CreateGEP(ArrayPtr, Args, "arrayidx");
1690     else
1691       Address = Builder.CreateInBoundsGEP(ArrayPtr, Args, "arrayidx");
1692   } else {
1693     // The base must be a pointer, which is not an aggregate.  Emit it.
1694     llvm::Value *Base = EmitScalarExpr(E->getBase());
1695     if (getContext().getLangOptions().isSignedOverflowDefined())
1696       Address = Builder.CreateGEP(Base, Idx, "arrayidx");
1697     else
1698       Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
1699   }
1700 
1701   QualType T = E->getBase()->getType()->getPointeeType();
1702   assert(!T.isNull() &&
1703          "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
1704 
1705 
1706   // Limit the alignment to that of the result type.
1707   LValue LV;
1708   if (!ArrayAlignment.isZero()) {
1709     CharUnits Align = getContext().getTypeAlignInChars(T);
1710     ArrayAlignment = std::min(Align, ArrayAlignment);
1711     LV = MakeAddrLValue(Address, T, ArrayAlignment);
1712   } else {
1713     LV = MakeNaturalAlignAddrLValue(Address, T);
1714   }
1715 
1716   LV.getQuals().setAddressSpace(E->getBase()->getType().getAddressSpace());
1717 
1718   if (getContext().getLangOptions().ObjC1 &&
1719       getContext().getLangOptions().getGC() != LangOptions::NonGC) {
1720     LV.setNonGC(!E->isOBJCGCCandidate(getContext()));
1721     setObjCGCLValueClass(getContext(), E, LV);
1722   }
1723   return LV;
1724 }
1725 
1726 static
1727 llvm::Constant *GenerateConstantVector(CGBuilderTy &Builder,
1728                                        SmallVector<unsigned, 4> &Elts) {
1729   SmallVector<llvm::Constant*, 4> CElts;
1730   for (unsigned i = 0, e = Elts.size(); i != e; ++i)
1731     CElts.push_back(Builder.getInt32(Elts[i]));
1732 
1733   return llvm::ConstantVector::get(CElts);
1734 }
1735 
1736 LValue CodeGenFunction::
1737 EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
1738   // Emit the base vector as an l-value.
1739   LValue Base;
1740 
1741   // ExtVectorElementExpr's base can either be a vector or pointer to vector.
1742   if (E->isArrow()) {
1743     // If it is a pointer to a vector, emit the address and form an lvalue with
1744     // it.
1745     llvm::Value *Ptr = EmitScalarExpr(E->getBase());
1746     const PointerType *PT = E->getBase()->getType()->getAs<PointerType>();
1747     Base = MakeAddrLValue(Ptr, PT->getPointeeType());
1748     Base.getQuals().removeObjCGCAttr();
1749   } else if (E->getBase()->isGLValue()) {
1750     // Otherwise, if the base is an lvalue ( as in the case of foo.x.x),
1751     // emit the base as an lvalue.
1752     assert(E->getBase()->getType()->isVectorType());
1753     Base = EmitLValue(E->getBase());
1754   } else {
1755     // Otherwise, the base is a normal rvalue (as in (V+V).x), emit it as such.
1756     assert(E->getBase()->getType()->isVectorType() &&
1757            "Result must be a vector");
1758     llvm::Value *Vec = EmitScalarExpr(E->getBase());
1759 
1760     // Store the vector to memory (because LValue wants an address).
1761     llvm::Value *VecMem = CreateMemTemp(E->getBase()->getType());
1762     Builder.CreateStore(Vec, VecMem);
1763     Base = MakeAddrLValue(VecMem, E->getBase()->getType());
1764   }
1765 
1766   QualType type =
1767     E->getType().withCVRQualifiers(Base.getQuals().getCVRQualifiers());
1768 
1769   // Encode the element access list into a vector of unsigned indices.
1770   SmallVector<unsigned, 4> Indices;
1771   E->getEncodedElementAccess(Indices);
1772 
1773   if (Base.isSimple()) {
1774     llvm::Constant *CV = GenerateConstantVector(Builder, Indices);
1775     return LValue::MakeExtVectorElt(Base.getAddress(), CV, type);
1776   }
1777   assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
1778 
1779   llvm::Constant *BaseElts = Base.getExtVectorElts();
1780   SmallVector<llvm::Constant *, 4> CElts;
1781 
1782   for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
1783     if (isa<llvm::ConstantAggregateZero>(BaseElts))
1784       CElts.push_back(llvm::ConstantInt::get(Int32Ty, 0));
1785     else
1786       CElts.push_back(cast<llvm::Constant>(BaseElts->getOperand(Indices[i])));
1787   }
1788   llvm::Constant *CV = llvm::ConstantVector::get(CElts);
1789   return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV, type);
1790 }
1791 
1792 LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
1793   bool isNonGC = false;
1794   Expr *BaseExpr = E->getBase();
1795   llvm::Value *BaseValue = NULL;
1796   Qualifiers BaseQuals;
1797 
1798   // If this is s.x, emit s as an lvalue.  If it is s->x, emit s as a scalar.
1799   if (E->isArrow()) {
1800     BaseValue = EmitScalarExpr(BaseExpr);
1801     const PointerType *PTy =
1802       BaseExpr->getType()->getAs<PointerType>();
1803     BaseQuals = PTy->getPointeeType().getQualifiers();
1804   } else {
1805     LValue BaseLV = EmitLValue(BaseExpr);
1806     if (BaseLV.isNonGC())
1807       isNonGC = true;
1808     // FIXME: this isn't right for bitfields.
1809     BaseValue = BaseLV.getAddress();
1810     QualType BaseTy = BaseExpr->getType();
1811     BaseQuals = BaseTy.getQualifiers();
1812   }
1813 
1814   NamedDecl *ND = E->getMemberDecl();
1815   if (FieldDecl *Field = dyn_cast<FieldDecl>(ND)) {
1816     LValue LV = EmitLValueForField(BaseValue, Field,
1817                                    BaseQuals.getCVRQualifiers());
1818     LV.setNonGC(isNonGC);
1819     setObjCGCLValueClass(getContext(), E, LV);
1820     return LV;
1821   }
1822 
1823   if (VarDecl *VD = dyn_cast<VarDecl>(ND))
1824     return EmitGlobalVarDeclLValue(*this, E, VD);
1825 
1826   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
1827     return EmitFunctionDeclLValue(*this, E, FD);
1828 
1829   llvm_unreachable("Unhandled member declaration!");
1830 }
1831 
1832 LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value *BaseValue,
1833                                               const FieldDecl *Field,
1834                                               unsigned CVRQualifiers) {
1835   const CGRecordLayout &RL =
1836     CGM.getTypes().getCGRecordLayout(Field->getParent());
1837   const CGBitFieldInfo &Info = RL.getBitFieldInfo(Field);
1838   return LValue::MakeBitfield(BaseValue, Info,
1839                           Field->getType().withCVRQualifiers(CVRQualifiers));
1840 }
1841 
1842 /// EmitLValueForAnonRecordField - Given that the field is a member of
1843 /// an anonymous struct or union buried inside a record, and given
1844 /// that the base value is a pointer to the enclosing record, derive
1845 /// an lvalue for the ultimate field.
1846 LValue CodeGenFunction::EmitLValueForAnonRecordField(llvm::Value *BaseValue,
1847                                              const IndirectFieldDecl *Field,
1848                                                      unsigned CVRQualifiers) {
1849   IndirectFieldDecl::chain_iterator I = Field->chain_begin(),
1850     IEnd = Field->chain_end();
1851   while (true) {
1852     LValue LV = EmitLValueForField(BaseValue, cast<FieldDecl>(*I),
1853                                    CVRQualifiers);
1854     if (++I == IEnd) return LV;
1855 
1856     assert(LV.isSimple());
1857     BaseValue = LV.getAddress();
1858     CVRQualifiers |= LV.getVRQualifiers();
1859   }
1860 }
1861 
1862 LValue CodeGenFunction::EmitLValueForField(llvm::Value *baseAddr,
1863                                            const FieldDecl *field,
1864                                            unsigned cvr) {
1865   if (field->isBitField())
1866     return EmitLValueForBitfield(baseAddr, field, cvr);
1867 
1868   const RecordDecl *rec = field->getParent();
1869   QualType type = field->getType();
1870   CharUnits alignment = getContext().getDeclAlign(field);
1871 
1872   bool mayAlias = rec->hasAttr<MayAliasAttr>();
1873 
1874   llvm::Value *addr = baseAddr;
1875   if (rec->isUnion()) {
1876     // For unions, there is no pointer adjustment.
1877     assert(!type->isReferenceType() && "union has reference member");
1878   } else {
1879     // For structs, we GEP to the field that the record layout suggests.
1880     unsigned idx = CGM.getTypes().getCGRecordLayout(rec).getLLVMFieldNo(field);
1881     addr = Builder.CreateStructGEP(addr, idx, field->getName());
1882 
1883     // If this is a reference field, load the reference right now.
1884     if (const ReferenceType *refType = type->getAs<ReferenceType>()) {
1885       llvm::LoadInst *load = Builder.CreateLoad(addr, "ref");
1886       if (cvr & Qualifiers::Volatile) load->setVolatile(true);
1887       load->setAlignment(alignment.getQuantity());
1888 
1889       if (CGM.shouldUseTBAA()) {
1890         llvm::MDNode *tbaa;
1891         if (mayAlias)
1892           tbaa = CGM.getTBAAInfo(getContext().CharTy);
1893         else
1894           tbaa = CGM.getTBAAInfo(type);
1895         CGM.DecorateInstruction(load, tbaa);
1896       }
1897 
1898       addr = load;
1899       mayAlias = false;
1900       type = refType->getPointeeType();
1901       if (type->isIncompleteType())
1902         alignment = CharUnits();
1903       else
1904         alignment = getContext().getTypeAlignInChars(type);
1905       cvr = 0; // qualifiers don't recursively apply to referencee
1906     }
1907   }
1908 
1909   // Make sure that the address is pointing to the right type.  This is critical
1910   // for both unions and structs.  A union needs a bitcast, a struct element
1911   // will need a bitcast if the LLVM type laid out doesn't match the desired
1912   // type.
1913   addr = EmitBitCastOfLValueToProperType(*this, addr,
1914                                          CGM.getTypes().ConvertTypeForMem(type),
1915                                          field->getName());
1916 
1917   if (field->hasAttr<AnnotateAttr>())
1918     addr = EmitFieldAnnotations(field, addr);
1919 
1920   LValue LV = MakeAddrLValue(addr, type, alignment);
1921   LV.getQuals().addCVRQualifiers(cvr);
1922 
1923   // __weak attribute on a field is ignored.
1924   if (LV.getQuals().getObjCGCAttr() == Qualifiers::Weak)
1925     LV.getQuals().removeObjCGCAttr();
1926 
1927   // Fields of may_alias structs act like 'char' for TBAA purposes.
1928   // FIXME: this should get propagated down through anonymous structs
1929   // and unions.
1930   if (mayAlias && LV.getTBAAInfo())
1931     LV.setTBAAInfo(CGM.getTBAAInfo(getContext().CharTy));
1932 
1933   return LV;
1934 }
1935 
1936 LValue
1937 CodeGenFunction::EmitLValueForFieldInitialization(llvm::Value *BaseValue,
1938                                                   const FieldDecl *Field,
1939                                                   unsigned CVRQualifiers) {
1940   QualType FieldType = Field->getType();
1941 
1942   if (!FieldType->isReferenceType())
1943     return EmitLValueForField(BaseValue, Field, CVRQualifiers);
1944 
1945   const CGRecordLayout &RL =
1946     CGM.getTypes().getCGRecordLayout(Field->getParent());
1947   unsigned idx = RL.getLLVMFieldNo(Field);
1948   llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx);
1949   assert(!FieldType.getObjCGCAttr() && "fields cannot have GC attrs");
1950 
1951 
1952   // Make sure that the address is pointing to the right type.  This is critical
1953   // for both unions and structs.  A union needs a bitcast, a struct element
1954   // will need a bitcast if the LLVM type laid out doesn't match the desired
1955   // type.
1956   llvm::Type *llvmType = ConvertTypeForMem(FieldType);
1957   unsigned AS = cast<llvm::PointerType>(V->getType())->getAddressSpace();
1958   V = Builder.CreateBitCast(V, llvmType->getPointerTo(AS));
1959 
1960   CharUnits Alignment = getContext().getDeclAlign(Field);
1961   return MakeAddrLValue(V, FieldType, Alignment);
1962 }
1963 
1964 LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr *E){
1965   if (E->isFileScope()) {
1966     llvm::Value *GlobalPtr = CGM.GetAddrOfConstantCompoundLiteral(E);
1967     return MakeAddrLValue(GlobalPtr, E->getType());
1968   }
1969 
1970   llvm::Value *DeclPtr = CreateMemTemp(E->getType(), ".compoundliteral");
1971   const Expr *InitExpr = E->getInitializer();
1972   LValue Result = MakeAddrLValue(DeclPtr, E->getType());
1973 
1974   EmitAnyExprToMem(InitExpr, DeclPtr, E->getType().getQualifiers(),
1975                    /*Init*/ true);
1976 
1977   return Result;
1978 }
1979 
1980 LValue CodeGenFunction::
1981 EmitConditionalOperatorLValue(const AbstractConditionalOperator *expr) {
1982   if (!expr->isGLValue()) {
1983     // ?: here should be an aggregate.
1984     assert((hasAggregateLLVMType(expr->getType()) &&
1985             !expr->getType()->isAnyComplexType()) &&
1986            "Unexpected conditional operator!");
1987     return EmitAggExprToLValue(expr);
1988   }
1989 
1990   OpaqueValueMapping binding(*this, expr);
1991 
1992   const Expr *condExpr = expr->getCond();
1993   bool CondExprBool;
1994   if (ConstantFoldsToSimpleInteger(condExpr, CondExprBool)) {
1995     const Expr *live = expr->getTrueExpr(), *dead = expr->getFalseExpr();
1996     if (!CondExprBool) std::swap(live, dead);
1997 
1998     if (!ContainsLabel(dead))
1999       return EmitLValue(live);
2000   }
2001 
2002   llvm::BasicBlock *lhsBlock = createBasicBlock("cond.true");
2003   llvm::BasicBlock *rhsBlock = createBasicBlock("cond.false");
2004   llvm::BasicBlock *contBlock = createBasicBlock("cond.end");
2005 
2006   ConditionalEvaluation eval(*this);
2007   EmitBranchOnBoolExpr(condExpr, lhsBlock, rhsBlock);
2008 
2009   // Any temporaries created here are conditional.
2010   EmitBlock(lhsBlock);
2011   eval.begin(*this);
2012   LValue lhs = EmitLValue(expr->getTrueExpr());
2013   eval.end(*this);
2014 
2015   if (!lhs.isSimple())
2016     return EmitUnsupportedLValue(expr, "conditional operator");
2017 
2018   lhsBlock = Builder.GetInsertBlock();
2019   Builder.CreateBr(contBlock);
2020 
2021   // Any temporaries created here are conditional.
2022   EmitBlock(rhsBlock);
2023   eval.begin(*this);
2024   LValue rhs = EmitLValue(expr->getFalseExpr());
2025   eval.end(*this);
2026   if (!rhs.isSimple())
2027     return EmitUnsupportedLValue(expr, "conditional operator");
2028   rhsBlock = Builder.GetInsertBlock();
2029 
2030   EmitBlock(contBlock);
2031 
2032   llvm::PHINode *phi = Builder.CreatePHI(lhs.getAddress()->getType(), 2,
2033                                          "cond-lvalue");
2034   phi->addIncoming(lhs.getAddress(), lhsBlock);
2035   phi->addIncoming(rhs.getAddress(), rhsBlock);
2036   return MakeAddrLValue(phi, expr->getType());
2037 }
2038 
2039 /// EmitCastLValue - Casts are never lvalues unless that cast is a dynamic_cast.
2040 /// If the cast is a dynamic_cast, we can have the usual lvalue result,
2041 /// otherwise if a cast is needed by the code generator in an lvalue context,
2042 /// then it must mean that we need the address of an aggregate in order to
2043 /// access one of its fields.  This can happen for all the reasons that casts
2044 /// are permitted with aggregate result, including noop aggregate casts, and
2045 /// cast from scalar to union.
2046 LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
2047   switch (E->getCastKind()) {
2048   case CK_ToVoid:
2049     return EmitUnsupportedLValue(E, "unexpected cast lvalue");
2050 
2051   case CK_Dependent:
2052     llvm_unreachable("dependent cast kind in IR gen!");
2053 
2054   // These two casts are currently treated as no-ops, although they could
2055   // potentially be real operations depending on the target's ABI.
2056   case CK_NonAtomicToAtomic:
2057   case CK_AtomicToNonAtomic:
2058 
2059   case CK_NoOp:
2060   case CK_LValueToRValue:
2061     if (!E->getSubExpr()->Classify(getContext()).isPRValue()
2062         || E->getType()->isRecordType())
2063       return EmitLValue(E->getSubExpr());
2064     // Fall through to synthesize a temporary.
2065 
2066   case CK_BitCast:
2067   case CK_ArrayToPointerDecay:
2068   case CK_FunctionToPointerDecay:
2069   case CK_NullToMemberPointer:
2070   case CK_NullToPointer:
2071   case CK_IntegralToPointer:
2072   case CK_PointerToIntegral:
2073   case CK_PointerToBoolean:
2074   case CK_VectorSplat:
2075   case CK_IntegralCast:
2076   case CK_IntegralToBoolean:
2077   case CK_IntegralToFloating:
2078   case CK_FloatingToIntegral:
2079   case CK_FloatingToBoolean:
2080   case CK_FloatingCast:
2081   case CK_FloatingRealToComplex:
2082   case CK_FloatingComplexToReal:
2083   case CK_FloatingComplexToBoolean:
2084   case CK_FloatingComplexCast:
2085   case CK_FloatingComplexToIntegralComplex:
2086   case CK_IntegralRealToComplex:
2087   case CK_IntegralComplexToReal:
2088   case CK_IntegralComplexToBoolean:
2089   case CK_IntegralComplexCast:
2090   case CK_IntegralComplexToFloatingComplex:
2091   case CK_DerivedToBaseMemberPointer:
2092   case CK_BaseToDerivedMemberPointer:
2093   case CK_MemberPointerToBoolean:
2094   case CK_AnyPointerToBlockPointerCast:
2095   case CK_ARCProduceObject:
2096   case CK_ARCConsumeObject:
2097   case CK_ARCReclaimReturnedObject:
2098   case CK_ARCExtendBlockObject: {
2099     // These casts only produce lvalues when we're binding a reference to a
2100     // temporary realized from a (converted) pure rvalue. Emit the expression
2101     // as a value, copy it into a temporary, and return an lvalue referring to
2102     // that temporary.
2103     llvm::Value *V = CreateMemTemp(E->getType(), "ref.temp");
2104     EmitAnyExprToMem(E, V, E->getType().getQualifiers(), false);
2105     return MakeAddrLValue(V, E->getType());
2106   }
2107 
2108   case CK_Dynamic: {
2109     LValue LV = EmitLValue(E->getSubExpr());
2110     llvm::Value *V = LV.getAddress();
2111     const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(E);
2112     return MakeAddrLValue(EmitDynamicCast(V, DCE), E->getType());
2113   }
2114 
2115   case CK_ConstructorConversion:
2116   case CK_UserDefinedConversion:
2117   case CK_CPointerToObjCPointerCast:
2118   case CK_BlockPointerToObjCPointerCast:
2119     return EmitLValue(E->getSubExpr());
2120 
2121   case CK_UncheckedDerivedToBase:
2122   case CK_DerivedToBase: {
2123     const RecordType *DerivedClassTy =
2124       E->getSubExpr()->getType()->getAs<RecordType>();
2125     CXXRecordDecl *DerivedClassDecl =
2126       cast<CXXRecordDecl>(DerivedClassTy->getDecl());
2127 
2128     LValue LV = EmitLValue(E->getSubExpr());
2129     llvm::Value *This = LV.getAddress();
2130 
2131     // Perform the derived-to-base conversion
2132     llvm::Value *Base =
2133       GetAddressOfBaseClass(This, DerivedClassDecl,
2134                             E->path_begin(), E->path_end(),
2135                             /*NullCheckValue=*/false);
2136 
2137     return MakeAddrLValue(Base, E->getType());
2138   }
2139   case CK_ToUnion:
2140     return EmitAggExprToLValue(E);
2141   case CK_BaseToDerived: {
2142     const RecordType *DerivedClassTy = E->getType()->getAs<RecordType>();
2143     CXXRecordDecl *DerivedClassDecl =
2144       cast<CXXRecordDecl>(DerivedClassTy->getDecl());
2145 
2146     LValue LV = EmitLValue(E->getSubExpr());
2147 
2148     // Perform the base-to-derived conversion
2149     llvm::Value *Derived =
2150       GetAddressOfDerivedClass(LV.getAddress(), DerivedClassDecl,
2151                                E->path_begin(), E->path_end(),
2152                                /*NullCheckValue=*/false);
2153 
2154     return MakeAddrLValue(Derived, E->getType());
2155   }
2156   case CK_LValueBitCast: {
2157     // This must be a reinterpret_cast (or c-style equivalent).
2158     const ExplicitCastExpr *CE = cast<ExplicitCastExpr>(E);
2159 
2160     LValue LV = EmitLValue(E->getSubExpr());
2161     llvm::Value *V = Builder.CreateBitCast(LV.getAddress(),
2162                                            ConvertType(CE->getTypeAsWritten()));
2163     return MakeAddrLValue(V, E->getType());
2164   }
2165   case CK_ObjCObjectLValueCast: {
2166     LValue LV = EmitLValue(E->getSubExpr());
2167     QualType ToType = getContext().getLValueReferenceType(E->getType());
2168     llvm::Value *V = Builder.CreateBitCast(LV.getAddress(),
2169                                            ConvertType(ToType));
2170     return MakeAddrLValue(V, E->getType());
2171   }
2172   }
2173 
2174   llvm_unreachable("Unhandled lvalue cast kind?");
2175 }
2176 
2177 LValue CodeGenFunction::EmitNullInitializationLValue(
2178                                               const CXXScalarValueInitExpr *E) {
2179   QualType Ty = E->getType();
2180   LValue LV = MakeAddrLValue(CreateMemTemp(Ty), Ty);
2181   EmitNullInitialization(LV.getAddress(), Ty);
2182   return LV;
2183 }
2184 
2185 LValue CodeGenFunction::EmitOpaqueValueLValue(const OpaqueValueExpr *e) {
2186   assert(OpaqueValueMappingData::shouldBindAsLValue(e));
2187   return getOpaqueLValueMapping(e);
2188 }
2189 
2190 LValue CodeGenFunction::EmitMaterializeTemporaryExpr(
2191                                            const MaterializeTemporaryExpr *E) {
2192   RValue RV = EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
2193   return MakeAddrLValue(RV.getScalarVal(), E->getType());
2194 }
2195 
2196 
2197 //===--------------------------------------------------------------------===//
2198 //                             Expression Emission
2199 //===--------------------------------------------------------------------===//
2200 
2201 RValue CodeGenFunction::EmitCallExpr(const CallExpr *E,
2202                                      ReturnValueSlot ReturnValue) {
2203   if (CGDebugInfo *DI = getDebugInfo())
2204     DI->EmitLocation(Builder, E->getLocStart());
2205 
2206   // Builtins never have block type.
2207   if (E->getCallee()->getType()->isBlockPointerType())
2208     return EmitBlockCallExpr(E, ReturnValue);
2209 
2210   if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
2211     return EmitCXXMemberCallExpr(CE, ReturnValue);
2212 
2213   if (const CUDAKernelCallExpr *CE = dyn_cast<CUDAKernelCallExpr>(E))
2214     return EmitCUDAKernelCallExpr(CE, ReturnValue);
2215 
2216   const Decl *TargetDecl = E->getCalleeDecl();
2217   if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(TargetDecl)) {
2218     if (unsigned builtinID = FD->getBuiltinID())
2219       return EmitBuiltinExpr(FD, builtinID, E);
2220   }
2221 
2222   if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
2223     if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
2224       return EmitCXXOperatorMemberCallExpr(CE, MD, ReturnValue);
2225 
2226   if (const CXXPseudoDestructorExpr *PseudoDtor
2227           = dyn_cast<CXXPseudoDestructorExpr>(E->getCallee()->IgnoreParens())) {
2228     QualType DestroyedType = PseudoDtor->getDestroyedType();
2229     if (getContext().getLangOptions().ObjCAutoRefCount &&
2230         DestroyedType->isObjCLifetimeType() &&
2231         (DestroyedType.getObjCLifetime() == Qualifiers::OCL_Strong ||
2232          DestroyedType.getObjCLifetime() == Qualifiers::OCL_Weak)) {
2233       // Automatic Reference Counting:
2234       //   If the pseudo-expression names a retainable object with weak or
2235       //   strong lifetime, the object shall be released.
2236       Expr *BaseExpr = PseudoDtor->getBase();
2237       llvm::Value *BaseValue = NULL;
2238       Qualifiers BaseQuals;
2239 
2240       // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
2241       if (PseudoDtor->isArrow()) {
2242         BaseValue = EmitScalarExpr(BaseExpr);
2243         const PointerType *PTy = BaseExpr->getType()->getAs<PointerType>();
2244         BaseQuals = PTy->getPointeeType().getQualifiers();
2245       } else {
2246         LValue BaseLV = EmitLValue(BaseExpr);
2247         BaseValue = BaseLV.getAddress();
2248         QualType BaseTy = BaseExpr->getType();
2249         BaseQuals = BaseTy.getQualifiers();
2250       }
2251 
2252       switch (PseudoDtor->getDestroyedType().getObjCLifetime()) {
2253       case Qualifiers::OCL_None:
2254       case Qualifiers::OCL_ExplicitNone:
2255       case Qualifiers::OCL_Autoreleasing:
2256         break;
2257 
2258       case Qualifiers::OCL_Strong:
2259         EmitARCRelease(Builder.CreateLoad(BaseValue,
2260                           PseudoDtor->getDestroyedType().isVolatileQualified()),
2261                        /*precise*/ true);
2262         break;
2263 
2264       case Qualifiers::OCL_Weak:
2265         EmitARCDestroyWeak(BaseValue);
2266         break;
2267       }
2268     } else {
2269       // C++ [expr.pseudo]p1:
2270       //   The result shall only be used as the operand for the function call
2271       //   operator (), and the result of such a call has type void. The only
2272       //   effect is the evaluation of the postfix-expression before the dot or
2273       //   arrow.
2274       EmitScalarExpr(E->getCallee());
2275     }
2276 
2277     return RValue::get(0);
2278   }
2279 
2280   llvm::Value *Callee = EmitScalarExpr(E->getCallee());
2281   return EmitCall(E->getCallee()->getType(), Callee, ReturnValue,
2282                   E->arg_begin(), E->arg_end(), TargetDecl);
2283 }
2284 
2285 LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
2286   // Comma expressions just emit their LHS then their RHS as an l-value.
2287   if (E->getOpcode() == BO_Comma) {
2288     EmitIgnoredExpr(E->getLHS());
2289     EnsureInsertPoint();
2290     return EmitLValue(E->getRHS());
2291   }
2292 
2293   if (E->getOpcode() == BO_PtrMemD ||
2294       E->getOpcode() == BO_PtrMemI)
2295     return EmitPointerToDataMemberBinaryExpr(E);
2296 
2297   assert(E->getOpcode() == BO_Assign && "unexpected binary l-value");
2298 
2299   // Note that in all of these cases, __block variables need the RHS
2300   // evaluated first just in case the variable gets moved by the RHS.
2301 
2302   if (!hasAggregateLLVMType(E->getType())) {
2303     switch (E->getLHS()->getType().getObjCLifetime()) {
2304     case Qualifiers::OCL_Strong:
2305       return EmitARCStoreStrong(E, /*ignored*/ false).first;
2306 
2307     case Qualifiers::OCL_Autoreleasing:
2308       return EmitARCStoreAutoreleasing(E).first;
2309 
2310     // No reason to do any of these differently.
2311     case Qualifiers::OCL_None:
2312     case Qualifiers::OCL_ExplicitNone:
2313     case Qualifiers::OCL_Weak:
2314       break;
2315     }
2316 
2317     RValue RV = EmitAnyExpr(E->getRHS());
2318     LValue LV = EmitLValue(E->getLHS());
2319     EmitStoreThroughLValue(RV, LV);
2320     return LV;
2321   }
2322 
2323   if (E->getType()->isAnyComplexType())
2324     return EmitComplexAssignmentLValue(E);
2325 
2326   return EmitAggExprToLValue(E);
2327 }
2328 
2329 LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
2330   RValue RV = EmitCallExpr(E);
2331 
2332   if (!RV.isScalar())
2333     return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
2334 
2335   assert(E->getCallReturnType()->isReferenceType() &&
2336          "Can't have a scalar return unless the return type is a "
2337          "reference type!");
2338 
2339   return MakeAddrLValue(RV.getScalarVal(), E->getType());
2340 }
2341 
2342 LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
2343   // FIXME: This shouldn't require another copy.
2344   return EmitAggExprToLValue(E);
2345 }
2346 
2347 LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
2348   assert(E->getType()->getAsCXXRecordDecl()->hasTrivialDestructor()
2349          && "binding l-value to type which needs a temporary");
2350   AggValueSlot Slot = CreateAggTemp(E->getType());
2351   EmitCXXConstructExpr(E, Slot);
2352   return MakeAddrLValue(Slot.getAddr(), E->getType());
2353 }
2354 
2355 LValue
2356 CodeGenFunction::EmitCXXTypeidLValue(const CXXTypeidExpr *E) {
2357   return MakeAddrLValue(EmitCXXTypeidExpr(E), E->getType());
2358 }
2359 
2360 LValue
2361 CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
2362   AggValueSlot Slot = CreateAggTemp(E->getType(), "temp.lvalue");
2363   Slot.setExternallyDestructed();
2364   EmitAggExpr(E->getSubExpr(), Slot);
2365   EmitCXXTemporary(E->getTemporary(), E->getType(), Slot.getAddr());
2366   return MakeAddrLValue(Slot.getAddr(), E->getType());
2367 }
2368 
2369 LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
2370   RValue RV = EmitObjCMessageExpr(E);
2371 
2372   if (!RV.isScalar())
2373     return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
2374 
2375   assert(E->getMethodDecl()->getResultType()->isReferenceType() &&
2376          "Can't have a scalar return unless the return type is a "
2377          "reference type!");
2378 
2379   return MakeAddrLValue(RV.getScalarVal(), E->getType());
2380 }
2381 
2382 LValue CodeGenFunction::EmitObjCSelectorLValue(const ObjCSelectorExpr *E) {
2383   llvm::Value *V =
2384     CGM.getObjCRuntime().GetSelector(Builder, E->getSelector(), true);
2385   return MakeAddrLValue(V, E->getType());
2386 }
2387 
2388 llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
2389                                              const ObjCIvarDecl *Ivar) {
2390   return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
2391 }
2392 
2393 LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
2394                                           llvm::Value *BaseValue,
2395                                           const ObjCIvarDecl *Ivar,
2396                                           unsigned CVRQualifiers) {
2397   return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
2398                                                    Ivar, CVRQualifiers);
2399 }
2400 
2401 LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
2402   // FIXME: A lot of the code below could be shared with EmitMemberExpr.
2403   llvm::Value *BaseValue = 0;
2404   const Expr *BaseExpr = E->getBase();
2405   Qualifiers BaseQuals;
2406   QualType ObjectTy;
2407   if (E->isArrow()) {
2408     BaseValue = EmitScalarExpr(BaseExpr);
2409     ObjectTy = BaseExpr->getType()->getPointeeType();
2410     BaseQuals = ObjectTy.getQualifiers();
2411   } else {
2412     LValue BaseLV = EmitLValue(BaseExpr);
2413     // FIXME: this isn't right for bitfields.
2414     BaseValue = BaseLV.getAddress();
2415     ObjectTy = BaseExpr->getType();
2416     BaseQuals = ObjectTy.getQualifiers();
2417   }
2418 
2419   LValue LV =
2420     EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
2421                       BaseQuals.getCVRQualifiers());
2422   setObjCGCLValueClass(getContext(), E, LV);
2423   return LV;
2424 }
2425 
2426 LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
2427   // Can only get l-value for message expression returning aggregate type
2428   RValue RV = EmitAnyExprToTemp(E);
2429   return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
2430 }
2431 
2432 RValue CodeGenFunction::EmitCall(QualType CalleeType, llvm::Value *Callee,
2433                                  ReturnValueSlot ReturnValue,
2434                                  CallExpr::const_arg_iterator ArgBeg,
2435                                  CallExpr::const_arg_iterator ArgEnd,
2436                                  const Decl *TargetDecl) {
2437   // Get the actual function type. The callee type will always be a pointer to
2438   // function type or a block pointer type.
2439   assert(CalleeType->isFunctionPointerType() &&
2440          "Call must have function pointer type!");
2441 
2442   CalleeType = getContext().getCanonicalType(CalleeType);
2443 
2444   const FunctionType *FnType
2445     = cast<FunctionType>(cast<PointerType>(CalleeType)->getPointeeType());
2446 
2447   CallArgList Args;
2448   EmitCallArgs(Args, dyn_cast<FunctionProtoType>(FnType), ArgBeg, ArgEnd);
2449 
2450   const CGFunctionInfo &FnInfo = CGM.getTypes().getFunctionInfo(Args, FnType);
2451 
2452   // C99 6.5.2.2p6:
2453   //   If the expression that denotes the called function has a type
2454   //   that does not include a prototype, [the default argument
2455   //   promotions are performed]. If the number of arguments does not
2456   //   equal the number of parameters, the behavior is undefined. If
2457   //   the function is defined with a type that includes a prototype,
2458   //   and either the prototype ends with an ellipsis (, ...) or the
2459   //   types of the arguments after promotion are not compatible with
2460   //   the types of the parameters, the behavior is undefined. If the
2461   //   function is defined with a type that does not include a
2462   //   prototype, and the types of the arguments after promotion are
2463   //   not compatible with those of the parameters after promotion,
2464   //   the behavior is undefined [except in some trivial cases].
2465   // That is, in the general case, we should assume that a call
2466   // through an unprototyped function type works like a *non-variadic*
2467   // call.  The way we make this work is to cast to the exact type
2468   // of the promoted arguments.
2469   if (isa<FunctionNoProtoType>(FnType) &&
2470       !getTargetHooks().isNoProtoCallVariadic(FnInfo)) {
2471     assert(cast<llvm::FunctionType>(Callee->getType()->getContainedType(0))
2472              ->isVarArg());
2473     llvm::Type *CalleeTy = getTypes().GetFunctionType(FnInfo, false);
2474     CalleeTy = CalleeTy->getPointerTo();
2475     Callee = Builder.CreateBitCast(Callee, CalleeTy, "callee.knr.cast");
2476   }
2477 
2478   return EmitCall(FnInfo, Callee, ReturnValue, Args, TargetDecl);
2479 }
2480 
2481 LValue CodeGenFunction::
2482 EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E) {
2483   llvm::Value *BaseV;
2484   if (E->getOpcode() == BO_PtrMemI)
2485     BaseV = EmitScalarExpr(E->getLHS());
2486   else
2487     BaseV = EmitLValue(E->getLHS()).getAddress();
2488 
2489   llvm::Value *OffsetV = EmitScalarExpr(E->getRHS());
2490 
2491   const MemberPointerType *MPT
2492     = E->getRHS()->getType()->getAs<MemberPointerType>();
2493 
2494   llvm::Value *AddV =
2495     CGM.getCXXABI().EmitMemberDataPointerAddress(*this, BaseV, OffsetV, MPT);
2496 
2497   return MakeAddrLValue(AddV, MPT->getPointeeType());
2498 }
2499 
2500 static void
2501 EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, llvm::Value *Dest,
2502              llvm::Value *Ptr, llvm::Value *Val1, llvm::Value *Val2,
2503              uint64_t Size, unsigned Align, llvm::AtomicOrdering Order) {
2504   if (E->isCmpXChg()) {
2505     // Note that cmpxchg only supports specifying one ordering and
2506     // doesn't support weak cmpxchg, at least at the moment.
2507     llvm::LoadInst *LoadVal1 = CGF.Builder.CreateLoad(Val1);
2508     LoadVal1->setAlignment(Align);
2509     llvm::LoadInst *LoadVal2 = CGF.Builder.CreateLoad(Val2);
2510     LoadVal2->setAlignment(Align);
2511     llvm::AtomicCmpXchgInst *CXI =
2512         CGF.Builder.CreateAtomicCmpXchg(Ptr, LoadVal1, LoadVal2, Order);
2513     CXI->setVolatile(E->isVolatile());
2514     llvm::StoreInst *StoreVal1 = CGF.Builder.CreateStore(CXI, Val1);
2515     StoreVal1->setAlignment(Align);
2516     llvm::Value *Cmp = CGF.Builder.CreateICmpEQ(CXI, LoadVal1);
2517     CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType()));
2518     return;
2519   }
2520 
2521   if (E->getOp() == AtomicExpr::Load) {
2522     llvm::LoadInst *Load = CGF.Builder.CreateLoad(Ptr);
2523     Load->setAtomic(Order);
2524     Load->setAlignment(Size);
2525     Load->setVolatile(E->isVolatile());
2526     llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(Load, Dest);
2527     StoreDest->setAlignment(Align);
2528     return;
2529   }
2530 
2531   if (E->getOp() == AtomicExpr::Store) {
2532     assert(!Dest && "Store does not return a value");
2533     llvm::LoadInst *LoadVal1 = CGF.Builder.CreateLoad(Val1);
2534     LoadVal1->setAlignment(Align);
2535     llvm::StoreInst *Store = CGF.Builder.CreateStore(LoadVal1, Ptr);
2536     Store->setAtomic(Order);
2537     Store->setAlignment(Size);
2538     Store->setVolatile(E->isVolatile());
2539     return;
2540   }
2541 
2542   llvm::AtomicRMWInst::BinOp Op = llvm::AtomicRMWInst::Add;
2543   switch (E->getOp()) {
2544     case AtomicExpr::CmpXchgWeak:
2545     case AtomicExpr::CmpXchgStrong:
2546     case AtomicExpr::Store:
2547     case AtomicExpr::Init:
2548     case AtomicExpr::Load:  assert(0 && "Already handled!");
2549     case AtomicExpr::Add:   Op = llvm::AtomicRMWInst::Add;  break;
2550     case AtomicExpr::Sub:   Op = llvm::AtomicRMWInst::Sub;  break;
2551     case AtomicExpr::And:   Op = llvm::AtomicRMWInst::And;  break;
2552     case AtomicExpr::Or:    Op = llvm::AtomicRMWInst::Or;   break;
2553     case AtomicExpr::Xor:   Op = llvm::AtomicRMWInst::Xor;  break;
2554     case AtomicExpr::Xchg:  Op = llvm::AtomicRMWInst::Xchg; break;
2555   }
2556   llvm::LoadInst *LoadVal1 = CGF.Builder.CreateLoad(Val1);
2557   LoadVal1->setAlignment(Align);
2558   llvm::AtomicRMWInst *RMWI =
2559       CGF.Builder.CreateAtomicRMW(Op, Ptr, LoadVal1, Order);
2560   RMWI->setVolatile(E->isVolatile());
2561   llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(RMWI, Dest);
2562   StoreDest->setAlignment(Align);
2563 }
2564 
2565 // This function emits any expression (scalar, complex, or aggregate)
2566 // into a temporary alloca.
2567 static llvm::Value *
2568 EmitValToTemp(CodeGenFunction &CGF, Expr *E) {
2569   llvm::Value *DeclPtr = CGF.CreateMemTemp(E->getType(), ".atomictmp");
2570   CGF.EmitAnyExprToMem(E, DeclPtr, E->getType().getQualifiers(),
2571                        /*Init*/ true);
2572   return DeclPtr;
2573 }
2574 
2575 static RValue ConvertTempToRValue(CodeGenFunction &CGF, QualType Ty,
2576                                   llvm::Value *Dest) {
2577   if (Ty->isAnyComplexType())
2578     return RValue::getComplex(CGF.LoadComplexFromAddr(Dest, false));
2579   if (CGF.hasAggregateLLVMType(Ty))
2580     return RValue::getAggregate(Dest);
2581   return RValue::get(CGF.EmitLoadOfScalar(CGF.MakeAddrLValue(Dest, Ty)));
2582 }
2583 
2584 RValue CodeGenFunction::EmitAtomicExpr(AtomicExpr *E, llvm::Value *Dest) {
2585   QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
2586   QualType MemTy = AtomicTy->getAs<AtomicType>()->getValueType();
2587   CharUnits sizeChars = getContext().getTypeSizeInChars(AtomicTy);
2588   uint64_t Size = sizeChars.getQuantity();
2589   CharUnits alignChars = getContext().getTypeAlignInChars(AtomicTy);
2590   unsigned Align = alignChars.getQuantity();
2591   unsigned MaxInlineWidth =
2592       getContext().getTargetInfo().getMaxAtomicInlineWidth();
2593   bool UseLibcall = (Size != Align || Size > MaxInlineWidth);
2594 
2595 
2596 
2597   llvm::Value *Ptr, *Order, *OrderFail = 0, *Val1 = 0, *Val2 = 0;
2598   Ptr = EmitScalarExpr(E->getPtr());
2599 
2600   if (E->getOp() == AtomicExpr::Init) {
2601     assert(!Dest && "Init does not return a value");
2602     Val1 = EmitScalarExpr(E->getVal1());
2603     llvm::StoreInst *Store = Builder.CreateStore(Val1, Ptr);
2604     Store->setAlignment(Size);
2605     Store->setVolatile(E->isVolatile());
2606     return RValue::get(0);
2607   }
2608 
2609   Order = EmitScalarExpr(E->getOrder());
2610   if (E->isCmpXChg()) {
2611     Val1 = EmitScalarExpr(E->getVal1());
2612     Val2 = EmitValToTemp(*this, E->getVal2());
2613     OrderFail = EmitScalarExpr(E->getOrderFail());
2614     (void)OrderFail; // OrderFail is unused at the moment
2615   } else if ((E->getOp() == AtomicExpr::Add || E->getOp() == AtomicExpr::Sub) &&
2616              MemTy->isPointerType()) {
2617     // For pointers, we're required to do a bit of math: adding 1 to an int*
2618     // is not the same as adding 1 to a uintptr_t.
2619     QualType Val1Ty = E->getVal1()->getType();
2620     llvm::Value *Val1Scalar = EmitScalarExpr(E->getVal1());
2621     CharUnits PointeeIncAmt =
2622         getContext().getTypeSizeInChars(MemTy->getPointeeType());
2623     Val1Scalar = Builder.CreateMul(Val1Scalar, CGM.getSize(PointeeIncAmt));
2624     Val1 = CreateMemTemp(Val1Ty, ".atomictmp");
2625     EmitStoreOfScalar(Val1Scalar, MakeAddrLValue(Val1, Val1Ty));
2626   } else if (E->getOp() != AtomicExpr::Load) {
2627     Val1 = EmitValToTemp(*this, E->getVal1());
2628   }
2629 
2630   if (E->getOp() != AtomicExpr::Store && !Dest)
2631     Dest = CreateMemTemp(E->getType(), ".atomicdst");
2632 
2633   if (UseLibcall) {
2634     // FIXME: Finalize what the libcalls are actually supposed to look like.
2635     // See also http://gcc.gnu.org/wiki/Atomic/GCCMM/LIbrary .
2636     return EmitUnsupportedRValue(E, "atomic library call");
2637   }
2638 #if 0
2639   if (UseLibcall) {
2640     const char* LibCallName;
2641     switch (E->getOp()) {
2642     case AtomicExpr::CmpXchgWeak:
2643       LibCallName = "__atomic_compare_exchange_generic"; break;
2644     case AtomicExpr::CmpXchgStrong:
2645       LibCallName = "__atomic_compare_exchange_generic"; break;
2646     case AtomicExpr::Add:   LibCallName = "__atomic_fetch_add_generic"; break;
2647     case AtomicExpr::Sub:   LibCallName = "__atomic_fetch_sub_generic"; break;
2648     case AtomicExpr::And:   LibCallName = "__atomic_fetch_and_generic"; break;
2649     case AtomicExpr::Or:    LibCallName = "__atomic_fetch_or_generic"; break;
2650     case AtomicExpr::Xor:   LibCallName = "__atomic_fetch_xor_generic"; break;
2651     case AtomicExpr::Xchg:  LibCallName = "__atomic_exchange_generic"; break;
2652     case AtomicExpr::Store: LibCallName = "__atomic_store_generic"; break;
2653     case AtomicExpr::Load:  LibCallName = "__atomic_load_generic"; break;
2654     }
2655     llvm::SmallVector<QualType, 4> Params;
2656     CallArgList Args;
2657     QualType RetTy = getContext().VoidTy;
2658     if (E->getOp() != AtomicExpr::Store && !E->isCmpXChg())
2659       Args.add(RValue::get(EmitCastToVoidPtr(Dest)),
2660                getContext().VoidPtrTy);
2661     Args.add(RValue::get(EmitCastToVoidPtr(Ptr)),
2662              getContext().VoidPtrTy);
2663     if (E->getOp() != AtomicExpr::Load)
2664       Args.add(RValue::get(EmitCastToVoidPtr(Val1)),
2665                getContext().VoidPtrTy);
2666     if (E->isCmpXChg()) {
2667       Args.add(RValue::get(EmitCastToVoidPtr(Val2)),
2668                getContext().VoidPtrTy);
2669       RetTy = getContext().IntTy;
2670     }
2671     Args.add(RValue::get(llvm::ConstantInt::get(SizeTy, Size)),
2672              getContext().getSizeType());
2673     const CGFunctionInfo &FuncInfo =
2674         CGM.getTypes().getFunctionInfo(RetTy, Args, FunctionType::ExtInfo());
2675     llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FuncInfo, false);
2676     llvm::Constant *Func = CGM.CreateRuntimeFunction(FTy, LibCallName);
2677     RValue Res = EmitCall(FuncInfo, Func, ReturnValueSlot(), Args);
2678     if (E->isCmpXChg())
2679       return Res;
2680     if (E->getOp() == AtomicExpr::Store)
2681       return RValue::get(0);
2682     return ConvertTempToRValue(*this, E->getType(), Dest);
2683   }
2684 #endif
2685   llvm::Type *IPtrTy =
2686       llvm::IntegerType::get(getLLVMContext(), Size * 8)->getPointerTo();
2687   llvm::Value *OrigDest = Dest;
2688   Ptr = Builder.CreateBitCast(Ptr, IPtrTy);
2689   if (Val1) Val1 = Builder.CreateBitCast(Val1, IPtrTy);
2690   if (Val2) Val2 = Builder.CreateBitCast(Val2, IPtrTy);
2691   if (Dest && !E->isCmpXChg()) Dest = Builder.CreateBitCast(Dest, IPtrTy);
2692 
2693   if (isa<llvm::ConstantInt>(Order)) {
2694     int ord = cast<llvm::ConstantInt>(Order)->getZExtValue();
2695     switch (ord) {
2696     case 0:  // memory_order_relaxed
2697       EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
2698                    llvm::Monotonic);
2699       break;
2700     case 1:  // memory_order_consume
2701     case 2:  // memory_order_acquire
2702       EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
2703                    llvm::Acquire);
2704       break;
2705     case 3:  // memory_order_release
2706       EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
2707                    llvm::Release);
2708       break;
2709     case 4:  // memory_order_acq_rel
2710       EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
2711                    llvm::AcquireRelease);
2712       break;
2713     case 5:  // memory_order_seq_cst
2714       EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
2715                    llvm::SequentiallyConsistent);
2716       break;
2717     default: // invalid order
2718       // We should not ever get here normally, but it's hard to
2719       // enforce that in general.
2720       break;
2721     }
2722     if (E->getOp() == AtomicExpr::Store || E->getOp() == AtomicExpr::Init)
2723       return RValue::get(0);
2724     return ConvertTempToRValue(*this, E->getType(), OrigDest);
2725   }
2726 
2727   // Long case, when Order isn't obviously constant.
2728 
2729   // Create all the relevant BB's
2730   llvm::BasicBlock *MonotonicBB = 0, *AcquireBB = 0, *ReleaseBB = 0,
2731                    *AcqRelBB = 0, *SeqCstBB = 0;
2732   MonotonicBB = createBasicBlock("monotonic", CurFn);
2733   if (E->getOp() != AtomicExpr::Store)
2734     AcquireBB = createBasicBlock("acquire", CurFn);
2735   if (E->getOp() != AtomicExpr::Load)
2736     ReleaseBB = createBasicBlock("release", CurFn);
2737   if (E->getOp() != AtomicExpr::Load && E->getOp() != AtomicExpr::Store)
2738     AcqRelBB = createBasicBlock("acqrel", CurFn);
2739   SeqCstBB = createBasicBlock("seqcst", CurFn);
2740   llvm::BasicBlock *ContBB = createBasicBlock("atomic.continue", CurFn);
2741 
2742   // Create the switch for the split
2743   // MonotonicBB is arbitrarily chosen as the default case; in practice, this
2744   // doesn't matter unless someone is crazy enough to use something that
2745   // doesn't fold to a constant for the ordering.
2746   Order = Builder.CreateIntCast(Order, Builder.getInt32Ty(), false);
2747   llvm::SwitchInst *SI = Builder.CreateSwitch(Order, MonotonicBB);
2748 
2749   // Emit all the different atomics
2750   Builder.SetInsertPoint(MonotonicBB);
2751   EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
2752                llvm::Monotonic);
2753   Builder.CreateBr(ContBB);
2754   if (E->getOp() != AtomicExpr::Store) {
2755     Builder.SetInsertPoint(AcquireBB);
2756     EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
2757                  llvm::Acquire);
2758     Builder.CreateBr(ContBB);
2759     SI->addCase(Builder.getInt32(1), AcquireBB);
2760     SI->addCase(Builder.getInt32(2), AcquireBB);
2761   }
2762   if (E->getOp() != AtomicExpr::Load) {
2763     Builder.SetInsertPoint(ReleaseBB);
2764     EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
2765                  llvm::Release);
2766     Builder.CreateBr(ContBB);
2767     SI->addCase(Builder.getInt32(3), ReleaseBB);
2768   }
2769   if (E->getOp() != AtomicExpr::Load && E->getOp() != AtomicExpr::Store) {
2770     Builder.SetInsertPoint(AcqRelBB);
2771     EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
2772                  llvm::AcquireRelease);
2773     Builder.CreateBr(ContBB);
2774     SI->addCase(Builder.getInt32(4), AcqRelBB);
2775   }
2776   Builder.SetInsertPoint(SeqCstBB);
2777   EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, Size, Align,
2778                llvm::SequentiallyConsistent);
2779   Builder.CreateBr(ContBB);
2780   SI->addCase(Builder.getInt32(5), SeqCstBB);
2781 
2782   // Cleanup and return
2783   Builder.SetInsertPoint(ContBB);
2784   if (E->getOp() == AtomicExpr::Store)
2785     return RValue::get(0);
2786   return ConvertTempToRValue(*this, E->getType(), OrigDest);
2787 }
2788 
2789 void CodeGenFunction::SetFPAccuracy(llvm::Value *Val, unsigned AccuracyN,
2790                                     unsigned AccuracyD) {
2791   assert(Val->getType()->isFPOrFPVectorTy());
2792   if (!AccuracyN || !isa<llvm::Instruction>(Val))
2793     return;
2794 
2795   llvm::Value *Vals[2];
2796   Vals[0] = llvm::ConstantInt::get(Int32Ty, AccuracyN);
2797   Vals[1] = llvm::ConstantInt::get(Int32Ty, AccuracyD);
2798   llvm::MDNode *Node = llvm::MDNode::get(getLLVMContext(), Vals);
2799 
2800   cast<llvm::Instruction>(Val)->setMetadata(llvm::LLVMContext::MD_fpaccuracy,
2801                                             Node);
2802 }
2803 
2804 namespace {
2805   struct LValueOrRValue {
2806     LValue LV;
2807     RValue RV;
2808   };
2809 }
2810 
2811 static LValueOrRValue emitPseudoObjectExpr(CodeGenFunction &CGF,
2812                                            const PseudoObjectExpr *E,
2813                                            bool forLValue,
2814                                            AggValueSlot slot) {
2815   llvm::SmallVector<CodeGenFunction::OpaqueValueMappingData, 4> opaques;
2816 
2817   // Find the result expression, if any.
2818   const Expr *resultExpr = E->getResultExpr();
2819   LValueOrRValue result;
2820 
2821   for (PseudoObjectExpr::const_semantics_iterator
2822          i = E->semantics_begin(), e = E->semantics_end(); i != e; ++i) {
2823     const Expr *semantic = *i;
2824 
2825     // If this semantic expression is an opaque value, bind it
2826     // to the result of its source expression.
2827     if (const OpaqueValueExpr *ov = dyn_cast<OpaqueValueExpr>(semantic)) {
2828 
2829       // If this is the result expression, we may need to evaluate
2830       // directly into the slot.
2831       typedef CodeGenFunction::OpaqueValueMappingData OVMA;
2832       OVMA opaqueData;
2833       if (ov == resultExpr && ov->isRValue() && !forLValue &&
2834           CodeGenFunction::hasAggregateLLVMType(ov->getType()) &&
2835           !ov->getType()->isAnyComplexType()) {
2836         CGF.EmitAggExpr(ov->getSourceExpr(), slot);
2837 
2838         LValue LV = CGF.MakeAddrLValue(slot.getAddr(), ov->getType());
2839         opaqueData = OVMA::bind(CGF, ov, LV);
2840         result.RV = slot.asRValue();
2841 
2842       // Otherwise, emit as normal.
2843       } else {
2844         opaqueData = OVMA::bind(CGF, ov, ov->getSourceExpr());
2845 
2846         // If this is the result, also evaluate the result now.
2847         if (ov == resultExpr) {
2848           if (forLValue)
2849             result.LV = CGF.EmitLValue(ov);
2850           else
2851             result.RV = CGF.EmitAnyExpr(ov, slot);
2852         }
2853       }
2854 
2855       opaques.push_back(opaqueData);
2856 
2857     // Otherwise, if the expression is the result, evaluate it
2858     // and remember the result.
2859     } else if (semantic == resultExpr) {
2860       if (forLValue)
2861         result.LV = CGF.EmitLValue(semantic);
2862       else
2863         result.RV = CGF.EmitAnyExpr(semantic, slot);
2864 
2865     // Otherwise, evaluate the expression in an ignored context.
2866     } else {
2867       CGF.EmitIgnoredExpr(semantic);
2868     }
2869   }
2870 
2871   // Unbind all the opaques now.
2872   for (unsigned i = 0, e = opaques.size(); i != e; ++i)
2873     opaques[i].unbind(CGF);
2874 
2875   return result;
2876 }
2877 
2878 RValue CodeGenFunction::EmitPseudoObjectRValue(const PseudoObjectExpr *E,
2879                                                AggValueSlot slot) {
2880   return emitPseudoObjectExpr(*this, E, false, slot).RV;
2881 }
2882 
2883 LValue CodeGenFunction::EmitPseudoObjectLValue(const PseudoObjectExpr *E) {
2884   return emitPseudoObjectExpr(*this, E, true, AggValueSlot::ignored()).LV;
2885 }
2886