1 //===--- SemaCast.cpp - Semantic Analysis for Casts -----------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 //  This file implements semantic analysis for cast expressions, including
10 //  1) C-style casts like '(int) x'
11 //  2) C++ functional casts like 'int(x)'
12 //  3) C++ named casts like 'static_cast<int>(x)'
13 //
14 //===----------------------------------------------------------------------===//
15 
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/ASTStructuralEquivalence.h"
18 #include "clang/AST/CXXInheritance.h"
19 #include "clang/AST/ExprCXX.h"
20 #include "clang/AST/ExprObjC.h"
21 #include "clang/AST/RecordLayout.h"
22 #include "clang/Basic/PartialDiagnostic.h"
23 #include "clang/Basic/TargetInfo.h"
24 #include "clang/Lex/Preprocessor.h"
25 #include "clang/Sema/Initialization.h"
26 #include "clang/Sema/SemaInternal.h"
27 #include "llvm/ADT/SmallVector.h"
28 #include <set>
29 using namespace clang;
30 
31 
32 
33 enum TryCastResult {
34   TC_NotApplicable, ///< The cast method is not applicable.
35   TC_Success,       ///< The cast method is appropriate and successful.
36   TC_Extension,     ///< The cast method is appropriate and accepted as a
37                     ///< language extension.
38   TC_Failed         ///< The cast method is appropriate, but failed. A
39                     ///< diagnostic has been emitted.
40 };
41 
42 static bool isValidCast(TryCastResult TCR) {
43   return TCR == TC_Success || TCR == TC_Extension;
44 }
45 
46 enum CastType {
47   CT_Const,       ///< const_cast
48   CT_Static,      ///< static_cast
49   CT_Reinterpret, ///< reinterpret_cast
50   CT_Dynamic,     ///< dynamic_cast
51   CT_CStyle,      ///< (Type)expr
52   CT_Functional,  ///< Type(expr)
53   CT_Addrspace    ///< addrspace_cast
54 };
55 
56 namespace {
57   struct CastOperation {
58     CastOperation(Sema &S, QualType destType, ExprResult src)
59       : Self(S), SrcExpr(src), DestType(destType),
60         ResultType(destType.getNonLValueExprType(S.Context)),
61         ValueKind(Expr::getValueKindForType(destType)),
62         Kind(CK_Dependent), IsARCUnbridgedCast(false) {
63 
64       if (const BuiltinType *placeholder =
65             src.get()->getType()->getAsPlaceholderType()) {
66         PlaceholderKind = placeholder->getKind();
67       } else {
68         PlaceholderKind = (BuiltinType::Kind) 0;
69       }
70     }
71 
72     Sema &Self;
73     ExprResult SrcExpr;
74     QualType DestType;
75     QualType ResultType;
76     ExprValueKind ValueKind;
77     CastKind Kind;
78     BuiltinType::Kind PlaceholderKind;
79     CXXCastPath BasePath;
80     bool IsARCUnbridgedCast;
81 
82     SourceRange OpRange;
83     SourceRange DestRange;
84 
85     // Top-level semantics-checking routines.
86     void CheckConstCast();
87     void CheckReinterpretCast();
88     void CheckStaticCast();
89     void CheckDynamicCast();
90     void CheckCXXCStyleCast(bool FunctionalCast, bool ListInitialization);
91     void CheckCStyleCast();
92     void CheckBuiltinBitCast();
93     void CheckAddrspaceCast();
94 
95     void updatePartOfExplicitCastFlags(CastExpr *CE) {
96       // Walk down from the CE to the OrigSrcExpr, and mark all immediate
97       // ImplicitCastExpr's as being part of ExplicitCastExpr. The original CE
98       // (which is a ExplicitCastExpr), and the OrigSrcExpr are not touched.
99       for (; auto *ICE = dyn_cast<ImplicitCastExpr>(CE->getSubExpr()); CE = ICE)
100         ICE->setIsPartOfExplicitCast(true);
101     }
102 
103     /// Complete an apparently-successful cast operation that yields
104     /// the given expression.
105     ExprResult complete(CastExpr *castExpr) {
106       // If this is an unbridged cast, wrap the result in an implicit
107       // cast that yields the unbridged-cast placeholder type.
108       if (IsARCUnbridgedCast) {
109         castExpr = ImplicitCastExpr::Create(
110             Self.Context, Self.Context.ARCUnbridgedCastTy, CK_Dependent,
111             castExpr, nullptr, castExpr->getValueKind(),
112             Self.CurFPFeatureOverrides());
113       }
114       updatePartOfExplicitCastFlags(castExpr);
115       return castExpr;
116     }
117 
118     // Internal convenience methods.
119 
120     /// Try to handle the given placeholder expression kind.  Return
121     /// true if the source expression has the appropriate placeholder
122     /// kind.  A placeholder can only be claimed once.
123     bool claimPlaceholder(BuiltinType::Kind K) {
124       if (PlaceholderKind != K) return false;
125 
126       PlaceholderKind = (BuiltinType::Kind) 0;
127       return true;
128     }
129 
130     bool isPlaceholder() const {
131       return PlaceholderKind != 0;
132     }
133     bool isPlaceholder(BuiltinType::Kind K) const {
134       return PlaceholderKind == K;
135     }
136 
137     // Language specific cast restrictions for address spaces.
138     void checkAddressSpaceCast(QualType SrcType, QualType DestType);
139 
140     void checkCastAlign() {
141       Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
142     }
143 
144     void checkObjCConversion(Sema::CheckedConversionKind CCK) {
145       assert(Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers());
146 
147       Expr *src = SrcExpr.get();
148       if (Self.CheckObjCConversion(OpRange, DestType, src, CCK) ==
149           Sema::ACR_unbridged)
150         IsARCUnbridgedCast = true;
151       SrcExpr = src;
152     }
153 
154     /// Check for and handle non-overload placeholder expressions.
155     void checkNonOverloadPlaceholders() {
156       if (!isPlaceholder() || isPlaceholder(BuiltinType::Overload))
157         return;
158 
159       SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
160       if (SrcExpr.isInvalid())
161         return;
162       PlaceholderKind = (BuiltinType::Kind) 0;
163     }
164   };
165 
166   void CheckNoDeref(Sema &S, const QualType FromType, const QualType ToType,
167                     SourceLocation OpLoc) {
168     if (const auto *PtrType = dyn_cast<PointerType>(FromType)) {
169       if (PtrType->getPointeeType()->hasAttr(attr::NoDeref)) {
170         if (const auto *DestType = dyn_cast<PointerType>(ToType)) {
171           if (!DestType->getPointeeType()->hasAttr(attr::NoDeref)) {
172             S.Diag(OpLoc, diag::warn_noderef_to_dereferenceable_pointer);
173           }
174         }
175       }
176     }
177   }
178 
179   struct CheckNoDerefRAII {
180     CheckNoDerefRAII(CastOperation &Op) : Op(Op) {}
181     ~CheckNoDerefRAII() {
182       if (!Op.SrcExpr.isInvalid())
183         CheckNoDeref(Op.Self, Op.SrcExpr.get()->getType(), Op.ResultType,
184                      Op.OpRange.getBegin());
185     }
186 
187     CastOperation &Op;
188   };
189 }
190 
191 static void DiagnoseCastQual(Sema &Self, const ExprResult &SrcExpr,
192                              QualType DestType);
193 
194 // The Try functions attempt a specific way of casting. If they succeed, they
195 // return TC_Success. If their way of casting is not appropriate for the given
196 // arguments, they return TC_NotApplicable and *may* set diag to a diagnostic
197 // to emit if no other way succeeds. If their way of casting is appropriate but
198 // fails, they return TC_Failed and *must* set diag; they can set it to 0 if
199 // they emit a specialized diagnostic.
200 // All diagnostics returned by these functions must expect the same three
201 // arguments:
202 // %0: Cast Type (a value from the CastType enumeration)
203 // %1: Source Type
204 // %2: Destination Type
205 static TryCastResult TryLValueToRValueCast(Sema &Self, Expr *SrcExpr,
206                                            QualType DestType, bool CStyle,
207                                            CastKind &Kind,
208                                            CXXCastPath &BasePath,
209                                            unsigned &msg);
210 static TryCastResult TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr,
211                                                QualType DestType, bool CStyle,
212                                                SourceRange OpRange,
213                                                unsigned &msg,
214                                                CastKind &Kind,
215                                                CXXCastPath &BasePath);
216 static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
217                                               QualType DestType, bool CStyle,
218                                               SourceRange OpRange,
219                                               unsigned &msg,
220                                               CastKind &Kind,
221                                               CXXCastPath &BasePath);
222 static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
223                                        CanQualType DestType, bool CStyle,
224                                        SourceRange OpRange,
225                                        QualType OrigSrcType,
226                                        QualType OrigDestType, unsigned &msg,
227                                        CastKind &Kind,
228                                        CXXCastPath &BasePath);
229 static TryCastResult TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr,
230                                                QualType SrcType,
231                                                QualType DestType,bool CStyle,
232                                                SourceRange OpRange,
233                                                unsigned &msg,
234                                                CastKind &Kind,
235                                                CXXCastPath &BasePath);
236 
237 static TryCastResult TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr,
238                                            QualType DestType,
239                                            Sema::CheckedConversionKind CCK,
240                                            SourceRange OpRange,
241                                            unsigned &msg, CastKind &Kind,
242                                            bool ListInitialization);
243 static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr,
244                                    QualType DestType,
245                                    Sema::CheckedConversionKind CCK,
246                                    SourceRange OpRange,
247                                    unsigned &msg, CastKind &Kind,
248                                    CXXCastPath &BasePath,
249                                    bool ListInitialization);
250 static TryCastResult TryConstCast(Sema &Self, ExprResult &SrcExpr,
251                                   QualType DestType, bool CStyle,
252                                   unsigned &msg);
253 static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr,
254                                         QualType DestType, bool CStyle,
255                                         SourceRange OpRange, unsigned &msg,
256                                         CastKind &Kind);
257 static TryCastResult TryAddressSpaceCast(Sema &Self, ExprResult &SrcExpr,
258                                          QualType DestType, bool CStyle,
259                                          unsigned &msg, CastKind &Kind);
260 
261 /// ActOnCXXNamedCast - Parse
262 /// {dynamic,static,reinterpret,const,addrspace}_cast's.
263 ExprResult
264 Sema::ActOnCXXNamedCast(SourceLocation OpLoc, tok::TokenKind Kind,
265                         SourceLocation LAngleBracketLoc, Declarator &D,
266                         SourceLocation RAngleBracketLoc,
267                         SourceLocation LParenLoc, Expr *E,
268                         SourceLocation RParenLoc) {
269 
270   assert(!D.isInvalidType());
271 
272   TypeSourceInfo *TInfo = GetTypeForDeclaratorCast(D, E->getType());
273   if (D.isInvalidType())
274     return ExprError();
275 
276   if (getLangOpts().CPlusPlus) {
277     // Check that there are no default arguments (C++ only).
278     CheckExtraCXXDefaultArguments(D);
279   }
280 
281   return BuildCXXNamedCast(OpLoc, Kind, TInfo, E,
282                            SourceRange(LAngleBracketLoc, RAngleBracketLoc),
283                            SourceRange(LParenLoc, RParenLoc));
284 }
285 
286 ExprResult
287 Sema::BuildCXXNamedCast(SourceLocation OpLoc, tok::TokenKind Kind,
288                         TypeSourceInfo *DestTInfo, Expr *E,
289                         SourceRange AngleBrackets, SourceRange Parens) {
290   ExprResult Ex = E;
291   QualType DestType = DestTInfo->getType();
292 
293   // If the type is dependent, we won't do the semantic analysis now.
294   bool TypeDependent =
295       DestType->isDependentType() || Ex.get()->isTypeDependent();
296 
297   CastOperation Op(*this, DestType, E);
298   Op.OpRange = SourceRange(OpLoc, Parens.getEnd());
299   Op.DestRange = AngleBrackets;
300 
301   switch (Kind) {
302   default: llvm_unreachable("Unknown C++ cast!");
303 
304   case tok::kw_addrspace_cast:
305     if (!TypeDependent) {
306       Op.CheckAddrspaceCast();
307       if (Op.SrcExpr.isInvalid())
308         return ExprError();
309     }
310     return Op.complete(CXXAddrspaceCastExpr::Create(
311         Context, Op.ResultType, Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
312         DestTInfo, OpLoc, Parens.getEnd(), AngleBrackets));
313 
314   case tok::kw_const_cast:
315     if (!TypeDependent) {
316       Op.CheckConstCast();
317       if (Op.SrcExpr.isInvalid())
318         return ExprError();
319       DiscardMisalignedMemberAddress(DestType.getTypePtr(), E);
320     }
321     return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType,
322                                   Op.ValueKind, Op.SrcExpr.get(), DestTInfo,
323                                                 OpLoc, Parens.getEnd(),
324                                                 AngleBrackets));
325 
326   case tok::kw_dynamic_cast: {
327     // dynamic_cast is not supported in C++ for OpenCL.
328     if (getLangOpts().OpenCLCPlusPlus) {
329       return ExprError(Diag(OpLoc, diag::err_openclcxx_not_supported)
330                        << "dynamic_cast");
331     }
332 
333     if (!TypeDependent) {
334       Op.CheckDynamicCast();
335       if (Op.SrcExpr.isInvalid())
336         return ExprError();
337     }
338     return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType,
339                                     Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
340                                                   &Op.BasePath, DestTInfo,
341                                                   OpLoc, Parens.getEnd(),
342                                                   AngleBrackets));
343   }
344   case tok::kw_reinterpret_cast: {
345     if (!TypeDependent) {
346       Op.CheckReinterpretCast();
347       if (Op.SrcExpr.isInvalid())
348         return ExprError();
349       DiscardMisalignedMemberAddress(DestType.getTypePtr(), E);
350     }
351     return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType,
352                                     Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
353                                                       nullptr, DestTInfo, OpLoc,
354                                                       Parens.getEnd(),
355                                                       AngleBrackets));
356   }
357   case tok::kw_static_cast: {
358     if (!TypeDependent) {
359       Op.CheckStaticCast();
360       if (Op.SrcExpr.isInvalid())
361         return ExprError();
362       DiscardMisalignedMemberAddress(DestType.getTypePtr(), E);
363     }
364 
365     return Op.complete(CXXStaticCastExpr::Create(
366         Context, Op.ResultType, Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
367         &Op.BasePath, DestTInfo, CurFPFeatureOverrides(), OpLoc,
368         Parens.getEnd(), AngleBrackets));
369   }
370   }
371 }
372 
373 ExprResult Sema::ActOnBuiltinBitCastExpr(SourceLocation KWLoc, Declarator &D,
374                                          ExprResult Operand,
375                                          SourceLocation RParenLoc) {
376   assert(!D.isInvalidType());
377 
378   TypeSourceInfo *TInfo = GetTypeForDeclaratorCast(D, Operand.get()->getType());
379   if (D.isInvalidType())
380     return ExprError();
381 
382   return BuildBuiltinBitCastExpr(KWLoc, TInfo, Operand.get(), RParenLoc);
383 }
384 
385 ExprResult Sema::BuildBuiltinBitCastExpr(SourceLocation KWLoc,
386                                          TypeSourceInfo *TSI, Expr *Operand,
387                                          SourceLocation RParenLoc) {
388   CastOperation Op(*this, TSI->getType(), Operand);
389   Op.OpRange = SourceRange(KWLoc, RParenLoc);
390   TypeLoc TL = TSI->getTypeLoc();
391   Op.DestRange = SourceRange(TL.getBeginLoc(), TL.getEndLoc());
392 
393   if (!Operand->isTypeDependent() && !TSI->getType()->isDependentType()) {
394     Op.CheckBuiltinBitCast();
395     if (Op.SrcExpr.isInvalid())
396       return ExprError();
397   }
398 
399   BuiltinBitCastExpr *BCE =
400       new (Context) BuiltinBitCastExpr(Op.ResultType, Op.ValueKind, Op.Kind,
401                                        Op.SrcExpr.get(), TSI, KWLoc, RParenLoc);
402   return Op.complete(BCE);
403 }
404 
405 /// Try to diagnose a failed overloaded cast.  Returns true if
406 /// diagnostics were emitted.
407 static bool tryDiagnoseOverloadedCast(Sema &S, CastType CT,
408                                       SourceRange range, Expr *src,
409                                       QualType destType,
410                                       bool listInitialization) {
411   switch (CT) {
412   // These cast kinds don't consider user-defined conversions.
413   case CT_Const:
414   case CT_Reinterpret:
415   case CT_Dynamic:
416   case CT_Addrspace:
417     return false;
418 
419   // These do.
420   case CT_Static:
421   case CT_CStyle:
422   case CT_Functional:
423     break;
424   }
425 
426   QualType srcType = src->getType();
427   if (!destType->isRecordType() && !srcType->isRecordType())
428     return false;
429 
430   InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
431   InitializationKind initKind
432     = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(),
433                                                       range, listInitialization)
434     : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range,
435                                                              listInitialization)
436     : InitializationKind::CreateCast(/*type range?*/ range);
437   InitializationSequence sequence(S, entity, initKind, src);
438 
439   assert(sequence.Failed() && "initialization succeeded on second try?");
440   switch (sequence.getFailureKind()) {
441   default: return false;
442 
443   case InitializationSequence::FK_ConstructorOverloadFailed:
444   case InitializationSequence::FK_UserConversionOverloadFailed:
445     break;
446   }
447 
448   OverloadCandidateSet &candidates = sequence.getFailedCandidateSet();
449 
450   unsigned msg = 0;
451   OverloadCandidateDisplayKind howManyCandidates = OCD_AllCandidates;
452 
453   switch (sequence.getFailedOverloadResult()) {
454   case OR_Success: llvm_unreachable("successful failed overload");
455   case OR_No_Viable_Function:
456     if (candidates.empty())
457       msg = diag::err_ovl_no_conversion_in_cast;
458     else
459       msg = diag::err_ovl_no_viable_conversion_in_cast;
460     howManyCandidates = OCD_AllCandidates;
461     break;
462 
463   case OR_Ambiguous:
464     msg = diag::err_ovl_ambiguous_conversion_in_cast;
465     howManyCandidates = OCD_AmbiguousCandidates;
466     break;
467 
468   case OR_Deleted:
469     msg = diag::err_ovl_deleted_conversion_in_cast;
470     howManyCandidates = OCD_ViableCandidates;
471     break;
472   }
473 
474   candidates.NoteCandidates(
475       PartialDiagnosticAt(range.getBegin(),
476                           S.PDiag(msg) << CT << srcType << destType << range
477                                        << src->getSourceRange()),
478       S, howManyCandidates, src);
479 
480   return true;
481 }
482 
483 /// Diagnose a failed cast.
484 static void diagnoseBadCast(Sema &S, unsigned msg, CastType castType,
485                             SourceRange opRange, Expr *src, QualType destType,
486                             bool listInitialization) {
487   if (msg == diag::err_bad_cxx_cast_generic &&
488       tryDiagnoseOverloadedCast(S, castType, opRange, src, destType,
489                                 listInitialization))
490     return;
491 
492   S.Diag(opRange.getBegin(), msg) << castType
493     << src->getType() << destType << opRange << src->getSourceRange();
494 
495   // Detect if both types are (ptr to) class, and note any incompleteness.
496   int DifferentPtrness = 0;
497   QualType From = destType;
498   if (auto Ptr = From->getAs<PointerType>()) {
499     From = Ptr->getPointeeType();
500     DifferentPtrness++;
501   }
502   QualType To = src->getType();
503   if (auto Ptr = To->getAs<PointerType>()) {
504     To = Ptr->getPointeeType();
505     DifferentPtrness--;
506   }
507   if (!DifferentPtrness) {
508     auto RecFrom = From->getAs<RecordType>();
509     auto RecTo = To->getAs<RecordType>();
510     if (RecFrom && RecTo) {
511       auto DeclFrom = RecFrom->getAsCXXRecordDecl();
512       if (!DeclFrom->isCompleteDefinition())
513         S.Diag(DeclFrom->getLocation(), diag::note_type_incomplete) << DeclFrom;
514       auto DeclTo = RecTo->getAsCXXRecordDecl();
515       if (!DeclTo->isCompleteDefinition())
516         S.Diag(DeclTo->getLocation(), diag::note_type_incomplete) << DeclTo;
517     }
518   }
519 }
520 
521 namespace {
522 /// The kind of unwrapping we did when determining whether a conversion casts
523 /// away constness.
524 enum CastAwayConstnessKind {
525   /// The conversion does not cast away constness.
526   CACK_None = 0,
527   /// We unwrapped similar types.
528   CACK_Similar = 1,
529   /// We unwrapped dissimilar types with similar representations (eg, a pointer
530   /// versus an Objective-C object pointer).
531   CACK_SimilarKind = 2,
532   /// We unwrapped representationally-unrelated types, such as a pointer versus
533   /// a pointer-to-member.
534   CACK_Incoherent = 3,
535 };
536 }
537 
538 /// Unwrap one level of types for CastsAwayConstness.
539 ///
540 /// Like Sema::UnwrapSimilarTypes, this removes one level of indirection from
541 /// both types, provided that they're both pointer-like or array-like. Unlike
542 /// the Sema function, doesn't care if the unwrapped pieces are related.
543 ///
544 /// This function may remove additional levels as necessary for correctness:
545 /// the resulting T1 is unwrapped sufficiently that it is never an array type,
546 /// so that its qualifiers can be directly compared to those of T2 (which will
547 /// have the combined set of qualifiers from all indermediate levels of T2),
548 /// as (effectively) required by [expr.const.cast]p7 replacing T1's qualifiers
549 /// with those from T2.
550 static CastAwayConstnessKind
551 unwrapCastAwayConstnessLevel(ASTContext &Context, QualType &T1, QualType &T2) {
552   enum { None, Ptr, MemPtr, BlockPtr, Array };
553   auto Classify = [](QualType T) {
554     if (T->isAnyPointerType()) return Ptr;
555     if (T->isMemberPointerType()) return MemPtr;
556     if (T->isBlockPointerType()) return BlockPtr;
557     // We somewhat-arbitrarily don't look through VLA types here. This is at
558     // least consistent with the behavior of UnwrapSimilarTypes.
559     if (T->isConstantArrayType() || T->isIncompleteArrayType()) return Array;
560     return None;
561   };
562 
563   auto Unwrap = [&](QualType T) {
564     if (auto *AT = Context.getAsArrayType(T))
565       return AT->getElementType();
566     return T->getPointeeType();
567   };
568 
569   CastAwayConstnessKind Kind;
570 
571   if (T2->isReferenceType()) {
572     // Special case: if the destination type is a reference type, unwrap it as
573     // the first level. (The source will have been an lvalue expression in this
574     // case, so there is no corresponding "reference to" in T1 to remove.) This
575     // simulates removing a "pointer to" from both sides.
576     T2 = T2->getPointeeType();
577     Kind = CastAwayConstnessKind::CACK_Similar;
578   } else if (Context.UnwrapSimilarTypes(T1, T2)) {
579     Kind = CastAwayConstnessKind::CACK_Similar;
580   } else {
581     // Try unwrapping mismatching levels.
582     int T1Class = Classify(T1);
583     if (T1Class == None)
584       return CastAwayConstnessKind::CACK_None;
585 
586     int T2Class = Classify(T2);
587     if (T2Class == None)
588       return CastAwayConstnessKind::CACK_None;
589 
590     T1 = Unwrap(T1);
591     T2 = Unwrap(T2);
592     Kind = T1Class == T2Class ? CastAwayConstnessKind::CACK_SimilarKind
593                               : CastAwayConstnessKind::CACK_Incoherent;
594   }
595 
596   // We've unwrapped at least one level. If the resulting T1 is a (possibly
597   // multidimensional) array type, any qualifier on any matching layer of
598   // T2 is considered to correspond to T1. Decompose down to the element
599   // type of T1 so that we can compare properly.
600   while (true) {
601     Context.UnwrapSimilarArrayTypes(T1, T2);
602 
603     if (Classify(T1) != Array)
604       break;
605 
606     auto T2Class = Classify(T2);
607     if (T2Class == None)
608       break;
609 
610     if (T2Class != Array)
611       Kind = CastAwayConstnessKind::CACK_Incoherent;
612     else if (Kind != CastAwayConstnessKind::CACK_Incoherent)
613       Kind = CastAwayConstnessKind::CACK_SimilarKind;
614 
615     T1 = Unwrap(T1);
616     T2 = Unwrap(T2).withCVRQualifiers(T2.getCVRQualifiers());
617   }
618 
619   return Kind;
620 }
621 
622 /// Check if the pointer conversion from SrcType to DestType casts away
623 /// constness as defined in C++ [expr.const.cast]. This is used by the cast
624 /// checkers. Both arguments must denote pointer (possibly to member) types.
625 ///
626 /// \param CheckCVR Whether to check for const/volatile/restrict qualifiers.
627 /// \param CheckObjCLifetime Whether to check Objective-C lifetime qualifiers.
628 static CastAwayConstnessKind
629 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
630                    bool CheckCVR, bool CheckObjCLifetime,
631                    QualType *TheOffendingSrcType = nullptr,
632                    QualType *TheOffendingDestType = nullptr,
633                    Qualifiers *CastAwayQualifiers = nullptr) {
634   // If the only checking we care about is for Objective-C lifetime qualifiers,
635   // and we're not in ObjC mode, there's nothing to check.
636   if (!CheckCVR && CheckObjCLifetime && !Self.Context.getLangOpts().ObjC)
637     return CastAwayConstnessKind::CACK_None;
638 
639   if (!DestType->isReferenceType()) {
640     assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() ||
641             SrcType->isBlockPointerType()) &&
642            "Source type is not pointer or pointer to member.");
643     assert((DestType->isAnyPointerType() || DestType->isMemberPointerType() ||
644             DestType->isBlockPointerType()) &&
645            "Destination type is not pointer or pointer to member.");
646   }
647 
648   QualType UnwrappedSrcType = Self.Context.getCanonicalType(SrcType),
649            UnwrappedDestType = Self.Context.getCanonicalType(DestType);
650 
651   // Find the qualifiers. We only care about cvr-qualifiers for the
652   // purpose of this check, because other qualifiers (address spaces,
653   // Objective-C GC, etc.) are part of the type's identity.
654   QualType PrevUnwrappedSrcType = UnwrappedSrcType;
655   QualType PrevUnwrappedDestType = UnwrappedDestType;
656   auto WorstKind = CastAwayConstnessKind::CACK_Similar;
657   bool AllConstSoFar = true;
658   while (auto Kind = unwrapCastAwayConstnessLevel(
659              Self.Context, UnwrappedSrcType, UnwrappedDestType)) {
660     // Track the worst kind of unwrap we needed to do before we found a
661     // problem.
662     if (Kind > WorstKind)
663       WorstKind = Kind;
664 
665     // Determine the relevant qualifiers at this level.
666     Qualifiers SrcQuals, DestQuals;
667     Self.Context.getUnqualifiedArrayType(UnwrappedSrcType, SrcQuals);
668     Self.Context.getUnqualifiedArrayType(UnwrappedDestType, DestQuals);
669 
670     // We do not meaningfully track object const-ness of Objective-C object
671     // types. Remove const from the source type if either the source or
672     // the destination is an Objective-C object type.
673     if (UnwrappedSrcType->isObjCObjectType() ||
674         UnwrappedDestType->isObjCObjectType())
675       SrcQuals.removeConst();
676 
677     if (CheckCVR) {
678       Qualifiers SrcCvrQuals =
679           Qualifiers::fromCVRMask(SrcQuals.getCVRQualifiers());
680       Qualifiers DestCvrQuals =
681           Qualifiers::fromCVRMask(DestQuals.getCVRQualifiers());
682 
683       if (SrcCvrQuals != DestCvrQuals) {
684         if (CastAwayQualifiers)
685           *CastAwayQualifiers = SrcCvrQuals - DestCvrQuals;
686 
687         // If we removed a cvr-qualifier, this is casting away 'constness'.
688         if (!DestCvrQuals.compatiblyIncludes(SrcCvrQuals)) {
689           if (TheOffendingSrcType)
690             *TheOffendingSrcType = PrevUnwrappedSrcType;
691           if (TheOffendingDestType)
692             *TheOffendingDestType = PrevUnwrappedDestType;
693           return WorstKind;
694         }
695 
696         // If any prior level was not 'const', this is also casting away
697         // 'constness'. We noted the outermost type missing a 'const' already.
698         if (!AllConstSoFar)
699           return WorstKind;
700       }
701     }
702 
703     if (CheckObjCLifetime &&
704         !DestQuals.compatiblyIncludesObjCLifetime(SrcQuals))
705       return WorstKind;
706 
707     // If we found our first non-const-qualified type, this may be the place
708     // where things start to go wrong.
709     if (AllConstSoFar && !DestQuals.hasConst()) {
710       AllConstSoFar = false;
711       if (TheOffendingSrcType)
712         *TheOffendingSrcType = PrevUnwrappedSrcType;
713       if (TheOffendingDestType)
714         *TheOffendingDestType = PrevUnwrappedDestType;
715     }
716 
717     PrevUnwrappedSrcType = UnwrappedSrcType;
718     PrevUnwrappedDestType = UnwrappedDestType;
719   }
720 
721   return CastAwayConstnessKind::CACK_None;
722 }
723 
724 static TryCastResult getCastAwayConstnessCastKind(CastAwayConstnessKind CACK,
725                                                   unsigned &DiagID) {
726   switch (CACK) {
727   case CastAwayConstnessKind::CACK_None:
728     llvm_unreachable("did not cast away constness");
729 
730   case CastAwayConstnessKind::CACK_Similar:
731     // FIXME: Accept these as an extension too?
732   case CastAwayConstnessKind::CACK_SimilarKind:
733     DiagID = diag::err_bad_cxx_cast_qualifiers_away;
734     return TC_Failed;
735 
736   case CastAwayConstnessKind::CACK_Incoherent:
737     DiagID = diag::ext_bad_cxx_cast_qualifiers_away_incoherent;
738     return TC_Extension;
739   }
740 
741   llvm_unreachable("unexpected cast away constness kind");
742 }
743 
744 /// CheckDynamicCast - Check that a dynamic_cast\<DestType\>(SrcExpr) is valid.
745 /// Refer to C++ 5.2.7 for details. Dynamic casts are used mostly for runtime-
746 /// checked downcasts in class hierarchies.
747 void CastOperation::CheckDynamicCast() {
748   CheckNoDerefRAII NoderefCheck(*this);
749 
750   if (ValueKind == VK_RValue)
751     SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
752   else if (isPlaceholder())
753     SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
754   if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
755     return;
756 
757   QualType OrigSrcType = SrcExpr.get()->getType();
758   QualType DestType = Self.Context.getCanonicalType(this->DestType);
759 
760   // C++ 5.2.7p1: T shall be a pointer or reference to a complete class type,
761   //   or "pointer to cv void".
762 
763   QualType DestPointee;
764   const PointerType *DestPointer = DestType->getAs<PointerType>();
765   const ReferenceType *DestReference = nullptr;
766   if (DestPointer) {
767     DestPointee = DestPointer->getPointeeType();
768   } else if ((DestReference = DestType->getAs<ReferenceType>())) {
769     DestPointee = DestReference->getPointeeType();
770   } else {
771     Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ref_or_ptr)
772       << this->DestType << DestRange;
773     SrcExpr = ExprError();
774     return;
775   }
776 
777   const RecordType *DestRecord = DestPointee->getAs<RecordType>();
778   if (DestPointee->isVoidType()) {
779     assert(DestPointer && "Reference to void is not possible");
780   } else if (DestRecord) {
781     if (Self.RequireCompleteType(OpRange.getBegin(), DestPointee,
782                                  diag::err_bad_cast_incomplete,
783                                  DestRange)) {
784       SrcExpr = ExprError();
785       return;
786     }
787   } else {
788     Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class)
789       << DestPointee.getUnqualifiedType() << DestRange;
790     SrcExpr = ExprError();
791     return;
792   }
793 
794   // C++0x 5.2.7p2: If T is a pointer type, v shall be an rvalue of a pointer to
795   //   complete class type, [...]. If T is an lvalue reference type, v shall be
796   //   an lvalue of a complete class type, [...]. If T is an rvalue reference
797   //   type, v shall be an expression having a complete class type, [...]
798   QualType SrcType = Self.Context.getCanonicalType(OrigSrcType);
799   QualType SrcPointee;
800   if (DestPointer) {
801     if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
802       SrcPointee = SrcPointer->getPointeeType();
803     } else {
804       Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ptr)
805           << OrigSrcType << this->DestType << SrcExpr.get()->getSourceRange();
806       SrcExpr = ExprError();
807       return;
808     }
809   } else if (DestReference->isLValueReferenceType()) {
810     if (!SrcExpr.get()->isLValue()) {
811       Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_rvalue)
812         << CT_Dynamic << OrigSrcType << this->DestType << OpRange;
813     }
814     SrcPointee = SrcType;
815   } else {
816     // If we're dynamic_casting from a prvalue to an rvalue reference, we need
817     // to materialize the prvalue before we bind the reference to it.
818     if (SrcExpr.get()->isRValue())
819       SrcExpr = Self.CreateMaterializeTemporaryExpr(
820           SrcType, SrcExpr.get(), /*IsLValueReference*/ false);
821     SrcPointee = SrcType;
822   }
823 
824   const RecordType *SrcRecord = SrcPointee->getAs<RecordType>();
825   if (SrcRecord) {
826     if (Self.RequireCompleteType(OpRange.getBegin(), SrcPointee,
827                                  diag::err_bad_cast_incomplete,
828                                  SrcExpr.get())) {
829       SrcExpr = ExprError();
830       return;
831     }
832   } else {
833     Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class)
834       << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
835     SrcExpr = ExprError();
836     return;
837   }
838 
839   assert((DestPointer || DestReference) &&
840     "Bad destination non-ptr/ref slipped through.");
841   assert((DestRecord || DestPointee->isVoidType()) &&
842     "Bad destination pointee slipped through.");
843   assert(SrcRecord && "Bad source pointee slipped through.");
844 
845   // C++ 5.2.7p1: The dynamic_cast operator shall not cast away constness.
846   if (!DestPointee.isAtLeastAsQualifiedAs(SrcPointee)) {
847     Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_qualifiers_away)
848       << CT_Dynamic << OrigSrcType << this->DestType << OpRange;
849     SrcExpr = ExprError();
850     return;
851   }
852 
853   // C++ 5.2.7p3: If the type of v is the same as the required result type,
854   //   [except for cv].
855   if (DestRecord == SrcRecord) {
856     Kind = CK_NoOp;
857     return;
858   }
859 
860   // C++ 5.2.7p5
861   // Upcasts are resolved statically.
862   if (DestRecord &&
863       Self.IsDerivedFrom(OpRange.getBegin(), SrcPointee, DestPointee)) {
864     if (Self.CheckDerivedToBaseConversion(SrcPointee, DestPointee,
865                                            OpRange.getBegin(), OpRange,
866                                            &BasePath)) {
867       SrcExpr = ExprError();
868       return;
869     }
870 
871     Kind = CK_DerivedToBase;
872     return;
873   }
874 
875   // C++ 5.2.7p6: Otherwise, v shall be [polymorphic].
876   const RecordDecl *SrcDecl = SrcRecord->getDecl()->getDefinition();
877   assert(SrcDecl && "Definition missing");
878   if (!cast<CXXRecordDecl>(SrcDecl)->isPolymorphic()) {
879     Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_polymorphic)
880       << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
881     SrcExpr = ExprError();
882   }
883 
884   // dynamic_cast is not available with -fno-rtti.
885   // As an exception, dynamic_cast to void* is available because it doesn't
886   // use RTTI.
887   if (!Self.getLangOpts().RTTI && !DestPointee->isVoidType()) {
888     Self.Diag(OpRange.getBegin(), diag::err_no_dynamic_cast_with_fno_rtti);
889     SrcExpr = ExprError();
890     return;
891   }
892 
893   // Warns when dynamic_cast is used with RTTI data disabled.
894   if (!Self.getLangOpts().RTTIData) {
895     bool MicrosoftABI =
896         Self.getASTContext().getTargetInfo().getCXXABI().isMicrosoft();
897     bool isClangCL = Self.getDiagnostics().getDiagnosticOptions().getFormat() ==
898                      DiagnosticOptions::MSVC;
899     if (MicrosoftABI || !DestPointee->isVoidType())
900       Self.Diag(OpRange.getBegin(),
901                 diag::warn_no_dynamic_cast_with_rtti_disabled)
902           << isClangCL;
903   }
904 
905   // Done. Everything else is run-time checks.
906   Kind = CK_Dynamic;
907 }
908 
909 /// CheckConstCast - Check that a const_cast\<DestType\>(SrcExpr) is valid.
910 /// Refer to C++ 5.2.11 for details. const_cast is typically used in code
911 /// like this:
912 /// const char *str = "literal";
913 /// legacy_function(const_cast\<char*\>(str));
914 void CastOperation::CheckConstCast() {
915   CheckNoDerefRAII NoderefCheck(*this);
916 
917   if (ValueKind == VK_RValue)
918     SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
919   else if (isPlaceholder())
920     SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
921   if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
922     return;
923 
924   unsigned msg = diag::err_bad_cxx_cast_generic;
925   auto TCR = TryConstCast(Self, SrcExpr, DestType, /*CStyle*/ false, msg);
926   if (TCR != TC_Success && msg != 0) {
927     Self.Diag(OpRange.getBegin(), msg) << CT_Const
928       << SrcExpr.get()->getType() << DestType << OpRange;
929   }
930   if (!isValidCast(TCR))
931     SrcExpr = ExprError();
932 }
933 
934 void CastOperation::CheckAddrspaceCast() {
935   unsigned msg = diag::err_bad_cxx_cast_generic;
936   auto TCR =
937       TryAddressSpaceCast(Self, SrcExpr, DestType, /*CStyle*/ false, msg, Kind);
938   if (TCR != TC_Success && msg != 0) {
939     Self.Diag(OpRange.getBegin(), msg)
940         << CT_Addrspace << SrcExpr.get()->getType() << DestType << OpRange;
941   }
942   if (!isValidCast(TCR))
943     SrcExpr = ExprError();
944 }
945 
946 /// Check that a reinterpret_cast\<DestType\>(SrcExpr) is not used as upcast
947 /// or downcast between respective pointers or references.
948 static void DiagnoseReinterpretUpDownCast(Sema &Self, const Expr *SrcExpr,
949                                           QualType DestType,
950                                           SourceRange OpRange) {
951   QualType SrcType = SrcExpr->getType();
952   // When casting from pointer or reference, get pointee type; use original
953   // type otherwise.
954   const CXXRecordDecl *SrcPointeeRD = SrcType->getPointeeCXXRecordDecl();
955   const CXXRecordDecl *SrcRD =
956     SrcPointeeRD ? SrcPointeeRD : SrcType->getAsCXXRecordDecl();
957 
958   // Examining subobjects for records is only possible if the complete and
959   // valid definition is available.  Also, template instantiation is not
960   // allowed here.
961   if (!SrcRD || !SrcRD->isCompleteDefinition() || SrcRD->isInvalidDecl())
962     return;
963 
964   const CXXRecordDecl *DestRD = DestType->getPointeeCXXRecordDecl();
965 
966   if (!DestRD || !DestRD->isCompleteDefinition() || DestRD->isInvalidDecl())
967     return;
968 
969   enum {
970     ReinterpretUpcast,
971     ReinterpretDowncast
972   } ReinterpretKind;
973 
974   CXXBasePaths BasePaths;
975 
976   if (SrcRD->isDerivedFrom(DestRD, BasePaths))
977     ReinterpretKind = ReinterpretUpcast;
978   else if (DestRD->isDerivedFrom(SrcRD, BasePaths))
979     ReinterpretKind = ReinterpretDowncast;
980   else
981     return;
982 
983   bool VirtualBase = true;
984   bool NonZeroOffset = false;
985   for (CXXBasePaths::const_paths_iterator I = BasePaths.begin(),
986                                           E = BasePaths.end();
987        I != E; ++I) {
988     const CXXBasePath &Path = *I;
989     CharUnits Offset = CharUnits::Zero();
990     bool IsVirtual = false;
991     for (CXXBasePath::const_iterator IElem = Path.begin(), EElem = Path.end();
992          IElem != EElem; ++IElem) {
993       IsVirtual = IElem->Base->isVirtual();
994       if (IsVirtual)
995         break;
996       const CXXRecordDecl *BaseRD = IElem->Base->getType()->getAsCXXRecordDecl();
997       assert(BaseRD && "Base type should be a valid unqualified class type");
998       // Don't check if any base has invalid declaration or has no definition
999       // since it has no layout info.
1000       const CXXRecordDecl *Class = IElem->Class,
1001                           *ClassDefinition = Class->getDefinition();
1002       if (Class->isInvalidDecl() || !ClassDefinition ||
1003           !ClassDefinition->isCompleteDefinition())
1004         return;
1005 
1006       const ASTRecordLayout &DerivedLayout =
1007           Self.Context.getASTRecordLayout(Class);
1008       Offset += DerivedLayout.getBaseClassOffset(BaseRD);
1009     }
1010     if (!IsVirtual) {
1011       // Don't warn if any path is a non-virtually derived base at offset zero.
1012       if (Offset.isZero())
1013         return;
1014       // Offset makes sense only for non-virtual bases.
1015       else
1016         NonZeroOffset = true;
1017     }
1018     VirtualBase = VirtualBase && IsVirtual;
1019   }
1020 
1021   (void) NonZeroOffset; // Silence set but not used warning.
1022   assert((VirtualBase || NonZeroOffset) &&
1023          "Should have returned if has non-virtual base with zero offset");
1024 
1025   QualType BaseType =
1026       ReinterpretKind == ReinterpretUpcast? DestType : SrcType;
1027   QualType DerivedType =
1028       ReinterpretKind == ReinterpretUpcast? SrcType : DestType;
1029 
1030   SourceLocation BeginLoc = OpRange.getBegin();
1031   Self.Diag(BeginLoc, diag::warn_reinterpret_different_from_static)
1032     << DerivedType << BaseType << !VirtualBase << int(ReinterpretKind)
1033     << OpRange;
1034   Self.Diag(BeginLoc, diag::note_reinterpret_updowncast_use_static)
1035     << int(ReinterpretKind)
1036     << FixItHint::CreateReplacement(BeginLoc, "static_cast");
1037 }
1038 
1039 static bool argTypeIsABIEquivalent(QualType SrcType, QualType DestType,
1040                                    ASTContext &Context) {
1041   if (SrcType->isPointerType() && DestType->isPointerType())
1042     return true;
1043 
1044   // Allow integral type mismatch if their size are equal.
1045   if (SrcType->isIntegralType(Context) && DestType->isIntegralType(Context))
1046     if (Context.getTypeInfoInChars(SrcType).Width ==
1047         Context.getTypeInfoInChars(DestType).Width)
1048       return true;
1049 
1050   return Context.hasSameUnqualifiedType(SrcType, DestType);
1051 }
1052 
1053 static bool checkCastFunctionType(Sema &Self, const ExprResult &SrcExpr,
1054                                   QualType DestType) {
1055   if (Self.Diags.isIgnored(diag::warn_cast_function_type,
1056                            SrcExpr.get()->getExprLoc()))
1057     return true;
1058 
1059   QualType SrcType = SrcExpr.get()->getType();
1060   const FunctionType *SrcFTy = nullptr;
1061   const FunctionType *DstFTy = nullptr;
1062   if (((SrcType->isBlockPointerType() || SrcType->isFunctionPointerType()) &&
1063        DestType->isFunctionPointerType()) ||
1064       (SrcType->isMemberFunctionPointerType() &&
1065        DestType->isMemberFunctionPointerType())) {
1066     SrcFTy = SrcType->getPointeeType()->castAs<FunctionType>();
1067     DstFTy = DestType->getPointeeType()->castAs<FunctionType>();
1068   } else if (SrcType->isFunctionType() && DestType->isFunctionReferenceType()) {
1069     SrcFTy = SrcType->castAs<FunctionType>();
1070     DstFTy = DestType.getNonReferenceType()->castAs<FunctionType>();
1071   } else {
1072     return true;
1073   }
1074   assert(SrcFTy && DstFTy);
1075 
1076   auto IsVoidVoid = [](const FunctionType *T) {
1077     if (!T->getReturnType()->isVoidType())
1078       return false;
1079     if (const auto *PT = T->getAs<FunctionProtoType>())
1080       return !PT->isVariadic() && PT->getNumParams() == 0;
1081     return false;
1082   };
1083 
1084   // Skip if either function type is void(*)(void)
1085   if (IsVoidVoid(SrcFTy) || IsVoidVoid(DstFTy))
1086     return true;
1087 
1088   // Check return type.
1089   if (!argTypeIsABIEquivalent(SrcFTy->getReturnType(), DstFTy->getReturnType(),
1090                               Self.Context))
1091     return false;
1092 
1093   // Check if either has unspecified number of parameters
1094   if (SrcFTy->isFunctionNoProtoType() || DstFTy->isFunctionNoProtoType())
1095     return true;
1096 
1097   // Check parameter types.
1098 
1099   const auto *SrcFPTy = cast<FunctionProtoType>(SrcFTy);
1100   const auto *DstFPTy = cast<FunctionProtoType>(DstFTy);
1101 
1102   // In a cast involving function types with a variable argument list only the
1103   // types of initial arguments that are provided are considered.
1104   unsigned NumParams = SrcFPTy->getNumParams();
1105   unsigned DstNumParams = DstFPTy->getNumParams();
1106   if (NumParams > DstNumParams) {
1107     if (!DstFPTy->isVariadic())
1108       return false;
1109     NumParams = DstNumParams;
1110   } else if (NumParams < DstNumParams) {
1111     if (!SrcFPTy->isVariadic())
1112       return false;
1113   }
1114 
1115   for (unsigned i = 0; i < NumParams; ++i)
1116     if (!argTypeIsABIEquivalent(SrcFPTy->getParamType(i),
1117                                 DstFPTy->getParamType(i), Self.Context))
1118       return false;
1119 
1120   return true;
1121 }
1122 
1123 /// CheckReinterpretCast - Check that a reinterpret_cast\<DestType\>(SrcExpr) is
1124 /// valid.
1125 /// Refer to C++ 5.2.10 for details. reinterpret_cast is typically used in code
1126 /// like this:
1127 /// char *bytes = reinterpret_cast\<char*\>(int_ptr);
1128 void CastOperation::CheckReinterpretCast() {
1129   if (ValueKind == VK_RValue && !isPlaceholder(BuiltinType::Overload))
1130     SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
1131   else
1132     checkNonOverloadPlaceholders();
1133   if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
1134     return;
1135 
1136   unsigned msg = diag::err_bad_cxx_cast_generic;
1137   TryCastResult tcr =
1138     TryReinterpretCast(Self, SrcExpr, DestType,
1139                        /*CStyle*/false, OpRange, msg, Kind);
1140   if (tcr != TC_Success && msg != 0) {
1141     if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
1142       return;
1143     if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
1144       //FIXME: &f<int>; is overloaded and resolvable
1145       Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_overload)
1146         << OverloadExpr::find(SrcExpr.get()).Expression->getName()
1147         << DestType << OpRange;
1148       Self.NoteAllOverloadCandidates(SrcExpr.get());
1149 
1150     } else {
1151       diagnoseBadCast(Self, msg, CT_Reinterpret, OpRange, SrcExpr.get(),
1152                       DestType, /*listInitialization=*/false);
1153     }
1154   }
1155 
1156   if (isValidCast(tcr)) {
1157     if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers())
1158       checkObjCConversion(Sema::CCK_OtherCast);
1159     DiagnoseReinterpretUpDownCast(Self, SrcExpr.get(), DestType, OpRange);
1160 
1161     if (!checkCastFunctionType(Self, SrcExpr, DestType))
1162       Self.Diag(OpRange.getBegin(), diag::warn_cast_function_type)
1163           << SrcExpr.get()->getType() << DestType << OpRange;
1164   } else {
1165     SrcExpr = ExprError();
1166   }
1167 }
1168 
1169 
1170 /// CheckStaticCast - Check that a static_cast\<DestType\>(SrcExpr) is valid.
1171 /// Refer to C++ 5.2.9 for details. Static casts are mostly used for making
1172 /// implicit conversions explicit and getting rid of data loss warnings.
1173 void CastOperation::CheckStaticCast() {
1174   CheckNoDerefRAII NoderefCheck(*this);
1175 
1176   if (isPlaceholder()) {
1177     checkNonOverloadPlaceholders();
1178     if (SrcExpr.isInvalid())
1179       return;
1180   }
1181 
1182   // This test is outside everything else because it's the only case where
1183   // a non-lvalue-reference target type does not lead to decay.
1184   // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
1185   if (DestType->isVoidType()) {
1186     Kind = CK_ToVoid;
1187 
1188     if (claimPlaceholder(BuiltinType::Overload)) {
1189       Self.ResolveAndFixSingleFunctionTemplateSpecialization(SrcExpr,
1190                 false, // Decay Function to ptr
1191                 true, // Complain
1192                 OpRange, DestType, diag::err_bad_static_cast_overload);
1193       if (SrcExpr.isInvalid())
1194         return;
1195     }
1196 
1197     SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
1198     return;
1199   }
1200 
1201   if (ValueKind == VK_RValue && !DestType->isRecordType() &&
1202       !isPlaceholder(BuiltinType::Overload)) {
1203     SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
1204     if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
1205       return;
1206   }
1207 
1208   unsigned msg = diag::err_bad_cxx_cast_generic;
1209   TryCastResult tcr
1210     = TryStaticCast(Self, SrcExpr, DestType, Sema::CCK_OtherCast, OpRange, msg,
1211                     Kind, BasePath, /*ListInitialization=*/false);
1212   if (tcr != TC_Success && msg != 0) {
1213     if (SrcExpr.isInvalid())
1214       return;
1215     if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
1216       OverloadExpr* oe = OverloadExpr::find(SrcExpr.get()).Expression;
1217       Self.Diag(OpRange.getBegin(), diag::err_bad_static_cast_overload)
1218         << oe->getName() << DestType << OpRange
1219         << oe->getQualifierLoc().getSourceRange();
1220       Self.NoteAllOverloadCandidates(SrcExpr.get());
1221     } else {
1222       diagnoseBadCast(Self, msg, CT_Static, OpRange, SrcExpr.get(), DestType,
1223                       /*listInitialization=*/false);
1224     }
1225   }
1226 
1227   if (isValidCast(tcr)) {
1228     if (Kind == CK_BitCast)
1229       checkCastAlign();
1230     if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers())
1231       checkObjCConversion(Sema::CCK_OtherCast);
1232   } else {
1233     SrcExpr = ExprError();
1234   }
1235 }
1236 
1237 static bool IsAddressSpaceConversion(QualType SrcType, QualType DestType) {
1238   auto *SrcPtrType = SrcType->getAs<PointerType>();
1239   if (!SrcPtrType)
1240     return false;
1241   auto *DestPtrType = DestType->getAs<PointerType>();
1242   if (!DestPtrType)
1243     return false;
1244   return SrcPtrType->getPointeeType().getAddressSpace() !=
1245          DestPtrType->getPointeeType().getAddressSpace();
1246 }
1247 
1248 /// TryStaticCast - Check if a static cast can be performed, and do so if
1249 /// possible. If @p CStyle, ignore access restrictions on hierarchy casting
1250 /// and casting away constness.
1251 static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr,
1252                                    QualType DestType,
1253                                    Sema::CheckedConversionKind CCK,
1254                                    SourceRange OpRange, unsigned &msg,
1255                                    CastKind &Kind, CXXCastPath &BasePath,
1256                                    bool ListInitialization) {
1257   // Determine whether we have the semantics of a C-style cast.
1258   bool CStyle
1259     = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
1260 
1261   // The order the tests is not entirely arbitrary. There is one conversion
1262   // that can be handled in two different ways. Given:
1263   // struct A {};
1264   // struct B : public A {
1265   //   B(); B(const A&);
1266   // };
1267   // const A &a = B();
1268   // the cast static_cast<const B&>(a) could be seen as either a static
1269   // reference downcast, or an explicit invocation of the user-defined
1270   // conversion using B's conversion constructor.
1271   // DR 427 specifies that the downcast is to be applied here.
1272 
1273   // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
1274   // Done outside this function.
1275 
1276   TryCastResult tcr;
1277 
1278   // C++ 5.2.9p5, reference downcast.
1279   // See the function for details.
1280   // DR 427 specifies that this is to be applied before paragraph 2.
1281   tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle,
1282                                    OpRange, msg, Kind, BasePath);
1283   if (tcr != TC_NotApplicable)
1284     return tcr;
1285 
1286   // C++11 [expr.static.cast]p3:
1287   //   A glvalue of type "cv1 T1" can be cast to type "rvalue reference to cv2
1288   //   T2" if "cv2 T2" is reference-compatible with "cv1 T1".
1289   tcr = TryLValueToRValueCast(Self, SrcExpr.get(), DestType, CStyle, Kind,
1290                               BasePath, msg);
1291   if (tcr != TC_NotApplicable)
1292     return tcr;
1293 
1294   // C++ 5.2.9p2: An expression e can be explicitly converted to a type T
1295   //   [...] if the declaration "T t(e);" is well-formed, [...].
1296   tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg,
1297                               Kind, ListInitialization);
1298   if (SrcExpr.isInvalid())
1299     return TC_Failed;
1300   if (tcr != TC_NotApplicable)
1301     return tcr;
1302 
1303   // C++ 5.2.9p6: May apply the reverse of any standard conversion, except
1304   // lvalue-to-rvalue, array-to-pointer, function-to-pointer, and boolean
1305   // conversions, subject to further restrictions.
1306   // Also, C++ 5.2.9p1 forbids casting away constness, which makes reversal
1307   // of qualification conversions impossible.
1308   // In the CStyle case, the earlier attempt to const_cast should have taken
1309   // care of reverse qualification conversions.
1310 
1311   QualType SrcType = Self.Context.getCanonicalType(SrcExpr.get()->getType());
1312 
1313   // C++0x 5.2.9p9: A value of a scoped enumeration type can be explicitly
1314   // converted to an integral type. [...] A value of a scoped enumeration type
1315   // can also be explicitly converted to a floating-point type [...].
1316   if (const EnumType *Enum = SrcType->getAs<EnumType>()) {
1317     if (Enum->getDecl()->isScoped()) {
1318       if (DestType->isBooleanType()) {
1319         Kind = CK_IntegralToBoolean;
1320         return TC_Success;
1321       } else if (DestType->isIntegralType(Self.Context)) {
1322         Kind = CK_IntegralCast;
1323         return TC_Success;
1324       } else if (DestType->isRealFloatingType()) {
1325         Kind = CK_IntegralToFloating;
1326         return TC_Success;
1327       }
1328     }
1329   }
1330 
1331   // Reverse integral promotion/conversion. All such conversions are themselves
1332   // again integral promotions or conversions and are thus already handled by
1333   // p2 (TryDirectInitialization above).
1334   // (Note: any data loss warnings should be suppressed.)
1335   // The exception is the reverse of enum->integer, i.e. integer->enum (and
1336   // enum->enum). See also C++ 5.2.9p7.
1337   // The same goes for reverse floating point promotion/conversion and
1338   // floating-integral conversions. Again, only floating->enum is relevant.
1339   if (DestType->isEnumeralType()) {
1340     if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
1341                                  diag::err_bad_cast_incomplete)) {
1342       SrcExpr = ExprError();
1343       return TC_Failed;
1344     }
1345     if (SrcType->isIntegralOrEnumerationType()) {
1346       // [expr.static.cast]p10 If the enumeration type has a fixed underlying
1347       // type, the value is first converted to that type by integral conversion
1348       const EnumType *Enum = DestType->getAs<EnumType>();
1349       Kind = Enum->getDecl()->isFixed() &&
1350                      Enum->getDecl()->getIntegerType()->isBooleanType()
1351                  ? CK_IntegralToBoolean
1352                  : CK_IntegralCast;
1353       return TC_Success;
1354     } else if (SrcType->isRealFloatingType())   {
1355       Kind = CK_FloatingToIntegral;
1356       return TC_Success;
1357     }
1358   }
1359 
1360   // Reverse pointer upcast. C++ 4.10p3 specifies pointer upcast.
1361   // C++ 5.2.9p8 additionally disallows a cast path through virtual inheritance.
1362   tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg,
1363                                  Kind, BasePath);
1364   if (tcr != TC_NotApplicable)
1365     return tcr;
1366 
1367   // Reverse member pointer conversion. C++ 4.11 specifies member pointer
1368   // conversion. C++ 5.2.9p9 has additional information.
1369   // DR54's access restrictions apply here also.
1370   tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle,
1371                                      OpRange, msg, Kind, BasePath);
1372   if (tcr != TC_NotApplicable)
1373     return tcr;
1374 
1375   // Reverse pointer conversion to void*. C++ 4.10.p2 specifies conversion to
1376   // void*. C++ 5.2.9p10 specifies additional restrictions, which really is
1377   // just the usual constness stuff.
1378   if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
1379     QualType SrcPointee = SrcPointer->getPointeeType();
1380     if (SrcPointee->isVoidType()) {
1381       if (const PointerType *DestPointer = DestType->getAs<PointerType>()) {
1382         QualType DestPointee = DestPointer->getPointeeType();
1383         if (DestPointee->isIncompleteOrObjectType()) {
1384           // This is definitely the intended conversion, but it might fail due
1385           // to a qualifier violation. Note that we permit Objective-C lifetime
1386           // and GC qualifier mismatches here.
1387           if (!CStyle) {
1388             Qualifiers DestPointeeQuals = DestPointee.getQualifiers();
1389             Qualifiers SrcPointeeQuals = SrcPointee.getQualifiers();
1390             DestPointeeQuals.removeObjCGCAttr();
1391             DestPointeeQuals.removeObjCLifetime();
1392             SrcPointeeQuals.removeObjCGCAttr();
1393             SrcPointeeQuals.removeObjCLifetime();
1394             if (DestPointeeQuals != SrcPointeeQuals &&
1395                 !DestPointeeQuals.compatiblyIncludes(SrcPointeeQuals)) {
1396               msg = diag::err_bad_cxx_cast_qualifiers_away;
1397               return TC_Failed;
1398             }
1399           }
1400           Kind = IsAddressSpaceConversion(SrcType, DestType)
1401                      ? CK_AddressSpaceConversion
1402                      : CK_BitCast;
1403           return TC_Success;
1404         }
1405 
1406         // Microsoft permits static_cast from 'pointer-to-void' to
1407         // 'pointer-to-function'.
1408         if (!CStyle && Self.getLangOpts().MSVCCompat &&
1409             DestPointee->isFunctionType()) {
1410           Self.Diag(OpRange.getBegin(), diag::ext_ms_cast_fn_obj) << OpRange;
1411           Kind = CK_BitCast;
1412           return TC_Success;
1413         }
1414       }
1415       else if (DestType->isObjCObjectPointerType()) {
1416         // allow both c-style cast and static_cast of objective-c pointers as
1417         // they are pervasive.
1418         Kind = CK_CPointerToObjCPointerCast;
1419         return TC_Success;
1420       }
1421       else if (CStyle && DestType->isBlockPointerType()) {
1422         // allow c-style cast of void * to block pointers.
1423         Kind = CK_AnyPointerToBlockPointerCast;
1424         return TC_Success;
1425       }
1426     }
1427   }
1428   // Allow arbitrary objective-c pointer conversion with static casts.
1429   if (SrcType->isObjCObjectPointerType() &&
1430       DestType->isObjCObjectPointerType()) {
1431     Kind = CK_BitCast;
1432     return TC_Success;
1433   }
1434   // Allow ns-pointer to cf-pointer conversion in either direction
1435   // with static casts.
1436   if (!CStyle &&
1437       Self.CheckTollFreeBridgeStaticCast(DestType, SrcExpr.get(), Kind))
1438     return TC_Success;
1439 
1440   // See if it looks like the user is trying to convert between
1441   // related record types, and select a better diagnostic if so.
1442   if (auto SrcPointer = SrcType->getAs<PointerType>())
1443     if (auto DestPointer = DestType->getAs<PointerType>())
1444       if (SrcPointer->getPointeeType()->getAs<RecordType>() &&
1445           DestPointer->getPointeeType()->getAs<RecordType>())
1446        msg = diag::err_bad_cxx_cast_unrelated_class;
1447 
1448   // We tried everything. Everything! Nothing works! :-(
1449   return TC_NotApplicable;
1450 }
1451 
1452 /// Tests whether a conversion according to N2844 is valid.
1453 TryCastResult TryLValueToRValueCast(Sema &Self, Expr *SrcExpr,
1454                                     QualType DestType, bool CStyle,
1455                                     CastKind &Kind, CXXCastPath &BasePath,
1456                                     unsigned &msg) {
1457   // C++11 [expr.static.cast]p3:
1458   //   A glvalue of type "cv1 T1" can be cast to type "rvalue reference to
1459   //   cv2 T2" if "cv2 T2" is reference-compatible with "cv1 T1".
1460   const RValueReferenceType *R = DestType->getAs<RValueReferenceType>();
1461   if (!R)
1462     return TC_NotApplicable;
1463 
1464   if (!SrcExpr->isGLValue())
1465     return TC_NotApplicable;
1466 
1467   // Because we try the reference downcast before this function, from now on
1468   // this is the only cast possibility, so we issue an error if we fail now.
1469   // FIXME: Should allow casting away constness if CStyle.
1470   QualType FromType = SrcExpr->getType();
1471   QualType ToType = R->getPointeeType();
1472   if (CStyle) {
1473     FromType = FromType.getUnqualifiedType();
1474     ToType = ToType.getUnqualifiedType();
1475   }
1476 
1477   Sema::ReferenceConversions RefConv;
1478   Sema::ReferenceCompareResult RefResult = Self.CompareReferenceRelationship(
1479       SrcExpr->getBeginLoc(), ToType, FromType, &RefConv);
1480   if (RefResult != Sema::Ref_Compatible) {
1481     if (CStyle || RefResult == Sema::Ref_Incompatible)
1482       return TC_NotApplicable;
1483     // Diagnose types which are reference-related but not compatible here since
1484     // we can provide better diagnostics. In these cases forwarding to
1485     // [expr.static.cast]p4 should never result in a well-formed cast.
1486     msg = SrcExpr->isLValue() ? diag::err_bad_lvalue_to_rvalue_cast
1487                               : diag::err_bad_rvalue_to_rvalue_cast;
1488     return TC_Failed;
1489   }
1490 
1491   if (RefConv & Sema::ReferenceConversions::DerivedToBase) {
1492     Kind = CK_DerivedToBase;
1493     CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1494                        /*DetectVirtual=*/true);
1495     if (!Self.IsDerivedFrom(SrcExpr->getBeginLoc(), SrcExpr->getType(),
1496                             R->getPointeeType(), Paths))
1497       return TC_NotApplicable;
1498 
1499     Self.BuildBasePathArray(Paths, BasePath);
1500   } else
1501     Kind = CK_NoOp;
1502 
1503   return TC_Success;
1504 }
1505 
1506 /// Tests whether a conversion according to C++ 5.2.9p5 is valid.
1507 TryCastResult
1508 TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, QualType DestType,
1509                            bool CStyle, SourceRange OpRange,
1510                            unsigned &msg, CastKind &Kind,
1511                            CXXCastPath &BasePath) {
1512   // C++ 5.2.9p5: An lvalue of type "cv1 B", where B is a class type, can be
1513   //   cast to type "reference to cv2 D", where D is a class derived from B,
1514   //   if a valid standard conversion from "pointer to D" to "pointer to B"
1515   //   exists, cv2 >= cv1, and B is not a virtual base class of D.
1516   // In addition, DR54 clarifies that the base must be accessible in the
1517   // current context. Although the wording of DR54 only applies to the pointer
1518   // variant of this rule, the intent is clearly for it to apply to the this
1519   // conversion as well.
1520 
1521   const ReferenceType *DestReference = DestType->getAs<ReferenceType>();
1522   if (!DestReference) {
1523     return TC_NotApplicable;
1524   }
1525   bool RValueRef = DestReference->isRValueReferenceType();
1526   if (!RValueRef && !SrcExpr->isLValue()) {
1527     // We know the left side is an lvalue reference, so we can suggest a reason.
1528     msg = diag::err_bad_cxx_cast_rvalue;
1529     return TC_NotApplicable;
1530   }
1531 
1532   QualType DestPointee = DestReference->getPointeeType();
1533 
1534   // FIXME: If the source is a prvalue, we should issue a warning (because the
1535   // cast always has undefined behavior), and for AST consistency, we should
1536   // materialize a temporary.
1537   return TryStaticDowncast(Self,
1538                            Self.Context.getCanonicalType(SrcExpr->getType()),
1539                            Self.Context.getCanonicalType(DestPointee), CStyle,
1540                            OpRange, SrcExpr->getType(), DestType, msg, Kind,
1541                            BasePath);
1542 }
1543 
1544 /// Tests whether a conversion according to C++ 5.2.9p8 is valid.
1545 TryCastResult
1546 TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType,
1547                          bool CStyle, SourceRange OpRange,
1548                          unsigned &msg, CastKind &Kind,
1549                          CXXCastPath &BasePath) {
1550   // C++ 5.2.9p8: An rvalue of type "pointer to cv1 B", where B is a class
1551   //   type, can be converted to an rvalue of type "pointer to cv2 D", where D
1552   //   is a class derived from B, if a valid standard conversion from "pointer
1553   //   to D" to "pointer to B" exists, cv2 >= cv1, and B is not a virtual base
1554   //   class of D.
1555   // In addition, DR54 clarifies that the base must be accessible in the
1556   // current context.
1557 
1558   const PointerType *DestPointer = DestType->getAs<PointerType>();
1559   if (!DestPointer) {
1560     return TC_NotApplicable;
1561   }
1562 
1563   const PointerType *SrcPointer = SrcType->getAs<PointerType>();
1564   if (!SrcPointer) {
1565     msg = diag::err_bad_static_cast_pointer_nonpointer;
1566     return TC_NotApplicable;
1567   }
1568 
1569   return TryStaticDowncast(Self,
1570                    Self.Context.getCanonicalType(SrcPointer->getPointeeType()),
1571                   Self.Context.getCanonicalType(DestPointer->getPointeeType()),
1572                            CStyle, OpRange, SrcType, DestType, msg, Kind,
1573                            BasePath);
1574 }
1575 
1576 /// TryStaticDowncast - Common functionality of TryStaticReferenceDowncast and
1577 /// TryStaticPointerDowncast. Tests whether a static downcast from SrcType to
1578 /// DestType is possible and allowed.
1579 TryCastResult
1580 TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType,
1581                   bool CStyle, SourceRange OpRange, QualType OrigSrcType,
1582                   QualType OrigDestType, unsigned &msg,
1583                   CastKind &Kind, CXXCastPath &BasePath) {
1584   // We can only work with complete types. But don't complain if it doesn't work
1585   if (!Self.isCompleteType(OpRange.getBegin(), SrcType) ||
1586       !Self.isCompleteType(OpRange.getBegin(), DestType))
1587     return TC_NotApplicable;
1588 
1589   // Downcast can only happen in class hierarchies, so we need classes.
1590   if (!DestType->getAs<RecordType>() || !SrcType->getAs<RecordType>()) {
1591     return TC_NotApplicable;
1592   }
1593 
1594   CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1595                      /*DetectVirtual=*/true);
1596   if (!Self.IsDerivedFrom(OpRange.getBegin(), DestType, SrcType, Paths)) {
1597     return TC_NotApplicable;
1598   }
1599 
1600   // Target type does derive from source type. Now we're serious. If an error
1601   // appears now, it's not ignored.
1602   // This may not be entirely in line with the standard. Take for example:
1603   // struct A {};
1604   // struct B : virtual A {
1605   //   B(A&);
1606   // };
1607   //
1608   // void f()
1609   // {
1610   //   (void)static_cast<const B&>(*((A*)0));
1611   // }
1612   // As far as the standard is concerned, p5 does not apply (A is virtual), so
1613   // p2 should be used instead - "const B& t(*((A*)0));" is perfectly valid.
1614   // However, both GCC and Comeau reject this example, and accepting it would
1615   // mean more complex code if we're to preserve the nice error message.
1616   // FIXME: Being 100% compliant here would be nice to have.
1617 
1618   // Must preserve cv, as always, unless we're in C-style mode.
1619   if (!CStyle && !DestType.isAtLeastAsQualifiedAs(SrcType)) {
1620     msg = diag::err_bad_cxx_cast_qualifiers_away;
1621     return TC_Failed;
1622   }
1623 
1624   if (Paths.isAmbiguous(SrcType.getUnqualifiedType())) {
1625     // This code is analoguous to that in CheckDerivedToBaseConversion, except
1626     // that it builds the paths in reverse order.
1627     // To sum up: record all paths to the base and build a nice string from
1628     // them. Use it to spice up the error message.
1629     if (!Paths.isRecordingPaths()) {
1630       Paths.clear();
1631       Paths.setRecordingPaths(true);
1632       Self.IsDerivedFrom(OpRange.getBegin(), DestType, SrcType, Paths);
1633     }
1634     std::string PathDisplayStr;
1635     std::set<unsigned> DisplayedPaths;
1636     for (clang::CXXBasePath &Path : Paths) {
1637       if (DisplayedPaths.insert(Path.back().SubobjectNumber).second) {
1638         // We haven't displayed a path to this particular base
1639         // class subobject yet.
1640         PathDisplayStr += "\n    ";
1641         for (CXXBasePathElement &PE : llvm::reverse(Path))
1642           PathDisplayStr += PE.Base->getType().getAsString() + " -> ";
1643         PathDisplayStr += QualType(DestType).getAsString();
1644       }
1645     }
1646 
1647     Self.Diag(OpRange.getBegin(), diag::err_ambiguous_base_to_derived_cast)
1648       << QualType(SrcType).getUnqualifiedType()
1649       << QualType(DestType).getUnqualifiedType()
1650       << PathDisplayStr << OpRange;
1651     msg = 0;
1652     return TC_Failed;
1653   }
1654 
1655   if (Paths.getDetectedVirtual() != nullptr) {
1656     QualType VirtualBase(Paths.getDetectedVirtual(), 0);
1657     Self.Diag(OpRange.getBegin(), diag::err_static_downcast_via_virtual)
1658       << OrigSrcType << OrigDestType << VirtualBase << OpRange;
1659     msg = 0;
1660     return TC_Failed;
1661   }
1662 
1663   if (!CStyle) {
1664     switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1665                                       SrcType, DestType,
1666                                       Paths.front(),
1667                                 diag::err_downcast_from_inaccessible_base)) {
1668     case Sema::AR_accessible:
1669     case Sema::AR_delayed:     // be optimistic
1670     case Sema::AR_dependent:   // be optimistic
1671       break;
1672 
1673     case Sema::AR_inaccessible:
1674       msg = 0;
1675       return TC_Failed;
1676     }
1677   }
1678 
1679   Self.BuildBasePathArray(Paths, BasePath);
1680   Kind = CK_BaseToDerived;
1681   return TC_Success;
1682 }
1683 
1684 /// TryStaticMemberPointerUpcast - Tests whether a conversion according to
1685 /// C++ 5.2.9p9 is valid:
1686 ///
1687 ///   An rvalue of type "pointer to member of D of type cv1 T" can be
1688 ///   converted to an rvalue of type "pointer to member of B of type cv2 T",
1689 ///   where B is a base class of D [...].
1690 ///
1691 TryCastResult
1692 TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType,
1693                              QualType DestType, bool CStyle,
1694                              SourceRange OpRange,
1695                              unsigned &msg, CastKind &Kind,
1696                              CXXCastPath &BasePath) {
1697   const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>();
1698   if (!DestMemPtr)
1699     return TC_NotApplicable;
1700 
1701   bool WasOverloadedFunction = false;
1702   DeclAccessPair FoundOverload;
1703   if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
1704     if (FunctionDecl *Fn
1705           = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), DestType, false,
1706                                                     FoundOverload)) {
1707       CXXMethodDecl *M = cast<CXXMethodDecl>(Fn);
1708       SrcType = Self.Context.getMemberPointerType(Fn->getType(),
1709                       Self.Context.getTypeDeclType(M->getParent()).getTypePtr());
1710       WasOverloadedFunction = true;
1711     }
1712   }
1713 
1714   const MemberPointerType *SrcMemPtr = SrcType->getAs<MemberPointerType>();
1715   if (!SrcMemPtr) {
1716     msg = diag::err_bad_static_cast_member_pointer_nonmp;
1717     return TC_NotApplicable;
1718   }
1719 
1720   // Lock down the inheritance model right now in MS ABI, whether or not the
1721   // pointee types are the same.
1722   if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
1723     (void)Self.isCompleteType(OpRange.getBegin(), SrcType);
1724     (void)Self.isCompleteType(OpRange.getBegin(), DestType);
1725   }
1726 
1727   // T == T, modulo cv
1728   if (!Self.Context.hasSameUnqualifiedType(SrcMemPtr->getPointeeType(),
1729                                            DestMemPtr->getPointeeType()))
1730     return TC_NotApplicable;
1731 
1732   // B base of D
1733   QualType SrcClass(SrcMemPtr->getClass(), 0);
1734   QualType DestClass(DestMemPtr->getClass(), 0);
1735   CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1736                   /*DetectVirtual=*/true);
1737   if (!Self.IsDerivedFrom(OpRange.getBegin(), SrcClass, DestClass, Paths))
1738     return TC_NotApplicable;
1739 
1740   // B is a base of D. But is it an allowed base? If not, it's a hard error.
1741   if (Paths.isAmbiguous(Self.Context.getCanonicalType(DestClass))) {
1742     Paths.clear();
1743     Paths.setRecordingPaths(true);
1744     bool StillOkay =
1745         Self.IsDerivedFrom(OpRange.getBegin(), SrcClass, DestClass, Paths);
1746     assert(StillOkay);
1747     (void)StillOkay;
1748     std::string PathDisplayStr = Self.getAmbiguousPathsDisplayString(Paths);
1749     Self.Diag(OpRange.getBegin(), diag::err_ambiguous_memptr_conv)
1750       << 1 << SrcClass << DestClass << PathDisplayStr << OpRange;
1751     msg = 0;
1752     return TC_Failed;
1753   }
1754 
1755   if (const RecordType *VBase = Paths.getDetectedVirtual()) {
1756     Self.Diag(OpRange.getBegin(), diag::err_memptr_conv_via_virtual)
1757       << SrcClass << DestClass << QualType(VBase, 0) << OpRange;
1758     msg = 0;
1759     return TC_Failed;
1760   }
1761 
1762   if (!CStyle) {
1763     switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1764                                       DestClass, SrcClass,
1765                                       Paths.front(),
1766                                       diag::err_upcast_to_inaccessible_base)) {
1767     case Sema::AR_accessible:
1768     case Sema::AR_delayed:
1769     case Sema::AR_dependent:
1770       // Optimistically assume that the delayed and dependent cases
1771       // will work out.
1772       break;
1773 
1774     case Sema::AR_inaccessible:
1775       msg = 0;
1776       return TC_Failed;
1777     }
1778   }
1779 
1780   if (WasOverloadedFunction) {
1781     // Resolve the address of the overloaded function again, this time
1782     // allowing complaints if something goes wrong.
1783     FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
1784                                                                DestType,
1785                                                                true,
1786                                                                FoundOverload);
1787     if (!Fn) {
1788       msg = 0;
1789       return TC_Failed;
1790     }
1791 
1792     SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr, FoundOverload, Fn);
1793     if (!SrcExpr.isUsable()) {
1794       msg = 0;
1795       return TC_Failed;
1796     }
1797   }
1798 
1799   Self.BuildBasePathArray(Paths, BasePath);
1800   Kind = CK_DerivedToBaseMemberPointer;
1801   return TC_Success;
1802 }
1803 
1804 /// TryStaticImplicitCast - Tests whether a conversion according to C++ 5.2.9p2
1805 /// is valid:
1806 ///
1807 ///   An expression e can be explicitly converted to a type T using a
1808 ///   @c static_cast if the declaration "T t(e);" is well-formed [...].
1809 TryCastResult
1810 TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
1811                       Sema::CheckedConversionKind CCK,
1812                       SourceRange OpRange, unsigned &msg,
1813                       CastKind &Kind, bool ListInitialization) {
1814   if (DestType->isRecordType()) {
1815     if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
1816                                  diag::err_bad_cast_incomplete) ||
1817         Self.RequireNonAbstractType(OpRange.getBegin(), DestType,
1818                                     diag::err_allocation_of_abstract_type)) {
1819       msg = 0;
1820       return TC_Failed;
1821     }
1822   }
1823 
1824   InitializedEntity Entity = InitializedEntity::InitializeTemporary(DestType);
1825   InitializationKind InitKind
1826     = (CCK == Sema::CCK_CStyleCast)
1827         ? InitializationKind::CreateCStyleCast(OpRange.getBegin(), OpRange,
1828                                                ListInitialization)
1829     : (CCK == Sema::CCK_FunctionalCast)
1830         ? InitializationKind::CreateFunctionalCast(OpRange, ListInitialization)
1831     : InitializationKind::CreateCast(OpRange);
1832   Expr *SrcExprRaw = SrcExpr.get();
1833   // FIXME: Per DR242, we should check for an implicit conversion sequence
1834   // or for a constructor that could be invoked by direct-initialization
1835   // here, not for an initialization sequence.
1836   InitializationSequence InitSeq(Self, Entity, InitKind, SrcExprRaw);
1837 
1838   // At this point of CheckStaticCast, if the destination is a reference,
1839   // or the expression is an overload expression this has to work.
1840   // There is no other way that works.
1841   // On the other hand, if we're checking a C-style cast, we've still got
1842   // the reinterpret_cast way.
1843   bool CStyle
1844     = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
1845   if (InitSeq.Failed() && (CStyle || !DestType->isReferenceType()))
1846     return TC_NotApplicable;
1847 
1848   ExprResult Result = InitSeq.Perform(Self, Entity, InitKind, SrcExprRaw);
1849   if (Result.isInvalid()) {
1850     msg = 0;
1851     return TC_Failed;
1852   }
1853 
1854   if (InitSeq.isConstructorInitialization())
1855     Kind = CK_ConstructorConversion;
1856   else
1857     Kind = CK_NoOp;
1858 
1859   SrcExpr = Result;
1860   return TC_Success;
1861 }
1862 
1863 /// TryConstCast - See if a const_cast from source to destination is allowed,
1864 /// and perform it if it is.
1865 static TryCastResult TryConstCast(Sema &Self, ExprResult &SrcExpr,
1866                                   QualType DestType, bool CStyle,
1867                                   unsigned &msg) {
1868   DestType = Self.Context.getCanonicalType(DestType);
1869   QualType SrcType = SrcExpr.get()->getType();
1870   bool NeedToMaterializeTemporary = false;
1871 
1872   if (const ReferenceType *DestTypeTmp =DestType->getAs<ReferenceType>()) {
1873     // C++11 5.2.11p4:
1874     //   if a pointer to T1 can be explicitly converted to the type "pointer to
1875     //   T2" using a const_cast, then the following conversions can also be
1876     //   made:
1877     //    -- an lvalue of type T1 can be explicitly converted to an lvalue of
1878     //       type T2 using the cast const_cast<T2&>;
1879     //    -- a glvalue of type T1 can be explicitly converted to an xvalue of
1880     //       type T2 using the cast const_cast<T2&&>; and
1881     //    -- if T1 is a class type, a prvalue of type T1 can be explicitly
1882     //       converted to an xvalue of type T2 using the cast const_cast<T2&&>.
1883 
1884     if (isa<LValueReferenceType>(DestTypeTmp) && !SrcExpr.get()->isLValue()) {
1885       // Cannot const_cast non-lvalue to lvalue reference type. But if this
1886       // is C-style, static_cast might find a way, so we simply suggest a
1887       // message and tell the parent to keep searching.
1888       msg = diag::err_bad_cxx_cast_rvalue;
1889       return TC_NotApplicable;
1890     }
1891 
1892     if (isa<RValueReferenceType>(DestTypeTmp) && SrcExpr.get()->isRValue()) {
1893       if (!SrcType->isRecordType()) {
1894         // Cannot const_cast non-class prvalue to rvalue reference type. But if
1895         // this is C-style, static_cast can do this.
1896         msg = diag::err_bad_cxx_cast_rvalue;
1897         return TC_NotApplicable;
1898       }
1899 
1900       // Materialize the class prvalue so that the const_cast can bind a
1901       // reference to it.
1902       NeedToMaterializeTemporary = true;
1903     }
1904 
1905     // It's not completely clear under the standard whether we can
1906     // const_cast bit-field gl-values.  Doing so would not be
1907     // intrinsically complicated, but for now, we say no for
1908     // consistency with other compilers and await the word of the
1909     // committee.
1910     if (SrcExpr.get()->refersToBitField()) {
1911       msg = diag::err_bad_cxx_cast_bitfield;
1912       return TC_NotApplicable;
1913     }
1914 
1915     DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
1916     SrcType = Self.Context.getPointerType(SrcType);
1917   }
1918 
1919   // C++ 5.2.11p5: For a const_cast involving pointers to data members [...]
1920   //   the rules for const_cast are the same as those used for pointers.
1921 
1922   if (!DestType->isPointerType() &&
1923       !DestType->isMemberPointerType() &&
1924       !DestType->isObjCObjectPointerType()) {
1925     // Cannot cast to non-pointer, non-reference type. Note that, if DestType
1926     // was a reference type, we converted it to a pointer above.
1927     // The status of rvalue references isn't entirely clear, but it looks like
1928     // conversion to them is simply invalid.
1929     // C++ 5.2.11p3: For two pointer types [...]
1930     if (!CStyle)
1931       msg = diag::err_bad_const_cast_dest;
1932     return TC_NotApplicable;
1933   }
1934   if (DestType->isFunctionPointerType() ||
1935       DestType->isMemberFunctionPointerType()) {
1936     // Cannot cast direct function pointers.
1937     // C++ 5.2.11p2: [...] where T is any object type or the void type [...]
1938     // T is the ultimate pointee of source and target type.
1939     if (!CStyle)
1940       msg = diag::err_bad_const_cast_dest;
1941     return TC_NotApplicable;
1942   }
1943 
1944   // C++ [expr.const.cast]p3:
1945   //   "For two similar types T1 and T2, [...]"
1946   //
1947   // We only allow a const_cast to change cvr-qualifiers, not other kinds of
1948   // type qualifiers. (Likewise, we ignore other changes when determining
1949   // whether a cast casts away constness.)
1950   if (!Self.Context.hasCvrSimilarType(SrcType, DestType))
1951     return TC_NotApplicable;
1952 
1953   if (NeedToMaterializeTemporary)
1954     // This is a const_cast from a class prvalue to an rvalue reference type.
1955     // Materialize a temporary to store the result of the conversion.
1956     SrcExpr = Self.CreateMaterializeTemporaryExpr(SrcExpr.get()->getType(),
1957                                                   SrcExpr.get(),
1958                                                   /*IsLValueReference*/ false);
1959 
1960   return TC_Success;
1961 }
1962 
1963 // Checks for undefined behavior in reinterpret_cast.
1964 // The cases that is checked for is:
1965 // *reinterpret_cast<T*>(&a)
1966 // reinterpret_cast<T&>(a)
1967 // where accessing 'a' as type 'T' will result in undefined behavior.
1968 void Sema::CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType,
1969                                           bool IsDereference,
1970                                           SourceRange Range) {
1971   unsigned DiagID = IsDereference ?
1972                         diag::warn_pointer_indirection_from_incompatible_type :
1973                         diag::warn_undefined_reinterpret_cast;
1974 
1975   if (Diags.isIgnored(DiagID, Range.getBegin()))
1976     return;
1977 
1978   QualType SrcTy, DestTy;
1979   if (IsDereference) {
1980     if (!SrcType->getAs<PointerType>() || !DestType->getAs<PointerType>()) {
1981       return;
1982     }
1983     SrcTy = SrcType->getPointeeType();
1984     DestTy = DestType->getPointeeType();
1985   } else {
1986     if (!DestType->getAs<ReferenceType>()) {
1987       return;
1988     }
1989     SrcTy = SrcType;
1990     DestTy = DestType->getPointeeType();
1991   }
1992 
1993   // Cast is compatible if the types are the same.
1994   if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
1995     return;
1996   }
1997   // or one of the types is a char or void type
1998   if (DestTy->isAnyCharacterType() || DestTy->isVoidType() ||
1999       SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) {
2000     return;
2001   }
2002   // or one of the types is a tag type.
2003   if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) {
2004     return;
2005   }
2006 
2007   // FIXME: Scoped enums?
2008   if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
2009       (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
2010     if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {
2011       return;
2012     }
2013   }
2014 
2015   Diag(Range.getBegin(), DiagID) << SrcType << DestType << Range;
2016 }
2017 
2018 static void DiagnoseCastOfObjCSEL(Sema &Self, const ExprResult &SrcExpr,
2019                                   QualType DestType) {
2020   QualType SrcType = SrcExpr.get()->getType();
2021   if (Self.Context.hasSameType(SrcType, DestType))
2022     return;
2023   if (const PointerType *SrcPtrTy = SrcType->getAs<PointerType>())
2024     if (SrcPtrTy->isObjCSelType()) {
2025       QualType DT = DestType;
2026       if (isa<PointerType>(DestType))
2027         DT = DestType->getPointeeType();
2028       if (!DT.getUnqualifiedType()->isVoidType())
2029         Self.Diag(SrcExpr.get()->getExprLoc(),
2030                   diag::warn_cast_pointer_from_sel)
2031         << SrcType << DestType << SrcExpr.get()->getSourceRange();
2032     }
2033 }
2034 
2035 /// Diagnose casts that change the calling convention of a pointer to a function
2036 /// defined in the current TU.
2037 static void DiagnoseCallingConvCast(Sema &Self, const ExprResult &SrcExpr,
2038                                     QualType DstType, SourceRange OpRange) {
2039   // Check if this cast would change the calling convention of a function
2040   // pointer type.
2041   QualType SrcType = SrcExpr.get()->getType();
2042   if (Self.Context.hasSameType(SrcType, DstType) ||
2043       !SrcType->isFunctionPointerType() || !DstType->isFunctionPointerType())
2044     return;
2045   const auto *SrcFTy =
2046       SrcType->castAs<PointerType>()->getPointeeType()->castAs<FunctionType>();
2047   const auto *DstFTy =
2048       DstType->castAs<PointerType>()->getPointeeType()->castAs<FunctionType>();
2049   CallingConv SrcCC = SrcFTy->getCallConv();
2050   CallingConv DstCC = DstFTy->getCallConv();
2051   if (SrcCC == DstCC)
2052     return;
2053 
2054   // We have a calling convention cast. Check if the source is a pointer to a
2055   // known, specific function that has already been defined.
2056   Expr *Src = SrcExpr.get()->IgnoreParenImpCasts();
2057   if (auto *UO = dyn_cast<UnaryOperator>(Src))
2058     if (UO->getOpcode() == UO_AddrOf)
2059       Src = UO->getSubExpr()->IgnoreParenImpCasts();
2060   auto *DRE = dyn_cast<DeclRefExpr>(Src);
2061   if (!DRE)
2062     return;
2063   auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl());
2064   if (!FD)
2065     return;
2066 
2067   // Only warn if we are casting from the default convention to a non-default
2068   // convention. This can happen when the programmer forgot to apply the calling
2069   // convention to the function declaration and then inserted this cast to
2070   // satisfy the type system.
2071   CallingConv DefaultCC = Self.getASTContext().getDefaultCallingConvention(
2072       FD->isVariadic(), FD->isCXXInstanceMember());
2073   if (DstCC == DefaultCC || SrcCC != DefaultCC)
2074     return;
2075 
2076   // Diagnose this cast, as it is probably bad.
2077   StringRef SrcCCName = FunctionType::getNameForCallConv(SrcCC);
2078   StringRef DstCCName = FunctionType::getNameForCallConv(DstCC);
2079   Self.Diag(OpRange.getBegin(), diag::warn_cast_calling_conv)
2080       << SrcCCName << DstCCName << OpRange;
2081 
2082   // The checks above are cheaper than checking if the diagnostic is enabled.
2083   // However, it's worth checking if the warning is enabled before we construct
2084   // a fixit.
2085   if (Self.Diags.isIgnored(diag::warn_cast_calling_conv, OpRange.getBegin()))
2086     return;
2087 
2088   // Try to suggest a fixit to change the calling convention of the function
2089   // whose address was taken. Try to use the latest macro for the convention.
2090   // For example, users probably want to write "WINAPI" instead of "__stdcall"
2091   // to match the Windows header declarations.
2092   SourceLocation NameLoc = FD->getFirstDecl()->getNameInfo().getLoc();
2093   Preprocessor &PP = Self.getPreprocessor();
2094   SmallVector<TokenValue, 6> AttrTokens;
2095   SmallString<64> CCAttrText;
2096   llvm::raw_svector_ostream OS(CCAttrText);
2097   if (Self.getLangOpts().MicrosoftExt) {
2098     // __stdcall or __vectorcall
2099     OS << "__" << DstCCName;
2100     IdentifierInfo *II = PP.getIdentifierInfo(OS.str());
2101     AttrTokens.push_back(II->isKeyword(Self.getLangOpts())
2102                              ? TokenValue(II->getTokenID())
2103                              : TokenValue(II));
2104   } else {
2105     // __attribute__((stdcall)) or __attribute__((vectorcall))
2106     OS << "__attribute__((" << DstCCName << "))";
2107     AttrTokens.push_back(tok::kw___attribute);
2108     AttrTokens.push_back(tok::l_paren);
2109     AttrTokens.push_back(tok::l_paren);
2110     IdentifierInfo *II = PP.getIdentifierInfo(DstCCName);
2111     AttrTokens.push_back(II->isKeyword(Self.getLangOpts())
2112                              ? TokenValue(II->getTokenID())
2113                              : TokenValue(II));
2114     AttrTokens.push_back(tok::r_paren);
2115     AttrTokens.push_back(tok::r_paren);
2116   }
2117   StringRef AttrSpelling = PP.getLastMacroWithSpelling(NameLoc, AttrTokens);
2118   if (!AttrSpelling.empty())
2119     CCAttrText = AttrSpelling;
2120   OS << ' ';
2121   Self.Diag(NameLoc, diag::note_change_calling_conv_fixit)
2122       << FD << DstCCName << FixItHint::CreateInsertion(NameLoc, CCAttrText);
2123 }
2124 
2125 static void checkIntToPointerCast(bool CStyle, const SourceRange &OpRange,
2126                                   const Expr *SrcExpr, QualType DestType,
2127                                   Sema &Self) {
2128   QualType SrcType = SrcExpr->getType();
2129 
2130   // Not warning on reinterpret_cast, boolean, constant expressions, etc
2131   // are not explicit design choices, but consistent with GCC's behavior.
2132   // Feel free to modify them if you've reason/evidence for an alternative.
2133   if (CStyle && SrcType->isIntegralType(Self.Context)
2134       && !SrcType->isBooleanType()
2135       && !SrcType->isEnumeralType()
2136       && !SrcExpr->isIntegerConstantExpr(Self.Context)
2137       && Self.Context.getTypeSize(DestType) >
2138          Self.Context.getTypeSize(SrcType)) {
2139     // Separate between casts to void* and non-void* pointers.
2140     // Some APIs use (abuse) void* for something like a user context,
2141     // and often that value is an integer even if it isn't a pointer itself.
2142     // Having a separate warning flag allows users to control the warning
2143     // for their workflow.
2144     unsigned Diag = DestType->isVoidPointerType() ?
2145                       diag::warn_int_to_void_pointer_cast
2146                     : diag::warn_int_to_pointer_cast;
2147     Self.Diag(OpRange.getBegin(), Diag) << SrcType << DestType << OpRange;
2148   }
2149 }
2150 
2151 static bool fixOverloadedReinterpretCastExpr(Sema &Self, QualType DestType,
2152                                              ExprResult &Result) {
2153   // We can only fix an overloaded reinterpret_cast if
2154   // - it is a template with explicit arguments that resolves to an lvalue
2155   //   unambiguously, or
2156   // - it is the only function in an overload set that may have its address
2157   //   taken.
2158 
2159   Expr *E = Result.get();
2160   // TODO: what if this fails because of DiagnoseUseOfDecl or something
2161   // like it?
2162   if (Self.ResolveAndFixSingleFunctionTemplateSpecialization(
2163           Result,
2164           Expr::getValueKindForType(DestType) == VK_RValue // Convert Fun to Ptr
2165           ) &&
2166       Result.isUsable())
2167     return true;
2168 
2169   // No guarantees that ResolveAndFixSingleFunctionTemplateSpecialization
2170   // preserves Result.
2171   Result = E;
2172   if (!Self.resolveAndFixAddressOfSingleOverloadCandidate(
2173           Result, /*DoFunctionPointerConversion=*/true))
2174     return false;
2175   return Result.isUsable();
2176 }
2177 
2178 static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr,
2179                                         QualType DestType, bool CStyle,
2180                                         SourceRange OpRange,
2181                                         unsigned &msg,
2182                                         CastKind &Kind) {
2183   bool IsLValueCast = false;
2184 
2185   DestType = Self.Context.getCanonicalType(DestType);
2186   QualType SrcType = SrcExpr.get()->getType();
2187 
2188   // Is the source an overloaded name? (i.e. &foo)
2189   // If so, reinterpret_cast generally can not help us here (13.4, p1, bullet 5)
2190   if (SrcType == Self.Context.OverloadTy) {
2191     ExprResult FixedExpr = SrcExpr;
2192     if (!fixOverloadedReinterpretCastExpr(Self, DestType, FixedExpr))
2193       return TC_NotApplicable;
2194 
2195     assert(FixedExpr.isUsable() && "Invalid result fixing overloaded expr");
2196     SrcExpr = FixedExpr;
2197     SrcType = SrcExpr.get()->getType();
2198   }
2199 
2200   if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) {
2201     if (!SrcExpr.get()->isGLValue()) {
2202       // Cannot cast non-glvalue to (lvalue or rvalue) reference type. See the
2203       // similar comment in const_cast.
2204       msg = diag::err_bad_cxx_cast_rvalue;
2205       return TC_NotApplicable;
2206     }
2207 
2208     if (!CStyle) {
2209       Self.CheckCompatibleReinterpretCast(SrcType, DestType,
2210                                           /*IsDereference=*/false, OpRange);
2211     }
2212 
2213     // C++ 5.2.10p10: [...] a reference cast reinterpret_cast<T&>(x) has the
2214     //   same effect as the conversion *reinterpret_cast<T*>(&x) with the
2215     //   built-in & and * operators.
2216 
2217     const char *inappropriate = nullptr;
2218     switch (SrcExpr.get()->getObjectKind()) {
2219     case OK_Ordinary:
2220       break;
2221     case OK_BitField:
2222       msg = diag::err_bad_cxx_cast_bitfield;
2223       return TC_NotApplicable;
2224       // FIXME: Use a specific diagnostic for the rest of these cases.
2225     case OK_VectorComponent: inappropriate = "vector element";      break;
2226     case OK_MatrixComponent:
2227       inappropriate = "matrix element";
2228       break;
2229     case OK_ObjCProperty:    inappropriate = "property expression"; break;
2230     case OK_ObjCSubscript:   inappropriate = "container subscripting expression";
2231                              break;
2232     }
2233     if (inappropriate) {
2234       Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_reference)
2235           << inappropriate << DestType
2236           << OpRange << SrcExpr.get()->getSourceRange();
2237       msg = 0; SrcExpr = ExprError();
2238       return TC_NotApplicable;
2239     }
2240 
2241     // This code does this transformation for the checked types.
2242     DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
2243     SrcType = Self.Context.getPointerType(SrcType);
2244 
2245     IsLValueCast = true;
2246   }
2247 
2248   // Canonicalize source for comparison.
2249   SrcType = Self.Context.getCanonicalType(SrcType);
2250 
2251   const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(),
2252                           *SrcMemPtr = SrcType->getAs<MemberPointerType>();
2253   if (DestMemPtr && SrcMemPtr) {
2254     // C++ 5.2.10p9: An rvalue of type "pointer to member of X of type T1"
2255     //   can be explicitly converted to an rvalue of type "pointer to member
2256     //   of Y of type T2" if T1 and T2 are both function types or both object
2257     //   types.
2258     if (DestMemPtr->isMemberFunctionPointer() !=
2259         SrcMemPtr->isMemberFunctionPointer())
2260       return TC_NotApplicable;
2261 
2262     if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
2263       // We need to determine the inheritance model that the class will use if
2264       // haven't yet.
2265       (void)Self.isCompleteType(OpRange.getBegin(), SrcType);
2266       (void)Self.isCompleteType(OpRange.getBegin(), DestType);
2267     }
2268 
2269     // Don't allow casting between member pointers of different sizes.
2270     if (Self.Context.getTypeSize(DestMemPtr) !=
2271         Self.Context.getTypeSize(SrcMemPtr)) {
2272       msg = diag::err_bad_cxx_cast_member_pointer_size;
2273       return TC_Failed;
2274     }
2275 
2276     // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away
2277     //   constness.
2278     // A reinterpret_cast followed by a const_cast can, though, so in C-style,
2279     // we accept it.
2280     if (auto CACK =
2281             CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
2282                                /*CheckObjCLifetime=*/CStyle))
2283       return getCastAwayConstnessCastKind(CACK, msg);
2284 
2285     // A valid member pointer cast.
2286     assert(!IsLValueCast);
2287     Kind = CK_ReinterpretMemberPointer;
2288     return TC_Success;
2289   }
2290 
2291   // See below for the enumeral issue.
2292   if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) {
2293     // C++0x 5.2.10p4: A pointer can be explicitly converted to any integral
2294     //   type large enough to hold it. A value of std::nullptr_t can be
2295     //   converted to an integral type; the conversion has the same meaning
2296     //   and validity as a conversion of (void*)0 to the integral type.
2297     if (Self.Context.getTypeSize(SrcType) >
2298         Self.Context.getTypeSize(DestType)) {
2299       msg = diag::err_bad_reinterpret_cast_small_int;
2300       return TC_Failed;
2301     }
2302     Kind = CK_PointerToIntegral;
2303     return TC_Success;
2304   }
2305 
2306   // Allow reinterpret_casts between vectors of the same size and
2307   // between vectors and integers of the same size.
2308   bool destIsVector = DestType->isVectorType();
2309   bool srcIsVector = SrcType->isVectorType();
2310   if (srcIsVector || destIsVector) {
2311     // Allow bitcasting between SVE VLATs and VLSTs, and vice-versa.
2312     if (Self.isValidSveBitcast(SrcType, DestType)) {
2313       Kind = CK_BitCast;
2314       return TC_Success;
2315     }
2316 
2317     // The non-vector type, if any, must have integral type.  This is
2318     // the same rule that C vector casts use; note, however, that enum
2319     // types are not integral in C++.
2320     if ((!destIsVector && !DestType->isIntegralType(Self.Context)) ||
2321         (!srcIsVector && !SrcType->isIntegralType(Self.Context)))
2322       return TC_NotApplicable;
2323 
2324     // The size we want to consider is eltCount * eltSize.
2325     // That's exactly what the lax-conversion rules will check.
2326     if (Self.areLaxCompatibleVectorTypes(SrcType, DestType)) {
2327       Kind = CK_BitCast;
2328       return TC_Success;
2329     }
2330 
2331     // Otherwise, pick a reasonable diagnostic.
2332     if (!destIsVector)
2333       msg = diag::err_bad_cxx_cast_vector_to_scalar_different_size;
2334     else if (!srcIsVector)
2335       msg = diag::err_bad_cxx_cast_scalar_to_vector_different_size;
2336     else
2337       msg = diag::err_bad_cxx_cast_vector_to_vector_different_size;
2338 
2339     return TC_Failed;
2340   }
2341 
2342   if (SrcType == DestType) {
2343     // C++ 5.2.10p2 has a note that mentions that, subject to all other
2344     // restrictions, a cast to the same type is allowed so long as it does not
2345     // cast away constness. In C++98, the intent was not entirely clear here,
2346     // since all other paragraphs explicitly forbid casts to the same type.
2347     // C++11 clarifies this case with p2.
2348     //
2349     // The only allowed types are: integral, enumeration, pointer, or
2350     // pointer-to-member types.  We also won't restrict Obj-C pointers either.
2351     Kind = CK_NoOp;
2352     TryCastResult Result = TC_NotApplicable;
2353     if (SrcType->isIntegralOrEnumerationType() ||
2354         SrcType->isAnyPointerType() ||
2355         SrcType->isMemberPointerType() ||
2356         SrcType->isBlockPointerType()) {
2357       Result = TC_Success;
2358     }
2359     return Result;
2360   }
2361 
2362   bool destIsPtr = DestType->isAnyPointerType() ||
2363                    DestType->isBlockPointerType();
2364   bool srcIsPtr = SrcType->isAnyPointerType() ||
2365                   SrcType->isBlockPointerType();
2366   if (!destIsPtr && !srcIsPtr) {
2367     // Except for std::nullptr_t->integer and lvalue->reference, which are
2368     // handled above, at least one of the two arguments must be a pointer.
2369     return TC_NotApplicable;
2370   }
2371 
2372   if (DestType->isIntegralType(Self.Context)) {
2373     assert(srcIsPtr && "One type must be a pointer");
2374     // C++ 5.2.10p4: A pointer can be explicitly converted to any integral
2375     //   type large enough to hold it; except in Microsoft mode, where the
2376     //   integral type size doesn't matter (except we don't allow bool).
2377     if ((Self.Context.getTypeSize(SrcType) >
2378          Self.Context.getTypeSize(DestType))) {
2379       bool MicrosoftException =
2380           Self.getLangOpts().MicrosoftExt && !DestType->isBooleanType();
2381       if (MicrosoftException) {
2382         unsigned Diag = SrcType->isVoidPointerType()
2383                             ? diag::warn_void_pointer_to_int_cast
2384                             : diag::warn_pointer_to_int_cast;
2385         Self.Diag(OpRange.getBegin(), Diag) << SrcType << DestType << OpRange;
2386       } else {
2387         msg = diag::err_bad_reinterpret_cast_small_int;
2388         return TC_Failed;
2389       }
2390     }
2391     Kind = CK_PointerToIntegral;
2392     return TC_Success;
2393   }
2394 
2395   if (SrcType->isIntegralOrEnumerationType()) {
2396     assert(destIsPtr && "One type must be a pointer");
2397     checkIntToPointerCast(CStyle, OpRange, SrcExpr.get(), DestType, Self);
2398     // C++ 5.2.10p5: A value of integral or enumeration type can be explicitly
2399     //   converted to a pointer.
2400     // C++ 5.2.10p9: [Note: ...a null pointer constant of integral type is not
2401     //   necessarily converted to a null pointer value.]
2402     Kind = CK_IntegralToPointer;
2403     return TC_Success;
2404   }
2405 
2406   if (!destIsPtr || !srcIsPtr) {
2407     // With the valid non-pointer conversions out of the way, we can be even
2408     // more stringent.
2409     return TC_NotApplicable;
2410   }
2411 
2412   // Cannot convert between block pointers and Objective-C object pointers.
2413   if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) ||
2414       (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType()))
2415     return TC_NotApplicable;
2416 
2417   // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away constness.
2418   // The C-style cast operator can.
2419   TryCastResult SuccessResult = TC_Success;
2420   if (auto CACK =
2421           CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
2422                              /*CheckObjCLifetime=*/CStyle))
2423     SuccessResult = getCastAwayConstnessCastKind(CACK, msg);
2424 
2425   if (IsAddressSpaceConversion(SrcType, DestType)) {
2426     Kind = CK_AddressSpaceConversion;
2427     assert(SrcType->isPointerType() && DestType->isPointerType());
2428     if (!CStyle &&
2429         !DestType->getPointeeType().getQualifiers().isAddressSpaceSupersetOf(
2430             SrcType->getPointeeType().getQualifiers())) {
2431       SuccessResult = TC_Failed;
2432     }
2433   } else if (IsLValueCast) {
2434     Kind = CK_LValueBitCast;
2435   } else if (DestType->isObjCObjectPointerType()) {
2436     Kind = Self.PrepareCastToObjCObjectPointer(SrcExpr);
2437   } else if (DestType->isBlockPointerType()) {
2438     if (!SrcType->isBlockPointerType()) {
2439       Kind = CK_AnyPointerToBlockPointerCast;
2440     } else {
2441       Kind = CK_BitCast;
2442     }
2443   } else {
2444     Kind = CK_BitCast;
2445   }
2446 
2447   // Any pointer can be cast to an Objective-C pointer type with a C-style
2448   // cast.
2449   if (CStyle && DestType->isObjCObjectPointerType()) {
2450     return SuccessResult;
2451   }
2452   if (CStyle)
2453     DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
2454 
2455   DiagnoseCallingConvCast(Self, SrcExpr, DestType, OpRange);
2456 
2457   // Not casting away constness, so the only remaining check is for compatible
2458   // pointer categories.
2459 
2460   if (SrcType->isFunctionPointerType()) {
2461     if (DestType->isFunctionPointerType()) {
2462       // C++ 5.2.10p6: A pointer to a function can be explicitly converted to
2463       // a pointer to a function of a different type.
2464       return SuccessResult;
2465     }
2466 
2467     // C++0x 5.2.10p8: Converting a pointer to a function into a pointer to
2468     //   an object type or vice versa is conditionally-supported.
2469     // Compilers support it in C++03 too, though, because it's necessary for
2470     // casting the return value of dlsym() and GetProcAddress().
2471     // FIXME: Conditionally-supported behavior should be configurable in the
2472     // TargetInfo or similar.
2473     Self.Diag(OpRange.getBegin(),
2474               Self.getLangOpts().CPlusPlus11 ?
2475                 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2476       << OpRange;
2477     return SuccessResult;
2478   }
2479 
2480   if (DestType->isFunctionPointerType()) {
2481     // See above.
2482     Self.Diag(OpRange.getBegin(),
2483               Self.getLangOpts().CPlusPlus11 ?
2484                 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2485       << OpRange;
2486     return SuccessResult;
2487   }
2488 
2489   // Diagnose address space conversion in nested pointers.
2490   QualType DestPtee = DestType->getPointeeType().isNull()
2491                           ? DestType->getPointeeType()
2492                           : DestType->getPointeeType()->getPointeeType();
2493   QualType SrcPtee = SrcType->getPointeeType().isNull()
2494                          ? SrcType->getPointeeType()
2495                          : SrcType->getPointeeType()->getPointeeType();
2496   while (!DestPtee.isNull() && !SrcPtee.isNull()) {
2497     if (DestPtee.getAddressSpace() != SrcPtee.getAddressSpace()) {
2498       Self.Diag(OpRange.getBegin(),
2499                 diag::warn_bad_cxx_cast_nested_pointer_addr_space)
2500           << CStyle << SrcType << DestType << SrcExpr.get()->getSourceRange();
2501       break;
2502     }
2503     DestPtee = DestPtee->getPointeeType();
2504     SrcPtee = SrcPtee->getPointeeType();
2505   }
2506 
2507   // C++ 5.2.10p7: A pointer to an object can be explicitly converted to
2508   //   a pointer to an object of different type.
2509   // Void pointers are not specified, but supported by every compiler out there.
2510   // So we finish by allowing everything that remains - it's got to be two
2511   // object pointers.
2512   return SuccessResult;
2513 }
2514 
2515 static TryCastResult TryAddressSpaceCast(Sema &Self, ExprResult &SrcExpr,
2516                                          QualType DestType, bool CStyle,
2517                                          unsigned &msg, CastKind &Kind) {
2518   if (!Self.getLangOpts().OpenCL)
2519     // FIXME: As compiler doesn't have any information about overlapping addr
2520     // spaces at the moment we have to be permissive here.
2521     return TC_NotApplicable;
2522   // Even though the logic below is general enough and can be applied to
2523   // non-OpenCL mode too, we fast-path above because no other languages
2524   // define overlapping address spaces currently.
2525   auto SrcType = SrcExpr.get()->getType();
2526   // FIXME: Should this be generalized to references? The reference parameter
2527   // however becomes a reference pointee type here and therefore rejected.
2528   // Perhaps this is the right behavior though according to C++.
2529   auto SrcPtrType = SrcType->getAs<PointerType>();
2530   if (!SrcPtrType)
2531     return TC_NotApplicable;
2532   auto DestPtrType = DestType->getAs<PointerType>();
2533   if (!DestPtrType)
2534     return TC_NotApplicable;
2535   auto SrcPointeeType = SrcPtrType->getPointeeType();
2536   auto DestPointeeType = DestPtrType->getPointeeType();
2537   if (!DestPointeeType.isAddressSpaceOverlapping(SrcPointeeType)) {
2538     msg = diag::err_bad_cxx_cast_addr_space_mismatch;
2539     return TC_Failed;
2540   }
2541   auto SrcPointeeTypeWithoutAS =
2542       Self.Context.removeAddrSpaceQualType(SrcPointeeType.getCanonicalType());
2543   auto DestPointeeTypeWithoutAS =
2544       Self.Context.removeAddrSpaceQualType(DestPointeeType.getCanonicalType());
2545   if (Self.Context.hasSameType(SrcPointeeTypeWithoutAS,
2546                                DestPointeeTypeWithoutAS)) {
2547     Kind = SrcPointeeType.getAddressSpace() == DestPointeeType.getAddressSpace()
2548                ? CK_NoOp
2549                : CK_AddressSpaceConversion;
2550     return TC_Success;
2551   } else {
2552     return TC_NotApplicable;
2553   }
2554 }
2555 
2556 void CastOperation::checkAddressSpaceCast(QualType SrcType, QualType DestType) {
2557   // In OpenCL only conversions between pointers to objects in overlapping
2558   // addr spaces are allowed. v2.0 s6.5.5 - Generic addr space overlaps
2559   // with any named one, except for constant.
2560 
2561   // Converting the top level pointee addrspace is permitted for compatible
2562   // addrspaces (such as 'generic int *' to 'local int *' or vice versa), but
2563   // if any of the nested pointee addrspaces differ, we emit a warning
2564   // regardless of addrspace compatibility. This makes
2565   //   local int ** p;
2566   //   return (generic int **) p;
2567   // warn even though local -> generic is permitted.
2568   if (Self.getLangOpts().OpenCL) {
2569     const Type *DestPtr, *SrcPtr;
2570     bool Nested = false;
2571     unsigned DiagID = diag::err_typecheck_incompatible_address_space;
2572     DestPtr = Self.getASTContext().getCanonicalType(DestType.getTypePtr()),
2573     SrcPtr  = Self.getASTContext().getCanonicalType(SrcType.getTypePtr());
2574 
2575     while (isa<PointerType>(DestPtr) && isa<PointerType>(SrcPtr)) {
2576       const PointerType *DestPPtr = cast<PointerType>(DestPtr);
2577       const PointerType *SrcPPtr = cast<PointerType>(SrcPtr);
2578       QualType DestPPointee = DestPPtr->getPointeeType();
2579       QualType SrcPPointee = SrcPPtr->getPointeeType();
2580       if (Nested
2581               ? DestPPointee.getAddressSpace() != SrcPPointee.getAddressSpace()
2582               : !DestPPointee.isAddressSpaceOverlapping(SrcPPointee)) {
2583         Self.Diag(OpRange.getBegin(), DiagID)
2584             << SrcType << DestType << Sema::AA_Casting
2585             << SrcExpr.get()->getSourceRange();
2586         if (!Nested)
2587           SrcExpr = ExprError();
2588         return;
2589       }
2590 
2591       DestPtr = DestPPtr->getPointeeType().getTypePtr();
2592       SrcPtr = SrcPPtr->getPointeeType().getTypePtr();
2593       Nested = true;
2594       DiagID = diag::ext_nested_pointer_qualifier_mismatch;
2595     }
2596   }
2597 }
2598 
2599 void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle,
2600                                        bool ListInitialization) {
2601   assert(Self.getLangOpts().CPlusPlus);
2602 
2603   // Handle placeholders.
2604   if (isPlaceholder()) {
2605     // C-style casts can resolve __unknown_any types.
2606     if (claimPlaceholder(BuiltinType::UnknownAny)) {
2607       SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2608                                          SrcExpr.get(), Kind,
2609                                          ValueKind, BasePath);
2610       return;
2611     }
2612 
2613     checkNonOverloadPlaceholders();
2614     if (SrcExpr.isInvalid())
2615       return;
2616   }
2617 
2618   // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
2619   // This test is outside everything else because it's the only case where
2620   // a non-lvalue-reference target type does not lead to decay.
2621   if (DestType->isVoidType()) {
2622     Kind = CK_ToVoid;
2623 
2624     if (claimPlaceholder(BuiltinType::Overload)) {
2625       Self.ResolveAndFixSingleFunctionTemplateSpecialization(
2626                   SrcExpr, /* Decay Function to ptr */ false,
2627                   /* Complain */ true, DestRange, DestType,
2628                   diag::err_bad_cstyle_cast_overload);
2629       if (SrcExpr.isInvalid())
2630         return;
2631     }
2632 
2633     SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
2634     return;
2635   }
2636 
2637   // If the type is dependent, we won't do any other semantic analysis now.
2638   if (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() ||
2639       SrcExpr.get()->isValueDependent()) {
2640     assert(Kind == CK_Dependent);
2641     return;
2642   }
2643 
2644   if (ValueKind == VK_RValue && !DestType->isRecordType() &&
2645       !isPlaceholder(BuiltinType::Overload)) {
2646     SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
2647     if (SrcExpr.isInvalid())
2648       return;
2649   }
2650 
2651   // AltiVec vector initialization with a single literal.
2652   if (const VectorType *vecTy = DestType->getAs<VectorType>())
2653     if (vecTy->getVectorKind() == VectorType::AltiVecVector
2654         && (SrcExpr.get()->getType()->isIntegerType()
2655             || SrcExpr.get()->getType()->isFloatingType())) {
2656       Kind = CK_VectorSplat;
2657       SrcExpr = Self.prepareVectorSplat(DestType, SrcExpr.get());
2658       return;
2659     }
2660 
2661   // C++ [expr.cast]p5: The conversions performed by
2662   //   - a const_cast,
2663   //   - a static_cast,
2664   //   - a static_cast followed by a const_cast,
2665   //   - a reinterpret_cast, or
2666   //   - a reinterpret_cast followed by a const_cast,
2667   //   can be performed using the cast notation of explicit type conversion.
2668   //   [...] If a conversion can be interpreted in more than one of the ways
2669   //   listed above, the interpretation that appears first in the list is used,
2670   //   even if a cast resulting from that interpretation is ill-formed.
2671   // In plain language, this means trying a const_cast ...
2672   // Note that for address space we check compatibility after const_cast.
2673   unsigned msg = diag::err_bad_cxx_cast_generic;
2674   TryCastResult tcr = TryConstCast(Self, SrcExpr, DestType,
2675                                    /*CStyle*/ true, msg);
2676   if (SrcExpr.isInvalid())
2677     return;
2678   if (isValidCast(tcr))
2679     Kind = CK_NoOp;
2680 
2681   Sema::CheckedConversionKind CCK =
2682       FunctionalStyle ? Sema::CCK_FunctionalCast : Sema::CCK_CStyleCast;
2683   if (tcr == TC_NotApplicable) {
2684     tcr = TryAddressSpaceCast(Self, SrcExpr, DestType, /*CStyle*/ true, msg,
2685                               Kind);
2686     if (SrcExpr.isInvalid())
2687       return;
2688 
2689     if (tcr == TC_NotApplicable) {
2690       // ... or if that is not possible, a static_cast, ignoring const and
2691       // addr space, ...
2692       tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange, msg, Kind,
2693                           BasePath, ListInitialization);
2694       if (SrcExpr.isInvalid())
2695         return;
2696 
2697       if (tcr == TC_NotApplicable) {
2698         // ... and finally a reinterpret_cast, ignoring const and addr space.
2699         tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/ true,
2700                                  OpRange, msg, Kind);
2701         if (SrcExpr.isInvalid())
2702           return;
2703       }
2704     }
2705   }
2706 
2707   if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
2708       isValidCast(tcr))
2709     checkObjCConversion(CCK);
2710 
2711   if (tcr != TC_Success && msg != 0) {
2712     if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
2713       DeclAccessPair Found;
2714       FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
2715                                 DestType,
2716                                 /*Complain*/ true,
2717                                 Found);
2718       if (Fn) {
2719         // If DestType is a function type (not to be confused with the function
2720         // pointer type), it will be possible to resolve the function address,
2721         // but the type cast should be considered as failure.
2722         OverloadExpr *OE = OverloadExpr::find(SrcExpr.get()).Expression;
2723         Self.Diag(OpRange.getBegin(), diag::err_bad_cstyle_cast_overload)
2724           << OE->getName() << DestType << OpRange
2725           << OE->getQualifierLoc().getSourceRange();
2726         Self.NoteAllOverloadCandidates(SrcExpr.get());
2727       }
2728     } else {
2729       diagnoseBadCast(Self, msg, (FunctionalStyle ? CT_Functional : CT_CStyle),
2730                       OpRange, SrcExpr.get(), DestType, ListInitialization);
2731     }
2732   }
2733 
2734   if (isValidCast(tcr)) {
2735     if (Kind == CK_BitCast)
2736       checkCastAlign();
2737 
2738     if (!checkCastFunctionType(Self, SrcExpr, DestType))
2739       Self.Diag(OpRange.getBegin(), diag::warn_cast_function_type)
2740           << SrcExpr.get()->getType() << DestType << OpRange;
2741 
2742   } else {
2743     SrcExpr = ExprError();
2744   }
2745 }
2746 
2747 /// DiagnoseBadFunctionCast - Warn whenever a function call is cast to a
2748 ///  non-matching type. Such as enum function call to int, int call to
2749 /// pointer; etc. Cast to 'void' is an exception.
2750 static void DiagnoseBadFunctionCast(Sema &Self, const ExprResult &SrcExpr,
2751                                   QualType DestType) {
2752   if (Self.Diags.isIgnored(diag::warn_bad_function_cast,
2753                            SrcExpr.get()->getExprLoc()))
2754     return;
2755 
2756   if (!isa<CallExpr>(SrcExpr.get()))
2757     return;
2758 
2759   QualType SrcType = SrcExpr.get()->getType();
2760   if (DestType.getUnqualifiedType()->isVoidType())
2761     return;
2762   if ((SrcType->isAnyPointerType() || SrcType->isBlockPointerType())
2763       && (DestType->isAnyPointerType() || DestType->isBlockPointerType()))
2764     return;
2765   if (SrcType->isIntegerType() && DestType->isIntegerType() &&
2766       (SrcType->isBooleanType() == DestType->isBooleanType()) &&
2767       (SrcType->isEnumeralType() == DestType->isEnumeralType()))
2768     return;
2769   if (SrcType->isRealFloatingType() && DestType->isRealFloatingType())
2770     return;
2771   if (SrcType->isEnumeralType() && DestType->isEnumeralType())
2772     return;
2773   if (SrcType->isComplexType() && DestType->isComplexType())
2774     return;
2775   if (SrcType->isComplexIntegerType() && DestType->isComplexIntegerType())
2776     return;
2777   if (SrcType->isFixedPointType() && DestType->isFixedPointType())
2778     return;
2779 
2780   Self.Diag(SrcExpr.get()->getExprLoc(),
2781             diag::warn_bad_function_cast)
2782             << SrcType << DestType << SrcExpr.get()->getSourceRange();
2783 }
2784 
2785 /// Check the semantics of a C-style cast operation, in C.
2786 void CastOperation::CheckCStyleCast() {
2787   assert(!Self.getLangOpts().CPlusPlus);
2788 
2789   // C-style casts can resolve __unknown_any types.
2790   if (claimPlaceholder(BuiltinType::UnknownAny)) {
2791     SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2792                                        SrcExpr.get(), Kind,
2793                                        ValueKind, BasePath);
2794     return;
2795   }
2796 
2797   // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
2798   // type needs to be scalar.
2799   if (DestType->isVoidType()) {
2800     // We don't necessarily do lvalue-to-rvalue conversions on this.
2801     SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
2802     if (SrcExpr.isInvalid())
2803       return;
2804 
2805     // Cast to void allows any expr type.
2806     Kind = CK_ToVoid;
2807     return;
2808   }
2809 
2810   // If the type is dependent, we won't do any other semantic analysis now.
2811   if (Self.getASTContext().isDependenceAllowed() &&
2812       (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() ||
2813        SrcExpr.get()->isValueDependent())) {
2814     assert((DestType->containsErrors() || SrcExpr.get()->containsErrors() ||
2815             SrcExpr.get()->containsErrors()) &&
2816            "should only occur in error-recovery path.");
2817     assert(Kind == CK_Dependent);
2818     return;
2819   }
2820 
2821   // Overloads are allowed with C extensions, so we need to support them.
2822   if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
2823     DeclAccessPair DAP;
2824     if (FunctionDecl *FD = Self.ResolveAddressOfOverloadedFunction(
2825             SrcExpr.get(), DestType, /*Complain=*/true, DAP))
2826       SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr.get(), DAP, FD);
2827     else
2828       return;
2829     assert(SrcExpr.isUsable());
2830   }
2831   SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
2832   if (SrcExpr.isInvalid())
2833     return;
2834   QualType SrcType = SrcExpr.get()->getType();
2835 
2836   assert(!SrcType->isPlaceholderType());
2837 
2838   checkAddressSpaceCast(SrcType, DestType);
2839   if (SrcExpr.isInvalid())
2840     return;
2841 
2842   if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
2843                                diag::err_typecheck_cast_to_incomplete)) {
2844     SrcExpr = ExprError();
2845     return;
2846   }
2847 
2848   // Allow casting a sizeless built-in type to itself.
2849   if (DestType->isSizelessBuiltinType() &&
2850       Self.Context.hasSameUnqualifiedType(DestType, SrcType)) {
2851     Kind = CK_NoOp;
2852     return;
2853   }
2854 
2855   // Allow bitcasting between compatible SVE vector types.
2856   if ((SrcType->isVectorType() || DestType->isVectorType()) &&
2857       Self.isValidSveBitcast(SrcType, DestType)) {
2858     Kind = CK_BitCast;
2859     return;
2860   }
2861 
2862   if (!DestType->isScalarType() && !DestType->isVectorType()) {
2863     const RecordType *DestRecordTy = DestType->getAs<RecordType>();
2864 
2865     if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){
2866       // GCC struct/union extension: allow cast to self.
2867       Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_nonscalar)
2868         << DestType << SrcExpr.get()->getSourceRange();
2869       Kind = CK_NoOp;
2870       return;
2871     }
2872 
2873     // GCC's cast to union extension.
2874     if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) {
2875       RecordDecl *RD = DestRecordTy->getDecl();
2876       if (CastExpr::getTargetFieldForToUnionCast(RD, SrcType)) {
2877         Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_to_union)
2878           << SrcExpr.get()->getSourceRange();
2879         Kind = CK_ToUnion;
2880         return;
2881       } else {
2882         Self.Diag(OpRange.getBegin(), diag::err_typecheck_cast_to_union_no_type)
2883           << SrcType << SrcExpr.get()->getSourceRange();
2884         SrcExpr = ExprError();
2885         return;
2886       }
2887     }
2888 
2889     // OpenCL v2.0 s6.13.10 - Allow casts from '0' to event_t type.
2890     if (Self.getLangOpts().OpenCL && DestType->isEventT()) {
2891       Expr::EvalResult Result;
2892       if (SrcExpr.get()->EvaluateAsInt(Result, Self.Context)) {
2893         llvm::APSInt CastInt = Result.Val.getInt();
2894         if (0 == CastInt) {
2895           Kind = CK_ZeroToOCLOpaqueType;
2896           return;
2897         }
2898         Self.Diag(OpRange.getBegin(),
2899                   diag::err_opencl_cast_non_zero_to_event_t)
2900                   << CastInt.toString(10) << SrcExpr.get()->getSourceRange();
2901         SrcExpr = ExprError();
2902         return;
2903       }
2904     }
2905 
2906     // Reject any other conversions to non-scalar types.
2907     Self.Diag(OpRange.getBegin(), diag::err_typecheck_cond_expect_scalar)
2908       << DestType << SrcExpr.get()->getSourceRange();
2909     SrcExpr = ExprError();
2910     return;
2911   }
2912 
2913   // The type we're casting to is known to be a scalar or vector.
2914 
2915   // Require the operand to be a scalar or vector.
2916   if (!SrcType->isScalarType() && !SrcType->isVectorType()) {
2917     Self.Diag(SrcExpr.get()->getExprLoc(),
2918               diag::err_typecheck_expect_scalar_operand)
2919       << SrcType << SrcExpr.get()->getSourceRange();
2920     SrcExpr = ExprError();
2921     return;
2922   }
2923 
2924   if (DestType->isExtVectorType()) {
2925     SrcExpr = Self.CheckExtVectorCast(OpRange, DestType, SrcExpr.get(), Kind);
2926     return;
2927   }
2928 
2929   if (const VectorType *DestVecTy = DestType->getAs<VectorType>()) {
2930     if (DestVecTy->getVectorKind() == VectorType::AltiVecVector &&
2931           (SrcType->isIntegerType() || SrcType->isFloatingType())) {
2932       Kind = CK_VectorSplat;
2933       SrcExpr = Self.prepareVectorSplat(DestType, SrcExpr.get());
2934     } else if (Self.CheckVectorCast(OpRange, DestType, SrcType, Kind)) {
2935       SrcExpr = ExprError();
2936     }
2937     return;
2938   }
2939 
2940   if (SrcType->isVectorType()) {
2941     if (Self.CheckVectorCast(OpRange, SrcType, DestType, Kind))
2942       SrcExpr = ExprError();
2943     return;
2944   }
2945 
2946   // The source and target types are both scalars, i.e.
2947   //   - arithmetic types (fundamental, enum, and complex)
2948   //   - all kinds of pointers
2949   // Note that member pointers were filtered out with C++, above.
2950 
2951   if (isa<ObjCSelectorExpr>(SrcExpr.get())) {
2952     Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_selector_expr);
2953     SrcExpr = ExprError();
2954     return;
2955   }
2956 
2957   // Can't cast to or from bfloat
2958   if (DestType->isBFloat16Type() && !SrcType->isBFloat16Type()) {
2959     Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_to_bfloat16)
2960         << SrcExpr.get()->getSourceRange();
2961     SrcExpr = ExprError();
2962     return;
2963   }
2964   if (SrcType->isBFloat16Type() && !DestType->isBFloat16Type()) {
2965     Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_from_bfloat16)
2966         << SrcExpr.get()->getSourceRange();
2967     SrcExpr = ExprError();
2968     return;
2969   }
2970 
2971   // If either type is a pointer, the other type has to be either an
2972   // integer or a pointer.
2973   if (!DestType->isArithmeticType()) {
2974     if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) {
2975       Self.Diag(SrcExpr.get()->getExprLoc(),
2976                 diag::err_cast_pointer_from_non_pointer_int)
2977         << SrcType << SrcExpr.get()->getSourceRange();
2978       SrcExpr = ExprError();
2979       return;
2980     }
2981     checkIntToPointerCast(/* CStyle */ true, OpRange, SrcExpr.get(), DestType,
2982                           Self);
2983   } else if (!SrcType->isArithmeticType()) {
2984     if (!DestType->isIntegralType(Self.Context) &&
2985         DestType->isArithmeticType()) {
2986       Self.Diag(SrcExpr.get()->getBeginLoc(),
2987                 diag::err_cast_pointer_to_non_pointer_int)
2988           << DestType << SrcExpr.get()->getSourceRange();
2989       SrcExpr = ExprError();
2990       return;
2991     }
2992 
2993     if ((Self.Context.getTypeSize(SrcType) >
2994          Self.Context.getTypeSize(DestType)) &&
2995         !DestType->isBooleanType()) {
2996       // C 6.3.2.3p6: Any pointer type may be converted to an integer type.
2997       // Except as previously specified, the result is implementation-defined.
2998       // If the result cannot be represented in the integer type, the behavior
2999       // is undefined. The result need not be in the range of values of any
3000       // integer type.
3001       unsigned Diag;
3002       if (SrcType->isVoidPointerType())
3003         Diag = DestType->isEnumeralType() ? diag::warn_void_pointer_to_enum_cast
3004                                           : diag::warn_void_pointer_to_int_cast;
3005       else if (DestType->isEnumeralType())
3006         Diag = diag::warn_pointer_to_enum_cast;
3007       else
3008         Diag = diag::warn_pointer_to_int_cast;
3009       Self.Diag(OpRange.getBegin(), Diag) << SrcType << DestType << OpRange;
3010     }
3011   }
3012 
3013   if (Self.getLangOpts().OpenCL && !Self.getOpenCLOptions().isAvailableOption(
3014                                        "cl_khr_fp16", Self.getLangOpts())) {
3015     if (DestType->isHalfType()) {
3016       Self.Diag(SrcExpr.get()->getBeginLoc(), diag::err_opencl_cast_to_half)
3017           << DestType << SrcExpr.get()->getSourceRange();
3018       SrcExpr = ExprError();
3019       return;
3020     }
3021   }
3022 
3023   // ARC imposes extra restrictions on casts.
3024   if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers()) {
3025     checkObjCConversion(Sema::CCK_CStyleCast);
3026     if (SrcExpr.isInvalid())
3027       return;
3028 
3029     const PointerType *CastPtr = DestType->getAs<PointerType>();
3030     if (Self.getLangOpts().ObjCAutoRefCount && CastPtr) {
3031       if (const PointerType *ExprPtr = SrcType->getAs<PointerType>()) {
3032         Qualifiers CastQuals = CastPtr->getPointeeType().getQualifiers();
3033         Qualifiers ExprQuals = ExprPtr->getPointeeType().getQualifiers();
3034         if (CastPtr->getPointeeType()->isObjCLifetimeType() &&
3035             ExprPtr->getPointeeType()->isObjCLifetimeType() &&
3036             !CastQuals.compatiblyIncludesObjCLifetime(ExprQuals)) {
3037           Self.Diag(SrcExpr.get()->getBeginLoc(),
3038                     diag::err_typecheck_incompatible_ownership)
3039               << SrcType << DestType << Sema::AA_Casting
3040               << SrcExpr.get()->getSourceRange();
3041           return;
3042         }
3043       }
3044     }
3045     else if (!Self.CheckObjCARCUnavailableWeakConversion(DestType, SrcType)) {
3046       Self.Diag(SrcExpr.get()->getBeginLoc(),
3047                 diag::err_arc_convesion_of_weak_unavailable)
3048           << 1 << SrcType << DestType << SrcExpr.get()->getSourceRange();
3049       SrcExpr = ExprError();
3050       return;
3051     }
3052   }
3053 
3054   if (!checkCastFunctionType(Self, SrcExpr, DestType))
3055     Self.Diag(OpRange.getBegin(), diag::warn_cast_function_type)
3056         << SrcType << DestType << OpRange;
3057 
3058   DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
3059   DiagnoseCallingConvCast(Self, SrcExpr, DestType, OpRange);
3060   DiagnoseBadFunctionCast(Self, SrcExpr, DestType);
3061   Kind = Self.PrepareScalarCast(SrcExpr, DestType);
3062   if (SrcExpr.isInvalid())
3063     return;
3064 
3065   if (Kind == CK_BitCast)
3066     checkCastAlign();
3067 }
3068 
3069 void CastOperation::CheckBuiltinBitCast() {
3070   QualType SrcType = SrcExpr.get()->getType();
3071 
3072   if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
3073                                diag::err_typecheck_cast_to_incomplete) ||
3074       Self.RequireCompleteType(OpRange.getBegin(), SrcType,
3075                                diag::err_incomplete_type)) {
3076     SrcExpr = ExprError();
3077     return;
3078   }
3079 
3080   if (SrcExpr.get()->isRValue())
3081     SrcExpr = Self.CreateMaterializeTemporaryExpr(SrcType, SrcExpr.get(),
3082                                                   /*IsLValueReference=*/false);
3083 
3084   CharUnits DestSize = Self.Context.getTypeSizeInChars(DestType);
3085   CharUnits SourceSize = Self.Context.getTypeSizeInChars(SrcType);
3086   if (DestSize != SourceSize) {
3087     Self.Diag(OpRange.getBegin(), diag::err_bit_cast_type_size_mismatch)
3088         << (int)SourceSize.getQuantity() << (int)DestSize.getQuantity();
3089     SrcExpr = ExprError();
3090     return;
3091   }
3092 
3093   if (!DestType.isTriviallyCopyableType(Self.Context)) {
3094     Self.Diag(OpRange.getBegin(), diag::err_bit_cast_non_trivially_copyable)
3095         << 1;
3096     SrcExpr = ExprError();
3097     return;
3098   }
3099 
3100   if (!SrcType.isTriviallyCopyableType(Self.Context)) {
3101     Self.Diag(OpRange.getBegin(), diag::err_bit_cast_non_trivially_copyable)
3102         << 0;
3103     SrcExpr = ExprError();
3104     return;
3105   }
3106 
3107   Kind = CK_LValueToRValueBitCast;
3108 }
3109 
3110 /// DiagnoseCastQual - Warn whenever casts discards a qualifiers, be it either
3111 /// const, volatile or both.
3112 static void DiagnoseCastQual(Sema &Self, const ExprResult &SrcExpr,
3113                              QualType DestType) {
3114   if (SrcExpr.isInvalid())
3115     return;
3116 
3117   QualType SrcType = SrcExpr.get()->getType();
3118   if (!((SrcType->isAnyPointerType() && DestType->isAnyPointerType()) ||
3119         DestType->isLValueReferenceType()))
3120     return;
3121 
3122   QualType TheOffendingSrcType, TheOffendingDestType;
3123   Qualifiers CastAwayQualifiers;
3124   if (CastsAwayConstness(Self, SrcType, DestType, true, false,
3125                          &TheOffendingSrcType, &TheOffendingDestType,
3126                          &CastAwayQualifiers) !=
3127       CastAwayConstnessKind::CACK_Similar)
3128     return;
3129 
3130   // FIXME: 'restrict' is not properly handled here.
3131   int qualifiers = -1;
3132   if (CastAwayQualifiers.hasConst() && CastAwayQualifiers.hasVolatile()) {
3133     qualifiers = 0;
3134   } else if (CastAwayQualifiers.hasConst()) {
3135     qualifiers = 1;
3136   } else if (CastAwayQualifiers.hasVolatile()) {
3137     qualifiers = 2;
3138   }
3139   // This is a variant of int **x; const int **y = (const int **)x;
3140   if (qualifiers == -1)
3141     Self.Diag(SrcExpr.get()->getBeginLoc(), diag::warn_cast_qual2)
3142         << SrcType << DestType;
3143   else
3144     Self.Diag(SrcExpr.get()->getBeginLoc(), diag::warn_cast_qual)
3145         << TheOffendingSrcType << TheOffendingDestType << qualifiers;
3146 }
3147 
3148 ExprResult Sema::BuildCStyleCastExpr(SourceLocation LPLoc,
3149                                      TypeSourceInfo *CastTypeInfo,
3150                                      SourceLocation RPLoc,
3151                                      Expr *CastExpr) {
3152   CastOperation Op(*this, CastTypeInfo->getType(), CastExpr);
3153   Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
3154   Op.OpRange = SourceRange(LPLoc, CastExpr->getEndLoc());
3155 
3156   if (getLangOpts().CPlusPlus) {
3157     Op.CheckCXXCStyleCast(/*FunctionalCast=*/ false,
3158                           isa<InitListExpr>(CastExpr));
3159   } else {
3160     Op.CheckCStyleCast();
3161   }
3162 
3163   if (Op.SrcExpr.isInvalid())
3164     return ExprError();
3165 
3166   // -Wcast-qual
3167   DiagnoseCastQual(Op.Self, Op.SrcExpr, Op.DestType);
3168 
3169   return Op.complete(CStyleCastExpr::Create(
3170       Context, Op.ResultType, Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
3171       &Op.BasePath, CurFPFeatureOverrides(), CastTypeInfo, LPLoc, RPLoc));
3172 }
3173 
3174 ExprResult Sema::BuildCXXFunctionalCastExpr(TypeSourceInfo *CastTypeInfo,
3175                                             QualType Type,
3176                                             SourceLocation LPLoc,
3177                                             Expr *CastExpr,
3178                                             SourceLocation RPLoc) {
3179   assert(LPLoc.isValid() && "List-initialization shouldn't get here.");
3180   CastOperation Op(*this, Type, CastExpr);
3181   Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
3182   Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getEndLoc());
3183 
3184   Op.CheckCXXCStyleCast(/*FunctionalCast=*/true, /*ListInit=*/false);
3185   if (Op.SrcExpr.isInvalid())
3186     return ExprError();
3187 
3188   auto *SubExpr = Op.SrcExpr.get();
3189   if (auto *BindExpr = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
3190     SubExpr = BindExpr->getSubExpr();
3191   if (auto *ConstructExpr = dyn_cast<CXXConstructExpr>(SubExpr))
3192     ConstructExpr->setParenOrBraceRange(SourceRange(LPLoc, RPLoc));
3193 
3194   return Op.complete(CXXFunctionalCastExpr::Create(
3195       Context, Op.ResultType, Op.ValueKind, CastTypeInfo, Op.Kind,
3196       Op.SrcExpr.get(), &Op.BasePath, CurFPFeatureOverrides(), LPLoc, RPLoc));
3197 }
3198