1 //===--- SemaCast.cpp - Semantic Analysis for Casts -----------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements semantic analysis for cast expressions, including 11 // 1) C-style casts like '(int) x' 12 // 2) C++ functional casts like 'int(x)' 13 // 3) C++ named casts like 'static_cast<int>(x)' 14 // 15 //===----------------------------------------------------------------------===// 16 17 #include "clang/Sema/SemaInternal.h" 18 #include "clang/AST/ASTContext.h" 19 #include "clang/AST/CXXInheritance.h" 20 #include "clang/AST/ExprCXX.h" 21 #include "clang/AST/ExprObjC.h" 22 #include "clang/AST/RecordLayout.h" 23 #include "clang/Basic/PartialDiagnostic.h" 24 #include "clang/Basic/TargetInfo.h" 25 #include "clang/Sema/Initialization.h" 26 #include "llvm/ADT/SmallVector.h" 27 #include <set> 28 using namespace clang; 29 30 31 32 enum TryCastResult { 33 TC_NotApplicable, ///< The cast method is not applicable. 34 TC_Success, ///< The cast method is appropriate and successful. 35 TC_Failed ///< The cast method is appropriate, but failed. A 36 ///< diagnostic has been emitted. 37 }; 38 39 enum CastType { 40 CT_Const, ///< const_cast 41 CT_Static, ///< static_cast 42 CT_Reinterpret, ///< reinterpret_cast 43 CT_Dynamic, ///< dynamic_cast 44 CT_CStyle, ///< (Type)expr 45 CT_Functional ///< Type(expr) 46 }; 47 48 namespace { 49 struct CastOperation { 50 CastOperation(Sema &S, QualType destType, ExprResult src) 51 : Self(S), SrcExpr(src), DestType(destType), 52 ResultType(destType.getNonLValueExprType(S.Context)), 53 ValueKind(Expr::getValueKindForType(destType)), 54 Kind(CK_Dependent), IsARCUnbridgedCast(false) { 55 56 if (const BuiltinType *placeholder = 57 src.get()->getType()->getAsPlaceholderType()) { 58 PlaceholderKind = placeholder->getKind(); 59 } else { 60 PlaceholderKind = (BuiltinType::Kind) 0; 61 } 62 } 63 64 Sema &Self; 65 ExprResult SrcExpr; 66 QualType DestType; 67 QualType ResultType; 68 ExprValueKind ValueKind; 69 CastKind Kind; 70 BuiltinType::Kind PlaceholderKind; 71 CXXCastPath BasePath; 72 bool IsARCUnbridgedCast; 73 74 SourceRange OpRange; 75 SourceRange DestRange; 76 77 // Top-level semantics-checking routines. 78 void CheckConstCast(); 79 void CheckReinterpretCast(); 80 void CheckStaticCast(); 81 void CheckDynamicCast(); 82 void CheckCXXCStyleCast(bool FunctionalCast, bool ListInitialization); 83 void CheckCStyleCast(); 84 85 /// Complete an apparently-successful cast operation that yields 86 /// the given expression. 87 ExprResult complete(CastExpr *castExpr) { 88 // If this is an unbridged cast, wrap the result in an implicit 89 // cast that yields the unbridged-cast placeholder type. 90 if (IsARCUnbridgedCast) { 91 castExpr = ImplicitCastExpr::Create(Self.Context, 92 Self.Context.ARCUnbridgedCastTy, 93 CK_Dependent, castExpr, nullptr, 94 castExpr->getValueKind()); 95 } 96 return castExpr; 97 } 98 99 // Internal convenience methods. 100 101 /// Try to handle the given placeholder expression kind. Return 102 /// true if the source expression has the appropriate placeholder 103 /// kind. A placeholder can only be claimed once. 104 bool claimPlaceholder(BuiltinType::Kind K) { 105 if (PlaceholderKind != K) return false; 106 107 PlaceholderKind = (BuiltinType::Kind) 0; 108 return true; 109 } 110 111 bool isPlaceholder() const { 112 return PlaceholderKind != 0; 113 } 114 bool isPlaceholder(BuiltinType::Kind K) const { 115 return PlaceholderKind == K; 116 } 117 118 void checkCastAlign() { 119 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange); 120 } 121 122 void checkObjCARCConversion(Sema::CheckedConversionKind CCK) { 123 assert(Self.getLangOpts().ObjCAutoRefCount); 124 125 Expr *src = SrcExpr.get(); 126 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) == 127 Sema::ACR_unbridged) 128 IsARCUnbridgedCast = true; 129 SrcExpr = src; 130 } 131 132 /// Check for and handle non-overload placeholder expressions. 133 void checkNonOverloadPlaceholders() { 134 if (!isPlaceholder() || isPlaceholder(BuiltinType::Overload)) 135 return; 136 137 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get()); 138 if (SrcExpr.isInvalid()) 139 return; 140 PlaceholderKind = (BuiltinType::Kind) 0; 141 } 142 }; 143 } 144 145 static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType, 146 bool CheckCVR, bool CheckObjCLifetime); 147 148 // The Try functions attempt a specific way of casting. If they succeed, they 149 // return TC_Success. If their way of casting is not appropriate for the given 150 // arguments, they return TC_NotApplicable and *may* set diag to a diagnostic 151 // to emit if no other way succeeds. If their way of casting is appropriate but 152 // fails, they return TC_Failed and *must* set diag; they can set it to 0 if 153 // they emit a specialized diagnostic. 154 // All diagnostics returned by these functions must expect the same three 155 // arguments: 156 // %0: Cast Type (a value from the CastType enumeration) 157 // %1: Source Type 158 // %2: Destination Type 159 static TryCastResult TryLValueToRValueCast(Sema &Self, Expr *SrcExpr, 160 QualType DestType, bool CStyle, 161 CastKind &Kind, 162 CXXCastPath &BasePath, 163 unsigned &msg); 164 static TryCastResult TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, 165 QualType DestType, bool CStyle, 166 const SourceRange &OpRange, 167 unsigned &msg, 168 CastKind &Kind, 169 CXXCastPath &BasePath); 170 static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType, 171 QualType DestType, bool CStyle, 172 const SourceRange &OpRange, 173 unsigned &msg, 174 CastKind &Kind, 175 CXXCastPath &BasePath); 176 static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType, 177 CanQualType DestType, bool CStyle, 178 const SourceRange &OpRange, 179 QualType OrigSrcType, 180 QualType OrigDestType, unsigned &msg, 181 CastKind &Kind, 182 CXXCastPath &BasePath); 183 static TryCastResult TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, 184 QualType SrcType, 185 QualType DestType,bool CStyle, 186 const SourceRange &OpRange, 187 unsigned &msg, 188 CastKind &Kind, 189 CXXCastPath &BasePath); 190 191 static TryCastResult TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, 192 QualType DestType, 193 Sema::CheckedConversionKind CCK, 194 const SourceRange &OpRange, 195 unsigned &msg, CastKind &Kind, 196 bool ListInitialization); 197 static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr, 198 QualType DestType, 199 Sema::CheckedConversionKind CCK, 200 const SourceRange &OpRange, 201 unsigned &msg, CastKind &Kind, 202 CXXCastPath &BasePath, 203 bool ListInitialization); 204 static TryCastResult TryConstCast(Sema &Self, ExprResult &SrcExpr, 205 QualType DestType, bool CStyle, 206 unsigned &msg); 207 static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr, 208 QualType DestType, bool CStyle, 209 const SourceRange &OpRange, 210 unsigned &msg, 211 CastKind &Kind); 212 213 214 /// ActOnCXXNamedCast - Parse {dynamic,static,reinterpret,const}_cast's. 215 ExprResult 216 Sema::ActOnCXXNamedCast(SourceLocation OpLoc, tok::TokenKind Kind, 217 SourceLocation LAngleBracketLoc, Declarator &D, 218 SourceLocation RAngleBracketLoc, 219 SourceLocation LParenLoc, Expr *E, 220 SourceLocation RParenLoc) { 221 222 assert(!D.isInvalidType()); 223 224 TypeSourceInfo *TInfo = GetTypeForDeclaratorCast(D, E->getType()); 225 if (D.isInvalidType()) 226 return ExprError(); 227 228 if (getLangOpts().CPlusPlus) { 229 // Check that there are no default arguments (C++ only). 230 CheckExtraCXXDefaultArguments(D); 231 } 232 233 return BuildCXXNamedCast(OpLoc, Kind, TInfo, E, 234 SourceRange(LAngleBracketLoc, RAngleBracketLoc), 235 SourceRange(LParenLoc, RParenLoc)); 236 } 237 238 ExprResult 239 Sema::BuildCXXNamedCast(SourceLocation OpLoc, tok::TokenKind Kind, 240 TypeSourceInfo *DestTInfo, Expr *E, 241 SourceRange AngleBrackets, SourceRange Parens) { 242 ExprResult Ex = E; 243 QualType DestType = DestTInfo->getType(); 244 245 // If the type is dependent, we won't do the semantic analysis now. 246 // FIXME: should we check this in a more fine-grained manner? 247 bool TypeDependent = DestType->isDependentType() || 248 Ex.get()->isTypeDependent() || 249 Ex.get()->isValueDependent(); 250 251 CastOperation Op(*this, DestType, E); 252 Op.OpRange = SourceRange(OpLoc, Parens.getEnd()); 253 Op.DestRange = AngleBrackets; 254 255 switch (Kind) { 256 default: llvm_unreachable("Unknown C++ cast!"); 257 258 case tok::kw_const_cast: 259 if (!TypeDependent) { 260 Op.CheckConstCast(); 261 if (Op.SrcExpr.isInvalid()) 262 return ExprError(); 263 } 264 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType, 265 Op.ValueKind, Op.SrcExpr.get(), DestTInfo, 266 OpLoc, Parens.getEnd(), 267 AngleBrackets)); 268 269 case tok::kw_dynamic_cast: { 270 if (!TypeDependent) { 271 Op.CheckDynamicCast(); 272 if (Op.SrcExpr.isInvalid()) 273 return ExprError(); 274 } 275 return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType, 276 Op.ValueKind, Op.Kind, Op.SrcExpr.get(), 277 &Op.BasePath, DestTInfo, 278 OpLoc, Parens.getEnd(), 279 AngleBrackets)); 280 } 281 case tok::kw_reinterpret_cast: { 282 if (!TypeDependent) { 283 Op.CheckReinterpretCast(); 284 if (Op.SrcExpr.isInvalid()) 285 return ExprError(); 286 } 287 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, 288 Op.ValueKind, Op.Kind, Op.SrcExpr.get(), 289 nullptr, DestTInfo, OpLoc, 290 Parens.getEnd(), 291 AngleBrackets)); 292 } 293 case tok::kw_static_cast: { 294 if (!TypeDependent) { 295 Op.CheckStaticCast(); 296 if (Op.SrcExpr.isInvalid()) 297 return ExprError(); 298 } 299 300 return Op.complete(CXXStaticCastExpr::Create(Context, Op.ResultType, 301 Op.ValueKind, Op.Kind, Op.SrcExpr.get(), 302 &Op.BasePath, DestTInfo, 303 OpLoc, Parens.getEnd(), 304 AngleBrackets)); 305 } 306 } 307 } 308 309 /// Try to diagnose a failed overloaded cast. Returns true if 310 /// diagnostics were emitted. 311 static bool tryDiagnoseOverloadedCast(Sema &S, CastType CT, 312 SourceRange range, Expr *src, 313 QualType destType, 314 bool listInitialization) { 315 switch (CT) { 316 // These cast kinds don't consider user-defined conversions. 317 case CT_Const: 318 case CT_Reinterpret: 319 case CT_Dynamic: 320 return false; 321 322 // These do. 323 case CT_Static: 324 case CT_CStyle: 325 case CT_Functional: 326 break; 327 } 328 329 QualType srcType = src->getType(); 330 if (!destType->isRecordType() && !srcType->isRecordType()) 331 return false; 332 333 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType); 334 InitializationKind initKind 335 = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(), 336 range, listInitialization) 337 : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range, 338 listInitialization) 339 : InitializationKind::CreateCast(/*type range?*/ range); 340 InitializationSequence sequence(S, entity, initKind, src); 341 342 assert(sequence.Failed() && "initialization succeeded on second try?"); 343 switch (sequence.getFailureKind()) { 344 default: return false; 345 346 case InitializationSequence::FK_ConstructorOverloadFailed: 347 case InitializationSequence::FK_UserConversionOverloadFailed: 348 break; 349 } 350 351 OverloadCandidateSet &candidates = sequence.getFailedCandidateSet(); 352 353 unsigned msg = 0; 354 OverloadCandidateDisplayKind howManyCandidates = OCD_AllCandidates; 355 356 switch (sequence.getFailedOverloadResult()) { 357 case OR_Success: llvm_unreachable("successful failed overload"); 358 case OR_No_Viable_Function: 359 if (candidates.empty()) 360 msg = diag::err_ovl_no_conversion_in_cast; 361 else 362 msg = diag::err_ovl_no_viable_conversion_in_cast; 363 howManyCandidates = OCD_AllCandidates; 364 break; 365 366 case OR_Ambiguous: 367 msg = diag::err_ovl_ambiguous_conversion_in_cast; 368 howManyCandidates = OCD_ViableCandidates; 369 break; 370 371 case OR_Deleted: 372 msg = diag::err_ovl_deleted_conversion_in_cast; 373 howManyCandidates = OCD_ViableCandidates; 374 break; 375 } 376 377 S.Diag(range.getBegin(), msg) 378 << CT << srcType << destType 379 << range << src->getSourceRange(); 380 381 candidates.NoteCandidates(S, howManyCandidates, src); 382 383 return true; 384 } 385 386 /// Diagnose a failed cast. 387 static void diagnoseBadCast(Sema &S, unsigned msg, CastType castType, 388 SourceRange opRange, Expr *src, QualType destType, 389 bool listInitialization) { 390 if (msg == diag::err_bad_cxx_cast_generic && 391 tryDiagnoseOverloadedCast(S, castType, opRange, src, destType, 392 listInitialization)) 393 return; 394 395 S.Diag(opRange.getBegin(), msg) << castType 396 << src->getType() << destType << opRange << src->getSourceRange(); 397 } 398 399 /// UnwrapDissimilarPointerTypes - Like Sema::UnwrapSimilarPointerTypes, 400 /// this removes one level of indirection from both types, provided that they're 401 /// the same kind of pointer (plain or to-member). Unlike the Sema function, 402 /// this one doesn't care if the two pointers-to-member don't point into the 403 /// same class. This is because CastsAwayConstness doesn't care. 404 static bool UnwrapDissimilarPointerTypes(QualType& T1, QualType& T2) { 405 const PointerType *T1PtrType = T1->getAs<PointerType>(), 406 *T2PtrType = T2->getAs<PointerType>(); 407 if (T1PtrType && T2PtrType) { 408 T1 = T1PtrType->getPointeeType(); 409 T2 = T2PtrType->getPointeeType(); 410 return true; 411 } 412 const ObjCObjectPointerType *T1ObjCPtrType = 413 T1->getAs<ObjCObjectPointerType>(), 414 *T2ObjCPtrType = 415 T2->getAs<ObjCObjectPointerType>(); 416 if (T1ObjCPtrType) { 417 if (T2ObjCPtrType) { 418 T1 = T1ObjCPtrType->getPointeeType(); 419 T2 = T2ObjCPtrType->getPointeeType(); 420 return true; 421 } 422 else if (T2PtrType) { 423 T1 = T1ObjCPtrType->getPointeeType(); 424 T2 = T2PtrType->getPointeeType(); 425 return true; 426 } 427 } 428 else if (T2ObjCPtrType) { 429 if (T1PtrType) { 430 T2 = T2ObjCPtrType->getPointeeType(); 431 T1 = T1PtrType->getPointeeType(); 432 return true; 433 } 434 } 435 436 const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(), 437 *T2MPType = T2->getAs<MemberPointerType>(); 438 if (T1MPType && T2MPType) { 439 T1 = T1MPType->getPointeeType(); 440 T2 = T2MPType->getPointeeType(); 441 return true; 442 } 443 444 const BlockPointerType *T1BPType = T1->getAs<BlockPointerType>(), 445 *T2BPType = T2->getAs<BlockPointerType>(); 446 if (T1BPType && T2BPType) { 447 T1 = T1BPType->getPointeeType(); 448 T2 = T2BPType->getPointeeType(); 449 return true; 450 } 451 452 return false; 453 } 454 455 /// CastsAwayConstness - Check if the pointer conversion from SrcType to 456 /// DestType casts away constness as defined in C++ 5.2.11p8ff. This is used by 457 /// the cast checkers. Both arguments must denote pointer (possibly to member) 458 /// types. 459 /// 460 /// \param CheckCVR Whether to check for const/volatile/restrict qualifiers. 461 /// 462 /// \param CheckObjCLifetime Whether to check Objective-C lifetime qualifiers. 463 static bool 464 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType, 465 bool CheckCVR, bool CheckObjCLifetime) { 466 // If the only checking we care about is for Objective-C lifetime qualifiers, 467 // and we're not in ARC mode, there's nothing to check. 468 if (!CheckCVR && CheckObjCLifetime && 469 !Self.Context.getLangOpts().ObjCAutoRefCount) 470 return false; 471 472 // Casting away constness is defined in C++ 5.2.11p8 with reference to 473 // C++ 4.4. We piggyback on Sema::IsQualificationConversion for this, since 474 // the rules are non-trivial. So first we construct Tcv *...cv* as described 475 // in C++ 5.2.11p8. 476 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() || 477 SrcType->isBlockPointerType()) && 478 "Source type is not pointer or pointer to member."); 479 assert((DestType->isAnyPointerType() || DestType->isMemberPointerType() || 480 DestType->isBlockPointerType()) && 481 "Destination type is not pointer or pointer to member."); 482 483 QualType UnwrappedSrcType = Self.Context.getCanonicalType(SrcType), 484 UnwrappedDestType = Self.Context.getCanonicalType(DestType); 485 SmallVector<Qualifiers, 8> cv1, cv2; 486 487 // Find the qualifiers. We only care about cvr-qualifiers for the 488 // purpose of this check, because other qualifiers (address spaces, 489 // Objective-C GC, etc.) are part of the type's identity. 490 while (UnwrapDissimilarPointerTypes(UnwrappedSrcType, UnwrappedDestType)) { 491 // Determine the relevant qualifiers at this level. 492 Qualifiers SrcQuals, DestQuals; 493 Self.Context.getUnqualifiedArrayType(UnwrappedSrcType, SrcQuals); 494 Self.Context.getUnqualifiedArrayType(UnwrappedDestType, DestQuals); 495 496 Qualifiers RetainedSrcQuals, RetainedDestQuals; 497 if (CheckCVR) { 498 RetainedSrcQuals.setCVRQualifiers(SrcQuals.getCVRQualifiers()); 499 RetainedDestQuals.setCVRQualifiers(DestQuals.getCVRQualifiers()); 500 } 501 502 if (CheckObjCLifetime && 503 !DestQuals.compatiblyIncludesObjCLifetime(SrcQuals)) 504 return true; 505 506 cv1.push_back(RetainedSrcQuals); 507 cv2.push_back(RetainedDestQuals); 508 } 509 if (cv1.empty()) 510 return false; 511 512 // Construct void pointers with those qualifiers (in reverse order of 513 // unwrapping, of course). 514 QualType SrcConstruct = Self.Context.VoidTy; 515 QualType DestConstruct = Self.Context.VoidTy; 516 ASTContext &Context = Self.Context; 517 for (SmallVectorImpl<Qualifiers>::reverse_iterator i1 = cv1.rbegin(), 518 i2 = cv2.rbegin(); 519 i1 != cv1.rend(); ++i1, ++i2) { 520 SrcConstruct 521 = Context.getPointerType(Context.getQualifiedType(SrcConstruct, *i1)); 522 DestConstruct 523 = Context.getPointerType(Context.getQualifiedType(DestConstruct, *i2)); 524 } 525 526 // Test if they're compatible. 527 bool ObjCLifetimeConversion; 528 return SrcConstruct != DestConstruct && 529 !Self.IsQualificationConversion(SrcConstruct, DestConstruct, false, 530 ObjCLifetimeConversion); 531 } 532 533 /// CheckDynamicCast - Check that a dynamic_cast\<DestType\>(SrcExpr) is valid. 534 /// Refer to C++ 5.2.7 for details. Dynamic casts are used mostly for runtime- 535 /// checked downcasts in class hierarchies. 536 void CastOperation::CheckDynamicCast() { 537 if (ValueKind == VK_RValue) 538 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get()); 539 else if (isPlaceholder()) 540 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get()); 541 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error 542 return; 543 544 QualType OrigSrcType = SrcExpr.get()->getType(); 545 QualType DestType = Self.Context.getCanonicalType(this->DestType); 546 547 // C++ 5.2.7p1: T shall be a pointer or reference to a complete class type, 548 // or "pointer to cv void". 549 550 QualType DestPointee; 551 const PointerType *DestPointer = DestType->getAs<PointerType>(); 552 const ReferenceType *DestReference = nullptr; 553 if (DestPointer) { 554 DestPointee = DestPointer->getPointeeType(); 555 } else if ((DestReference = DestType->getAs<ReferenceType>())) { 556 DestPointee = DestReference->getPointeeType(); 557 } else { 558 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ref_or_ptr) 559 << this->DestType << DestRange; 560 SrcExpr = ExprError(); 561 return; 562 } 563 564 const RecordType *DestRecord = DestPointee->getAs<RecordType>(); 565 if (DestPointee->isVoidType()) { 566 assert(DestPointer && "Reference to void is not possible"); 567 } else if (DestRecord) { 568 if (Self.RequireCompleteType(OpRange.getBegin(), DestPointee, 569 diag::err_bad_dynamic_cast_incomplete, 570 DestRange)) { 571 SrcExpr = ExprError(); 572 return; 573 } 574 } else { 575 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class) 576 << DestPointee.getUnqualifiedType() << DestRange; 577 SrcExpr = ExprError(); 578 return; 579 } 580 581 // C++0x 5.2.7p2: If T is a pointer type, v shall be an rvalue of a pointer to 582 // complete class type, [...]. If T is an lvalue reference type, v shall be 583 // an lvalue of a complete class type, [...]. If T is an rvalue reference 584 // type, v shall be an expression having a complete class type, [...] 585 QualType SrcType = Self.Context.getCanonicalType(OrigSrcType); 586 QualType SrcPointee; 587 if (DestPointer) { 588 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) { 589 SrcPointee = SrcPointer->getPointeeType(); 590 } else { 591 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ptr) 592 << OrigSrcType << SrcExpr.get()->getSourceRange(); 593 SrcExpr = ExprError(); 594 return; 595 } 596 } else if (DestReference->isLValueReferenceType()) { 597 if (!SrcExpr.get()->isLValue()) { 598 Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_rvalue) 599 << CT_Dynamic << OrigSrcType << this->DestType << OpRange; 600 } 601 SrcPointee = SrcType; 602 } else { 603 SrcPointee = SrcType; 604 } 605 606 const RecordType *SrcRecord = SrcPointee->getAs<RecordType>(); 607 if (SrcRecord) { 608 if (Self.RequireCompleteType(OpRange.getBegin(), SrcPointee, 609 diag::err_bad_dynamic_cast_incomplete, 610 SrcExpr.get())) { 611 SrcExpr = ExprError(); 612 return; 613 } 614 } else { 615 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class) 616 << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange(); 617 SrcExpr = ExprError(); 618 return; 619 } 620 621 assert((DestPointer || DestReference) && 622 "Bad destination non-ptr/ref slipped through."); 623 assert((DestRecord || DestPointee->isVoidType()) && 624 "Bad destination pointee slipped through."); 625 assert(SrcRecord && "Bad source pointee slipped through."); 626 627 // C++ 5.2.7p1: The dynamic_cast operator shall not cast away constness. 628 if (!DestPointee.isAtLeastAsQualifiedAs(SrcPointee)) { 629 Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_qualifiers_away) 630 << CT_Dynamic << OrigSrcType << this->DestType << OpRange; 631 SrcExpr = ExprError(); 632 return; 633 } 634 635 // C++ 5.2.7p3: If the type of v is the same as the required result type, 636 // [except for cv]. 637 if (DestRecord == SrcRecord) { 638 Kind = CK_NoOp; 639 return; 640 } 641 642 // C++ 5.2.7p5 643 // Upcasts are resolved statically. 644 if (DestRecord && Self.IsDerivedFrom(SrcPointee, DestPointee)) { 645 if (Self.CheckDerivedToBaseConversion(SrcPointee, DestPointee, 646 OpRange.getBegin(), OpRange, 647 &BasePath)) { 648 SrcExpr = ExprError(); 649 return; 650 } 651 652 Kind = CK_DerivedToBase; 653 654 // If we are casting to or through a virtual base class, we need a 655 // vtable. 656 if (Self.BasePathInvolvesVirtualBase(BasePath)) 657 Self.MarkVTableUsed(OpRange.getBegin(), 658 cast<CXXRecordDecl>(SrcRecord->getDecl())); 659 return; 660 } 661 662 // C++ 5.2.7p6: Otherwise, v shall be [polymorphic]. 663 const RecordDecl *SrcDecl = SrcRecord->getDecl()->getDefinition(); 664 assert(SrcDecl && "Definition missing"); 665 if (!cast<CXXRecordDecl>(SrcDecl)->isPolymorphic()) { 666 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_polymorphic) 667 << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange(); 668 SrcExpr = ExprError(); 669 } 670 Self.MarkVTableUsed(OpRange.getBegin(), 671 cast<CXXRecordDecl>(SrcRecord->getDecl())); 672 673 // dynamic_cast is not available with -fno-rtti. 674 // As an exception, dynamic_cast to void* is available because it doesn't 675 // use RTTI. 676 if (!Self.getLangOpts().RTTI && !DestPointee->isVoidType()) { 677 Self.Diag(OpRange.getBegin(), diag::err_no_dynamic_cast_with_fno_rtti); 678 SrcExpr = ExprError(); 679 return; 680 } 681 682 // Done. Everything else is run-time checks. 683 Kind = CK_Dynamic; 684 } 685 686 /// CheckConstCast - Check that a const_cast\<DestType\>(SrcExpr) is valid. 687 /// Refer to C++ 5.2.11 for details. const_cast is typically used in code 688 /// like this: 689 /// const char *str = "literal"; 690 /// legacy_function(const_cast\<char*\>(str)); 691 void CastOperation::CheckConstCast() { 692 if (ValueKind == VK_RValue) 693 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get()); 694 else if (isPlaceholder()) 695 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get()); 696 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error 697 return; 698 699 unsigned msg = diag::err_bad_cxx_cast_generic; 700 if (TryConstCast(Self, SrcExpr, DestType, /*CStyle*/false, msg) != TC_Success 701 && msg != 0) { 702 Self.Diag(OpRange.getBegin(), msg) << CT_Const 703 << SrcExpr.get()->getType() << DestType << OpRange; 704 SrcExpr = ExprError(); 705 } 706 } 707 708 /// Check that a reinterpret_cast\<DestType\>(SrcExpr) is not used as upcast 709 /// or downcast between respective pointers or references. 710 static void DiagnoseReinterpretUpDownCast(Sema &Self, const Expr *SrcExpr, 711 QualType DestType, 712 SourceRange OpRange) { 713 QualType SrcType = SrcExpr->getType(); 714 // When casting from pointer or reference, get pointee type; use original 715 // type otherwise. 716 const CXXRecordDecl *SrcPointeeRD = SrcType->getPointeeCXXRecordDecl(); 717 const CXXRecordDecl *SrcRD = 718 SrcPointeeRD ? SrcPointeeRD : SrcType->getAsCXXRecordDecl(); 719 720 // Examining subobjects for records is only possible if the complete and 721 // valid definition is available. Also, template instantiation is not 722 // allowed here. 723 if (!SrcRD || !SrcRD->isCompleteDefinition() || SrcRD->isInvalidDecl()) 724 return; 725 726 const CXXRecordDecl *DestRD = DestType->getPointeeCXXRecordDecl(); 727 728 if (!DestRD || !DestRD->isCompleteDefinition() || DestRD->isInvalidDecl()) 729 return; 730 731 enum { 732 ReinterpretUpcast, 733 ReinterpretDowncast 734 } ReinterpretKind; 735 736 CXXBasePaths BasePaths; 737 738 if (SrcRD->isDerivedFrom(DestRD, BasePaths)) 739 ReinterpretKind = ReinterpretUpcast; 740 else if (DestRD->isDerivedFrom(SrcRD, BasePaths)) 741 ReinterpretKind = ReinterpretDowncast; 742 else 743 return; 744 745 bool VirtualBase = true; 746 bool NonZeroOffset = false; 747 for (CXXBasePaths::const_paths_iterator I = BasePaths.begin(), 748 E = BasePaths.end(); 749 I != E; ++I) { 750 const CXXBasePath &Path = *I; 751 CharUnits Offset = CharUnits::Zero(); 752 bool IsVirtual = false; 753 for (CXXBasePath::const_iterator IElem = Path.begin(), EElem = Path.end(); 754 IElem != EElem; ++IElem) { 755 IsVirtual = IElem->Base->isVirtual(); 756 if (IsVirtual) 757 break; 758 const CXXRecordDecl *BaseRD = IElem->Base->getType()->getAsCXXRecordDecl(); 759 assert(BaseRD && "Base type should be a valid unqualified class type"); 760 // Don't check if any base has invalid declaration or has no definition 761 // since it has no layout info. 762 const CXXRecordDecl *Class = IElem->Class, 763 *ClassDefinition = Class->getDefinition(); 764 if (Class->isInvalidDecl() || !ClassDefinition || 765 !ClassDefinition->isCompleteDefinition()) 766 return; 767 768 const ASTRecordLayout &DerivedLayout = 769 Self.Context.getASTRecordLayout(Class); 770 Offset += DerivedLayout.getBaseClassOffset(BaseRD); 771 } 772 if (!IsVirtual) { 773 // Don't warn if any path is a non-virtually derived base at offset zero. 774 if (Offset.isZero()) 775 return; 776 // Offset makes sense only for non-virtual bases. 777 else 778 NonZeroOffset = true; 779 } 780 VirtualBase = VirtualBase && IsVirtual; 781 } 782 783 (void) NonZeroOffset; // Silence set but not used warning. 784 assert((VirtualBase || NonZeroOffset) && 785 "Should have returned if has non-virtual base with zero offset"); 786 787 QualType BaseType = 788 ReinterpretKind == ReinterpretUpcast? DestType : SrcType; 789 QualType DerivedType = 790 ReinterpretKind == ReinterpretUpcast? SrcType : DestType; 791 792 SourceLocation BeginLoc = OpRange.getBegin(); 793 Self.Diag(BeginLoc, diag::warn_reinterpret_different_from_static) 794 << DerivedType << BaseType << !VirtualBase << int(ReinterpretKind) 795 << OpRange; 796 Self.Diag(BeginLoc, diag::note_reinterpret_updowncast_use_static) 797 << int(ReinterpretKind) 798 << FixItHint::CreateReplacement(BeginLoc, "static_cast"); 799 } 800 801 /// CheckReinterpretCast - Check that a reinterpret_cast\<DestType\>(SrcExpr) is 802 /// valid. 803 /// Refer to C++ 5.2.10 for details. reinterpret_cast is typically used in code 804 /// like this: 805 /// char *bytes = reinterpret_cast\<char*\>(int_ptr); 806 void CastOperation::CheckReinterpretCast() { 807 if (ValueKind == VK_RValue && !isPlaceholder(BuiltinType::Overload)) 808 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get()); 809 else 810 checkNonOverloadPlaceholders(); 811 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error 812 return; 813 814 unsigned msg = diag::err_bad_cxx_cast_generic; 815 TryCastResult tcr = 816 TryReinterpretCast(Self, SrcExpr, DestType, 817 /*CStyle*/false, OpRange, msg, Kind); 818 if (tcr != TC_Success && msg != 0) 819 { 820 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error 821 return; 822 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) { 823 //FIXME: &f<int>; is overloaded and resolvable 824 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_overload) 825 << OverloadExpr::find(SrcExpr.get()).Expression->getName() 826 << DestType << OpRange; 827 Self.NoteAllOverloadCandidates(SrcExpr.get()); 828 829 } else { 830 diagnoseBadCast(Self, msg, CT_Reinterpret, OpRange, SrcExpr.get(), 831 DestType, /*listInitialization=*/false); 832 } 833 SrcExpr = ExprError(); 834 } else if (tcr == TC_Success) { 835 if (Self.getLangOpts().ObjCAutoRefCount) 836 checkObjCARCConversion(Sema::CCK_OtherCast); 837 DiagnoseReinterpretUpDownCast(Self, SrcExpr.get(), DestType, OpRange); 838 } 839 } 840 841 842 /// CheckStaticCast - Check that a static_cast\<DestType\>(SrcExpr) is valid. 843 /// Refer to C++ 5.2.9 for details. Static casts are mostly used for making 844 /// implicit conversions explicit and getting rid of data loss warnings. 845 void CastOperation::CheckStaticCast() { 846 if (isPlaceholder()) { 847 checkNonOverloadPlaceholders(); 848 if (SrcExpr.isInvalid()) 849 return; 850 } 851 852 // This test is outside everything else because it's the only case where 853 // a non-lvalue-reference target type does not lead to decay. 854 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void". 855 if (DestType->isVoidType()) { 856 Kind = CK_ToVoid; 857 858 if (claimPlaceholder(BuiltinType::Overload)) { 859 Self.ResolveAndFixSingleFunctionTemplateSpecialization(SrcExpr, 860 false, // Decay Function to ptr 861 true, // Complain 862 OpRange, DestType, diag::err_bad_static_cast_overload); 863 if (SrcExpr.isInvalid()) 864 return; 865 } 866 867 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get()); 868 return; 869 } 870 871 if (ValueKind == VK_RValue && !DestType->isRecordType() && 872 !isPlaceholder(BuiltinType::Overload)) { 873 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get()); 874 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error 875 return; 876 } 877 878 unsigned msg = diag::err_bad_cxx_cast_generic; 879 TryCastResult tcr 880 = TryStaticCast(Self, SrcExpr, DestType, Sema::CCK_OtherCast, OpRange, msg, 881 Kind, BasePath, /*ListInitialization=*/false); 882 if (tcr != TC_Success && msg != 0) { 883 if (SrcExpr.isInvalid()) 884 return; 885 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) { 886 OverloadExpr* oe = OverloadExpr::find(SrcExpr.get()).Expression; 887 Self.Diag(OpRange.getBegin(), diag::err_bad_static_cast_overload) 888 << oe->getName() << DestType << OpRange 889 << oe->getQualifierLoc().getSourceRange(); 890 Self.NoteAllOverloadCandidates(SrcExpr.get()); 891 } else { 892 diagnoseBadCast(Self, msg, CT_Static, OpRange, SrcExpr.get(), DestType, 893 /*listInitialization=*/false); 894 } 895 SrcExpr = ExprError(); 896 } else if (tcr == TC_Success) { 897 if (Kind == CK_BitCast) 898 checkCastAlign(); 899 if (Self.getLangOpts().ObjCAutoRefCount) 900 checkObjCARCConversion(Sema::CCK_OtherCast); 901 } else if (Kind == CK_BitCast) { 902 checkCastAlign(); 903 } 904 } 905 906 /// TryStaticCast - Check if a static cast can be performed, and do so if 907 /// possible. If @p CStyle, ignore access restrictions on hierarchy casting 908 /// and casting away constness. 909 static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr, 910 QualType DestType, 911 Sema::CheckedConversionKind CCK, 912 const SourceRange &OpRange, unsigned &msg, 913 CastKind &Kind, CXXCastPath &BasePath, 914 bool ListInitialization) { 915 // Determine whether we have the semantics of a C-style cast. 916 bool CStyle 917 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast); 918 919 // The order the tests is not entirely arbitrary. There is one conversion 920 // that can be handled in two different ways. Given: 921 // struct A {}; 922 // struct B : public A { 923 // B(); B(const A&); 924 // }; 925 // const A &a = B(); 926 // the cast static_cast<const B&>(a) could be seen as either a static 927 // reference downcast, or an explicit invocation of the user-defined 928 // conversion using B's conversion constructor. 929 // DR 427 specifies that the downcast is to be applied here. 930 931 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void". 932 // Done outside this function. 933 934 TryCastResult tcr; 935 936 // C++ 5.2.9p5, reference downcast. 937 // See the function for details. 938 // DR 427 specifies that this is to be applied before paragraph 2. 939 tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle, 940 OpRange, msg, Kind, BasePath); 941 if (tcr != TC_NotApplicable) 942 return tcr; 943 944 // C++0x [expr.static.cast]p3: 945 // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to cv2 946 // T2" if "cv2 T2" is reference-compatible with "cv1 T1". 947 tcr = TryLValueToRValueCast(Self, SrcExpr.get(), DestType, CStyle, Kind, 948 BasePath, msg); 949 if (tcr != TC_NotApplicable) 950 return tcr; 951 952 // C++ 5.2.9p2: An expression e can be explicitly converted to a type T 953 // [...] if the declaration "T t(e);" is well-formed, [...]. 954 tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg, 955 Kind, ListInitialization); 956 if (SrcExpr.isInvalid()) 957 return TC_Failed; 958 if (tcr != TC_NotApplicable) 959 return tcr; 960 961 // C++ 5.2.9p6: May apply the reverse of any standard conversion, except 962 // lvalue-to-rvalue, array-to-pointer, function-to-pointer, and boolean 963 // conversions, subject to further restrictions. 964 // Also, C++ 5.2.9p1 forbids casting away constness, which makes reversal 965 // of qualification conversions impossible. 966 // In the CStyle case, the earlier attempt to const_cast should have taken 967 // care of reverse qualification conversions. 968 969 QualType SrcType = Self.Context.getCanonicalType(SrcExpr.get()->getType()); 970 971 // C++0x 5.2.9p9: A value of a scoped enumeration type can be explicitly 972 // converted to an integral type. [...] A value of a scoped enumeration type 973 // can also be explicitly converted to a floating-point type [...]. 974 if (const EnumType *Enum = SrcType->getAs<EnumType>()) { 975 if (Enum->getDecl()->isScoped()) { 976 if (DestType->isBooleanType()) { 977 Kind = CK_IntegralToBoolean; 978 return TC_Success; 979 } else if (DestType->isIntegralType(Self.Context)) { 980 Kind = CK_IntegralCast; 981 return TC_Success; 982 } else if (DestType->isRealFloatingType()) { 983 Kind = CK_IntegralToFloating; 984 return TC_Success; 985 } 986 } 987 } 988 989 // Reverse integral promotion/conversion. All such conversions are themselves 990 // again integral promotions or conversions and are thus already handled by 991 // p2 (TryDirectInitialization above). 992 // (Note: any data loss warnings should be suppressed.) 993 // The exception is the reverse of enum->integer, i.e. integer->enum (and 994 // enum->enum). See also C++ 5.2.9p7. 995 // The same goes for reverse floating point promotion/conversion and 996 // floating-integral conversions. Again, only floating->enum is relevant. 997 if (DestType->isEnumeralType()) { 998 if (SrcType->isIntegralOrEnumerationType()) { 999 Kind = CK_IntegralCast; 1000 return TC_Success; 1001 } else if (SrcType->isRealFloatingType()) { 1002 Kind = CK_FloatingToIntegral; 1003 return TC_Success; 1004 } 1005 } 1006 1007 // Reverse pointer upcast. C++ 4.10p3 specifies pointer upcast. 1008 // C++ 5.2.9p8 additionally disallows a cast path through virtual inheritance. 1009 tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg, 1010 Kind, BasePath); 1011 if (tcr != TC_NotApplicable) 1012 return tcr; 1013 1014 // Reverse member pointer conversion. C++ 4.11 specifies member pointer 1015 // conversion. C++ 5.2.9p9 has additional information. 1016 // DR54's access restrictions apply here also. 1017 tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle, 1018 OpRange, msg, Kind, BasePath); 1019 if (tcr != TC_NotApplicable) 1020 return tcr; 1021 1022 // Reverse pointer conversion to void*. C++ 4.10.p2 specifies conversion to 1023 // void*. C++ 5.2.9p10 specifies additional restrictions, which really is 1024 // just the usual constness stuff. 1025 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) { 1026 QualType SrcPointee = SrcPointer->getPointeeType(); 1027 if (SrcPointee->isVoidType()) { 1028 if (const PointerType *DestPointer = DestType->getAs<PointerType>()) { 1029 QualType DestPointee = DestPointer->getPointeeType(); 1030 if (DestPointee->isIncompleteOrObjectType()) { 1031 // This is definitely the intended conversion, but it might fail due 1032 // to a qualifier violation. Note that we permit Objective-C lifetime 1033 // and GC qualifier mismatches here. 1034 if (!CStyle) { 1035 Qualifiers DestPointeeQuals = DestPointee.getQualifiers(); 1036 Qualifiers SrcPointeeQuals = SrcPointee.getQualifiers(); 1037 DestPointeeQuals.removeObjCGCAttr(); 1038 DestPointeeQuals.removeObjCLifetime(); 1039 SrcPointeeQuals.removeObjCGCAttr(); 1040 SrcPointeeQuals.removeObjCLifetime(); 1041 if (DestPointeeQuals != SrcPointeeQuals && 1042 !DestPointeeQuals.compatiblyIncludes(SrcPointeeQuals)) { 1043 msg = diag::err_bad_cxx_cast_qualifiers_away; 1044 return TC_Failed; 1045 } 1046 } 1047 Kind = CK_BitCast; 1048 return TC_Success; 1049 } 1050 } 1051 else if (DestType->isObjCObjectPointerType()) { 1052 // allow both c-style cast and static_cast of objective-c pointers as 1053 // they are pervasive. 1054 Kind = CK_CPointerToObjCPointerCast; 1055 return TC_Success; 1056 } 1057 else if (CStyle && DestType->isBlockPointerType()) { 1058 // allow c-style cast of void * to block pointers. 1059 Kind = CK_AnyPointerToBlockPointerCast; 1060 return TC_Success; 1061 } 1062 } 1063 } 1064 // Allow arbitray objective-c pointer conversion with static casts. 1065 if (SrcType->isObjCObjectPointerType() && 1066 DestType->isObjCObjectPointerType()) { 1067 Kind = CK_BitCast; 1068 return TC_Success; 1069 } 1070 // Allow ns-pointer to cf-pointer conversion in either direction 1071 // with static casts. 1072 if (!CStyle && 1073 Self.CheckTollFreeBridgeStaticCast(DestType, SrcExpr.get(), Kind)) 1074 return TC_Success; 1075 1076 // We tried everything. Everything! Nothing works! :-( 1077 return TC_NotApplicable; 1078 } 1079 1080 /// Tests whether a conversion according to N2844 is valid. 1081 TryCastResult 1082 TryLValueToRValueCast(Sema &Self, Expr *SrcExpr, QualType DestType, 1083 bool CStyle, CastKind &Kind, CXXCastPath &BasePath, 1084 unsigned &msg) { 1085 // C++0x [expr.static.cast]p3: 1086 // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to 1087 // cv2 T2" if "cv2 T2" is reference-compatible with "cv1 T1". 1088 const RValueReferenceType *R = DestType->getAs<RValueReferenceType>(); 1089 if (!R) 1090 return TC_NotApplicable; 1091 1092 if (!SrcExpr->isGLValue()) 1093 return TC_NotApplicable; 1094 1095 // Because we try the reference downcast before this function, from now on 1096 // this is the only cast possibility, so we issue an error if we fail now. 1097 // FIXME: Should allow casting away constness if CStyle. 1098 bool DerivedToBase; 1099 bool ObjCConversion; 1100 bool ObjCLifetimeConversion; 1101 QualType FromType = SrcExpr->getType(); 1102 QualType ToType = R->getPointeeType(); 1103 if (CStyle) { 1104 FromType = FromType.getUnqualifiedType(); 1105 ToType = ToType.getUnqualifiedType(); 1106 } 1107 1108 if (Self.CompareReferenceRelationship(SrcExpr->getLocStart(), 1109 ToType, FromType, 1110 DerivedToBase, ObjCConversion, 1111 ObjCLifetimeConversion) 1112 < Sema::Ref_Compatible_With_Added_Qualification) { 1113 msg = diag::err_bad_lvalue_to_rvalue_cast; 1114 return TC_Failed; 1115 } 1116 1117 if (DerivedToBase) { 1118 Kind = CK_DerivedToBase; 1119 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 1120 /*DetectVirtual=*/true); 1121 if (!Self.IsDerivedFrom(SrcExpr->getType(), R->getPointeeType(), Paths)) 1122 return TC_NotApplicable; 1123 1124 Self.BuildBasePathArray(Paths, BasePath); 1125 } else 1126 Kind = CK_NoOp; 1127 1128 return TC_Success; 1129 } 1130 1131 /// Tests whether a conversion according to C++ 5.2.9p5 is valid. 1132 TryCastResult 1133 TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, QualType DestType, 1134 bool CStyle, const SourceRange &OpRange, 1135 unsigned &msg, CastKind &Kind, 1136 CXXCastPath &BasePath) { 1137 // C++ 5.2.9p5: An lvalue of type "cv1 B", where B is a class type, can be 1138 // cast to type "reference to cv2 D", where D is a class derived from B, 1139 // if a valid standard conversion from "pointer to D" to "pointer to B" 1140 // exists, cv2 >= cv1, and B is not a virtual base class of D. 1141 // In addition, DR54 clarifies that the base must be accessible in the 1142 // current context. Although the wording of DR54 only applies to the pointer 1143 // variant of this rule, the intent is clearly for it to apply to the this 1144 // conversion as well. 1145 1146 const ReferenceType *DestReference = DestType->getAs<ReferenceType>(); 1147 if (!DestReference) { 1148 return TC_NotApplicable; 1149 } 1150 bool RValueRef = DestReference->isRValueReferenceType(); 1151 if (!RValueRef && !SrcExpr->isLValue()) { 1152 // We know the left side is an lvalue reference, so we can suggest a reason. 1153 msg = diag::err_bad_cxx_cast_rvalue; 1154 return TC_NotApplicable; 1155 } 1156 1157 QualType DestPointee = DestReference->getPointeeType(); 1158 1159 return TryStaticDowncast(Self, 1160 Self.Context.getCanonicalType(SrcExpr->getType()), 1161 Self.Context.getCanonicalType(DestPointee), CStyle, 1162 OpRange, SrcExpr->getType(), DestType, msg, Kind, 1163 BasePath); 1164 } 1165 1166 /// Tests whether a conversion according to C++ 5.2.9p8 is valid. 1167 TryCastResult 1168 TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType, 1169 bool CStyle, const SourceRange &OpRange, 1170 unsigned &msg, CastKind &Kind, 1171 CXXCastPath &BasePath) { 1172 // C++ 5.2.9p8: An rvalue of type "pointer to cv1 B", where B is a class 1173 // type, can be converted to an rvalue of type "pointer to cv2 D", where D 1174 // is a class derived from B, if a valid standard conversion from "pointer 1175 // to D" to "pointer to B" exists, cv2 >= cv1, and B is not a virtual base 1176 // class of D. 1177 // In addition, DR54 clarifies that the base must be accessible in the 1178 // current context. 1179 1180 const PointerType *DestPointer = DestType->getAs<PointerType>(); 1181 if (!DestPointer) { 1182 return TC_NotApplicable; 1183 } 1184 1185 const PointerType *SrcPointer = SrcType->getAs<PointerType>(); 1186 if (!SrcPointer) { 1187 msg = diag::err_bad_static_cast_pointer_nonpointer; 1188 return TC_NotApplicable; 1189 } 1190 1191 return TryStaticDowncast(Self, 1192 Self.Context.getCanonicalType(SrcPointer->getPointeeType()), 1193 Self.Context.getCanonicalType(DestPointer->getPointeeType()), 1194 CStyle, OpRange, SrcType, DestType, msg, Kind, 1195 BasePath); 1196 } 1197 1198 /// TryStaticDowncast - Common functionality of TryStaticReferenceDowncast and 1199 /// TryStaticPointerDowncast. Tests whether a static downcast from SrcType to 1200 /// DestType is possible and allowed. 1201 TryCastResult 1202 TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType, 1203 bool CStyle, const SourceRange &OpRange, QualType OrigSrcType, 1204 QualType OrigDestType, unsigned &msg, 1205 CastKind &Kind, CXXCastPath &BasePath) { 1206 // We can only work with complete types. But don't complain if it doesn't work 1207 if (Self.RequireCompleteType(OpRange.getBegin(), SrcType, 0) || 1208 Self.RequireCompleteType(OpRange.getBegin(), DestType, 0)) 1209 return TC_NotApplicable; 1210 1211 // Downcast can only happen in class hierarchies, so we need classes. 1212 if (!DestType->getAs<RecordType>() || !SrcType->getAs<RecordType>()) { 1213 return TC_NotApplicable; 1214 } 1215 1216 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 1217 /*DetectVirtual=*/true); 1218 if (!Self.IsDerivedFrom(DestType, SrcType, Paths)) { 1219 return TC_NotApplicable; 1220 } 1221 1222 // Target type does derive from source type. Now we're serious. If an error 1223 // appears now, it's not ignored. 1224 // This may not be entirely in line with the standard. Take for example: 1225 // struct A {}; 1226 // struct B : virtual A { 1227 // B(A&); 1228 // }; 1229 // 1230 // void f() 1231 // { 1232 // (void)static_cast<const B&>(*((A*)0)); 1233 // } 1234 // As far as the standard is concerned, p5 does not apply (A is virtual), so 1235 // p2 should be used instead - "const B& t(*((A*)0));" is perfectly valid. 1236 // However, both GCC and Comeau reject this example, and accepting it would 1237 // mean more complex code if we're to preserve the nice error message. 1238 // FIXME: Being 100% compliant here would be nice to have. 1239 1240 // Must preserve cv, as always, unless we're in C-style mode. 1241 if (!CStyle && !DestType.isAtLeastAsQualifiedAs(SrcType)) { 1242 msg = diag::err_bad_cxx_cast_qualifiers_away; 1243 return TC_Failed; 1244 } 1245 1246 if (Paths.isAmbiguous(SrcType.getUnqualifiedType())) { 1247 // This code is analoguous to that in CheckDerivedToBaseConversion, except 1248 // that it builds the paths in reverse order. 1249 // To sum up: record all paths to the base and build a nice string from 1250 // them. Use it to spice up the error message. 1251 if (!Paths.isRecordingPaths()) { 1252 Paths.clear(); 1253 Paths.setRecordingPaths(true); 1254 Self.IsDerivedFrom(DestType, SrcType, Paths); 1255 } 1256 std::string PathDisplayStr; 1257 std::set<unsigned> DisplayedPaths; 1258 for (CXXBasePaths::paths_iterator PI = Paths.begin(), PE = Paths.end(); 1259 PI != PE; ++PI) { 1260 if (DisplayedPaths.insert(PI->back().SubobjectNumber).second) { 1261 // We haven't displayed a path to this particular base 1262 // class subobject yet. 1263 PathDisplayStr += "\n "; 1264 for (CXXBasePath::const_reverse_iterator EI = PI->rbegin(), 1265 EE = PI->rend(); 1266 EI != EE; ++EI) 1267 PathDisplayStr += EI->Base->getType().getAsString() + " -> "; 1268 PathDisplayStr += QualType(DestType).getAsString(); 1269 } 1270 } 1271 1272 Self.Diag(OpRange.getBegin(), diag::err_ambiguous_base_to_derived_cast) 1273 << QualType(SrcType).getUnqualifiedType() 1274 << QualType(DestType).getUnqualifiedType() 1275 << PathDisplayStr << OpRange; 1276 msg = 0; 1277 return TC_Failed; 1278 } 1279 1280 if (Paths.getDetectedVirtual() != nullptr) { 1281 QualType VirtualBase(Paths.getDetectedVirtual(), 0); 1282 Self.Diag(OpRange.getBegin(), diag::err_static_downcast_via_virtual) 1283 << OrigSrcType << OrigDestType << VirtualBase << OpRange; 1284 msg = 0; 1285 return TC_Failed; 1286 } 1287 1288 if (!CStyle) { 1289 switch (Self.CheckBaseClassAccess(OpRange.getBegin(), 1290 SrcType, DestType, 1291 Paths.front(), 1292 diag::err_downcast_from_inaccessible_base)) { 1293 case Sema::AR_accessible: 1294 case Sema::AR_delayed: // be optimistic 1295 case Sema::AR_dependent: // be optimistic 1296 break; 1297 1298 case Sema::AR_inaccessible: 1299 msg = 0; 1300 return TC_Failed; 1301 } 1302 } 1303 1304 Self.BuildBasePathArray(Paths, BasePath); 1305 Kind = CK_BaseToDerived; 1306 return TC_Success; 1307 } 1308 1309 /// TryStaticMemberPointerUpcast - Tests whether a conversion according to 1310 /// C++ 5.2.9p9 is valid: 1311 /// 1312 /// An rvalue of type "pointer to member of D of type cv1 T" can be 1313 /// converted to an rvalue of type "pointer to member of B of type cv2 T", 1314 /// where B is a base class of D [...]. 1315 /// 1316 TryCastResult 1317 TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType, 1318 QualType DestType, bool CStyle, 1319 const SourceRange &OpRange, 1320 unsigned &msg, CastKind &Kind, 1321 CXXCastPath &BasePath) { 1322 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(); 1323 if (!DestMemPtr) 1324 return TC_NotApplicable; 1325 1326 bool WasOverloadedFunction = false; 1327 DeclAccessPair FoundOverload; 1328 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) { 1329 if (FunctionDecl *Fn 1330 = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), DestType, false, 1331 FoundOverload)) { 1332 CXXMethodDecl *M = cast<CXXMethodDecl>(Fn); 1333 SrcType = Self.Context.getMemberPointerType(Fn->getType(), 1334 Self.Context.getTypeDeclType(M->getParent()).getTypePtr()); 1335 WasOverloadedFunction = true; 1336 } 1337 } 1338 1339 const MemberPointerType *SrcMemPtr = SrcType->getAs<MemberPointerType>(); 1340 if (!SrcMemPtr) { 1341 msg = diag::err_bad_static_cast_member_pointer_nonmp; 1342 return TC_NotApplicable; 1343 } 1344 1345 // T == T, modulo cv 1346 if (!Self.Context.hasSameUnqualifiedType(SrcMemPtr->getPointeeType(), 1347 DestMemPtr->getPointeeType())) 1348 return TC_NotApplicable; 1349 1350 // B base of D 1351 QualType SrcClass(SrcMemPtr->getClass(), 0); 1352 QualType DestClass(DestMemPtr->getClass(), 0); 1353 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 1354 /*DetectVirtual=*/true); 1355 if (Self.RequireCompleteType(OpRange.getBegin(), SrcClass, 0) || 1356 !Self.IsDerivedFrom(SrcClass, DestClass, Paths)) { 1357 return TC_NotApplicable; 1358 } 1359 1360 // B is a base of D. But is it an allowed base? If not, it's a hard error. 1361 if (Paths.isAmbiguous(Self.Context.getCanonicalType(DestClass))) { 1362 Paths.clear(); 1363 Paths.setRecordingPaths(true); 1364 bool StillOkay = Self.IsDerivedFrom(SrcClass, DestClass, Paths); 1365 assert(StillOkay); 1366 (void)StillOkay; 1367 std::string PathDisplayStr = Self.getAmbiguousPathsDisplayString(Paths); 1368 Self.Diag(OpRange.getBegin(), diag::err_ambiguous_memptr_conv) 1369 << 1 << SrcClass << DestClass << PathDisplayStr << OpRange; 1370 msg = 0; 1371 return TC_Failed; 1372 } 1373 1374 if (const RecordType *VBase = Paths.getDetectedVirtual()) { 1375 Self.Diag(OpRange.getBegin(), diag::err_memptr_conv_via_virtual) 1376 << SrcClass << DestClass << QualType(VBase, 0) << OpRange; 1377 msg = 0; 1378 return TC_Failed; 1379 } 1380 1381 if (!CStyle) { 1382 switch (Self.CheckBaseClassAccess(OpRange.getBegin(), 1383 DestClass, SrcClass, 1384 Paths.front(), 1385 diag::err_upcast_to_inaccessible_base)) { 1386 case Sema::AR_accessible: 1387 case Sema::AR_delayed: 1388 case Sema::AR_dependent: 1389 // Optimistically assume that the delayed and dependent cases 1390 // will work out. 1391 break; 1392 1393 case Sema::AR_inaccessible: 1394 msg = 0; 1395 return TC_Failed; 1396 } 1397 } 1398 1399 if (WasOverloadedFunction) { 1400 // Resolve the address of the overloaded function again, this time 1401 // allowing complaints if something goes wrong. 1402 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), 1403 DestType, 1404 true, 1405 FoundOverload); 1406 if (!Fn) { 1407 msg = 0; 1408 return TC_Failed; 1409 } 1410 1411 SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr, FoundOverload, Fn); 1412 if (!SrcExpr.isUsable()) { 1413 msg = 0; 1414 return TC_Failed; 1415 } 1416 } 1417 1418 Self.BuildBasePathArray(Paths, BasePath); 1419 Kind = CK_DerivedToBaseMemberPointer; 1420 return TC_Success; 1421 } 1422 1423 /// TryStaticImplicitCast - Tests whether a conversion according to C++ 5.2.9p2 1424 /// is valid: 1425 /// 1426 /// An expression e can be explicitly converted to a type T using a 1427 /// @c static_cast if the declaration "T t(e);" is well-formed [...]. 1428 TryCastResult 1429 TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, QualType DestType, 1430 Sema::CheckedConversionKind CCK, 1431 const SourceRange &OpRange, unsigned &msg, 1432 CastKind &Kind, bool ListInitialization) { 1433 if (DestType->isRecordType()) { 1434 if (Self.RequireCompleteType(OpRange.getBegin(), DestType, 1435 diag::err_bad_dynamic_cast_incomplete) || 1436 Self.RequireNonAbstractType(OpRange.getBegin(), DestType, 1437 diag::err_allocation_of_abstract_type)) { 1438 msg = 0; 1439 return TC_Failed; 1440 } 1441 } else if (DestType->isMemberPointerType()) { 1442 if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) { 1443 Self.RequireCompleteType(OpRange.getBegin(), DestType, 0); 1444 } 1445 } 1446 1447 InitializedEntity Entity = InitializedEntity::InitializeTemporary(DestType); 1448 InitializationKind InitKind 1449 = (CCK == Sema::CCK_CStyleCast) 1450 ? InitializationKind::CreateCStyleCast(OpRange.getBegin(), OpRange, 1451 ListInitialization) 1452 : (CCK == Sema::CCK_FunctionalCast) 1453 ? InitializationKind::CreateFunctionalCast(OpRange, ListInitialization) 1454 : InitializationKind::CreateCast(OpRange); 1455 Expr *SrcExprRaw = SrcExpr.get(); 1456 InitializationSequence InitSeq(Self, Entity, InitKind, SrcExprRaw); 1457 1458 // At this point of CheckStaticCast, if the destination is a reference, 1459 // or the expression is an overload expression this has to work. 1460 // There is no other way that works. 1461 // On the other hand, if we're checking a C-style cast, we've still got 1462 // the reinterpret_cast way. 1463 bool CStyle 1464 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast); 1465 if (InitSeq.Failed() && (CStyle || !DestType->isReferenceType())) 1466 return TC_NotApplicable; 1467 1468 ExprResult Result = InitSeq.Perform(Self, Entity, InitKind, SrcExprRaw); 1469 if (Result.isInvalid()) { 1470 msg = 0; 1471 return TC_Failed; 1472 } 1473 1474 if (InitSeq.isConstructorInitialization()) 1475 Kind = CK_ConstructorConversion; 1476 else 1477 Kind = CK_NoOp; 1478 1479 SrcExpr = Result; 1480 return TC_Success; 1481 } 1482 1483 /// TryConstCast - See if a const_cast from source to destination is allowed, 1484 /// and perform it if it is. 1485 static TryCastResult TryConstCast(Sema &Self, ExprResult &SrcExpr, 1486 QualType DestType, bool CStyle, 1487 unsigned &msg) { 1488 DestType = Self.Context.getCanonicalType(DestType); 1489 QualType SrcType = SrcExpr.get()->getType(); 1490 bool NeedToMaterializeTemporary = false; 1491 1492 if (const ReferenceType *DestTypeTmp =DestType->getAs<ReferenceType>()) { 1493 // C++11 5.2.11p4: 1494 // if a pointer to T1 can be explicitly converted to the type "pointer to 1495 // T2" using a const_cast, then the following conversions can also be 1496 // made: 1497 // -- an lvalue of type T1 can be explicitly converted to an lvalue of 1498 // type T2 using the cast const_cast<T2&>; 1499 // -- a glvalue of type T1 can be explicitly converted to an xvalue of 1500 // type T2 using the cast const_cast<T2&&>; and 1501 // -- if T1 is a class type, a prvalue of type T1 can be explicitly 1502 // converted to an xvalue of type T2 using the cast const_cast<T2&&>. 1503 1504 if (isa<LValueReferenceType>(DestTypeTmp) && !SrcExpr.get()->isLValue()) { 1505 // Cannot const_cast non-lvalue to lvalue reference type. But if this 1506 // is C-style, static_cast might find a way, so we simply suggest a 1507 // message and tell the parent to keep searching. 1508 msg = diag::err_bad_cxx_cast_rvalue; 1509 return TC_NotApplicable; 1510 } 1511 1512 if (isa<RValueReferenceType>(DestTypeTmp) && SrcExpr.get()->isRValue()) { 1513 if (!SrcType->isRecordType()) { 1514 // Cannot const_cast non-class prvalue to rvalue reference type. But if 1515 // this is C-style, static_cast can do this. 1516 msg = diag::err_bad_cxx_cast_rvalue; 1517 return TC_NotApplicable; 1518 } 1519 1520 // Materialize the class prvalue so that the const_cast can bind a 1521 // reference to it. 1522 NeedToMaterializeTemporary = true; 1523 } 1524 1525 // It's not completely clear under the standard whether we can 1526 // const_cast bit-field gl-values. Doing so would not be 1527 // intrinsically complicated, but for now, we say no for 1528 // consistency with other compilers and await the word of the 1529 // committee. 1530 if (SrcExpr.get()->refersToBitField()) { 1531 msg = diag::err_bad_cxx_cast_bitfield; 1532 return TC_NotApplicable; 1533 } 1534 1535 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType()); 1536 SrcType = Self.Context.getPointerType(SrcType); 1537 } 1538 1539 // C++ 5.2.11p5: For a const_cast involving pointers to data members [...] 1540 // the rules for const_cast are the same as those used for pointers. 1541 1542 if (!DestType->isPointerType() && 1543 !DestType->isMemberPointerType() && 1544 !DestType->isObjCObjectPointerType()) { 1545 // Cannot cast to non-pointer, non-reference type. Note that, if DestType 1546 // was a reference type, we converted it to a pointer above. 1547 // The status of rvalue references isn't entirely clear, but it looks like 1548 // conversion to them is simply invalid. 1549 // C++ 5.2.11p3: For two pointer types [...] 1550 if (!CStyle) 1551 msg = diag::err_bad_const_cast_dest; 1552 return TC_NotApplicable; 1553 } 1554 if (DestType->isFunctionPointerType() || 1555 DestType->isMemberFunctionPointerType()) { 1556 // Cannot cast direct function pointers. 1557 // C++ 5.2.11p2: [...] where T is any object type or the void type [...] 1558 // T is the ultimate pointee of source and target type. 1559 if (!CStyle) 1560 msg = diag::err_bad_const_cast_dest; 1561 return TC_NotApplicable; 1562 } 1563 SrcType = Self.Context.getCanonicalType(SrcType); 1564 1565 // Unwrap the pointers. Ignore qualifiers. Terminate early if the types are 1566 // completely equal. 1567 // C++ 5.2.11p3 describes the core semantics of const_cast. All cv specifiers 1568 // in multi-level pointers may change, but the level count must be the same, 1569 // as must be the final pointee type. 1570 while (SrcType != DestType && 1571 Self.Context.UnwrapSimilarPointerTypes(SrcType, DestType)) { 1572 Qualifiers SrcQuals, DestQuals; 1573 SrcType = Self.Context.getUnqualifiedArrayType(SrcType, SrcQuals); 1574 DestType = Self.Context.getUnqualifiedArrayType(DestType, DestQuals); 1575 1576 // const_cast is permitted to strip cvr-qualifiers, only. Make sure that 1577 // the other qualifiers (e.g., address spaces) are identical. 1578 SrcQuals.removeCVRQualifiers(); 1579 DestQuals.removeCVRQualifiers(); 1580 if (SrcQuals != DestQuals) 1581 return TC_NotApplicable; 1582 } 1583 1584 // Since we're dealing in canonical types, the remainder must be the same. 1585 if (SrcType != DestType) 1586 return TC_NotApplicable; 1587 1588 if (NeedToMaterializeTemporary) 1589 // This is a const_cast from a class prvalue to an rvalue reference type. 1590 // Materialize a temporary to store the result of the conversion. 1591 SrcExpr = new (Self.Context) MaterializeTemporaryExpr( 1592 SrcType, SrcExpr.get(), /*IsLValueReference*/ false); 1593 1594 return TC_Success; 1595 } 1596 1597 // Checks for undefined behavior in reinterpret_cast. 1598 // The cases that is checked for is: 1599 // *reinterpret_cast<T*>(&a) 1600 // reinterpret_cast<T&>(a) 1601 // where accessing 'a' as type 'T' will result in undefined behavior. 1602 void Sema::CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType, 1603 bool IsDereference, 1604 SourceRange Range) { 1605 unsigned DiagID = IsDereference ? 1606 diag::warn_pointer_indirection_from_incompatible_type : 1607 diag::warn_undefined_reinterpret_cast; 1608 1609 if (Diags.getDiagnosticLevel(DiagID, Range.getBegin()) == 1610 DiagnosticsEngine::Ignored) { 1611 return; 1612 } 1613 1614 QualType SrcTy, DestTy; 1615 if (IsDereference) { 1616 if (!SrcType->getAs<PointerType>() || !DestType->getAs<PointerType>()) { 1617 return; 1618 } 1619 SrcTy = SrcType->getPointeeType(); 1620 DestTy = DestType->getPointeeType(); 1621 } else { 1622 if (!DestType->getAs<ReferenceType>()) { 1623 return; 1624 } 1625 SrcTy = SrcType; 1626 DestTy = DestType->getPointeeType(); 1627 } 1628 1629 // Cast is compatible if the types are the same. 1630 if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) { 1631 return; 1632 } 1633 // or one of the types is a char or void type 1634 if (DestTy->isAnyCharacterType() || DestTy->isVoidType() || 1635 SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) { 1636 return; 1637 } 1638 // or one of the types is a tag type. 1639 if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) { 1640 return; 1641 } 1642 1643 // FIXME: Scoped enums? 1644 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || 1645 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { 1646 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) { 1647 return; 1648 } 1649 } 1650 1651 Diag(Range.getBegin(), DiagID) << SrcType << DestType << Range; 1652 } 1653 1654 static void DiagnoseCastOfObjCSEL(Sema &Self, const ExprResult &SrcExpr, 1655 QualType DestType) { 1656 QualType SrcType = SrcExpr.get()->getType(); 1657 if (Self.Context.hasSameType(SrcType, DestType)) 1658 return; 1659 if (const PointerType *SrcPtrTy = SrcType->getAs<PointerType>()) 1660 if (SrcPtrTy->isObjCSelType()) { 1661 QualType DT = DestType; 1662 if (isa<PointerType>(DestType)) 1663 DT = DestType->getPointeeType(); 1664 if (!DT.getUnqualifiedType()->isVoidType()) 1665 Self.Diag(SrcExpr.get()->getExprLoc(), 1666 diag::warn_cast_pointer_from_sel) 1667 << SrcType << DestType << SrcExpr.get()->getSourceRange(); 1668 } 1669 } 1670 1671 static void checkIntToPointerCast(bool CStyle, SourceLocation Loc, 1672 const Expr *SrcExpr, QualType DestType, 1673 Sema &Self) { 1674 QualType SrcType = SrcExpr->getType(); 1675 1676 // Not warning on reinterpret_cast, boolean, constant expressions, etc 1677 // are not explicit design choices, but consistent with GCC's behavior. 1678 // Feel free to modify them if you've reason/evidence for an alternative. 1679 if (CStyle && SrcType->isIntegralType(Self.Context) 1680 && !SrcType->isBooleanType() 1681 && !SrcType->isEnumeralType() 1682 && !SrcExpr->isIntegerConstantExpr(Self.Context) 1683 && Self.Context.getTypeSize(DestType) > 1684 Self.Context.getTypeSize(SrcType)) { 1685 // Separate between casts to void* and non-void* pointers. 1686 // Some APIs use (abuse) void* for something like a user context, 1687 // and often that value is an integer even if it isn't a pointer itself. 1688 // Having a separate warning flag allows users to control the warning 1689 // for their workflow. 1690 unsigned Diag = DestType->isVoidPointerType() ? 1691 diag::warn_int_to_void_pointer_cast 1692 : diag::warn_int_to_pointer_cast; 1693 Self.Diag(Loc, Diag) << SrcType << DestType; 1694 } 1695 } 1696 1697 static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr, 1698 QualType DestType, bool CStyle, 1699 const SourceRange &OpRange, 1700 unsigned &msg, 1701 CastKind &Kind) { 1702 bool IsLValueCast = false; 1703 1704 DestType = Self.Context.getCanonicalType(DestType); 1705 QualType SrcType = SrcExpr.get()->getType(); 1706 1707 // Is the source an overloaded name? (i.e. &foo) 1708 // If so, reinterpret_cast can not help us here (13.4, p1, bullet 5) ... 1709 if (SrcType == Self.Context.OverloadTy) { 1710 // ... unless foo<int> resolves to an lvalue unambiguously. 1711 // TODO: what if this fails because of DiagnoseUseOfDecl or something 1712 // like it? 1713 ExprResult SingleFunctionExpr = SrcExpr; 1714 if (Self.ResolveAndFixSingleFunctionTemplateSpecialization( 1715 SingleFunctionExpr, 1716 Expr::getValueKindForType(DestType) == VK_RValue // Convert Fun to Ptr 1717 ) && SingleFunctionExpr.isUsable()) { 1718 SrcExpr = SingleFunctionExpr; 1719 SrcType = SrcExpr.get()->getType(); 1720 } else { 1721 return TC_NotApplicable; 1722 } 1723 } 1724 1725 if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) { 1726 if (!SrcExpr.get()->isGLValue()) { 1727 // Cannot cast non-glvalue to (lvalue or rvalue) reference type. See the 1728 // similar comment in const_cast. 1729 msg = diag::err_bad_cxx_cast_rvalue; 1730 return TC_NotApplicable; 1731 } 1732 1733 if (!CStyle) { 1734 Self.CheckCompatibleReinterpretCast(SrcType, DestType, 1735 /*isDereference=*/false, OpRange); 1736 } 1737 1738 // C++ 5.2.10p10: [...] a reference cast reinterpret_cast<T&>(x) has the 1739 // same effect as the conversion *reinterpret_cast<T*>(&x) with the 1740 // built-in & and * operators. 1741 1742 const char *inappropriate = nullptr; 1743 switch (SrcExpr.get()->getObjectKind()) { 1744 case OK_Ordinary: 1745 break; 1746 case OK_BitField: inappropriate = "bit-field"; break; 1747 case OK_VectorComponent: inappropriate = "vector element"; break; 1748 case OK_ObjCProperty: inappropriate = "property expression"; break; 1749 case OK_ObjCSubscript: inappropriate = "container subscripting expression"; 1750 break; 1751 } 1752 if (inappropriate) { 1753 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_reference) 1754 << inappropriate << DestType 1755 << OpRange << SrcExpr.get()->getSourceRange(); 1756 msg = 0; SrcExpr = ExprError(); 1757 return TC_NotApplicable; 1758 } 1759 1760 // This code does this transformation for the checked types. 1761 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType()); 1762 SrcType = Self.Context.getPointerType(SrcType); 1763 1764 IsLValueCast = true; 1765 } 1766 1767 // Canonicalize source for comparison. 1768 SrcType = Self.Context.getCanonicalType(SrcType); 1769 1770 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(), 1771 *SrcMemPtr = SrcType->getAs<MemberPointerType>(); 1772 if (DestMemPtr && SrcMemPtr) { 1773 // C++ 5.2.10p9: An rvalue of type "pointer to member of X of type T1" 1774 // can be explicitly converted to an rvalue of type "pointer to member 1775 // of Y of type T2" if T1 and T2 are both function types or both object 1776 // types. 1777 if (DestMemPtr->getPointeeType()->isFunctionType() != 1778 SrcMemPtr->getPointeeType()->isFunctionType()) 1779 return TC_NotApplicable; 1780 1781 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away 1782 // constness. 1783 // A reinterpret_cast followed by a const_cast can, though, so in C-style, 1784 // we accept it. 1785 if (CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle, 1786 /*CheckObjCLifetime=*/CStyle)) { 1787 msg = diag::err_bad_cxx_cast_qualifiers_away; 1788 return TC_Failed; 1789 } 1790 1791 if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) { 1792 // We need to determine the inheritance model that the class will use if 1793 // haven't yet. 1794 Self.RequireCompleteType(OpRange.getBegin(), SrcType, 0); 1795 Self.RequireCompleteType(OpRange.getBegin(), DestType, 0); 1796 } 1797 1798 // Don't allow casting between member pointers of different sizes. 1799 if (Self.Context.getTypeSize(DestMemPtr) != 1800 Self.Context.getTypeSize(SrcMemPtr)) { 1801 msg = diag::err_bad_cxx_cast_member_pointer_size; 1802 return TC_Failed; 1803 } 1804 1805 // A valid member pointer cast. 1806 assert(!IsLValueCast); 1807 Kind = CK_ReinterpretMemberPointer; 1808 return TC_Success; 1809 } 1810 1811 // See below for the enumeral issue. 1812 if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) { 1813 // C++0x 5.2.10p4: A pointer can be explicitly converted to any integral 1814 // type large enough to hold it. A value of std::nullptr_t can be 1815 // converted to an integral type; the conversion has the same meaning 1816 // and validity as a conversion of (void*)0 to the integral type. 1817 if (Self.Context.getTypeSize(SrcType) > 1818 Self.Context.getTypeSize(DestType)) { 1819 msg = diag::err_bad_reinterpret_cast_small_int; 1820 return TC_Failed; 1821 } 1822 Kind = CK_PointerToIntegral; 1823 return TC_Success; 1824 } 1825 1826 bool destIsVector = DestType->isVectorType(); 1827 bool srcIsVector = SrcType->isVectorType(); 1828 if (srcIsVector || destIsVector) { 1829 // FIXME: Should this also apply to floating point types? 1830 bool srcIsScalar = SrcType->isIntegralType(Self.Context); 1831 bool destIsScalar = DestType->isIntegralType(Self.Context); 1832 1833 // Check if this is a cast between a vector and something else. 1834 if (!(srcIsScalar && destIsVector) && !(srcIsVector && destIsScalar) && 1835 !(srcIsVector && destIsVector)) 1836 return TC_NotApplicable; 1837 1838 // If both types have the same size, we can successfully cast. 1839 if (Self.Context.getTypeSize(SrcType) 1840 == Self.Context.getTypeSize(DestType)) { 1841 Kind = CK_BitCast; 1842 return TC_Success; 1843 } 1844 1845 if (destIsScalar) 1846 msg = diag::err_bad_cxx_cast_vector_to_scalar_different_size; 1847 else if (srcIsScalar) 1848 msg = diag::err_bad_cxx_cast_scalar_to_vector_different_size; 1849 else 1850 msg = diag::err_bad_cxx_cast_vector_to_vector_different_size; 1851 1852 return TC_Failed; 1853 } 1854 1855 if (SrcType == DestType) { 1856 // C++ 5.2.10p2 has a note that mentions that, subject to all other 1857 // restrictions, a cast to the same type is allowed so long as it does not 1858 // cast away constness. In C++98, the intent was not entirely clear here, 1859 // since all other paragraphs explicitly forbid casts to the same type. 1860 // C++11 clarifies this case with p2. 1861 // 1862 // The only allowed types are: integral, enumeration, pointer, or 1863 // pointer-to-member types. We also won't restrict Obj-C pointers either. 1864 Kind = CK_NoOp; 1865 TryCastResult Result = TC_NotApplicable; 1866 if (SrcType->isIntegralOrEnumerationType() || 1867 SrcType->isAnyPointerType() || 1868 SrcType->isMemberPointerType() || 1869 SrcType->isBlockPointerType()) { 1870 Result = TC_Success; 1871 } 1872 return Result; 1873 } 1874 1875 bool destIsPtr = DestType->isAnyPointerType() || 1876 DestType->isBlockPointerType(); 1877 bool srcIsPtr = SrcType->isAnyPointerType() || 1878 SrcType->isBlockPointerType(); 1879 if (!destIsPtr && !srcIsPtr) { 1880 // Except for std::nullptr_t->integer and lvalue->reference, which are 1881 // handled above, at least one of the two arguments must be a pointer. 1882 return TC_NotApplicable; 1883 } 1884 1885 if (DestType->isIntegralType(Self.Context)) { 1886 assert(srcIsPtr && "One type must be a pointer"); 1887 // C++ 5.2.10p4: A pointer can be explicitly converted to any integral 1888 // type large enough to hold it; except in Microsoft mode, where the 1889 // integral type size doesn't matter (except we don't allow bool). 1890 bool MicrosoftException = Self.getLangOpts().MicrosoftExt && 1891 !DestType->isBooleanType(); 1892 if ((Self.Context.getTypeSize(SrcType) > 1893 Self.Context.getTypeSize(DestType)) && 1894 !MicrosoftException) { 1895 msg = diag::err_bad_reinterpret_cast_small_int; 1896 return TC_Failed; 1897 } 1898 Kind = CK_PointerToIntegral; 1899 return TC_Success; 1900 } 1901 1902 if (SrcType->isIntegralOrEnumerationType()) { 1903 assert(destIsPtr && "One type must be a pointer"); 1904 checkIntToPointerCast(CStyle, OpRange.getBegin(), SrcExpr.get(), DestType, 1905 Self); 1906 // C++ 5.2.10p5: A value of integral or enumeration type can be explicitly 1907 // converted to a pointer. 1908 // C++ 5.2.10p9: [Note: ...a null pointer constant of integral type is not 1909 // necessarily converted to a null pointer value.] 1910 Kind = CK_IntegralToPointer; 1911 return TC_Success; 1912 } 1913 1914 if (!destIsPtr || !srcIsPtr) { 1915 // With the valid non-pointer conversions out of the way, we can be even 1916 // more stringent. 1917 return TC_NotApplicable; 1918 } 1919 1920 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away constness. 1921 // The C-style cast operator can. 1922 if (CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle, 1923 /*CheckObjCLifetime=*/CStyle)) { 1924 msg = diag::err_bad_cxx_cast_qualifiers_away; 1925 return TC_Failed; 1926 } 1927 1928 // Cannot convert between block pointers and Objective-C object pointers. 1929 if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) || 1930 (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType())) 1931 return TC_NotApplicable; 1932 1933 if (IsLValueCast) { 1934 Kind = CK_LValueBitCast; 1935 } else if (DestType->isObjCObjectPointerType()) { 1936 Kind = Self.PrepareCastToObjCObjectPointer(SrcExpr); 1937 } else if (DestType->isBlockPointerType()) { 1938 if (!SrcType->isBlockPointerType()) { 1939 Kind = CK_AnyPointerToBlockPointerCast; 1940 } else { 1941 Kind = CK_BitCast; 1942 } 1943 } else { 1944 Kind = CK_BitCast; 1945 } 1946 1947 // Any pointer can be cast to an Objective-C pointer type with a C-style 1948 // cast. 1949 if (CStyle && DestType->isObjCObjectPointerType()) { 1950 return TC_Success; 1951 } 1952 if (CStyle) 1953 DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType); 1954 1955 // Not casting away constness, so the only remaining check is for compatible 1956 // pointer categories. 1957 1958 if (SrcType->isFunctionPointerType()) { 1959 if (DestType->isFunctionPointerType()) { 1960 // C++ 5.2.10p6: A pointer to a function can be explicitly converted to 1961 // a pointer to a function of a different type. 1962 return TC_Success; 1963 } 1964 1965 // C++0x 5.2.10p8: Converting a pointer to a function into a pointer to 1966 // an object type or vice versa is conditionally-supported. 1967 // Compilers support it in C++03 too, though, because it's necessary for 1968 // casting the return value of dlsym() and GetProcAddress(). 1969 // FIXME: Conditionally-supported behavior should be configurable in the 1970 // TargetInfo or similar. 1971 Self.Diag(OpRange.getBegin(), 1972 Self.getLangOpts().CPlusPlus11 ? 1973 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj) 1974 << OpRange; 1975 return TC_Success; 1976 } 1977 1978 if (DestType->isFunctionPointerType()) { 1979 // See above. 1980 Self.Diag(OpRange.getBegin(), 1981 Self.getLangOpts().CPlusPlus11 ? 1982 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj) 1983 << OpRange; 1984 return TC_Success; 1985 } 1986 1987 // C++ 5.2.10p7: A pointer to an object can be explicitly converted to 1988 // a pointer to an object of different type. 1989 // Void pointers are not specified, but supported by every compiler out there. 1990 // So we finish by allowing everything that remains - it's got to be two 1991 // object pointers. 1992 return TC_Success; 1993 } 1994 1995 void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle, 1996 bool ListInitialization) { 1997 // Handle placeholders. 1998 if (isPlaceholder()) { 1999 // C-style casts can resolve __unknown_any types. 2000 if (claimPlaceholder(BuiltinType::UnknownAny)) { 2001 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType, 2002 SrcExpr.get(), Kind, 2003 ValueKind, BasePath); 2004 return; 2005 } 2006 2007 checkNonOverloadPlaceholders(); 2008 if (SrcExpr.isInvalid()) 2009 return; 2010 } 2011 2012 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void". 2013 // This test is outside everything else because it's the only case where 2014 // a non-lvalue-reference target type does not lead to decay. 2015 if (DestType->isVoidType()) { 2016 Kind = CK_ToVoid; 2017 2018 if (claimPlaceholder(BuiltinType::Overload)) { 2019 Self.ResolveAndFixSingleFunctionTemplateSpecialization( 2020 SrcExpr, /* Decay Function to ptr */ false, 2021 /* Complain */ true, DestRange, DestType, 2022 diag::err_bad_cstyle_cast_overload); 2023 if (SrcExpr.isInvalid()) 2024 return; 2025 } 2026 2027 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get()); 2028 return; 2029 } 2030 2031 // If the type is dependent, we won't do any other semantic analysis now. 2032 if (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() || 2033 SrcExpr.get()->isValueDependent()) { 2034 assert(Kind == CK_Dependent); 2035 return; 2036 } 2037 2038 if (ValueKind == VK_RValue && !DestType->isRecordType() && 2039 !isPlaceholder(BuiltinType::Overload)) { 2040 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get()); 2041 if (SrcExpr.isInvalid()) 2042 return; 2043 } 2044 2045 // AltiVec vector initialization with a single literal. 2046 if (const VectorType *vecTy = DestType->getAs<VectorType>()) 2047 if (vecTy->getVectorKind() == VectorType::AltiVecVector 2048 && (SrcExpr.get()->getType()->isIntegerType() 2049 || SrcExpr.get()->getType()->isFloatingType())) { 2050 Kind = CK_VectorSplat; 2051 return; 2052 } 2053 2054 // C++ [expr.cast]p5: The conversions performed by 2055 // - a const_cast, 2056 // - a static_cast, 2057 // - a static_cast followed by a const_cast, 2058 // - a reinterpret_cast, or 2059 // - a reinterpret_cast followed by a const_cast, 2060 // can be performed using the cast notation of explicit type conversion. 2061 // [...] If a conversion can be interpreted in more than one of the ways 2062 // listed above, the interpretation that appears first in the list is used, 2063 // even if a cast resulting from that interpretation is ill-formed. 2064 // In plain language, this means trying a const_cast ... 2065 unsigned msg = diag::err_bad_cxx_cast_generic; 2066 TryCastResult tcr = TryConstCast(Self, SrcExpr, DestType, 2067 /*CStyle*/true, msg); 2068 if (SrcExpr.isInvalid()) 2069 return; 2070 if (tcr == TC_Success) 2071 Kind = CK_NoOp; 2072 2073 Sema::CheckedConversionKind CCK 2074 = FunctionalStyle? Sema::CCK_FunctionalCast 2075 : Sema::CCK_CStyleCast; 2076 if (tcr == TC_NotApplicable) { 2077 // ... or if that is not possible, a static_cast, ignoring const, ... 2078 tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange, 2079 msg, Kind, BasePath, ListInitialization); 2080 if (SrcExpr.isInvalid()) 2081 return; 2082 2083 if (tcr == TC_NotApplicable) { 2084 // ... and finally a reinterpret_cast, ignoring const. 2085 tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/true, 2086 OpRange, msg, Kind); 2087 if (SrcExpr.isInvalid()) 2088 return; 2089 } 2090 } 2091 2092 if (Self.getLangOpts().ObjCAutoRefCount && tcr == TC_Success) 2093 checkObjCARCConversion(CCK); 2094 2095 if (tcr != TC_Success && msg != 0) { 2096 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) { 2097 DeclAccessPair Found; 2098 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), 2099 DestType, 2100 /*Complain*/ true, 2101 Found); 2102 if (Fn) { 2103 // If DestType is a function type (not to be confused with the function 2104 // pointer type), it will be possible to resolve the function address, 2105 // but the type cast should be considered as failure. 2106 OverloadExpr *OE = OverloadExpr::find(SrcExpr.get()).Expression; 2107 Self.Diag(OpRange.getBegin(), diag::err_bad_cstyle_cast_overload) 2108 << OE->getName() << DestType << OpRange 2109 << OE->getQualifierLoc().getSourceRange(); 2110 Self.NoteAllOverloadCandidates(SrcExpr.get()); 2111 } 2112 } else { 2113 diagnoseBadCast(Self, msg, (FunctionalStyle ? CT_Functional : CT_CStyle), 2114 OpRange, SrcExpr.get(), DestType, ListInitialization); 2115 } 2116 } else if (Kind == CK_BitCast) { 2117 checkCastAlign(); 2118 } 2119 2120 // Clear out SrcExpr if there was a fatal error. 2121 if (tcr != TC_Success) 2122 SrcExpr = ExprError(); 2123 } 2124 2125 /// DiagnoseBadFunctionCast - Warn whenever a function call is cast to a 2126 /// non-matching type. Such as enum function call to int, int call to 2127 /// pointer; etc. Cast to 'void' is an exception. 2128 static void DiagnoseBadFunctionCast(Sema &Self, const ExprResult &SrcExpr, 2129 QualType DestType) { 2130 if (Self.Diags.getDiagnosticLevel(diag::warn_bad_function_cast, 2131 SrcExpr.get()->getExprLoc()) 2132 == DiagnosticsEngine::Ignored) 2133 return; 2134 2135 if (!isa<CallExpr>(SrcExpr.get())) 2136 return; 2137 2138 QualType SrcType = SrcExpr.get()->getType(); 2139 if (DestType.getUnqualifiedType()->isVoidType()) 2140 return; 2141 if ((SrcType->isAnyPointerType() || SrcType->isBlockPointerType()) 2142 && (DestType->isAnyPointerType() || DestType->isBlockPointerType())) 2143 return; 2144 if (SrcType->isIntegerType() && DestType->isIntegerType() && 2145 (SrcType->isBooleanType() == DestType->isBooleanType()) && 2146 (SrcType->isEnumeralType() == DestType->isEnumeralType())) 2147 return; 2148 if (SrcType->isRealFloatingType() && DestType->isRealFloatingType()) 2149 return; 2150 if (SrcType->isEnumeralType() && DestType->isEnumeralType()) 2151 return; 2152 if (SrcType->isComplexType() && DestType->isComplexType()) 2153 return; 2154 if (SrcType->isComplexIntegerType() && DestType->isComplexIntegerType()) 2155 return; 2156 2157 Self.Diag(SrcExpr.get()->getExprLoc(), 2158 diag::warn_bad_function_cast) 2159 << SrcType << DestType << SrcExpr.get()->getSourceRange(); 2160 } 2161 2162 /// Check the semantics of a C-style cast operation, in C. 2163 void CastOperation::CheckCStyleCast() { 2164 assert(!Self.getLangOpts().CPlusPlus); 2165 2166 // C-style casts can resolve __unknown_any types. 2167 if (claimPlaceholder(BuiltinType::UnknownAny)) { 2168 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType, 2169 SrcExpr.get(), Kind, 2170 ValueKind, BasePath); 2171 return; 2172 } 2173 2174 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression 2175 // type needs to be scalar. 2176 if (DestType->isVoidType()) { 2177 // We don't necessarily do lvalue-to-rvalue conversions on this. 2178 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get()); 2179 if (SrcExpr.isInvalid()) 2180 return; 2181 2182 // Cast to void allows any expr type. 2183 Kind = CK_ToVoid; 2184 return; 2185 } 2186 2187 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get()); 2188 if (SrcExpr.isInvalid()) 2189 return; 2190 QualType SrcType = SrcExpr.get()->getType(); 2191 2192 assert(!SrcType->isPlaceholderType()); 2193 2194 // OpenCL v1 s6.5: Casting a pointer to address space A to a pointer to 2195 // address space B is illegal. 2196 if (Self.getLangOpts().OpenCL && DestType->isPointerType() && 2197 SrcType->isPointerType()) { 2198 if (DestType->getPointeeType().getAddressSpace() != 2199 SrcType->getPointeeType().getAddressSpace()) { 2200 Self.Diag(OpRange.getBegin(), 2201 diag::err_typecheck_incompatible_address_space) 2202 << SrcType << DestType << Sema::AA_Casting 2203 << SrcExpr.get()->getSourceRange(); 2204 SrcExpr = ExprError(); 2205 return; 2206 } 2207 } 2208 2209 if (Self.RequireCompleteType(OpRange.getBegin(), DestType, 2210 diag::err_typecheck_cast_to_incomplete)) { 2211 SrcExpr = ExprError(); 2212 return; 2213 } 2214 2215 if (!DestType->isScalarType() && !DestType->isVectorType()) { 2216 const RecordType *DestRecordTy = DestType->getAs<RecordType>(); 2217 2218 if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){ 2219 // GCC struct/union extension: allow cast to self. 2220 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_nonscalar) 2221 << DestType << SrcExpr.get()->getSourceRange(); 2222 Kind = CK_NoOp; 2223 return; 2224 } 2225 2226 // GCC's cast to union extension. 2227 if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) { 2228 RecordDecl *RD = DestRecordTy->getDecl(); 2229 RecordDecl::field_iterator Field, FieldEnd; 2230 for (Field = RD->field_begin(), FieldEnd = RD->field_end(); 2231 Field != FieldEnd; ++Field) { 2232 if (Self.Context.hasSameUnqualifiedType(Field->getType(), SrcType) && 2233 !Field->isUnnamedBitfield()) { 2234 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_to_union) 2235 << SrcExpr.get()->getSourceRange(); 2236 break; 2237 } 2238 } 2239 if (Field == FieldEnd) { 2240 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cast_to_union_no_type) 2241 << SrcType << SrcExpr.get()->getSourceRange(); 2242 SrcExpr = ExprError(); 2243 return; 2244 } 2245 Kind = CK_ToUnion; 2246 return; 2247 } 2248 2249 // Reject any other conversions to non-scalar types. 2250 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cond_expect_scalar) 2251 << DestType << SrcExpr.get()->getSourceRange(); 2252 SrcExpr = ExprError(); 2253 return; 2254 } 2255 2256 // The type we're casting to is known to be a scalar or vector. 2257 2258 // Require the operand to be a scalar or vector. 2259 if (!SrcType->isScalarType() && !SrcType->isVectorType()) { 2260 Self.Diag(SrcExpr.get()->getExprLoc(), 2261 diag::err_typecheck_expect_scalar_operand) 2262 << SrcType << SrcExpr.get()->getSourceRange(); 2263 SrcExpr = ExprError(); 2264 return; 2265 } 2266 2267 if (DestType->isExtVectorType()) { 2268 SrcExpr = Self.CheckExtVectorCast(OpRange, DestType, SrcExpr.get(), Kind); 2269 return; 2270 } 2271 2272 if (const VectorType *DestVecTy = DestType->getAs<VectorType>()) { 2273 if (DestVecTy->getVectorKind() == VectorType::AltiVecVector && 2274 (SrcType->isIntegerType() || SrcType->isFloatingType())) { 2275 Kind = CK_VectorSplat; 2276 } else if (Self.CheckVectorCast(OpRange, DestType, SrcType, Kind)) { 2277 SrcExpr = ExprError(); 2278 } 2279 return; 2280 } 2281 2282 if (SrcType->isVectorType()) { 2283 if (Self.CheckVectorCast(OpRange, SrcType, DestType, Kind)) 2284 SrcExpr = ExprError(); 2285 return; 2286 } 2287 2288 // The source and target types are both scalars, i.e. 2289 // - arithmetic types (fundamental, enum, and complex) 2290 // - all kinds of pointers 2291 // Note that member pointers were filtered out with C++, above. 2292 2293 if (isa<ObjCSelectorExpr>(SrcExpr.get())) { 2294 Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_selector_expr); 2295 SrcExpr = ExprError(); 2296 return; 2297 } 2298 2299 // If either type is a pointer, the other type has to be either an 2300 // integer or a pointer. 2301 if (!DestType->isArithmeticType()) { 2302 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) { 2303 Self.Diag(SrcExpr.get()->getExprLoc(), 2304 diag::err_cast_pointer_from_non_pointer_int) 2305 << SrcType << SrcExpr.get()->getSourceRange(); 2306 SrcExpr = ExprError(); 2307 return; 2308 } 2309 checkIntToPointerCast(/* CStyle */ true, OpRange.getBegin(), SrcExpr.get(), 2310 DestType, Self); 2311 } else if (!SrcType->isArithmeticType()) { 2312 if (!DestType->isIntegralType(Self.Context) && 2313 DestType->isArithmeticType()) { 2314 Self.Diag(SrcExpr.get()->getLocStart(), 2315 diag::err_cast_pointer_to_non_pointer_int) 2316 << DestType << SrcExpr.get()->getSourceRange(); 2317 SrcExpr = ExprError(); 2318 return; 2319 } 2320 } 2321 2322 if (Self.getLangOpts().OpenCL && !Self.getOpenCLOptions().cl_khr_fp16) { 2323 if (DestType->isHalfType()) { 2324 Self.Diag(SrcExpr.get()->getLocStart(), diag::err_opencl_cast_to_half) 2325 << DestType << SrcExpr.get()->getSourceRange(); 2326 SrcExpr = ExprError(); 2327 return; 2328 } 2329 } 2330 2331 // ARC imposes extra restrictions on casts. 2332 if (Self.getLangOpts().ObjCAutoRefCount) { 2333 checkObjCARCConversion(Sema::CCK_CStyleCast); 2334 if (SrcExpr.isInvalid()) 2335 return; 2336 2337 if (const PointerType *CastPtr = DestType->getAs<PointerType>()) { 2338 if (const PointerType *ExprPtr = SrcType->getAs<PointerType>()) { 2339 Qualifiers CastQuals = CastPtr->getPointeeType().getQualifiers(); 2340 Qualifiers ExprQuals = ExprPtr->getPointeeType().getQualifiers(); 2341 if (CastPtr->getPointeeType()->isObjCLifetimeType() && 2342 ExprPtr->getPointeeType()->isObjCLifetimeType() && 2343 !CastQuals.compatiblyIncludesObjCLifetime(ExprQuals)) { 2344 Self.Diag(SrcExpr.get()->getLocStart(), 2345 diag::err_typecheck_incompatible_ownership) 2346 << SrcType << DestType << Sema::AA_Casting 2347 << SrcExpr.get()->getSourceRange(); 2348 return; 2349 } 2350 } 2351 } 2352 else if (!Self.CheckObjCARCUnavailableWeakConversion(DestType, SrcType)) { 2353 Self.Diag(SrcExpr.get()->getLocStart(), 2354 diag::err_arc_convesion_of_weak_unavailable) 2355 << 1 << SrcType << DestType << SrcExpr.get()->getSourceRange(); 2356 SrcExpr = ExprError(); 2357 return; 2358 } 2359 } 2360 2361 DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType); 2362 DiagnoseBadFunctionCast(Self, SrcExpr, DestType); 2363 Kind = Self.PrepareScalarCast(SrcExpr, DestType); 2364 if (SrcExpr.isInvalid()) 2365 return; 2366 2367 if (Kind == CK_BitCast) 2368 checkCastAlign(); 2369 } 2370 2371 ExprResult Sema::BuildCStyleCastExpr(SourceLocation LPLoc, 2372 TypeSourceInfo *CastTypeInfo, 2373 SourceLocation RPLoc, 2374 Expr *CastExpr) { 2375 CastOperation Op(*this, CastTypeInfo->getType(), CastExpr); 2376 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange(); 2377 Op.OpRange = SourceRange(LPLoc, CastExpr->getLocEnd()); 2378 2379 if (getLangOpts().CPlusPlus) { 2380 Op.CheckCXXCStyleCast(/*FunctionalStyle=*/ false, 2381 isa<InitListExpr>(CastExpr)); 2382 } else { 2383 Op.CheckCStyleCast(); 2384 } 2385 2386 if (Op.SrcExpr.isInvalid()) 2387 return ExprError(); 2388 2389 return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType, 2390 Op.ValueKind, Op.Kind, Op.SrcExpr.get(), 2391 &Op.BasePath, CastTypeInfo, LPLoc, RPLoc)); 2392 } 2393 2394 ExprResult Sema::BuildCXXFunctionalCastExpr(TypeSourceInfo *CastTypeInfo, 2395 SourceLocation LPLoc, 2396 Expr *CastExpr, 2397 SourceLocation RPLoc) { 2398 assert(LPLoc.isValid() && "List-initialization shouldn't get here."); 2399 CastOperation Op(*this, CastTypeInfo->getType(), CastExpr); 2400 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange(); 2401 Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getLocEnd()); 2402 2403 Op.CheckCXXCStyleCast(/*FunctionalStyle=*/true, /*ListInit=*/false); 2404 if (Op.SrcExpr.isInvalid()) 2405 return ExprError(); 2406 2407 if (CXXConstructExpr *ConstructExpr = dyn_cast<CXXConstructExpr>(Op.SrcExpr.get())) 2408 ConstructExpr->setParenOrBraceRange(SourceRange(LPLoc, RPLoc)); 2409 2410 return Op.complete(CXXFunctionalCastExpr::Create(Context, Op.ResultType, 2411 Op.ValueKind, CastTypeInfo, Op.Kind, 2412 Op.SrcExpr.get(), &Op.BasePath, LPLoc, RPLoc)); 2413 } 2414