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   if (SrcType->isMatrixType() && DestType->isMatrixType()) {
1449     if (Self.CheckMatrixCast(OpRange, DestType, SrcType, Kind)) {
1450       SrcExpr = ExprError();
1451       return TC_Failed;
1452     }
1453     return TC_Success;
1454   }
1455 
1456   // We tried everything. Everything! Nothing works! :-(
1457   return TC_NotApplicable;
1458 }
1459 
1460 /// Tests whether a conversion according to N2844 is valid.
1461 TryCastResult TryLValueToRValueCast(Sema &Self, Expr *SrcExpr,
1462                                     QualType DestType, bool CStyle,
1463                                     CastKind &Kind, CXXCastPath &BasePath,
1464                                     unsigned &msg) {
1465   // C++11 [expr.static.cast]p3:
1466   //   A glvalue of type "cv1 T1" can be cast to type "rvalue reference to
1467   //   cv2 T2" if "cv2 T2" is reference-compatible with "cv1 T1".
1468   const RValueReferenceType *R = DestType->getAs<RValueReferenceType>();
1469   if (!R)
1470     return TC_NotApplicable;
1471 
1472   if (!SrcExpr->isGLValue())
1473     return TC_NotApplicable;
1474 
1475   // Because we try the reference downcast before this function, from now on
1476   // this is the only cast possibility, so we issue an error if we fail now.
1477   // FIXME: Should allow casting away constness if CStyle.
1478   QualType FromType = SrcExpr->getType();
1479   QualType ToType = R->getPointeeType();
1480   if (CStyle) {
1481     FromType = FromType.getUnqualifiedType();
1482     ToType = ToType.getUnqualifiedType();
1483   }
1484 
1485   Sema::ReferenceConversions RefConv;
1486   Sema::ReferenceCompareResult RefResult = Self.CompareReferenceRelationship(
1487       SrcExpr->getBeginLoc(), ToType, FromType, &RefConv);
1488   if (RefResult != Sema::Ref_Compatible) {
1489     if (CStyle || RefResult == Sema::Ref_Incompatible)
1490       return TC_NotApplicable;
1491     // Diagnose types which are reference-related but not compatible here since
1492     // we can provide better diagnostics. In these cases forwarding to
1493     // [expr.static.cast]p4 should never result in a well-formed cast.
1494     msg = SrcExpr->isLValue() ? diag::err_bad_lvalue_to_rvalue_cast
1495                               : diag::err_bad_rvalue_to_rvalue_cast;
1496     return TC_Failed;
1497   }
1498 
1499   if (RefConv & Sema::ReferenceConversions::DerivedToBase) {
1500     Kind = CK_DerivedToBase;
1501     CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1502                        /*DetectVirtual=*/true);
1503     if (!Self.IsDerivedFrom(SrcExpr->getBeginLoc(), SrcExpr->getType(),
1504                             R->getPointeeType(), Paths))
1505       return TC_NotApplicable;
1506 
1507     Self.BuildBasePathArray(Paths, BasePath);
1508   } else
1509     Kind = CK_NoOp;
1510 
1511   return TC_Success;
1512 }
1513 
1514 /// Tests whether a conversion according to C++ 5.2.9p5 is valid.
1515 TryCastResult
1516 TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, QualType DestType,
1517                            bool CStyle, SourceRange OpRange,
1518                            unsigned &msg, CastKind &Kind,
1519                            CXXCastPath &BasePath) {
1520   // C++ 5.2.9p5: An lvalue of type "cv1 B", where B is a class type, can be
1521   //   cast to type "reference to cv2 D", where D is a class derived from B,
1522   //   if a valid standard conversion from "pointer to D" to "pointer to B"
1523   //   exists, cv2 >= cv1, and B is not a virtual base class of D.
1524   // In addition, DR54 clarifies that the base must be accessible in the
1525   // current context. Although the wording of DR54 only applies to the pointer
1526   // variant of this rule, the intent is clearly for it to apply to the this
1527   // conversion as well.
1528 
1529   const ReferenceType *DestReference = DestType->getAs<ReferenceType>();
1530   if (!DestReference) {
1531     return TC_NotApplicable;
1532   }
1533   bool RValueRef = DestReference->isRValueReferenceType();
1534   if (!RValueRef && !SrcExpr->isLValue()) {
1535     // We know the left side is an lvalue reference, so we can suggest a reason.
1536     msg = diag::err_bad_cxx_cast_rvalue;
1537     return TC_NotApplicable;
1538   }
1539 
1540   QualType DestPointee = DestReference->getPointeeType();
1541 
1542   // FIXME: If the source is a prvalue, we should issue a warning (because the
1543   // cast always has undefined behavior), and for AST consistency, we should
1544   // materialize a temporary.
1545   return TryStaticDowncast(Self,
1546                            Self.Context.getCanonicalType(SrcExpr->getType()),
1547                            Self.Context.getCanonicalType(DestPointee), CStyle,
1548                            OpRange, SrcExpr->getType(), DestType, msg, Kind,
1549                            BasePath);
1550 }
1551 
1552 /// Tests whether a conversion according to C++ 5.2.9p8 is valid.
1553 TryCastResult
1554 TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType,
1555                          bool CStyle, SourceRange OpRange,
1556                          unsigned &msg, CastKind &Kind,
1557                          CXXCastPath &BasePath) {
1558   // C++ 5.2.9p8: An rvalue of type "pointer to cv1 B", where B is a class
1559   //   type, can be converted to an rvalue of type "pointer to cv2 D", where D
1560   //   is a class derived from B, if a valid standard conversion from "pointer
1561   //   to D" to "pointer to B" exists, cv2 >= cv1, and B is not a virtual base
1562   //   class of D.
1563   // In addition, DR54 clarifies that the base must be accessible in the
1564   // current context.
1565 
1566   const PointerType *DestPointer = DestType->getAs<PointerType>();
1567   if (!DestPointer) {
1568     return TC_NotApplicable;
1569   }
1570 
1571   const PointerType *SrcPointer = SrcType->getAs<PointerType>();
1572   if (!SrcPointer) {
1573     msg = diag::err_bad_static_cast_pointer_nonpointer;
1574     return TC_NotApplicable;
1575   }
1576 
1577   return TryStaticDowncast(Self,
1578                    Self.Context.getCanonicalType(SrcPointer->getPointeeType()),
1579                   Self.Context.getCanonicalType(DestPointer->getPointeeType()),
1580                            CStyle, OpRange, SrcType, DestType, msg, Kind,
1581                            BasePath);
1582 }
1583 
1584 /// TryStaticDowncast - Common functionality of TryStaticReferenceDowncast and
1585 /// TryStaticPointerDowncast. Tests whether a static downcast from SrcType to
1586 /// DestType is possible and allowed.
1587 TryCastResult
1588 TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType,
1589                   bool CStyle, SourceRange OpRange, QualType OrigSrcType,
1590                   QualType OrigDestType, unsigned &msg,
1591                   CastKind &Kind, CXXCastPath &BasePath) {
1592   // We can only work with complete types. But don't complain if it doesn't work
1593   if (!Self.isCompleteType(OpRange.getBegin(), SrcType) ||
1594       !Self.isCompleteType(OpRange.getBegin(), DestType))
1595     return TC_NotApplicable;
1596 
1597   // Downcast can only happen in class hierarchies, so we need classes.
1598   if (!DestType->getAs<RecordType>() || !SrcType->getAs<RecordType>()) {
1599     return TC_NotApplicable;
1600   }
1601 
1602   CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1603                      /*DetectVirtual=*/true);
1604   if (!Self.IsDerivedFrom(OpRange.getBegin(), DestType, SrcType, Paths)) {
1605     return TC_NotApplicable;
1606   }
1607 
1608   // Target type does derive from source type. Now we're serious. If an error
1609   // appears now, it's not ignored.
1610   // This may not be entirely in line with the standard. Take for example:
1611   // struct A {};
1612   // struct B : virtual A {
1613   //   B(A&);
1614   // };
1615   //
1616   // void f()
1617   // {
1618   //   (void)static_cast<const B&>(*((A*)0));
1619   // }
1620   // As far as the standard is concerned, p5 does not apply (A is virtual), so
1621   // p2 should be used instead - "const B& t(*((A*)0));" is perfectly valid.
1622   // However, both GCC and Comeau reject this example, and accepting it would
1623   // mean more complex code if we're to preserve the nice error message.
1624   // FIXME: Being 100% compliant here would be nice to have.
1625 
1626   // Must preserve cv, as always, unless we're in C-style mode.
1627   if (!CStyle && !DestType.isAtLeastAsQualifiedAs(SrcType)) {
1628     msg = diag::err_bad_cxx_cast_qualifiers_away;
1629     return TC_Failed;
1630   }
1631 
1632   if (Paths.isAmbiguous(SrcType.getUnqualifiedType())) {
1633     // This code is analoguous to that in CheckDerivedToBaseConversion, except
1634     // that it builds the paths in reverse order.
1635     // To sum up: record all paths to the base and build a nice string from
1636     // them. Use it to spice up the error message.
1637     if (!Paths.isRecordingPaths()) {
1638       Paths.clear();
1639       Paths.setRecordingPaths(true);
1640       Self.IsDerivedFrom(OpRange.getBegin(), DestType, SrcType, Paths);
1641     }
1642     std::string PathDisplayStr;
1643     std::set<unsigned> DisplayedPaths;
1644     for (clang::CXXBasePath &Path : Paths) {
1645       if (DisplayedPaths.insert(Path.back().SubobjectNumber).second) {
1646         // We haven't displayed a path to this particular base
1647         // class subobject yet.
1648         PathDisplayStr += "\n    ";
1649         for (CXXBasePathElement &PE : llvm::reverse(Path))
1650           PathDisplayStr += PE.Base->getType().getAsString() + " -> ";
1651         PathDisplayStr += QualType(DestType).getAsString();
1652       }
1653     }
1654 
1655     Self.Diag(OpRange.getBegin(), diag::err_ambiguous_base_to_derived_cast)
1656       << QualType(SrcType).getUnqualifiedType()
1657       << QualType(DestType).getUnqualifiedType()
1658       << PathDisplayStr << OpRange;
1659     msg = 0;
1660     return TC_Failed;
1661   }
1662 
1663   if (Paths.getDetectedVirtual() != nullptr) {
1664     QualType VirtualBase(Paths.getDetectedVirtual(), 0);
1665     Self.Diag(OpRange.getBegin(), diag::err_static_downcast_via_virtual)
1666       << OrigSrcType << OrigDestType << VirtualBase << OpRange;
1667     msg = 0;
1668     return TC_Failed;
1669   }
1670 
1671   if (!CStyle) {
1672     switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1673                                       SrcType, DestType,
1674                                       Paths.front(),
1675                                 diag::err_downcast_from_inaccessible_base)) {
1676     case Sema::AR_accessible:
1677     case Sema::AR_delayed:     // be optimistic
1678     case Sema::AR_dependent:   // be optimistic
1679       break;
1680 
1681     case Sema::AR_inaccessible:
1682       msg = 0;
1683       return TC_Failed;
1684     }
1685   }
1686 
1687   Self.BuildBasePathArray(Paths, BasePath);
1688   Kind = CK_BaseToDerived;
1689   return TC_Success;
1690 }
1691 
1692 /// TryStaticMemberPointerUpcast - Tests whether a conversion according to
1693 /// C++ 5.2.9p9 is valid:
1694 ///
1695 ///   An rvalue of type "pointer to member of D of type cv1 T" can be
1696 ///   converted to an rvalue of type "pointer to member of B of type cv2 T",
1697 ///   where B is a base class of D [...].
1698 ///
1699 TryCastResult
1700 TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType,
1701                              QualType DestType, bool CStyle,
1702                              SourceRange OpRange,
1703                              unsigned &msg, CastKind &Kind,
1704                              CXXCastPath &BasePath) {
1705   const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>();
1706   if (!DestMemPtr)
1707     return TC_NotApplicable;
1708 
1709   bool WasOverloadedFunction = false;
1710   DeclAccessPair FoundOverload;
1711   if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
1712     if (FunctionDecl *Fn
1713           = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), DestType, false,
1714                                                     FoundOverload)) {
1715       CXXMethodDecl *M = cast<CXXMethodDecl>(Fn);
1716       SrcType = Self.Context.getMemberPointerType(Fn->getType(),
1717                       Self.Context.getTypeDeclType(M->getParent()).getTypePtr());
1718       WasOverloadedFunction = true;
1719     }
1720   }
1721 
1722   const MemberPointerType *SrcMemPtr = SrcType->getAs<MemberPointerType>();
1723   if (!SrcMemPtr) {
1724     msg = diag::err_bad_static_cast_member_pointer_nonmp;
1725     return TC_NotApplicable;
1726   }
1727 
1728   // Lock down the inheritance model right now in MS ABI, whether or not the
1729   // pointee types are the same.
1730   if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
1731     (void)Self.isCompleteType(OpRange.getBegin(), SrcType);
1732     (void)Self.isCompleteType(OpRange.getBegin(), DestType);
1733   }
1734 
1735   // T == T, modulo cv
1736   if (!Self.Context.hasSameUnqualifiedType(SrcMemPtr->getPointeeType(),
1737                                            DestMemPtr->getPointeeType()))
1738     return TC_NotApplicable;
1739 
1740   // B base of D
1741   QualType SrcClass(SrcMemPtr->getClass(), 0);
1742   QualType DestClass(DestMemPtr->getClass(), 0);
1743   CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1744                   /*DetectVirtual=*/true);
1745   if (!Self.IsDerivedFrom(OpRange.getBegin(), SrcClass, DestClass, Paths))
1746     return TC_NotApplicable;
1747 
1748   // B is a base of D. But is it an allowed base? If not, it's a hard error.
1749   if (Paths.isAmbiguous(Self.Context.getCanonicalType(DestClass))) {
1750     Paths.clear();
1751     Paths.setRecordingPaths(true);
1752     bool StillOkay =
1753         Self.IsDerivedFrom(OpRange.getBegin(), SrcClass, DestClass, Paths);
1754     assert(StillOkay);
1755     (void)StillOkay;
1756     std::string PathDisplayStr = Self.getAmbiguousPathsDisplayString(Paths);
1757     Self.Diag(OpRange.getBegin(), diag::err_ambiguous_memptr_conv)
1758       << 1 << SrcClass << DestClass << PathDisplayStr << OpRange;
1759     msg = 0;
1760     return TC_Failed;
1761   }
1762 
1763   if (const RecordType *VBase = Paths.getDetectedVirtual()) {
1764     Self.Diag(OpRange.getBegin(), diag::err_memptr_conv_via_virtual)
1765       << SrcClass << DestClass << QualType(VBase, 0) << OpRange;
1766     msg = 0;
1767     return TC_Failed;
1768   }
1769 
1770   if (!CStyle) {
1771     switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1772                                       DestClass, SrcClass,
1773                                       Paths.front(),
1774                                       diag::err_upcast_to_inaccessible_base)) {
1775     case Sema::AR_accessible:
1776     case Sema::AR_delayed:
1777     case Sema::AR_dependent:
1778       // Optimistically assume that the delayed and dependent cases
1779       // will work out.
1780       break;
1781 
1782     case Sema::AR_inaccessible:
1783       msg = 0;
1784       return TC_Failed;
1785     }
1786   }
1787 
1788   if (WasOverloadedFunction) {
1789     // Resolve the address of the overloaded function again, this time
1790     // allowing complaints if something goes wrong.
1791     FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
1792                                                                DestType,
1793                                                                true,
1794                                                                FoundOverload);
1795     if (!Fn) {
1796       msg = 0;
1797       return TC_Failed;
1798     }
1799 
1800     SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr, FoundOverload, Fn);
1801     if (!SrcExpr.isUsable()) {
1802       msg = 0;
1803       return TC_Failed;
1804     }
1805   }
1806 
1807   Self.BuildBasePathArray(Paths, BasePath);
1808   Kind = CK_DerivedToBaseMemberPointer;
1809   return TC_Success;
1810 }
1811 
1812 /// TryStaticImplicitCast - Tests whether a conversion according to C++ 5.2.9p2
1813 /// is valid:
1814 ///
1815 ///   An expression e can be explicitly converted to a type T using a
1816 ///   @c static_cast if the declaration "T t(e);" is well-formed [...].
1817 TryCastResult
1818 TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
1819                       Sema::CheckedConversionKind CCK,
1820                       SourceRange OpRange, unsigned &msg,
1821                       CastKind &Kind, bool ListInitialization) {
1822   if (DestType->isRecordType()) {
1823     if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
1824                                  diag::err_bad_cast_incomplete) ||
1825         Self.RequireNonAbstractType(OpRange.getBegin(), DestType,
1826                                     diag::err_allocation_of_abstract_type)) {
1827       msg = 0;
1828       return TC_Failed;
1829     }
1830   }
1831 
1832   InitializedEntity Entity = InitializedEntity::InitializeTemporary(DestType);
1833   InitializationKind InitKind
1834     = (CCK == Sema::CCK_CStyleCast)
1835         ? InitializationKind::CreateCStyleCast(OpRange.getBegin(), OpRange,
1836                                                ListInitialization)
1837     : (CCK == Sema::CCK_FunctionalCast)
1838         ? InitializationKind::CreateFunctionalCast(OpRange, ListInitialization)
1839     : InitializationKind::CreateCast(OpRange);
1840   Expr *SrcExprRaw = SrcExpr.get();
1841   // FIXME: Per DR242, we should check for an implicit conversion sequence
1842   // or for a constructor that could be invoked by direct-initialization
1843   // here, not for an initialization sequence.
1844   InitializationSequence InitSeq(Self, Entity, InitKind, SrcExprRaw);
1845 
1846   // At this point of CheckStaticCast, if the destination is a reference,
1847   // or the expression is an overload expression this has to work.
1848   // There is no other way that works.
1849   // On the other hand, if we're checking a C-style cast, we've still got
1850   // the reinterpret_cast way.
1851   bool CStyle
1852     = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
1853   if (InitSeq.Failed() && (CStyle || !DestType->isReferenceType()))
1854     return TC_NotApplicable;
1855 
1856   ExprResult Result = InitSeq.Perform(Self, Entity, InitKind, SrcExprRaw);
1857   if (Result.isInvalid()) {
1858     msg = 0;
1859     return TC_Failed;
1860   }
1861 
1862   if (InitSeq.isConstructorInitialization())
1863     Kind = CK_ConstructorConversion;
1864   else
1865     Kind = CK_NoOp;
1866 
1867   SrcExpr = Result;
1868   return TC_Success;
1869 }
1870 
1871 /// TryConstCast - See if a const_cast from source to destination is allowed,
1872 /// and perform it if it is.
1873 static TryCastResult TryConstCast(Sema &Self, ExprResult &SrcExpr,
1874                                   QualType DestType, bool CStyle,
1875                                   unsigned &msg) {
1876   DestType = Self.Context.getCanonicalType(DestType);
1877   QualType SrcType = SrcExpr.get()->getType();
1878   bool NeedToMaterializeTemporary = false;
1879 
1880   if (const ReferenceType *DestTypeTmp =DestType->getAs<ReferenceType>()) {
1881     // C++11 5.2.11p4:
1882     //   if a pointer to T1 can be explicitly converted to the type "pointer to
1883     //   T2" using a const_cast, then the following conversions can also be
1884     //   made:
1885     //    -- an lvalue of type T1 can be explicitly converted to an lvalue of
1886     //       type T2 using the cast const_cast<T2&>;
1887     //    -- a glvalue of type T1 can be explicitly converted to an xvalue of
1888     //       type T2 using the cast const_cast<T2&&>; and
1889     //    -- if T1 is a class type, a prvalue of type T1 can be explicitly
1890     //       converted to an xvalue of type T2 using the cast const_cast<T2&&>.
1891 
1892     if (isa<LValueReferenceType>(DestTypeTmp) && !SrcExpr.get()->isLValue()) {
1893       // Cannot const_cast non-lvalue to lvalue reference type. But if this
1894       // is C-style, static_cast might find a way, so we simply suggest a
1895       // message and tell the parent to keep searching.
1896       msg = diag::err_bad_cxx_cast_rvalue;
1897       return TC_NotApplicable;
1898     }
1899 
1900     if (isa<RValueReferenceType>(DestTypeTmp) && SrcExpr.get()->isRValue()) {
1901       if (!SrcType->isRecordType()) {
1902         // Cannot const_cast non-class prvalue to rvalue reference type. But if
1903         // this is C-style, static_cast can do this.
1904         msg = diag::err_bad_cxx_cast_rvalue;
1905         return TC_NotApplicable;
1906       }
1907 
1908       // Materialize the class prvalue so that the const_cast can bind a
1909       // reference to it.
1910       NeedToMaterializeTemporary = true;
1911     }
1912 
1913     // It's not completely clear under the standard whether we can
1914     // const_cast bit-field gl-values.  Doing so would not be
1915     // intrinsically complicated, but for now, we say no for
1916     // consistency with other compilers and await the word of the
1917     // committee.
1918     if (SrcExpr.get()->refersToBitField()) {
1919       msg = diag::err_bad_cxx_cast_bitfield;
1920       return TC_NotApplicable;
1921     }
1922 
1923     DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
1924     SrcType = Self.Context.getPointerType(SrcType);
1925   }
1926 
1927   // C++ 5.2.11p5: For a const_cast involving pointers to data members [...]
1928   //   the rules for const_cast are the same as those used for pointers.
1929 
1930   if (!DestType->isPointerType() &&
1931       !DestType->isMemberPointerType() &&
1932       !DestType->isObjCObjectPointerType()) {
1933     // Cannot cast to non-pointer, non-reference type. Note that, if DestType
1934     // was a reference type, we converted it to a pointer above.
1935     // The status of rvalue references isn't entirely clear, but it looks like
1936     // conversion to them is simply invalid.
1937     // C++ 5.2.11p3: For two pointer types [...]
1938     if (!CStyle)
1939       msg = diag::err_bad_const_cast_dest;
1940     return TC_NotApplicable;
1941   }
1942   if (DestType->isFunctionPointerType() ||
1943       DestType->isMemberFunctionPointerType()) {
1944     // Cannot cast direct function pointers.
1945     // C++ 5.2.11p2: [...] where T is any object type or the void type [...]
1946     // T is the ultimate pointee of source and target type.
1947     if (!CStyle)
1948       msg = diag::err_bad_const_cast_dest;
1949     return TC_NotApplicable;
1950   }
1951 
1952   // C++ [expr.const.cast]p3:
1953   //   "For two similar types T1 and T2, [...]"
1954   //
1955   // We only allow a const_cast to change cvr-qualifiers, not other kinds of
1956   // type qualifiers. (Likewise, we ignore other changes when determining
1957   // whether a cast casts away constness.)
1958   if (!Self.Context.hasCvrSimilarType(SrcType, DestType))
1959     return TC_NotApplicable;
1960 
1961   if (NeedToMaterializeTemporary)
1962     // This is a const_cast from a class prvalue to an rvalue reference type.
1963     // Materialize a temporary to store the result of the conversion.
1964     SrcExpr = Self.CreateMaterializeTemporaryExpr(SrcExpr.get()->getType(),
1965                                                   SrcExpr.get(),
1966                                                   /*IsLValueReference*/ false);
1967 
1968   return TC_Success;
1969 }
1970 
1971 // Checks for undefined behavior in reinterpret_cast.
1972 // The cases that is checked for is:
1973 // *reinterpret_cast<T*>(&a)
1974 // reinterpret_cast<T&>(a)
1975 // where accessing 'a' as type 'T' will result in undefined behavior.
1976 void Sema::CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType,
1977                                           bool IsDereference,
1978                                           SourceRange Range) {
1979   unsigned DiagID = IsDereference ?
1980                         diag::warn_pointer_indirection_from_incompatible_type :
1981                         diag::warn_undefined_reinterpret_cast;
1982 
1983   if (Diags.isIgnored(DiagID, Range.getBegin()))
1984     return;
1985 
1986   QualType SrcTy, DestTy;
1987   if (IsDereference) {
1988     if (!SrcType->getAs<PointerType>() || !DestType->getAs<PointerType>()) {
1989       return;
1990     }
1991     SrcTy = SrcType->getPointeeType();
1992     DestTy = DestType->getPointeeType();
1993   } else {
1994     if (!DestType->getAs<ReferenceType>()) {
1995       return;
1996     }
1997     SrcTy = SrcType;
1998     DestTy = DestType->getPointeeType();
1999   }
2000 
2001   // Cast is compatible if the types are the same.
2002   if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
2003     return;
2004   }
2005   // or one of the types is a char or void type
2006   if (DestTy->isAnyCharacterType() || DestTy->isVoidType() ||
2007       SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) {
2008     return;
2009   }
2010   // or one of the types is a tag type.
2011   if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) {
2012     return;
2013   }
2014 
2015   // FIXME: Scoped enums?
2016   if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
2017       (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
2018     if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {
2019       return;
2020     }
2021   }
2022 
2023   Diag(Range.getBegin(), DiagID) << SrcType << DestType << Range;
2024 }
2025 
2026 static void DiagnoseCastOfObjCSEL(Sema &Self, const ExprResult &SrcExpr,
2027                                   QualType DestType) {
2028   QualType SrcType = SrcExpr.get()->getType();
2029   if (Self.Context.hasSameType(SrcType, DestType))
2030     return;
2031   if (const PointerType *SrcPtrTy = SrcType->getAs<PointerType>())
2032     if (SrcPtrTy->isObjCSelType()) {
2033       QualType DT = DestType;
2034       if (isa<PointerType>(DestType))
2035         DT = DestType->getPointeeType();
2036       if (!DT.getUnqualifiedType()->isVoidType())
2037         Self.Diag(SrcExpr.get()->getExprLoc(),
2038                   diag::warn_cast_pointer_from_sel)
2039         << SrcType << DestType << SrcExpr.get()->getSourceRange();
2040     }
2041 }
2042 
2043 /// Diagnose casts that change the calling convention of a pointer to a function
2044 /// defined in the current TU.
2045 static void DiagnoseCallingConvCast(Sema &Self, const ExprResult &SrcExpr,
2046                                     QualType DstType, SourceRange OpRange) {
2047   // Check if this cast would change the calling convention of a function
2048   // pointer type.
2049   QualType SrcType = SrcExpr.get()->getType();
2050   if (Self.Context.hasSameType(SrcType, DstType) ||
2051       !SrcType->isFunctionPointerType() || !DstType->isFunctionPointerType())
2052     return;
2053   const auto *SrcFTy =
2054       SrcType->castAs<PointerType>()->getPointeeType()->castAs<FunctionType>();
2055   const auto *DstFTy =
2056       DstType->castAs<PointerType>()->getPointeeType()->castAs<FunctionType>();
2057   CallingConv SrcCC = SrcFTy->getCallConv();
2058   CallingConv DstCC = DstFTy->getCallConv();
2059   if (SrcCC == DstCC)
2060     return;
2061 
2062   // We have a calling convention cast. Check if the source is a pointer to a
2063   // known, specific function that has already been defined.
2064   Expr *Src = SrcExpr.get()->IgnoreParenImpCasts();
2065   if (auto *UO = dyn_cast<UnaryOperator>(Src))
2066     if (UO->getOpcode() == UO_AddrOf)
2067       Src = UO->getSubExpr()->IgnoreParenImpCasts();
2068   auto *DRE = dyn_cast<DeclRefExpr>(Src);
2069   if (!DRE)
2070     return;
2071   auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl());
2072   if (!FD)
2073     return;
2074 
2075   // Only warn if we are casting from the default convention to a non-default
2076   // convention. This can happen when the programmer forgot to apply the calling
2077   // convention to the function declaration and then inserted this cast to
2078   // satisfy the type system.
2079   CallingConv DefaultCC = Self.getASTContext().getDefaultCallingConvention(
2080       FD->isVariadic(), FD->isCXXInstanceMember());
2081   if (DstCC == DefaultCC || SrcCC != DefaultCC)
2082     return;
2083 
2084   // Diagnose this cast, as it is probably bad.
2085   StringRef SrcCCName = FunctionType::getNameForCallConv(SrcCC);
2086   StringRef DstCCName = FunctionType::getNameForCallConv(DstCC);
2087   Self.Diag(OpRange.getBegin(), diag::warn_cast_calling_conv)
2088       << SrcCCName << DstCCName << OpRange;
2089 
2090   // The checks above are cheaper than checking if the diagnostic is enabled.
2091   // However, it's worth checking if the warning is enabled before we construct
2092   // a fixit.
2093   if (Self.Diags.isIgnored(diag::warn_cast_calling_conv, OpRange.getBegin()))
2094     return;
2095 
2096   // Try to suggest a fixit to change the calling convention of the function
2097   // whose address was taken. Try to use the latest macro for the convention.
2098   // For example, users probably want to write "WINAPI" instead of "__stdcall"
2099   // to match the Windows header declarations.
2100   SourceLocation NameLoc = FD->getFirstDecl()->getNameInfo().getLoc();
2101   Preprocessor &PP = Self.getPreprocessor();
2102   SmallVector<TokenValue, 6> AttrTokens;
2103   SmallString<64> CCAttrText;
2104   llvm::raw_svector_ostream OS(CCAttrText);
2105   if (Self.getLangOpts().MicrosoftExt) {
2106     // __stdcall or __vectorcall
2107     OS << "__" << DstCCName;
2108     IdentifierInfo *II = PP.getIdentifierInfo(OS.str());
2109     AttrTokens.push_back(II->isKeyword(Self.getLangOpts())
2110                              ? TokenValue(II->getTokenID())
2111                              : TokenValue(II));
2112   } else {
2113     // __attribute__((stdcall)) or __attribute__((vectorcall))
2114     OS << "__attribute__((" << DstCCName << "))";
2115     AttrTokens.push_back(tok::kw___attribute);
2116     AttrTokens.push_back(tok::l_paren);
2117     AttrTokens.push_back(tok::l_paren);
2118     IdentifierInfo *II = PP.getIdentifierInfo(DstCCName);
2119     AttrTokens.push_back(II->isKeyword(Self.getLangOpts())
2120                              ? TokenValue(II->getTokenID())
2121                              : TokenValue(II));
2122     AttrTokens.push_back(tok::r_paren);
2123     AttrTokens.push_back(tok::r_paren);
2124   }
2125   StringRef AttrSpelling = PP.getLastMacroWithSpelling(NameLoc, AttrTokens);
2126   if (!AttrSpelling.empty())
2127     CCAttrText = AttrSpelling;
2128   OS << ' ';
2129   Self.Diag(NameLoc, diag::note_change_calling_conv_fixit)
2130       << FD << DstCCName << FixItHint::CreateInsertion(NameLoc, CCAttrText);
2131 }
2132 
2133 static void checkIntToPointerCast(bool CStyle, const SourceRange &OpRange,
2134                                   const Expr *SrcExpr, QualType DestType,
2135                                   Sema &Self) {
2136   QualType SrcType = SrcExpr->getType();
2137 
2138   // Not warning on reinterpret_cast, boolean, constant expressions, etc
2139   // are not explicit design choices, but consistent with GCC's behavior.
2140   // Feel free to modify them if you've reason/evidence for an alternative.
2141   if (CStyle && SrcType->isIntegralType(Self.Context)
2142       && !SrcType->isBooleanType()
2143       && !SrcType->isEnumeralType()
2144       && !SrcExpr->isIntegerConstantExpr(Self.Context)
2145       && Self.Context.getTypeSize(DestType) >
2146          Self.Context.getTypeSize(SrcType)) {
2147     // Separate between casts to void* and non-void* pointers.
2148     // Some APIs use (abuse) void* for something like a user context,
2149     // and often that value is an integer even if it isn't a pointer itself.
2150     // Having a separate warning flag allows users to control the warning
2151     // for their workflow.
2152     unsigned Diag = DestType->isVoidPointerType() ?
2153                       diag::warn_int_to_void_pointer_cast
2154                     : diag::warn_int_to_pointer_cast;
2155     Self.Diag(OpRange.getBegin(), Diag) << SrcType << DestType << OpRange;
2156   }
2157 }
2158 
2159 static bool fixOverloadedReinterpretCastExpr(Sema &Self, QualType DestType,
2160                                              ExprResult &Result) {
2161   // We can only fix an overloaded reinterpret_cast if
2162   // - it is a template with explicit arguments that resolves to an lvalue
2163   //   unambiguously, or
2164   // - it is the only function in an overload set that may have its address
2165   //   taken.
2166 
2167   Expr *E = Result.get();
2168   // TODO: what if this fails because of DiagnoseUseOfDecl or something
2169   // like it?
2170   if (Self.ResolveAndFixSingleFunctionTemplateSpecialization(
2171           Result,
2172           Expr::getValueKindForType(DestType) == VK_RValue // Convert Fun to Ptr
2173           ) &&
2174       Result.isUsable())
2175     return true;
2176 
2177   // No guarantees that ResolveAndFixSingleFunctionTemplateSpecialization
2178   // preserves Result.
2179   Result = E;
2180   if (!Self.resolveAndFixAddressOfSingleOverloadCandidate(
2181           Result, /*DoFunctionPointerConversion=*/true))
2182     return false;
2183   return Result.isUsable();
2184 }
2185 
2186 static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr,
2187                                         QualType DestType, bool CStyle,
2188                                         SourceRange OpRange,
2189                                         unsigned &msg,
2190                                         CastKind &Kind) {
2191   bool IsLValueCast = false;
2192 
2193   DestType = Self.Context.getCanonicalType(DestType);
2194   QualType SrcType = SrcExpr.get()->getType();
2195 
2196   // Is the source an overloaded name? (i.e. &foo)
2197   // If so, reinterpret_cast generally can not help us here (13.4, p1, bullet 5)
2198   if (SrcType == Self.Context.OverloadTy) {
2199     ExprResult FixedExpr = SrcExpr;
2200     if (!fixOverloadedReinterpretCastExpr(Self, DestType, FixedExpr))
2201       return TC_NotApplicable;
2202 
2203     assert(FixedExpr.isUsable() && "Invalid result fixing overloaded expr");
2204     SrcExpr = FixedExpr;
2205     SrcType = SrcExpr.get()->getType();
2206   }
2207 
2208   if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) {
2209     if (!SrcExpr.get()->isGLValue()) {
2210       // Cannot cast non-glvalue to (lvalue or rvalue) reference type. See the
2211       // similar comment in const_cast.
2212       msg = diag::err_bad_cxx_cast_rvalue;
2213       return TC_NotApplicable;
2214     }
2215 
2216     if (!CStyle) {
2217       Self.CheckCompatibleReinterpretCast(SrcType, DestType,
2218                                           /*IsDereference=*/false, OpRange);
2219     }
2220 
2221     // C++ 5.2.10p10: [...] a reference cast reinterpret_cast<T&>(x) has the
2222     //   same effect as the conversion *reinterpret_cast<T*>(&x) with the
2223     //   built-in & and * operators.
2224 
2225     const char *inappropriate = nullptr;
2226     switch (SrcExpr.get()->getObjectKind()) {
2227     case OK_Ordinary:
2228       break;
2229     case OK_BitField:
2230       msg = diag::err_bad_cxx_cast_bitfield;
2231       return TC_NotApplicable;
2232       // FIXME: Use a specific diagnostic for the rest of these cases.
2233     case OK_VectorComponent: inappropriate = "vector element";      break;
2234     case OK_MatrixComponent:
2235       inappropriate = "matrix element";
2236       break;
2237     case OK_ObjCProperty:    inappropriate = "property expression"; break;
2238     case OK_ObjCSubscript:   inappropriate = "container subscripting expression";
2239                              break;
2240     }
2241     if (inappropriate) {
2242       Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_reference)
2243           << inappropriate << DestType
2244           << OpRange << SrcExpr.get()->getSourceRange();
2245       msg = 0; SrcExpr = ExprError();
2246       return TC_NotApplicable;
2247     }
2248 
2249     // This code does this transformation for the checked types.
2250     DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
2251     SrcType = Self.Context.getPointerType(SrcType);
2252 
2253     IsLValueCast = true;
2254   }
2255 
2256   // Canonicalize source for comparison.
2257   SrcType = Self.Context.getCanonicalType(SrcType);
2258 
2259   const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(),
2260                           *SrcMemPtr = SrcType->getAs<MemberPointerType>();
2261   if (DestMemPtr && SrcMemPtr) {
2262     // C++ 5.2.10p9: An rvalue of type "pointer to member of X of type T1"
2263     //   can be explicitly converted to an rvalue of type "pointer to member
2264     //   of Y of type T2" if T1 and T2 are both function types or both object
2265     //   types.
2266     if (DestMemPtr->isMemberFunctionPointer() !=
2267         SrcMemPtr->isMemberFunctionPointer())
2268       return TC_NotApplicable;
2269 
2270     if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
2271       // We need to determine the inheritance model that the class will use if
2272       // haven't yet.
2273       (void)Self.isCompleteType(OpRange.getBegin(), SrcType);
2274       (void)Self.isCompleteType(OpRange.getBegin(), DestType);
2275     }
2276 
2277     // Don't allow casting between member pointers of different sizes.
2278     if (Self.Context.getTypeSize(DestMemPtr) !=
2279         Self.Context.getTypeSize(SrcMemPtr)) {
2280       msg = diag::err_bad_cxx_cast_member_pointer_size;
2281       return TC_Failed;
2282     }
2283 
2284     // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away
2285     //   constness.
2286     // A reinterpret_cast followed by a const_cast can, though, so in C-style,
2287     // we accept it.
2288     if (auto CACK =
2289             CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
2290                                /*CheckObjCLifetime=*/CStyle))
2291       return getCastAwayConstnessCastKind(CACK, msg);
2292 
2293     // A valid member pointer cast.
2294     assert(!IsLValueCast);
2295     Kind = CK_ReinterpretMemberPointer;
2296     return TC_Success;
2297   }
2298 
2299   // See below for the enumeral issue.
2300   if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) {
2301     // C++0x 5.2.10p4: A pointer can be explicitly converted to any integral
2302     //   type large enough to hold it. A value of std::nullptr_t can be
2303     //   converted to an integral type; the conversion has the same meaning
2304     //   and validity as a conversion of (void*)0 to the integral type.
2305     if (Self.Context.getTypeSize(SrcType) >
2306         Self.Context.getTypeSize(DestType)) {
2307       msg = diag::err_bad_reinterpret_cast_small_int;
2308       return TC_Failed;
2309     }
2310     Kind = CK_PointerToIntegral;
2311     return TC_Success;
2312   }
2313 
2314   // Allow reinterpret_casts between vectors of the same size and
2315   // between vectors and integers of the same size.
2316   bool destIsVector = DestType->isVectorType();
2317   bool srcIsVector = SrcType->isVectorType();
2318   if (srcIsVector || destIsVector) {
2319     // Allow bitcasting between SVE VLATs and VLSTs, and vice-versa.
2320     if (Self.isValidSveBitcast(SrcType, DestType)) {
2321       Kind = CK_BitCast;
2322       return TC_Success;
2323     }
2324 
2325     // The non-vector type, if any, must have integral type.  This is
2326     // the same rule that C vector casts use; note, however, that enum
2327     // types are not integral in C++.
2328     if ((!destIsVector && !DestType->isIntegralType(Self.Context)) ||
2329         (!srcIsVector && !SrcType->isIntegralType(Self.Context)))
2330       return TC_NotApplicable;
2331 
2332     // The size we want to consider is eltCount * eltSize.
2333     // That's exactly what the lax-conversion rules will check.
2334     if (Self.areLaxCompatibleVectorTypes(SrcType, DestType)) {
2335       Kind = CK_BitCast;
2336       return TC_Success;
2337     }
2338 
2339     if (Self.LangOpts.OpenCL && !CStyle) {
2340       if (DestType->isExtVectorType() || SrcType->isExtVectorType()) {
2341         // FIXME: Allow for reinterpret cast between 3 and 4 element vectors
2342         if (Self.areVectorTypesSameSize(SrcType, DestType)) {
2343           Kind = CK_BitCast;
2344           return TC_Success;
2345         }
2346       }
2347     }
2348 
2349     // Otherwise, pick a reasonable diagnostic.
2350     if (!destIsVector)
2351       msg = diag::err_bad_cxx_cast_vector_to_scalar_different_size;
2352     else if (!srcIsVector)
2353       msg = diag::err_bad_cxx_cast_scalar_to_vector_different_size;
2354     else
2355       msg = diag::err_bad_cxx_cast_vector_to_vector_different_size;
2356 
2357     return TC_Failed;
2358   }
2359 
2360   if (SrcType == DestType) {
2361     // C++ 5.2.10p2 has a note that mentions that, subject to all other
2362     // restrictions, a cast to the same type is allowed so long as it does not
2363     // cast away constness. In C++98, the intent was not entirely clear here,
2364     // since all other paragraphs explicitly forbid casts to the same type.
2365     // C++11 clarifies this case with p2.
2366     //
2367     // The only allowed types are: integral, enumeration, pointer, or
2368     // pointer-to-member types.  We also won't restrict Obj-C pointers either.
2369     Kind = CK_NoOp;
2370     TryCastResult Result = TC_NotApplicable;
2371     if (SrcType->isIntegralOrEnumerationType() ||
2372         SrcType->isAnyPointerType() ||
2373         SrcType->isMemberPointerType() ||
2374         SrcType->isBlockPointerType()) {
2375       Result = TC_Success;
2376     }
2377     return Result;
2378   }
2379 
2380   bool destIsPtr = DestType->isAnyPointerType() ||
2381                    DestType->isBlockPointerType();
2382   bool srcIsPtr = SrcType->isAnyPointerType() ||
2383                   SrcType->isBlockPointerType();
2384   if (!destIsPtr && !srcIsPtr) {
2385     // Except for std::nullptr_t->integer and lvalue->reference, which are
2386     // handled above, at least one of the two arguments must be a pointer.
2387     return TC_NotApplicable;
2388   }
2389 
2390   if (DestType->isIntegralType(Self.Context)) {
2391     assert(srcIsPtr && "One type must be a pointer");
2392     // C++ 5.2.10p4: A pointer can be explicitly converted to any integral
2393     //   type large enough to hold it; except in Microsoft mode, where the
2394     //   integral type size doesn't matter (except we don't allow bool).
2395     if ((Self.Context.getTypeSize(SrcType) >
2396          Self.Context.getTypeSize(DestType))) {
2397       bool MicrosoftException =
2398           Self.getLangOpts().MicrosoftExt && !DestType->isBooleanType();
2399       if (MicrosoftException) {
2400         unsigned Diag = SrcType->isVoidPointerType()
2401                             ? diag::warn_void_pointer_to_int_cast
2402                             : diag::warn_pointer_to_int_cast;
2403         Self.Diag(OpRange.getBegin(), Diag) << SrcType << DestType << OpRange;
2404       } else {
2405         msg = diag::err_bad_reinterpret_cast_small_int;
2406         return TC_Failed;
2407       }
2408     }
2409     Kind = CK_PointerToIntegral;
2410     return TC_Success;
2411   }
2412 
2413   if (SrcType->isIntegralOrEnumerationType()) {
2414     assert(destIsPtr && "One type must be a pointer");
2415     checkIntToPointerCast(CStyle, OpRange, SrcExpr.get(), DestType, Self);
2416     // C++ 5.2.10p5: A value of integral or enumeration type can be explicitly
2417     //   converted to a pointer.
2418     // C++ 5.2.10p9: [Note: ...a null pointer constant of integral type is not
2419     //   necessarily converted to a null pointer value.]
2420     Kind = CK_IntegralToPointer;
2421     return TC_Success;
2422   }
2423 
2424   if (!destIsPtr || !srcIsPtr) {
2425     // With the valid non-pointer conversions out of the way, we can be even
2426     // more stringent.
2427     return TC_NotApplicable;
2428   }
2429 
2430   // Cannot convert between block pointers and Objective-C object pointers.
2431   if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) ||
2432       (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType()))
2433     return TC_NotApplicable;
2434 
2435   // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away constness.
2436   // The C-style cast operator can.
2437   TryCastResult SuccessResult = TC_Success;
2438   if (auto CACK =
2439           CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
2440                              /*CheckObjCLifetime=*/CStyle))
2441     SuccessResult = getCastAwayConstnessCastKind(CACK, msg);
2442 
2443   if (IsAddressSpaceConversion(SrcType, DestType)) {
2444     Kind = CK_AddressSpaceConversion;
2445     assert(SrcType->isPointerType() && DestType->isPointerType());
2446     if (!CStyle &&
2447         !DestType->getPointeeType().getQualifiers().isAddressSpaceSupersetOf(
2448             SrcType->getPointeeType().getQualifiers())) {
2449       SuccessResult = TC_Failed;
2450     }
2451   } else if (IsLValueCast) {
2452     Kind = CK_LValueBitCast;
2453   } else if (DestType->isObjCObjectPointerType()) {
2454     Kind = Self.PrepareCastToObjCObjectPointer(SrcExpr);
2455   } else if (DestType->isBlockPointerType()) {
2456     if (!SrcType->isBlockPointerType()) {
2457       Kind = CK_AnyPointerToBlockPointerCast;
2458     } else {
2459       Kind = CK_BitCast;
2460     }
2461   } else {
2462     Kind = CK_BitCast;
2463   }
2464 
2465   // Any pointer can be cast to an Objective-C pointer type with a C-style
2466   // cast.
2467   if (CStyle && DestType->isObjCObjectPointerType()) {
2468     return SuccessResult;
2469   }
2470   if (CStyle)
2471     DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
2472 
2473   DiagnoseCallingConvCast(Self, SrcExpr, DestType, OpRange);
2474 
2475   // Not casting away constness, so the only remaining check is for compatible
2476   // pointer categories.
2477 
2478   if (SrcType->isFunctionPointerType()) {
2479     if (DestType->isFunctionPointerType()) {
2480       // C++ 5.2.10p6: A pointer to a function can be explicitly converted to
2481       // a pointer to a function of a different type.
2482       return SuccessResult;
2483     }
2484 
2485     // C++0x 5.2.10p8: Converting a pointer to a function into a pointer to
2486     //   an object type or vice versa is conditionally-supported.
2487     // Compilers support it in C++03 too, though, because it's necessary for
2488     // casting the return value of dlsym() and GetProcAddress().
2489     // FIXME: Conditionally-supported behavior should be configurable in the
2490     // TargetInfo or similar.
2491     Self.Diag(OpRange.getBegin(),
2492               Self.getLangOpts().CPlusPlus11 ?
2493                 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2494       << OpRange;
2495     return SuccessResult;
2496   }
2497 
2498   if (DestType->isFunctionPointerType()) {
2499     // See above.
2500     Self.Diag(OpRange.getBegin(),
2501               Self.getLangOpts().CPlusPlus11 ?
2502                 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2503       << OpRange;
2504     return SuccessResult;
2505   }
2506 
2507   // Diagnose address space conversion in nested pointers.
2508   QualType DestPtee = DestType->getPointeeType().isNull()
2509                           ? DestType->getPointeeType()
2510                           : DestType->getPointeeType()->getPointeeType();
2511   QualType SrcPtee = SrcType->getPointeeType().isNull()
2512                          ? SrcType->getPointeeType()
2513                          : SrcType->getPointeeType()->getPointeeType();
2514   while (!DestPtee.isNull() && !SrcPtee.isNull()) {
2515     if (DestPtee.getAddressSpace() != SrcPtee.getAddressSpace()) {
2516       Self.Diag(OpRange.getBegin(),
2517                 diag::warn_bad_cxx_cast_nested_pointer_addr_space)
2518           << CStyle << SrcType << DestType << SrcExpr.get()->getSourceRange();
2519       break;
2520     }
2521     DestPtee = DestPtee->getPointeeType();
2522     SrcPtee = SrcPtee->getPointeeType();
2523   }
2524 
2525   // C++ 5.2.10p7: A pointer to an object can be explicitly converted to
2526   //   a pointer to an object of different type.
2527   // Void pointers are not specified, but supported by every compiler out there.
2528   // So we finish by allowing everything that remains - it's got to be two
2529   // object pointers.
2530   return SuccessResult;
2531 }
2532 
2533 static TryCastResult TryAddressSpaceCast(Sema &Self, ExprResult &SrcExpr,
2534                                          QualType DestType, bool CStyle,
2535                                          unsigned &msg, CastKind &Kind) {
2536   if (!Self.getLangOpts().OpenCL)
2537     // FIXME: As compiler doesn't have any information about overlapping addr
2538     // spaces at the moment we have to be permissive here.
2539     return TC_NotApplicable;
2540   // Even though the logic below is general enough and can be applied to
2541   // non-OpenCL mode too, we fast-path above because no other languages
2542   // define overlapping address spaces currently.
2543   auto SrcType = SrcExpr.get()->getType();
2544   // FIXME: Should this be generalized to references? The reference parameter
2545   // however becomes a reference pointee type here and therefore rejected.
2546   // Perhaps this is the right behavior though according to C++.
2547   auto SrcPtrType = SrcType->getAs<PointerType>();
2548   if (!SrcPtrType)
2549     return TC_NotApplicable;
2550   auto DestPtrType = DestType->getAs<PointerType>();
2551   if (!DestPtrType)
2552     return TC_NotApplicable;
2553   auto SrcPointeeType = SrcPtrType->getPointeeType();
2554   auto DestPointeeType = DestPtrType->getPointeeType();
2555   if (!DestPointeeType.isAddressSpaceOverlapping(SrcPointeeType)) {
2556     msg = diag::err_bad_cxx_cast_addr_space_mismatch;
2557     return TC_Failed;
2558   }
2559   auto SrcPointeeTypeWithoutAS =
2560       Self.Context.removeAddrSpaceQualType(SrcPointeeType.getCanonicalType());
2561   auto DestPointeeTypeWithoutAS =
2562       Self.Context.removeAddrSpaceQualType(DestPointeeType.getCanonicalType());
2563   if (Self.Context.hasSameType(SrcPointeeTypeWithoutAS,
2564                                DestPointeeTypeWithoutAS)) {
2565     Kind = SrcPointeeType.getAddressSpace() == DestPointeeType.getAddressSpace()
2566                ? CK_NoOp
2567                : CK_AddressSpaceConversion;
2568     return TC_Success;
2569   } else {
2570     return TC_NotApplicable;
2571   }
2572 }
2573 
2574 void CastOperation::checkAddressSpaceCast(QualType SrcType, QualType DestType) {
2575   // In OpenCL only conversions between pointers to objects in overlapping
2576   // addr spaces are allowed. v2.0 s6.5.5 - Generic addr space overlaps
2577   // with any named one, except for constant.
2578 
2579   // Converting the top level pointee addrspace is permitted for compatible
2580   // addrspaces (such as 'generic int *' to 'local int *' or vice versa), but
2581   // if any of the nested pointee addrspaces differ, we emit a warning
2582   // regardless of addrspace compatibility. This makes
2583   //   local int ** p;
2584   //   return (generic int **) p;
2585   // warn even though local -> generic is permitted.
2586   if (Self.getLangOpts().OpenCL) {
2587     const Type *DestPtr, *SrcPtr;
2588     bool Nested = false;
2589     unsigned DiagID = diag::err_typecheck_incompatible_address_space;
2590     DestPtr = Self.getASTContext().getCanonicalType(DestType.getTypePtr()),
2591     SrcPtr  = Self.getASTContext().getCanonicalType(SrcType.getTypePtr());
2592 
2593     while (isa<PointerType>(DestPtr) && isa<PointerType>(SrcPtr)) {
2594       const PointerType *DestPPtr = cast<PointerType>(DestPtr);
2595       const PointerType *SrcPPtr = cast<PointerType>(SrcPtr);
2596       QualType DestPPointee = DestPPtr->getPointeeType();
2597       QualType SrcPPointee = SrcPPtr->getPointeeType();
2598       if (Nested
2599               ? DestPPointee.getAddressSpace() != SrcPPointee.getAddressSpace()
2600               : !DestPPointee.isAddressSpaceOverlapping(SrcPPointee)) {
2601         Self.Diag(OpRange.getBegin(), DiagID)
2602             << SrcType << DestType << Sema::AA_Casting
2603             << SrcExpr.get()->getSourceRange();
2604         if (!Nested)
2605           SrcExpr = ExprError();
2606         return;
2607       }
2608 
2609       DestPtr = DestPPtr->getPointeeType().getTypePtr();
2610       SrcPtr = SrcPPtr->getPointeeType().getTypePtr();
2611       Nested = true;
2612       DiagID = diag::ext_nested_pointer_qualifier_mismatch;
2613     }
2614   }
2615 }
2616 
2617 void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle,
2618                                        bool ListInitialization) {
2619   assert(Self.getLangOpts().CPlusPlus);
2620 
2621   // Handle placeholders.
2622   if (isPlaceholder()) {
2623     // C-style casts can resolve __unknown_any types.
2624     if (claimPlaceholder(BuiltinType::UnknownAny)) {
2625       SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2626                                          SrcExpr.get(), Kind,
2627                                          ValueKind, BasePath);
2628       return;
2629     }
2630 
2631     checkNonOverloadPlaceholders();
2632     if (SrcExpr.isInvalid())
2633       return;
2634   }
2635 
2636   // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
2637   // This test is outside everything else because it's the only case where
2638   // a non-lvalue-reference target type does not lead to decay.
2639   if (DestType->isVoidType()) {
2640     Kind = CK_ToVoid;
2641 
2642     if (claimPlaceholder(BuiltinType::Overload)) {
2643       Self.ResolveAndFixSingleFunctionTemplateSpecialization(
2644                   SrcExpr, /* Decay Function to ptr */ false,
2645                   /* Complain */ true, DestRange, DestType,
2646                   diag::err_bad_cstyle_cast_overload);
2647       if (SrcExpr.isInvalid())
2648         return;
2649     }
2650 
2651     SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
2652     return;
2653   }
2654 
2655   // If the type is dependent, we won't do any other semantic analysis now.
2656   if (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() ||
2657       SrcExpr.get()->isValueDependent()) {
2658     assert(Kind == CK_Dependent);
2659     return;
2660   }
2661 
2662   if (ValueKind == VK_RValue && !DestType->isRecordType() &&
2663       !isPlaceholder(BuiltinType::Overload)) {
2664     SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
2665     if (SrcExpr.isInvalid())
2666       return;
2667   }
2668 
2669   // AltiVec vector initialization with a single literal.
2670   if (const VectorType *vecTy = DestType->getAs<VectorType>())
2671     if (vecTy->getVectorKind() == VectorType::AltiVecVector
2672         && (SrcExpr.get()->getType()->isIntegerType()
2673             || SrcExpr.get()->getType()->isFloatingType())) {
2674       Kind = CK_VectorSplat;
2675       SrcExpr = Self.prepareVectorSplat(DestType, SrcExpr.get());
2676       return;
2677     }
2678 
2679   // C++ [expr.cast]p5: The conversions performed by
2680   //   - a const_cast,
2681   //   - a static_cast,
2682   //   - a static_cast followed by a const_cast,
2683   //   - a reinterpret_cast, or
2684   //   - a reinterpret_cast followed by a const_cast,
2685   //   can be performed using the cast notation of explicit type conversion.
2686   //   [...] If a conversion can be interpreted in more than one of the ways
2687   //   listed above, the interpretation that appears first in the list is used,
2688   //   even if a cast resulting from that interpretation is ill-formed.
2689   // In plain language, this means trying a const_cast ...
2690   // Note that for address space we check compatibility after const_cast.
2691   unsigned msg = diag::err_bad_cxx_cast_generic;
2692   TryCastResult tcr = TryConstCast(Self, SrcExpr, DestType,
2693                                    /*CStyle*/ true, msg);
2694   if (SrcExpr.isInvalid())
2695     return;
2696   if (isValidCast(tcr))
2697     Kind = CK_NoOp;
2698 
2699   Sema::CheckedConversionKind CCK =
2700       FunctionalStyle ? Sema::CCK_FunctionalCast : Sema::CCK_CStyleCast;
2701   if (tcr == TC_NotApplicable) {
2702     tcr = TryAddressSpaceCast(Self, SrcExpr, DestType, /*CStyle*/ true, msg,
2703                               Kind);
2704     if (SrcExpr.isInvalid())
2705       return;
2706 
2707     if (tcr == TC_NotApplicable) {
2708       // ... or if that is not possible, a static_cast, ignoring const and
2709       // addr space, ...
2710       tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange, msg, Kind,
2711                           BasePath, ListInitialization);
2712       if (SrcExpr.isInvalid())
2713         return;
2714 
2715       if (tcr == TC_NotApplicable) {
2716         // ... and finally a reinterpret_cast, ignoring const and addr space.
2717         tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/ true,
2718                                  OpRange, msg, Kind);
2719         if (SrcExpr.isInvalid())
2720           return;
2721       }
2722     }
2723   }
2724 
2725   if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
2726       isValidCast(tcr))
2727     checkObjCConversion(CCK);
2728 
2729   if (tcr != TC_Success && msg != 0) {
2730     if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
2731       DeclAccessPair Found;
2732       FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
2733                                 DestType,
2734                                 /*Complain*/ true,
2735                                 Found);
2736       if (Fn) {
2737         // If DestType is a function type (not to be confused with the function
2738         // pointer type), it will be possible to resolve the function address,
2739         // but the type cast should be considered as failure.
2740         OverloadExpr *OE = OverloadExpr::find(SrcExpr.get()).Expression;
2741         Self.Diag(OpRange.getBegin(), diag::err_bad_cstyle_cast_overload)
2742           << OE->getName() << DestType << OpRange
2743           << OE->getQualifierLoc().getSourceRange();
2744         Self.NoteAllOverloadCandidates(SrcExpr.get());
2745       }
2746     } else {
2747       diagnoseBadCast(Self, msg, (FunctionalStyle ? CT_Functional : CT_CStyle),
2748                       OpRange, SrcExpr.get(), DestType, ListInitialization);
2749     }
2750   }
2751 
2752   if (isValidCast(tcr)) {
2753     if (Kind == CK_BitCast)
2754       checkCastAlign();
2755 
2756     if (!checkCastFunctionType(Self, SrcExpr, DestType))
2757       Self.Diag(OpRange.getBegin(), diag::warn_cast_function_type)
2758           << SrcExpr.get()->getType() << DestType << OpRange;
2759 
2760   } else {
2761     SrcExpr = ExprError();
2762   }
2763 }
2764 
2765 /// DiagnoseBadFunctionCast - Warn whenever a function call is cast to a
2766 ///  non-matching type. Such as enum function call to int, int call to
2767 /// pointer; etc. Cast to 'void' is an exception.
2768 static void DiagnoseBadFunctionCast(Sema &Self, const ExprResult &SrcExpr,
2769                                   QualType DestType) {
2770   if (Self.Diags.isIgnored(diag::warn_bad_function_cast,
2771                            SrcExpr.get()->getExprLoc()))
2772     return;
2773 
2774   if (!isa<CallExpr>(SrcExpr.get()))
2775     return;
2776 
2777   QualType SrcType = SrcExpr.get()->getType();
2778   if (DestType.getUnqualifiedType()->isVoidType())
2779     return;
2780   if ((SrcType->isAnyPointerType() || SrcType->isBlockPointerType())
2781       && (DestType->isAnyPointerType() || DestType->isBlockPointerType()))
2782     return;
2783   if (SrcType->isIntegerType() && DestType->isIntegerType() &&
2784       (SrcType->isBooleanType() == DestType->isBooleanType()) &&
2785       (SrcType->isEnumeralType() == DestType->isEnumeralType()))
2786     return;
2787   if (SrcType->isRealFloatingType() && DestType->isRealFloatingType())
2788     return;
2789   if (SrcType->isEnumeralType() && DestType->isEnumeralType())
2790     return;
2791   if (SrcType->isComplexType() && DestType->isComplexType())
2792     return;
2793   if (SrcType->isComplexIntegerType() && DestType->isComplexIntegerType())
2794     return;
2795   if (SrcType->isFixedPointType() && DestType->isFixedPointType())
2796     return;
2797 
2798   Self.Diag(SrcExpr.get()->getExprLoc(),
2799             diag::warn_bad_function_cast)
2800             << SrcType << DestType << SrcExpr.get()->getSourceRange();
2801 }
2802 
2803 /// Check the semantics of a C-style cast operation, in C.
2804 void CastOperation::CheckCStyleCast() {
2805   assert(!Self.getLangOpts().CPlusPlus);
2806 
2807   // C-style casts can resolve __unknown_any types.
2808   if (claimPlaceholder(BuiltinType::UnknownAny)) {
2809     SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2810                                        SrcExpr.get(), Kind,
2811                                        ValueKind, BasePath);
2812     return;
2813   }
2814 
2815   // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
2816   // type needs to be scalar.
2817   if (DestType->isVoidType()) {
2818     // We don't necessarily do lvalue-to-rvalue conversions on this.
2819     SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
2820     if (SrcExpr.isInvalid())
2821       return;
2822 
2823     // Cast to void allows any expr type.
2824     Kind = CK_ToVoid;
2825     return;
2826   }
2827 
2828   // If the type is dependent, we won't do any other semantic analysis now.
2829   if (Self.getASTContext().isDependenceAllowed() &&
2830       (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() ||
2831        SrcExpr.get()->isValueDependent())) {
2832     assert((DestType->containsErrors() || SrcExpr.get()->containsErrors() ||
2833             SrcExpr.get()->containsErrors()) &&
2834            "should only occur in error-recovery path.");
2835     assert(Kind == CK_Dependent);
2836     return;
2837   }
2838 
2839   // Overloads are allowed with C extensions, so we need to support them.
2840   if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
2841     DeclAccessPair DAP;
2842     if (FunctionDecl *FD = Self.ResolveAddressOfOverloadedFunction(
2843             SrcExpr.get(), DestType, /*Complain=*/true, DAP))
2844       SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr.get(), DAP, FD);
2845     else
2846       return;
2847     assert(SrcExpr.isUsable());
2848   }
2849   SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
2850   if (SrcExpr.isInvalid())
2851     return;
2852   QualType SrcType = SrcExpr.get()->getType();
2853 
2854   assert(!SrcType->isPlaceholderType());
2855 
2856   checkAddressSpaceCast(SrcType, DestType);
2857   if (SrcExpr.isInvalid())
2858     return;
2859 
2860   if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
2861                                diag::err_typecheck_cast_to_incomplete)) {
2862     SrcExpr = ExprError();
2863     return;
2864   }
2865 
2866   // Allow casting a sizeless built-in type to itself.
2867   if (DestType->isSizelessBuiltinType() &&
2868       Self.Context.hasSameUnqualifiedType(DestType, SrcType)) {
2869     Kind = CK_NoOp;
2870     return;
2871   }
2872 
2873   // Allow bitcasting between compatible SVE vector types.
2874   if ((SrcType->isVectorType() || DestType->isVectorType()) &&
2875       Self.isValidSveBitcast(SrcType, DestType)) {
2876     Kind = CK_BitCast;
2877     return;
2878   }
2879 
2880   if (!DestType->isScalarType() && !DestType->isVectorType() &&
2881       !DestType->isMatrixType()) {
2882     const RecordType *DestRecordTy = DestType->getAs<RecordType>();
2883 
2884     if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){
2885       // GCC struct/union extension: allow cast to self.
2886       Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_nonscalar)
2887         << DestType << SrcExpr.get()->getSourceRange();
2888       Kind = CK_NoOp;
2889       return;
2890     }
2891 
2892     // GCC's cast to union extension.
2893     if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) {
2894       RecordDecl *RD = DestRecordTy->getDecl();
2895       if (CastExpr::getTargetFieldForToUnionCast(RD, SrcType)) {
2896         Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_to_union)
2897           << SrcExpr.get()->getSourceRange();
2898         Kind = CK_ToUnion;
2899         return;
2900       } else {
2901         Self.Diag(OpRange.getBegin(), diag::err_typecheck_cast_to_union_no_type)
2902           << SrcType << SrcExpr.get()->getSourceRange();
2903         SrcExpr = ExprError();
2904         return;
2905       }
2906     }
2907 
2908     // OpenCL v2.0 s6.13.10 - Allow casts from '0' to event_t type.
2909     if (Self.getLangOpts().OpenCL && DestType->isEventT()) {
2910       Expr::EvalResult Result;
2911       if (SrcExpr.get()->EvaluateAsInt(Result, Self.Context)) {
2912         llvm::APSInt CastInt = Result.Val.getInt();
2913         if (0 == CastInt) {
2914           Kind = CK_ZeroToOCLOpaqueType;
2915           return;
2916         }
2917         Self.Diag(OpRange.getBegin(),
2918                   diag::err_opencl_cast_non_zero_to_event_t)
2919                   << CastInt.toString(10) << SrcExpr.get()->getSourceRange();
2920         SrcExpr = ExprError();
2921         return;
2922       }
2923     }
2924 
2925     // Reject any other conversions to non-scalar types.
2926     Self.Diag(OpRange.getBegin(), diag::err_typecheck_cond_expect_scalar)
2927       << DestType << SrcExpr.get()->getSourceRange();
2928     SrcExpr = ExprError();
2929     return;
2930   }
2931 
2932   // The type we're casting to is known to be a scalar, a vector, or a matrix.
2933 
2934   // Require the operand to be a scalar, a vector, or a matrix.
2935   if (!SrcType->isScalarType() && !SrcType->isVectorType() &&
2936       !SrcType->isMatrixType()) {
2937     Self.Diag(SrcExpr.get()->getExprLoc(),
2938               diag::err_typecheck_expect_scalar_operand)
2939       << SrcType << SrcExpr.get()->getSourceRange();
2940     SrcExpr = ExprError();
2941     return;
2942   }
2943 
2944   if (DestType->isExtVectorType()) {
2945     SrcExpr = Self.CheckExtVectorCast(OpRange, DestType, SrcExpr.get(), Kind);
2946     return;
2947   }
2948 
2949   if (DestType->getAs<MatrixType>() || SrcType->getAs<MatrixType>()) {
2950     if (Self.CheckMatrixCast(OpRange, DestType, SrcType, Kind))
2951       SrcExpr = ExprError();
2952     return;
2953   }
2954 
2955   if (const VectorType *DestVecTy = DestType->getAs<VectorType>()) {
2956     if (DestVecTy->getVectorKind() == VectorType::AltiVecVector &&
2957           (SrcType->isIntegerType() || SrcType->isFloatingType())) {
2958       Kind = CK_VectorSplat;
2959       SrcExpr = Self.prepareVectorSplat(DestType, SrcExpr.get());
2960     } else if (Self.CheckVectorCast(OpRange, DestType, SrcType, Kind)) {
2961       SrcExpr = ExprError();
2962     }
2963     return;
2964   }
2965 
2966   if (SrcType->isVectorType()) {
2967     if (Self.CheckVectorCast(OpRange, SrcType, DestType, Kind))
2968       SrcExpr = ExprError();
2969     return;
2970   }
2971 
2972   // The source and target types are both scalars, i.e.
2973   //   - arithmetic types (fundamental, enum, and complex)
2974   //   - all kinds of pointers
2975   // Note that member pointers were filtered out with C++, above.
2976 
2977   if (isa<ObjCSelectorExpr>(SrcExpr.get())) {
2978     Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_selector_expr);
2979     SrcExpr = ExprError();
2980     return;
2981   }
2982 
2983   // Can't cast to or from bfloat
2984   if (DestType->isBFloat16Type() && !SrcType->isBFloat16Type()) {
2985     Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_to_bfloat16)
2986         << SrcExpr.get()->getSourceRange();
2987     SrcExpr = ExprError();
2988     return;
2989   }
2990   if (SrcType->isBFloat16Type() && !DestType->isBFloat16Type()) {
2991     Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_from_bfloat16)
2992         << SrcExpr.get()->getSourceRange();
2993     SrcExpr = ExprError();
2994     return;
2995   }
2996 
2997   // If either type is a pointer, the other type has to be either an
2998   // integer or a pointer.
2999   if (!DestType->isArithmeticType()) {
3000     if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) {
3001       Self.Diag(SrcExpr.get()->getExprLoc(),
3002                 diag::err_cast_pointer_from_non_pointer_int)
3003         << SrcType << SrcExpr.get()->getSourceRange();
3004       SrcExpr = ExprError();
3005       return;
3006     }
3007     checkIntToPointerCast(/* CStyle */ true, OpRange, SrcExpr.get(), DestType,
3008                           Self);
3009   } else if (!SrcType->isArithmeticType()) {
3010     if (!DestType->isIntegralType(Self.Context) &&
3011         DestType->isArithmeticType()) {
3012       Self.Diag(SrcExpr.get()->getBeginLoc(),
3013                 diag::err_cast_pointer_to_non_pointer_int)
3014           << DestType << SrcExpr.get()->getSourceRange();
3015       SrcExpr = ExprError();
3016       return;
3017     }
3018 
3019     if ((Self.Context.getTypeSize(SrcType) >
3020          Self.Context.getTypeSize(DestType)) &&
3021         !DestType->isBooleanType()) {
3022       // C 6.3.2.3p6: Any pointer type may be converted to an integer type.
3023       // Except as previously specified, the result is implementation-defined.
3024       // If the result cannot be represented in the integer type, the behavior
3025       // is undefined. The result need not be in the range of values of any
3026       // integer type.
3027       unsigned Diag;
3028       if (SrcType->isVoidPointerType())
3029         Diag = DestType->isEnumeralType() ? diag::warn_void_pointer_to_enum_cast
3030                                           : diag::warn_void_pointer_to_int_cast;
3031       else if (DestType->isEnumeralType())
3032         Diag = diag::warn_pointer_to_enum_cast;
3033       else
3034         Diag = diag::warn_pointer_to_int_cast;
3035       Self.Diag(OpRange.getBegin(), Diag) << SrcType << DestType << OpRange;
3036     }
3037   }
3038 
3039   if (Self.getLangOpts().OpenCL && !Self.getOpenCLOptions().isAvailableOption(
3040                                        "cl_khr_fp16", Self.getLangOpts())) {
3041     if (DestType->isHalfType()) {
3042       Self.Diag(SrcExpr.get()->getBeginLoc(), diag::err_opencl_cast_to_half)
3043           << DestType << SrcExpr.get()->getSourceRange();
3044       SrcExpr = ExprError();
3045       return;
3046     }
3047   }
3048 
3049   // ARC imposes extra restrictions on casts.
3050   if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers()) {
3051     checkObjCConversion(Sema::CCK_CStyleCast);
3052     if (SrcExpr.isInvalid())
3053       return;
3054 
3055     const PointerType *CastPtr = DestType->getAs<PointerType>();
3056     if (Self.getLangOpts().ObjCAutoRefCount && CastPtr) {
3057       if (const PointerType *ExprPtr = SrcType->getAs<PointerType>()) {
3058         Qualifiers CastQuals = CastPtr->getPointeeType().getQualifiers();
3059         Qualifiers ExprQuals = ExprPtr->getPointeeType().getQualifiers();
3060         if (CastPtr->getPointeeType()->isObjCLifetimeType() &&
3061             ExprPtr->getPointeeType()->isObjCLifetimeType() &&
3062             !CastQuals.compatiblyIncludesObjCLifetime(ExprQuals)) {
3063           Self.Diag(SrcExpr.get()->getBeginLoc(),
3064                     diag::err_typecheck_incompatible_ownership)
3065               << SrcType << DestType << Sema::AA_Casting
3066               << SrcExpr.get()->getSourceRange();
3067           return;
3068         }
3069       }
3070     }
3071     else if (!Self.CheckObjCARCUnavailableWeakConversion(DestType, SrcType)) {
3072       Self.Diag(SrcExpr.get()->getBeginLoc(),
3073                 diag::err_arc_convesion_of_weak_unavailable)
3074           << 1 << SrcType << DestType << SrcExpr.get()->getSourceRange();
3075       SrcExpr = ExprError();
3076       return;
3077     }
3078   }
3079 
3080   if (!checkCastFunctionType(Self, SrcExpr, DestType))
3081     Self.Diag(OpRange.getBegin(), diag::warn_cast_function_type)
3082         << SrcType << DestType << OpRange;
3083 
3084   DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
3085   DiagnoseCallingConvCast(Self, SrcExpr, DestType, OpRange);
3086   DiagnoseBadFunctionCast(Self, SrcExpr, DestType);
3087   Kind = Self.PrepareScalarCast(SrcExpr, DestType);
3088   if (SrcExpr.isInvalid())
3089     return;
3090 
3091   if (Kind == CK_BitCast)
3092     checkCastAlign();
3093 }
3094 
3095 void CastOperation::CheckBuiltinBitCast() {
3096   QualType SrcType = SrcExpr.get()->getType();
3097 
3098   if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
3099                                diag::err_typecheck_cast_to_incomplete) ||
3100       Self.RequireCompleteType(OpRange.getBegin(), SrcType,
3101                                diag::err_incomplete_type)) {
3102     SrcExpr = ExprError();
3103     return;
3104   }
3105 
3106   if (SrcExpr.get()->isRValue())
3107     SrcExpr = Self.CreateMaterializeTemporaryExpr(SrcType, SrcExpr.get(),
3108                                                   /*IsLValueReference=*/false);
3109 
3110   CharUnits DestSize = Self.Context.getTypeSizeInChars(DestType);
3111   CharUnits SourceSize = Self.Context.getTypeSizeInChars(SrcType);
3112   if (DestSize != SourceSize) {
3113     Self.Diag(OpRange.getBegin(), diag::err_bit_cast_type_size_mismatch)
3114         << (int)SourceSize.getQuantity() << (int)DestSize.getQuantity();
3115     SrcExpr = ExprError();
3116     return;
3117   }
3118 
3119   if (!DestType.isTriviallyCopyableType(Self.Context)) {
3120     Self.Diag(OpRange.getBegin(), diag::err_bit_cast_non_trivially_copyable)
3121         << 1;
3122     SrcExpr = ExprError();
3123     return;
3124   }
3125 
3126   if (!SrcType.isTriviallyCopyableType(Self.Context)) {
3127     Self.Diag(OpRange.getBegin(), diag::err_bit_cast_non_trivially_copyable)
3128         << 0;
3129     SrcExpr = ExprError();
3130     return;
3131   }
3132 
3133   Kind = CK_LValueToRValueBitCast;
3134 }
3135 
3136 /// DiagnoseCastQual - Warn whenever casts discards a qualifiers, be it either
3137 /// const, volatile or both.
3138 static void DiagnoseCastQual(Sema &Self, const ExprResult &SrcExpr,
3139                              QualType DestType) {
3140   if (SrcExpr.isInvalid())
3141     return;
3142 
3143   QualType SrcType = SrcExpr.get()->getType();
3144   if (!((SrcType->isAnyPointerType() && DestType->isAnyPointerType()) ||
3145         DestType->isLValueReferenceType()))
3146     return;
3147 
3148   QualType TheOffendingSrcType, TheOffendingDestType;
3149   Qualifiers CastAwayQualifiers;
3150   if (CastsAwayConstness(Self, SrcType, DestType, true, false,
3151                          &TheOffendingSrcType, &TheOffendingDestType,
3152                          &CastAwayQualifiers) !=
3153       CastAwayConstnessKind::CACK_Similar)
3154     return;
3155 
3156   // FIXME: 'restrict' is not properly handled here.
3157   int qualifiers = -1;
3158   if (CastAwayQualifiers.hasConst() && CastAwayQualifiers.hasVolatile()) {
3159     qualifiers = 0;
3160   } else if (CastAwayQualifiers.hasConst()) {
3161     qualifiers = 1;
3162   } else if (CastAwayQualifiers.hasVolatile()) {
3163     qualifiers = 2;
3164   }
3165   // This is a variant of int **x; const int **y = (const int **)x;
3166   if (qualifiers == -1)
3167     Self.Diag(SrcExpr.get()->getBeginLoc(), diag::warn_cast_qual2)
3168         << SrcType << DestType;
3169   else
3170     Self.Diag(SrcExpr.get()->getBeginLoc(), diag::warn_cast_qual)
3171         << TheOffendingSrcType << TheOffendingDestType << qualifiers;
3172 }
3173 
3174 ExprResult Sema::BuildCStyleCastExpr(SourceLocation LPLoc,
3175                                      TypeSourceInfo *CastTypeInfo,
3176                                      SourceLocation RPLoc,
3177                                      Expr *CastExpr) {
3178   CastOperation Op(*this, CastTypeInfo->getType(), CastExpr);
3179   Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
3180   Op.OpRange = SourceRange(LPLoc, CastExpr->getEndLoc());
3181 
3182   if (getLangOpts().CPlusPlus) {
3183     Op.CheckCXXCStyleCast(/*FunctionalCast=*/ false,
3184                           isa<InitListExpr>(CastExpr));
3185   } else {
3186     Op.CheckCStyleCast();
3187   }
3188 
3189   if (Op.SrcExpr.isInvalid())
3190     return ExprError();
3191 
3192   // -Wcast-qual
3193   DiagnoseCastQual(Op.Self, Op.SrcExpr, Op.DestType);
3194 
3195   return Op.complete(CStyleCastExpr::Create(
3196       Context, Op.ResultType, Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
3197       &Op.BasePath, CurFPFeatureOverrides(), CastTypeInfo, LPLoc, RPLoc));
3198 }
3199 
3200 ExprResult Sema::BuildCXXFunctionalCastExpr(TypeSourceInfo *CastTypeInfo,
3201                                             QualType Type,
3202                                             SourceLocation LPLoc,
3203                                             Expr *CastExpr,
3204                                             SourceLocation RPLoc) {
3205   assert(LPLoc.isValid() && "List-initialization shouldn't get here.");
3206   CastOperation Op(*this, Type, CastExpr);
3207   Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
3208   Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getEndLoc());
3209 
3210   Op.CheckCXXCStyleCast(/*FunctionalCast=*/true, /*ListInit=*/false);
3211   if (Op.SrcExpr.isInvalid())
3212     return ExprError();
3213 
3214   auto *SubExpr = Op.SrcExpr.get();
3215   if (auto *BindExpr = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
3216     SubExpr = BindExpr->getSubExpr();
3217   if (auto *ConstructExpr = dyn_cast<CXXConstructExpr>(SubExpr))
3218     ConstructExpr->setParenOrBraceRange(SourceRange(LPLoc, RPLoc));
3219 
3220   return Op.complete(CXXFunctionalCastExpr::Create(
3221       Context, Op.ResultType, Op.ValueKind, CastTypeInfo, Op.Kind,
3222       Op.SrcExpr.get(), &Op.BasePath, CurFPFeatureOverrides(), LPLoc, RPLoc));
3223 }
3224