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 "CGCXXABI.h"
16 #include "CGCall.h"
17 #include "CGDebugInfo.h"
18 #include "CGObjCRuntime.h"
19 #include "CGRecordLayout.h"
20 #include "CodeGenModule.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/ADT/Hashing.h"
26 #include "llvm/IR/DataLayout.h"
27 #include "llvm/IR/Intrinsics.h"
28 #include "llvm/IR/LLVMContext.h"
29 #include "llvm/IR/MDBuilder.h"
30 #include "llvm/Support/ConvertUTF.h"
31 
32 using namespace clang;
33 using namespace CodeGen;
34 
35 //===--------------------------------------------------------------------===//
36 //                        Miscellaneous Helper Methods
37 //===--------------------------------------------------------------------===//
38 
39 llvm::Value *CodeGenFunction::EmitCastToVoidPtr(llvm::Value *value) {
40   unsigned addressSpace =
41     cast<llvm::PointerType>(value->getType())->getAddressSpace();
42 
43   llvm::PointerType *destType = Int8PtrTy;
44   if (addressSpace)
45     destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace);
46 
47   if (value->getType() == destType) return value;
48   return Builder.CreateBitCast(value, destType);
49 }
50 
51 /// CreateTempAlloca - This creates a alloca and inserts it into the entry
52 /// block.
53 llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(llvm::Type *Ty,
54                                                     const Twine &Name) {
55   if (!Builder.isNamePreserving())
56     return new llvm::AllocaInst(Ty, 0, "", AllocaInsertPt);
57   return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
58 }
59 
60 void CodeGenFunction::InitTempAlloca(llvm::AllocaInst *Var,
61                                      llvm::Value *Init) {
62   llvm::StoreInst *Store = new llvm::StoreInst(Init, Var);
63   llvm::BasicBlock *Block = AllocaInsertPt->getParent();
64   Block->getInstList().insertAfter(&*AllocaInsertPt, Store);
65 }
66 
67 llvm::AllocaInst *CodeGenFunction::CreateIRTemp(QualType Ty,
68                                                 const Twine &Name) {
69   llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertType(Ty), Name);
70   // FIXME: Should we prefer the preferred type alignment here?
71   CharUnits Align = getContext().getTypeAlignInChars(Ty);
72   Alloc->setAlignment(Align.getQuantity());
73   return Alloc;
74 }
75 
76 llvm::AllocaInst *CodeGenFunction::CreateMemTemp(QualType Ty,
77                                                  const Twine &Name) {
78   llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertTypeForMem(Ty), Name);
79   // FIXME: Should we prefer the preferred type alignment here?
80   CharUnits Align = getContext().getTypeAlignInChars(Ty);
81   Alloc->setAlignment(Align.getQuantity());
82   return Alloc;
83 }
84 
85 /// EvaluateExprAsBool - Perform the usual unary conversions on the specified
86 /// expression and compare the result against zero, returning an Int1Ty value.
87 llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) {
88   if (const MemberPointerType *MPT = E->getType()->getAs<MemberPointerType>()) {
89     llvm::Value *MemPtr = EmitScalarExpr(E);
90     return CGM.getCXXABI().EmitMemberPointerIsNotNull(*this, MemPtr, MPT);
91   }
92 
93   QualType BoolTy = getContext().BoolTy;
94   if (!E->getType()->isAnyComplexType())
95     return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
96 
97   return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
98 }
99 
100 /// EmitIgnoredExpr - Emit code to compute the specified expression,
101 /// ignoring the result.
102 void CodeGenFunction::EmitIgnoredExpr(const Expr *E) {
103   if (E->isRValue())
104     return (void) EmitAnyExpr(E, AggValueSlot::ignored(), true);
105 
106   // Just emit it as an l-value and drop the result.
107   EmitLValue(E);
108 }
109 
110 /// EmitAnyExpr - Emit code to compute the specified expression which
111 /// can have any type.  The result is returned as an RValue struct.
112 /// If this is an aggregate expression, AggSlot indicates where the
113 /// result should be returned.
114 RValue CodeGenFunction::EmitAnyExpr(const Expr *E,
115                                     AggValueSlot aggSlot,
116                                     bool ignoreResult) {
117   switch (getEvaluationKind(E->getType())) {
118   case TEK_Scalar:
119     return RValue::get(EmitScalarExpr(E, ignoreResult));
120   case TEK_Complex:
121     return RValue::getComplex(EmitComplexExpr(E, ignoreResult, ignoreResult));
122   case TEK_Aggregate:
123     if (!ignoreResult && aggSlot.isIgnored())
124       aggSlot = CreateAggTemp(E->getType(), "agg-temp");
125     EmitAggExpr(E, aggSlot);
126     return aggSlot.asRValue();
127   }
128   llvm_unreachable("bad evaluation kind");
129 }
130 
131 /// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result will
132 /// always be accessible even if no aggregate location is provided.
133 RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E) {
134   AggValueSlot AggSlot = AggValueSlot::ignored();
135 
136   if (hasAggregateEvaluationKind(E->getType()))
137     AggSlot = CreateAggTemp(E->getType(), "agg.tmp");
138   return EmitAnyExpr(E, AggSlot);
139 }
140 
141 /// EmitAnyExprToMem - Evaluate an expression into a given memory
142 /// location.
143 void CodeGenFunction::EmitAnyExprToMem(const Expr *E,
144                                        llvm::Value *Location,
145                                        Qualifiers Quals,
146                                        bool IsInit) {
147   // FIXME: This function should take an LValue as an argument.
148   switch (getEvaluationKind(E->getType())) {
149   case TEK_Complex:
150     EmitComplexExprIntoLValue(E,
151                          MakeNaturalAlignAddrLValue(Location, E->getType()),
152                               /*isInit*/ false);
153     return;
154 
155   case TEK_Aggregate: {
156     CharUnits Alignment = getContext().getTypeAlignInChars(E->getType());
157     EmitAggExpr(E, AggValueSlot::forAddr(Location, Alignment, Quals,
158                                          AggValueSlot::IsDestructed_t(IsInit),
159                                          AggValueSlot::DoesNotNeedGCBarriers,
160                                          AggValueSlot::IsAliased_t(!IsInit)));
161     return;
162   }
163 
164   case TEK_Scalar: {
165     RValue RV = RValue::get(EmitScalarExpr(E, /*Ignore*/ false));
166     LValue LV = MakeAddrLValue(Location, E->getType());
167     EmitStoreThroughLValue(RV, LV);
168     return;
169   }
170   }
171   llvm_unreachable("bad evaluation kind");
172 }
173 
174 static llvm::Value *
175 CreateReferenceTemporary(CodeGenFunction &CGF, QualType Type,
176                          const NamedDecl *InitializedDecl) {
177   if (const VarDecl *VD = dyn_cast_or_null<VarDecl>(InitializedDecl)) {
178     if (VD->hasGlobalStorage()) {
179       SmallString<256> Name;
180       llvm::raw_svector_ostream Out(Name);
181       CGF.CGM.getCXXABI().getMangleContext().mangleReferenceTemporary(VD, Out);
182       Out.flush();
183 
184       llvm::Type *RefTempTy = CGF.ConvertTypeForMem(Type);
185 
186       // Create the reference temporary.
187       llvm::GlobalVariable *RefTemp =
188         new llvm::GlobalVariable(CGF.CGM.getModule(),
189                                  RefTempTy, /*isConstant=*/false,
190                                  llvm::GlobalValue::InternalLinkage,
191                                  llvm::Constant::getNullValue(RefTempTy),
192                                  Name.str());
193       // If we're binding to a thread_local variable, the temporary is also
194       // thread local.
195       if (VD->getTLSKind())
196         CGF.CGM.setTLSMode(RefTemp, *VD);
197       return RefTemp;
198     }
199   }
200 
201   return CGF.CreateMemTemp(Type, "ref.tmp");
202 }
203 
204 static llvm::Value *
205 EmitExprForReferenceBinding(CodeGenFunction &CGF, const Expr *E,
206                             llvm::Value *&ReferenceTemporary,
207                             const CXXDestructorDecl *&ReferenceTemporaryDtor,
208                             const InitListExpr *&ReferenceInitializerList,
209                             QualType &ObjCARCReferenceLifetimeType,
210                             const NamedDecl *InitializedDecl) {
211   const MaterializeTemporaryExpr *M = NULL;
212   E = E->findMaterializedTemporary(M);
213   // Objective-C++ ARC:
214   //   If we are binding a reference to a temporary that has ownership, we
215   //   need to perform retain/release operations on the temporary.
216   if (M && CGF.getLangOpts().ObjCAutoRefCount &&
217       M->getType()->isObjCLifetimeType() &&
218       (M->getType().getObjCLifetime() == Qualifiers::OCL_Strong ||
219        M->getType().getObjCLifetime() == Qualifiers::OCL_Weak ||
220        M->getType().getObjCLifetime() == Qualifiers::OCL_Autoreleasing))
221     ObjCARCReferenceLifetimeType = M->getType();
222 
223   if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(E)) {
224     CGF.enterFullExpression(EWC);
225     CodeGenFunction::RunCleanupsScope Scope(CGF);
226 
227     return EmitExprForReferenceBinding(CGF, EWC->getSubExpr(),
228                                        ReferenceTemporary,
229                                        ReferenceTemporaryDtor,
230                                        ReferenceInitializerList,
231                                        ObjCARCReferenceLifetimeType,
232                                        InitializedDecl);
233   }
234 
235   if (E->isGLValue()) {
236     // Emit the expression as an lvalue.
237     LValue LV = CGF.EmitLValue(E);
238     assert(LV.isSimple());
239     return LV.getAddress();
240   }
241 
242   if (!ObjCARCReferenceLifetimeType.isNull()) {
243     ReferenceTemporary = CreateReferenceTemporary(CGF,
244                                                 ObjCARCReferenceLifetimeType,
245                                                   InitializedDecl);
246 
247 
248     LValue RefTempDst = CGF.MakeAddrLValue(ReferenceTemporary,
249                                            ObjCARCReferenceLifetimeType);
250 
251     CGF.EmitScalarInit(E, dyn_cast_or_null<ValueDecl>(InitializedDecl),
252                        RefTempDst, false);
253 
254     bool ExtendsLifeOfTemporary = false;
255     if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(InitializedDecl)) {
256       if (Var->extendsLifetimeOfTemporary())
257         ExtendsLifeOfTemporary = true;
258     } else if (InitializedDecl && isa<FieldDecl>(InitializedDecl)) {
259       ExtendsLifeOfTemporary = true;
260     }
261 
262     if (!ExtendsLifeOfTemporary) {
263       // Since the lifetime of this temporary isn't going to be extended,
264       // we need to clean it up ourselves at the end of the full expression.
265       switch (ObjCARCReferenceLifetimeType.getObjCLifetime()) {
266       case Qualifiers::OCL_None:
267       case Qualifiers::OCL_ExplicitNone:
268       case Qualifiers::OCL_Autoreleasing:
269         break;
270 
271       case Qualifiers::OCL_Strong: {
272         assert(!ObjCARCReferenceLifetimeType->isArrayType());
273         CleanupKind cleanupKind = CGF.getARCCleanupKind();
274         CGF.pushDestroy(cleanupKind,
275                         ReferenceTemporary,
276                         ObjCARCReferenceLifetimeType,
277                         CodeGenFunction::destroyARCStrongImprecise,
278                         cleanupKind & EHCleanup);
279         break;
280       }
281 
282       case Qualifiers::OCL_Weak:
283         assert(!ObjCARCReferenceLifetimeType->isArrayType());
284         CGF.pushDestroy(NormalAndEHCleanup,
285                         ReferenceTemporary,
286                         ObjCARCReferenceLifetimeType,
287                         CodeGenFunction::destroyARCWeak,
288                         /*useEHCleanupForArray*/ true);
289         break;
290       }
291 
292       ObjCARCReferenceLifetimeType = QualType();
293     }
294 
295     return ReferenceTemporary;
296   }
297 
298   SmallVector<SubobjectAdjustment, 2> Adjustments;
299   E = E->skipRValueSubobjectAdjustments(Adjustments);
300   if (const OpaqueValueExpr *opaque = dyn_cast<OpaqueValueExpr>(E))
301     if (opaque->getType()->isRecordType())
302       return CGF.EmitOpaqueValueLValue(opaque).getAddress();
303 
304   // Create a reference temporary if necessary.
305   AggValueSlot AggSlot = AggValueSlot::ignored();
306   if (CGF.hasAggregateEvaluationKind(E->getType())) {
307     ReferenceTemporary = CreateReferenceTemporary(CGF, E->getType(),
308                                                   InitializedDecl);
309     CharUnits Alignment = CGF.getContext().getTypeAlignInChars(E->getType());
310     AggValueSlot::IsDestructed_t isDestructed
311       = AggValueSlot::IsDestructed_t(InitializedDecl != 0);
312     AggSlot = AggValueSlot::forAddr(ReferenceTemporary, Alignment,
313                                     Qualifiers(), isDestructed,
314                                     AggValueSlot::DoesNotNeedGCBarriers,
315                                     AggValueSlot::IsNotAliased);
316   }
317 
318   if (InitializedDecl) {
319     if (const InitListExpr *ILE = dyn_cast<InitListExpr>(E)) {
320       if (ILE->initializesStdInitializerList()) {
321         ReferenceInitializerList = ILE;
322       }
323     }
324     else if (const RecordType *RT =
325                E->getType()->getBaseElementTypeUnsafe()->getAs<RecordType>()){
326       // Get the destructor for the reference temporary.
327       CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RT->getDecl());
328       if (!ClassDecl->hasTrivialDestructor())
329         ReferenceTemporaryDtor = ClassDecl->getDestructor();
330     }
331   }
332 
333   RValue RV = CGF.EmitAnyExpr(E, AggSlot);
334 
335   // Check if need to perform derived-to-base casts and/or field accesses, to
336   // get from the temporary object we created (and, potentially, for which we
337   // extended the lifetime) to the subobject we're binding the reference to.
338   if (!Adjustments.empty()) {
339     llvm::Value *Object = RV.getAggregateAddr();
340     for (unsigned I = Adjustments.size(); I != 0; --I) {
341       SubobjectAdjustment &Adjustment = Adjustments[I-1];
342       switch (Adjustment.Kind) {
343       case SubobjectAdjustment::DerivedToBaseAdjustment:
344         Object =
345             CGF.GetAddressOfBaseClass(Object,
346                                       Adjustment.DerivedToBase.DerivedClass,
347                             Adjustment.DerivedToBase.BasePath->path_begin(),
348                             Adjustment.DerivedToBase.BasePath->path_end(),
349                                       /*NullCheckValue=*/false);
350         break;
351 
352       case SubobjectAdjustment::FieldAdjustment: {
353         LValue LV = CGF.MakeAddrLValue(Object, E->getType());
354         LV = CGF.EmitLValueForField(LV, Adjustment.Field);
355         if (LV.isSimple()) {
356           Object = LV.getAddress();
357           break;
358         }
359 
360         // For non-simple lvalues, we actually have to create a copy of
361         // the object we're binding to.
362         QualType T = Adjustment.Field->getType().getNonReferenceType()
363                                                 .getUnqualifiedType();
364         Object = CreateReferenceTemporary(CGF, T, InitializedDecl);
365         LValue TempLV = CGF.MakeAddrLValue(Object,
366                                            Adjustment.Field->getType());
367         CGF.EmitStoreThroughLValue(CGF.EmitLoadOfLValue(LV), TempLV);
368         break;
369       }
370 
371       case SubobjectAdjustment::MemberPointerAdjustment: {
372         llvm::Value *Ptr = CGF.EmitScalarExpr(Adjustment.Ptr.RHS);
373         Object = CGF.CGM.getCXXABI().EmitMemberDataPointerAddress(
374                       CGF, Object, Ptr, Adjustment.Ptr.MPT);
375         break;
376       }
377       }
378     }
379 
380     return Object;
381   }
382 
383   if (RV.isAggregate())
384     return RV.getAggregateAddr();
385 
386   // Create a temporary variable that we can bind the reference to.
387   ReferenceTemporary = CreateReferenceTemporary(CGF, E->getType(),
388                                                 InitializedDecl);
389 
390 
391   LValue tempLV = CGF.MakeNaturalAlignAddrLValue(ReferenceTemporary,
392                                                  E->getType());
393   if (RV.isScalar())
394     CGF.EmitStoreOfScalar(RV.getScalarVal(), tempLV, /*init*/ true);
395   else
396     CGF.EmitStoreOfComplex(RV.getComplexVal(), tempLV, /*init*/ true);
397   return ReferenceTemporary;
398 }
399 
400 RValue
401 CodeGenFunction::EmitReferenceBindingToExpr(const Expr *E,
402                                             const NamedDecl *InitializedDecl) {
403   llvm::Value *ReferenceTemporary = 0;
404   const CXXDestructorDecl *ReferenceTemporaryDtor = 0;
405   const InitListExpr *ReferenceInitializerList = 0;
406   QualType ObjCARCReferenceLifetimeType;
407   llvm::Value *Value = EmitExprForReferenceBinding(*this, E, ReferenceTemporary,
408                                                    ReferenceTemporaryDtor,
409                                                    ReferenceInitializerList,
410                                                    ObjCARCReferenceLifetimeType,
411                                                    InitializedDecl);
412   if (SanitizePerformTypeCheck && !E->getType()->isFunctionType()) {
413     // C++11 [dcl.ref]p5 (as amended by core issue 453):
414     //   If a glvalue to which a reference is directly bound designates neither
415     //   an existing object or function of an appropriate type nor a region of
416     //   storage of suitable size and alignment to contain an object of the
417     //   reference's type, the behavior is undefined.
418     QualType Ty = E->getType();
419     EmitTypeCheck(TCK_ReferenceBinding, E->getExprLoc(), Value, Ty);
420   }
421   if (!ReferenceTemporaryDtor && !ReferenceInitializerList &&
422       ObjCARCReferenceLifetimeType.isNull())
423     return RValue::get(Value);
424 
425   // Make sure to call the destructor for the reference temporary.
426   const VarDecl *VD = dyn_cast_or_null<VarDecl>(InitializedDecl);
427   if (VD && VD->hasGlobalStorage()) {
428     if (ReferenceTemporaryDtor) {
429       llvm::Constant *CleanupFn;
430       llvm::Constant *CleanupArg;
431       if (E->getType()->isArrayType()) {
432         CleanupFn = CodeGenFunction(CGM).generateDestroyHelper(
433             cast<llvm::Constant>(ReferenceTemporary), E->getType(),
434             destroyCXXObject, getLangOpts().Exceptions);
435         CleanupArg = llvm::Constant::getNullValue(Int8PtrTy);
436       } else {
437         CleanupFn =
438           CGM.GetAddrOfCXXDestructor(ReferenceTemporaryDtor, Dtor_Complete);
439         CleanupArg = cast<llvm::Constant>(ReferenceTemporary);
440       }
441       CGM.getCXXABI().registerGlobalDtor(*this, *VD, CleanupFn, CleanupArg);
442     } else if (ReferenceInitializerList) {
443       // FIXME: This is wrong. We need to register a global destructor to clean
444       // up the initializer_list object, rather than adding it as a local
445       // cleanup.
446       EmitStdInitializerListCleanup(ReferenceTemporary,
447                                     ReferenceInitializerList);
448     } else {
449       assert(!ObjCARCReferenceLifetimeType.isNull() && !VD->getTLSKind());
450       // Note: We intentionally do not register a global "destructor" to
451       // release the object.
452     }
453 
454     return RValue::get(Value);
455   }
456 
457   if (ReferenceTemporaryDtor) {
458     if (E->getType()->isArrayType())
459       pushDestroy(NormalAndEHCleanup, ReferenceTemporary, E->getType(),
460                   destroyCXXObject, getLangOpts().Exceptions);
461     else
462       PushDestructorCleanup(ReferenceTemporaryDtor, ReferenceTemporary);
463   } else if (ReferenceInitializerList) {
464     EmitStdInitializerListCleanup(ReferenceTemporary,
465                                   ReferenceInitializerList);
466   } else {
467     switch (ObjCARCReferenceLifetimeType.getObjCLifetime()) {
468     case Qualifiers::OCL_None:
469       llvm_unreachable(
470                       "Not a reference temporary that needs to be deallocated");
471     case Qualifiers::OCL_ExplicitNone:
472     case Qualifiers::OCL_Autoreleasing:
473       // Nothing to do.
474       break;
475 
476     case Qualifiers::OCL_Strong: {
477       bool precise = VD && VD->hasAttr<ObjCPreciseLifetimeAttr>();
478       CleanupKind cleanupKind = getARCCleanupKind();
479       pushDestroy(cleanupKind, ReferenceTemporary, ObjCARCReferenceLifetimeType,
480                   precise ? destroyARCStrongPrecise : destroyARCStrongImprecise,
481                   cleanupKind & EHCleanup);
482       break;
483     }
484 
485     case Qualifiers::OCL_Weak: {
486       // __weak objects always get EH cleanups; otherwise, exceptions
487       // could cause really nasty crashes instead of mere leaks.
488       pushDestroy(NormalAndEHCleanup, ReferenceTemporary,
489                   ObjCARCReferenceLifetimeType, destroyARCWeak, true);
490       break;
491     }
492     }
493   }
494 
495   return RValue::get(Value);
496 }
497 
498 
499 /// getAccessedFieldNo - Given an encoded value and a result number, return the
500 /// input field number being accessed.
501 unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx,
502                                              const llvm::Constant *Elts) {
503   return cast<llvm::ConstantInt>(Elts->getAggregateElement(Idx))
504       ->getZExtValue();
505 }
506 
507 /// Emit the hash_16_bytes function from include/llvm/ADT/Hashing.h.
508 static llvm::Value *emitHash16Bytes(CGBuilderTy &Builder, llvm::Value *Low,
509                                     llvm::Value *High) {
510   llvm::Value *KMul = Builder.getInt64(0x9ddfea08eb382d69ULL);
511   llvm::Value *K47 = Builder.getInt64(47);
512   llvm::Value *A0 = Builder.CreateMul(Builder.CreateXor(Low, High), KMul);
513   llvm::Value *A1 = Builder.CreateXor(Builder.CreateLShr(A0, K47), A0);
514   llvm::Value *B0 = Builder.CreateMul(Builder.CreateXor(High, A1), KMul);
515   llvm::Value *B1 = Builder.CreateXor(Builder.CreateLShr(B0, K47), B0);
516   return Builder.CreateMul(B1, KMul);
517 }
518 
519 void CodeGenFunction::EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc,
520                                     llvm::Value *Address,
521                                     QualType Ty, CharUnits Alignment) {
522   if (!SanitizePerformTypeCheck)
523     return;
524 
525   // Don't check pointers outside the default address space. The null check
526   // isn't correct, the object-size check isn't supported by LLVM, and we can't
527   // communicate the addresses to the runtime handler for the vptr check.
528   if (Address->getType()->getPointerAddressSpace())
529     return;
530 
531   llvm::Value *Cond = 0;
532   llvm::BasicBlock *Done = 0;
533 
534   if (SanOpts->Null) {
535     // The glvalue must not be an empty glvalue.
536     Cond = Builder.CreateICmpNE(
537         Address, llvm::Constant::getNullValue(Address->getType()));
538 
539     if (TCK == TCK_DowncastPointer) {
540       // When performing a pointer downcast, it's OK if the value is null.
541       // Skip the remaining checks in that case.
542       Done = createBasicBlock("null");
543       llvm::BasicBlock *Rest = createBasicBlock("not.null");
544       Builder.CreateCondBr(Cond, Rest, Done);
545       EmitBlock(Rest);
546       Cond = 0;
547     }
548   }
549 
550   if (SanOpts->ObjectSize && !Ty->isIncompleteType()) {
551     uint64_t Size = getContext().getTypeSizeInChars(Ty).getQuantity();
552 
553     // The glvalue must refer to a large enough storage region.
554     // FIXME: If Address Sanitizer is enabled, insert dynamic instrumentation
555     //        to check this.
556     llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::objectsize, IntPtrTy);
557     llvm::Value *Min = Builder.getFalse();
558     llvm::Value *CastAddr = Builder.CreateBitCast(Address, Int8PtrTy);
559     llvm::Value *LargeEnough =
560         Builder.CreateICmpUGE(Builder.CreateCall2(F, CastAddr, Min),
561                               llvm::ConstantInt::get(IntPtrTy, Size));
562     Cond = Cond ? Builder.CreateAnd(Cond, LargeEnough) : LargeEnough;
563   }
564 
565   uint64_t AlignVal = 0;
566 
567   if (SanOpts->Alignment) {
568     AlignVal = Alignment.getQuantity();
569     if (!Ty->isIncompleteType() && !AlignVal)
570       AlignVal = getContext().getTypeAlignInChars(Ty).getQuantity();
571 
572     // The glvalue must be suitably aligned.
573     if (AlignVal) {
574       llvm::Value *Align =
575           Builder.CreateAnd(Builder.CreatePtrToInt(Address, IntPtrTy),
576                             llvm::ConstantInt::get(IntPtrTy, AlignVal - 1));
577       llvm::Value *Aligned =
578         Builder.CreateICmpEQ(Align, llvm::ConstantInt::get(IntPtrTy, 0));
579       Cond = Cond ? Builder.CreateAnd(Cond, Aligned) : Aligned;
580     }
581   }
582 
583   if (Cond) {
584     llvm::Constant *StaticData[] = {
585       EmitCheckSourceLocation(Loc),
586       EmitCheckTypeDescriptor(Ty),
587       llvm::ConstantInt::get(SizeTy, AlignVal),
588       llvm::ConstantInt::get(Int8Ty, TCK)
589     };
590     EmitCheck(Cond, "type_mismatch", StaticData, Address, CRK_Recoverable);
591   }
592 
593   // If possible, check that the vptr indicates that there is a subobject of
594   // type Ty at offset zero within this object.
595   //
596   // C++11 [basic.life]p5,6:
597   //   [For storage which does not refer to an object within its lifetime]
598   //   The program has undefined behavior if:
599   //    -- the [pointer or glvalue] is used to access a non-static data member
600   //       or call a non-static member function
601   CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
602   if (SanOpts->Vptr &&
603       (TCK == TCK_MemberAccess || TCK == TCK_MemberCall ||
604        TCK == TCK_DowncastPointer || TCK == TCK_DowncastReference) &&
605       RD && RD->hasDefinition() && RD->isDynamicClass()) {
606     // Compute a hash of the mangled name of the type.
607     //
608     // FIXME: This is not guaranteed to be deterministic! Move to a
609     //        fingerprinting mechanism once LLVM provides one. For the time
610     //        being the implementation happens to be deterministic.
611     SmallString<64> MangledName;
612     llvm::raw_svector_ostream Out(MangledName);
613     CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty.getUnqualifiedType(),
614                                                      Out);
615     llvm::hash_code TypeHash = hash_value(Out.str());
616 
617     // Load the vptr, and compute hash_16_bytes(TypeHash, vptr).
618     llvm::Value *Low = llvm::ConstantInt::get(Int64Ty, TypeHash);
619     llvm::Type *VPtrTy = llvm::PointerType::get(IntPtrTy, 0);
620     llvm::Value *VPtrAddr = Builder.CreateBitCast(Address, VPtrTy);
621     llvm::Value *VPtrVal = Builder.CreateLoad(VPtrAddr);
622     llvm::Value *High = Builder.CreateZExt(VPtrVal, Int64Ty);
623 
624     llvm::Value *Hash = emitHash16Bytes(Builder, Low, High);
625     Hash = Builder.CreateTrunc(Hash, IntPtrTy);
626 
627     // Look the hash up in our cache.
628     const int CacheSize = 128;
629     llvm::Type *HashTable = llvm::ArrayType::get(IntPtrTy, CacheSize);
630     llvm::Value *Cache = CGM.CreateRuntimeVariable(HashTable,
631                                                    "__ubsan_vptr_type_cache");
632     llvm::Value *Slot = Builder.CreateAnd(Hash,
633                                           llvm::ConstantInt::get(IntPtrTy,
634                                                                  CacheSize-1));
635     llvm::Value *Indices[] = { Builder.getInt32(0), Slot };
636     llvm::Value *CacheVal =
637       Builder.CreateLoad(Builder.CreateInBoundsGEP(Cache, Indices));
638 
639     // If the hash isn't in the cache, call a runtime handler to perform the
640     // hard work of checking whether the vptr is for an object of the right
641     // type. This will either fill in the cache and return, or produce a
642     // diagnostic.
643     llvm::Constant *StaticData[] = {
644       EmitCheckSourceLocation(Loc),
645       EmitCheckTypeDescriptor(Ty),
646       CGM.GetAddrOfRTTIDescriptor(Ty.getUnqualifiedType()),
647       llvm::ConstantInt::get(Int8Ty, TCK)
648     };
649     llvm::Value *DynamicData[] = { Address, Hash };
650     EmitCheck(Builder.CreateICmpEQ(CacheVal, Hash),
651               "dynamic_type_cache_miss", StaticData, DynamicData,
652               CRK_AlwaysRecoverable);
653   }
654 
655   if (Done) {
656     Builder.CreateBr(Done);
657     EmitBlock(Done);
658   }
659 }
660 
661 /// Determine whether this expression refers to a flexible array member in a
662 /// struct. We disable array bounds checks for such members.
663 static bool isFlexibleArrayMemberExpr(const Expr *E) {
664   // For compatibility with existing code, we treat arrays of length 0 or
665   // 1 as flexible array members.
666   const ArrayType *AT = E->getType()->castAsArrayTypeUnsafe();
667   if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
668     if (CAT->getSize().ugt(1))
669       return false;
670   } else if (!isa<IncompleteArrayType>(AT))
671     return false;
672 
673   E = E->IgnoreParens();
674 
675   // A flexible array member must be the last member in the class.
676   if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
677     // FIXME: If the base type of the member expr is not FD->getParent(),
678     // this should not be treated as a flexible array member access.
679     if (const FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
680       RecordDecl::field_iterator FI(
681           DeclContext::decl_iterator(const_cast<FieldDecl *>(FD)));
682       return ++FI == FD->getParent()->field_end();
683     }
684   }
685 
686   return false;
687 }
688 
689 /// If Base is known to point to the start of an array, return the length of
690 /// that array. Return 0 if the length cannot be determined.
691 static llvm::Value *getArrayIndexingBound(
692     CodeGenFunction &CGF, const Expr *Base, QualType &IndexedType) {
693   // For the vector indexing extension, the bound is the number of elements.
694   if (const VectorType *VT = Base->getType()->getAs<VectorType>()) {
695     IndexedType = Base->getType();
696     return CGF.Builder.getInt32(VT->getNumElements());
697   }
698 
699   Base = Base->IgnoreParens();
700 
701   if (const CastExpr *CE = dyn_cast<CastExpr>(Base)) {
702     if (CE->getCastKind() == CK_ArrayToPointerDecay &&
703         !isFlexibleArrayMemberExpr(CE->getSubExpr())) {
704       IndexedType = CE->getSubExpr()->getType();
705       const ArrayType *AT = IndexedType->castAsArrayTypeUnsafe();
706       if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
707         return CGF.Builder.getInt(CAT->getSize());
708       else if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(AT))
709         return CGF.getVLASize(VAT).first;
710     }
711   }
712 
713   return 0;
714 }
715 
716 void CodeGenFunction::EmitBoundsCheck(const Expr *E, const Expr *Base,
717                                       llvm::Value *Index, QualType IndexType,
718                                       bool Accessed) {
719   assert(SanOpts->Bounds && "should not be called unless adding bounds checks");
720 
721   QualType IndexedType;
722   llvm::Value *Bound = getArrayIndexingBound(*this, Base, IndexedType);
723   if (!Bound)
724     return;
725 
726   bool IndexSigned = IndexType->isSignedIntegerOrEnumerationType();
727   llvm::Value *IndexVal = Builder.CreateIntCast(Index, SizeTy, IndexSigned);
728   llvm::Value *BoundVal = Builder.CreateIntCast(Bound, SizeTy, false);
729 
730   llvm::Constant *StaticData[] = {
731     EmitCheckSourceLocation(E->getExprLoc()),
732     EmitCheckTypeDescriptor(IndexedType),
733     EmitCheckTypeDescriptor(IndexType)
734   };
735   llvm::Value *Check = Accessed ? Builder.CreateICmpULT(IndexVal, BoundVal)
736                                 : Builder.CreateICmpULE(IndexVal, BoundVal);
737   EmitCheck(Check, "out_of_bounds", StaticData, Index, CRK_Recoverable);
738 }
739 
740 
741 CodeGenFunction::ComplexPairTy CodeGenFunction::
742 EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV,
743                          bool isInc, bool isPre) {
744   ComplexPairTy InVal = EmitLoadOfComplex(LV);
745 
746   llvm::Value *NextVal;
747   if (isa<llvm::IntegerType>(InVal.first->getType())) {
748     uint64_t AmountVal = isInc ? 1 : -1;
749     NextVal = llvm::ConstantInt::get(InVal.first->getType(), AmountVal, true);
750 
751     // Add the inc/dec to the real part.
752     NextVal = Builder.CreateAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
753   } else {
754     QualType ElemTy = E->getType()->getAs<ComplexType>()->getElementType();
755     llvm::APFloat FVal(getContext().getFloatTypeSemantics(ElemTy), 1);
756     if (!isInc)
757       FVal.changeSign();
758     NextVal = llvm::ConstantFP::get(getLLVMContext(), FVal);
759 
760     // Add the inc/dec to the real part.
761     NextVal = Builder.CreateFAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
762   }
763 
764   ComplexPairTy IncVal(NextVal, InVal.second);
765 
766   // Store the updated result through the lvalue.
767   EmitStoreOfComplex(IncVal, LV, /*init*/ false);
768 
769   // If this is a postinc, return the value read from memory, otherwise use the
770   // updated value.
771   return isPre ? IncVal : InVal;
772 }
773 
774 
775 //===----------------------------------------------------------------------===//
776 //                         LValue Expression Emission
777 //===----------------------------------------------------------------------===//
778 
779 RValue CodeGenFunction::GetUndefRValue(QualType Ty) {
780   if (Ty->isVoidType())
781     return RValue::get(0);
782 
783   switch (getEvaluationKind(Ty)) {
784   case TEK_Complex: {
785     llvm::Type *EltTy =
786       ConvertType(Ty->castAs<ComplexType>()->getElementType());
787     llvm::Value *U = llvm::UndefValue::get(EltTy);
788     return RValue::getComplex(std::make_pair(U, U));
789   }
790 
791   // If this is a use of an undefined aggregate type, the aggregate must have an
792   // identifiable address.  Just because the contents of the value are undefined
793   // doesn't mean that the address can't be taken and compared.
794   case TEK_Aggregate: {
795     llvm::Value *DestPtr = CreateMemTemp(Ty, "undef.agg.tmp");
796     return RValue::getAggregate(DestPtr);
797   }
798 
799   case TEK_Scalar:
800     return RValue::get(llvm::UndefValue::get(ConvertType(Ty)));
801   }
802   llvm_unreachable("bad evaluation kind");
803 }
804 
805 RValue CodeGenFunction::EmitUnsupportedRValue(const Expr *E,
806                                               const char *Name) {
807   ErrorUnsupported(E, Name);
808   return GetUndefRValue(E->getType());
809 }
810 
811 LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E,
812                                               const char *Name) {
813   ErrorUnsupported(E, Name);
814   llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
815   return MakeAddrLValue(llvm::UndefValue::get(Ty), E->getType());
816 }
817 
818 LValue CodeGenFunction::EmitCheckedLValue(const Expr *E, TypeCheckKind TCK) {
819   LValue LV;
820   if (SanOpts->Bounds && isa<ArraySubscriptExpr>(E))
821     LV = EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E), /*Accessed*/true);
822   else
823     LV = EmitLValue(E);
824   if (!isa<DeclRefExpr>(E) && !LV.isBitField() && LV.isSimple())
825     EmitTypeCheck(TCK, E->getExprLoc(), LV.getAddress(),
826                   E->getType(), LV.getAlignment());
827   return LV;
828 }
829 
830 /// EmitLValue - Emit code to compute a designator that specifies the location
831 /// of the expression.
832 ///
833 /// This can return one of two things: a simple address or a bitfield reference.
834 /// In either case, the LLVM Value* in the LValue structure is guaranteed to be
835 /// an LLVM pointer type.
836 ///
837 /// If this returns a bitfield reference, nothing about the pointee type of the
838 /// LLVM value is known: For example, it may not be a pointer to an integer.
839 ///
840 /// If this returns a normal address, and if the lvalue's C type is fixed size,
841 /// this method guarantees that the returned pointer type will point to an LLVM
842 /// type of the same size of the lvalue's type.  If the lvalue has a variable
843 /// length type, this is not possible.
844 ///
845 LValue CodeGenFunction::EmitLValue(const Expr *E) {
846   switch (E->getStmtClass()) {
847   default: return EmitUnsupportedLValue(E, "l-value expression");
848 
849   case Expr::ObjCPropertyRefExprClass:
850     llvm_unreachable("cannot emit a property reference directly");
851 
852   case Expr::ObjCSelectorExprClass:
853     return EmitObjCSelectorLValue(cast<ObjCSelectorExpr>(E));
854   case Expr::ObjCIsaExprClass:
855     return EmitObjCIsaExpr(cast<ObjCIsaExpr>(E));
856   case Expr::BinaryOperatorClass:
857     return EmitBinaryOperatorLValue(cast<BinaryOperator>(E));
858   case Expr::CompoundAssignOperatorClass:
859     if (!E->getType()->isAnyComplexType())
860       return EmitCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
861     return EmitComplexCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
862   case Expr::CallExprClass:
863   case Expr::CXXMemberCallExprClass:
864   case Expr::CXXOperatorCallExprClass:
865   case Expr::UserDefinedLiteralClass:
866     return EmitCallExprLValue(cast<CallExpr>(E));
867   case Expr::VAArgExprClass:
868     return EmitVAArgExprLValue(cast<VAArgExpr>(E));
869   case Expr::DeclRefExprClass:
870     return EmitDeclRefLValue(cast<DeclRefExpr>(E));
871   case Expr::ParenExprClass:
872     return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
873   case Expr::GenericSelectionExprClass:
874     return EmitLValue(cast<GenericSelectionExpr>(E)->getResultExpr());
875   case Expr::PredefinedExprClass:
876     return EmitPredefinedLValue(cast<PredefinedExpr>(E));
877   case Expr::StringLiteralClass:
878     return EmitStringLiteralLValue(cast<StringLiteral>(E));
879   case Expr::ObjCEncodeExprClass:
880     return EmitObjCEncodeExprLValue(cast<ObjCEncodeExpr>(E));
881   case Expr::PseudoObjectExprClass:
882     return EmitPseudoObjectLValue(cast<PseudoObjectExpr>(E));
883   case Expr::InitListExprClass:
884     return EmitInitListLValue(cast<InitListExpr>(E));
885   case Expr::CXXTemporaryObjectExprClass:
886   case Expr::CXXConstructExprClass:
887     return EmitCXXConstructLValue(cast<CXXConstructExpr>(E));
888   case Expr::CXXBindTemporaryExprClass:
889     return EmitCXXBindTemporaryLValue(cast<CXXBindTemporaryExpr>(E));
890   case Expr::CXXUuidofExprClass:
891     return EmitCXXUuidofLValue(cast<CXXUuidofExpr>(E));
892   case Expr::LambdaExprClass:
893     return EmitLambdaLValue(cast<LambdaExpr>(E));
894 
895   case Expr::ExprWithCleanupsClass: {
896     const ExprWithCleanups *cleanups = cast<ExprWithCleanups>(E);
897     enterFullExpression(cleanups);
898     RunCleanupsScope Scope(*this);
899     return EmitLValue(cleanups->getSubExpr());
900   }
901 
902   case Expr::CXXScalarValueInitExprClass:
903     return EmitNullInitializationLValue(cast<CXXScalarValueInitExpr>(E));
904   case Expr::CXXDefaultArgExprClass:
905     return EmitLValue(cast<CXXDefaultArgExpr>(E)->getExpr());
906   case Expr::CXXDefaultInitExprClass: {
907     CXXDefaultInitExprScope Scope(*this);
908     return EmitLValue(cast<CXXDefaultInitExpr>(E)->getExpr());
909   }
910   case Expr::CXXTypeidExprClass:
911     return EmitCXXTypeidLValue(cast<CXXTypeidExpr>(E));
912 
913   case Expr::ObjCMessageExprClass:
914     return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
915   case Expr::ObjCIvarRefExprClass:
916     return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E));
917   case Expr::StmtExprClass:
918     return EmitStmtExprLValue(cast<StmtExpr>(E));
919   case Expr::UnaryOperatorClass:
920     return EmitUnaryOpLValue(cast<UnaryOperator>(E));
921   case Expr::ArraySubscriptExprClass:
922     return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E));
923   case Expr::ExtVectorElementExprClass:
924     return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E));
925   case Expr::MemberExprClass:
926     return EmitMemberExpr(cast<MemberExpr>(E));
927   case Expr::CompoundLiteralExprClass:
928     return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E));
929   case Expr::ConditionalOperatorClass:
930     return EmitConditionalOperatorLValue(cast<ConditionalOperator>(E));
931   case Expr::BinaryConditionalOperatorClass:
932     return EmitConditionalOperatorLValue(cast<BinaryConditionalOperator>(E));
933   case Expr::ChooseExprClass:
934     return EmitLValue(cast<ChooseExpr>(E)->getChosenSubExpr(getContext()));
935   case Expr::OpaqueValueExprClass:
936     return EmitOpaqueValueLValue(cast<OpaqueValueExpr>(E));
937   case Expr::SubstNonTypeTemplateParmExprClass:
938     return EmitLValue(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement());
939   case Expr::ImplicitCastExprClass:
940   case Expr::CStyleCastExprClass:
941   case Expr::CXXFunctionalCastExprClass:
942   case Expr::CXXStaticCastExprClass:
943   case Expr::CXXDynamicCastExprClass:
944   case Expr::CXXReinterpretCastExprClass:
945   case Expr::CXXConstCastExprClass:
946   case Expr::ObjCBridgedCastExprClass:
947     return EmitCastLValue(cast<CastExpr>(E));
948 
949   case Expr::MaterializeTemporaryExprClass:
950     return EmitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(E));
951   }
952 }
953 
954 /// Given an object of the given canonical type, can we safely copy a
955 /// value out of it based on its initializer?
956 static bool isConstantEmittableObjectType(QualType type) {
957   assert(type.isCanonical());
958   assert(!type->isReferenceType());
959 
960   // Must be const-qualified but non-volatile.
961   Qualifiers qs = type.getLocalQualifiers();
962   if (!qs.hasConst() || qs.hasVolatile()) return false;
963 
964   // Otherwise, all object types satisfy this except C++ classes with
965   // mutable subobjects or non-trivial copy/destroy behavior.
966   if (const RecordType *RT = dyn_cast<RecordType>(type))
967     if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl()))
968       if (RD->hasMutableFields() || !RD->isTrivial())
969         return false;
970 
971   return true;
972 }
973 
974 /// Can we constant-emit a load of a reference to a variable of the
975 /// given type?  This is different from predicates like
976 /// Decl::isUsableInConstantExpressions because we do want it to apply
977 /// in situations that don't necessarily satisfy the language's rules
978 /// for this (e.g. C++'s ODR-use rules).  For example, we want to able
979 /// to do this with const float variables even if those variables
980 /// aren't marked 'constexpr'.
981 enum ConstantEmissionKind {
982   CEK_None,
983   CEK_AsReferenceOnly,
984   CEK_AsValueOrReference,
985   CEK_AsValueOnly
986 };
987 static ConstantEmissionKind checkVarTypeForConstantEmission(QualType type) {
988   type = type.getCanonicalType();
989   if (const ReferenceType *ref = dyn_cast<ReferenceType>(type)) {
990     if (isConstantEmittableObjectType(ref->getPointeeType()))
991       return CEK_AsValueOrReference;
992     return CEK_AsReferenceOnly;
993   }
994   if (isConstantEmittableObjectType(type))
995     return CEK_AsValueOnly;
996   return CEK_None;
997 }
998 
999 /// Try to emit a reference to the given value without producing it as
1000 /// an l-value.  This is actually more than an optimization: we can't
1001 /// produce an l-value for variables that we never actually captured
1002 /// in a block or lambda, which means const int variables or constexpr
1003 /// literals or similar.
1004 CodeGenFunction::ConstantEmission
1005 CodeGenFunction::tryEmitAsConstant(DeclRefExpr *refExpr) {
1006   ValueDecl *value = refExpr->getDecl();
1007 
1008   // The value needs to be an enum constant or a constant variable.
1009   ConstantEmissionKind CEK;
1010   if (isa<ParmVarDecl>(value)) {
1011     CEK = CEK_None;
1012   } else if (VarDecl *var = dyn_cast<VarDecl>(value)) {
1013     CEK = checkVarTypeForConstantEmission(var->getType());
1014   } else if (isa<EnumConstantDecl>(value)) {
1015     CEK = CEK_AsValueOnly;
1016   } else {
1017     CEK = CEK_None;
1018   }
1019   if (CEK == CEK_None) return ConstantEmission();
1020 
1021   Expr::EvalResult result;
1022   bool resultIsReference;
1023   QualType resultType;
1024 
1025   // It's best to evaluate all the way as an r-value if that's permitted.
1026   if (CEK != CEK_AsReferenceOnly &&
1027       refExpr->EvaluateAsRValue(result, getContext())) {
1028     resultIsReference = false;
1029     resultType = refExpr->getType();
1030 
1031   // Otherwise, try to evaluate as an l-value.
1032   } else if (CEK != CEK_AsValueOnly &&
1033              refExpr->EvaluateAsLValue(result, getContext())) {
1034     resultIsReference = true;
1035     resultType = value->getType();
1036 
1037   // Failure.
1038   } else {
1039     return ConstantEmission();
1040   }
1041 
1042   // In any case, if the initializer has side-effects, abandon ship.
1043   if (result.HasSideEffects)
1044     return ConstantEmission();
1045 
1046   // Emit as a constant.
1047   llvm::Constant *C = CGM.EmitConstantValue(result.Val, resultType, this);
1048 
1049   // Make sure we emit a debug reference to the global variable.
1050   // This should probably fire even for
1051   if (isa<VarDecl>(value)) {
1052     if (!getContext().DeclMustBeEmitted(cast<VarDecl>(value)))
1053       EmitDeclRefExprDbgValue(refExpr, C);
1054   } else {
1055     assert(isa<EnumConstantDecl>(value));
1056     EmitDeclRefExprDbgValue(refExpr, C);
1057   }
1058 
1059   // If we emitted a reference constant, we need to dereference that.
1060   if (resultIsReference)
1061     return ConstantEmission::forReference(C);
1062 
1063   return ConstantEmission::forValue(C);
1064 }
1065 
1066 llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue) {
1067   return EmitLoadOfScalar(lvalue.getAddress(), lvalue.isVolatile(),
1068                           lvalue.getAlignment().getQuantity(),
1069                           lvalue.getType(), lvalue.getTBAAInfo(),
1070                           lvalue.getTBAABaseType(), lvalue.getTBAAOffset());
1071 }
1072 
1073 static bool hasBooleanRepresentation(QualType Ty) {
1074   if (Ty->isBooleanType())
1075     return true;
1076 
1077   if (const EnumType *ET = Ty->getAs<EnumType>())
1078     return ET->getDecl()->getIntegerType()->isBooleanType();
1079 
1080   if (const AtomicType *AT = Ty->getAs<AtomicType>())
1081     return hasBooleanRepresentation(AT->getValueType());
1082 
1083   return false;
1084 }
1085 
1086 static bool getRangeForType(CodeGenFunction &CGF, QualType Ty,
1087                             llvm::APInt &Min, llvm::APInt &End,
1088                             bool StrictEnums) {
1089   const EnumType *ET = Ty->getAs<EnumType>();
1090   bool IsRegularCPlusPlusEnum = CGF.getLangOpts().CPlusPlus && StrictEnums &&
1091                                 ET && !ET->getDecl()->isFixed();
1092   bool IsBool = hasBooleanRepresentation(Ty);
1093   if (!IsBool && !IsRegularCPlusPlusEnum)
1094     return false;
1095 
1096   if (IsBool) {
1097     Min = llvm::APInt(CGF.getContext().getTypeSize(Ty), 0);
1098     End = llvm::APInt(CGF.getContext().getTypeSize(Ty), 2);
1099   } else {
1100     const EnumDecl *ED = ET->getDecl();
1101     llvm::Type *LTy = CGF.ConvertTypeForMem(ED->getIntegerType());
1102     unsigned Bitwidth = LTy->getScalarSizeInBits();
1103     unsigned NumNegativeBits = ED->getNumNegativeBits();
1104     unsigned NumPositiveBits = ED->getNumPositiveBits();
1105 
1106     if (NumNegativeBits) {
1107       unsigned NumBits = std::max(NumNegativeBits, NumPositiveBits + 1);
1108       assert(NumBits <= Bitwidth);
1109       End = llvm::APInt(Bitwidth, 1) << (NumBits - 1);
1110       Min = -End;
1111     } else {
1112       assert(NumPositiveBits <= Bitwidth);
1113       End = llvm::APInt(Bitwidth, 1) << NumPositiveBits;
1114       Min = llvm::APInt(Bitwidth, 0);
1115     }
1116   }
1117   return true;
1118 }
1119 
1120 llvm::MDNode *CodeGenFunction::getRangeForLoadFromType(QualType Ty) {
1121   llvm::APInt Min, End;
1122   if (!getRangeForType(*this, Ty, Min, End,
1123                        CGM.getCodeGenOpts().StrictEnums))
1124     return 0;
1125 
1126   llvm::MDBuilder MDHelper(getLLVMContext());
1127   return MDHelper.createRange(Min, End);
1128 }
1129 
1130 llvm::Value *CodeGenFunction::EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
1131                                               unsigned Alignment, QualType Ty,
1132                                               llvm::MDNode *TBAAInfo,
1133                                               QualType TBAABaseType,
1134                                               uint64_t TBAAOffset) {
1135   // For better performance, handle vector loads differently.
1136   if (Ty->isVectorType()) {
1137     llvm::Value *V;
1138     const llvm::Type *EltTy =
1139     cast<llvm::PointerType>(Addr->getType())->getElementType();
1140 
1141     const llvm::VectorType *VTy = cast<llvm::VectorType>(EltTy);
1142 
1143     // Handle vectors of size 3, like size 4 for better performance.
1144     if (VTy->getNumElements() == 3) {
1145 
1146       // Bitcast to vec4 type.
1147       llvm::VectorType *vec4Ty = llvm::VectorType::get(VTy->getElementType(),
1148                                                          4);
1149       llvm::PointerType *ptVec4Ty =
1150       llvm::PointerType::get(vec4Ty,
1151                              (cast<llvm::PointerType>(
1152                                       Addr->getType()))->getAddressSpace());
1153       llvm::Value *Cast = Builder.CreateBitCast(Addr, ptVec4Ty,
1154                                                 "castToVec4");
1155       // Now load value.
1156       llvm::Value *LoadVal = Builder.CreateLoad(Cast, Volatile, "loadVec4");
1157 
1158       // Shuffle vector to get vec3.
1159       llvm::Constant *Mask[] = {
1160         llvm::ConstantInt::get(llvm::Type::getInt32Ty(getLLVMContext()), 0),
1161         llvm::ConstantInt::get(llvm::Type::getInt32Ty(getLLVMContext()), 1),
1162         llvm::ConstantInt::get(llvm::Type::getInt32Ty(getLLVMContext()), 2)
1163       };
1164 
1165       llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
1166       V = Builder.CreateShuffleVector(LoadVal,
1167                                       llvm::UndefValue::get(vec4Ty),
1168                                       MaskV, "extractVec");
1169       return EmitFromMemory(V, Ty);
1170     }
1171   }
1172 
1173   // Atomic operations have to be done on integral types.
1174   if (Ty->isAtomicType()) {
1175     LValue lvalue = LValue::MakeAddr(Addr, Ty,
1176                                      CharUnits::fromQuantity(Alignment),
1177                                      getContext(), TBAAInfo);
1178     return EmitAtomicLoad(lvalue).getScalarVal();
1179   }
1180 
1181   llvm::LoadInst *Load = Builder.CreateLoad(Addr);
1182   if (Volatile)
1183     Load->setVolatile(true);
1184   if (Alignment)
1185     Load->setAlignment(Alignment);
1186   if (TBAAInfo) {
1187     llvm::MDNode *TBAAPath = CGM.getTBAAStructTagInfo(TBAABaseType, TBAAInfo,
1188                                                       TBAAOffset);
1189     CGM.DecorateInstruction(Load, TBAAPath, false/*ConvertTypeToTag*/);
1190   }
1191 
1192   if ((SanOpts->Bool && hasBooleanRepresentation(Ty)) ||
1193       (SanOpts->Enum && Ty->getAs<EnumType>())) {
1194     llvm::APInt Min, End;
1195     if (getRangeForType(*this, Ty, Min, End, true)) {
1196       --End;
1197       llvm::Value *Check;
1198       if (!Min)
1199         Check = Builder.CreateICmpULE(
1200           Load, llvm::ConstantInt::get(getLLVMContext(), End));
1201       else {
1202         llvm::Value *Upper = Builder.CreateICmpSLE(
1203           Load, llvm::ConstantInt::get(getLLVMContext(), End));
1204         llvm::Value *Lower = Builder.CreateICmpSGE(
1205           Load, llvm::ConstantInt::get(getLLVMContext(), Min));
1206         Check = Builder.CreateAnd(Upper, Lower);
1207       }
1208       // FIXME: Provide a SourceLocation.
1209       EmitCheck(Check, "load_invalid_value", EmitCheckTypeDescriptor(Ty),
1210                 EmitCheckValue(Load), CRK_Recoverable);
1211     }
1212   } else if (CGM.getCodeGenOpts().OptimizationLevel > 0)
1213     if (llvm::MDNode *RangeInfo = getRangeForLoadFromType(Ty))
1214       Load->setMetadata(llvm::LLVMContext::MD_range, RangeInfo);
1215 
1216   return EmitFromMemory(Load, Ty);
1217 }
1218 
1219 llvm::Value *CodeGenFunction::EmitToMemory(llvm::Value *Value, QualType Ty) {
1220   // Bool has a different representation in memory than in registers.
1221   if (hasBooleanRepresentation(Ty)) {
1222     // This should really always be an i1, but sometimes it's already
1223     // an i8, and it's awkward to track those cases down.
1224     if (Value->getType()->isIntegerTy(1))
1225       return Builder.CreateZExt(Value, ConvertTypeForMem(Ty), "frombool");
1226     assert(Value->getType()->isIntegerTy(getContext().getTypeSize(Ty)) &&
1227            "wrong value rep of bool");
1228   }
1229 
1230   return Value;
1231 }
1232 
1233 llvm::Value *CodeGenFunction::EmitFromMemory(llvm::Value *Value, QualType Ty) {
1234   // Bool has a different representation in memory than in registers.
1235   if (hasBooleanRepresentation(Ty)) {
1236     assert(Value->getType()->isIntegerTy(getContext().getTypeSize(Ty)) &&
1237            "wrong value rep of bool");
1238     return Builder.CreateTrunc(Value, Builder.getInt1Ty(), "tobool");
1239   }
1240 
1241   return Value;
1242 }
1243 
1244 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
1245                                         bool Volatile, unsigned Alignment,
1246                                         QualType Ty,
1247                                         llvm::MDNode *TBAAInfo,
1248                                         bool isInit, QualType TBAABaseType,
1249                                         uint64_t TBAAOffset) {
1250 
1251   // Handle vectors differently to get better performance.
1252   if (Ty->isVectorType()) {
1253     llvm::Type *SrcTy = Value->getType();
1254     llvm::VectorType *VecTy = cast<llvm::VectorType>(SrcTy);
1255     // Handle vec3 special.
1256     if (VecTy->getNumElements() == 3) {
1257       llvm::LLVMContext &VMContext = getLLVMContext();
1258 
1259       // Our source is a vec3, do a shuffle vector to make it a vec4.
1260       SmallVector<llvm::Constant*, 4> Mask;
1261       Mask.push_back(llvm::ConstantInt::get(
1262                                             llvm::Type::getInt32Ty(VMContext),
1263                                             0));
1264       Mask.push_back(llvm::ConstantInt::get(
1265                                             llvm::Type::getInt32Ty(VMContext),
1266                                             1));
1267       Mask.push_back(llvm::ConstantInt::get(
1268                                             llvm::Type::getInt32Ty(VMContext),
1269                                             2));
1270       Mask.push_back(llvm::UndefValue::get(llvm::Type::getInt32Ty(VMContext)));
1271 
1272       llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
1273       Value = Builder.CreateShuffleVector(Value,
1274                                           llvm::UndefValue::get(VecTy),
1275                                           MaskV, "extractVec");
1276       SrcTy = llvm::VectorType::get(VecTy->getElementType(), 4);
1277     }
1278     llvm::PointerType *DstPtr = cast<llvm::PointerType>(Addr->getType());
1279     if (DstPtr->getElementType() != SrcTy) {
1280       llvm::Type *MemTy =
1281       llvm::PointerType::get(SrcTy, DstPtr->getAddressSpace());
1282       Addr = Builder.CreateBitCast(Addr, MemTy, "storetmp");
1283     }
1284   }
1285 
1286   Value = EmitToMemory(Value, Ty);
1287 
1288   if (Ty->isAtomicType()) {
1289     EmitAtomicStore(RValue::get(Value),
1290                     LValue::MakeAddr(Addr, Ty,
1291                                      CharUnits::fromQuantity(Alignment),
1292                                      getContext(), TBAAInfo),
1293                     isInit);
1294     return;
1295   }
1296 
1297   llvm::StoreInst *Store = Builder.CreateStore(Value, Addr, Volatile);
1298   if (Alignment)
1299     Store->setAlignment(Alignment);
1300   if (TBAAInfo) {
1301     llvm::MDNode *TBAAPath = CGM.getTBAAStructTagInfo(TBAABaseType, TBAAInfo,
1302                                                       TBAAOffset);
1303     CGM.DecorateInstruction(Store, TBAAPath, false/*ConvertTypeToTag*/);
1304   }
1305 }
1306 
1307 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *value, LValue lvalue,
1308                                         bool isInit) {
1309   EmitStoreOfScalar(value, lvalue.getAddress(), lvalue.isVolatile(),
1310                     lvalue.getAlignment().getQuantity(), lvalue.getType(),
1311                     lvalue.getTBAAInfo(), isInit, lvalue.getTBAABaseType(),
1312                     lvalue.getTBAAOffset());
1313 }
1314 
1315 /// EmitLoadOfLValue - Given an expression that represents a value lvalue, this
1316 /// method emits the address of the lvalue, then loads the result as an rvalue,
1317 /// returning the rvalue.
1318 RValue CodeGenFunction::EmitLoadOfLValue(LValue LV) {
1319   if (LV.isObjCWeak()) {
1320     // load of a __weak object.
1321     llvm::Value *AddrWeakObj = LV.getAddress();
1322     return RValue::get(CGM.getObjCRuntime().EmitObjCWeakRead(*this,
1323                                                              AddrWeakObj));
1324   }
1325   if (LV.getQuals().getObjCLifetime() == Qualifiers::OCL_Weak) {
1326     llvm::Value *Object = EmitARCLoadWeakRetained(LV.getAddress());
1327     Object = EmitObjCConsumeObject(LV.getType(), Object);
1328     return RValue::get(Object);
1329   }
1330 
1331   if (LV.isSimple()) {
1332     assert(!LV.getType()->isFunctionType());
1333 
1334     // Everything needs a load.
1335     return RValue::get(EmitLoadOfScalar(LV));
1336   }
1337 
1338   if (LV.isVectorElt()) {
1339     llvm::LoadInst *Load = Builder.CreateLoad(LV.getVectorAddr(),
1340                                               LV.isVolatileQualified());
1341     Load->setAlignment(LV.getAlignment().getQuantity());
1342     return RValue::get(Builder.CreateExtractElement(Load, LV.getVectorIdx(),
1343                                                     "vecext"));
1344   }
1345 
1346   // If this is a reference to a subset of the elements of a vector, either
1347   // shuffle the input or extract/insert them as appropriate.
1348   if (LV.isExtVectorElt())
1349     return EmitLoadOfExtVectorElementLValue(LV);
1350 
1351   assert(LV.isBitField() && "Unknown LValue type!");
1352   return EmitLoadOfBitfieldLValue(LV);
1353 }
1354 
1355 RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV) {
1356   const CGBitFieldInfo &Info = LV.getBitFieldInfo();
1357 
1358   // Get the output type.
1359   llvm::Type *ResLTy = ConvertType(LV.getType());
1360 
1361   llvm::Value *Ptr = LV.getBitFieldAddr();
1362   llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),
1363                                         "bf.load");
1364   cast<llvm::LoadInst>(Val)->setAlignment(Info.StorageAlignment);
1365 
1366   if (Info.IsSigned) {
1367     assert(static_cast<unsigned>(Info.Offset + Info.Size) <= Info.StorageSize);
1368     unsigned HighBits = Info.StorageSize - Info.Offset - Info.Size;
1369     if (HighBits)
1370       Val = Builder.CreateShl(Val, HighBits, "bf.shl");
1371     if (Info.Offset + HighBits)
1372       Val = Builder.CreateAShr(Val, Info.Offset + HighBits, "bf.ashr");
1373   } else {
1374     if (Info.Offset)
1375       Val = Builder.CreateLShr(Val, Info.Offset, "bf.lshr");
1376     if (static_cast<unsigned>(Info.Offset) + Info.Size < Info.StorageSize)
1377       Val = Builder.CreateAnd(Val, llvm::APInt::getLowBitsSet(Info.StorageSize,
1378                                                               Info.Size),
1379                               "bf.clear");
1380   }
1381   Val = Builder.CreateIntCast(Val, ResLTy, Info.IsSigned, "bf.cast");
1382 
1383   return RValue::get(Val);
1384 }
1385 
1386 // If this is a reference to a subset of the elements of a vector, create an
1387 // appropriate shufflevector.
1388 RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV) {
1389   llvm::LoadInst *Load = Builder.CreateLoad(LV.getExtVectorAddr(),
1390                                             LV.isVolatileQualified());
1391   Load->setAlignment(LV.getAlignment().getQuantity());
1392   llvm::Value *Vec = Load;
1393 
1394   const llvm::Constant *Elts = LV.getExtVectorElts();
1395 
1396   // If the result of the expression is a non-vector type, we must be extracting
1397   // a single element.  Just codegen as an extractelement.
1398   const VectorType *ExprVT = LV.getType()->getAs<VectorType>();
1399   if (!ExprVT) {
1400     unsigned InIdx = getAccessedFieldNo(0, Elts);
1401     llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx);
1402     return RValue::get(Builder.CreateExtractElement(Vec, Elt));
1403   }
1404 
1405   // Always use shuffle vector to try to retain the original program structure
1406   unsigned NumResultElts = ExprVT->getNumElements();
1407 
1408   SmallVector<llvm::Constant*, 4> Mask;
1409   for (unsigned i = 0; i != NumResultElts; ++i)
1410     Mask.push_back(Builder.getInt32(getAccessedFieldNo(i, Elts)));
1411 
1412   llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
1413   Vec = Builder.CreateShuffleVector(Vec, llvm::UndefValue::get(Vec->getType()),
1414                                     MaskV);
1415   return RValue::get(Vec);
1416 }
1417 
1418 
1419 
1420 /// EmitStoreThroughLValue - Store the specified rvalue into the specified
1421 /// lvalue, where both are guaranteed to the have the same type, and that type
1422 /// is 'Ty'.
1423 void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit) {
1424   if (!Dst.isSimple()) {
1425     if (Dst.isVectorElt()) {
1426       // Read/modify/write the vector, inserting the new element.
1427       llvm::LoadInst *Load = Builder.CreateLoad(Dst.getVectorAddr(),
1428                                                 Dst.isVolatileQualified());
1429       Load->setAlignment(Dst.getAlignment().getQuantity());
1430       llvm::Value *Vec = Load;
1431       Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(),
1432                                         Dst.getVectorIdx(), "vecins");
1433       llvm::StoreInst *Store = Builder.CreateStore(Vec, Dst.getVectorAddr(),
1434                                                    Dst.isVolatileQualified());
1435       Store->setAlignment(Dst.getAlignment().getQuantity());
1436       return;
1437     }
1438 
1439     // If this is an update of extended vector elements, insert them as
1440     // appropriate.
1441     if (Dst.isExtVectorElt())
1442       return EmitStoreThroughExtVectorComponentLValue(Src, Dst);
1443 
1444     assert(Dst.isBitField() && "Unknown LValue type");
1445     return EmitStoreThroughBitfieldLValue(Src, Dst);
1446   }
1447 
1448   // There's special magic for assigning into an ARC-qualified l-value.
1449   if (Qualifiers::ObjCLifetime Lifetime = Dst.getQuals().getObjCLifetime()) {
1450     switch (Lifetime) {
1451     case Qualifiers::OCL_None:
1452       llvm_unreachable("present but none");
1453 
1454     case Qualifiers::OCL_ExplicitNone:
1455       // nothing special
1456       break;
1457 
1458     case Qualifiers::OCL_Strong:
1459       EmitARCStoreStrong(Dst, Src.getScalarVal(), /*ignore*/ true);
1460       return;
1461 
1462     case Qualifiers::OCL_Weak:
1463       EmitARCStoreWeak(Dst.getAddress(), Src.getScalarVal(), /*ignore*/ true);
1464       return;
1465 
1466     case Qualifiers::OCL_Autoreleasing:
1467       Src = RValue::get(EmitObjCExtendObjectLifetime(Dst.getType(),
1468                                                      Src.getScalarVal()));
1469       // fall into the normal path
1470       break;
1471     }
1472   }
1473 
1474   if (Dst.isObjCWeak() && !Dst.isNonGC()) {
1475     // load of a __weak object.
1476     llvm::Value *LvalueDst = Dst.getAddress();
1477     llvm::Value *src = Src.getScalarVal();
1478      CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst);
1479     return;
1480   }
1481 
1482   if (Dst.isObjCStrong() && !Dst.isNonGC()) {
1483     // load of a __strong object.
1484     llvm::Value *LvalueDst = Dst.getAddress();
1485     llvm::Value *src = Src.getScalarVal();
1486     if (Dst.isObjCIvar()) {
1487       assert(Dst.getBaseIvarExp() && "BaseIvarExp is NULL");
1488       llvm::Type *ResultType = ConvertType(getContext().LongTy);
1489       llvm::Value *RHS = EmitScalarExpr(Dst.getBaseIvarExp());
1490       llvm::Value *dst = RHS;
1491       RHS = Builder.CreatePtrToInt(RHS, ResultType, "sub.ptr.rhs.cast");
1492       llvm::Value *LHS =
1493         Builder.CreatePtrToInt(LvalueDst, ResultType, "sub.ptr.lhs.cast");
1494       llvm::Value *BytesBetween = Builder.CreateSub(LHS, RHS, "ivar.offset");
1495       CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, dst,
1496                                               BytesBetween);
1497     } else if (Dst.isGlobalObjCRef()) {
1498       CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst,
1499                                                 Dst.isThreadLocalRef());
1500     }
1501     else
1502       CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
1503     return;
1504   }
1505 
1506   assert(Src.isScalar() && "Can't emit an agg store with this method");
1507   EmitStoreOfScalar(Src.getScalarVal(), Dst, isInit);
1508 }
1509 
1510 void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst,
1511                                                      llvm::Value **Result) {
1512   const CGBitFieldInfo &Info = Dst.getBitFieldInfo();
1513   llvm::Type *ResLTy = ConvertTypeForMem(Dst.getType());
1514   llvm::Value *Ptr = Dst.getBitFieldAddr();
1515 
1516   // Get the source value, truncated to the width of the bit-field.
1517   llvm::Value *SrcVal = Src.getScalarVal();
1518 
1519   // Cast the source to the storage type and shift it into place.
1520   SrcVal = Builder.CreateIntCast(SrcVal,
1521                                  Ptr->getType()->getPointerElementType(),
1522                                  /*IsSigned=*/false);
1523   llvm::Value *MaskedVal = SrcVal;
1524 
1525   // See if there are other bits in the bitfield's storage we'll need to load
1526   // and mask together with source before storing.
1527   if (Info.StorageSize != Info.Size) {
1528     assert(Info.StorageSize > Info.Size && "Invalid bitfield size.");
1529     llvm::Value *Val = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(),
1530                                           "bf.load");
1531     cast<llvm::LoadInst>(Val)->setAlignment(Info.StorageAlignment);
1532 
1533     // Mask the source value as needed.
1534     if (!hasBooleanRepresentation(Dst.getType()))
1535       SrcVal = Builder.CreateAnd(SrcVal,
1536                                  llvm::APInt::getLowBitsSet(Info.StorageSize,
1537                                                             Info.Size),
1538                                  "bf.value");
1539     MaskedVal = SrcVal;
1540     if (Info.Offset)
1541       SrcVal = Builder.CreateShl(SrcVal, Info.Offset, "bf.shl");
1542 
1543     // Mask out the original value.
1544     Val = Builder.CreateAnd(Val,
1545                             ~llvm::APInt::getBitsSet(Info.StorageSize,
1546                                                      Info.Offset,
1547                                                      Info.Offset + Info.Size),
1548                             "bf.clear");
1549 
1550     // Or together the unchanged values and the source value.
1551     SrcVal = Builder.CreateOr(Val, SrcVal, "bf.set");
1552   } else {
1553     assert(Info.Offset == 0);
1554   }
1555 
1556   // Write the new value back out.
1557   llvm::StoreInst *Store = Builder.CreateStore(SrcVal, Ptr,
1558                                                Dst.isVolatileQualified());
1559   Store->setAlignment(Info.StorageAlignment);
1560 
1561   // Return the new value of the bit-field, if requested.
1562   if (Result) {
1563     llvm::Value *ResultVal = MaskedVal;
1564 
1565     // Sign extend the value if needed.
1566     if (Info.IsSigned) {
1567       assert(Info.Size <= Info.StorageSize);
1568       unsigned HighBits = Info.StorageSize - Info.Size;
1569       if (HighBits) {
1570         ResultVal = Builder.CreateShl(ResultVal, HighBits, "bf.result.shl");
1571         ResultVal = Builder.CreateAShr(ResultVal, HighBits, "bf.result.ashr");
1572       }
1573     }
1574 
1575     ResultVal = Builder.CreateIntCast(ResultVal, ResLTy, Info.IsSigned,
1576                                       "bf.result.cast");
1577     *Result = EmitFromMemory(ResultVal, Dst.getType());
1578   }
1579 }
1580 
1581 void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src,
1582                                                                LValue Dst) {
1583   // This access turns into a read/modify/write of the vector.  Load the input
1584   // value now.
1585   llvm::LoadInst *Load = Builder.CreateLoad(Dst.getExtVectorAddr(),
1586                                             Dst.isVolatileQualified());
1587   Load->setAlignment(Dst.getAlignment().getQuantity());
1588   llvm::Value *Vec = Load;
1589   const llvm::Constant *Elts = Dst.getExtVectorElts();
1590 
1591   llvm::Value *SrcVal = Src.getScalarVal();
1592 
1593   if (const VectorType *VTy = Dst.getType()->getAs<VectorType>()) {
1594     unsigned NumSrcElts = VTy->getNumElements();
1595     unsigned NumDstElts =
1596        cast<llvm::VectorType>(Vec->getType())->getNumElements();
1597     if (NumDstElts == NumSrcElts) {
1598       // Use shuffle vector is the src and destination are the same number of
1599       // elements and restore the vector mask since it is on the side it will be
1600       // stored.
1601       SmallVector<llvm::Constant*, 4> Mask(NumDstElts);
1602       for (unsigned i = 0; i != NumSrcElts; ++i)
1603         Mask[getAccessedFieldNo(i, Elts)] = Builder.getInt32(i);
1604 
1605       llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
1606       Vec = Builder.CreateShuffleVector(SrcVal,
1607                                         llvm::UndefValue::get(Vec->getType()),
1608                                         MaskV);
1609     } else if (NumDstElts > NumSrcElts) {
1610       // Extended the source vector to the same length and then shuffle it
1611       // into the destination.
1612       // FIXME: since we're shuffling with undef, can we just use the indices
1613       //        into that?  This could be simpler.
1614       SmallVector<llvm::Constant*, 4> ExtMask;
1615       for (unsigned i = 0; i != NumSrcElts; ++i)
1616         ExtMask.push_back(Builder.getInt32(i));
1617       ExtMask.resize(NumDstElts, llvm::UndefValue::get(Int32Ty));
1618       llvm::Value *ExtMaskV = llvm::ConstantVector::get(ExtMask);
1619       llvm::Value *ExtSrcVal =
1620         Builder.CreateShuffleVector(SrcVal,
1621                                     llvm::UndefValue::get(SrcVal->getType()),
1622                                     ExtMaskV);
1623       // build identity
1624       SmallVector<llvm::Constant*, 4> Mask;
1625       for (unsigned i = 0; i != NumDstElts; ++i)
1626         Mask.push_back(Builder.getInt32(i));
1627 
1628       // modify when what gets shuffled in
1629       for (unsigned i = 0; i != NumSrcElts; ++i)
1630         Mask[getAccessedFieldNo(i, Elts)] = Builder.getInt32(i+NumDstElts);
1631       llvm::Value *MaskV = llvm::ConstantVector::get(Mask);
1632       Vec = Builder.CreateShuffleVector(Vec, ExtSrcVal, MaskV);
1633     } else {
1634       // We should never shorten the vector
1635       llvm_unreachable("unexpected shorten vector length");
1636     }
1637   } else {
1638     // If the Src is a scalar (not a vector) it must be updating one element.
1639     unsigned InIdx = getAccessedFieldNo(0, Elts);
1640     llvm::Value *Elt = llvm::ConstantInt::get(Int32Ty, InIdx);
1641     Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt);
1642   }
1643 
1644   llvm::StoreInst *Store = Builder.CreateStore(Vec, Dst.getExtVectorAddr(),
1645                                                Dst.isVolatileQualified());
1646   Store->setAlignment(Dst.getAlignment().getQuantity());
1647 }
1648 
1649 // setObjCGCLValueClass - sets class of he lvalue for the purpose of
1650 // generating write-barries API. It is currently a global, ivar,
1651 // or neither.
1652 static void setObjCGCLValueClass(const ASTContext &Ctx, const Expr *E,
1653                                  LValue &LV,
1654                                  bool IsMemberAccess=false) {
1655   if (Ctx.getLangOpts().getGC() == LangOptions::NonGC)
1656     return;
1657 
1658   if (isa<ObjCIvarRefExpr>(E)) {
1659     QualType ExpTy = E->getType();
1660     if (IsMemberAccess && ExpTy->isPointerType()) {
1661       // If ivar is a structure pointer, assigning to field of
1662       // this struct follows gcc's behavior and makes it a non-ivar
1663       // writer-barrier conservatively.
1664       ExpTy = ExpTy->getAs<PointerType>()->getPointeeType();
1665       if (ExpTy->isRecordType()) {
1666         LV.setObjCIvar(false);
1667         return;
1668       }
1669     }
1670     LV.setObjCIvar(true);
1671     ObjCIvarRefExpr *Exp = cast<ObjCIvarRefExpr>(const_cast<Expr*>(E));
1672     LV.setBaseIvarExp(Exp->getBase());
1673     LV.setObjCArray(E->getType()->isArrayType());
1674     return;
1675   }
1676 
1677   if (const DeclRefExpr *Exp = dyn_cast<DeclRefExpr>(E)) {
1678     if (const VarDecl *VD = dyn_cast<VarDecl>(Exp->getDecl())) {
1679       if (VD->hasGlobalStorage()) {
1680         LV.setGlobalObjCRef(true);
1681         LV.setThreadLocalRef(VD->getTLSKind() != VarDecl::TLS_None);
1682       }
1683     }
1684     LV.setObjCArray(E->getType()->isArrayType());
1685     return;
1686   }
1687 
1688   if (const UnaryOperator *Exp = dyn_cast<UnaryOperator>(E)) {
1689     setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
1690     return;
1691   }
1692 
1693   if (const ParenExpr *Exp = dyn_cast<ParenExpr>(E)) {
1694     setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
1695     if (LV.isObjCIvar()) {
1696       // If cast is to a structure pointer, follow gcc's behavior and make it
1697       // a non-ivar write-barrier.
1698       QualType ExpTy = E->getType();
1699       if (ExpTy->isPointerType())
1700         ExpTy = ExpTy->getAs<PointerType>()->getPointeeType();
1701       if (ExpTy->isRecordType())
1702         LV.setObjCIvar(false);
1703     }
1704     return;
1705   }
1706 
1707   if (const GenericSelectionExpr *Exp = dyn_cast<GenericSelectionExpr>(E)) {
1708     setObjCGCLValueClass(Ctx, Exp->getResultExpr(), LV);
1709     return;
1710   }
1711 
1712   if (const ImplicitCastExpr *Exp = dyn_cast<ImplicitCastExpr>(E)) {
1713     setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
1714     return;
1715   }
1716 
1717   if (const CStyleCastExpr *Exp = dyn_cast<CStyleCastExpr>(E)) {
1718     setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
1719     return;
1720   }
1721 
1722   if (const ObjCBridgedCastExpr *Exp = dyn_cast<ObjCBridgedCastExpr>(E)) {
1723     setObjCGCLValueClass(Ctx, Exp->getSubExpr(), LV, IsMemberAccess);
1724     return;
1725   }
1726 
1727   if (const ArraySubscriptExpr *Exp = dyn_cast<ArraySubscriptExpr>(E)) {
1728     setObjCGCLValueClass(Ctx, Exp->getBase(), LV);
1729     if (LV.isObjCIvar() && !LV.isObjCArray())
1730       // Using array syntax to assigning to what an ivar points to is not
1731       // same as assigning to the ivar itself. {id *Names;} Names[i] = 0;
1732       LV.setObjCIvar(false);
1733     else if (LV.isGlobalObjCRef() && !LV.isObjCArray())
1734       // Using array syntax to assigning to what global points to is not
1735       // same as assigning to the global itself. {id *G;} G[i] = 0;
1736       LV.setGlobalObjCRef(false);
1737     return;
1738   }
1739 
1740   if (const MemberExpr *Exp = dyn_cast<MemberExpr>(E)) {
1741     setObjCGCLValueClass(Ctx, Exp->getBase(), LV, true);
1742     // We don't know if member is an 'ivar', but this flag is looked at
1743     // only in the context of LV.isObjCIvar().
1744     LV.setObjCArray(E->getType()->isArrayType());
1745     return;
1746   }
1747 }
1748 
1749 static llvm::Value *
1750 EmitBitCastOfLValueToProperType(CodeGenFunction &CGF,
1751                                 llvm::Value *V, llvm::Type *IRType,
1752                                 StringRef Name = StringRef()) {
1753   unsigned AS = cast<llvm::PointerType>(V->getType())->getAddressSpace();
1754   return CGF.Builder.CreateBitCast(V, IRType->getPointerTo(AS), Name);
1755 }
1756 
1757 static LValue EmitGlobalVarDeclLValue(CodeGenFunction &CGF,
1758                                       const Expr *E, const VarDecl *VD) {
1759   llvm::Value *V = CGF.CGM.GetAddrOfGlobalVar(VD);
1760   llvm::Type *RealVarTy = CGF.getTypes().ConvertTypeForMem(VD->getType());
1761   V = EmitBitCastOfLValueToProperType(CGF, V, RealVarTy);
1762   CharUnits Alignment = CGF.getContext().getDeclAlign(VD);
1763   QualType T = E->getType();
1764   LValue LV;
1765   if (VD->getType()->isReferenceType()) {
1766     llvm::LoadInst *LI = CGF.Builder.CreateLoad(V);
1767     LI->setAlignment(Alignment.getQuantity());
1768     V = LI;
1769     LV = CGF.MakeNaturalAlignAddrLValue(V, T);
1770   } else {
1771     LV = CGF.MakeAddrLValue(V, E->getType(), Alignment);
1772   }
1773   setObjCGCLValueClass(CGF.getContext(), E, LV);
1774   return LV;
1775 }
1776 
1777 static LValue EmitFunctionDeclLValue(CodeGenFunction &CGF,
1778                                      const Expr *E, const FunctionDecl *FD) {
1779   llvm::Value *V = CGF.CGM.GetAddrOfFunction(FD);
1780   if (!FD->hasPrototype()) {
1781     if (const FunctionProtoType *Proto =
1782             FD->getType()->getAs<FunctionProtoType>()) {
1783       // Ugly case: for a K&R-style definition, the type of the definition
1784       // isn't the same as the type of a use.  Correct for this with a
1785       // bitcast.
1786       QualType NoProtoType =
1787           CGF.getContext().getFunctionNoProtoType(Proto->getResultType());
1788       NoProtoType = CGF.getContext().getPointerType(NoProtoType);
1789       V = CGF.Builder.CreateBitCast(V, CGF.ConvertType(NoProtoType));
1790     }
1791   }
1792   CharUnits Alignment = CGF.getContext().getDeclAlign(FD);
1793   return CGF.MakeAddrLValue(V, E->getType(), Alignment);
1794 }
1795 
1796 static LValue EmitCapturedFieldLValue(CodeGenFunction &CGF, const FieldDecl *FD,
1797                                       llvm::Value *ThisValue) {
1798   QualType TagType = CGF.getContext().getTagDeclType(FD->getParent());
1799   LValue LV = CGF.MakeNaturalAlignAddrLValue(ThisValue, TagType);
1800   return CGF.EmitLValueForField(LV, FD);
1801 }
1802 
1803 LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
1804   const NamedDecl *ND = E->getDecl();
1805   CharUnits Alignment = getContext().getDeclAlign(ND);
1806   QualType T = E->getType();
1807 
1808   // A DeclRefExpr for a reference initialized by a constant expression can
1809   // appear without being odr-used. Directly emit the constant initializer.
1810   if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
1811     const Expr *Init = VD->getAnyInitializer(VD);
1812     if (Init && !isa<ParmVarDecl>(VD) && VD->getType()->isReferenceType() &&
1813         VD->isUsableInConstantExpressions(getContext()) &&
1814         VD->checkInitIsICE()) {
1815       llvm::Constant *Val =
1816         CGM.EmitConstantValue(*VD->evaluateValue(), VD->getType(), this);
1817       assert(Val && "failed to emit reference constant expression");
1818       // FIXME: Eventually we will want to emit vector element references.
1819       return MakeAddrLValue(Val, T, Alignment);
1820     }
1821   }
1822 
1823   // FIXME: We should be able to assert this for FunctionDecls as well!
1824   // FIXME: We should be able to assert this for all DeclRefExprs, not just
1825   // those with a valid source location.
1826   assert((ND->isUsed(false) || !isa<VarDecl>(ND) ||
1827           !E->getLocation().isValid()) &&
1828          "Should not use decl without marking it used!");
1829 
1830   if (ND->hasAttr<WeakRefAttr>()) {
1831     const ValueDecl *VD = cast<ValueDecl>(ND);
1832     llvm::Constant *Aliasee = CGM.GetWeakRefReference(VD);
1833     return MakeAddrLValue(Aliasee, T, Alignment);
1834   }
1835 
1836   if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
1837     // Check if this is a global variable.
1838     if (VD->hasLinkage() || VD->isStaticDataMember()) {
1839       // If it's thread_local, emit a call to its wrapper function instead.
1840       if (VD->getTLSKind() == VarDecl::TLS_Dynamic)
1841         return CGM.getCXXABI().EmitThreadLocalDeclRefExpr(*this, E);
1842       return EmitGlobalVarDeclLValue(*this, E, VD);
1843     }
1844 
1845     bool isBlockVariable = VD->hasAttr<BlocksAttr>();
1846 
1847     llvm::Value *V = LocalDeclMap.lookup(VD);
1848     if (!V && VD->isStaticLocal())
1849       V = CGM.getStaticLocalDeclAddress(VD);
1850 
1851     // Use special handling for lambdas.
1852     if (!V) {
1853       if (FieldDecl *FD = LambdaCaptureFields.lookup(VD)) {
1854         return EmitCapturedFieldLValue(*this, FD, CXXABIThisValue);
1855       } else if (CapturedStmtInfo) {
1856         if (const FieldDecl *FD = CapturedStmtInfo->lookup(VD))
1857           return EmitCapturedFieldLValue(*this, FD,
1858                                          CapturedStmtInfo->getContextValue());
1859       }
1860 
1861       assert(isa<BlockDecl>(CurCodeDecl) && E->refersToEnclosingLocal());
1862       return MakeAddrLValue(GetAddrOfBlockDecl(VD, isBlockVariable),
1863                             T, Alignment);
1864     }
1865 
1866     assert(V && "DeclRefExpr not entered in LocalDeclMap?");
1867 
1868     if (isBlockVariable)
1869       V = BuildBlockByrefAddress(V, VD);
1870 
1871     LValue LV;
1872     if (VD->getType()->isReferenceType()) {
1873       llvm::LoadInst *LI = Builder.CreateLoad(V);
1874       LI->setAlignment(Alignment.getQuantity());
1875       V = LI;
1876       LV = MakeNaturalAlignAddrLValue(V, T);
1877     } else {
1878       LV = MakeAddrLValue(V, T, Alignment);
1879     }
1880 
1881     bool isLocalStorage = VD->hasLocalStorage();
1882 
1883     bool NonGCable = isLocalStorage &&
1884                      !VD->getType()->isReferenceType() &&
1885                      !isBlockVariable;
1886     if (NonGCable) {
1887       LV.getQuals().removeObjCGCAttr();
1888       LV.setNonGC(true);
1889     }
1890 
1891     bool isImpreciseLifetime =
1892       (isLocalStorage && !VD->hasAttr<ObjCPreciseLifetimeAttr>());
1893     if (isImpreciseLifetime)
1894       LV.setARCPreciseLifetime(ARCImpreciseLifetime);
1895     setObjCGCLValueClass(getContext(), E, LV);
1896     return LV;
1897   }
1898 
1899   if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(ND))
1900     return EmitFunctionDeclLValue(*this, E, fn);
1901 
1902   llvm_unreachable("Unhandled DeclRefExpr");
1903 }
1904 
1905 LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
1906   // __extension__ doesn't affect lvalue-ness.
1907   if (E->getOpcode() == UO_Extension)
1908     return EmitLValue(E->getSubExpr());
1909 
1910   QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
1911   switch (E->getOpcode()) {
1912   default: llvm_unreachable("Unknown unary operator lvalue!");
1913   case UO_Deref: {
1914     QualType T = E->getSubExpr()->getType()->getPointeeType();
1915     assert(!T.isNull() && "CodeGenFunction::EmitUnaryOpLValue: Illegal type");
1916 
1917     LValue LV = MakeNaturalAlignAddrLValue(EmitScalarExpr(E->getSubExpr()), T);
1918     LV.getQuals().setAddressSpace(ExprTy.getAddressSpace());
1919 
1920     // We should not generate __weak write barrier on indirect reference
1921     // of a pointer to object; as in void foo (__weak id *param); *param = 0;
1922     // But, we continue to generate __strong write barrier on indirect write
1923     // into a pointer to object.
1924     if (getLangOpts().ObjC1 &&
1925         getLangOpts().getGC() != LangOptions::NonGC &&
1926         LV.isObjCWeak())
1927       LV.setNonGC(!E->isOBJCGCCandidate(getContext()));
1928     return LV;
1929   }
1930   case UO_Real:
1931   case UO_Imag: {
1932     LValue LV = EmitLValue(E->getSubExpr());
1933     assert(LV.isSimple() && "real/imag on non-ordinary l-value");
1934     llvm::Value *Addr = LV.getAddress();
1935 
1936     // __real is valid on scalars.  This is a faster way of testing that.
1937     // __imag can only produce an rvalue on scalars.
1938     if (E->getOpcode() == UO_Real &&
1939         !cast<llvm::PointerType>(Addr->getType())
1940            ->getElementType()->isStructTy()) {
1941       assert(E->getSubExpr()->getType()->isArithmeticType());
1942       return LV;
1943     }
1944 
1945     assert(E->getSubExpr()->getType()->isAnyComplexType());
1946 
1947     unsigned Idx = E->getOpcode() == UO_Imag;
1948     return MakeAddrLValue(Builder.CreateStructGEP(LV.getAddress(),
1949                                                   Idx, "idx"),
1950                           ExprTy);
1951   }
1952   case UO_PreInc:
1953   case UO_PreDec: {
1954     LValue LV = EmitLValue(E->getSubExpr());
1955     bool isInc = E->getOpcode() == UO_PreInc;
1956 
1957     if (E->getType()->isAnyComplexType())
1958       EmitComplexPrePostIncDec(E, LV, isInc, true/*isPre*/);
1959     else
1960       EmitScalarPrePostIncDec(E, LV, isInc, true/*isPre*/);
1961     return LV;
1962   }
1963   }
1964 }
1965 
1966 LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) {
1967   return MakeAddrLValue(CGM.GetAddrOfConstantStringFromLiteral(E),
1968                         E->getType());
1969 }
1970 
1971 LValue CodeGenFunction::EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E) {
1972   return MakeAddrLValue(CGM.GetAddrOfConstantStringFromObjCEncode(E),
1973                         E->getType());
1974 }
1975 
1976 static llvm::Constant*
1977 GetAddrOfConstantWideString(StringRef Str,
1978                             const char *GlobalName,
1979                             ASTContext &Context,
1980                             QualType Ty, SourceLocation Loc,
1981                             CodeGenModule &CGM) {
1982 
1983   StringLiteral *SL = StringLiteral::Create(Context,
1984                                             Str,
1985                                             StringLiteral::Wide,
1986                                             /*Pascal = */false,
1987                                             Ty, Loc);
1988   llvm::Constant *C = CGM.GetConstantArrayFromStringLiteral(SL);
1989   llvm::GlobalVariable *GV =
1990     new llvm::GlobalVariable(CGM.getModule(), C->getType(),
1991                              !CGM.getLangOpts().WritableStrings,
1992                              llvm::GlobalValue::PrivateLinkage,
1993                              C, GlobalName);
1994   const unsigned WideAlignment =
1995     Context.getTypeAlignInChars(Ty).getQuantity();
1996   GV->setAlignment(WideAlignment);
1997   return GV;
1998 }
1999 
2000 static void ConvertUTF8ToWideString(unsigned CharByteWidth, StringRef Source,
2001                                     SmallString<32>& Target) {
2002   Target.resize(CharByteWidth * (Source.size() + 1));
2003   char *ResultPtr = &Target[0];
2004   const UTF8 *ErrorPtr;
2005   bool success = ConvertUTF8toWide(CharByteWidth, Source, ResultPtr, ErrorPtr);
2006   (void)success;
2007   assert(success);
2008   Target.resize(ResultPtr - &Target[0]);
2009 }
2010 
2011 LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) {
2012   switch (E->getIdentType()) {
2013   default:
2014     return EmitUnsupportedLValue(E, "predefined expression");
2015 
2016   case PredefinedExpr::Func:
2017   case PredefinedExpr::Function:
2018   case PredefinedExpr::LFunction:
2019   case PredefinedExpr::PrettyFunction: {
2020     unsigned IdentType = E->getIdentType();
2021     std::string GlobalVarName;
2022 
2023     switch (IdentType) {
2024     default: llvm_unreachable("Invalid type");
2025     case PredefinedExpr::Func:
2026       GlobalVarName = "__func__.";
2027       break;
2028     case PredefinedExpr::Function:
2029       GlobalVarName = "__FUNCTION__.";
2030       break;
2031     case PredefinedExpr::LFunction:
2032       GlobalVarName = "L__FUNCTION__.";
2033       break;
2034     case PredefinedExpr::PrettyFunction:
2035       GlobalVarName = "__PRETTY_FUNCTION__.";
2036       break;
2037     }
2038 
2039     StringRef FnName = CurFn->getName();
2040     if (FnName.startswith("\01"))
2041       FnName = FnName.substr(1);
2042     GlobalVarName += FnName;
2043 
2044     const Decl *CurDecl = CurCodeDecl;
2045     if (CurDecl == 0)
2046       CurDecl = getContext().getTranslationUnitDecl();
2047 
2048     std::string FunctionName =
2049         (isa<BlockDecl>(CurDecl)
2050          ? FnName.str()
2051          : PredefinedExpr::ComputeName((PredefinedExpr::IdentType)IdentType,
2052                                        CurDecl));
2053 
2054     const Type* ElemType = E->getType()->getArrayElementTypeNoTypeQual();
2055     llvm::Constant *C;
2056     if (ElemType->isWideCharType()) {
2057       SmallString<32> RawChars;
2058       ConvertUTF8ToWideString(
2059           getContext().getTypeSizeInChars(ElemType).getQuantity(),
2060           FunctionName, RawChars);
2061       C = GetAddrOfConstantWideString(RawChars,
2062                                       GlobalVarName.c_str(),
2063                                       getContext(),
2064                                       E->getType(),
2065                                       E->getLocation(),
2066                                       CGM);
2067     } else {
2068       C = CGM.GetAddrOfConstantCString(FunctionName,
2069                                        GlobalVarName.c_str(),
2070                                        1);
2071     }
2072     return MakeAddrLValue(C, E->getType());
2073   }
2074   }
2075 }
2076 
2077 /// Emit a type description suitable for use by a runtime sanitizer library. The
2078 /// format of a type descriptor is
2079 ///
2080 /// \code
2081 ///   { i16 TypeKind, i16 TypeInfo }
2082 /// \endcode
2083 ///
2084 /// followed by an array of i8 containing the type name. TypeKind is 0 for an
2085 /// integer, 1 for a floating point value, and -1 for anything else.
2086 llvm::Constant *CodeGenFunction::EmitCheckTypeDescriptor(QualType T) {
2087   // FIXME: Only emit each type's descriptor once.
2088   uint16_t TypeKind = -1;
2089   uint16_t TypeInfo = 0;
2090 
2091   if (T->isIntegerType()) {
2092     TypeKind = 0;
2093     TypeInfo = (llvm::Log2_32(getContext().getTypeSize(T)) << 1) |
2094                (T->isSignedIntegerType() ? 1 : 0);
2095   } else if (T->isFloatingType()) {
2096     TypeKind = 1;
2097     TypeInfo = getContext().getTypeSize(T);
2098   }
2099 
2100   // Format the type name as if for a diagnostic, including quotes and
2101   // optionally an 'aka'.
2102   SmallString<32> Buffer;
2103   CGM.getDiags().ConvertArgToString(DiagnosticsEngine::ak_qualtype,
2104                                     (intptr_t)T.getAsOpaquePtr(),
2105                                     0, 0, 0, 0, 0, 0, Buffer,
2106                                     ArrayRef<intptr_t>());
2107 
2108   llvm::Constant *Components[] = {
2109     Builder.getInt16(TypeKind), Builder.getInt16(TypeInfo),
2110     llvm::ConstantDataArray::getString(getLLVMContext(), Buffer)
2111   };
2112   llvm::Constant *Descriptor = llvm::ConstantStruct::getAnon(Components);
2113 
2114   llvm::GlobalVariable *GV =
2115     new llvm::GlobalVariable(CGM.getModule(), Descriptor->getType(),
2116                              /*isConstant=*/true,
2117                              llvm::GlobalVariable::PrivateLinkage,
2118                              Descriptor);
2119   GV->setUnnamedAddr(true);
2120   return GV;
2121 }
2122 
2123 llvm::Value *CodeGenFunction::EmitCheckValue(llvm::Value *V) {
2124   llvm::Type *TargetTy = IntPtrTy;
2125 
2126   // Floating-point types which fit into intptr_t are bitcast to integers
2127   // and then passed directly (after zero-extension, if necessary).
2128   if (V->getType()->isFloatingPointTy()) {
2129     unsigned Bits = V->getType()->getPrimitiveSizeInBits();
2130     if (Bits <= TargetTy->getIntegerBitWidth())
2131       V = Builder.CreateBitCast(V, llvm::Type::getIntNTy(getLLVMContext(),
2132                                                          Bits));
2133   }
2134 
2135   // Integers which fit in intptr_t are zero-extended and passed directly.
2136   if (V->getType()->isIntegerTy() &&
2137       V->getType()->getIntegerBitWidth() <= TargetTy->getIntegerBitWidth())
2138     return Builder.CreateZExt(V, TargetTy);
2139 
2140   // Pointers are passed directly, everything else is passed by address.
2141   if (!V->getType()->isPointerTy()) {
2142     llvm::Value *Ptr = CreateTempAlloca(V->getType());
2143     Builder.CreateStore(V, Ptr);
2144     V = Ptr;
2145   }
2146   return Builder.CreatePtrToInt(V, TargetTy);
2147 }
2148 
2149 /// \brief Emit a representation of a SourceLocation for passing to a handler
2150 /// in a sanitizer runtime library. The format for this data is:
2151 /// \code
2152 ///   struct SourceLocation {
2153 ///     const char *Filename;
2154 ///     int32_t Line, Column;
2155 ///   };
2156 /// \endcode
2157 /// For an invalid SourceLocation, the Filename pointer is null.
2158 llvm::Constant *CodeGenFunction::EmitCheckSourceLocation(SourceLocation Loc) {
2159   PresumedLoc PLoc = getContext().getSourceManager().getPresumedLoc(Loc);
2160 
2161   llvm::Constant *Data[] = {
2162     // FIXME: Only emit each file name once.
2163     PLoc.isValid() ? cast<llvm::Constant>(
2164                        Builder.CreateGlobalStringPtr(PLoc.getFilename()))
2165                    : llvm::Constant::getNullValue(Int8PtrTy),
2166     Builder.getInt32(PLoc.getLine()),
2167     Builder.getInt32(PLoc.getColumn())
2168   };
2169 
2170   return llvm::ConstantStruct::getAnon(Data);
2171 }
2172 
2173 void CodeGenFunction::EmitCheck(llvm::Value *Checked, StringRef CheckName,
2174                                 ArrayRef<llvm::Constant *> StaticArgs,
2175                                 ArrayRef<llvm::Value *> DynamicArgs,
2176                                 CheckRecoverableKind RecoverKind) {
2177   assert(SanOpts != &SanitizerOptions::Disabled);
2178 
2179   if (CGM.getCodeGenOpts().SanitizeUndefinedTrapOnError) {
2180     assert (RecoverKind != CRK_AlwaysRecoverable &&
2181             "Runtime call required for AlwaysRecoverable kind!");
2182     return EmitTrapCheck(Checked);
2183   }
2184 
2185   llvm::BasicBlock *Cont = createBasicBlock("cont");
2186 
2187   llvm::BasicBlock *Handler = createBasicBlock("handler." + CheckName);
2188 
2189   llvm::Instruction *Branch = Builder.CreateCondBr(Checked, Cont, Handler);
2190 
2191   // Give hint that we very much don't expect to execute the handler
2192   // Value chosen to match UR_NONTAKEN_WEIGHT, see BranchProbabilityInfo.cpp
2193   llvm::MDBuilder MDHelper(getLLVMContext());
2194   llvm::MDNode *Node = MDHelper.createBranchWeights((1U << 20) - 1, 1);
2195   Branch->setMetadata(llvm::LLVMContext::MD_prof, Node);
2196 
2197   EmitBlock(Handler);
2198 
2199   llvm::Constant *Info = llvm::ConstantStruct::getAnon(StaticArgs);
2200   llvm::GlobalValue *InfoPtr =
2201       new llvm::GlobalVariable(CGM.getModule(), Info->getType(), false,
2202                                llvm::GlobalVariable::PrivateLinkage, Info);
2203   InfoPtr->setUnnamedAddr(true);
2204 
2205   SmallVector<llvm::Value *, 4> Args;
2206   SmallVector<llvm::Type *, 4> ArgTypes;
2207   Args.reserve(DynamicArgs.size() + 1);
2208   ArgTypes.reserve(DynamicArgs.size() + 1);
2209 
2210   // Handler functions take an i8* pointing to the (handler-specific) static
2211   // information block, followed by a sequence of intptr_t arguments
2212   // representing operand values.
2213   Args.push_back(Builder.CreateBitCast(InfoPtr, Int8PtrTy));
2214   ArgTypes.push_back(Int8PtrTy);
2215   for (size_t i = 0, n = DynamicArgs.size(); i != n; ++i) {
2216     Args.push_back(EmitCheckValue(DynamicArgs[i]));
2217     ArgTypes.push_back(IntPtrTy);
2218   }
2219 
2220   bool Recover = (RecoverKind == CRK_AlwaysRecoverable) ||
2221                  ((RecoverKind == CRK_Recoverable) &&
2222                    CGM.getCodeGenOpts().SanitizeRecover);
2223 
2224   llvm::FunctionType *FnType =
2225     llvm::FunctionType::get(CGM.VoidTy, ArgTypes, false);
2226   llvm::AttrBuilder B;
2227   if (!Recover) {
2228     B.addAttribute(llvm::Attribute::NoReturn)
2229      .addAttribute(llvm::Attribute::NoUnwind);
2230   }
2231   B.addAttribute(llvm::Attribute::UWTable);
2232 
2233   // Checks that have two variants use a suffix to differentiate them
2234   bool NeedsAbortSuffix = (RecoverKind != CRK_Unrecoverable) &&
2235                            !CGM.getCodeGenOpts().SanitizeRecover;
2236   std::string FunctionName = ("__ubsan_handle_" + CheckName +
2237                               (NeedsAbortSuffix? "_abort" : "")).str();
2238   llvm::Value *Fn =
2239     CGM.CreateRuntimeFunction(FnType, FunctionName,
2240                               llvm::AttributeSet::get(getLLVMContext(),
2241                                               llvm::AttributeSet::FunctionIndex,
2242                                                       B));
2243   llvm::CallInst *HandlerCall = EmitNounwindRuntimeCall(Fn, Args);
2244   if (Recover) {
2245     Builder.CreateBr(Cont);
2246   } else {
2247     HandlerCall->setDoesNotReturn();
2248     Builder.CreateUnreachable();
2249   }
2250 
2251   EmitBlock(Cont);
2252 }
2253 
2254 void CodeGenFunction::EmitTrapCheck(llvm::Value *Checked) {
2255   llvm::BasicBlock *Cont = createBasicBlock("cont");
2256 
2257   // If we're optimizing, collapse all calls to trap down to just one per
2258   // function to save on code size.
2259   if (!CGM.getCodeGenOpts().OptimizationLevel || !TrapBB) {
2260     TrapBB = createBasicBlock("trap");
2261     Builder.CreateCondBr(Checked, Cont, TrapBB);
2262     EmitBlock(TrapBB);
2263     llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::trap);
2264     llvm::CallInst *TrapCall = Builder.CreateCall(F);
2265     TrapCall->setDoesNotReturn();
2266     TrapCall->setDoesNotThrow();
2267     Builder.CreateUnreachable();
2268   } else {
2269     Builder.CreateCondBr(Checked, Cont, TrapBB);
2270   }
2271 
2272   EmitBlock(Cont);
2273 }
2274 
2275 /// isSimpleArrayDecayOperand - If the specified expr is a simple decay from an
2276 /// array to pointer, return the array subexpression.
2277 static const Expr *isSimpleArrayDecayOperand(const Expr *E) {
2278   // If this isn't just an array->pointer decay, bail out.
2279   const CastExpr *CE = dyn_cast<CastExpr>(E);
2280   if (CE == 0 || CE->getCastKind() != CK_ArrayToPointerDecay)
2281     return 0;
2282 
2283   // If this is a decay from variable width array, bail out.
2284   const Expr *SubExpr = CE->getSubExpr();
2285   if (SubExpr->getType()->isVariableArrayType())
2286     return 0;
2287 
2288   return SubExpr;
2289 }
2290 
2291 LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E,
2292                                                bool Accessed) {
2293   // The index must always be an integer, which is not an aggregate.  Emit it.
2294   llvm::Value *Idx = EmitScalarExpr(E->getIdx());
2295   QualType IdxTy  = E->getIdx()->getType();
2296   bool IdxSigned = IdxTy->isSignedIntegerOrEnumerationType();
2297 
2298   if (SanOpts->Bounds)
2299     EmitBoundsCheck(E, E->getBase(), Idx, IdxTy, Accessed);
2300 
2301   // If the base is a vector type, then we are forming a vector element lvalue
2302   // with this subscript.
2303   if (E->getBase()->getType()->isVectorType()) {
2304     // Emit the vector as an lvalue to get its address.
2305     LValue LHS = EmitLValue(E->getBase());
2306     assert(LHS.isSimple() && "Can only subscript lvalue vectors here!");
2307     Idx = Builder.CreateIntCast(Idx, Int32Ty, IdxSigned, "vidx");
2308     return LValue::MakeVectorElt(LHS.getAddress(), Idx,
2309                                  E->getBase()->getType(), LHS.getAlignment());
2310   }
2311 
2312   // Extend or truncate the index type to 32 or 64-bits.
2313   if (Idx->getType() != IntPtrTy)
2314     Idx = Builder.CreateIntCast(Idx, IntPtrTy, IdxSigned, "idxprom");
2315 
2316   // We know that the pointer points to a type of the correct size, unless the
2317   // size is a VLA or Objective-C interface.
2318   llvm::Value *Address = 0;
2319   CharUnits ArrayAlignment;
2320   if (const VariableArrayType *vla =
2321         getContext().getAsVariableArrayType(E->getType())) {
2322     // The base must be a pointer, which is not an aggregate.  Emit
2323     // it.  It needs to be emitted first in case it's what captures
2324     // the VLA bounds.
2325     Address = EmitScalarExpr(E->getBase());
2326 
2327     // The element count here is the total number of non-VLA elements.
2328     llvm::Value *numElements = getVLASize(vla).first;
2329 
2330     // Effectively, the multiply by the VLA size is part of the GEP.
2331     // GEP indexes are signed, and scaling an index isn't permitted to
2332     // signed-overflow, so we use the same semantics for our explicit
2333     // multiply.  We suppress this if overflow is not undefined behavior.
2334     if (getLangOpts().isSignedOverflowDefined()) {
2335       Idx = Builder.CreateMul(Idx, numElements);
2336       Address = Builder.CreateGEP(Address, Idx, "arrayidx");
2337     } else {
2338       Idx = Builder.CreateNSWMul(Idx, numElements);
2339       Address = Builder.CreateInBoundsGEP(Address, Idx, "arrayidx");
2340     }
2341   } else if (const ObjCObjectType *OIT = E->getType()->getAs<ObjCObjectType>()){
2342     // Indexing over an interface, as in "NSString *P; P[4];"
2343     llvm::Value *InterfaceSize =
2344       llvm::ConstantInt::get(Idx->getType(),
2345           getContext().getTypeSizeInChars(OIT).getQuantity());
2346 
2347     Idx = Builder.CreateMul(Idx, InterfaceSize);
2348 
2349     // The base must be a pointer, which is not an aggregate.  Emit it.
2350     llvm::Value *Base = EmitScalarExpr(E->getBase());
2351     Address = EmitCastToVoidPtr(Base);
2352     Address = Builder.CreateGEP(Address, Idx, "arrayidx");
2353     Address = Builder.CreateBitCast(Address, Base->getType());
2354   } else if (const Expr *Array = isSimpleArrayDecayOperand(E->getBase())) {
2355     // If this is A[i] where A is an array, the frontend will have decayed the
2356     // base to be a ArrayToPointerDecay implicit cast.  While correct, it is
2357     // inefficient at -O0 to emit a "gep A, 0, 0" when codegen'ing it, then a
2358     // "gep x, i" here.  Emit one "gep A, 0, i".
2359     assert(Array->getType()->isArrayType() &&
2360            "Array to pointer decay must have array source type!");
2361     LValue ArrayLV;
2362     // For simple multidimensional array indexing, set the 'accessed' flag for
2363     // better bounds-checking of the base expression.
2364     if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(Array))
2365       ArrayLV = EmitArraySubscriptExpr(ASE, /*Accessed*/ true);
2366     else
2367       ArrayLV = EmitLValue(Array);
2368     llvm::Value *ArrayPtr = ArrayLV.getAddress();
2369     llvm::Value *Zero = llvm::ConstantInt::get(Int32Ty, 0);
2370     llvm::Value *Args[] = { Zero, Idx };
2371 
2372     // Propagate the alignment from the array itself to the result.
2373     ArrayAlignment = ArrayLV.getAlignment();
2374 
2375     if (getLangOpts().isSignedOverflowDefined())
2376       Address = Builder.CreateGEP(ArrayPtr, Args, "arrayidx");
2377     else
2378       Address = Builder.CreateInBoundsGEP(ArrayPtr, Args, "arrayidx");
2379   } else {
2380     // The base must be a pointer, which is not an aggregate.  Emit it.
2381     llvm::Value *Base = EmitScalarExpr(E->getBase());
2382     if (getLangOpts().isSignedOverflowDefined())
2383       Address = Builder.CreateGEP(Base, Idx, "arrayidx");
2384     else
2385       Address = Builder.CreateInBoundsGEP(Base, Idx, "arrayidx");
2386   }
2387 
2388   QualType T = E->getBase()->getType()->getPointeeType();
2389   assert(!T.isNull() &&
2390          "CodeGenFunction::EmitArraySubscriptExpr(): Illegal base type");
2391 
2392 
2393   // Limit the alignment to that of the result type.
2394   LValue LV;
2395   if (!ArrayAlignment.isZero()) {
2396     CharUnits Align = getContext().getTypeAlignInChars(T);
2397     ArrayAlignment = std::min(Align, ArrayAlignment);
2398     LV = MakeAddrLValue(Address, T, ArrayAlignment);
2399   } else {
2400     LV = MakeNaturalAlignAddrLValue(Address, T);
2401   }
2402 
2403   LV.getQuals().setAddressSpace(E->getBase()->getType().getAddressSpace());
2404 
2405   if (getLangOpts().ObjC1 &&
2406       getLangOpts().getGC() != LangOptions::NonGC) {
2407     LV.setNonGC(!E->isOBJCGCCandidate(getContext()));
2408     setObjCGCLValueClass(getContext(), E, LV);
2409   }
2410   return LV;
2411 }
2412 
2413 static
2414 llvm::Constant *GenerateConstantVector(CGBuilderTy &Builder,
2415                                        SmallVector<unsigned, 4> &Elts) {
2416   SmallVector<llvm::Constant*, 4> CElts;
2417   for (unsigned i = 0, e = Elts.size(); i != e; ++i)
2418     CElts.push_back(Builder.getInt32(Elts[i]));
2419 
2420   return llvm::ConstantVector::get(CElts);
2421 }
2422 
2423 LValue CodeGenFunction::
2424 EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
2425   // Emit the base vector as an l-value.
2426   LValue Base;
2427 
2428   // ExtVectorElementExpr's base can either be a vector or pointer to vector.
2429   if (E->isArrow()) {
2430     // If it is a pointer to a vector, emit the address and form an lvalue with
2431     // it.
2432     llvm::Value *Ptr = EmitScalarExpr(E->getBase());
2433     const PointerType *PT = E->getBase()->getType()->getAs<PointerType>();
2434     Base = MakeAddrLValue(Ptr, PT->getPointeeType());
2435     Base.getQuals().removeObjCGCAttr();
2436   } else if (E->getBase()->isGLValue()) {
2437     // Otherwise, if the base is an lvalue ( as in the case of foo.x.x),
2438     // emit the base as an lvalue.
2439     assert(E->getBase()->getType()->isVectorType());
2440     Base = EmitLValue(E->getBase());
2441   } else {
2442     // Otherwise, the base is a normal rvalue (as in (V+V).x), emit it as such.
2443     assert(E->getBase()->getType()->isVectorType() &&
2444            "Result must be a vector");
2445     llvm::Value *Vec = EmitScalarExpr(E->getBase());
2446 
2447     // Store the vector to memory (because LValue wants an address).
2448     llvm::Value *VecMem = CreateMemTemp(E->getBase()->getType());
2449     Builder.CreateStore(Vec, VecMem);
2450     Base = MakeAddrLValue(VecMem, E->getBase()->getType());
2451   }
2452 
2453   QualType type =
2454     E->getType().withCVRQualifiers(Base.getQuals().getCVRQualifiers());
2455 
2456   // Encode the element access list into a vector of unsigned indices.
2457   SmallVector<unsigned, 4> Indices;
2458   E->getEncodedElementAccess(Indices);
2459 
2460   if (Base.isSimple()) {
2461     llvm::Constant *CV = GenerateConstantVector(Builder, Indices);
2462     return LValue::MakeExtVectorElt(Base.getAddress(), CV, type,
2463                                     Base.getAlignment());
2464   }
2465   assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!");
2466 
2467   llvm::Constant *BaseElts = Base.getExtVectorElts();
2468   SmallVector<llvm::Constant *, 4> CElts;
2469 
2470   for (unsigned i = 0, e = Indices.size(); i != e; ++i)
2471     CElts.push_back(BaseElts->getAggregateElement(Indices[i]));
2472   llvm::Constant *CV = llvm::ConstantVector::get(CElts);
2473   return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV, type,
2474                                   Base.getAlignment());
2475 }
2476 
2477 LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
2478   Expr *BaseExpr = E->getBase();
2479 
2480   // If this is s.x, emit s as an lvalue.  If it is s->x, emit s as a scalar.
2481   LValue BaseLV;
2482   if (E->isArrow()) {
2483     llvm::Value *Ptr = EmitScalarExpr(BaseExpr);
2484     QualType PtrTy = BaseExpr->getType()->getPointeeType();
2485     EmitTypeCheck(TCK_MemberAccess, E->getExprLoc(), Ptr, PtrTy);
2486     BaseLV = MakeNaturalAlignAddrLValue(Ptr, PtrTy);
2487   } else
2488     BaseLV = EmitCheckedLValue(BaseExpr, TCK_MemberAccess);
2489 
2490   NamedDecl *ND = E->getMemberDecl();
2491   if (FieldDecl *Field = dyn_cast<FieldDecl>(ND)) {
2492     LValue LV = EmitLValueForField(BaseLV, Field);
2493     setObjCGCLValueClass(getContext(), E, LV);
2494     return LV;
2495   }
2496 
2497   if (VarDecl *VD = dyn_cast<VarDecl>(ND))
2498     return EmitGlobalVarDeclLValue(*this, E, VD);
2499 
2500   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
2501     return EmitFunctionDeclLValue(*this, E, FD);
2502 
2503   llvm_unreachable("Unhandled member declaration!");
2504 }
2505 
2506 /// Given that we are currently emitting a lambda, emit an l-value for
2507 /// one of its members.
2508 LValue CodeGenFunction::EmitLValueForLambdaField(const FieldDecl *Field) {
2509   assert(cast<CXXMethodDecl>(CurCodeDecl)->getParent()->isLambda());
2510   assert(cast<CXXMethodDecl>(CurCodeDecl)->getParent() == Field->getParent());
2511   QualType LambdaTagType =
2512     getContext().getTagDeclType(Field->getParent());
2513   LValue LambdaLV = MakeNaturalAlignAddrLValue(CXXABIThisValue, LambdaTagType);
2514   return EmitLValueForField(LambdaLV, Field);
2515 }
2516 
2517 LValue CodeGenFunction::EmitLValueForField(LValue base,
2518                                            const FieldDecl *field) {
2519   if (field->isBitField()) {
2520     const CGRecordLayout &RL =
2521       CGM.getTypes().getCGRecordLayout(field->getParent());
2522     const CGBitFieldInfo &Info = RL.getBitFieldInfo(field);
2523     llvm::Value *Addr = base.getAddress();
2524     unsigned Idx = RL.getLLVMFieldNo(field);
2525     if (Idx != 0)
2526       // For structs, we GEP to the field that the record layout suggests.
2527       Addr = Builder.CreateStructGEP(Addr, Idx, field->getName());
2528     // Get the access type.
2529     llvm::Type *PtrTy = llvm::Type::getIntNPtrTy(
2530       getLLVMContext(), Info.StorageSize,
2531       CGM.getContext().getTargetAddressSpace(base.getType()));
2532     if (Addr->getType() != PtrTy)
2533       Addr = Builder.CreateBitCast(Addr, PtrTy);
2534 
2535     QualType fieldType =
2536       field->getType().withCVRQualifiers(base.getVRQualifiers());
2537     return LValue::MakeBitfield(Addr, Info, fieldType, base.getAlignment());
2538   }
2539 
2540   const RecordDecl *rec = field->getParent();
2541   QualType type = field->getType();
2542   CharUnits alignment = getContext().getDeclAlign(field);
2543 
2544   // FIXME: It should be impossible to have an LValue without alignment for a
2545   // complete type.
2546   if (!base.getAlignment().isZero())
2547     alignment = std::min(alignment, base.getAlignment());
2548 
2549   bool mayAlias = rec->hasAttr<MayAliasAttr>();
2550 
2551   llvm::Value *addr = base.getAddress();
2552   unsigned cvr = base.getVRQualifiers();
2553   bool TBAAPath = CGM.getCodeGenOpts().StructPathTBAA;
2554   if (rec->isUnion()) {
2555     // For unions, there is no pointer adjustment.
2556     assert(!type->isReferenceType() && "union has reference member");
2557     // TODO: handle path-aware TBAA for union.
2558     TBAAPath = false;
2559   } else {
2560     // For structs, we GEP to the field that the record layout suggests.
2561     unsigned idx = CGM.getTypes().getCGRecordLayout(rec).getLLVMFieldNo(field);
2562     addr = Builder.CreateStructGEP(addr, idx, field->getName());
2563 
2564     // If this is a reference field, load the reference right now.
2565     if (const ReferenceType *refType = type->getAs<ReferenceType>()) {
2566       llvm::LoadInst *load = Builder.CreateLoad(addr, "ref");
2567       if (cvr & Qualifiers::Volatile) load->setVolatile(true);
2568       load->setAlignment(alignment.getQuantity());
2569 
2570       // Loading the reference will disable path-aware TBAA.
2571       TBAAPath = false;
2572       if (CGM.shouldUseTBAA()) {
2573         llvm::MDNode *tbaa;
2574         if (mayAlias)
2575           tbaa = CGM.getTBAAInfo(getContext().CharTy);
2576         else
2577           tbaa = CGM.getTBAAInfo(type);
2578         CGM.DecorateInstruction(load, tbaa);
2579       }
2580 
2581       addr = load;
2582       mayAlias = false;
2583       type = refType->getPointeeType();
2584       if (type->isIncompleteType())
2585         alignment = CharUnits();
2586       else
2587         alignment = getContext().getTypeAlignInChars(type);
2588       cvr = 0; // qualifiers don't recursively apply to referencee
2589     }
2590   }
2591 
2592   // Make sure that the address is pointing to the right type.  This is critical
2593   // for both unions and structs.  A union needs a bitcast, a struct element
2594   // will need a bitcast if the LLVM type laid out doesn't match the desired
2595   // type.
2596   addr = EmitBitCastOfLValueToProperType(*this, addr,
2597                                          CGM.getTypes().ConvertTypeForMem(type),
2598                                          field->getName());
2599 
2600   if (field->hasAttr<AnnotateAttr>())
2601     addr = EmitFieldAnnotations(field, addr);
2602 
2603   LValue LV = MakeAddrLValue(addr, type, alignment);
2604   LV.getQuals().addCVRQualifiers(cvr);
2605   if (TBAAPath) {
2606     const ASTRecordLayout &Layout =
2607         getContext().getASTRecordLayout(field->getParent());
2608     // Set the base type to be the base type of the base LValue and
2609     // update offset to be relative to the base type.
2610     LV.setTBAABaseType(mayAlias ? getContext().CharTy : base.getTBAABaseType());
2611     LV.setTBAAOffset(mayAlias ? 0 : base.getTBAAOffset() +
2612                      Layout.getFieldOffset(field->getFieldIndex()) /
2613                                            getContext().getCharWidth());
2614   }
2615 
2616   // __weak attribute on a field is ignored.
2617   if (LV.getQuals().getObjCGCAttr() == Qualifiers::Weak)
2618     LV.getQuals().removeObjCGCAttr();
2619 
2620   // Fields of may_alias structs act like 'char' for TBAA purposes.
2621   // FIXME: this should get propagated down through anonymous structs
2622   // and unions.
2623   if (mayAlias && LV.getTBAAInfo())
2624     LV.setTBAAInfo(CGM.getTBAAInfo(getContext().CharTy));
2625 
2626   return LV;
2627 }
2628 
2629 LValue
2630 CodeGenFunction::EmitLValueForFieldInitialization(LValue Base,
2631                                                   const FieldDecl *Field) {
2632   QualType FieldType = Field->getType();
2633 
2634   if (!FieldType->isReferenceType())
2635     return EmitLValueForField(Base, Field);
2636 
2637   const CGRecordLayout &RL =
2638     CGM.getTypes().getCGRecordLayout(Field->getParent());
2639   unsigned idx = RL.getLLVMFieldNo(Field);
2640   llvm::Value *V = Builder.CreateStructGEP(Base.getAddress(), idx);
2641   assert(!FieldType.getObjCGCAttr() && "fields cannot have GC attrs");
2642 
2643   // Make sure that the address is pointing to the right type.  This is critical
2644   // for both unions and structs.  A union needs a bitcast, a struct element
2645   // will need a bitcast if the LLVM type laid out doesn't match the desired
2646   // type.
2647   llvm::Type *llvmType = ConvertTypeForMem(FieldType);
2648   V = EmitBitCastOfLValueToProperType(*this, V, llvmType, Field->getName());
2649 
2650   CharUnits Alignment = getContext().getDeclAlign(Field);
2651 
2652   // FIXME: It should be impossible to have an LValue without alignment for a
2653   // complete type.
2654   if (!Base.getAlignment().isZero())
2655     Alignment = std::min(Alignment, Base.getAlignment());
2656 
2657   return MakeAddrLValue(V, FieldType, Alignment);
2658 }
2659 
2660 LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr *E){
2661   if (E->isFileScope()) {
2662     llvm::Value *GlobalPtr = CGM.GetAddrOfConstantCompoundLiteral(E);
2663     return MakeAddrLValue(GlobalPtr, E->getType());
2664   }
2665   if (E->getType()->isVariablyModifiedType())
2666     // make sure to emit the VLA size.
2667     EmitVariablyModifiedType(E->getType());
2668 
2669   llvm::Value *DeclPtr = CreateMemTemp(E->getType(), ".compoundliteral");
2670   const Expr *InitExpr = E->getInitializer();
2671   LValue Result = MakeAddrLValue(DeclPtr, E->getType());
2672 
2673   EmitAnyExprToMem(InitExpr, DeclPtr, E->getType().getQualifiers(),
2674                    /*Init*/ true);
2675 
2676   return Result;
2677 }
2678 
2679 LValue CodeGenFunction::EmitInitListLValue(const InitListExpr *E) {
2680   if (!E->isGLValue())
2681     // Initializing an aggregate temporary in C++11: T{...}.
2682     return EmitAggExprToLValue(E);
2683 
2684   // An lvalue initializer list must be initializing a reference.
2685   assert(E->getNumInits() == 1 && "reference init with multiple values");
2686   return EmitLValue(E->getInit(0));
2687 }
2688 
2689 LValue CodeGenFunction::
2690 EmitConditionalOperatorLValue(const AbstractConditionalOperator *expr) {
2691   if (!expr->isGLValue()) {
2692     // ?: here should be an aggregate.
2693     assert(hasAggregateEvaluationKind(expr->getType()) &&
2694            "Unexpected conditional operator!");
2695     return EmitAggExprToLValue(expr);
2696   }
2697 
2698   OpaqueValueMapping binding(*this, expr);
2699 
2700   const Expr *condExpr = expr->getCond();
2701   bool CondExprBool;
2702   if (ConstantFoldsToSimpleInteger(condExpr, CondExprBool)) {
2703     const Expr *live = expr->getTrueExpr(), *dead = expr->getFalseExpr();
2704     if (!CondExprBool) std::swap(live, dead);
2705 
2706     if (!ContainsLabel(dead))
2707       return EmitLValue(live);
2708   }
2709 
2710   llvm::BasicBlock *lhsBlock = createBasicBlock("cond.true");
2711   llvm::BasicBlock *rhsBlock = createBasicBlock("cond.false");
2712   llvm::BasicBlock *contBlock = createBasicBlock("cond.end");
2713 
2714   ConditionalEvaluation eval(*this);
2715   EmitBranchOnBoolExpr(condExpr, lhsBlock, rhsBlock);
2716 
2717   // Any temporaries created here are conditional.
2718   EmitBlock(lhsBlock);
2719   eval.begin(*this);
2720   LValue lhs = EmitLValue(expr->getTrueExpr());
2721   eval.end(*this);
2722 
2723   if (!lhs.isSimple())
2724     return EmitUnsupportedLValue(expr, "conditional operator");
2725 
2726   lhsBlock = Builder.GetInsertBlock();
2727   Builder.CreateBr(contBlock);
2728 
2729   // Any temporaries created here are conditional.
2730   EmitBlock(rhsBlock);
2731   eval.begin(*this);
2732   LValue rhs = EmitLValue(expr->getFalseExpr());
2733   eval.end(*this);
2734   if (!rhs.isSimple())
2735     return EmitUnsupportedLValue(expr, "conditional operator");
2736   rhsBlock = Builder.GetInsertBlock();
2737 
2738   EmitBlock(contBlock);
2739 
2740   llvm::PHINode *phi = Builder.CreatePHI(lhs.getAddress()->getType(), 2,
2741                                          "cond-lvalue");
2742   phi->addIncoming(lhs.getAddress(), lhsBlock);
2743   phi->addIncoming(rhs.getAddress(), rhsBlock);
2744   return MakeAddrLValue(phi, expr->getType());
2745 }
2746 
2747 /// EmitCastLValue - Casts are never lvalues unless that cast is to a reference
2748 /// type. If the cast is to a reference, we can have the usual lvalue result,
2749 /// otherwise if a cast is needed by the code generator in an lvalue context,
2750 /// then it must mean that we need the address of an aggregate in order to
2751 /// access one of its members.  This can happen for all the reasons that casts
2752 /// are permitted with aggregate result, including noop aggregate casts, and
2753 /// cast from scalar to union.
2754 LValue CodeGenFunction::EmitCastLValue(const CastExpr *E) {
2755   switch (E->getCastKind()) {
2756   case CK_ToVoid:
2757     return EmitUnsupportedLValue(E, "unexpected cast lvalue");
2758 
2759   case CK_Dependent:
2760     llvm_unreachable("dependent cast kind in IR gen!");
2761 
2762   case CK_BuiltinFnToFnPtr:
2763     llvm_unreachable("builtin functions are handled elsewhere");
2764 
2765   // These two casts are currently treated as no-ops, although they could
2766   // potentially be real operations depending on the target's ABI.
2767   case CK_NonAtomicToAtomic:
2768   case CK_AtomicToNonAtomic:
2769 
2770   case CK_NoOp:
2771   case CK_LValueToRValue:
2772     if (!E->getSubExpr()->Classify(getContext()).isPRValue()
2773         || E->getType()->isRecordType())
2774       return EmitLValue(E->getSubExpr());
2775     // Fall through to synthesize a temporary.
2776 
2777   case CK_BitCast:
2778   case CK_ArrayToPointerDecay:
2779   case CK_FunctionToPointerDecay:
2780   case CK_NullToMemberPointer:
2781   case CK_NullToPointer:
2782   case CK_IntegralToPointer:
2783   case CK_PointerToIntegral:
2784   case CK_PointerToBoolean:
2785   case CK_VectorSplat:
2786   case CK_IntegralCast:
2787   case CK_IntegralToBoolean:
2788   case CK_IntegralToFloating:
2789   case CK_FloatingToIntegral:
2790   case CK_FloatingToBoolean:
2791   case CK_FloatingCast:
2792   case CK_FloatingRealToComplex:
2793   case CK_FloatingComplexToReal:
2794   case CK_FloatingComplexToBoolean:
2795   case CK_FloatingComplexCast:
2796   case CK_FloatingComplexToIntegralComplex:
2797   case CK_IntegralRealToComplex:
2798   case CK_IntegralComplexToReal:
2799   case CK_IntegralComplexToBoolean:
2800   case CK_IntegralComplexCast:
2801   case CK_IntegralComplexToFloatingComplex:
2802   case CK_DerivedToBaseMemberPointer:
2803   case CK_BaseToDerivedMemberPointer:
2804   case CK_MemberPointerToBoolean:
2805   case CK_ReinterpretMemberPointer:
2806   case CK_AnyPointerToBlockPointerCast:
2807   case CK_ARCProduceObject:
2808   case CK_ARCConsumeObject:
2809   case CK_ARCReclaimReturnedObject:
2810   case CK_ARCExtendBlockObject:
2811   case CK_CopyAndAutoreleaseBlockObject: {
2812     // These casts only produce lvalues when we're binding a reference to a
2813     // temporary realized from a (converted) pure rvalue. Emit the expression
2814     // as a value, copy it into a temporary, and return an lvalue referring to
2815     // that temporary.
2816     llvm::Value *V = CreateMemTemp(E->getType(), "ref.temp");
2817     EmitAnyExprToMem(E, V, E->getType().getQualifiers(), false);
2818     return MakeAddrLValue(V, E->getType());
2819   }
2820 
2821   case CK_Dynamic: {
2822     LValue LV = EmitLValue(E->getSubExpr());
2823     llvm::Value *V = LV.getAddress();
2824     const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(E);
2825     return MakeAddrLValue(EmitDynamicCast(V, DCE), E->getType());
2826   }
2827 
2828   case CK_ConstructorConversion:
2829   case CK_UserDefinedConversion:
2830   case CK_CPointerToObjCPointerCast:
2831   case CK_BlockPointerToObjCPointerCast:
2832     return EmitLValue(E->getSubExpr());
2833 
2834   case CK_UncheckedDerivedToBase:
2835   case CK_DerivedToBase: {
2836     const RecordType *DerivedClassTy =
2837       E->getSubExpr()->getType()->getAs<RecordType>();
2838     CXXRecordDecl *DerivedClassDecl =
2839       cast<CXXRecordDecl>(DerivedClassTy->getDecl());
2840 
2841     LValue LV = EmitLValue(E->getSubExpr());
2842     llvm::Value *This = LV.getAddress();
2843 
2844     // Perform the derived-to-base conversion
2845     llvm::Value *Base =
2846       GetAddressOfBaseClass(This, DerivedClassDecl,
2847                             E->path_begin(), E->path_end(),
2848                             /*NullCheckValue=*/false);
2849 
2850     return MakeAddrLValue(Base, E->getType());
2851   }
2852   case CK_ToUnion:
2853     return EmitAggExprToLValue(E);
2854   case CK_BaseToDerived: {
2855     const RecordType *DerivedClassTy = E->getType()->getAs<RecordType>();
2856     CXXRecordDecl *DerivedClassDecl =
2857       cast<CXXRecordDecl>(DerivedClassTy->getDecl());
2858 
2859     LValue LV = EmitLValue(E->getSubExpr());
2860 
2861     // C++11 [expr.static.cast]p2: Behavior is undefined if a downcast is
2862     // performed and the object is not of the derived type.
2863     if (SanitizePerformTypeCheck)
2864       EmitTypeCheck(TCK_DowncastReference, E->getExprLoc(),
2865                     LV.getAddress(), E->getType());
2866 
2867     // Perform the base-to-derived conversion
2868     llvm::Value *Derived =
2869       GetAddressOfDerivedClass(LV.getAddress(), DerivedClassDecl,
2870                                E->path_begin(), E->path_end(),
2871                                /*NullCheckValue=*/false);
2872 
2873     return MakeAddrLValue(Derived, E->getType());
2874   }
2875   case CK_LValueBitCast: {
2876     // This must be a reinterpret_cast (or c-style equivalent).
2877     const ExplicitCastExpr *CE = cast<ExplicitCastExpr>(E);
2878 
2879     LValue LV = EmitLValue(E->getSubExpr());
2880     llvm::Value *V = Builder.CreateBitCast(LV.getAddress(),
2881                                            ConvertType(CE->getTypeAsWritten()));
2882     return MakeAddrLValue(V, E->getType());
2883   }
2884   case CK_ObjCObjectLValueCast: {
2885     LValue LV = EmitLValue(E->getSubExpr());
2886     QualType ToType = getContext().getLValueReferenceType(E->getType());
2887     llvm::Value *V = Builder.CreateBitCast(LV.getAddress(),
2888                                            ConvertType(ToType));
2889     return MakeAddrLValue(V, E->getType());
2890   }
2891   case CK_ZeroToOCLEvent:
2892     llvm_unreachable("NULL to OpenCL event lvalue cast is not valid");
2893   }
2894 
2895   llvm_unreachable("Unhandled lvalue cast kind?");
2896 }
2897 
2898 LValue CodeGenFunction::EmitNullInitializationLValue(
2899                                               const CXXScalarValueInitExpr *E) {
2900   QualType Ty = E->getType();
2901   LValue LV = MakeAddrLValue(CreateMemTemp(Ty), Ty);
2902   EmitNullInitialization(LV.getAddress(), Ty);
2903   return LV;
2904 }
2905 
2906 LValue CodeGenFunction::EmitOpaqueValueLValue(const OpaqueValueExpr *e) {
2907   assert(OpaqueValueMappingData::shouldBindAsLValue(e));
2908   return getOpaqueLValueMapping(e);
2909 }
2910 
2911 LValue CodeGenFunction::EmitMaterializeTemporaryExpr(
2912                                            const MaterializeTemporaryExpr *E) {
2913   RValue RV = EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0);
2914   return MakeAddrLValue(RV.getScalarVal(), E->getType());
2915 }
2916 
2917 RValue CodeGenFunction::EmitRValueForField(LValue LV,
2918                                            const FieldDecl *FD) {
2919   QualType FT = FD->getType();
2920   LValue FieldLV = EmitLValueForField(LV, FD);
2921   switch (getEvaluationKind(FT)) {
2922   case TEK_Complex:
2923     return RValue::getComplex(EmitLoadOfComplex(FieldLV));
2924   case TEK_Aggregate:
2925     return FieldLV.asAggregateRValue();
2926   case TEK_Scalar:
2927     return EmitLoadOfLValue(FieldLV);
2928   }
2929   llvm_unreachable("bad evaluation kind");
2930 }
2931 
2932 //===--------------------------------------------------------------------===//
2933 //                             Expression Emission
2934 //===--------------------------------------------------------------------===//
2935 
2936 RValue CodeGenFunction::EmitCallExpr(const CallExpr *E,
2937                                      ReturnValueSlot ReturnValue) {
2938   if (CGDebugInfo *DI = getDebugInfo()) {
2939     SourceLocation Loc = E->getLocStart();
2940     // Force column info to be generated so we can differentiate
2941     // multiple call sites on the same line in the debug info.
2942     const FunctionDecl* Callee = E->getDirectCallee();
2943     bool ForceColumnInfo = Callee && Callee->isInlineSpecified();
2944     DI->EmitLocation(Builder, Loc, ForceColumnInfo);
2945   }
2946 
2947   // Builtins never have block type.
2948   if (E->getCallee()->getType()->isBlockPointerType())
2949     return EmitBlockCallExpr(E, ReturnValue);
2950 
2951   if (const CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(E))
2952     return EmitCXXMemberCallExpr(CE, ReturnValue);
2953 
2954   if (const CUDAKernelCallExpr *CE = dyn_cast<CUDAKernelCallExpr>(E))
2955     return EmitCUDAKernelCallExpr(CE, ReturnValue);
2956 
2957   const Decl *TargetDecl = E->getCalleeDecl();
2958   if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(TargetDecl)) {
2959     if (unsigned builtinID = FD->getBuiltinID())
2960       return EmitBuiltinExpr(FD, builtinID, E);
2961   }
2962 
2963   if (const CXXOperatorCallExpr *CE = dyn_cast<CXXOperatorCallExpr>(E))
2964     if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(TargetDecl))
2965       return EmitCXXOperatorMemberCallExpr(CE, MD, ReturnValue);
2966 
2967   if (const CXXPseudoDestructorExpr *PseudoDtor
2968           = dyn_cast<CXXPseudoDestructorExpr>(E->getCallee()->IgnoreParens())) {
2969     QualType DestroyedType = PseudoDtor->getDestroyedType();
2970     if (getLangOpts().ObjCAutoRefCount &&
2971         DestroyedType->isObjCLifetimeType() &&
2972         (DestroyedType.getObjCLifetime() == Qualifiers::OCL_Strong ||
2973          DestroyedType.getObjCLifetime() == Qualifiers::OCL_Weak)) {
2974       // Automatic Reference Counting:
2975       //   If the pseudo-expression names a retainable object with weak or
2976       //   strong lifetime, the object shall be released.
2977       Expr *BaseExpr = PseudoDtor->getBase();
2978       llvm::Value *BaseValue = NULL;
2979       Qualifiers BaseQuals;
2980 
2981       // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar.
2982       if (PseudoDtor->isArrow()) {
2983         BaseValue = EmitScalarExpr(BaseExpr);
2984         const PointerType *PTy = BaseExpr->getType()->getAs<PointerType>();
2985         BaseQuals = PTy->getPointeeType().getQualifiers();
2986       } else {
2987         LValue BaseLV = EmitLValue(BaseExpr);
2988         BaseValue = BaseLV.getAddress();
2989         QualType BaseTy = BaseExpr->getType();
2990         BaseQuals = BaseTy.getQualifiers();
2991       }
2992 
2993       switch (PseudoDtor->getDestroyedType().getObjCLifetime()) {
2994       case Qualifiers::OCL_None:
2995       case Qualifiers::OCL_ExplicitNone:
2996       case Qualifiers::OCL_Autoreleasing:
2997         break;
2998 
2999       case Qualifiers::OCL_Strong:
3000         EmitARCRelease(Builder.CreateLoad(BaseValue,
3001                           PseudoDtor->getDestroyedType().isVolatileQualified()),
3002                        ARCPreciseLifetime);
3003         break;
3004 
3005       case Qualifiers::OCL_Weak:
3006         EmitARCDestroyWeak(BaseValue);
3007         break;
3008       }
3009     } else {
3010       // C++ [expr.pseudo]p1:
3011       //   The result shall only be used as the operand for the function call
3012       //   operator (), and the result of such a call has type void. The only
3013       //   effect is the evaluation of the postfix-expression before the dot or
3014       //   arrow.
3015       EmitScalarExpr(E->getCallee());
3016     }
3017 
3018     return RValue::get(0);
3019   }
3020 
3021   llvm::Value *Callee = EmitScalarExpr(E->getCallee());
3022   return EmitCall(E->getCallee()->getType(), Callee, ReturnValue,
3023                   E->arg_begin(), E->arg_end(), TargetDecl);
3024 }
3025 
3026 LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
3027   // Comma expressions just emit their LHS then their RHS as an l-value.
3028   if (E->getOpcode() == BO_Comma) {
3029     EmitIgnoredExpr(E->getLHS());
3030     EnsureInsertPoint();
3031     return EmitLValue(E->getRHS());
3032   }
3033 
3034   if (E->getOpcode() == BO_PtrMemD ||
3035       E->getOpcode() == BO_PtrMemI)
3036     return EmitPointerToDataMemberBinaryExpr(E);
3037 
3038   assert(E->getOpcode() == BO_Assign && "unexpected binary l-value");
3039 
3040   // Note that in all of these cases, __block variables need the RHS
3041   // evaluated first just in case the variable gets moved by the RHS.
3042 
3043   switch (getEvaluationKind(E->getType())) {
3044   case TEK_Scalar: {
3045     switch (E->getLHS()->getType().getObjCLifetime()) {
3046     case Qualifiers::OCL_Strong:
3047       return EmitARCStoreStrong(E, /*ignored*/ false).first;
3048 
3049     case Qualifiers::OCL_Autoreleasing:
3050       return EmitARCStoreAutoreleasing(E).first;
3051 
3052     // No reason to do any of these differently.
3053     case Qualifiers::OCL_None:
3054     case Qualifiers::OCL_ExplicitNone:
3055     case Qualifiers::OCL_Weak:
3056       break;
3057     }
3058 
3059     RValue RV = EmitAnyExpr(E->getRHS());
3060     LValue LV = EmitCheckedLValue(E->getLHS(), TCK_Store);
3061     EmitStoreThroughLValue(RV, LV);
3062     return LV;
3063   }
3064 
3065   case TEK_Complex:
3066     return EmitComplexAssignmentLValue(E);
3067 
3068   case TEK_Aggregate:
3069     return EmitAggExprToLValue(E);
3070   }
3071   llvm_unreachable("bad evaluation kind");
3072 }
3073 
3074 LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
3075   RValue RV = EmitCallExpr(E);
3076 
3077   if (!RV.isScalar())
3078     return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
3079 
3080   assert(E->getCallReturnType()->isReferenceType() &&
3081          "Can't have a scalar return unless the return type is a "
3082          "reference type!");
3083 
3084   return MakeAddrLValue(RV.getScalarVal(), E->getType());
3085 }
3086 
3087 LValue CodeGenFunction::EmitVAArgExprLValue(const VAArgExpr *E) {
3088   // FIXME: This shouldn't require another copy.
3089   return EmitAggExprToLValue(E);
3090 }
3091 
3092 LValue CodeGenFunction::EmitCXXConstructLValue(const CXXConstructExpr *E) {
3093   assert(E->getType()->getAsCXXRecordDecl()->hasTrivialDestructor()
3094          && "binding l-value to type which needs a temporary");
3095   AggValueSlot Slot = CreateAggTemp(E->getType());
3096   EmitCXXConstructExpr(E, Slot);
3097   return MakeAddrLValue(Slot.getAddr(), E->getType());
3098 }
3099 
3100 LValue
3101 CodeGenFunction::EmitCXXTypeidLValue(const CXXTypeidExpr *E) {
3102   return MakeAddrLValue(EmitCXXTypeidExpr(E), E->getType());
3103 }
3104 
3105 llvm::Value *CodeGenFunction::EmitCXXUuidofExpr(const CXXUuidofExpr *E) {
3106   return CGM.GetAddrOfUuidDescriptor(E);
3107 }
3108 
3109 LValue CodeGenFunction::EmitCXXUuidofLValue(const CXXUuidofExpr *E) {
3110   return MakeAddrLValue(EmitCXXUuidofExpr(E), E->getType());
3111 }
3112 
3113 LValue
3114 CodeGenFunction::EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E) {
3115   AggValueSlot Slot = CreateAggTemp(E->getType(), "temp.lvalue");
3116   Slot.setExternallyDestructed();
3117   EmitAggExpr(E->getSubExpr(), Slot);
3118   EmitCXXTemporary(E->getTemporary(), E->getType(), Slot.getAddr());
3119   return MakeAddrLValue(Slot.getAddr(), E->getType());
3120 }
3121 
3122 LValue
3123 CodeGenFunction::EmitLambdaLValue(const LambdaExpr *E) {
3124   AggValueSlot Slot = CreateAggTemp(E->getType(), "temp.lvalue");
3125   EmitLambdaExpr(E, Slot);
3126   return MakeAddrLValue(Slot.getAddr(), E->getType());
3127 }
3128 
3129 LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
3130   RValue RV = EmitObjCMessageExpr(E);
3131 
3132   if (!RV.isScalar())
3133     return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
3134 
3135   assert(E->getMethodDecl()->getResultType()->isReferenceType() &&
3136          "Can't have a scalar return unless the return type is a "
3137          "reference type!");
3138 
3139   return MakeAddrLValue(RV.getScalarVal(), E->getType());
3140 }
3141 
3142 LValue CodeGenFunction::EmitObjCSelectorLValue(const ObjCSelectorExpr *E) {
3143   llvm::Value *V =
3144     CGM.getObjCRuntime().GetSelector(*this, E->getSelector(), true);
3145   return MakeAddrLValue(V, E->getType());
3146 }
3147 
3148 llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface,
3149                                              const ObjCIvarDecl *Ivar) {
3150   return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
3151 }
3152 
3153 LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
3154                                           llvm::Value *BaseValue,
3155                                           const ObjCIvarDecl *Ivar,
3156                                           unsigned CVRQualifiers) {
3157   return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
3158                                                    Ivar, CVRQualifiers);
3159 }
3160 
3161 LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {
3162   // FIXME: A lot of the code below could be shared with EmitMemberExpr.
3163   llvm::Value *BaseValue = 0;
3164   const Expr *BaseExpr = E->getBase();
3165   Qualifiers BaseQuals;
3166   QualType ObjectTy;
3167   if (E->isArrow()) {
3168     BaseValue = EmitScalarExpr(BaseExpr);
3169     ObjectTy = BaseExpr->getType()->getPointeeType();
3170     BaseQuals = ObjectTy.getQualifiers();
3171   } else {
3172     LValue BaseLV = EmitLValue(BaseExpr);
3173     // FIXME: this isn't right for bitfields.
3174     BaseValue = BaseLV.getAddress();
3175     ObjectTy = BaseExpr->getType();
3176     BaseQuals = ObjectTy.getQualifiers();
3177   }
3178 
3179   LValue LV =
3180     EmitLValueForIvar(ObjectTy, BaseValue, E->getDecl(),
3181                       BaseQuals.getCVRQualifiers());
3182   setObjCGCLValueClass(getContext(), E, LV);
3183   return LV;
3184 }
3185 
3186 LValue CodeGenFunction::EmitStmtExprLValue(const StmtExpr *E) {
3187   // Can only get l-value for message expression returning aggregate type
3188   RValue RV = EmitAnyExprToTemp(E);
3189   return MakeAddrLValue(RV.getAggregateAddr(), E->getType());
3190 }
3191 
3192 RValue CodeGenFunction::EmitCall(QualType CalleeType, llvm::Value *Callee,
3193                                  ReturnValueSlot ReturnValue,
3194                                  CallExpr::const_arg_iterator ArgBeg,
3195                                  CallExpr::const_arg_iterator ArgEnd,
3196                                  const Decl *TargetDecl) {
3197   // Get the actual function type. The callee type will always be a pointer to
3198   // function type or a block pointer type.
3199   assert(CalleeType->isFunctionPointerType() &&
3200          "Call must have function pointer type!");
3201 
3202   CalleeType = getContext().getCanonicalType(CalleeType);
3203 
3204   const FunctionType *FnType
3205     = cast<FunctionType>(cast<PointerType>(CalleeType)->getPointeeType());
3206 
3207   CallArgList Args;
3208   EmitCallArgs(Args, dyn_cast<FunctionProtoType>(FnType), ArgBeg, ArgEnd);
3209 
3210   const CGFunctionInfo &FnInfo =
3211     CGM.getTypes().arrangeFreeFunctionCall(Args, FnType);
3212 
3213   // C99 6.5.2.2p6:
3214   //   If the expression that denotes the called function has a type
3215   //   that does not include a prototype, [the default argument
3216   //   promotions are performed]. If the number of arguments does not
3217   //   equal the number of parameters, the behavior is undefined. If
3218   //   the function is defined with a type that includes a prototype,
3219   //   and either the prototype ends with an ellipsis (, ...) or the
3220   //   types of the arguments after promotion are not compatible with
3221   //   the types of the parameters, the behavior is undefined. If the
3222   //   function is defined with a type that does not include a
3223   //   prototype, and the types of the arguments after promotion are
3224   //   not compatible with those of the parameters after promotion,
3225   //   the behavior is undefined [except in some trivial cases].
3226   // That is, in the general case, we should assume that a call
3227   // through an unprototyped function type works like a *non-variadic*
3228   // call.  The way we make this work is to cast to the exact type
3229   // of the promoted arguments.
3230   if (isa<FunctionNoProtoType>(FnType)) {
3231     llvm::Type *CalleeTy = getTypes().GetFunctionType(FnInfo);
3232     CalleeTy = CalleeTy->getPointerTo();
3233     Callee = Builder.CreateBitCast(Callee, CalleeTy, "callee.knr.cast");
3234   }
3235 
3236   return EmitCall(FnInfo, Callee, ReturnValue, Args, TargetDecl);
3237 }
3238 
3239 LValue CodeGenFunction::
3240 EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E) {
3241   llvm::Value *BaseV;
3242   if (E->getOpcode() == BO_PtrMemI)
3243     BaseV = EmitScalarExpr(E->getLHS());
3244   else
3245     BaseV = EmitLValue(E->getLHS()).getAddress();
3246 
3247   llvm::Value *OffsetV = EmitScalarExpr(E->getRHS());
3248 
3249   const MemberPointerType *MPT
3250     = E->getRHS()->getType()->getAs<MemberPointerType>();
3251 
3252   llvm::Value *AddV =
3253     CGM.getCXXABI().EmitMemberDataPointerAddress(*this, BaseV, OffsetV, MPT);
3254 
3255   return MakeAddrLValue(AddV, MPT->getPointeeType());
3256 }
3257 
3258 /// Given the address of a temporary variable, produce an r-value of
3259 /// its type.
3260 RValue CodeGenFunction::convertTempToRValue(llvm::Value *addr,
3261                                             QualType type) {
3262   LValue lvalue = MakeNaturalAlignAddrLValue(addr, type);
3263   switch (getEvaluationKind(type)) {
3264   case TEK_Complex:
3265     return RValue::getComplex(EmitLoadOfComplex(lvalue));
3266   case TEK_Aggregate:
3267     return lvalue.asAggregateRValue();
3268   case TEK_Scalar:
3269     return RValue::get(EmitLoadOfScalar(lvalue));
3270   }
3271   llvm_unreachable("bad evaluation kind");
3272 }
3273 
3274 void CodeGenFunction::SetFPAccuracy(llvm::Value *Val, float Accuracy) {
3275   assert(Val->getType()->isFPOrFPVectorTy());
3276   if (Accuracy == 0.0 || !isa<llvm::Instruction>(Val))
3277     return;
3278 
3279   llvm::MDBuilder MDHelper(getLLVMContext());
3280   llvm::MDNode *Node = MDHelper.createFPMath(Accuracy);
3281 
3282   cast<llvm::Instruction>(Val)->setMetadata(llvm::LLVMContext::MD_fpmath, Node);
3283 }
3284 
3285 namespace {
3286   struct LValueOrRValue {
3287     LValue LV;
3288     RValue RV;
3289   };
3290 }
3291 
3292 static LValueOrRValue emitPseudoObjectExpr(CodeGenFunction &CGF,
3293                                            const PseudoObjectExpr *E,
3294                                            bool forLValue,
3295                                            AggValueSlot slot) {
3296   SmallVector<CodeGenFunction::OpaqueValueMappingData, 4> opaques;
3297 
3298   // Find the result expression, if any.
3299   const Expr *resultExpr = E->getResultExpr();
3300   LValueOrRValue result;
3301 
3302   for (PseudoObjectExpr::const_semantics_iterator
3303          i = E->semantics_begin(), e = E->semantics_end(); i != e; ++i) {
3304     const Expr *semantic = *i;
3305 
3306     // If this semantic expression is an opaque value, bind it
3307     // to the result of its source expression.
3308     if (const OpaqueValueExpr *ov = dyn_cast<OpaqueValueExpr>(semantic)) {
3309 
3310       // If this is the result expression, we may need to evaluate
3311       // directly into the slot.
3312       typedef CodeGenFunction::OpaqueValueMappingData OVMA;
3313       OVMA opaqueData;
3314       if (ov == resultExpr && ov->isRValue() && !forLValue &&
3315           CodeGenFunction::hasAggregateEvaluationKind(ov->getType())) {
3316         CGF.EmitAggExpr(ov->getSourceExpr(), slot);
3317 
3318         LValue LV = CGF.MakeAddrLValue(slot.getAddr(), ov->getType());
3319         opaqueData = OVMA::bind(CGF, ov, LV);
3320         result.RV = slot.asRValue();
3321 
3322       // Otherwise, emit as normal.
3323       } else {
3324         opaqueData = OVMA::bind(CGF, ov, ov->getSourceExpr());
3325 
3326         // If this is the result, also evaluate the result now.
3327         if (ov == resultExpr) {
3328           if (forLValue)
3329             result.LV = CGF.EmitLValue(ov);
3330           else
3331             result.RV = CGF.EmitAnyExpr(ov, slot);
3332         }
3333       }
3334 
3335       opaques.push_back(opaqueData);
3336 
3337     // Otherwise, if the expression is the result, evaluate it
3338     // and remember the result.
3339     } else if (semantic == resultExpr) {
3340       if (forLValue)
3341         result.LV = CGF.EmitLValue(semantic);
3342       else
3343         result.RV = CGF.EmitAnyExpr(semantic, slot);
3344 
3345     // Otherwise, evaluate the expression in an ignored context.
3346     } else {
3347       CGF.EmitIgnoredExpr(semantic);
3348     }
3349   }
3350 
3351   // Unbind all the opaques now.
3352   for (unsigned i = 0, e = opaques.size(); i != e; ++i)
3353     opaques[i].unbind(CGF);
3354 
3355   return result;
3356 }
3357 
3358 RValue CodeGenFunction::EmitPseudoObjectRValue(const PseudoObjectExpr *E,
3359                                                AggValueSlot slot) {
3360   return emitPseudoObjectExpr(*this, E, false, slot).RV;
3361 }
3362 
3363 LValue CodeGenFunction::EmitPseudoObjectLValue(const PseudoObjectExpr *E) {
3364   return emitPseudoObjectExpr(*this, E, true, AggValueSlot::ignored()).LV;
3365 }
3366