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_PRValue)
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()->isPRValue())
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_PRValue)
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_PRValue && !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_PRValue && !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()->isPRValue()) {
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) ==
2173               VK_PRValue // Convert Fun to Ptr
2174           ) &&
2175       Result.isUsable())
2176     return true;
2177 
2178   // No guarantees that ResolveAndFixSingleFunctionTemplateSpecialization
2179   // preserves Result.
2180   Result = E;
2181   if (!Self.resolveAndFixAddressOfSingleOverloadCandidate(
2182           Result, /*DoFunctionPointerConversion=*/true))
2183     return false;
2184   return Result.isUsable();
2185 }
2186 
2187 static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr,
2188                                         QualType DestType, bool CStyle,
2189                                         SourceRange OpRange,
2190                                         unsigned &msg,
2191                                         CastKind &Kind) {
2192   bool IsLValueCast = false;
2193 
2194   DestType = Self.Context.getCanonicalType(DestType);
2195   QualType SrcType = SrcExpr.get()->getType();
2196 
2197   // Is the source an overloaded name? (i.e. &foo)
2198   // If so, reinterpret_cast generally can not help us here (13.4, p1, bullet 5)
2199   if (SrcType == Self.Context.OverloadTy) {
2200     ExprResult FixedExpr = SrcExpr;
2201     if (!fixOverloadedReinterpretCastExpr(Self, DestType, FixedExpr))
2202       return TC_NotApplicable;
2203 
2204     assert(FixedExpr.isUsable() && "Invalid result fixing overloaded expr");
2205     SrcExpr = FixedExpr;
2206     SrcType = SrcExpr.get()->getType();
2207   }
2208 
2209   if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) {
2210     if (!SrcExpr.get()->isGLValue()) {
2211       // Cannot cast non-glvalue to (lvalue or rvalue) reference type. See the
2212       // similar comment in const_cast.
2213       msg = diag::err_bad_cxx_cast_rvalue;
2214       return TC_NotApplicable;
2215     }
2216 
2217     if (!CStyle) {
2218       Self.CheckCompatibleReinterpretCast(SrcType, DestType,
2219                                           /*IsDereference=*/false, OpRange);
2220     }
2221 
2222     // C++ 5.2.10p10: [...] a reference cast reinterpret_cast<T&>(x) has the
2223     //   same effect as the conversion *reinterpret_cast<T*>(&x) with the
2224     //   built-in & and * operators.
2225 
2226     const char *inappropriate = nullptr;
2227     switch (SrcExpr.get()->getObjectKind()) {
2228     case OK_Ordinary:
2229       break;
2230     case OK_BitField:
2231       msg = diag::err_bad_cxx_cast_bitfield;
2232       return TC_NotApplicable;
2233       // FIXME: Use a specific diagnostic for the rest of these cases.
2234     case OK_VectorComponent: inappropriate = "vector element";      break;
2235     case OK_MatrixComponent:
2236       inappropriate = "matrix element";
2237       break;
2238     case OK_ObjCProperty:    inappropriate = "property expression"; break;
2239     case OK_ObjCSubscript:   inappropriate = "container subscripting expression";
2240                              break;
2241     }
2242     if (inappropriate) {
2243       Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_reference)
2244           << inappropriate << DestType
2245           << OpRange << SrcExpr.get()->getSourceRange();
2246       msg = 0; SrcExpr = ExprError();
2247       return TC_NotApplicable;
2248     }
2249 
2250     // This code does this transformation for the checked types.
2251     DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
2252     SrcType = Self.Context.getPointerType(SrcType);
2253 
2254     IsLValueCast = true;
2255   }
2256 
2257   // Canonicalize source for comparison.
2258   SrcType = Self.Context.getCanonicalType(SrcType);
2259 
2260   const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(),
2261                           *SrcMemPtr = SrcType->getAs<MemberPointerType>();
2262   if (DestMemPtr && SrcMemPtr) {
2263     // C++ 5.2.10p9: An rvalue of type "pointer to member of X of type T1"
2264     //   can be explicitly converted to an rvalue of type "pointer to member
2265     //   of Y of type T2" if T1 and T2 are both function types or both object
2266     //   types.
2267     if (DestMemPtr->isMemberFunctionPointer() !=
2268         SrcMemPtr->isMemberFunctionPointer())
2269       return TC_NotApplicable;
2270 
2271     if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
2272       // We need to determine the inheritance model that the class will use if
2273       // haven't yet.
2274       (void)Self.isCompleteType(OpRange.getBegin(), SrcType);
2275       (void)Self.isCompleteType(OpRange.getBegin(), DestType);
2276     }
2277 
2278     // Don't allow casting between member pointers of different sizes.
2279     if (Self.Context.getTypeSize(DestMemPtr) !=
2280         Self.Context.getTypeSize(SrcMemPtr)) {
2281       msg = diag::err_bad_cxx_cast_member_pointer_size;
2282       return TC_Failed;
2283     }
2284 
2285     // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away
2286     //   constness.
2287     // A reinterpret_cast followed by a const_cast can, though, so in C-style,
2288     // we accept it.
2289     if (auto CACK =
2290             CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
2291                                /*CheckObjCLifetime=*/CStyle))
2292       return getCastAwayConstnessCastKind(CACK, msg);
2293 
2294     // A valid member pointer cast.
2295     assert(!IsLValueCast);
2296     Kind = CK_ReinterpretMemberPointer;
2297     return TC_Success;
2298   }
2299 
2300   // See below for the enumeral issue.
2301   if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) {
2302     // C++0x 5.2.10p4: A pointer can be explicitly converted to any integral
2303     //   type large enough to hold it. A value of std::nullptr_t can be
2304     //   converted to an integral type; the conversion has the same meaning
2305     //   and validity as a conversion of (void*)0 to the integral type.
2306     if (Self.Context.getTypeSize(SrcType) >
2307         Self.Context.getTypeSize(DestType)) {
2308       msg = diag::err_bad_reinterpret_cast_small_int;
2309       return TC_Failed;
2310     }
2311     Kind = CK_PointerToIntegral;
2312     return TC_Success;
2313   }
2314 
2315   // Allow reinterpret_casts between vectors of the same size and
2316   // between vectors and integers of the same size.
2317   bool destIsVector = DestType->isVectorType();
2318   bool srcIsVector = SrcType->isVectorType();
2319   if (srcIsVector || destIsVector) {
2320     // Allow bitcasting between SVE VLATs and VLSTs, and vice-versa.
2321     if (Self.isValidSveBitcast(SrcType, DestType)) {
2322       Kind = CK_BitCast;
2323       return TC_Success;
2324     }
2325 
2326     // The non-vector type, if any, must have integral type.  This is
2327     // the same rule that C vector casts use; note, however, that enum
2328     // types are not integral in C++.
2329     if ((!destIsVector && !DestType->isIntegralType(Self.Context)) ||
2330         (!srcIsVector && !SrcType->isIntegralType(Self.Context)))
2331       return TC_NotApplicable;
2332 
2333     // The size we want to consider is eltCount * eltSize.
2334     // That's exactly what the lax-conversion rules will check.
2335     if (Self.areLaxCompatibleVectorTypes(SrcType, DestType)) {
2336       Kind = CK_BitCast;
2337       return TC_Success;
2338     }
2339 
2340     if (Self.LangOpts.OpenCL && !CStyle) {
2341       if (DestType->isExtVectorType() || SrcType->isExtVectorType()) {
2342         // FIXME: Allow for reinterpret cast between 3 and 4 element vectors
2343         if (Self.areVectorTypesSameSize(SrcType, DestType)) {
2344           Kind = CK_BitCast;
2345           return TC_Success;
2346         }
2347       }
2348     }
2349 
2350     // Otherwise, pick a reasonable diagnostic.
2351     if (!destIsVector)
2352       msg = diag::err_bad_cxx_cast_vector_to_scalar_different_size;
2353     else if (!srcIsVector)
2354       msg = diag::err_bad_cxx_cast_scalar_to_vector_different_size;
2355     else
2356       msg = diag::err_bad_cxx_cast_vector_to_vector_different_size;
2357 
2358     return TC_Failed;
2359   }
2360 
2361   if (SrcType == DestType) {
2362     // C++ 5.2.10p2 has a note that mentions that, subject to all other
2363     // restrictions, a cast to the same type is allowed so long as it does not
2364     // cast away constness. In C++98, the intent was not entirely clear here,
2365     // since all other paragraphs explicitly forbid casts to the same type.
2366     // C++11 clarifies this case with p2.
2367     //
2368     // The only allowed types are: integral, enumeration, pointer, or
2369     // pointer-to-member types.  We also won't restrict Obj-C pointers either.
2370     Kind = CK_NoOp;
2371     TryCastResult Result = TC_NotApplicable;
2372     if (SrcType->isIntegralOrEnumerationType() ||
2373         SrcType->isAnyPointerType() ||
2374         SrcType->isMemberPointerType() ||
2375         SrcType->isBlockPointerType()) {
2376       Result = TC_Success;
2377     }
2378     return Result;
2379   }
2380 
2381   bool destIsPtr = DestType->isAnyPointerType() ||
2382                    DestType->isBlockPointerType();
2383   bool srcIsPtr = SrcType->isAnyPointerType() ||
2384                   SrcType->isBlockPointerType();
2385   if (!destIsPtr && !srcIsPtr) {
2386     // Except for std::nullptr_t->integer and lvalue->reference, which are
2387     // handled above, at least one of the two arguments must be a pointer.
2388     return TC_NotApplicable;
2389   }
2390 
2391   if (DestType->isIntegralType(Self.Context)) {
2392     assert(srcIsPtr && "One type must be a pointer");
2393     // C++ 5.2.10p4: A pointer can be explicitly converted to any integral
2394     //   type large enough to hold it; except in Microsoft mode, where the
2395     //   integral type size doesn't matter (except we don't allow bool).
2396     if ((Self.Context.getTypeSize(SrcType) >
2397          Self.Context.getTypeSize(DestType))) {
2398       bool MicrosoftException =
2399           Self.getLangOpts().MicrosoftExt && !DestType->isBooleanType();
2400       if (MicrosoftException) {
2401         unsigned Diag = SrcType->isVoidPointerType()
2402                             ? diag::warn_void_pointer_to_int_cast
2403                             : diag::warn_pointer_to_int_cast;
2404         Self.Diag(OpRange.getBegin(), Diag) << SrcType << DestType << OpRange;
2405       } else {
2406         msg = diag::err_bad_reinterpret_cast_small_int;
2407         return TC_Failed;
2408       }
2409     }
2410     Kind = CK_PointerToIntegral;
2411     return TC_Success;
2412   }
2413 
2414   if (SrcType->isIntegralOrEnumerationType()) {
2415     assert(destIsPtr && "One type must be a pointer");
2416     checkIntToPointerCast(CStyle, OpRange, SrcExpr.get(), DestType, Self);
2417     // C++ 5.2.10p5: A value of integral or enumeration type can be explicitly
2418     //   converted to a pointer.
2419     // C++ 5.2.10p9: [Note: ...a null pointer constant of integral type is not
2420     //   necessarily converted to a null pointer value.]
2421     Kind = CK_IntegralToPointer;
2422     return TC_Success;
2423   }
2424 
2425   if (!destIsPtr || !srcIsPtr) {
2426     // With the valid non-pointer conversions out of the way, we can be even
2427     // more stringent.
2428     return TC_NotApplicable;
2429   }
2430 
2431   // Cannot convert between block pointers and Objective-C object pointers.
2432   if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) ||
2433       (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType()))
2434     return TC_NotApplicable;
2435 
2436   // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away constness.
2437   // The C-style cast operator can.
2438   TryCastResult SuccessResult = TC_Success;
2439   if (auto CACK =
2440           CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
2441                              /*CheckObjCLifetime=*/CStyle))
2442     SuccessResult = getCastAwayConstnessCastKind(CACK, msg);
2443 
2444   if (IsAddressSpaceConversion(SrcType, DestType)) {
2445     Kind = CK_AddressSpaceConversion;
2446     assert(SrcType->isPointerType() && DestType->isPointerType());
2447     if (!CStyle &&
2448         !DestType->getPointeeType().getQualifiers().isAddressSpaceSupersetOf(
2449             SrcType->getPointeeType().getQualifiers())) {
2450       SuccessResult = TC_Failed;
2451     }
2452   } else if (IsLValueCast) {
2453     Kind = CK_LValueBitCast;
2454   } else if (DestType->isObjCObjectPointerType()) {
2455     Kind = Self.PrepareCastToObjCObjectPointer(SrcExpr);
2456   } else if (DestType->isBlockPointerType()) {
2457     if (!SrcType->isBlockPointerType()) {
2458       Kind = CK_AnyPointerToBlockPointerCast;
2459     } else {
2460       Kind = CK_BitCast;
2461     }
2462   } else {
2463     Kind = CK_BitCast;
2464   }
2465 
2466   // Any pointer can be cast to an Objective-C pointer type with a C-style
2467   // cast.
2468   if (CStyle && DestType->isObjCObjectPointerType()) {
2469     return SuccessResult;
2470   }
2471   if (CStyle)
2472     DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
2473 
2474   DiagnoseCallingConvCast(Self, SrcExpr, DestType, OpRange);
2475 
2476   // Not casting away constness, so the only remaining check is for compatible
2477   // pointer categories.
2478 
2479   if (SrcType->isFunctionPointerType()) {
2480     if (DestType->isFunctionPointerType()) {
2481       // C++ 5.2.10p6: A pointer to a function can be explicitly converted to
2482       // a pointer to a function of a different type.
2483       return SuccessResult;
2484     }
2485 
2486     // C++0x 5.2.10p8: Converting a pointer to a function into a pointer to
2487     //   an object type or vice versa is conditionally-supported.
2488     // Compilers support it in C++03 too, though, because it's necessary for
2489     // casting the return value of dlsym() and GetProcAddress().
2490     // FIXME: Conditionally-supported behavior should be configurable in the
2491     // TargetInfo or similar.
2492     Self.Diag(OpRange.getBegin(),
2493               Self.getLangOpts().CPlusPlus11 ?
2494                 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2495       << OpRange;
2496     return SuccessResult;
2497   }
2498 
2499   if (DestType->isFunctionPointerType()) {
2500     // See above.
2501     Self.Diag(OpRange.getBegin(),
2502               Self.getLangOpts().CPlusPlus11 ?
2503                 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2504       << OpRange;
2505     return SuccessResult;
2506   }
2507 
2508   // Diagnose address space conversion in nested pointers.
2509   QualType DestPtee = DestType->getPointeeType().isNull()
2510                           ? DestType->getPointeeType()
2511                           : DestType->getPointeeType()->getPointeeType();
2512   QualType SrcPtee = SrcType->getPointeeType().isNull()
2513                          ? SrcType->getPointeeType()
2514                          : SrcType->getPointeeType()->getPointeeType();
2515   while (!DestPtee.isNull() && !SrcPtee.isNull()) {
2516     if (DestPtee.getAddressSpace() != SrcPtee.getAddressSpace()) {
2517       Self.Diag(OpRange.getBegin(),
2518                 diag::warn_bad_cxx_cast_nested_pointer_addr_space)
2519           << CStyle << SrcType << DestType << SrcExpr.get()->getSourceRange();
2520       break;
2521     }
2522     DestPtee = DestPtee->getPointeeType();
2523     SrcPtee = SrcPtee->getPointeeType();
2524   }
2525 
2526   // C++ 5.2.10p7: A pointer to an object can be explicitly converted to
2527   //   a pointer to an object of different type.
2528   // Void pointers are not specified, but supported by every compiler out there.
2529   // So we finish by allowing everything that remains - it's got to be two
2530   // object pointers.
2531   return SuccessResult;
2532 }
2533 
2534 static TryCastResult TryAddressSpaceCast(Sema &Self, ExprResult &SrcExpr,
2535                                          QualType DestType, bool CStyle,
2536                                          unsigned &msg, CastKind &Kind) {
2537   if (!Self.getLangOpts().OpenCL)
2538     // FIXME: As compiler doesn't have any information about overlapping addr
2539     // spaces at the moment we have to be permissive here.
2540     return TC_NotApplicable;
2541   // Even though the logic below is general enough and can be applied to
2542   // non-OpenCL mode too, we fast-path above because no other languages
2543   // define overlapping address spaces currently.
2544   auto SrcType = SrcExpr.get()->getType();
2545   // FIXME: Should this be generalized to references? The reference parameter
2546   // however becomes a reference pointee type here and therefore rejected.
2547   // Perhaps this is the right behavior though according to C++.
2548   auto SrcPtrType = SrcType->getAs<PointerType>();
2549   if (!SrcPtrType)
2550     return TC_NotApplicable;
2551   auto DestPtrType = DestType->getAs<PointerType>();
2552   if (!DestPtrType)
2553     return TC_NotApplicable;
2554   auto SrcPointeeType = SrcPtrType->getPointeeType();
2555   auto DestPointeeType = DestPtrType->getPointeeType();
2556   if (!DestPointeeType.isAddressSpaceOverlapping(SrcPointeeType)) {
2557     msg = diag::err_bad_cxx_cast_addr_space_mismatch;
2558     return TC_Failed;
2559   }
2560   auto SrcPointeeTypeWithoutAS =
2561       Self.Context.removeAddrSpaceQualType(SrcPointeeType.getCanonicalType());
2562   auto DestPointeeTypeWithoutAS =
2563       Self.Context.removeAddrSpaceQualType(DestPointeeType.getCanonicalType());
2564   if (Self.Context.hasSameType(SrcPointeeTypeWithoutAS,
2565                                DestPointeeTypeWithoutAS)) {
2566     Kind = SrcPointeeType.getAddressSpace() == DestPointeeType.getAddressSpace()
2567                ? CK_NoOp
2568                : CK_AddressSpaceConversion;
2569     return TC_Success;
2570   } else {
2571     return TC_NotApplicable;
2572   }
2573 }
2574 
2575 void CastOperation::checkAddressSpaceCast(QualType SrcType, QualType DestType) {
2576   // In OpenCL only conversions between pointers to objects in overlapping
2577   // addr spaces are allowed. v2.0 s6.5.5 - Generic addr space overlaps
2578   // with any named one, except for constant.
2579 
2580   // Converting the top level pointee addrspace is permitted for compatible
2581   // addrspaces (such as 'generic int *' to 'local int *' or vice versa), but
2582   // if any of the nested pointee addrspaces differ, we emit a warning
2583   // regardless of addrspace compatibility. This makes
2584   //   local int ** p;
2585   //   return (generic int **) p;
2586   // warn even though local -> generic is permitted.
2587   if (Self.getLangOpts().OpenCL) {
2588     const Type *DestPtr, *SrcPtr;
2589     bool Nested = false;
2590     unsigned DiagID = diag::err_typecheck_incompatible_address_space;
2591     DestPtr = Self.getASTContext().getCanonicalType(DestType.getTypePtr()),
2592     SrcPtr  = Self.getASTContext().getCanonicalType(SrcType.getTypePtr());
2593 
2594     while (isa<PointerType>(DestPtr) && isa<PointerType>(SrcPtr)) {
2595       const PointerType *DestPPtr = cast<PointerType>(DestPtr);
2596       const PointerType *SrcPPtr = cast<PointerType>(SrcPtr);
2597       QualType DestPPointee = DestPPtr->getPointeeType();
2598       QualType SrcPPointee = SrcPPtr->getPointeeType();
2599       if (Nested
2600               ? DestPPointee.getAddressSpace() != SrcPPointee.getAddressSpace()
2601               : !DestPPointee.isAddressSpaceOverlapping(SrcPPointee)) {
2602         Self.Diag(OpRange.getBegin(), DiagID)
2603             << SrcType << DestType << Sema::AA_Casting
2604             << SrcExpr.get()->getSourceRange();
2605         if (!Nested)
2606           SrcExpr = ExprError();
2607         return;
2608       }
2609 
2610       DestPtr = DestPPtr->getPointeeType().getTypePtr();
2611       SrcPtr = SrcPPtr->getPointeeType().getTypePtr();
2612       Nested = true;
2613       DiagID = diag::ext_nested_pointer_qualifier_mismatch;
2614     }
2615   }
2616 }
2617 
2618 void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle,
2619                                        bool ListInitialization) {
2620   assert(Self.getLangOpts().CPlusPlus);
2621 
2622   // Handle placeholders.
2623   if (isPlaceholder()) {
2624     // C-style casts can resolve __unknown_any types.
2625     if (claimPlaceholder(BuiltinType::UnknownAny)) {
2626       SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2627                                          SrcExpr.get(), Kind,
2628                                          ValueKind, BasePath);
2629       return;
2630     }
2631 
2632     checkNonOverloadPlaceholders();
2633     if (SrcExpr.isInvalid())
2634       return;
2635   }
2636 
2637   // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
2638   // This test is outside everything else because it's the only case where
2639   // a non-lvalue-reference target type does not lead to decay.
2640   if (DestType->isVoidType()) {
2641     Kind = CK_ToVoid;
2642 
2643     if (claimPlaceholder(BuiltinType::Overload)) {
2644       Self.ResolveAndFixSingleFunctionTemplateSpecialization(
2645                   SrcExpr, /* Decay Function to ptr */ false,
2646                   /* Complain */ true, DestRange, DestType,
2647                   diag::err_bad_cstyle_cast_overload);
2648       if (SrcExpr.isInvalid())
2649         return;
2650     }
2651 
2652     SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
2653     return;
2654   }
2655 
2656   // If the type is dependent, we won't do any other semantic analysis now.
2657   if (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() ||
2658       SrcExpr.get()->isValueDependent()) {
2659     assert(Kind == CK_Dependent);
2660     return;
2661   }
2662 
2663   if (ValueKind == VK_PRValue && !DestType->isRecordType() &&
2664       !isPlaceholder(BuiltinType::Overload)) {
2665     SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
2666     if (SrcExpr.isInvalid())
2667       return;
2668   }
2669 
2670   // AltiVec vector initialization with a single literal.
2671   if (const VectorType *vecTy = DestType->getAs<VectorType>())
2672     if (vecTy->getVectorKind() == VectorType::AltiVecVector
2673         && (SrcExpr.get()->getType()->isIntegerType()
2674             || SrcExpr.get()->getType()->isFloatingType())) {
2675       Kind = CK_VectorSplat;
2676       SrcExpr = Self.prepareVectorSplat(DestType, SrcExpr.get());
2677       return;
2678     }
2679 
2680   // C++ [expr.cast]p5: The conversions performed by
2681   //   - a const_cast,
2682   //   - a static_cast,
2683   //   - a static_cast followed by a const_cast,
2684   //   - a reinterpret_cast, or
2685   //   - a reinterpret_cast followed by a const_cast,
2686   //   can be performed using the cast notation of explicit type conversion.
2687   //   [...] If a conversion can be interpreted in more than one of the ways
2688   //   listed above, the interpretation that appears first in the list is used,
2689   //   even if a cast resulting from that interpretation is ill-formed.
2690   // In plain language, this means trying a const_cast ...
2691   // Note that for address space we check compatibility after const_cast.
2692   unsigned msg = diag::err_bad_cxx_cast_generic;
2693   TryCastResult tcr = TryConstCast(Self, SrcExpr, DestType,
2694                                    /*CStyle*/ true, msg);
2695   if (SrcExpr.isInvalid())
2696     return;
2697   if (isValidCast(tcr))
2698     Kind = CK_NoOp;
2699 
2700   Sema::CheckedConversionKind CCK =
2701       FunctionalStyle ? Sema::CCK_FunctionalCast : Sema::CCK_CStyleCast;
2702   if (tcr == TC_NotApplicable) {
2703     tcr = TryAddressSpaceCast(Self, SrcExpr, DestType, /*CStyle*/ true, msg,
2704                               Kind);
2705     if (SrcExpr.isInvalid())
2706       return;
2707 
2708     if (tcr == TC_NotApplicable) {
2709       // ... or if that is not possible, a static_cast, ignoring const and
2710       // addr space, ...
2711       tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange, msg, Kind,
2712                           BasePath, ListInitialization);
2713       if (SrcExpr.isInvalid())
2714         return;
2715 
2716       if (tcr == TC_NotApplicable) {
2717         // ... and finally a reinterpret_cast, ignoring const and addr space.
2718         tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/ true,
2719                                  OpRange, msg, Kind);
2720         if (SrcExpr.isInvalid())
2721           return;
2722       }
2723     }
2724   }
2725 
2726   if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
2727       isValidCast(tcr))
2728     checkObjCConversion(CCK);
2729 
2730   if (tcr != TC_Success && msg != 0) {
2731     if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
2732       DeclAccessPair Found;
2733       FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
2734                                 DestType,
2735                                 /*Complain*/ true,
2736                                 Found);
2737       if (Fn) {
2738         // If DestType is a function type (not to be confused with the function
2739         // pointer type), it will be possible to resolve the function address,
2740         // but the type cast should be considered as failure.
2741         OverloadExpr *OE = OverloadExpr::find(SrcExpr.get()).Expression;
2742         Self.Diag(OpRange.getBegin(), diag::err_bad_cstyle_cast_overload)
2743           << OE->getName() << DestType << OpRange
2744           << OE->getQualifierLoc().getSourceRange();
2745         Self.NoteAllOverloadCandidates(SrcExpr.get());
2746       }
2747     } else {
2748       diagnoseBadCast(Self, msg, (FunctionalStyle ? CT_Functional : CT_CStyle),
2749                       OpRange, SrcExpr.get(), DestType, ListInitialization);
2750     }
2751   }
2752 
2753   if (isValidCast(tcr)) {
2754     if (Kind == CK_BitCast)
2755       checkCastAlign();
2756 
2757     if (!checkCastFunctionType(Self, SrcExpr, DestType))
2758       Self.Diag(OpRange.getBegin(), diag::warn_cast_function_type)
2759           << SrcExpr.get()->getType() << DestType << OpRange;
2760 
2761   } else {
2762     SrcExpr = ExprError();
2763   }
2764 }
2765 
2766 /// DiagnoseBadFunctionCast - Warn whenever a function call is cast to a
2767 ///  non-matching type. Such as enum function call to int, int call to
2768 /// pointer; etc. Cast to 'void' is an exception.
2769 static void DiagnoseBadFunctionCast(Sema &Self, const ExprResult &SrcExpr,
2770                                   QualType DestType) {
2771   if (Self.Diags.isIgnored(diag::warn_bad_function_cast,
2772                            SrcExpr.get()->getExprLoc()))
2773     return;
2774 
2775   if (!isa<CallExpr>(SrcExpr.get()))
2776     return;
2777 
2778   QualType SrcType = SrcExpr.get()->getType();
2779   if (DestType.getUnqualifiedType()->isVoidType())
2780     return;
2781   if ((SrcType->isAnyPointerType() || SrcType->isBlockPointerType())
2782       && (DestType->isAnyPointerType() || DestType->isBlockPointerType()))
2783     return;
2784   if (SrcType->isIntegerType() && DestType->isIntegerType() &&
2785       (SrcType->isBooleanType() == DestType->isBooleanType()) &&
2786       (SrcType->isEnumeralType() == DestType->isEnumeralType()))
2787     return;
2788   if (SrcType->isRealFloatingType() && DestType->isRealFloatingType())
2789     return;
2790   if (SrcType->isEnumeralType() && DestType->isEnumeralType())
2791     return;
2792   if (SrcType->isComplexType() && DestType->isComplexType())
2793     return;
2794   if (SrcType->isComplexIntegerType() && DestType->isComplexIntegerType())
2795     return;
2796   if (SrcType->isFixedPointType() && DestType->isFixedPointType())
2797     return;
2798 
2799   Self.Diag(SrcExpr.get()->getExprLoc(),
2800             diag::warn_bad_function_cast)
2801             << SrcType << DestType << SrcExpr.get()->getSourceRange();
2802 }
2803 
2804 /// Check the semantics of a C-style cast operation, in C.
2805 void CastOperation::CheckCStyleCast() {
2806   assert(!Self.getLangOpts().CPlusPlus);
2807 
2808   // C-style casts can resolve __unknown_any types.
2809   if (claimPlaceholder(BuiltinType::UnknownAny)) {
2810     SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2811                                        SrcExpr.get(), Kind,
2812                                        ValueKind, BasePath);
2813     return;
2814   }
2815 
2816   // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
2817   // type needs to be scalar.
2818   if (DestType->isVoidType()) {
2819     // We don't necessarily do lvalue-to-rvalue conversions on this.
2820     SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
2821     if (SrcExpr.isInvalid())
2822       return;
2823 
2824     // Cast to void allows any expr type.
2825     Kind = CK_ToVoid;
2826     return;
2827   }
2828 
2829   // If the type is dependent, we won't do any other semantic analysis now.
2830   if (Self.getASTContext().isDependenceAllowed() &&
2831       (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() ||
2832        SrcExpr.get()->isValueDependent())) {
2833     assert((DestType->containsErrors() || SrcExpr.get()->containsErrors() ||
2834             SrcExpr.get()->containsErrors()) &&
2835            "should only occur in error-recovery path.");
2836     assert(Kind == CK_Dependent);
2837     return;
2838   }
2839 
2840   // Overloads are allowed with C extensions, so we need to support them.
2841   if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
2842     DeclAccessPair DAP;
2843     if (FunctionDecl *FD = Self.ResolveAddressOfOverloadedFunction(
2844             SrcExpr.get(), DestType, /*Complain=*/true, DAP))
2845       SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr.get(), DAP, FD);
2846     else
2847       return;
2848     assert(SrcExpr.isUsable());
2849   }
2850   SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
2851   if (SrcExpr.isInvalid())
2852     return;
2853   QualType SrcType = SrcExpr.get()->getType();
2854 
2855   assert(!SrcType->isPlaceholderType());
2856 
2857   checkAddressSpaceCast(SrcType, DestType);
2858   if (SrcExpr.isInvalid())
2859     return;
2860 
2861   if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
2862                                diag::err_typecheck_cast_to_incomplete)) {
2863     SrcExpr = ExprError();
2864     return;
2865   }
2866 
2867   // Allow casting a sizeless built-in type to itself.
2868   if (DestType->isSizelessBuiltinType() &&
2869       Self.Context.hasSameUnqualifiedType(DestType, SrcType)) {
2870     Kind = CK_NoOp;
2871     return;
2872   }
2873 
2874   // Allow bitcasting between compatible SVE vector types.
2875   if ((SrcType->isVectorType() || DestType->isVectorType()) &&
2876       Self.isValidSveBitcast(SrcType, DestType)) {
2877     Kind = CK_BitCast;
2878     return;
2879   }
2880 
2881   if (!DestType->isScalarType() && !DestType->isVectorType() &&
2882       !DestType->isMatrixType()) {
2883     const RecordType *DestRecordTy = DestType->getAs<RecordType>();
2884 
2885     if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){
2886       // GCC struct/union extension: allow cast to self.
2887       Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_nonscalar)
2888         << DestType << SrcExpr.get()->getSourceRange();
2889       Kind = CK_NoOp;
2890       return;
2891     }
2892 
2893     // GCC's cast to union extension.
2894     if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) {
2895       RecordDecl *RD = DestRecordTy->getDecl();
2896       if (CastExpr::getTargetFieldForToUnionCast(RD, SrcType)) {
2897         Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_to_union)
2898           << SrcExpr.get()->getSourceRange();
2899         Kind = CK_ToUnion;
2900         return;
2901       } else {
2902         Self.Diag(OpRange.getBegin(), diag::err_typecheck_cast_to_union_no_type)
2903           << SrcType << SrcExpr.get()->getSourceRange();
2904         SrcExpr = ExprError();
2905         return;
2906       }
2907     }
2908 
2909     // OpenCL v2.0 s6.13.10 - Allow casts from '0' to event_t type.
2910     if (Self.getLangOpts().OpenCL && DestType->isEventT()) {
2911       Expr::EvalResult Result;
2912       if (SrcExpr.get()->EvaluateAsInt(Result, Self.Context)) {
2913         llvm::APSInt CastInt = Result.Val.getInt();
2914         if (0 == CastInt) {
2915           Kind = CK_ZeroToOCLOpaqueType;
2916           return;
2917         }
2918         Self.Diag(OpRange.getBegin(),
2919                   diag::err_opencl_cast_non_zero_to_event_t)
2920                   << toString(CastInt, 10) << SrcExpr.get()->getSourceRange();
2921         SrcExpr = ExprError();
2922         return;
2923       }
2924     }
2925 
2926     // Reject any other conversions to non-scalar types.
2927     Self.Diag(OpRange.getBegin(), diag::err_typecheck_cond_expect_scalar)
2928       << DestType << SrcExpr.get()->getSourceRange();
2929     SrcExpr = ExprError();
2930     return;
2931   }
2932 
2933   // The type we're casting to is known to be a scalar, a vector, or a matrix.
2934 
2935   // Require the operand to be a scalar, a vector, or a matrix.
2936   if (!SrcType->isScalarType() && !SrcType->isVectorType() &&
2937       !SrcType->isMatrixType()) {
2938     Self.Diag(SrcExpr.get()->getExprLoc(),
2939               diag::err_typecheck_expect_scalar_operand)
2940       << SrcType << SrcExpr.get()->getSourceRange();
2941     SrcExpr = ExprError();
2942     return;
2943   }
2944 
2945   if (DestType->isExtVectorType()) {
2946     SrcExpr = Self.CheckExtVectorCast(OpRange, DestType, SrcExpr.get(), Kind);
2947     return;
2948   }
2949 
2950   if (DestType->getAs<MatrixType>() || SrcType->getAs<MatrixType>()) {
2951     if (Self.CheckMatrixCast(OpRange, DestType, SrcType, Kind))
2952       SrcExpr = ExprError();
2953     return;
2954   }
2955 
2956   if (const VectorType *DestVecTy = DestType->getAs<VectorType>()) {
2957     if (DestVecTy->getVectorKind() == VectorType::AltiVecVector &&
2958           (SrcType->isIntegerType() || SrcType->isFloatingType())) {
2959       Kind = CK_VectorSplat;
2960       SrcExpr = Self.prepareVectorSplat(DestType, SrcExpr.get());
2961     } else if (Self.CheckVectorCast(OpRange, DestType, SrcType, Kind)) {
2962       SrcExpr = ExprError();
2963     }
2964     return;
2965   }
2966 
2967   if (SrcType->isVectorType()) {
2968     if (Self.CheckVectorCast(OpRange, SrcType, DestType, Kind))
2969       SrcExpr = ExprError();
2970     return;
2971   }
2972 
2973   // The source and target types are both scalars, i.e.
2974   //   - arithmetic types (fundamental, enum, and complex)
2975   //   - all kinds of pointers
2976   // Note that member pointers were filtered out with C++, above.
2977 
2978   if (isa<ObjCSelectorExpr>(SrcExpr.get())) {
2979     Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_selector_expr);
2980     SrcExpr = ExprError();
2981     return;
2982   }
2983 
2984   // Can't cast to or from bfloat
2985   if (DestType->isBFloat16Type() && !SrcType->isBFloat16Type()) {
2986     Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_to_bfloat16)
2987         << SrcExpr.get()->getSourceRange();
2988     SrcExpr = ExprError();
2989     return;
2990   }
2991   if (SrcType->isBFloat16Type() && !DestType->isBFloat16Type()) {
2992     Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_from_bfloat16)
2993         << SrcExpr.get()->getSourceRange();
2994     SrcExpr = ExprError();
2995     return;
2996   }
2997 
2998   // If either type is a pointer, the other type has to be either an
2999   // integer or a pointer.
3000   if (!DestType->isArithmeticType()) {
3001     if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) {
3002       Self.Diag(SrcExpr.get()->getExprLoc(),
3003                 diag::err_cast_pointer_from_non_pointer_int)
3004         << SrcType << SrcExpr.get()->getSourceRange();
3005       SrcExpr = ExprError();
3006       return;
3007     }
3008     checkIntToPointerCast(/* CStyle */ true, OpRange, SrcExpr.get(), DestType,
3009                           Self);
3010   } else if (!SrcType->isArithmeticType()) {
3011     if (!DestType->isIntegralType(Self.Context) &&
3012         DestType->isArithmeticType()) {
3013       Self.Diag(SrcExpr.get()->getBeginLoc(),
3014                 diag::err_cast_pointer_to_non_pointer_int)
3015           << DestType << SrcExpr.get()->getSourceRange();
3016       SrcExpr = ExprError();
3017       return;
3018     }
3019 
3020     if ((Self.Context.getTypeSize(SrcType) >
3021          Self.Context.getTypeSize(DestType)) &&
3022         !DestType->isBooleanType()) {
3023       // C 6.3.2.3p6: Any pointer type may be converted to an integer type.
3024       // Except as previously specified, the result is implementation-defined.
3025       // If the result cannot be represented in the integer type, the behavior
3026       // is undefined. The result need not be in the range of values of any
3027       // integer type.
3028       unsigned Diag;
3029       if (SrcType->isVoidPointerType())
3030         Diag = DestType->isEnumeralType() ? diag::warn_void_pointer_to_enum_cast
3031                                           : diag::warn_void_pointer_to_int_cast;
3032       else if (DestType->isEnumeralType())
3033         Diag = diag::warn_pointer_to_enum_cast;
3034       else
3035         Diag = diag::warn_pointer_to_int_cast;
3036       Self.Diag(OpRange.getBegin(), Diag) << SrcType << DestType << OpRange;
3037     }
3038   }
3039 
3040   if (Self.getLangOpts().OpenCL && !Self.getOpenCLOptions().isAvailableOption(
3041                                        "cl_khr_fp16", Self.getLangOpts())) {
3042     if (DestType->isHalfType()) {
3043       Self.Diag(SrcExpr.get()->getBeginLoc(), diag::err_opencl_cast_to_half)
3044           << DestType << SrcExpr.get()->getSourceRange();
3045       SrcExpr = ExprError();
3046       return;
3047     }
3048   }
3049 
3050   // ARC imposes extra restrictions on casts.
3051   if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers()) {
3052     checkObjCConversion(Sema::CCK_CStyleCast);
3053     if (SrcExpr.isInvalid())
3054       return;
3055 
3056     const PointerType *CastPtr = DestType->getAs<PointerType>();
3057     if (Self.getLangOpts().ObjCAutoRefCount && CastPtr) {
3058       if (const PointerType *ExprPtr = SrcType->getAs<PointerType>()) {
3059         Qualifiers CastQuals = CastPtr->getPointeeType().getQualifiers();
3060         Qualifiers ExprQuals = ExprPtr->getPointeeType().getQualifiers();
3061         if (CastPtr->getPointeeType()->isObjCLifetimeType() &&
3062             ExprPtr->getPointeeType()->isObjCLifetimeType() &&
3063             !CastQuals.compatiblyIncludesObjCLifetime(ExprQuals)) {
3064           Self.Diag(SrcExpr.get()->getBeginLoc(),
3065                     diag::err_typecheck_incompatible_ownership)
3066               << SrcType << DestType << Sema::AA_Casting
3067               << SrcExpr.get()->getSourceRange();
3068           return;
3069         }
3070       }
3071     }
3072     else if (!Self.CheckObjCARCUnavailableWeakConversion(DestType, SrcType)) {
3073       Self.Diag(SrcExpr.get()->getBeginLoc(),
3074                 diag::err_arc_convesion_of_weak_unavailable)
3075           << 1 << SrcType << DestType << SrcExpr.get()->getSourceRange();
3076       SrcExpr = ExprError();
3077       return;
3078     }
3079   }
3080 
3081   if (!checkCastFunctionType(Self, SrcExpr, DestType))
3082     Self.Diag(OpRange.getBegin(), diag::warn_cast_function_type)
3083         << SrcType << DestType << OpRange;
3084 
3085   DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
3086   DiagnoseCallingConvCast(Self, SrcExpr, DestType, OpRange);
3087   DiagnoseBadFunctionCast(Self, SrcExpr, DestType);
3088   Kind = Self.PrepareScalarCast(SrcExpr, DestType);
3089   if (SrcExpr.isInvalid())
3090     return;
3091 
3092   if (Kind == CK_BitCast)
3093     checkCastAlign();
3094 }
3095 
3096 void CastOperation::CheckBuiltinBitCast() {
3097   QualType SrcType = SrcExpr.get()->getType();
3098 
3099   if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
3100                                diag::err_typecheck_cast_to_incomplete) ||
3101       Self.RequireCompleteType(OpRange.getBegin(), SrcType,
3102                                diag::err_incomplete_type)) {
3103     SrcExpr = ExprError();
3104     return;
3105   }
3106 
3107   if (SrcExpr.get()->isPRValue())
3108     SrcExpr = Self.CreateMaterializeTemporaryExpr(SrcType, SrcExpr.get(),
3109                                                   /*IsLValueReference=*/false);
3110 
3111   CharUnits DestSize = Self.Context.getTypeSizeInChars(DestType);
3112   CharUnits SourceSize = Self.Context.getTypeSizeInChars(SrcType);
3113   if (DestSize != SourceSize) {
3114     Self.Diag(OpRange.getBegin(), diag::err_bit_cast_type_size_mismatch)
3115         << (int)SourceSize.getQuantity() << (int)DestSize.getQuantity();
3116     SrcExpr = ExprError();
3117     return;
3118   }
3119 
3120   if (!DestType.isTriviallyCopyableType(Self.Context)) {
3121     Self.Diag(OpRange.getBegin(), diag::err_bit_cast_non_trivially_copyable)
3122         << 1;
3123     SrcExpr = ExprError();
3124     return;
3125   }
3126 
3127   if (!SrcType.isTriviallyCopyableType(Self.Context)) {
3128     Self.Diag(OpRange.getBegin(), diag::err_bit_cast_non_trivially_copyable)
3129         << 0;
3130     SrcExpr = ExprError();
3131     return;
3132   }
3133 
3134   Kind = CK_LValueToRValueBitCast;
3135 }
3136 
3137 /// DiagnoseCastQual - Warn whenever casts discards a qualifiers, be it either
3138 /// const, volatile or both.
3139 static void DiagnoseCastQual(Sema &Self, const ExprResult &SrcExpr,
3140                              QualType DestType) {
3141   if (SrcExpr.isInvalid())
3142     return;
3143 
3144   QualType SrcType = SrcExpr.get()->getType();
3145   if (!((SrcType->isAnyPointerType() && DestType->isAnyPointerType()) ||
3146         DestType->isLValueReferenceType()))
3147     return;
3148 
3149   QualType TheOffendingSrcType, TheOffendingDestType;
3150   Qualifiers CastAwayQualifiers;
3151   if (CastsAwayConstness(Self, SrcType, DestType, true, false,
3152                          &TheOffendingSrcType, &TheOffendingDestType,
3153                          &CastAwayQualifiers) !=
3154       CastAwayConstnessKind::CACK_Similar)
3155     return;
3156 
3157   // FIXME: 'restrict' is not properly handled here.
3158   int qualifiers = -1;
3159   if (CastAwayQualifiers.hasConst() && CastAwayQualifiers.hasVolatile()) {
3160     qualifiers = 0;
3161   } else if (CastAwayQualifiers.hasConst()) {
3162     qualifiers = 1;
3163   } else if (CastAwayQualifiers.hasVolatile()) {
3164     qualifiers = 2;
3165   }
3166   // This is a variant of int **x; const int **y = (const int **)x;
3167   if (qualifiers == -1)
3168     Self.Diag(SrcExpr.get()->getBeginLoc(), diag::warn_cast_qual2)
3169         << SrcType << DestType;
3170   else
3171     Self.Diag(SrcExpr.get()->getBeginLoc(), diag::warn_cast_qual)
3172         << TheOffendingSrcType << TheOffendingDestType << qualifiers;
3173 }
3174 
3175 ExprResult Sema::BuildCStyleCastExpr(SourceLocation LPLoc,
3176                                      TypeSourceInfo *CastTypeInfo,
3177                                      SourceLocation RPLoc,
3178                                      Expr *CastExpr) {
3179   CastOperation Op(*this, CastTypeInfo->getType(), CastExpr);
3180   Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
3181   Op.OpRange = SourceRange(LPLoc, CastExpr->getEndLoc());
3182 
3183   if (getLangOpts().CPlusPlus) {
3184     Op.CheckCXXCStyleCast(/*FunctionalCast=*/ false,
3185                           isa<InitListExpr>(CastExpr));
3186   } else {
3187     Op.CheckCStyleCast();
3188   }
3189 
3190   if (Op.SrcExpr.isInvalid())
3191     return ExprError();
3192 
3193   // -Wcast-qual
3194   DiagnoseCastQual(Op.Self, Op.SrcExpr, Op.DestType);
3195 
3196   return Op.complete(CStyleCastExpr::Create(
3197       Context, Op.ResultType, Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
3198       &Op.BasePath, CurFPFeatureOverrides(), CastTypeInfo, LPLoc, RPLoc));
3199 }
3200 
3201 ExprResult Sema::BuildCXXFunctionalCastExpr(TypeSourceInfo *CastTypeInfo,
3202                                             QualType Type,
3203                                             SourceLocation LPLoc,
3204                                             Expr *CastExpr,
3205                                             SourceLocation RPLoc) {
3206   assert(LPLoc.isValid() && "List-initialization shouldn't get here.");
3207   CastOperation Op(*this, Type, CastExpr);
3208   Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
3209   Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getEndLoc());
3210 
3211   Op.CheckCXXCStyleCast(/*FunctionalCast=*/true, /*ListInit=*/false);
3212   if (Op.SrcExpr.isInvalid())
3213     return ExprError();
3214 
3215   auto *SubExpr = Op.SrcExpr.get();
3216   if (auto *BindExpr = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
3217     SubExpr = BindExpr->getSubExpr();
3218   if (auto *ConstructExpr = dyn_cast<CXXConstructExpr>(SubExpr))
3219     ConstructExpr->setParenOrBraceRange(SourceRange(LPLoc, RPLoc));
3220 
3221   return Op.complete(CXXFunctionalCastExpr::Create(
3222       Context, Op.ResultType, Op.ValueKind, CastTypeInfo, Op.Kind,
3223       Op.SrcExpr.get(), &Op.BasePath, CurFPFeatureOverrides(), LPLoc, RPLoc));
3224 }
3225