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.isIgnored(DiagID, Range.getBegin())) 1610 return; 1611 1612 QualType SrcTy, DestTy; 1613 if (IsDereference) { 1614 if (!SrcType->getAs<PointerType>() || !DestType->getAs<PointerType>()) { 1615 return; 1616 } 1617 SrcTy = SrcType->getPointeeType(); 1618 DestTy = DestType->getPointeeType(); 1619 } else { 1620 if (!DestType->getAs<ReferenceType>()) { 1621 return; 1622 } 1623 SrcTy = SrcType; 1624 DestTy = DestType->getPointeeType(); 1625 } 1626 1627 // Cast is compatible if the types are the same. 1628 if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) { 1629 return; 1630 } 1631 // or one of the types is a char or void type 1632 if (DestTy->isAnyCharacterType() || DestTy->isVoidType() || 1633 SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) { 1634 return; 1635 } 1636 // or one of the types is a tag type. 1637 if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) { 1638 return; 1639 } 1640 1641 // FIXME: Scoped enums? 1642 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || 1643 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { 1644 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) { 1645 return; 1646 } 1647 } 1648 1649 Diag(Range.getBegin(), DiagID) << SrcType << DestType << Range; 1650 } 1651 1652 static void DiagnoseCastOfObjCSEL(Sema &Self, const ExprResult &SrcExpr, 1653 QualType DestType) { 1654 QualType SrcType = SrcExpr.get()->getType(); 1655 if (Self.Context.hasSameType(SrcType, DestType)) 1656 return; 1657 if (const PointerType *SrcPtrTy = SrcType->getAs<PointerType>()) 1658 if (SrcPtrTy->isObjCSelType()) { 1659 QualType DT = DestType; 1660 if (isa<PointerType>(DestType)) 1661 DT = DestType->getPointeeType(); 1662 if (!DT.getUnqualifiedType()->isVoidType()) 1663 Self.Diag(SrcExpr.get()->getExprLoc(), 1664 diag::warn_cast_pointer_from_sel) 1665 << SrcType << DestType << SrcExpr.get()->getSourceRange(); 1666 } 1667 } 1668 1669 static void checkIntToPointerCast(bool CStyle, SourceLocation Loc, 1670 const Expr *SrcExpr, QualType DestType, 1671 Sema &Self) { 1672 QualType SrcType = SrcExpr->getType(); 1673 1674 // Not warning on reinterpret_cast, boolean, constant expressions, etc 1675 // are not explicit design choices, but consistent with GCC's behavior. 1676 // Feel free to modify them if you've reason/evidence for an alternative. 1677 if (CStyle && SrcType->isIntegralType(Self.Context) 1678 && !SrcType->isBooleanType() 1679 && !SrcType->isEnumeralType() 1680 && !SrcExpr->isIntegerConstantExpr(Self.Context) 1681 && Self.Context.getTypeSize(DestType) > 1682 Self.Context.getTypeSize(SrcType)) { 1683 // Separate between casts to void* and non-void* pointers. 1684 // Some APIs use (abuse) void* for something like a user context, 1685 // and often that value is an integer even if it isn't a pointer itself. 1686 // Having a separate warning flag allows users to control the warning 1687 // for their workflow. 1688 unsigned Diag = DestType->isVoidPointerType() ? 1689 diag::warn_int_to_void_pointer_cast 1690 : diag::warn_int_to_pointer_cast; 1691 Self.Diag(Loc, Diag) << SrcType << DestType; 1692 } 1693 } 1694 1695 static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr, 1696 QualType DestType, bool CStyle, 1697 const SourceRange &OpRange, 1698 unsigned &msg, 1699 CastKind &Kind) { 1700 bool IsLValueCast = false; 1701 1702 DestType = Self.Context.getCanonicalType(DestType); 1703 QualType SrcType = SrcExpr.get()->getType(); 1704 1705 // Is the source an overloaded name? (i.e. &foo) 1706 // If so, reinterpret_cast can not help us here (13.4, p1, bullet 5) ... 1707 if (SrcType == Self.Context.OverloadTy) { 1708 // ... unless foo<int> resolves to an lvalue unambiguously. 1709 // TODO: what if this fails because of DiagnoseUseOfDecl or something 1710 // like it? 1711 ExprResult SingleFunctionExpr = SrcExpr; 1712 if (Self.ResolveAndFixSingleFunctionTemplateSpecialization( 1713 SingleFunctionExpr, 1714 Expr::getValueKindForType(DestType) == VK_RValue // Convert Fun to Ptr 1715 ) && SingleFunctionExpr.isUsable()) { 1716 SrcExpr = SingleFunctionExpr; 1717 SrcType = SrcExpr.get()->getType(); 1718 } else { 1719 return TC_NotApplicable; 1720 } 1721 } 1722 1723 if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) { 1724 if (!SrcExpr.get()->isGLValue()) { 1725 // Cannot cast non-glvalue to (lvalue or rvalue) reference type. See the 1726 // similar comment in const_cast. 1727 msg = diag::err_bad_cxx_cast_rvalue; 1728 return TC_NotApplicable; 1729 } 1730 1731 if (!CStyle) { 1732 Self.CheckCompatibleReinterpretCast(SrcType, DestType, 1733 /*isDereference=*/false, OpRange); 1734 } 1735 1736 // C++ 5.2.10p10: [...] a reference cast reinterpret_cast<T&>(x) has the 1737 // same effect as the conversion *reinterpret_cast<T*>(&x) with the 1738 // built-in & and * operators. 1739 1740 const char *inappropriate = nullptr; 1741 switch (SrcExpr.get()->getObjectKind()) { 1742 case OK_Ordinary: 1743 break; 1744 case OK_BitField: inappropriate = "bit-field"; break; 1745 case OK_VectorComponent: inappropriate = "vector element"; break; 1746 case OK_ObjCProperty: inappropriate = "property expression"; break; 1747 case OK_ObjCSubscript: inappropriate = "container subscripting expression"; 1748 break; 1749 } 1750 if (inappropriate) { 1751 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_reference) 1752 << inappropriate << DestType 1753 << OpRange << SrcExpr.get()->getSourceRange(); 1754 msg = 0; SrcExpr = ExprError(); 1755 return TC_NotApplicable; 1756 } 1757 1758 // This code does this transformation for the checked types. 1759 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType()); 1760 SrcType = Self.Context.getPointerType(SrcType); 1761 1762 IsLValueCast = true; 1763 } 1764 1765 // Canonicalize source for comparison. 1766 SrcType = Self.Context.getCanonicalType(SrcType); 1767 1768 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(), 1769 *SrcMemPtr = SrcType->getAs<MemberPointerType>(); 1770 if (DestMemPtr && SrcMemPtr) { 1771 // C++ 5.2.10p9: An rvalue of type "pointer to member of X of type T1" 1772 // can be explicitly converted to an rvalue of type "pointer to member 1773 // of Y of type T2" if T1 and T2 are both function types or both object 1774 // types. 1775 if (DestMemPtr->getPointeeType()->isFunctionType() != 1776 SrcMemPtr->getPointeeType()->isFunctionType()) 1777 return TC_NotApplicable; 1778 1779 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away 1780 // constness. 1781 // A reinterpret_cast followed by a const_cast can, though, so in C-style, 1782 // we accept it. 1783 if (CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle, 1784 /*CheckObjCLifetime=*/CStyle)) { 1785 msg = diag::err_bad_cxx_cast_qualifiers_away; 1786 return TC_Failed; 1787 } 1788 1789 if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) { 1790 // We need to determine the inheritance model that the class will use if 1791 // haven't yet. 1792 Self.RequireCompleteType(OpRange.getBegin(), SrcType, 0); 1793 Self.RequireCompleteType(OpRange.getBegin(), DestType, 0); 1794 } 1795 1796 // Don't allow casting between member pointers of different sizes. 1797 if (Self.Context.getTypeSize(DestMemPtr) != 1798 Self.Context.getTypeSize(SrcMemPtr)) { 1799 msg = diag::err_bad_cxx_cast_member_pointer_size; 1800 return TC_Failed; 1801 } 1802 1803 // A valid member pointer cast. 1804 assert(!IsLValueCast); 1805 Kind = CK_ReinterpretMemberPointer; 1806 return TC_Success; 1807 } 1808 1809 // See below for the enumeral issue. 1810 if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) { 1811 // C++0x 5.2.10p4: A pointer can be explicitly converted to any integral 1812 // type large enough to hold it. A value of std::nullptr_t can be 1813 // converted to an integral type; the conversion has the same meaning 1814 // and validity as a conversion of (void*)0 to the integral type. 1815 if (Self.Context.getTypeSize(SrcType) > 1816 Self.Context.getTypeSize(DestType)) { 1817 msg = diag::err_bad_reinterpret_cast_small_int; 1818 return TC_Failed; 1819 } 1820 Kind = CK_PointerToIntegral; 1821 return TC_Success; 1822 } 1823 1824 bool destIsVector = DestType->isVectorType(); 1825 bool srcIsVector = SrcType->isVectorType(); 1826 if (srcIsVector || destIsVector) { 1827 // FIXME: Should this also apply to floating point types? 1828 bool srcIsScalar = SrcType->isIntegralType(Self.Context); 1829 bool destIsScalar = DestType->isIntegralType(Self.Context); 1830 1831 // Check if this is a cast between a vector and something else. 1832 if (!(srcIsScalar && destIsVector) && !(srcIsVector && destIsScalar) && 1833 !(srcIsVector && destIsVector)) 1834 return TC_NotApplicable; 1835 1836 // If both types have the same size, we can successfully cast. 1837 if (Self.Context.getTypeSize(SrcType) 1838 == Self.Context.getTypeSize(DestType)) { 1839 Kind = CK_BitCast; 1840 return TC_Success; 1841 } 1842 1843 if (destIsScalar) 1844 msg = diag::err_bad_cxx_cast_vector_to_scalar_different_size; 1845 else if (srcIsScalar) 1846 msg = diag::err_bad_cxx_cast_scalar_to_vector_different_size; 1847 else 1848 msg = diag::err_bad_cxx_cast_vector_to_vector_different_size; 1849 1850 return TC_Failed; 1851 } 1852 1853 if (SrcType == DestType) { 1854 // C++ 5.2.10p2 has a note that mentions that, subject to all other 1855 // restrictions, a cast to the same type is allowed so long as it does not 1856 // cast away constness. In C++98, the intent was not entirely clear here, 1857 // since all other paragraphs explicitly forbid casts to the same type. 1858 // C++11 clarifies this case with p2. 1859 // 1860 // The only allowed types are: integral, enumeration, pointer, or 1861 // pointer-to-member types. We also won't restrict Obj-C pointers either. 1862 Kind = CK_NoOp; 1863 TryCastResult Result = TC_NotApplicable; 1864 if (SrcType->isIntegralOrEnumerationType() || 1865 SrcType->isAnyPointerType() || 1866 SrcType->isMemberPointerType() || 1867 SrcType->isBlockPointerType()) { 1868 Result = TC_Success; 1869 } 1870 return Result; 1871 } 1872 1873 bool destIsPtr = DestType->isAnyPointerType() || 1874 DestType->isBlockPointerType(); 1875 bool srcIsPtr = SrcType->isAnyPointerType() || 1876 SrcType->isBlockPointerType(); 1877 if (!destIsPtr && !srcIsPtr) { 1878 // Except for std::nullptr_t->integer and lvalue->reference, which are 1879 // handled above, at least one of the two arguments must be a pointer. 1880 return TC_NotApplicable; 1881 } 1882 1883 if (DestType->isIntegralType(Self.Context)) { 1884 assert(srcIsPtr && "One type must be a pointer"); 1885 // C++ 5.2.10p4: A pointer can be explicitly converted to any integral 1886 // type large enough to hold it; except in Microsoft mode, where the 1887 // integral type size doesn't matter (except we don't allow bool). 1888 bool MicrosoftException = Self.getLangOpts().MicrosoftExt && 1889 !DestType->isBooleanType(); 1890 if ((Self.Context.getTypeSize(SrcType) > 1891 Self.Context.getTypeSize(DestType)) && 1892 !MicrosoftException) { 1893 msg = diag::err_bad_reinterpret_cast_small_int; 1894 return TC_Failed; 1895 } 1896 Kind = CK_PointerToIntegral; 1897 return TC_Success; 1898 } 1899 1900 if (SrcType->isIntegralOrEnumerationType()) { 1901 assert(destIsPtr && "One type must be a pointer"); 1902 checkIntToPointerCast(CStyle, OpRange.getBegin(), SrcExpr.get(), DestType, 1903 Self); 1904 // C++ 5.2.10p5: A value of integral or enumeration type can be explicitly 1905 // converted to a pointer. 1906 // C++ 5.2.10p9: [Note: ...a null pointer constant of integral type is not 1907 // necessarily converted to a null pointer value.] 1908 Kind = CK_IntegralToPointer; 1909 return TC_Success; 1910 } 1911 1912 if (!destIsPtr || !srcIsPtr) { 1913 // With the valid non-pointer conversions out of the way, we can be even 1914 // more stringent. 1915 return TC_NotApplicable; 1916 } 1917 1918 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away constness. 1919 // The C-style cast operator can. 1920 if (CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle, 1921 /*CheckObjCLifetime=*/CStyle)) { 1922 msg = diag::err_bad_cxx_cast_qualifiers_away; 1923 return TC_Failed; 1924 } 1925 1926 // Cannot convert between block pointers and Objective-C object pointers. 1927 if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) || 1928 (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType())) 1929 return TC_NotApplicable; 1930 1931 if (IsLValueCast) { 1932 Kind = CK_LValueBitCast; 1933 } else if (DestType->isObjCObjectPointerType()) { 1934 Kind = Self.PrepareCastToObjCObjectPointer(SrcExpr); 1935 } else if (DestType->isBlockPointerType()) { 1936 if (!SrcType->isBlockPointerType()) { 1937 Kind = CK_AnyPointerToBlockPointerCast; 1938 } else { 1939 Kind = CK_BitCast; 1940 } 1941 } else { 1942 Kind = CK_BitCast; 1943 } 1944 1945 // Any pointer can be cast to an Objective-C pointer type with a C-style 1946 // cast. 1947 if (CStyle && DestType->isObjCObjectPointerType()) { 1948 return TC_Success; 1949 } 1950 if (CStyle) 1951 DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType); 1952 1953 // Not casting away constness, so the only remaining check is for compatible 1954 // pointer categories. 1955 1956 if (SrcType->isFunctionPointerType()) { 1957 if (DestType->isFunctionPointerType()) { 1958 // C++ 5.2.10p6: A pointer to a function can be explicitly converted to 1959 // a pointer to a function of a different type. 1960 return TC_Success; 1961 } 1962 1963 // C++0x 5.2.10p8: Converting a pointer to a function into a pointer to 1964 // an object type or vice versa is conditionally-supported. 1965 // Compilers support it in C++03 too, though, because it's necessary for 1966 // casting the return value of dlsym() and GetProcAddress(). 1967 // FIXME: Conditionally-supported behavior should be configurable in the 1968 // TargetInfo or similar. 1969 Self.Diag(OpRange.getBegin(), 1970 Self.getLangOpts().CPlusPlus11 ? 1971 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj) 1972 << OpRange; 1973 return TC_Success; 1974 } 1975 1976 if (DestType->isFunctionPointerType()) { 1977 // See above. 1978 Self.Diag(OpRange.getBegin(), 1979 Self.getLangOpts().CPlusPlus11 ? 1980 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj) 1981 << OpRange; 1982 return TC_Success; 1983 } 1984 1985 // C++ 5.2.10p7: A pointer to an object can be explicitly converted to 1986 // a pointer to an object of different type. 1987 // Void pointers are not specified, but supported by every compiler out there. 1988 // So we finish by allowing everything that remains - it's got to be two 1989 // object pointers. 1990 return TC_Success; 1991 } 1992 1993 void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle, 1994 bool ListInitialization) { 1995 // Handle placeholders. 1996 if (isPlaceholder()) { 1997 // C-style casts can resolve __unknown_any types. 1998 if (claimPlaceholder(BuiltinType::UnknownAny)) { 1999 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType, 2000 SrcExpr.get(), Kind, 2001 ValueKind, BasePath); 2002 return; 2003 } 2004 2005 checkNonOverloadPlaceholders(); 2006 if (SrcExpr.isInvalid()) 2007 return; 2008 } 2009 2010 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void". 2011 // This test is outside everything else because it's the only case where 2012 // a non-lvalue-reference target type does not lead to decay. 2013 if (DestType->isVoidType()) { 2014 Kind = CK_ToVoid; 2015 2016 if (claimPlaceholder(BuiltinType::Overload)) { 2017 Self.ResolveAndFixSingleFunctionTemplateSpecialization( 2018 SrcExpr, /* Decay Function to ptr */ false, 2019 /* Complain */ true, DestRange, DestType, 2020 diag::err_bad_cstyle_cast_overload); 2021 if (SrcExpr.isInvalid()) 2022 return; 2023 } 2024 2025 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get()); 2026 return; 2027 } 2028 2029 // If the type is dependent, we won't do any other semantic analysis now. 2030 if (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() || 2031 SrcExpr.get()->isValueDependent()) { 2032 assert(Kind == CK_Dependent); 2033 return; 2034 } 2035 2036 if (ValueKind == VK_RValue && !DestType->isRecordType() && 2037 !isPlaceholder(BuiltinType::Overload)) { 2038 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get()); 2039 if (SrcExpr.isInvalid()) 2040 return; 2041 } 2042 2043 // AltiVec vector initialization with a single literal. 2044 if (const VectorType *vecTy = DestType->getAs<VectorType>()) 2045 if (vecTy->getVectorKind() == VectorType::AltiVecVector 2046 && (SrcExpr.get()->getType()->isIntegerType() 2047 || SrcExpr.get()->getType()->isFloatingType())) { 2048 Kind = CK_VectorSplat; 2049 return; 2050 } 2051 2052 // C++ [expr.cast]p5: The conversions performed by 2053 // - a const_cast, 2054 // - a static_cast, 2055 // - a static_cast followed by a const_cast, 2056 // - a reinterpret_cast, or 2057 // - a reinterpret_cast followed by a const_cast, 2058 // can be performed using the cast notation of explicit type conversion. 2059 // [...] If a conversion can be interpreted in more than one of the ways 2060 // listed above, the interpretation that appears first in the list is used, 2061 // even if a cast resulting from that interpretation is ill-formed. 2062 // In plain language, this means trying a const_cast ... 2063 unsigned msg = diag::err_bad_cxx_cast_generic; 2064 TryCastResult tcr = TryConstCast(Self, SrcExpr, DestType, 2065 /*CStyle*/true, msg); 2066 if (SrcExpr.isInvalid()) 2067 return; 2068 if (tcr == TC_Success) 2069 Kind = CK_NoOp; 2070 2071 Sema::CheckedConversionKind CCK 2072 = FunctionalStyle? Sema::CCK_FunctionalCast 2073 : Sema::CCK_CStyleCast; 2074 if (tcr == TC_NotApplicable) { 2075 // ... or if that is not possible, a static_cast, ignoring const, ... 2076 tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange, 2077 msg, Kind, BasePath, ListInitialization); 2078 if (SrcExpr.isInvalid()) 2079 return; 2080 2081 if (tcr == TC_NotApplicable) { 2082 // ... and finally a reinterpret_cast, ignoring const. 2083 tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/true, 2084 OpRange, msg, Kind); 2085 if (SrcExpr.isInvalid()) 2086 return; 2087 } 2088 } 2089 2090 if (Self.getLangOpts().ObjCAutoRefCount && tcr == TC_Success) 2091 checkObjCARCConversion(CCK); 2092 2093 if (tcr != TC_Success && msg != 0) { 2094 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) { 2095 DeclAccessPair Found; 2096 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), 2097 DestType, 2098 /*Complain*/ true, 2099 Found); 2100 if (Fn) { 2101 // If DestType is a function type (not to be confused with the function 2102 // pointer type), it will be possible to resolve the function address, 2103 // but the type cast should be considered as failure. 2104 OverloadExpr *OE = OverloadExpr::find(SrcExpr.get()).Expression; 2105 Self.Diag(OpRange.getBegin(), diag::err_bad_cstyle_cast_overload) 2106 << OE->getName() << DestType << OpRange 2107 << OE->getQualifierLoc().getSourceRange(); 2108 Self.NoteAllOverloadCandidates(SrcExpr.get()); 2109 } 2110 } else { 2111 diagnoseBadCast(Self, msg, (FunctionalStyle ? CT_Functional : CT_CStyle), 2112 OpRange, SrcExpr.get(), DestType, ListInitialization); 2113 } 2114 } else if (Kind == CK_BitCast) { 2115 checkCastAlign(); 2116 } 2117 2118 // Clear out SrcExpr if there was a fatal error. 2119 if (tcr != TC_Success) 2120 SrcExpr = ExprError(); 2121 } 2122 2123 /// DiagnoseBadFunctionCast - Warn whenever a function call is cast to a 2124 /// non-matching type. Such as enum function call to int, int call to 2125 /// pointer; etc. Cast to 'void' is an exception. 2126 static void DiagnoseBadFunctionCast(Sema &Self, const ExprResult &SrcExpr, 2127 QualType DestType) { 2128 if (Self.Diags.isIgnored(diag::warn_bad_function_cast, 2129 SrcExpr.get()->getExprLoc())) 2130 return; 2131 2132 if (!isa<CallExpr>(SrcExpr.get())) 2133 return; 2134 2135 QualType SrcType = SrcExpr.get()->getType(); 2136 if (DestType.getUnqualifiedType()->isVoidType()) 2137 return; 2138 if ((SrcType->isAnyPointerType() || SrcType->isBlockPointerType()) 2139 && (DestType->isAnyPointerType() || DestType->isBlockPointerType())) 2140 return; 2141 if (SrcType->isIntegerType() && DestType->isIntegerType() && 2142 (SrcType->isBooleanType() == DestType->isBooleanType()) && 2143 (SrcType->isEnumeralType() == DestType->isEnumeralType())) 2144 return; 2145 if (SrcType->isRealFloatingType() && DestType->isRealFloatingType()) 2146 return; 2147 if (SrcType->isEnumeralType() && DestType->isEnumeralType()) 2148 return; 2149 if (SrcType->isComplexType() && DestType->isComplexType()) 2150 return; 2151 if (SrcType->isComplexIntegerType() && DestType->isComplexIntegerType()) 2152 return; 2153 2154 Self.Diag(SrcExpr.get()->getExprLoc(), 2155 diag::warn_bad_function_cast) 2156 << SrcType << DestType << SrcExpr.get()->getSourceRange(); 2157 } 2158 2159 /// Check the semantics of a C-style cast operation, in C. 2160 void CastOperation::CheckCStyleCast() { 2161 assert(!Self.getLangOpts().CPlusPlus); 2162 2163 // C-style casts can resolve __unknown_any types. 2164 if (claimPlaceholder(BuiltinType::UnknownAny)) { 2165 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType, 2166 SrcExpr.get(), Kind, 2167 ValueKind, BasePath); 2168 return; 2169 } 2170 2171 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression 2172 // type needs to be scalar. 2173 if (DestType->isVoidType()) { 2174 // We don't necessarily do lvalue-to-rvalue conversions on this. 2175 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get()); 2176 if (SrcExpr.isInvalid()) 2177 return; 2178 2179 // Cast to void allows any expr type. 2180 Kind = CK_ToVoid; 2181 return; 2182 } 2183 2184 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get()); 2185 if (SrcExpr.isInvalid()) 2186 return; 2187 QualType SrcType = SrcExpr.get()->getType(); 2188 2189 assert(!SrcType->isPlaceholderType()); 2190 2191 // OpenCL v1 s6.5: Casting a pointer to address space A to a pointer to 2192 // address space B is illegal. 2193 if (Self.getLangOpts().OpenCL && DestType->isPointerType() && 2194 SrcType->isPointerType()) { 2195 if (DestType->getPointeeType().getAddressSpace() != 2196 SrcType->getPointeeType().getAddressSpace()) { 2197 Self.Diag(OpRange.getBegin(), 2198 diag::err_typecheck_incompatible_address_space) 2199 << SrcType << DestType << Sema::AA_Casting 2200 << SrcExpr.get()->getSourceRange(); 2201 SrcExpr = ExprError(); 2202 return; 2203 } 2204 } 2205 2206 if (Self.RequireCompleteType(OpRange.getBegin(), DestType, 2207 diag::err_typecheck_cast_to_incomplete)) { 2208 SrcExpr = ExprError(); 2209 return; 2210 } 2211 2212 if (!DestType->isScalarType() && !DestType->isVectorType()) { 2213 const RecordType *DestRecordTy = DestType->getAs<RecordType>(); 2214 2215 if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){ 2216 // GCC struct/union extension: allow cast to self. 2217 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_nonscalar) 2218 << DestType << SrcExpr.get()->getSourceRange(); 2219 Kind = CK_NoOp; 2220 return; 2221 } 2222 2223 // GCC's cast to union extension. 2224 if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) { 2225 RecordDecl *RD = DestRecordTy->getDecl(); 2226 RecordDecl::field_iterator Field, FieldEnd; 2227 for (Field = RD->field_begin(), FieldEnd = RD->field_end(); 2228 Field != FieldEnd; ++Field) { 2229 if (Self.Context.hasSameUnqualifiedType(Field->getType(), SrcType) && 2230 !Field->isUnnamedBitfield()) { 2231 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_to_union) 2232 << SrcExpr.get()->getSourceRange(); 2233 break; 2234 } 2235 } 2236 if (Field == FieldEnd) { 2237 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cast_to_union_no_type) 2238 << SrcType << SrcExpr.get()->getSourceRange(); 2239 SrcExpr = ExprError(); 2240 return; 2241 } 2242 Kind = CK_ToUnion; 2243 return; 2244 } 2245 2246 // Reject any other conversions to non-scalar types. 2247 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cond_expect_scalar) 2248 << DestType << SrcExpr.get()->getSourceRange(); 2249 SrcExpr = ExprError(); 2250 return; 2251 } 2252 2253 // The type we're casting to is known to be a scalar or vector. 2254 2255 // Require the operand to be a scalar or vector. 2256 if (!SrcType->isScalarType() && !SrcType->isVectorType()) { 2257 Self.Diag(SrcExpr.get()->getExprLoc(), 2258 diag::err_typecheck_expect_scalar_operand) 2259 << SrcType << SrcExpr.get()->getSourceRange(); 2260 SrcExpr = ExprError(); 2261 return; 2262 } 2263 2264 if (DestType->isExtVectorType()) { 2265 SrcExpr = Self.CheckExtVectorCast(OpRange, DestType, SrcExpr.get(), Kind); 2266 return; 2267 } 2268 2269 if (const VectorType *DestVecTy = DestType->getAs<VectorType>()) { 2270 if (DestVecTy->getVectorKind() == VectorType::AltiVecVector && 2271 (SrcType->isIntegerType() || SrcType->isFloatingType())) { 2272 Kind = CK_VectorSplat; 2273 } else if (Self.CheckVectorCast(OpRange, DestType, SrcType, Kind)) { 2274 SrcExpr = ExprError(); 2275 } 2276 return; 2277 } 2278 2279 if (SrcType->isVectorType()) { 2280 if (Self.CheckVectorCast(OpRange, SrcType, DestType, Kind)) 2281 SrcExpr = ExprError(); 2282 return; 2283 } 2284 2285 // The source and target types are both scalars, i.e. 2286 // - arithmetic types (fundamental, enum, and complex) 2287 // - all kinds of pointers 2288 // Note that member pointers were filtered out with C++, above. 2289 2290 if (isa<ObjCSelectorExpr>(SrcExpr.get())) { 2291 Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_selector_expr); 2292 SrcExpr = ExprError(); 2293 return; 2294 } 2295 2296 // If either type is a pointer, the other type has to be either an 2297 // integer or a pointer. 2298 if (!DestType->isArithmeticType()) { 2299 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) { 2300 Self.Diag(SrcExpr.get()->getExprLoc(), 2301 diag::err_cast_pointer_from_non_pointer_int) 2302 << SrcType << SrcExpr.get()->getSourceRange(); 2303 SrcExpr = ExprError(); 2304 return; 2305 } 2306 checkIntToPointerCast(/* CStyle */ true, OpRange.getBegin(), SrcExpr.get(), 2307 DestType, Self); 2308 } else if (!SrcType->isArithmeticType()) { 2309 if (!DestType->isIntegralType(Self.Context) && 2310 DestType->isArithmeticType()) { 2311 Self.Diag(SrcExpr.get()->getLocStart(), 2312 diag::err_cast_pointer_to_non_pointer_int) 2313 << DestType << SrcExpr.get()->getSourceRange(); 2314 SrcExpr = ExprError(); 2315 return; 2316 } 2317 } 2318 2319 if (Self.getLangOpts().OpenCL && !Self.getOpenCLOptions().cl_khr_fp16) { 2320 if (DestType->isHalfType()) { 2321 Self.Diag(SrcExpr.get()->getLocStart(), diag::err_opencl_cast_to_half) 2322 << DestType << SrcExpr.get()->getSourceRange(); 2323 SrcExpr = ExprError(); 2324 return; 2325 } 2326 } 2327 2328 // ARC imposes extra restrictions on casts. 2329 if (Self.getLangOpts().ObjCAutoRefCount) { 2330 checkObjCARCConversion(Sema::CCK_CStyleCast); 2331 if (SrcExpr.isInvalid()) 2332 return; 2333 2334 if (const PointerType *CastPtr = DestType->getAs<PointerType>()) { 2335 if (const PointerType *ExprPtr = SrcType->getAs<PointerType>()) { 2336 Qualifiers CastQuals = CastPtr->getPointeeType().getQualifiers(); 2337 Qualifiers ExprQuals = ExprPtr->getPointeeType().getQualifiers(); 2338 if (CastPtr->getPointeeType()->isObjCLifetimeType() && 2339 ExprPtr->getPointeeType()->isObjCLifetimeType() && 2340 !CastQuals.compatiblyIncludesObjCLifetime(ExprQuals)) { 2341 Self.Diag(SrcExpr.get()->getLocStart(), 2342 diag::err_typecheck_incompatible_ownership) 2343 << SrcType << DestType << Sema::AA_Casting 2344 << SrcExpr.get()->getSourceRange(); 2345 return; 2346 } 2347 } 2348 } 2349 else if (!Self.CheckObjCARCUnavailableWeakConversion(DestType, SrcType)) { 2350 Self.Diag(SrcExpr.get()->getLocStart(), 2351 diag::err_arc_convesion_of_weak_unavailable) 2352 << 1 << SrcType << DestType << SrcExpr.get()->getSourceRange(); 2353 SrcExpr = ExprError(); 2354 return; 2355 } 2356 } 2357 2358 DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType); 2359 DiagnoseBadFunctionCast(Self, SrcExpr, DestType); 2360 Kind = Self.PrepareScalarCast(SrcExpr, DestType); 2361 if (SrcExpr.isInvalid()) 2362 return; 2363 2364 if (Kind == CK_BitCast) 2365 checkCastAlign(); 2366 } 2367 2368 ExprResult Sema::BuildCStyleCastExpr(SourceLocation LPLoc, 2369 TypeSourceInfo *CastTypeInfo, 2370 SourceLocation RPLoc, 2371 Expr *CastExpr) { 2372 CastOperation Op(*this, CastTypeInfo->getType(), CastExpr); 2373 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange(); 2374 Op.OpRange = SourceRange(LPLoc, CastExpr->getLocEnd()); 2375 2376 if (getLangOpts().CPlusPlus) { 2377 Op.CheckCXXCStyleCast(/*FunctionalStyle=*/ false, 2378 isa<InitListExpr>(CastExpr)); 2379 } else { 2380 Op.CheckCStyleCast(); 2381 } 2382 2383 if (Op.SrcExpr.isInvalid()) 2384 return ExprError(); 2385 2386 return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType, 2387 Op.ValueKind, Op.Kind, Op.SrcExpr.get(), 2388 &Op.BasePath, CastTypeInfo, LPLoc, RPLoc)); 2389 } 2390 2391 ExprResult Sema::BuildCXXFunctionalCastExpr(TypeSourceInfo *CastTypeInfo, 2392 SourceLocation LPLoc, 2393 Expr *CastExpr, 2394 SourceLocation RPLoc) { 2395 assert(LPLoc.isValid() && "List-initialization shouldn't get here."); 2396 CastOperation Op(*this, CastTypeInfo->getType(), CastExpr); 2397 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange(); 2398 Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getLocEnd()); 2399 2400 Op.CheckCXXCStyleCast(/*FunctionalStyle=*/true, /*ListInit=*/false); 2401 if (Op.SrcExpr.isInvalid()) 2402 return ExprError(); 2403 2404 if (CXXConstructExpr *ConstructExpr = dyn_cast<CXXConstructExpr>(Op.SrcExpr.get())) 2405 ConstructExpr->setParenOrBraceRange(SourceRange(LPLoc, RPLoc)); 2406 2407 return Op.complete(CXXFunctionalCastExpr::Create(Context, Op.ResultType, 2408 Op.ValueKind, CastTypeInfo, Op.Kind, 2409 Op.SrcExpr.get(), &Op.BasePath, LPLoc, RPLoc)); 2410 } 2411