1 //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// 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 expressions. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/Sema/SemaInternal.h" 15 #include "TreeTransform.h" 16 #include "clang/AST/ASTConsumer.h" 17 #include "clang/AST/ASTContext.h" 18 #include "clang/AST/ASTLambda.h" 19 #include "clang/AST/ASTMutationListener.h" 20 #include "clang/AST/CXXInheritance.h" 21 #include "clang/AST/DeclObjC.h" 22 #include "clang/AST/DeclTemplate.h" 23 #include "clang/AST/EvaluatedExprVisitor.h" 24 #include "clang/AST/Expr.h" 25 #include "clang/AST/ExprCXX.h" 26 #include "clang/AST/ExprObjC.h" 27 #include "clang/AST/RecursiveASTVisitor.h" 28 #include "clang/AST/TypeLoc.h" 29 #include "clang/Basic/PartialDiagnostic.h" 30 #include "clang/Basic/SourceManager.h" 31 #include "clang/Basic/TargetInfo.h" 32 #include "clang/Lex/LiteralSupport.h" 33 #include "clang/Lex/Preprocessor.h" 34 #include "clang/Sema/AnalysisBasedWarnings.h" 35 #include "clang/Sema/DeclSpec.h" 36 #include "clang/Sema/DelayedDiagnostic.h" 37 #include "clang/Sema/Designator.h" 38 #include "clang/Sema/Initialization.h" 39 #include "clang/Sema/Lookup.h" 40 #include "clang/Sema/ParsedTemplate.h" 41 #include "clang/Sema/Scope.h" 42 #include "clang/Sema/ScopeInfo.h" 43 #include "clang/Sema/SemaFixItUtils.h" 44 #include "clang/Sema/Template.h" 45 #include "llvm/Support/ConvertUTF.h" 46 using namespace clang; 47 using namespace sema; 48 49 /// \brief Determine whether the use of this declaration is valid, without 50 /// emitting diagnostics. 51 bool Sema::CanUseDecl(NamedDecl *D) { 52 // See if this is an auto-typed variable whose initializer we are parsing. 53 if (ParsingInitForAutoVars.count(D)) 54 return false; 55 56 // See if this is a deleted function. 57 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 58 if (FD->isDeleted()) 59 return false; 60 61 // If the function has a deduced return type, and we can't deduce it, 62 // then we can't use it either. 63 if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() && 64 DeduceReturnType(FD, SourceLocation(), /*Diagnose*/ false)) 65 return false; 66 } 67 68 // See if this function is unavailable. 69 if (D->getAvailability() == AR_Unavailable && 70 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable) 71 return false; 72 73 return true; 74 } 75 76 static void DiagnoseUnusedOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc) { 77 // Warn if this is used but marked unused. 78 if (D->hasAttr<UnusedAttr>()) { 79 const Decl *DC = cast_or_null<Decl>(S.getCurObjCLexicalContext()); 80 if (DC && !DC->hasAttr<UnusedAttr>()) 81 S.Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName(); 82 } 83 } 84 85 static bool HasRedeclarationWithoutAvailabilityInCategory(const Decl *D) { 86 const auto *OMD = dyn_cast<ObjCMethodDecl>(D); 87 if (!OMD) 88 return false; 89 const ObjCInterfaceDecl *OID = OMD->getClassInterface(); 90 if (!OID) 91 return false; 92 93 for (const ObjCCategoryDecl *Cat : OID->visible_categories()) 94 if (ObjCMethodDecl *CatMeth = 95 Cat->getMethod(OMD->getSelector(), OMD->isInstanceMethod())) 96 if (!CatMeth->hasAttr<AvailabilityAttr>()) 97 return true; 98 return false; 99 } 100 101 static AvailabilityResult 102 DiagnoseAvailabilityOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc, 103 const ObjCInterfaceDecl *UnknownObjCClass, 104 bool ObjCPropertyAccess) { 105 // See if this declaration is unavailable or deprecated. 106 std::string Message; 107 AvailabilityResult Result = D->getAvailability(&Message); 108 109 // For typedefs, if the typedef declaration appears available look 110 // to the underlying type to see if it is more restrictive. 111 while (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) { 112 if (Result == AR_Available) { 113 if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) { 114 D = TT->getDecl(); 115 Result = D->getAvailability(&Message); 116 continue; 117 } 118 } 119 break; 120 } 121 122 // Forward class declarations get their attributes from their definition. 123 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(D)) { 124 if (IDecl->getDefinition()) { 125 D = IDecl->getDefinition(); 126 Result = D->getAvailability(&Message); 127 } 128 } 129 130 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) 131 if (Result == AR_Available) { 132 const DeclContext *DC = ECD->getDeclContext(); 133 if (const EnumDecl *TheEnumDecl = dyn_cast<EnumDecl>(DC)) 134 Result = TheEnumDecl->getAvailability(&Message); 135 } 136 137 const ObjCPropertyDecl *ObjCPDecl = nullptr; 138 if (Result == AR_Deprecated || Result == AR_Unavailable || 139 AR_NotYetIntroduced) { 140 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 141 if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) { 142 AvailabilityResult PDeclResult = PD->getAvailability(nullptr); 143 if (PDeclResult == Result) 144 ObjCPDecl = PD; 145 } 146 } 147 } 148 149 switch (Result) { 150 case AR_Available: 151 break; 152 153 case AR_Deprecated: 154 if (S.getCurContextAvailability() != AR_Deprecated) 155 S.EmitAvailabilityWarning(Sema::AD_Deprecation, 156 D, Message, Loc, UnknownObjCClass, ObjCPDecl, 157 ObjCPropertyAccess); 158 break; 159 160 case AR_NotYetIntroduced: { 161 // Don't do this for enums, they can't be redeclared. 162 if (isa<EnumConstantDecl>(D) || isa<EnumDecl>(D)) 163 break; 164 165 bool Warn = !D->getAttr<AvailabilityAttr>()->isInherited(); 166 // Objective-C method declarations in categories are not modelled as 167 // redeclarations, so manually look for a redeclaration in a category 168 // if necessary. 169 if (Warn && HasRedeclarationWithoutAvailabilityInCategory(D)) 170 Warn = false; 171 // In general, D will point to the most recent redeclaration. However, 172 // for `@class A;` decls, this isn't true -- manually go through the 173 // redecl chain in that case. 174 if (Warn && isa<ObjCInterfaceDecl>(D)) 175 for (Decl *Redecl = D->getMostRecentDecl(); Redecl && Warn; 176 Redecl = Redecl->getPreviousDecl()) 177 if (!Redecl->hasAttr<AvailabilityAttr>() || 178 Redecl->getAttr<AvailabilityAttr>()->isInherited()) 179 Warn = false; 180 181 if (Warn) 182 S.EmitAvailabilityWarning(Sema::AD_Partial, D, Message, Loc, 183 UnknownObjCClass, ObjCPDecl, 184 ObjCPropertyAccess); 185 break; 186 } 187 188 case AR_Unavailable: 189 if (S.getCurContextAvailability() != AR_Unavailable) 190 S.EmitAvailabilityWarning(Sema::AD_Unavailable, 191 D, Message, Loc, UnknownObjCClass, ObjCPDecl, 192 ObjCPropertyAccess); 193 break; 194 195 } 196 return Result; 197 } 198 199 /// \brief Emit a note explaining that this function is deleted. 200 void Sema::NoteDeletedFunction(FunctionDecl *Decl) { 201 assert(Decl->isDeleted()); 202 203 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl); 204 205 if (Method && Method->isDeleted() && Method->isDefaulted()) { 206 // If the method was explicitly defaulted, point at that declaration. 207 if (!Method->isImplicit()) 208 Diag(Decl->getLocation(), diag::note_implicitly_deleted); 209 210 // Try to diagnose why this special member function was implicitly 211 // deleted. This might fail, if that reason no longer applies. 212 CXXSpecialMember CSM = getSpecialMember(Method); 213 if (CSM != CXXInvalid) 214 ShouldDeleteSpecialMember(Method, CSM, /*Diagnose=*/true); 215 216 return; 217 } 218 219 if (CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(Decl)) { 220 if (CXXConstructorDecl *BaseCD = 221 const_cast<CXXConstructorDecl*>(CD->getInheritedConstructor())) { 222 Diag(Decl->getLocation(), diag::note_inherited_deleted_here); 223 if (BaseCD->isDeleted()) { 224 NoteDeletedFunction(BaseCD); 225 } else { 226 // FIXME: An explanation of why exactly it can't be inherited 227 // would be nice. 228 Diag(BaseCD->getLocation(), diag::note_cannot_inherit); 229 } 230 return; 231 } 232 } 233 234 Diag(Decl->getLocation(), diag::note_availability_specified_here) 235 << Decl << true; 236 } 237 238 /// \brief Determine whether a FunctionDecl was ever declared with an 239 /// explicit storage class. 240 static bool hasAnyExplicitStorageClass(const FunctionDecl *D) { 241 for (auto I : D->redecls()) { 242 if (I->getStorageClass() != SC_None) 243 return true; 244 } 245 return false; 246 } 247 248 /// \brief Check whether we're in an extern inline function and referring to a 249 /// variable or function with internal linkage (C11 6.7.4p3). 250 /// 251 /// This is only a warning because we used to silently accept this code, but 252 /// in many cases it will not behave correctly. This is not enabled in C++ mode 253 /// because the restriction language is a bit weaker (C++11 [basic.def.odr]p6) 254 /// and so while there may still be user mistakes, most of the time we can't 255 /// prove that there are errors. 256 static void diagnoseUseOfInternalDeclInInlineFunction(Sema &S, 257 const NamedDecl *D, 258 SourceLocation Loc) { 259 // This is disabled under C++; there are too many ways for this to fire in 260 // contexts where the warning is a false positive, or where it is technically 261 // correct but benign. 262 if (S.getLangOpts().CPlusPlus) 263 return; 264 265 // Check if this is an inlined function or method. 266 FunctionDecl *Current = S.getCurFunctionDecl(); 267 if (!Current) 268 return; 269 if (!Current->isInlined()) 270 return; 271 if (!Current->isExternallyVisible()) 272 return; 273 274 // Check if the decl has internal linkage. 275 if (D->getFormalLinkage() != InternalLinkage) 276 return; 277 278 // Downgrade from ExtWarn to Extension if 279 // (1) the supposedly external inline function is in the main file, 280 // and probably won't be included anywhere else. 281 // (2) the thing we're referencing is a pure function. 282 // (3) the thing we're referencing is another inline function. 283 // This last can give us false negatives, but it's better than warning on 284 // wrappers for simple C library functions. 285 const FunctionDecl *UsedFn = dyn_cast<FunctionDecl>(D); 286 bool DowngradeWarning = S.getSourceManager().isInMainFile(Loc); 287 if (!DowngradeWarning && UsedFn) 288 DowngradeWarning = UsedFn->isInlined() || UsedFn->hasAttr<ConstAttr>(); 289 290 S.Diag(Loc, DowngradeWarning ? diag::ext_internal_in_extern_inline_quiet 291 : diag::ext_internal_in_extern_inline) 292 << /*IsVar=*/!UsedFn << D; 293 294 S.MaybeSuggestAddingStaticToDecl(Current); 295 296 S.Diag(D->getCanonicalDecl()->getLocation(), diag::note_entity_declared_at) 297 << D; 298 } 299 300 void Sema::MaybeSuggestAddingStaticToDecl(const FunctionDecl *Cur) { 301 const FunctionDecl *First = Cur->getFirstDecl(); 302 303 // Suggest "static" on the function, if possible. 304 if (!hasAnyExplicitStorageClass(First)) { 305 SourceLocation DeclBegin = First->getSourceRange().getBegin(); 306 Diag(DeclBegin, diag::note_convert_inline_to_static) 307 << Cur << FixItHint::CreateInsertion(DeclBegin, "static "); 308 } 309 } 310 311 /// \brief Determine whether the use of this declaration is valid, and 312 /// emit any corresponding diagnostics. 313 /// 314 /// This routine diagnoses various problems with referencing 315 /// declarations that can occur when using a declaration. For example, 316 /// it might warn if a deprecated or unavailable declaration is being 317 /// used, or produce an error (and return true) if a C++0x deleted 318 /// function is being used. 319 /// 320 /// \returns true if there was an error (this declaration cannot be 321 /// referenced), false otherwise. 322 /// 323 bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc, 324 const ObjCInterfaceDecl *UnknownObjCClass, 325 bool ObjCPropertyAccess) { 326 if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) { 327 // If there were any diagnostics suppressed by template argument deduction, 328 // emit them now. 329 SuppressedDiagnosticsMap::iterator 330 Pos = SuppressedDiagnostics.find(D->getCanonicalDecl()); 331 if (Pos != SuppressedDiagnostics.end()) { 332 SmallVectorImpl<PartialDiagnosticAt> &Suppressed = Pos->second; 333 for (unsigned I = 0, N = Suppressed.size(); I != N; ++I) 334 Diag(Suppressed[I].first, Suppressed[I].second); 335 336 // Clear out the list of suppressed diagnostics, so that we don't emit 337 // them again for this specialization. However, we don't obsolete this 338 // entry from the table, because we want to avoid ever emitting these 339 // diagnostics again. 340 Suppressed.clear(); 341 } 342 343 // C++ [basic.start.main]p3: 344 // The function 'main' shall not be used within a program. 345 if (cast<FunctionDecl>(D)->isMain()) 346 Diag(Loc, diag::ext_main_used); 347 } 348 349 // See if this is an auto-typed variable whose initializer we are parsing. 350 if (ParsingInitForAutoVars.count(D)) { 351 Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer) 352 << D->getDeclName(); 353 return true; 354 } 355 356 // See if this is a deleted function. 357 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 358 if (FD->isDeleted()) { 359 Diag(Loc, diag::err_deleted_function_use); 360 NoteDeletedFunction(FD); 361 return true; 362 } 363 364 // If the function has a deduced return type, and we can't deduce it, 365 // then we can't use it either. 366 if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() && 367 DeduceReturnType(FD, Loc)) 368 return true; 369 } 370 DiagnoseAvailabilityOfDecl(*this, D, Loc, UnknownObjCClass, 371 ObjCPropertyAccess); 372 373 DiagnoseUnusedOfDecl(*this, D, Loc); 374 375 diagnoseUseOfInternalDeclInInlineFunction(*this, D, Loc); 376 377 return false; 378 } 379 380 /// \brief Retrieve the message suffix that should be added to a 381 /// diagnostic complaining about the given function being deleted or 382 /// unavailable. 383 std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) { 384 std::string Message; 385 if (FD->getAvailability(&Message)) 386 return ": " + Message; 387 388 return std::string(); 389 } 390 391 /// DiagnoseSentinelCalls - This routine checks whether a call or 392 /// message-send is to a declaration with the sentinel attribute, and 393 /// if so, it checks that the requirements of the sentinel are 394 /// satisfied. 395 void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, 396 ArrayRef<Expr *> Args) { 397 const SentinelAttr *attr = D->getAttr<SentinelAttr>(); 398 if (!attr) 399 return; 400 401 // The number of formal parameters of the declaration. 402 unsigned numFormalParams; 403 404 // The kind of declaration. This is also an index into a %select in 405 // the diagnostic. 406 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; 407 408 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 409 numFormalParams = MD->param_size(); 410 calleeType = CT_Method; 411 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 412 numFormalParams = FD->param_size(); 413 calleeType = CT_Function; 414 } else if (isa<VarDecl>(D)) { 415 QualType type = cast<ValueDecl>(D)->getType(); 416 const FunctionType *fn = nullptr; 417 if (const PointerType *ptr = type->getAs<PointerType>()) { 418 fn = ptr->getPointeeType()->getAs<FunctionType>(); 419 if (!fn) return; 420 calleeType = CT_Function; 421 } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) { 422 fn = ptr->getPointeeType()->castAs<FunctionType>(); 423 calleeType = CT_Block; 424 } else { 425 return; 426 } 427 428 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) { 429 numFormalParams = proto->getNumParams(); 430 } else { 431 numFormalParams = 0; 432 } 433 } else { 434 return; 435 } 436 437 // "nullPos" is the number of formal parameters at the end which 438 // effectively count as part of the variadic arguments. This is 439 // useful if you would prefer to not have *any* formal parameters, 440 // but the language forces you to have at least one. 441 unsigned nullPos = attr->getNullPos(); 442 assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel"); 443 numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos); 444 445 // The number of arguments which should follow the sentinel. 446 unsigned numArgsAfterSentinel = attr->getSentinel(); 447 448 // If there aren't enough arguments for all the formal parameters, 449 // the sentinel, and the args after the sentinel, complain. 450 if (Args.size() < numFormalParams + numArgsAfterSentinel + 1) { 451 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); 452 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); 453 return; 454 } 455 456 // Otherwise, find the sentinel expression. 457 Expr *sentinelExpr = Args[Args.size() - numArgsAfterSentinel - 1]; 458 if (!sentinelExpr) return; 459 if (sentinelExpr->isValueDependent()) return; 460 if (Context.isSentinelNullExpr(sentinelExpr)) return; 461 462 // Pick a reasonable string to insert. Optimistically use 'nil', 'nullptr', 463 // or 'NULL' if those are actually defined in the context. Only use 464 // 'nil' for ObjC methods, where it's much more likely that the 465 // variadic arguments form a list of object pointers. 466 SourceLocation MissingNilLoc 467 = PP.getLocForEndOfToken(sentinelExpr->getLocEnd()); 468 std::string NullValue; 469 if (calleeType == CT_Method && PP.isMacroDefined("nil")) 470 NullValue = "nil"; 471 else if (getLangOpts().CPlusPlus11) 472 NullValue = "nullptr"; 473 else if (PP.isMacroDefined("NULL")) 474 NullValue = "NULL"; 475 else 476 NullValue = "(void*) 0"; 477 478 if (MissingNilLoc.isInvalid()) 479 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType); 480 else 481 Diag(MissingNilLoc, diag::warn_missing_sentinel) 482 << int(calleeType) 483 << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue); 484 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); 485 } 486 487 SourceRange Sema::getExprRange(Expr *E) const { 488 return E ? E->getSourceRange() : SourceRange(); 489 } 490 491 //===----------------------------------------------------------------------===// 492 // Standard Promotions and Conversions 493 //===----------------------------------------------------------------------===// 494 495 /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). 496 ExprResult Sema::DefaultFunctionArrayConversion(Expr *E) { 497 // Handle any placeholder expressions which made it here. 498 if (E->getType()->isPlaceholderType()) { 499 ExprResult result = CheckPlaceholderExpr(E); 500 if (result.isInvalid()) return ExprError(); 501 E = result.get(); 502 } 503 504 QualType Ty = E->getType(); 505 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); 506 507 if (Ty->isFunctionType()) { 508 // If we are here, we are not calling a function but taking 509 // its address (which is not allowed in OpenCL v1.0 s6.8.a.3). 510 if (getLangOpts().OpenCL) { 511 Diag(E->getExprLoc(), diag::err_opencl_taking_function_address); 512 return ExprError(); 513 } 514 E = ImpCastExprToType(E, Context.getPointerType(Ty), 515 CK_FunctionToPointerDecay).get(); 516 } else if (Ty->isArrayType()) { 517 // In C90 mode, arrays only promote to pointers if the array expression is 518 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has 519 // type 'array of type' is converted to an expression that has type 'pointer 520 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression 521 // that has type 'array of type' ...". The relevant change is "an lvalue" 522 // (C90) to "an expression" (C99). 523 // 524 // C++ 4.2p1: 525 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of 526 // T" can be converted to an rvalue of type "pointer to T". 527 // 528 if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue()) 529 E = ImpCastExprToType(E, Context.getArrayDecayedType(Ty), 530 CK_ArrayToPointerDecay).get(); 531 } 532 return E; 533 } 534 535 static void CheckForNullPointerDereference(Sema &S, Expr *E) { 536 // Check to see if we are dereferencing a null pointer. If so, 537 // and if not volatile-qualified, this is undefined behavior that the 538 // optimizer will delete, so warn about it. People sometimes try to use this 539 // to get a deterministic trap and are surprised by clang's behavior. This 540 // only handles the pattern "*null", which is a very syntactic check. 541 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts())) 542 if (UO->getOpcode() == UO_Deref && 543 UO->getSubExpr()->IgnoreParenCasts()-> 544 isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull) && 545 !UO->getType().isVolatileQualified()) { 546 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, 547 S.PDiag(diag::warn_indirection_through_null) 548 << UO->getSubExpr()->getSourceRange()); 549 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, 550 S.PDiag(diag::note_indirection_through_null)); 551 } 552 } 553 554 static void DiagnoseDirectIsaAccess(Sema &S, const ObjCIvarRefExpr *OIRE, 555 SourceLocation AssignLoc, 556 const Expr* RHS) { 557 const ObjCIvarDecl *IV = OIRE->getDecl(); 558 if (!IV) 559 return; 560 561 DeclarationName MemberName = IV->getDeclName(); 562 IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); 563 if (!Member || !Member->isStr("isa")) 564 return; 565 566 const Expr *Base = OIRE->getBase(); 567 QualType BaseType = Base->getType(); 568 if (OIRE->isArrow()) 569 BaseType = BaseType->getPointeeType(); 570 if (const ObjCObjectType *OTy = BaseType->getAs<ObjCObjectType>()) 571 if (ObjCInterfaceDecl *IDecl = OTy->getInterface()) { 572 ObjCInterfaceDecl *ClassDeclared = nullptr; 573 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared); 574 if (!ClassDeclared->getSuperClass() 575 && (*ClassDeclared->ivar_begin()) == IV) { 576 if (RHS) { 577 NamedDecl *ObjectSetClass = 578 S.LookupSingleName(S.TUScope, 579 &S.Context.Idents.get("object_setClass"), 580 SourceLocation(), S.LookupOrdinaryName); 581 if (ObjectSetClass) { 582 SourceLocation RHSLocEnd = S.PP.getLocForEndOfToken(RHS->getLocEnd()); 583 S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_assign) << 584 FixItHint::CreateInsertion(OIRE->getLocStart(), "object_setClass(") << 585 FixItHint::CreateReplacement(SourceRange(OIRE->getOpLoc(), 586 AssignLoc), ",") << 587 FixItHint::CreateInsertion(RHSLocEnd, ")"); 588 } 589 else 590 S.Diag(OIRE->getLocation(), diag::warn_objc_isa_assign); 591 } else { 592 NamedDecl *ObjectGetClass = 593 S.LookupSingleName(S.TUScope, 594 &S.Context.Idents.get("object_getClass"), 595 SourceLocation(), S.LookupOrdinaryName); 596 if (ObjectGetClass) 597 S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_use) << 598 FixItHint::CreateInsertion(OIRE->getLocStart(), "object_getClass(") << 599 FixItHint::CreateReplacement( 600 SourceRange(OIRE->getOpLoc(), 601 OIRE->getLocEnd()), ")"); 602 else 603 S.Diag(OIRE->getLocation(), diag::warn_objc_isa_use); 604 } 605 S.Diag(IV->getLocation(), diag::note_ivar_decl); 606 } 607 } 608 } 609 610 ExprResult Sema::DefaultLvalueConversion(Expr *E) { 611 // Handle any placeholder expressions which made it here. 612 if (E->getType()->isPlaceholderType()) { 613 ExprResult result = CheckPlaceholderExpr(E); 614 if (result.isInvalid()) return ExprError(); 615 E = result.get(); 616 } 617 618 // C++ [conv.lval]p1: 619 // A glvalue of a non-function, non-array type T can be 620 // converted to a prvalue. 621 if (!E->isGLValue()) return E; 622 623 QualType T = E->getType(); 624 assert(!T.isNull() && "r-value conversion on typeless expression?"); 625 626 // We don't want to throw lvalue-to-rvalue casts on top of 627 // expressions of certain types in C++. 628 if (getLangOpts().CPlusPlus && 629 (E->getType() == Context.OverloadTy || 630 T->isDependentType() || 631 T->isRecordType())) 632 return E; 633 634 // The C standard is actually really unclear on this point, and 635 // DR106 tells us what the result should be but not why. It's 636 // generally best to say that void types just doesn't undergo 637 // lvalue-to-rvalue at all. Note that expressions of unqualified 638 // 'void' type are never l-values, but qualified void can be. 639 if (T->isVoidType()) 640 return E; 641 642 // OpenCL usually rejects direct accesses to values of 'half' type. 643 if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp16 && 644 T->isHalfType()) { 645 Diag(E->getExprLoc(), diag::err_opencl_half_load_store) 646 << 0 << T; 647 return ExprError(); 648 } 649 650 CheckForNullPointerDereference(*this, E); 651 if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(E->IgnoreParenCasts())) { 652 NamedDecl *ObjectGetClass = LookupSingleName(TUScope, 653 &Context.Idents.get("object_getClass"), 654 SourceLocation(), LookupOrdinaryName); 655 if (ObjectGetClass) 656 Diag(E->getExprLoc(), diag::warn_objc_isa_use) << 657 FixItHint::CreateInsertion(OISA->getLocStart(), "object_getClass(") << 658 FixItHint::CreateReplacement( 659 SourceRange(OISA->getOpLoc(), OISA->getIsaMemberLoc()), ")"); 660 else 661 Diag(E->getExprLoc(), diag::warn_objc_isa_use); 662 } 663 else if (const ObjCIvarRefExpr *OIRE = 664 dyn_cast<ObjCIvarRefExpr>(E->IgnoreParenCasts())) 665 DiagnoseDirectIsaAccess(*this, OIRE, SourceLocation(), /* Expr*/nullptr); 666 667 // C++ [conv.lval]p1: 668 // [...] If T is a non-class type, the type of the prvalue is the 669 // cv-unqualified version of T. Otherwise, the type of the 670 // rvalue is T. 671 // 672 // C99 6.3.2.1p2: 673 // If the lvalue has qualified type, the value has the unqualified 674 // version of the type of the lvalue; otherwise, the value has the 675 // type of the lvalue. 676 if (T.hasQualifiers()) 677 T = T.getUnqualifiedType(); 678 679 UpdateMarkingForLValueToRValue(E); 680 681 // Loading a __weak object implicitly retains the value, so we need a cleanup to 682 // balance that. 683 if (getLangOpts().ObjCAutoRefCount && 684 E->getType().getObjCLifetime() == Qualifiers::OCL_Weak) 685 ExprNeedsCleanups = true; 686 687 ExprResult Res = ImplicitCastExpr::Create(Context, T, CK_LValueToRValue, E, 688 nullptr, VK_RValue); 689 690 // C11 6.3.2.1p2: 691 // ... if the lvalue has atomic type, the value has the non-atomic version 692 // of the type of the lvalue ... 693 if (const AtomicType *Atomic = T->getAs<AtomicType>()) { 694 T = Atomic->getValueType().getUnqualifiedType(); 695 Res = ImplicitCastExpr::Create(Context, T, CK_AtomicToNonAtomic, Res.get(), 696 nullptr, VK_RValue); 697 } 698 699 return Res; 700 } 701 702 ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E) { 703 ExprResult Res = DefaultFunctionArrayConversion(E); 704 if (Res.isInvalid()) 705 return ExprError(); 706 Res = DefaultLvalueConversion(Res.get()); 707 if (Res.isInvalid()) 708 return ExprError(); 709 return Res; 710 } 711 712 /// CallExprUnaryConversions - a special case of an unary conversion 713 /// performed on a function designator of a call expression. 714 ExprResult Sema::CallExprUnaryConversions(Expr *E) { 715 QualType Ty = E->getType(); 716 ExprResult Res = E; 717 // Only do implicit cast for a function type, but not for a pointer 718 // to function type. 719 if (Ty->isFunctionType()) { 720 Res = ImpCastExprToType(E, Context.getPointerType(Ty), 721 CK_FunctionToPointerDecay).get(); 722 if (Res.isInvalid()) 723 return ExprError(); 724 } 725 Res = DefaultLvalueConversion(Res.get()); 726 if (Res.isInvalid()) 727 return ExprError(); 728 return Res.get(); 729 } 730 731 /// UsualUnaryConversions - Performs various conversions that are common to most 732 /// operators (C99 6.3). The conversions of array and function types are 733 /// sometimes suppressed. For example, the array->pointer conversion doesn't 734 /// apply if the array is an argument to the sizeof or address (&) operators. 735 /// In these instances, this routine should *not* be called. 736 ExprResult Sema::UsualUnaryConversions(Expr *E) { 737 // First, convert to an r-value. 738 ExprResult Res = DefaultFunctionArrayLvalueConversion(E); 739 if (Res.isInvalid()) 740 return ExprError(); 741 E = Res.get(); 742 743 QualType Ty = E->getType(); 744 assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); 745 746 // Half FP have to be promoted to float unless it is natively supported 747 if (Ty->isHalfType() && !getLangOpts().NativeHalfType) 748 return ImpCastExprToType(Res.get(), Context.FloatTy, CK_FloatingCast); 749 750 // Try to perform integral promotions if the object has a theoretically 751 // promotable type. 752 if (Ty->isIntegralOrUnscopedEnumerationType()) { 753 // C99 6.3.1.1p2: 754 // 755 // The following may be used in an expression wherever an int or 756 // unsigned int may be used: 757 // - an object or expression with an integer type whose integer 758 // conversion rank is less than or equal to the rank of int 759 // and unsigned int. 760 // - A bit-field of type _Bool, int, signed int, or unsigned int. 761 // 762 // If an int can represent all values of the original type, the 763 // value is converted to an int; otherwise, it is converted to an 764 // unsigned int. These are called the integer promotions. All 765 // other types are unchanged by the integer promotions. 766 767 QualType PTy = Context.isPromotableBitField(E); 768 if (!PTy.isNull()) { 769 E = ImpCastExprToType(E, PTy, CK_IntegralCast).get(); 770 return E; 771 } 772 if (Ty->isPromotableIntegerType()) { 773 QualType PT = Context.getPromotedIntegerType(Ty); 774 E = ImpCastExprToType(E, PT, CK_IntegralCast).get(); 775 return E; 776 } 777 } 778 return E; 779 } 780 781 /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that 782 /// do not have a prototype. Arguments that have type float or __fp16 783 /// are promoted to double. All other argument types are converted by 784 /// UsualUnaryConversions(). 785 ExprResult Sema::DefaultArgumentPromotion(Expr *E) { 786 QualType Ty = E->getType(); 787 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); 788 789 ExprResult Res = UsualUnaryConversions(E); 790 if (Res.isInvalid()) 791 return ExprError(); 792 E = Res.get(); 793 794 // If this is a 'float' or '__fp16' (CVR qualified or typedef) promote to 795 // double. 796 const BuiltinType *BTy = Ty->getAs<BuiltinType>(); 797 if (BTy && (BTy->getKind() == BuiltinType::Half || 798 BTy->getKind() == BuiltinType::Float)) 799 E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).get(); 800 801 // C++ performs lvalue-to-rvalue conversion as a default argument 802 // promotion, even on class types, but note: 803 // C++11 [conv.lval]p2: 804 // When an lvalue-to-rvalue conversion occurs in an unevaluated 805 // operand or a subexpression thereof the value contained in the 806 // referenced object is not accessed. Otherwise, if the glvalue 807 // has a class type, the conversion copy-initializes a temporary 808 // of type T from the glvalue and the result of the conversion 809 // is a prvalue for the temporary. 810 // FIXME: add some way to gate this entire thing for correctness in 811 // potentially potentially evaluated contexts. 812 if (getLangOpts().CPlusPlus && E->isGLValue() && !isUnevaluatedContext()) { 813 ExprResult Temp = PerformCopyInitialization( 814 InitializedEntity::InitializeTemporary(E->getType()), 815 E->getExprLoc(), E); 816 if (Temp.isInvalid()) 817 return ExprError(); 818 E = Temp.get(); 819 } 820 821 return E; 822 } 823 824 /// Determine the degree of POD-ness for an expression. 825 /// Incomplete types are considered POD, since this check can be performed 826 /// when we're in an unevaluated context. 827 Sema::VarArgKind Sema::isValidVarArgType(const QualType &Ty) { 828 if (Ty->isIncompleteType()) { 829 // C++11 [expr.call]p7: 830 // After these conversions, if the argument does not have arithmetic, 831 // enumeration, pointer, pointer to member, or class type, the program 832 // is ill-formed. 833 // 834 // Since we've already performed array-to-pointer and function-to-pointer 835 // decay, the only such type in C++ is cv void. This also handles 836 // initializer lists as variadic arguments. 837 if (Ty->isVoidType()) 838 return VAK_Invalid; 839 840 if (Ty->isObjCObjectType()) 841 return VAK_Invalid; 842 return VAK_Valid; 843 } 844 845 if (Ty.isCXX98PODType(Context)) 846 return VAK_Valid; 847 848 // C++11 [expr.call]p7: 849 // Passing a potentially-evaluated argument of class type (Clause 9) 850 // having a non-trivial copy constructor, a non-trivial move constructor, 851 // or a non-trivial destructor, with no corresponding parameter, 852 // is conditionally-supported with implementation-defined semantics. 853 if (getLangOpts().CPlusPlus11 && !Ty->isDependentType()) 854 if (CXXRecordDecl *Record = Ty->getAsCXXRecordDecl()) 855 if (!Record->hasNonTrivialCopyConstructor() && 856 !Record->hasNonTrivialMoveConstructor() && 857 !Record->hasNonTrivialDestructor()) 858 return VAK_ValidInCXX11; 859 860 if (getLangOpts().ObjCAutoRefCount && Ty->isObjCLifetimeType()) 861 return VAK_Valid; 862 863 if (Ty->isObjCObjectType()) 864 return VAK_Invalid; 865 866 if (getLangOpts().MSVCCompat) 867 return VAK_MSVCUndefined; 868 869 // FIXME: In C++11, these cases are conditionally-supported, meaning we're 870 // permitted to reject them. We should consider doing so. 871 return VAK_Undefined; 872 } 873 874 void Sema::checkVariadicArgument(const Expr *E, VariadicCallType CT) { 875 // Don't allow one to pass an Objective-C interface to a vararg. 876 const QualType &Ty = E->getType(); 877 VarArgKind VAK = isValidVarArgType(Ty); 878 879 // Complain about passing non-POD types through varargs. 880 switch (VAK) { 881 case VAK_ValidInCXX11: 882 DiagRuntimeBehavior( 883 E->getLocStart(), nullptr, 884 PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg) 885 << Ty << CT); 886 // Fall through. 887 case VAK_Valid: 888 if (Ty->isRecordType()) { 889 // This is unlikely to be what the user intended. If the class has a 890 // 'c_str' member function, the user probably meant to call that. 891 DiagRuntimeBehavior(E->getLocStart(), nullptr, 892 PDiag(diag::warn_pass_class_arg_to_vararg) 893 << Ty << CT << hasCStrMethod(E) << ".c_str()"); 894 } 895 break; 896 897 case VAK_Undefined: 898 case VAK_MSVCUndefined: 899 DiagRuntimeBehavior( 900 E->getLocStart(), nullptr, 901 PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg) 902 << getLangOpts().CPlusPlus11 << Ty << CT); 903 break; 904 905 case VAK_Invalid: 906 if (Ty->isObjCObjectType()) 907 DiagRuntimeBehavior( 908 E->getLocStart(), nullptr, 909 PDiag(diag::err_cannot_pass_objc_interface_to_vararg) 910 << Ty << CT); 911 else 912 Diag(E->getLocStart(), diag::err_cannot_pass_to_vararg) 913 << isa<InitListExpr>(E) << Ty << CT; 914 break; 915 } 916 } 917 918 /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but 919 /// will create a trap if the resulting type is not a POD type. 920 ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT, 921 FunctionDecl *FDecl) { 922 if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) { 923 // Strip the unbridged-cast placeholder expression off, if applicable. 924 if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast && 925 (CT == VariadicMethod || 926 (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) { 927 E = stripARCUnbridgedCast(E); 928 929 // Otherwise, do normal placeholder checking. 930 } else { 931 ExprResult ExprRes = CheckPlaceholderExpr(E); 932 if (ExprRes.isInvalid()) 933 return ExprError(); 934 E = ExprRes.get(); 935 } 936 } 937 938 ExprResult ExprRes = DefaultArgumentPromotion(E); 939 if (ExprRes.isInvalid()) 940 return ExprError(); 941 E = ExprRes.get(); 942 943 // Diagnostics regarding non-POD argument types are 944 // emitted along with format string checking in Sema::CheckFunctionCall(). 945 if (isValidVarArgType(E->getType()) == VAK_Undefined) { 946 // Turn this into a trap. 947 CXXScopeSpec SS; 948 SourceLocation TemplateKWLoc; 949 UnqualifiedId Name; 950 Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"), 951 E->getLocStart()); 952 ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc, 953 Name, true, false); 954 if (TrapFn.isInvalid()) 955 return ExprError(); 956 957 ExprResult Call = ActOnCallExpr(TUScope, TrapFn.get(), 958 E->getLocStart(), None, 959 E->getLocEnd()); 960 if (Call.isInvalid()) 961 return ExprError(); 962 963 ExprResult Comma = ActOnBinOp(TUScope, E->getLocStart(), tok::comma, 964 Call.get(), E); 965 if (Comma.isInvalid()) 966 return ExprError(); 967 return Comma.get(); 968 } 969 970 if (!getLangOpts().CPlusPlus && 971 RequireCompleteType(E->getExprLoc(), E->getType(), 972 diag::err_call_incomplete_argument)) 973 return ExprError(); 974 975 return E; 976 } 977 978 /// \brief Converts an integer to complex float type. Helper function of 979 /// UsualArithmeticConversions() 980 /// 981 /// \return false if the integer expression is an integer type and is 982 /// successfully converted to the complex type. 983 static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr, 984 ExprResult &ComplexExpr, 985 QualType IntTy, 986 QualType ComplexTy, 987 bool SkipCast) { 988 if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true; 989 if (SkipCast) return false; 990 if (IntTy->isIntegerType()) { 991 QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType(); 992 IntExpr = S.ImpCastExprToType(IntExpr.get(), fpTy, CK_IntegralToFloating); 993 IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy, 994 CK_FloatingRealToComplex); 995 } else { 996 assert(IntTy->isComplexIntegerType()); 997 IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy, 998 CK_IntegralComplexToFloatingComplex); 999 } 1000 return false; 1001 } 1002 1003 /// \brief Handle arithmetic conversion with complex types. Helper function of 1004 /// UsualArithmeticConversions() 1005 static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS, 1006 ExprResult &RHS, QualType LHSType, 1007 QualType RHSType, 1008 bool IsCompAssign) { 1009 // if we have an integer operand, the result is the complex type. 1010 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType, 1011 /*skipCast*/false)) 1012 return LHSType; 1013 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType, 1014 /*skipCast*/IsCompAssign)) 1015 return RHSType; 1016 1017 // This handles complex/complex, complex/float, or float/complex. 1018 // When both operands are complex, the shorter operand is converted to the 1019 // type of the longer, and that is the type of the result. This corresponds 1020 // to what is done when combining two real floating-point operands. 1021 // The fun begins when size promotion occur across type domains. 1022 // From H&S 6.3.4: When one operand is complex and the other is a real 1023 // floating-point type, the less precise type is converted, within it's 1024 // real or complex domain, to the precision of the other type. For example, 1025 // when combining a "long double" with a "double _Complex", the 1026 // "double _Complex" is promoted to "long double _Complex". 1027 1028 // Compute the rank of the two types, regardless of whether they are complex. 1029 int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType); 1030 1031 auto *LHSComplexType = dyn_cast<ComplexType>(LHSType); 1032 auto *RHSComplexType = dyn_cast<ComplexType>(RHSType); 1033 QualType LHSElementType = 1034 LHSComplexType ? LHSComplexType->getElementType() : LHSType; 1035 QualType RHSElementType = 1036 RHSComplexType ? RHSComplexType->getElementType() : RHSType; 1037 1038 QualType ResultType = S.Context.getComplexType(LHSElementType); 1039 if (Order < 0) { 1040 // Promote the precision of the LHS if not an assignment. 1041 ResultType = S.Context.getComplexType(RHSElementType); 1042 if (!IsCompAssign) { 1043 if (LHSComplexType) 1044 LHS = 1045 S.ImpCastExprToType(LHS.get(), ResultType, CK_FloatingComplexCast); 1046 else 1047 LHS = S.ImpCastExprToType(LHS.get(), RHSElementType, CK_FloatingCast); 1048 } 1049 } else if (Order > 0) { 1050 // Promote the precision of the RHS. 1051 if (RHSComplexType) 1052 RHS = S.ImpCastExprToType(RHS.get(), ResultType, CK_FloatingComplexCast); 1053 else 1054 RHS = S.ImpCastExprToType(RHS.get(), LHSElementType, CK_FloatingCast); 1055 } 1056 return ResultType; 1057 } 1058 1059 /// \brief Hande arithmetic conversion from integer to float. Helper function 1060 /// of UsualArithmeticConversions() 1061 static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr, 1062 ExprResult &IntExpr, 1063 QualType FloatTy, QualType IntTy, 1064 bool ConvertFloat, bool ConvertInt) { 1065 if (IntTy->isIntegerType()) { 1066 if (ConvertInt) 1067 // Convert intExpr to the lhs floating point type. 1068 IntExpr = S.ImpCastExprToType(IntExpr.get(), FloatTy, 1069 CK_IntegralToFloating); 1070 return FloatTy; 1071 } 1072 1073 // Convert both sides to the appropriate complex float. 1074 assert(IntTy->isComplexIntegerType()); 1075 QualType result = S.Context.getComplexType(FloatTy); 1076 1077 // _Complex int -> _Complex float 1078 if (ConvertInt) 1079 IntExpr = S.ImpCastExprToType(IntExpr.get(), result, 1080 CK_IntegralComplexToFloatingComplex); 1081 1082 // float -> _Complex float 1083 if (ConvertFloat) 1084 FloatExpr = S.ImpCastExprToType(FloatExpr.get(), result, 1085 CK_FloatingRealToComplex); 1086 1087 return result; 1088 } 1089 1090 /// \brief Handle arithmethic conversion with floating point types. Helper 1091 /// function of UsualArithmeticConversions() 1092 static QualType handleFloatConversion(Sema &S, ExprResult &LHS, 1093 ExprResult &RHS, QualType LHSType, 1094 QualType RHSType, bool IsCompAssign) { 1095 bool LHSFloat = LHSType->isRealFloatingType(); 1096 bool RHSFloat = RHSType->isRealFloatingType(); 1097 1098 // If we have two real floating types, convert the smaller operand 1099 // to the bigger result. 1100 if (LHSFloat && RHSFloat) { 1101 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); 1102 if (order > 0) { 1103 RHS = S.ImpCastExprToType(RHS.get(), LHSType, CK_FloatingCast); 1104 return LHSType; 1105 } 1106 1107 assert(order < 0 && "illegal float comparison"); 1108 if (!IsCompAssign) 1109 LHS = S.ImpCastExprToType(LHS.get(), RHSType, CK_FloatingCast); 1110 return RHSType; 1111 } 1112 1113 if (LHSFloat) { 1114 // Half FP has to be promoted to float unless it is natively supported 1115 if (LHSType->isHalfType() && !S.getLangOpts().NativeHalfType) 1116 LHSType = S.Context.FloatTy; 1117 1118 return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType, 1119 /*convertFloat=*/!IsCompAssign, 1120 /*convertInt=*/ true); 1121 } 1122 assert(RHSFloat); 1123 return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType, 1124 /*convertInt=*/ true, 1125 /*convertFloat=*/!IsCompAssign); 1126 } 1127 1128 typedef ExprResult PerformCastFn(Sema &S, Expr *operand, QualType toType); 1129 1130 namespace { 1131 /// These helper callbacks are placed in an anonymous namespace to 1132 /// permit their use as function template parameters. 1133 ExprResult doIntegralCast(Sema &S, Expr *op, QualType toType) { 1134 return S.ImpCastExprToType(op, toType, CK_IntegralCast); 1135 } 1136 1137 ExprResult doComplexIntegralCast(Sema &S, Expr *op, QualType toType) { 1138 return S.ImpCastExprToType(op, S.Context.getComplexType(toType), 1139 CK_IntegralComplexCast); 1140 } 1141 } 1142 1143 /// \brief Handle integer arithmetic conversions. Helper function of 1144 /// UsualArithmeticConversions() 1145 template <PerformCastFn doLHSCast, PerformCastFn doRHSCast> 1146 static QualType handleIntegerConversion(Sema &S, ExprResult &LHS, 1147 ExprResult &RHS, QualType LHSType, 1148 QualType RHSType, bool IsCompAssign) { 1149 // The rules for this case are in C99 6.3.1.8 1150 int order = S.Context.getIntegerTypeOrder(LHSType, RHSType); 1151 bool LHSSigned = LHSType->hasSignedIntegerRepresentation(); 1152 bool RHSSigned = RHSType->hasSignedIntegerRepresentation(); 1153 if (LHSSigned == RHSSigned) { 1154 // Same signedness; use the higher-ranked type 1155 if (order >= 0) { 1156 RHS = (*doRHSCast)(S, RHS.get(), LHSType); 1157 return LHSType; 1158 } else if (!IsCompAssign) 1159 LHS = (*doLHSCast)(S, LHS.get(), RHSType); 1160 return RHSType; 1161 } else if (order != (LHSSigned ? 1 : -1)) { 1162 // The unsigned type has greater than or equal rank to the 1163 // signed type, so use the unsigned type 1164 if (RHSSigned) { 1165 RHS = (*doRHSCast)(S, RHS.get(), LHSType); 1166 return LHSType; 1167 } else if (!IsCompAssign) 1168 LHS = (*doLHSCast)(S, LHS.get(), RHSType); 1169 return RHSType; 1170 } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) { 1171 // The two types are different widths; if we are here, that 1172 // means the signed type is larger than the unsigned type, so 1173 // use the signed type. 1174 if (LHSSigned) { 1175 RHS = (*doRHSCast)(S, RHS.get(), LHSType); 1176 return LHSType; 1177 } else if (!IsCompAssign) 1178 LHS = (*doLHSCast)(S, LHS.get(), RHSType); 1179 return RHSType; 1180 } else { 1181 // The signed type is higher-ranked than the unsigned type, 1182 // but isn't actually any bigger (like unsigned int and long 1183 // on most 32-bit systems). Use the unsigned type corresponding 1184 // to the signed type. 1185 QualType result = 1186 S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType); 1187 RHS = (*doRHSCast)(S, RHS.get(), result); 1188 if (!IsCompAssign) 1189 LHS = (*doLHSCast)(S, LHS.get(), result); 1190 return result; 1191 } 1192 } 1193 1194 /// \brief Handle conversions with GCC complex int extension. Helper function 1195 /// of UsualArithmeticConversions() 1196 static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS, 1197 ExprResult &RHS, QualType LHSType, 1198 QualType RHSType, 1199 bool IsCompAssign) { 1200 const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType(); 1201 const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType(); 1202 1203 if (LHSComplexInt && RHSComplexInt) { 1204 QualType LHSEltType = LHSComplexInt->getElementType(); 1205 QualType RHSEltType = RHSComplexInt->getElementType(); 1206 QualType ScalarType = 1207 handleIntegerConversion<doComplexIntegralCast, doComplexIntegralCast> 1208 (S, LHS, RHS, LHSEltType, RHSEltType, IsCompAssign); 1209 1210 return S.Context.getComplexType(ScalarType); 1211 } 1212 1213 if (LHSComplexInt) { 1214 QualType LHSEltType = LHSComplexInt->getElementType(); 1215 QualType ScalarType = 1216 handleIntegerConversion<doComplexIntegralCast, doIntegralCast> 1217 (S, LHS, RHS, LHSEltType, RHSType, IsCompAssign); 1218 QualType ComplexType = S.Context.getComplexType(ScalarType); 1219 RHS = S.ImpCastExprToType(RHS.get(), ComplexType, 1220 CK_IntegralRealToComplex); 1221 1222 return ComplexType; 1223 } 1224 1225 assert(RHSComplexInt); 1226 1227 QualType RHSEltType = RHSComplexInt->getElementType(); 1228 QualType ScalarType = 1229 handleIntegerConversion<doIntegralCast, doComplexIntegralCast> 1230 (S, LHS, RHS, LHSType, RHSEltType, IsCompAssign); 1231 QualType ComplexType = S.Context.getComplexType(ScalarType); 1232 1233 if (!IsCompAssign) 1234 LHS = S.ImpCastExprToType(LHS.get(), ComplexType, 1235 CK_IntegralRealToComplex); 1236 return ComplexType; 1237 } 1238 1239 /// UsualArithmeticConversions - Performs various conversions that are common to 1240 /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this 1241 /// routine returns the first non-arithmetic type found. The client is 1242 /// responsible for emitting appropriate error diagnostics. 1243 QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS, 1244 bool IsCompAssign) { 1245 if (!IsCompAssign) { 1246 LHS = UsualUnaryConversions(LHS.get()); 1247 if (LHS.isInvalid()) 1248 return QualType(); 1249 } 1250 1251 RHS = UsualUnaryConversions(RHS.get()); 1252 if (RHS.isInvalid()) 1253 return QualType(); 1254 1255 // For conversion purposes, we ignore any qualifiers. 1256 // For example, "const float" and "float" are equivalent. 1257 QualType LHSType = 1258 Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); 1259 QualType RHSType = 1260 Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); 1261 1262 // For conversion purposes, we ignore any atomic qualifier on the LHS. 1263 if (const AtomicType *AtomicLHS = LHSType->getAs<AtomicType>()) 1264 LHSType = AtomicLHS->getValueType(); 1265 1266 // If both types are identical, no conversion is needed. 1267 if (LHSType == RHSType) 1268 return LHSType; 1269 1270 // If either side is a non-arithmetic type (e.g. a pointer), we are done. 1271 // The caller can deal with this (e.g. pointer + int). 1272 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) 1273 return QualType(); 1274 1275 // Apply unary and bitfield promotions to the LHS's type. 1276 QualType LHSUnpromotedType = LHSType; 1277 if (LHSType->isPromotableIntegerType()) 1278 LHSType = Context.getPromotedIntegerType(LHSType); 1279 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get()); 1280 if (!LHSBitfieldPromoteTy.isNull()) 1281 LHSType = LHSBitfieldPromoteTy; 1282 if (LHSType != LHSUnpromotedType && !IsCompAssign) 1283 LHS = ImpCastExprToType(LHS.get(), LHSType, CK_IntegralCast); 1284 1285 // If both types are identical, no conversion is needed. 1286 if (LHSType == RHSType) 1287 return LHSType; 1288 1289 // At this point, we have two different arithmetic types. 1290 1291 // Handle complex types first (C99 6.3.1.8p1). 1292 if (LHSType->isComplexType() || RHSType->isComplexType()) 1293 return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType, 1294 IsCompAssign); 1295 1296 // Now handle "real" floating types (i.e. float, double, long double). 1297 if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType()) 1298 return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType, 1299 IsCompAssign); 1300 1301 // Handle GCC complex int extension. 1302 if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType()) 1303 return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType, 1304 IsCompAssign); 1305 1306 // Finally, we have two differing integer types. 1307 return handleIntegerConversion<doIntegralCast, doIntegralCast> 1308 (*this, LHS, RHS, LHSType, RHSType, IsCompAssign); 1309 } 1310 1311 1312 //===----------------------------------------------------------------------===// 1313 // Semantic Analysis for various Expression Types 1314 //===----------------------------------------------------------------------===// 1315 1316 1317 ExprResult 1318 Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc, 1319 SourceLocation DefaultLoc, 1320 SourceLocation RParenLoc, 1321 Expr *ControllingExpr, 1322 ArrayRef<ParsedType> ArgTypes, 1323 ArrayRef<Expr *> ArgExprs) { 1324 unsigned NumAssocs = ArgTypes.size(); 1325 assert(NumAssocs == ArgExprs.size()); 1326 1327 TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs]; 1328 for (unsigned i = 0; i < NumAssocs; ++i) { 1329 if (ArgTypes[i]) 1330 (void) GetTypeFromParser(ArgTypes[i], &Types[i]); 1331 else 1332 Types[i] = nullptr; 1333 } 1334 1335 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, 1336 ControllingExpr, 1337 llvm::makeArrayRef(Types, NumAssocs), 1338 ArgExprs); 1339 delete [] Types; 1340 return ER; 1341 } 1342 1343 ExprResult 1344 Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc, 1345 SourceLocation DefaultLoc, 1346 SourceLocation RParenLoc, 1347 Expr *ControllingExpr, 1348 ArrayRef<TypeSourceInfo *> Types, 1349 ArrayRef<Expr *> Exprs) { 1350 unsigned NumAssocs = Types.size(); 1351 assert(NumAssocs == Exprs.size()); 1352 if (ControllingExpr->getType()->isPlaceholderType()) { 1353 ExprResult result = CheckPlaceholderExpr(ControllingExpr); 1354 if (result.isInvalid()) return ExprError(); 1355 ControllingExpr = result.get(); 1356 } 1357 1358 // The controlling expression is an unevaluated operand, so side effects are 1359 // likely unintended. 1360 if (ActiveTemplateInstantiations.empty() && 1361 ControllingExpr->HasSideEffects(Context, false)) 1362 Diag(ControllingExpr->getExprLoc(), 1363 diag::warn_side_effects_unevaluated_context); 1364 1365 bool TypeErrorFound = false, 1366 IsResultDependent = ControllingExpr->isTypeDependent(), 1367 ContainsUnexpandedParameterPack 1368 = ControllingExpr->containsUnexpandedParameterPack(); 1369 1370 for (unsigned i = 0; i < NumAssocs; ++i) { 1371 if (Exprs[i]->containsUnexpandedParameterPack()) 1372 ContainsUnexpandedParameterPack = true; 1373 1374 if (Types[i]) { 1375 if (Types[i]->getType()->containsUnexpandedParameterPack()) 1376 ContainsUnexpandedParameterPack = true; 1377 1378 if (Types[i]->getType()->isDependentType()) { 1379 IsResultDependent = true; 1380 } else { 1381 // C11 6.5.1.1p2 "The type name in a generic association shall specify a 1382 // complete object type other than a variably modified type." 1383 unsigned D = 0; 1384 if (Types[i]->getType()->isIncompleteType()) 1385 D = diag::err_assoc_type_incomplete; 1386 else if (!Types[i]->getType()->isObjectType()) 1387 D = diag::err_assoc_type_nonobject; 1388 else if (Types[i]->getType()->isVariablyModifiedType()) 1389 D = diag::err_assoc_type_variably_modified; 1390 1391 if (D != 0) { 1392 Diag(Types[i]->getTypeLoc().getBeginLoc(), D) 1393 << Types[i]->getTypeLoc().getSourceRange() 1394 << Types[i]->getType(); 1395 TypeErrorFound = true; 1396 } 1397 1398 // C11 6.5.1.1p2 "No two generic associations in the same generic 1399 // selection shall specify compatible types." 1400 for (unsigned j = i+1; j < NumAssocs; ++j) 1401 if (Types[j] && !Types[j]->getType()->isDependentType() && 1402 Context.typesAreCompatible(Types[i]->getType(), 1403 Types[j]->getType())) { 1404 Diag(Types[j]->getTypeLoc().getBeginLoc(), 1405 diag::err_assoc_compatible_types) 1406 << Types[j]->getTypeLoc().getSourceRange() 1407 << Types[j]->getType() 1408 << Types[i]->getType(); 1409 Diag(Types[i]->getTypeLoc().getBeginLoc(), 1410 diag::note_compat_assoc) 1411 << Types[i]->getTypeLoc().getSourceRange() 1412 << Types[i]->getType(); 1413 TypeErrorFound = true; 1414 } 1415 } 1416 } 1417 } 1418 if (TypeErrorFound) 1419 return ExprError(); 1420 1421 // If we determined that the generic selection is result-dependent, don't 1422 // try to compute the result expression. 1423 if (IsResultDependent) 1424 return new (Context) GenericSelectionExpr( 1425 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, 1426 ContainsUnexpandedParameterPack); 1427 1428 SmallVector<unsigned, 1> CompatIndices; 1429 unsigned DefaultIndex = -1U; 1430 for (unsigned i = 0; i < NumAssocs; ++i) { 1431 if (!Types[i]) 1432 DefaultIndex = i; 1433 else if (Context.typesAreCompatible(ControllingExpr->getType(), 1434 Types[i]->getType())) 1435 CompatIndices.push_back(i); 1436 } 1437 1438 // C11 6.5.1.1p2 "The controlling expression of a generic selection shall have 1439 // type compatible with at most one of the types named in its generic 1440 // association list." 1441 if (CompatIndices.size() > 1) { 1442 // We strip parens here because the controlling expression is typically 1443 // parenthesized in macro definitions. 1444 ControllingExpr = ControllingExpr->IgnoreParens(); 1445 Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_multi_match) 1446 << ControllingExpr->getSourceRange() << ControllingExpr->getType() 1447 << (unsigned) CompatIndices.size(); 1448 for (SmallVectorImpl<unsigned>::iterator I = CompatIndices.begin(), 1449 E = CompatIndices.end(); I != E; ++I) { 1450 Diag(Types[*I]->getTypeLoc().getBeginLoc(), 1451 diag::note_compat_assoc) 1452 << Types[*I]->getTypeLoc().getSourceRange() 1453 << Types[*I]->getType(); 1454 } 1455 return ExprError(); 1456 } 1457 1458 // C11 6.5.1.1p2 "If a generic selection has no default generic association, 1459 // its controlling expression shall have type compatible with exactly one of 1460 // the types named in its generic association list." 1461 if (DefaultIndex == -1U && CompatIndices.size() == 0) { 1462 // We strip parens here because the controlling expression is typically 1463 // parenthesized in macro definitions. 1464 ControllingExpr = ControllingExpr->IgnoreParens(); 1465 Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_no_match) 1466 << ControllingExpr->getSourceRange() << ControllingExpr->getType(); 1467 return ExprError(); 1468 } 1469 1470 // C11 6.5.1.1p3 "If a generic selection has a generic association with a 1471 // type name that is compatible with the type of the controlling expression, 1472 // then the result expression of the generic selection is the expression 1473 // in that generic association. Otherwise, the result expression of the 1474 // generic selection is the expression in the default generic association." 1475 unsigned ResultIndex = 1476 CompatIndices.size() ? CompatIndices[0] : DefaultIndex; 1477 1478 return new (Context) GenericSelectionExpr( 1479 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, 1480 ContainsUnexpandedParameterPack, ResultIndex); 1481 } 1482 1483 /// getUDSuffixLoc - Create a SourceLocation for a ud-suffix, given the 1484 /// location of the token and the offset of the ud-suffix within it. 1485 static SourceLocation getUDSuffixLoc(Sema &S, SourceLocation TokLoc, 1486 unsigned Offset) { 1487 return Lexer::AdvanceToTokenCharacter(TokLoc, Offset, S.getSourceManager(), 1488 S.getLangOpts()); 1489 } 1490 1491 /// BuildCookedLiteralOperatorCall - A user-defined literal was found. Look up 1492 /// the corresponding cooked (non-raw) literal operator, and build a call to it. 1493 static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope, 1494 IdentifierInfo *UDSuffix, 1495 SourceLocation UDSuffixLoc, 1496 ArrayRef<Expr*> Args, 1497 SourceLocation LitEndLoc) { 1498 assert(Args.size() <= 2 && "too many arguments for literal operator"); 1499 1500 QualType ArgTy[2]; 1501 for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) { 1502 ArgTy[ArgIdx] = Args[ArgIdx]->getType(); 1503 if (ArgTy[ArgIdx]->isArrayType()) 1504 ArgTy[ArgIdx] = S.Context.getArrayDecayedType(ArgTy[ArgIdx]); 1505 } 1506 1507 DeclarationName OpName = 1508 S.Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); 1509 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); 1510 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); 1511 1512 LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName); 1513 if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()), 1514 /*AllowRaw*/false, /*AllowTemplate*/false, 1515 /*AllowStringTemplate*/false) == Sema::LOLR_Error) 1516 return ExprError(); 1517 1518 return S.BuildLiteralOperatorCall(R, OpNameInfo, Args, LitEndLoc); 1519 } 1520 1521 /// ActOnStringLiteral - The specified tokens were lexed as pasted string 1522 /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string 1523 /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from 1524 /// multiple tokens. However, the common case is that StringToks points to one 1525 /// string. 1526 /// 1527 ExprResult 1528 Sema::ActOnStringLiteral(ArrayRef<Token> StringToks, Scope *UDLScope) { 1529 assert(!StringToks.empty() && "Must have at least one string!"); 1530 1531 StringLiteralParser Literal(StringToks, PP); 1532 if (Literal.hadError) 1533 return ExprError(); 1534 1535 SmallVector<SourceLocation, 4> StringTokLocs; 1536 for (unsigned i = 0; i != StringToks.size(); ++i) 1537 StringTokLocs.push_back(StringToks[i].getLocation()); 1538 1539 QualType CharTy = Context.CharTy; 1540 StringLiteral::StringKind Kind = StringLiteral::Ascii; 1541 if (Literal.isWide()) { 1542 CharTy = Context.getWideCharType(); 1543 Kind = StringLiteral::Wide; 1544 } else if (Literal.isUTF8()) { 1545 Kind = StringLiteral::UTF8; 1546 } else if (Literal.isUTF16()) { 1547 CharTy = Context.Char16Ty; 1548 Kind = StringLiteral::UTF16; 1549 } else if (Literal.isUTF32()) { 1550 CharTy = Context.Char32Ty; 1551 Kind = StringLiteral::UTF32; 1552 } else if (Literal.isPascal()) { 1553 CharTy = Context.UnsignedCharTy; 1554 } 1555 1556 QualType CharTyConst = CharTy; 1557 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). 1558 if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings) 1559 CharTyConst.addConst(); 1560 1561 // Get an array type for the string, according to C99 6.4.5. This includes 1562 // the nul terminator character as well as the string length for pascal 1563 // strings. 1564 QualType StrTy = Context.getConstantArrayType(CharTyConst, 1565 llvm::APInt(32, Literal.GetNumStringChars()+1), 1566 ArrayType::Normal, 0); 1567 1568 // OpenCL v1.1 s6.5.3: a string literal is in the constant address space. 1569 if (getLangOpts().OpenCL) { 1570 StrTy = Context.getAddrSpaceQualType(StrTy, LangAS::opencl_constant); 1571 } 1572 1573 // Pass &StringTokLocs[0], StringTokLocs.size() to factory! 1574 StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(), 1575 Kind, Literal.Pascal, StrTy, 1576 &StringTokLocs[0], 1577 StringTokLocs.size()); 1578 if (Literal.getUDSuffix().empty()) 1579 return Lit; 1580 1581 // We're building a user-defined literal. 1582 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); 1583 SourceLocation UDSuffixLoc = 1584 getUDSuffixLoc(*this, StringTokLocs[Literal.getUDSuffixToken()], 1585 Literal.getUDSuffixOffset()); 1586 1587 // Make sure we're allowed user-defined literals here. 1588 if (!UDLScope) 1589 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_string_udl)); 1590 1591 // C++11 [lex.ext]p5: The literal L is treated as a call of the form 1592 // operator "" X (str, len) 1593 QualType SizeType = Context.getSizeType(); 1594 1595 DeclarationName OpName = 1596 Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); 1597 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); 1598 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); 1599 1600 QualType ArgTy[] = { 1601 Context.getArrayDecayedType(StrTy), SizeType 1602 }; 1603 1604 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName); 1605 switch (LookupLiteralOperator(UDLScope, R, ArgTy, 1606 /*AllowRaw*/false, /*AllowTemplate*/false, 1607 /*AllowStringTemplate*/true)) { 1608 1609 case LOLR_Cooked: { 1610 llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars()); 1611 IntegerLiteral *LenArg = IntegerLiteral::Create(Context, Len, SizeType, 1612 StringTokLocs[0]); 1613 Expr *Args[] = { Lit, LenArg }; 1614 1615 return BuildLiteralOperatorCall(R, OpNameInfo, Args, StringTokLocs.back()); 1616 } 1617 1618 case LOLR_StringTemplate: { 1619 TemplateArgumentListInfo ExplicitArgs; 1620 1621 unsigned CharBits = Context.getIntWidth(CharTy); 1622 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); 1623 llvm::APSInt Value(CharBits, CharIsUnsigned); 1624 1625 TemplateArgument TypeArg(CharTy); 1626 TemplateArgumentLocInfo TypeArgInfo(Context.getTrivialTypeSourceInfo(CharTy)); 1627 ExplicitArgs.addArgument(TemplateArgumentLoc(TypeArg, TypeArgInfo)); 1628 1629 for (unsigned I = 0, N = Lit->getLength(); I != N; ++I) { 1630 Value = Lit->getCodeUnit(I); 1631 TemplateArgument Arg(Context, Value, CharTy); 1632 TemplateArgumentLocInfo ArgInfo; 1633 ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo)); 1634 } 1635 return BuildLiteralOperatorCall(R, OpNameInfo, None, StringTokLocs.back(), 1636 &ExplicitArgs); 1637 } 1638 case LOLR_Raw: 1639 case LOLR_Template: 1640 llvm_unreachable("unexpected literal operator lookup result"); 1641 case LOLR_Error: 1642 return ExprError(); 1643 } 1644 llvm_unreachable("unexpected literal operator lookup result"); 1645 } 1646 1647 ExprResult 1648 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, 1649 SourceLocation Loc, 1650 const CXXScopeSpec *SS) { 1651 DeclarationNameInfo NameInfo(D->getDeclName(), Loc); 1652 return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS); 1653 } 1654 1655 /// BuildDeclRefExpr - Build an expression that references a 1656 /// declaration that does not require a closure capture. 1657 ExprResult 1658 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, 1659 const DeclarationNameInfo &NameInfo, 1660 const CXXScopeSpec *SS, NamedDecl *FoundD, 1661 const TemplateArgumentListInfo *TemplateArgs) { 1662 if (getLangOpts().CUDA) 1663 if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext)) 1664 if (const FunctionDecl *Callee = dyn_cast<FunctionDecl>(D)) { 1665 if (CheckCUDATarget(Caller, Callee)) { 1666 Diag(NameInfo.getLoc(), diag::err_ref_bad_target) 1667 << IdentifyCUDATarget(Callee) << D->getIdentifier() 1668 << IdentifyCUDATarget(Caller); 1669 Diag(D->getLocation(), diag::note_previous_decl) 1670 << D->getIdentifier(); 1671 return ExprError(); 1672 } 1673 } 1674 1675 bool RefersToCapturedVariable = 1676 isa<VarDecl>(D) && 1677 NeedToCaptureVariable(cast<VarDecl>(D), NameInfo.getLoc()); 1678 1679 DeclRefExpr *E; 1680 if (isa<VarTemplateSpecializationDecl>(D)) { 1681 VarTemplateSpecializationDecl *VarSpec = 1682 cast<VarTemplateSpecializationDecl>(D); 1683 1684 E = DeclRefExpr::Create(Context, SS ? SS->getWithLocInContext(Context) 1685 : NestedNameSpecifierLoc(), 1686 VarSpec->getTemplateKeywordLoc(), D, 1687 RefersToCapturedVariable, NameInfo.getLoc(), Ty, VK, 1688 FoundD, TemplateArgs); 1689 } else { 1690 assert(!TemplateArgs && "No template arguments for non-variable" 1691 " template specialization references"); 1692 E = DeclRefExpr::Create(Context, SS ? SS->getWithLocInContext(Context) 1693 : NestedNameSpecifierLoc(), 1694 SourceLocation(), D, RefersToCapturedVariable, 1695 NameInfo, Ty, VK, FoundD); 1696 } 1697 1698 MarkDeclRefReferenced(E); 1699 1700 if (getLangOpts().ObjCARCWeak && isa<VarDecl>(D) && 1701 Ty.getObjCLifetime() == Qualifiers::OCL_Weak && 1702 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, E->getLocStart())) 1703 recordUseOfEvaluatedWeak(E); 1704 1705 // Just in case we're building an illegal pointer-to-member. 1706 FieldDecl *FD = dyn_cast<FieldDecl>(D); 1707 if (FD && FD->isBitField()) 1708 E->setObjectKind(OK_BitField); 1709 1710 return E; 1711 } 1712 1713 /// Decomposes the given name into a DeclarationNameInfo, its location, and 1714 /// possibly a list of template arguments. 1715 /// 1716 /// If this produces template arguments, it is permitted to call 1717 /// DecomposeTemplateName. 1718 /// 1719 /// This actually loses a lot of source location information for 1720 /// non-standard name kinds; we should consider preserving that in 1721 /// some way. 1722 void 1723 Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id, 1724 TemplateArgumentListInfo &Buffer, 1725 DeclarationNameInfo &NameInfo, 1726 const TemplateArgumentListInfo *&TemplateArgs) { 1727 if (Id.getKind() == UnqualifiedId::IK_TemplateId) { 1728 Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc); 1729 Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc); 1730 1731 ASTTemplateArgsPtr TemplateArgsPtr(Id.TemplateId->getTemplateArgs(), 1732 Id.TemplateId->NumArgs); 1733 translateTemplateArguments(TemplateArgsPtr, Buffer); 1734 1735 TemplateName TName = Id.TemplateId->Template.get(); 1736 SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc; 1737 NameInfo = Context.getNameForTemplate(TName, TNameLoc); 1738 TemplateArgs = &Buffer; 1739 } else { 1740 NameInfo = GetNameFromUnqualifiedId(Id); 1741 TemplateArgs = nullptr; 1742 } 1743 } 1744 1745 static void emitEmptyLookupTypoDiagnostic( 1746 const TypoCorrection &TC, Sema &SemaRef, const CXXScopeSpec &SS, 1747 DeclarationName Typo, SourceLocation TypoLoc, ArrayRef<Expr *> Args, 1748 unsigned DiagnosticID, unsigned DiagnosticSuggestID) { 1749 DeclContext *Ctx = 1750 SS.isEmpty() ? nullptr : SemaRef.computeDeclContext(SS, false); 1751 if (!TC) { 1752 // Emit a special diagnostic for failed member lookups. 1753 // FIXME: computing the declaration context might fail here (?) 1754 if (Ctx) 1755 SemaRef.Diag(TypoLoc, diag::err_no_member) << Typo << Ctx 1756 << SS.getRange(); 1757 else 1758 SemaRef.Diag(TypoLoc, DiagnosticID) << Typo; 1759 return; 1760 } 1761 1762 std::string CorrectedStr = TC.getAsString(SemaRef.getLangOpts()); 1763 bool DroppedSpecifier = 1764 TC.WillReplaceSpecifier() && Typo.getAsString() == CorrectedStr; 1765 unsigned NoteID = 1766 (TC.getCorrectionDecl() && isa<ImplicitParamDecl>(TC.getCorrectionDecl())) 1767 ? diag::note_implicit_param_decl 1768 : diag::note_previous_decl; 1769 if (!Ctx) 1770 SemaRef.diagnoseTypo(TC, SemaRef.PDiag(DiagnosticSuggestID) << Typo, 1771 SemaRef.PDiag(NoteID)); 1772 else 1773 SemaRef.diagnoseTypo(TC, SemaRef.PDiag(diag::err_no_member_suggest) 1774 << Typo << Ctx << DroppedSpecifier 1775 << SS.getRange(), 1776 SemaRef.PDiag(NoteID)); 1777 } 1778 1779 /// Diagnose an empty lookup. 1780 /// 1781 /// \return false if new lookup candidates were found 1782 bool 1783 Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R, 1784 std::unique_ptr<CorrectionCandidateCallback> CCC, 1785 TemplateArgumentListInfo *ExplicitTemplateArgs, 1786 ArrayRef<Expr *> Args, TypoExpr **Out) { 1787 DeclarationName Name = R.getLookupName(); 1788 1789 unsigned diagnostic = diag::err_undeclared_var_use; 1790 unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest; 1791 if (Name.getNameKind() == DeclarationName::CXXOperatorName || 1792 Name.getNameKind() == DeclarationName::CXXLiteralOperatorName || 1793 Name.getNameKind() == DeclarationName::CXXConversionFunctionName) { 1794 diagnostic = diag::err_undeclared_use; 1795 diagnostic_suggest = diag::err_undeclared_use_suggest; 1796 } 1797 1798 // If the original lookup was an unqualified lookup, fake an 1799 // unqualified lookup. This is useful when (for example) the 1800 // original lookup would not have found something because it was a 1801 // dependent name. 1802 DeclContext *DC = (SS.isEmpty() && !CallsUndergoingInstantiation.empty()) 1803 ? CurContext : nullptr; 1804 while (DC) { 1805 if (isa<CXXRecordDecl>(DC)) { 1806 LookupQualifiedName(R, DC); 1807 1808 if (!R.empty()) { 1809 // Don't give errors about ambiguities in this lookup. 1810 R.suppressDiagnostics(); 1811 1812 // During a default argument instantiation the CurContext points 1813 // to a CXXMethodDecl; but we can't apply a this-> fixit inside a 1814 // function parameter list, hence add an explicit check. 1815 bool isDefaultArgument = !ActiveTemplateInstantiations.empty() && 1816 ActiveTemplateInstantiations.back().Kind == 1817 ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation; 1818 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); 1819 bool isInstance = CurMethod && 1820 CurMethod->isInstance() && 1821 DC == CurMethod->getParent() && !isDefaultArgument; 1822 1823 1824 // Give a code modification hint to insert 'this->'. 1825 // TODO: fixit for inserting 'Base<T>::' in the other cases. 1826 // Actually quite difficult! 1827 if (getLangOpts().MSVCCompat) 1828 diagnostic = diag::ext_found_via_dependent_bases_lookup; 1829 if (isInstance) { 1830 Diag(R.getNameLoc(), diagnostic) << Name 1831 << FixItHint::CreateInsertion(R.getNameLoc(), "this->"); 1832 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>( 1833 CallsUndergoingInstantiation.back()->getCallee()); 1834 1835 CXXMethodDecl *DepMethod; 1836 if (CurMethod->isDependentContext()) 1837 DepMethod = CurMethod; 1838 else if (CurMethod->getTemplatedKind() == 1839 FunctionDecl::TK_FunctionTemplateSpecialization) 1840 DepMethod = cast<CXXMethodDecl>(CurMethod->getPrimaryTemplate()-> 1841 getInstantiatedFromMemberTemplate()->getTemplatedDecl()); 1842 else 1843 DepMethod = cast<CXXMethodDecl>( 1844 CurMethod->getInstantiatedFromMemberFunction()); 1845 assert(DepMethod && "No template pattern found"); 1846 1847 QualType DepThisType = DepMethod->getThisType(Context); 1848 CheckCXXThisCapture(R.getNameLoc()); 1849 CXXThisExpr *DepThis = new (Context) CXXThisExpr( 1850 R.getNameLoc(), DepThisType, false); 1851 TemplateArgumentListInfo TList; 1852 if (ULE->hasExplicitTemplateArgs()) 1853 ULE->copyTemplateArgumentsInto(TList); 1854 1855 CXXScopeSpec SS; 1856 SS.Adopt(ULE->getQualifierLoc()); 1857 CXXDependentScopeMemberExpr *DepExpr = 1858 CXXDependentScopeMemberExpr::Create( 1859 Context, DepThis, DepThisType, true, SourceLocation(), 1860 SS.getWithLocInContext(Context), 1861 ULE->getTemplateKeywordLoc(), nullptr, 1862 R.getLookupNameInfo(), 1863 ULE->hasExplicitTemplateArgs() ? &TList : nullptr); 1864 CallsUndergoingInstantiation.back()->setCallee(DepExpr); 1865 } else { 1866 Diag(R.getNameLoc(), diagnostic) << Name; 1867 } 1868 1869 // Do we really want to note all of these? 1870 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) 1871 Diag((*I)->getLocation(), diag::note_dependent_var_use); 1872 1873 // Return true if we are inside a default argument instantiation 1874 // and the found name refers to an instance member function, otherwise 1875 // the function calling DiagnoseEmptyLookup will try to create an 1876 // implicit member call and this is wrong for default argument. 1877 if (isDefaultArgument && ((*R.begin())->isCXXInstanceMember())) { 1878 Diag(R.getNameLoc(), diag::err_member_call_without_object); 1879 return true; 1880 } 1881 1882 // Tell the callee to try to recover. 1883 return false; 1884 } 1885 1886 R.clear(); 1887 } 1888 1889 // In Microsoft mode, if we are performing lookup from within a friend 1890 // function definition declared at class scope then we must set 1891 // DC to the lexical parent to be able to search into the parent 1892 // class. 1893 if (getLangOpts().MSVCCompat && isa<FunctionDecl>(DC) && 1894 cast<FunctionDecl>(DC)->getFriendObjectKind() && 1895 DC->getLexicalParent()->isRecord()) 1896 DC = DC->getLexicalParent(); 1897 else 1898 DC = DC->getParent(); 1899 } 1900 1901 // We didn't find anything, so try to correct for a typo. 1902 TypoCorrection Corrected; 1903 if (S && Out) { 1904 SourceLocation TypoLoc = R.getNameLoc(); 1905 assert(!ExplicitTemplateArgs && 1906 "Diagnosing an empty lookup with explicit template args!"); 1907 *Out = CorrectTypoDelayed( 1908 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, std::move(CCC), 1909 [=](const TypoCorrection &TC) { 1910 emitEmptyLookupTypoDiagnostic(TC, *this, SS, Name, TypoLoc, Args, 1911 diagnostic, diagnostic_suggest); 1912 }, 1913 nullptr, CTK_ErrorRecovery); 1914 if (*Out) 1915 return true; 1916 } else if (S && (Corrected = 1917 CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, 1918 &SS, std::move(CCC), CTK_ErrorRecovery))) { 1919 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 1920 bool DroppedSpecifier = 1921 Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr; 1922 R.setLookupName(Corrected.getCorrection()); 1923 1924 bool AcceptableWithRecovery = false; 1925 bool AcceptableWithoutRecovery = false; 1926 NamedDecl *ND = Corrected.getCorrectionDecl(); 1927 if (ND) { 1928 if (Corrected.isOverloaded()) { 1929 OverloadCandidateSet OCS(R.getNameLoc(), 1930 OverloadCandidateSet::CSK_Normal); 1931 OverloadCandidateSet::iterator Best; 1932 for (TypoCorrection::decl_iterator CD = Corrected.begin(), 1933 CDEnd = Corrected.end(); 1934 CD != CDEnd; ++CD) { 1935 if (FunctionTemplateDecl *FTD = 1936 dyn_cast<FunctionTemplateDecl>(*CD)) 1937 AddTemplateOverloadCandidate( 1938 FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs, 1939 Args, OCS); 1940 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD)) 1941 if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0) 1942 AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), 1943 Args, OCS); 1944 } 1945 switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) { 1946 case OR_Success: 1947 ND = Best->Function; 1948 Corrected.setCorrectionDecl(ND); 1949 break; 1950 default: 1951 // FIXME: Arbitrarily pick the first declaration for the note. 1952 Corrected.setCorrectionDecl(ND); 1953 break; 1954 } 1955 } 1956 R.addDecl(ND); 1957 if (getLangOpts().CPlusPlus && ND->isCXXClassMember()) { 1958 CXXRecordDecl *Record = nullptr; 1959 if (Corrected.getCorrectionSpecifier()) { 1960 const Type *Ty = Corrected.getCorrectionSpecifier()->getAsType(); 1961 Record = Ty->getAsCXXRecordDecl(); 1962 } 1963 if (!Record) 1964 Record = cast<CXXRecordDecl>( 1965 ND->getDeclContext()->getRedeclContext()); 1966 R.setNamingClass(Record); 1967 } 1968 1969 AcceptableWithRecovery = 1970 isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND); 1971 // FIXME: If we ended up with a typo for a type name or 1972 // Objective-C class name, we're in trouble because the parser 1973 // is in the wrong place to recover. Suggest the typo 1974 // correction, but don't make it a fix-it since we're not going 1975 // to recover well anyway. 1976 AcceptableWithoutRecovery = 1977 isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); 1978 } else { 1979 // FIXME: We found a keyword. Suggest it, but don't provide a fix-it 1980 // because we aren't able to recover. 1981 AcceptableWithoutRecovery = true; 1982 } 1983 1984 if (AcceptableWithRecovery || AcceptableWithoutRecovery) { 1985 unsigned NoteID = (Corrected.getCorrectionDecl() && 1986 isa<ImplicitParamDecl>(Corrected.getCorrectionDecl())) 1987 ? diag::note_implicit_param_decl 1988 : diag::note_previous_decl; 1989 if (SS.isEmpty()) 1990 diagnoseTypo(Corrected, PDiag(diagnostic_suggest) << Name, 1991 PDiag(NoteID), AcceptableWithRecovery); 1992 else 1993 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) 1994 << Name << computeDeclContext(SS, false) 1995 << DroppedSpecifier << SS.getRange(), 1996 PDiag(NoteID), AcceptableWithRecovery); 1997 1998 // Tell the callee whether to try to recover. 1999 return !AcceptableWithRecovery; 2000 } 2001 } 2002 R.clear(); 2003 2004 // Emit a special diagnostic for failed member lookups. 2005 // FIXME: computing the declaration context might fail here (?) 2006 if (!SS.isEmpty()) { 2007 Diag(R.getNameLoc(), diag::err_no_member) 2008 << Name << computeDeclContext(SS, false) 2009 << SS.getRange(); 2010 return true; 2011 } 2012 2013 // Give up, we can't recover. 2014 Diag(R.getNameLoc(), diagnostic) << Name; 2015 return true; 2016 } 2017 2018 /// In Microsoft mode, if we are inside a template class whose parent class has 2019 /// dependent base classes, and we can't resolve an unqualified identifier, then 2020 /// assume the identifier is a member of a dependent base class. We can only 2021 /// recover successfully in static methods, instance methods, and other contexts 2022 /// where 'this' is available. This doesn't precisely match MSVC's 2023 /// instantiation model, but it's close enough. 2024 static Expr * 2025 recoverFromMSUnqualifiedLookup(Sema &S, ASTContext &Context, 2026 DeclarationNameInfo &NameInfo, 2027 SourceLocation TemplateKWLoc, 2028 const TemplateArgumentListInfo *TemplateArgs) { 2029 // Only try to recover from lookup into dependent bases in static methods or 2030 // contexts where 'this' is available. 2031 QualType ThisType = S.getCurrentThisType(); 2032 const CXXRecordDecl *RD = nullptr; 2033 if (!ThisType.isNull()) 2034 RD = ThisType->getPointeeType()->getAsCXXRecordDecl(); 2035 else if (auto *MD = dyn_cast<CXXMethodDecl>(S.CurContext)) 2036 RD = MD->getParent(); 2037 if (!RD || !RD->hasAnyDependentBases()) 2038 return nullptr; 2039 2040 // Diagnose this as unqualified lookup into a dependent base class. If 'this' 2041 // is available, suggest inserting 'this->' as a fixit. 2042 SourceLocation Loc = NameInfo.getLoc(); 2043 auto DB = S.Diag(Loc, diag::ext_undeclared_unqual_id_with_dependent_base); 2044 DB << NameInfo.getName() << RD; 2045 2046 if (!ThisType.isNull()) { 2047 DB << FixItHint::CreateInsertion(Loc, "this->"); 2048 return CXXDependentScopeMemberExpr::Create( 2049 Context, /*This=*/nullptr, ThisType, /*IsArrow=*/true, 2050 /*Op=*/SourceLocation(), NestedNameSpecifierLoc(), TemplateKWLoc, 2051 /*FirstQualifierInScope=*/nullptr, NameInfo, TemplateArgs); 2052 } 2053 2054 // Synthesize a fake NNS that points to the derived class. This will 2055 // perform name lookup during template instantiation. 2056 CXXScopeSpec SS; 2057 auto *NNS = 2058 NestedNameSpecifier::Create(Context, nullptr, true, RD->getTypeForDecl()); 2059 SS.MakeTrivial(Context, NNS, SourceRange(Loc, Loc)); 2060 return DependentScopeDeclRefExpr::Create( 2061 Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo, 2062 TemplateArgs); 2063 } 2064 2065 ExprResult 2066 Sema::ActOnIdExpression(Scope *S, CXXScopeSpec &SS, 2067 SourceLocation TemplateKWLoc, UnqualifiedId &Id, 2068 bool HasTrailingLParen, bool IsAddressOfOperand, 2069 std::unique_ptr<CorrectionCandidateCallback> CCC, 2070 bool IsInlineAsmIdentifier, Token *KeywordReplacement) { 2071 assert(!(IsAddressOfOperand && HasTrailingLParen) && 2072 "cannot be direct & operand and have a trailing lparen"); 2073 if (SS.isInvalid()) 2074 return ExprError(); 2075 2076 TemplateArgumentListInfo TemplateArgsBuffer; 2077 2078 // Decompose the UnqualifiedId into the following data. 2079 DeclarationNameInfo NameInfo; 2080 const TemplateArgumentListInfo *TemplateArgs; 2081 DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs); 2082 2083 DeclarationName Name = NameInfo.getName(); 2084 IdentifierInfo *II = Name.getAsIdentifierInfo(); 2085 SourceLocation NameLoc = NameInfo.getLoc(); 2086 2087 // C++ [temp.dep.expr]p3: 2088 // An id-expression is type-dependent if it contains: 2089 // -- an identifier that was declared with a dependent type, 2090 // (note: handled after lookup) 2091 // -- a template-id that is dependent, 2092 // (note: handled in BuildTemplateIdExpr) 2093 // -- a conversion-function-id that specifies a dependent type, 2094 // -- a nested-name-specifier that contains a class-name that 2095 // names a dependent type. 2096 // Determine whether this is a member of an unknown specialization; 2097 // we need to handle these differently. 2098 bool DependentID = false; 2099 if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && 2100 Name.getCXXNameType()->isDependentType()) { 2101 DependentID = true; 2102 } else if (SS.isSet()) { 2103 if (DeclContext *DC = computeDeclContext(SS, false)) { 2104 if (RequireCompleteDeclContext(SS, DC)) 2105 return ExprError(); 2106 } else { 2107 DependentID = true; 2108 } 2109 } 2110 2111 if (DependentID) 2112 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, 2113 IsAddressOfOperand, TemplateArgs); 2114 2115 // Perform the required lookup. 2116 LookupResult R(*this, NameInfo, 2117 (Id.getKind() == UnqualifiedId::IK_ImplicitSelfParam) 2118 ? LookupObjCImplicitSelfParam : LookupOrdinaryName); 2119 if (TemplateArgs) { 2120 // Lookup the template name again to correctly establish the context in 2121 // which it was found. This is really unfortunate as we already did the 2122 // lookup to determine that it was a template name in the first place. If 2123 // this becomes a performance hit, we can work harder to preserve those 2124 // results until we get here but it's likely not worth it. 2125 bool MemberOfUnknownSpecialization; 2126 LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false, 2127 MemberOfUnknownSpecialization); 2128 2129 if (MemberOfUnknownSpecialization || 2130 (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)) 2131 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, 2132 IsAddressOfOperand, TemplateArgs); 2133 } else { 2134 bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl(); 2135 LookupParsedName(R, S, &SS, !IvarLookupFollowUp); 2136 2137 // If the result might be in a dependent base class, this is a dependent 2138 // id-expression. 2139 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation) 2140 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, 2141 IsAddressOfOperand, TemplateArgs); 2142 2143 // If this reference is in an Objective-C method, then we need to do 2144 // some special Objective-C lookup, too. 2145 if (IvarLookupFollowUp) { 2146 ExprResult E(LookupInObjCMethod(R, S, II, true)); 2147 if (E.isInvalid()) 2148 return ExprError(); 2149 2150 if (Expr *Ex = E.getAs<Expr>()) 2151 return Ex; 2152 } 2153 } 2154 2155 if (R.isAmbiguous()) 2156 return ExprError(); 2157 2158 // This could be an implicitly declared function reference (legal in C90, 2159 // extension in C99, forbidden in C++). 2160 if (R.empty() && HasTrailingLParen && II && !getLangOpts().CPlusPlus) { 2161 NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S); 2162 if (D) R.addDecl(D); 2163 } 2164 2165 // Determine whether this name might be a candidate for 2166 // argument-dependent lookup. 2167 bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen); 2168 2169 if (R.empty() && !ADL) { 2170 if (SS.isEmpty() && getLangOpts().MSVCCompat) { 2171 if (Expr *E = recoverFromMSUnqualifiedLookup(*this, Context, NameInfo, 2172 TemplateKWLoc, TemplateArgs)) 2173 return E; 2174 } 2175 2176 // Don't diagnose an empty lookup for inline assembly. 2177 if (IsInlineAsmIdentifier) 2178 return ExprError(); 2179 2180 // If this name wasn't predeclared and if this is not a function 2181 // call, diagnose the problem. 2182 TypoExpr *TE = nullptr; 2183 auto DefaultValidator = llvm::make_unique<CorrectionCandidateCallback>( 2184 II, SS.isValid() ? SS.getScopeRep() : nullptr); 2185 DefaultValidator->IsAddressOfOperand = IsAddressOfOperand; 2186 assert((!CCC || CCC->IsAddressOfOperand == IsAddressOfOperand) && 2187 "Typo correction callback misconfigured"); 2188 if (CCC) { 2189 // Make sure the callback knows what the typo being diagnosed is. 2190 CCC->setTypoName(II); 2191 if (SS.isValid()) 2192 CCC->setTypoNNS(SS.getScopeRep()); 2193 } 2194 if (DiagnoseEmptyLookup(S, SS, R, 2195 CCC ? std::move(CCC) : std::move(DefaultValidator), 2196 nullptr, None, &TE)) { 2197 if (TE && KeywordReplacement) { 2198 auto &State = getTypoExprState(TE); 2199 auto BestTC = State.Consumer->getNextCorrection(); 2200 if (BestTC.isKeyword()) { 2201 auto *II = BestTC.getCorrectionAsIdentifierInfo(); 2202 if (State.DiagHandler) 2203 State.DiagHandler(BestTC); 2204 KeywordReplacement->startToken(); 2205 KeywordReplacement->setKind(II->getTokenID()); 2206 KeywordReplacement->setIdentifierInfo(II); 2207 KeywordReplacement->setLocation(BestTC.getCorrectionRange().getBegin()); 2208 // Clean up the state associated with the TypoExpr, since it has 2209 // now been diagnosed (without a call to CorrectDelayedTyposInExpr). 2210 clearDelayedTypo(TE); 2211 // Signal that a correction to a keyword was performed by returning a 2212 // valid-but-null ExprResult. 2213 return (Expr*)nullptr; 2214 } 2215 State.Consumer->resetCorrectionStream(); 2216 } 2217 return TE ? TE : ExprError(); 2218 } 2219 2220 assert(!R.empty() && 2221 "DiagnoseEmptyLookup returned false but added no results"); 2222 2223 // If we found an Objective-C instance variable, let 2224 // LookupInObjCMethod build the appropriate expression to 2225 // reference the ivar. 2226 if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) { 2227 R.clear(); 2228 ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier())); 2229 // In a hopelessly buggy code, Objective-C instance variable 2230 // lookup fails and no expression will be built to reference it. 2231 if (!E.isInvalid() && !E.get()) 2232 return ExprError(); 2233 return E; 2234 } 2235 } 2236 2237 // This is guaranteed from this point on. 2238 assert(!R.empty() || ADL); 2239 2240 // Check whether this might be a C++ implicit instance member access. 2241 // C++ [class.mfct.non-static]p3: 2242 // When an id-expression that is not part of a class member access 2243 // syntax and not used to form a pointer to member is used in the 2244 // body of a non-static member function of class X, if name lookup 2245 // resolves the name in the id-expression to a non-static non-type 2246 // member of some class C, the id-expression is transformed into a 2247 // class member access expression using (*this) as the 2248 // postfix-expression to the left of the . operator. 2249 // 2250 // But we don't actually need to do this for '&' operands if R 2251 // resolved to a function or overloaded function set, because the 2252 // expression is ill-formed if it actually works out to be a 2253 // non-static member function: 2254 // 2255 // C++ [expr.ref]p4: 2256 // Otherwise, if E1.E2 refers to a non-static member function. . . 2257 // [t]he expression can be used only as the left-hand operand of a 2258 // member function call. 2259 // 2260 // There are other safeguards against such uses, but it's important 2261 // to get this right here so that we don't end up making a 2262 // spuriously dependent expression if we're inside a dependent 2263 // instance method. 2264 if (!R.empty() && (*R.begin())->isCXXClassMember()) { 2265 bool MightBeImplicitMember; 2266 if (!IsAddressOfOperand) 2267 MightBeImplicitMember = true; 2268 else if (!SS.isEmpty()) 2269 MightBeImplicitMember = false; 2270 else if (R.isOverloadedResult()) 2271 MightBeImplicitMember = false; 2272 else if (R.isUnresolvableResult()) 2273 MightBeImplicitMember = true; 2274 else 2275 MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) || 2276 isa<IndirectFieldDecl>(R.getFoundDecl()) || 2277 isa<MSPropertyDecl>(R.getFoundDecl()); 2278 2279 if (MightBeImplicitMember) 2280 return BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc, 2281 R, TemplateArgs); 2282 } 2283 2284 if (TemplateArgs || TemplateKWLoc.isValid()) { 2285 2286 // In C++1y, if this is a variable template id, then check it 2287 // in BuildTemplateIdExpr(). 2288 // The single lookup result must be a variable template declaration. 2289 if (Id.getKind() == UnqualifiedId::IK_TemplateId && Id.TemplateId && 2290 Id.TemplateId->Kind == TNK_Var_template) { 2291 assert(R.getAsSingle<VarTemplateDecl>() && 2292 "There should only be one declaration found."); 2293 } 2294 2295 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, ADL, TemplateArgs); 2296 } 2297 2298 return BuildDeclarationNameExpr(SS, R, ADL); 2299 } 2300 2301 /// BuildQualifiedDeclarationNameExpr - Build a C++ qualified 2302 /// declaration name, generally during template instantiation. 2303 /// There's a large number of things which don't need to be done along 2304 /// this path. 2305 ExprResult 2306 Sema::BuildQualifiedDeclarationNameExpr(CXXScopeSpec &SS, 2307 const DeclarationNameInfo &NameInfo, 2308 bool IsAddressOfOperand, 2309 TypeSourceInfo **RecoveryTSI) { 2310 DeclContext *DC = computeDeclContext(SS, false); 2311 if (!DC) 2312 return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(), 2313 NameInfo, /*TemplateArgs=*/nullptr); 2314 2315 if (RequireCompleteDeclContext(SS, DC)) 2316 return ExprError(); 2317 2318 LookupResult R(*this, NameInfo, LookupOrdinaryName); 2319 LookupQualifiedName(R, DC); 2320 2321 if (R.isAmbiguous()) 2322 return ExprError(); 2323 2324 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation) 2325 return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(), 2326 NameInfo, /*TemplateArgs=*/nullptr); 2327 2328 if (R.empty()) { 2329 Diag(NameInfo.getLoc(), diag::err_no_member) 2330 << NameInfo.getName() << DC << SS.getRange(); 2331 return ExprError(); 2332 } 2333 2334 if (const TypeDecl *TD = R.getAsSingle<TypeDecl>()) { 2335 // Diagnose a missing typename if this resolved unambiguously to a type in 2336 // a dependent context. If we can recover with a type, downgrade this to 2337 // a warning in Microsoft compatibility mode. 2338 unsigned DiagID = diag::err_typename_missing; 2339 if (RecoveryTSI && getLangOpts().MSVCCompat) 2340 DiagID = diag::ext_typename_missing; 2341 SourceLocation Loc = SS.getBeginLoc(); 2342 auto D = Diag(Loc, DiagID); 2343 D << SS.getScopeRep() << NameInfo.getName().getAsString() 2344 << SourceRange(Loc, NameInfo.getEndLoc()); 2345 2346 // Don't recover if the caller isn't expecting us to or if we're in a SFINAE 2347 // context. 2348 if (!RecoveryTSI) 2349 return ExprError(); 2350 2351 // Only issue the fixit if we're prepared to recover. 2352 D << FixItHint::CreateInsertion(Loc, "typename "); 2353 2354 // Recover by pretending this was an elaborated type. 2355 QualType Ty = Context.getTypeDeclType(TD); 2356 TypeLocBuilder TLB; 2357 TLB.pushTypeSpec(Ty).setNameLoc(NameInfo.getLoc()); 2358 2359 QualType ET = getElaboratedType(ETK_None, SS, Ty); 2360 ElaboratedTypeLoc QTL = TLB.push<ElaboratedTypeLoc>(ET); 2361 QTL.setElaboratedKeywordLoc(SourceLocation()); 2362 QTL.setQualifierLoc(SS.getWithLocInContext(Context)); 2363 2364 *RecoveryTSI = TLB.getTypeSourceInfo(Context, ET); 2365 2366 return ExprEmpty(); 2367 } 2368 2369 // Defend against this resolving to an implicit member access. We usually 2370 // won't get here if this might be a legitimate a class member (we end up in 2371 // BuildMemberReferenceExpr instead), but this can be valid if we're forming 2372 // a pointer-to-member or in an unevaluated context in C++11. 2373 if (!R.empty() && (*R.begin())->isCXXClassMember() && !IsAddressOfOperand) 2374 return BuildPossibleImplicitMemberExpr(SS, 2375 /*TemplateKWLoc=*/SourceLocation(), 2376 R, /*TemplateArgs=*/nullptr); 2377 2378 return BuildDeclarationNameExpr(SS, R, /* ADL */ false); 2379 } 2380 2381 /// LookupInObjCMethod - The parser has read a name in, and Sema has 2382 /// detected that we're currently inside an ObjC method. Perform some 2383 /// additional lookup. 2384 /// 2385 /// Ideally, most of this would be done by lookup, but there's 2386 /// actually quite a lot of extra work involved. 2387 /// 2388 /// Returns a null sentinel to indicate trivial success. 2389 ExprResult 2390 Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S, 2391 IdentifierInfo *II, bool AllowBuiltinCreation) { 2392 SourceLocation Loc = Lookup.getNameLoc(); 2393 ObjCMethodDecl *CurMethod = getCurMethodDecl(); 2394 2395 // Check for error condition which is already reported. 2396 if (!CurMethod) 2397 return ExprError(); 2398 2399 // There are two cases to handle here. 1) scoped lookup could have failed, 2400 // in which case we should look for an ivar. 2) scoped lookup could have 2401 // found a decl, but that decl is outside the current instance method (i.e. 2402 // a global variable). In these two cases, we do a lookup for an ivar with 2403 // this name, if the lookup sucedes, we replace it our current decl. 2404 2405 // If we're in a class method, we don't normally want to look for 2406 // ivars. But if we don't find anything else, and there's an 2407 // ivar, that's an error. 2408 bool IsClassMethod = CurMethod->isClassMethod(); 2409 2410 bool LookForIvars; 2411 if (Lookup.empty()) 2412 LookForIvars = true; 2413 else if (IsClassMethod) 2414 LookForIvars = false; 2415 else 2416 LookForIvars = (Lookup.isSingleResult() && 2417 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()); 2418 ObjCInterfaceDecl *IFace = nullptr; 2419 if (LookForIvars) { 2420 IFace = CurMethod->getClassInterface(); 2421 ObjCInterfaceDecl *ClassDeclared; 2422 ObjCIvarDecl *IV = nullptr; 2423 if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) { 2424 // Diagnose using an ivar in a class method. 2425 if (IsClassMethod) 2426 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) 2427 << IV->getDeclName()); 2428 2429 // If we're referencing an invalid decl, just return this as a silent 2430 // error node. The error diagnostic was already emitted on the decl. 2431 if (IV->isInvalidDecl()) 2432 return ExprError(); 2433 2434 // Check if referencing a field with __attribute__((deprecated)). 2435 if (DiagnoseUseOfDecl(IV, Loc)) 2436 return ExprError(); 2437 2438 // Diagnose the use of an ivar outside of the declaring class. 2439 if (IV->getAccessControl() == ObjCIvarDecl::Private && 2440 !declaresSameEntity(ClassDeclared, IFace) && 2441 !getLangOpts().DebuggerSupport) 2442 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); 2443 2444 // FIXME: This should use a new expr for a direct reference, don't 2445 // turn this into Self->ivar, just return a BareIVarExpr or something. 2446 IdentifierInfo &II = Context.Idents.get("self"); 2447 UnqualifiedId SelfName; 2448 SelfName.setIdentifier(&II, SourceLocation()); 2449 SelfName.setKind(UnqualifiedId::IK_ImplicitSelfParam); 2450 CXXScopeSpec SelfScopeSpec; 2451 SourceLocation TemplateKWLoc; 2452 ExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, TemplateKWLoc, 2453 SelfName, false, false); 2454 if (SelfExpr.isInvalid()) 2455 return ExprError(); 2456 2457 SelfExpr = DefaultLvalueConversion(SelfExpr.get()); 2458 if (SelfExpr.isInvalid()) 2459 return ExprError(); 2460 2461 MarkAnyDeclReferenced(Loc, IV, true); 2462 2463 ObjCMethodFamily MF = CurMethod->getMethodFamily(); 2464 if (MF != OMF_init && MF != OMF_dealloc && MF != OMF_finalize && 2465 !IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV)) 2466 Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName(); 2467 2468 ObjCIvarRefExpr *Result = new (Context) 2469 ObjCIvarRefExpr(IV, IV->getUsageType(SelfExpr.get()->getType()), Loc, 2470 IV->getLocation(), SelfExpr.get(), true, true); 2471 2472 if (getLangOpts().ObjCAutoRefCount) { 2473 if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) { 2474 if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc)) 2475 recordUseOfEvaluatedWeak(Result); 2476 } 2477 if (CurContext->isClosure()) 2478 Diag(Loc, diag::warn_implicitly_retains_self) 2479 << FixItHint::CreateInsertion(Loc, "self->"); 2480 } 2481 2482 return Result; 2483 } 2484 } else if (CurMethod->isInstanceMethod()) { 2485 // We should warn if a local variable hides an ivar. 2486 if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) { 2487 ObjCInterfaceDecl *ClassDeclared; 2488 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { 2489 if (IV->getAccessControl() != ObjCIvarDecl::Private || 2490 declaresSameEntity(IFace, ClassDeclared)) 2491 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); 2492 } 2493 } 2494 } else if (Lookup.isSingleResult() && 2495 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()) { 2496 // If accessing a stand-alone ivar in a class method, this is an error. 2497 if (const ObjCIvarDecl *IV = dyn_cast<ObjCIvarDecl>(Lookup.getFoundDecl())) 2498 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) 2499 << IV->getDeclName()); 2500 } 2501 2502 if (Lookup.empty() && II && AllowBuiltinCreation) { 2503 // FIXME. Consolidate this with similar code in LookupName. 2504 if (unsigned BuiltinID = II->getBuiltinID()) { 2505 if (!(getLangOpts().CPlusPlus && 2506 Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))) { 2507 NamedDecl *D = LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID, 2508 S, Lookup.isForRedeclaration(), 2509 Lookup.getNameLoc()); 2510 if (D) Lookup.addDecl(D); 2511 } 2512 } 2513 } 2514 // Sentinel value saying that we didn't do anything special. 2515 return ExprResult((Expr *)nullptr); 2516 } 2517 2518 /// \brief Cast a base object to a member's actual type. 2519 /// 2520 /// Logically this happens in three phases: 2521 /// 2522 /// * First we cast from the base type to the naming class. 2523 /// The naming class is the class into which we were looking 2524 /// when we found the member; it's the qualifier type if a 2525 /// qualifier was provided, and otherwise it's the base type. 2526 /// 2527 /// * Next we cast from the naming class to the declaring class. 2528 /// If the member we found was brought into a class's scope by 2529 /// a using declaration, this is that class; otherwise it's 2530 /// the class declaring the member. 2531 /// 2532 /// * Finally we cast from the declaring class to the "true" 2533 /// declaring class of the member. This conversion does not 2534 /// obey access control. 2535 ExprResult 2536 Sema::PerformObjectMemberConversion(Expr *From, 2537 NestedNameSpecifier *Qualifier, 2538 NamedDecl *FoundDecl, 2539 NamedDecl *Member) { 2540 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext()); 2541 if (!RD) 2542 return From; 2543 2544 QualType DestRecordType; 2545 QualType DestType; 2546 QualType FromRecordType; 2547 QualType FromType = From->getType(); 2548 bool PointerConversions = false; 2549 if (isa<FieldDecl>(Member)) { 2550 DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD)); 2551 2552 if (FromType->getAs<PointerType>()) { 2553 DestType = Context.getPointerType(DestRecordType); 2554 FromRecordType = FromType->getPointeeType(); 2555 PointerConversions = true; 2556 } else { 2557 DestType = DestRecordType; 2558 FromRecordType = FromType; 2559 } 2560 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) { 2561 if (Method->isStatic()) 2562 return From; 2563 2564 DestType = Method->getThisType(Context); 2565 DestRecordType = DestType->getPointeeType(); 2566 2567 if (FromType->getAs<PointerType>()) { 2568 FromRecordType = FromType->getPointeeType(); 2569 PointerConversions = true; 2570 } else { 2571 FromRecordType = FromType; 2572 DestType = DestRecordType; 2573 } 2574 } else { 2575 // No conversion necessary. 2576 return From; 2577 } 2578 2579 if (DestType->isDependentType() || FromType->isDependentType()) 2580 return From; 2581 2582 // If the unqualified types are the same, no conversion is necessary. 2583 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) 2584 return From; 2585 2586 SourceRange FromRange = From->getSourceRange(); 2587 SourceLocation FromLoc = FromRange.getBegin(); 2588 2589 ExprValueKind VK = From->getValueKind(); 2590 2591 // C++ [class.member.lookup]p8: 2592 // [...] Ambiguities can often be resolved by qualifying a name with its 2593 // class name. 2594 // 2595 // If the member was a qualified name and the qualified referred to a 2596 // specific base subobject type, we'll cast to that intermediate type 2597 // first and then to the object in which the member is declared. That allows 2598 // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as: 2599 // 2600 // class Base { public: int x; }; 2601 // class Derived1 : public Base { }; 2602 // class Derived2 : public Base { }; 2603 // class VeryDerived : public Derived1, public Derived2 { void f(); }; 2604 // 2605 // void VeryDerived::f() { 2606 // x = 17; // error: ambiguous base subobjects 2607 // Derived1::x = 17; // okay, pick the Base subobject of Derived1 2608 // } 2609 if (Qualifier && Qualifier->getAsType()) { 2610 QualType QType = QualType(Qualifier->getAsType(), 0); 2611 assert(QType->isRecordType() && "lookup done with non-record type"); 2612 2613 QualType QRecordType = QualType(QType->getAs<RecordType>(), 0); 2614 2615 // In C++98, the qualifier type doesn't actually have to be a base 2616 // type of the object type, in which case we just ignore it. 2617 // Otherwise build the appropriate casts. 2618 if (IsDerivedFrom(FromRecordType, QRecordType)) { 2619 CXXCastPath BasePath; 2620 if (CheckDerivedToBaseConversion(FromRecordType, QRecordType, 2621 FromLoc, FromRange, &BasePath)) 2622 return ExprError(); 2623 2624 if (PointerConversions) 2625 QType = Context.getPointerType(QType); 2626 From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase, 2627 VK, &BasePath).get(); 2628 2629 FromType = QType; 2630 FromRecordType = QRecordType; 2631 2632 // If the qualifier type was the same as the destination type, 2633 // we're done. 2634 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) 2635 return From; 2636 } 2637 } 2638 2639 bool IgnoreAccess = false; 2640 2641 // If we actually found the member through a using declaration, cast 2642 // down to the using declaration's type. 2643 // 2644 // Pointer equality is fine here because only one declaration of a 2645 // class ever has member declarations. 2646 if (FoundDecl->getDeclContext() != Member->getDeclContext()) { 2647 assert(isa<UsingShadowDecl>(FoundDecl)); 2648 QualType URecordType = Context.getTypeDeclType( 2649 cast<CXXRecordDecl>(FoundDecl->getDeclContext())); 2650 2651 // We only need to do this if the naming-class to declaring-class 2652 // conversion is non-trivial. 2653 if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) { 2654 assert(IsDerivedFrom(FromRecordType, URecordType)); 2655 CXXCastPath BasePath; 2656 if (CheckDerivedToBaseConversion(FromRecordType, URecordType, 2657 FromLoc, FromRange, &BasePath)) 2658 return ExprError(); 2659 2660 QualType UType = URecordType; 2661 if (PointerConversions) 2662 UType = Context.getPointerType(UType); 2663 From = ImpCastExprToType(From, UType, CK_UncheckedDerivedToBase, 2664 VK, &BasePath).get(); 2665 FromType = UType; 2666 FromRecordType = URecordType; 2667 } 2668 2669 // We don't do access control for the conversion from the 2670 // declaring class to the true declaring class. 2671 IgnoreAccess = true; 2672 } 2673 2674 CXXCastPath BasePath; 2675 if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType, 2676 FromLoc, FromRange, &BasePath, 2677 IgnoreAccess)) 2678 return ExprError(); 2679 2680 return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase, 2681 VK, &BasePath); 2682 } 2683 2684 bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS, 2685 const LookupResult &R, 2686 bool HasTrailingLParen) { 2687 // Only when used directly as the postfix-expression of a call. 2688 if (!HasTrailingLParen) 2689 return false; 2690 2691 // Never if a scope specifier was provided. 2692 if (SS.isSet()) 2693 return false; 2694 2695 // Only in C++ or ObjC++. 2696 if (!getLangOpts().CPlusPlus) 2697 return false; 2698 2699 // Turn off ADL when we find certain kinds of declarations during 2700 // normal lookup: 2701 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { 2702 NamedDecl *D = *I; 2703 2704 // C++0x [basic.lookup.argdep]p3: 2705 // -- a declaration of a class member 2706 // Since using decls preserve this property, we check this on the 2707 // original decl. 2708 if (D->isCXXClassMember()) 2709 return false; 2710 2711 // C++0x [basic.lookup.argdep]p3: 2712 // -- a block-scope function declaration that is not a 2713 // using-declaration 2714 // NOTE: we also trigger this for function templates (in fact, we 2715 // don't check the decl type at all, since all other decl types 2716 // turn off ADL anyway). 2717 if (isa<UsingShadowDecl>(D)) 2718 D = cast<UsingShadowDecl>(D)->getTargetDecl(); 2719 else if (D->getLexicalDeclContext()->isFunctionOrMethod()) 2720 return false; 2721 2722 // C++0x [basic.lookup.argdep]p3: 2723 // -- a declaration that is neither a function or a function 2724 // template 2725 // And also for builtin functions. 2726 if (isa<FunctionDecl>(D)) { 2727 FunctionDecl *FDecl = cast<FunctionDecl>(D); 2728 2729 // But also builtin functions. 2730 if (FDecl->getBuiltinID() && FDecl->isImplicit()) 2731 return false; 2732 } else if (!isa<FunctionTemplateDecl>(D)) 2733 return false; 2734 } 2735 2736 return true; 2737 } 2738 2739 2740 /// Diagnoses obvious problems with the use of the given declaration 2741 /// as an expression. This is only actually called for lookups that 2742 /// were not overloaded, and it doesn't promise that the declaration 2743 /// will in fact be used. 2744 static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) { 2745 if (isa<TypedefNameDecl>(D)) { 2746 S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName(); 2747 return true; 2748 } 2749 2750 if (isa<ObjCInterfaceDecl>(D)) { 2751 S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName(); 2752 return true; 2753 } 2754 2755 if (isa<NamespaceDecl>(D)) { 2756 S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName(); 2757 return true; 2758 } 2759 2760 return false; 2761 } 2762 2763 ExprResult Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, 2764 LookupResult &R, bool NeedsADL, 2765 bool AcceptInvalidDecl) { 2766 // If this is a single, fully-resolved result and we don't need ADL, 2767 // just build an ordinary singleton decl ref. 2768 if (!NeedsADL && R.isSingleResult() && !R.getAsSingle<FunctionTemplateDecl>()) 2769 return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), R.getFoundDecl(), 2770 R.getRepresentativeDecl(), nullptr, 2771 AcceptInvalidDecl); 2772 2773 // We only need to check the declaration if there's exactly one 2774 // result, because in the overloaded case the results can only be 2775 // functions and function templates. 2776 if (R.isSingleResult() && 2777 CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl())) 2778 return ExprError(); 2779 2780 // Otherwise, just build an unresolved lookup expression. Suppress 2781 // any lookup-related diagnostics; we'll hash these out later, when 2782 // we've picked a target. 2783 R.suppressDiagnostics(); 2784 2785 UnresolvedLookupExpr *ULE 2786 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(), 2787 SS.getWithLocInContext(Context), 2788 R.getLookupNameInfo(), 2789 NeedsADL, R.isOverloadedResult(), 2790 R.begin(), R.end()); 2791 2792 return ULE; 2793 } 2794 2795 /// \brief Complete semantic analysis for a reference to the given declaration. 2796 ExprResult Sema::BuildDeclarationNameExpr( 2797 const CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, NamedDecl *D, 2798 NamedDecl *FoundD, const TemplateArgumentListInfo *TemplateArgs, 2799 bool AcceptInvalidDecl) { 2800 assert(D && "Cannot refer to a NULL declaration"); 2801 assert(!isa<FunctionTemplateDecl>(D) && 2802 "Cannot refer unambiguously to a function template"); 2803 2804 SourceLocation Loc = NameInfo.getLoc(); 2805 if (CheckDeclInExpr(*this, Loc, D)) 2806 return ExprError(); 2807 2808 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) { 2809 // Specifically diagnose references to class templates that are missing 2810 // a template argument list. 2811 Diag(Loc, diag::err_template_decl_ref) << (isa<VarTemplateDecl>(D) ? 1 : 0) 2812 << Template << SS.getRange(); 2813 Diag(Template->getLocation(), diag::note_template_decl_here); 2814 return ExprError(); 2815 } 2816 2817 // Make sure that we're referring to a value. 2818 ValueDecl *VD = dyn_cast<ValueDecl>(D); 2819 if (!VD) { 2820 Diag(Loc, diag::err_ref_non_value) 2821 << D << SS.getRange(); 2822 Diag(D->getLocation(), diag::note_declared_at); 2823 return ExprError(); 2824 } 2825 2826 // Check whether this declaration can be used. Note that we suppress 2827 // this check when we're going to perform argument-dependent lookup 2828 // on this function name, because this might not be the function 2829 // that overload resolution actually selects. 2830 if (DiagnoseUseOfDecl(VD, Loc)) 2831 return ExprError(); 2832 2833 // Only create DeclRefExpr's for valid Decl's. 2834 if (VD->isInvalidDecl() && !AcceptInvalidDecl) 2835 return ExprError(); 2836 2837 // Handle members of anonymous structs and unions. If we got here, 2838 // and the reference is to a class member indirect field, then this 2839 // must be the subject of a pointer-to-member expression. 2840 if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD)) 2841 if (!indirectField->isCXXClassMember()) 2842 return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(), 2843 indirectField); 2844 2845 { 2846 QualType type = VD->getType(); 2847 ExprValueKind valueKind = VK_RValue; 2848 2849 switch (D->getKind()) { 2850 // Ignore all the non-ValueDecl kinds. 2851 #define ABSTRACT_DECL(kind) 2852 #define VALUE(type, base) 2853 #define DECL(type, base) \ 2854 case Decl::type: 2855 #include "clang/AST/DeclNodes.inc" 2856 llvm_unreachable("invalid value decl kind"); 2857 2858 // These shouldn't make it here. 2859 case Decl::ObjCAtDefsField: 2860 case Decl::ObjCIvar: 2861 llvm_unreachable("forming non-member reference to ivar?"); 2862 2863 // Enum constants are always r-values and never references. 2864 // Unresolved using declarations are dependent. 2865 case Decl::EnumConstant: 2866 case Decl::UnresolvedUsingValue: 2867 valueKind = VK_RValue; 2868 break; 2869 2870 // Fields and indirect fields that got here must be for 2871 // pointer-to-member expressions; we just call them l-values for 2872 // internal consistency, because this subexpression doesn't really 2873 // exist in the high-level semantics. 2874 case Decl::Field: 2875 case Decl::IndirectField: 2876 assert(getLangOpts().CPlusPlus && 2877 "building reference to field in C?"); 2878 2879 // These can't have reference type in well-formed programs, but 2880 // for internal consistency we do this anyway. 2881 type = type.getNonReferenceType(); 2882 valueKind = VK_LValue; 2883 break; 2884 2885 // Non-type template parameters are either l-values or r-values 2886 // depending on the type. 2887 case Decl::NonTypeTemplateParm: { 2888 if (const ReferenceType *reftype = type->getAs<ReferenceType>()) { 2889 type = reftype->getPointeeType(); 2890 valueKind = VK_LValue; // even if the parameter is an r-value reference 2891 break; 2892 } 2893 2894 // For non-references, we need to strip qualifiers just in case 2895 // the template parameter was declared as 'const int' or whatever. 2896 valueKind = VK_RValue; 2897 type = type.getUnqualifiedType(); 2898 break; 2899 } 2900 2901 case Decl::Var: 2902 case Decl::VarTemplateSpecialization: 2903 case Decl::VarTemplatePartialSpecialization: 2904 // In C, "extern void blah;" is valid and is an r-value. 2905 if (!getLangOpts().CPlusPlus && 2906 !type.hasQualifiers() && 2907 type->isVoidType()) { 2908 valueKind = VK_RValue; 2909 break; 2910 } 2911 // fallthrough 2912 2913 case Decl::ImplicitParam: 2914 case Decl::ParmVar: { 2915 // These are always l-values. 2916 valueKind = VK_LValue; 2917 type = type.getNonReferenceType(); 2918 2919 // FIXME: Does the addition of const really only apply in 2920 // potentially-evaluated contexts? Since the variable isn't actually 2921 // captured in an unevaluated context, it seems that the answer is no. 2922 if (!isUnevaluatedContext()) { 2923 QualType CapturedType = getCapturedDeclRefType(cast<VarDecl>(VD), Loc); 2924 if (!CapturedType.isNull()) 2925 type = CapturedType; 2926 } 2927 2928 break; 2929 } 2930 2931 case Decl::Function: { 2932 if (unsigned BID = cast<FunctionDecl>(VD)->getBuiltinID()) { 2933 if (!Context.BuiltinInfo.isPredefinedLibFunction(BID)) { 2934 type = Context.BuiltinFnTy; 2935 valueKind = VK_RValue; 2936 break; 2937 } 2938 } 2939 2940 const FunctionType *fty = type->castAs<FunctionType>(); 2941 2942 // If we're referring to a function with an __unknown_anytype 2943 // result type, make the entire expression __unknown_anytype. 2944 if (fty->getReturnType() == Context.UnknownAnyTy) { 2945 type = Context.UnknownAnyTy; 2946 valueKind = VK_RValue; 2947 break; 2948 } 2949 2950 // Functions are l-values in C++. 2951 if (getLangOpts().CPlusPlus) { 2952 valueKind = VK_LValue; 2953 break; 2954 } 2955 2956 // C99 DR 316 says that, if a function type comes from a 2957 // function definition (without a prototype), that type is only 2958 // used for checking compatibility. Therefore, when referencing 2959 // the function, we pretend that we don't have the full function 2960 // type. 2961 if (!cast<FunctionDecl>(VD)->hasPrototype() && 2962 isa<FunctionProtoType>(fty)) 2963 type = Context.getFunctionNoProtoType(fty->getReturnType(), 2964 fty->getExtInfo()); 2965 2966 // Functions are r-values in C. 2967 valueKind = VK_RValue; 2968 break; 2969 } 2970 2971 case Decl::MSProperty: 2972 valueKind = VK_LValue; 2973 break; 2974 2975 case Decl::CXXMethod: 2976 // If we're referring to a method with an __unknown_anytype 2977 // result type, make the entire expression __unknown_anytype. 2978 // This should only be possible with a type written directly. 2979 if (const FunctionProtoType *proto 2980 = dyn_cast<FunctionProtoType>(VD->getType())) 2981 if (proto->getReturnType() == Context.UnknownAnyTy) { 2982 type = Context.UnknownAnyTy; 2983 valueKind = VK_RValue; 2984 break; 2985 } 2986 2987 // C++ methods are l-values if static, r-values if non-static. 2988 if (cast<CXXMethodDecl>(VD)->isStatic()) { 2989 valueKind = VK_LValue; 2990 break; 2991 } 2992 // fallthrough 2993 2994 case Decl::CXXConversion: 2995 case Decl::CXXDestructor: 2996 case Decl::CXXConstructor: 2997 valueKind = VK_RValue; 2998 break; 2999 } 3000 3001 return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS, FoundD, 3002 TemplateArgs); 3003 } 3004 } 3005 3006 static void ConvertUTF8ToWideString(unsigned CharByteWidth, StringRef Source, 3007 SmallString<32> &Target) { 3008 Target.resize(CharByteWidth * (Source.size() + 1)); 3009 char *ResultPtr = &Target[0]; 3010 const UTF8 *ErrorPtr; 3011 bool success = ConvertUTF8toWide(CharByteWidth, Source, ResultPtr, ErrorPtr); 3012 (void)success; 3013 assert(success); 3014 Target.resize(ResultPtr - &Target[0]); 3015 } 3016 3017 ExprResult Sema::BuildPredefinedExpr(SourceLocation Loc, 3018 PredefinedExpr::IdentType IT) { 3019 // Pick the current block, lambda, captured statement or function. 3020 Decl *currentDecl = nullptr; 3021 if (const BlockScopeInfo *BSI = getCurBlock()) 3022 currentDecl = BSI->TheDecl; 3023 else if (const LambdaScopeInfo *LSI = getCurLambda()) 3024 currentDecl = LSI->CallOperator; 3025 else if (const CapturedRegionScopeInfo *CSI = getCurCapturedRegion()) 3026 currentDecl = CSI->TheCapturedDecl; 3027 else 3028 currentDecl = getCurFunctionOrMethodDecl(); 3029 3030 if (!currentDecl) { 3031 Diag(Loc, diag::ext_predef_outside_function); 3032 currentDecl = Context.getTranslationUnitDecl(); 3033 } 3034 3035 QualType ResTy; 3036 StringLiteral *SL = nullptr; 3037 if (cast<DeclContext>(currentDecl)->isDependentContext()) 3038 ResTy = Context.DependentTy; 3039 else { 3040 // Pre-defined identifiers are of type char[x], where x is the length of 3041 // the string. 3042 auto Str = PredefinedExpr::ComputeName(IT, currentDecl); 3043 unsigned Length = Str.length(); 3044 3045 llvm::APInt LengthI(32, Length + 1); 3046 if (IT == PredefinedExpr::LFunction) { 3047 ResTy = Context.WideCharTy.withConst(); 3048 SmallString<32> RawChars; 3049 ConvertUTF8ToWideString(Context.getTypeSizeInChars(ResTy).getQuantity(), 3050 Str, RawChars); 3051 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 3052 /*IndexTypeQuals*/ 0); 3053 SL = StringLiteral::Create(Context, RawChars, StringLiteral::Wide, 3054 /*Pascal*/ false, ResTy, Loc); 3055 } else { 3056 ResTy = Context.CharTy.withConst(); 3057 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 3058 /*IndexTypeQuals*/ 0); 3059 SL = StringLiteral::Create(Context, Str, StringLiteral::Ascii, 3060 /*Pascal*/ false, ResTy, Loc); 3061 } 3062 } 3063 3064 return new (Context) PredefinedExpr(Loc, ResTy, IT, SL); 3065 } 3066 3067 ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) { 3068 PredefinedExpr::IdentType IT; 3069 3070 switch (Kind) { 3071 default: llvm_unreachable("Unknown simple primary expr!"); 3072 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] 3073 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; 3074 case tok::kw___FUNCDNAME__: IT = PredefinedExpr::FuncDName; break; // [MS] 3075 case tok::kw___FUNCSIG__: IT = PredefinedExpr::FuncSig; break; // [MS] 3076 case tok::kw_L__FUNCTION__: IT = PredefinedExpr::LFunction; break; 3077 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; 3078 } 3079 3080 return BuildPredefinedExpr(Loc, IT); 3081 } 3082 3083 ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) { 3084 SmallString<16> CharBuffer; 3085 bool Invalid = false; 3086 StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid); 3087 if (Invalid) 3088 return ExprError(); 3089 3090 CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(), 3091 PP, Tok.getKind()); 3092 if (Literal.hadError()) 3093 return ExprError(); 3094 3095 QualType Ty; 3096 if (Literal.isWide()) 3097 Ty = Context.WideCharTy; // L'x' -> wchar_t in C and C++. 3098 else if (Literal.isUTF16()) 3099 Ty = Context.Char16Ty; // u'x' -> char16_t in C11 and C++11. 3100 else if (Literal.isUTF32()) 3101 Ty = Context.Char32Ty; // U'x' -> char32_t in C11 and C++11. 3102 else if (!getLangOpts().CPlusPlus || Literal.isMultiChar()) 3103 Ty = Context.IntTy; // 'x' -> int in C, 'wxyz' -> int in C++. 3104 else 3105 Ty = Context.CharTy; // 'x' -> char in C++ 3106 3107 CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii; 3108 if (Literal.isWide()) 3109 Kind = CharacterLiteral::Wide; 3110 else if (Literal.isUTF16()) 3111 Kind = CharacterLiteral::UTF16; 3112 else if (Literal.isUTF32()) 3113 Kind = CharacterLiteral::UTF32; 3114 3115 Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty, 3116 Tok.getLocation()); 3117 3118 if (Literal.getUDSuffix().empty()) 3119 return Lit; 3120 3121 // We're building a user-defined literal. 3122 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); 3123 SourceLocation UDSuffixLoc = 3124 getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset()); 3125 3126 // Make sure we're allowed user-defined literals here. 3127 if (!UDLScope) 3128 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_character_udl)); 3129 3130 // C++11 [lex.ext]p6: The literal L is treated as a call of the form 3131 // operator "" X (ch) 3132 return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc, 3133 Lit, Tok.getLocation()); 3134 } 3135 3136 ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, uint64_t Val) { 3137 unsigned IntSize = Context.getTargetInfo().getIntWidth(); 3138 return IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val), 3139 Context.IntTy, Loc); 3140 } 3141 3142 static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal, 3143 QualType Ty, SourceLocation Loc) { 3144 const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty); 3145 3146 using llvm::APFloat; 3147 APFloat Val(Format); 3148 3149 APFloat::opStatus result = Literal.GetFloatValue(Val); 3150 3151 // Overflow is always an error, but underflow is only an error if 3152 // we underflowed to zero (APFloat reports denormals as underflow). 3153 if ((result & APFloat::opOverflow) || 3154 ((result & APFloat::opUnderflow) && Val.isZero())) { 3155 unsigned diagnostic; 3156 SmallString<20> buffer; 3157 if (result & APFloat::opOverflow) { 3158 diagnostic = diag::warn_float_overflow; 3159 APFloat::getLargest(Format).toString(buffer); 3160 } else { 3161 diagnostic = diag::warn_float_underflow; 3162 APFloat::getSmallest(Format).toString(buffer); 3163 } 3164 3165 S.Diag(Loc, diagnostic) 3166 << Ty 3167 << StringRef(buffer.data(), buffer.size()); 3168 } 3169 3170 bool isExact = (result == APFloat::opOK); 3171 return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc); 3172 } 3173 3174 bool Sema::CheckLoopHintExpr(Expr *E, SourceLocation Loc) { 3175 assert(E && "Invalid expression"); 3176 3177 if (E->isValueDependent()) 3178 return false; 3179 3180 QualType QT = E->getType(); 3181 if (!QT->isIntegerType() || QT->isBooleanType() || QT->isCharType()) { 3182 Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_type) << QT; 3183 return true; 3184 } 3185 3186 llvm::APSInt ValueAPS; 3187 ExprResult R = VerifyIntegerConstantExpression(E, &ValueAPS); 3188 3189 if (R.isInvalid()) 3190 return true; 3191 3192 bool ValueIsPositive = ValueAPS.isStrictlyPositive(); 3193 if (!ValueIsPositive || ValueAPS.getActiveBits() > 31) { 3194 Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_value) 3195 << ValueAPS.toString(10) << ValueIsPositive; 3196 return true; 3197 } 3198 3199 return false; 3200 } 3201 3202 ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScope) { 3203 // Fast path for a single digit (which is quite common). A single digit 3204 // cannot have a trigraph, escaped newline, radix prefix, or suffix. 3205 if (Tok.getLength() == 1) { 3206 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); 3207 return ActOnIntegerConstant(Tok.getLocation(), Val-'0'); 3208 } 3209 3210 SmallString<128> SpellingBuffer; 3211 // NumericLiteralParser wants to overread by one character. Add padding to 3212 // the buffer in case the token is copied to the buffer. If getSpelling() 3213 // returns a StringRef to the memory buffer, it should have a null char at 3214 // the EOF, so it is also safe. 3215 SpellingBuffer.resize(Tok.getLength() + 1); 3216 3217 // Get the spelling of the token, which eliminates trigraphs, etc. 3218 bool Invalid = false; 3219 StringRef TokSpelling = PP.getSpelling(Tok, SpellingBuffer, &Invalid); 3220 if (Invalid) 3221 return ExprError(); 3222 3223 NumericLiteralParser Literal(TokSpelling, Tok.getLocation(), PP); 3224 if (Literal.hadError) 3225 return ExprError(); 3226 3227 if (Literal.hasUDSuffix()) { 3228 // We're building a user-defined literal. 3229 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); 3230 SourceLocation UDSuffixLoc = 3231 getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset()); 3232 3233 // Make sure we're allowed user-defined literals here. 3234 if (!UDLScope) 3235 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_numeric_udl)); 3236 3237 QualType CookedTy; 3238 if (Literal.isFloatingLiteral()) { 3239 // C++11 [lex.ext]p4: If S contains a literal operator with parameter type 3240 // long double, the literal is treated as a call of the form 3241 // operator "" X (f L) 3242 CookedTy = Context.LongDoubleTy; 3243 } else { 3244 // C++11 [lex.ext]p3: If S contains a literal operator with parameter type 3245 // unsigned long long, the literal is treated as a call of the form 3246 // operator "" X (n ULL) 3247 CookedTy = Context.UnsignedLongLongTy; 3248 } 3249 3250 DeclarationName OpName = 3251 Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); 3252 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); 3253 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); 3254 3255 SourceLocation TokLoc = Tok.getLocation(); 3256 3257 // Perform literal operator lookup to determine if we're building a raw 3258 // literal or a cooked one. 3259 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName); 3260 switch (LookupLiteralOperator(UDLScope, R, CookedTy, 3261 /*AllowRaw*/true, /*AllowTemplate*/true, 3262 /*AllowStringTemplate*/false)) { 3263 case LOLR_Error: 3264 return ExprError(); 3265 3266 case LOLR_Cooked: { 3267 Expr *Lit; 3268 if (Literal.isFloatingLiteral()) { 3269 Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation()); 3270 } else { 3271 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0); 3272 if (Literal.GetIntegerValue(ResultVal)) 3273 Diag(Tok.getLocation(), diag::err_integer_literal_too_large) 3274 << /* Unsigned */ 1; 3275 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, 3276 Tok.getLocation()); 3277 } 3278 return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc); 3279 } 3280 3281 case LOLR_Raw: { 3282 // C++11 [lit.ext]p3, p4: If S contains a raw literal operator, the 3283 // literal is treated as a call of the form 3284 // operator "" X ("n") 3285 unsigned Length = Literal.getUDSuffixOffset(); 3286 QualType StrTy = Context.getConstantArrayType( 3287 Context.CharTy.withConst(), llvm::APInt(32, Length + 1), 3288 ArrayType::Normal, 0); 3289 Expr *Lit = StringLiteral::Create( 3290 Context, StringRef(TokSpelling.data(), Length), StringLiteral::Ascii, 3291 /*Pascal*/false, StrTy, &TokLoc, 1); 3292 return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc); 3293 } 3294 3295 case LOLR_Template: { 3296 // C++11 [lit.ext]p3, p4: Otherwise (S contains a literal operator 3297 // template), L is treated as a call fo the form 3298 // operator "" X <'c1', 'c2', ... 'ck'>() 3299 // where n is the source character sequence c1 c2 ... ck. 3300 TemplateArgumentListInfo ExplicitArgs; 3301 unsigned CharBits = Context.getIntWidth(Context.CharTy); 3302 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); 3303 llvm::APSInt Value(CharBits, CharIsUnsigned); 3304 for (unsigned I = 0, N = Literal.getUDSuffixOffset(); I != N; ++I) { 3305 Value = TokSpelling[I]; 3306 TemplateArgument Arg(Context, Value, Context.CharTy); 3307 TemplateArgumentLocInfo ArgInfo; 3308 ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo)); 3309 } 3310 return BuildLiteralOperatorCall(R, OpNameInfo, None, TokLoc, 3311 &ExplicitArgs); 3312 } 3313 case LOLR_StringTemplate: 3314 llvm_unreachable("unexpected literal operator lookup result"); 3315 } 3316 } 3317 3318 Expr *Res; 3319 3320 if (Literal.isFloatingLiteral()) { 3321 QualType Ty; 3322 if (Literal.isFloat) 3323 Ty = Context.FloatTy; 3324 else if (!Literal.isLong) 3325 Ty = Context.DoubleTy; 3326 else 3327 Ty = Context.LongDoubleTy; 3328 3329 Res = BuildFloatingLiteral(*this, Literal, Ty, Tok.getLocation()); 3330 3331 if (Ty == Context.DoubleTy) { 3332 if (getLangOpts().SinglePrecisionConstants) { 3333 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get(); 3334 } else if (getLangOpts().OpenCL && 3335 !((getLangOpts().OpenCLVersion >= 120) || 3336 getOpenCLOptions().cl_khr_fp64)) { 3337 Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64); 3338 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get(); 3339 } 3340 } 3341 } else if (!Literal.isIntegerLiteral()) { 3342 return ExprError(); 3343 } else { 3344 QualType Ty; 3345 3346 // 'long long' is a C99 or C++11 feature. 3347 if (!getLangOpts().C99 && Literal.isLongLong) { 3348 if (getLangOpts().CPlusPlus) 3349 Diag(Tok.getLocation(), 3350 getLangOpts().CPlusPlus11 ? 3351 diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong); 3352 else 3353 Diag(Tok.getLocation(), diag::ext_c99_longlong); 3354 } 3355 3356 // Get the value in the widest-possible width. 3357 unsigned MaxWidth = Context.getTargetInfo().getIntMaxTWidth(); 3358 // The microsoft literal suffix extensions support 128-bit literals, which 3359 // may be wider than [u]intmax_t. 3360 // FIXME: Actually, they don't. We seem to have accidentally invented the 3361 // i128 suffix. 3362 if (Literal.MicrosoftInteger == 128 && MaxWidth < 128 && 3363 Context.getTargetInfo().hasInt128Type()) 3364 MaxWidth = 128; 3365 llvm::APInt ResultVal(MaxWidth, 0); 3366 3367 if (Literal.GetIntegerValue(ResultVal)) { 3368 // If this value didn't fit into uintmax_t, error and force to ull. 3369 Diag(Tok.getLocation(), diag::err_integer_literal_too_large) 3370 << /* Unsigned */ 1; 3371 Ty = Context.UnsignedLongLongTy; 3372 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && 3373 "long long is not intmax_t?"); 3374 } else { 3375 // If this value fits into a ULL, try to figure out what else it fits into 3376 // according to the rules of C99 6.4.4.1p5. 3377 3378 // Octal, Hexadecimal, and integers with a U suffix are allowed to 3379 // be an unsigned int. 3380 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; 3381 3382 // Check from smallest to largest, picking the smallest type we can. 3383 unsigned Width = 0; 3384 3385 // Microsoft specific integer suffixes are explicitly sized. 3386 if (Literal.MicrosoftInteger) { 3387 if (Literal.MicrosoftInteger > MaxWidth) { 3388 // If this target doesn't support __int128, error and force to ull. 3389 Diag(Tok.getLocation(), diag::err_int128_unsupported); 3390 Width = MaxWidth; 3391 Ty = Context.getIntMaxType(); 3392 } else if (Literal.MicrosoftInteger == 8 && !Literal.isUnsigned) { 3393 Width = 8; 3394 Ty = Context.CharTy; 3395 } else { 3396 Width = Literal.MicrosoftInteger; 3397 Ty = Context.getIntTypeForBitwidth(Width, 3398 /*Signed=*/!Literal.isUnsigned); 3399 } 3400 } 3401 3402 if (Ty.isNull() && !Literal.isLong && !Literal.isLongLong) { 3403 // Are int/unsigned possibilities? 3404 unsigned IntSize = Context.getTargetInfo().getIntWidth(); 3405 3406 // Does it fit in a unsigned int? 3407 if (ResultVal.isIntN(IntSize)) { 3408 // Does it fit in a signed int? 3409 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) 3410 Ty = Context.IntTy; 3411 else if (AllowUnsigned) 3412 Ty = Context.UnsignedIntTy; 3413 Width = IntSize; 3414 } 3415 } 3416 3417 // Are long/unsigned long possibilities? 3418 if (Ty.isNull() && !Literal.isLongLong) { 3419 unsigned LongSize = Context.getTargetInfo().getLongWidth(); 3420 3421 // Does it fit in a unsigned long? 3422 if (ResultVal.isIntN(LongSize)) { 3423 // Does it fit in a signed long? 3424 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) 3425 Ty = Context.LongTy; 3426 else if (AllowUnsigned) 3427 Ty = Context.UnsignedLongTy; 3428 // Check according to the rules of C90 6.1.3.2p5. C++03 [lex.icon]p2 3429 // is compatible. 3430 else if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11) { 3431 const unsigned LongLongSize = 3432 Context.getTargetInfo().getLongLongWidth(); 3433 Diag(Tok.getLocation(), 3434 getLangOpts().CPlusPlus 3435 ? Literal.isLong 3436 ? diag::warn_old_implicitly_unsigned_long_cxx 3437 : /*C++98 UB*/ diag:: 3438 ext_old_implicitly_unsigned_long_cxx 3439 : diag::warn_old_implicitly_unsigned_long) 3440 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0 3441 : /*will be ill-formed*/ 1); 3442 Ty = Context.UnsignedLongTy; 3443 } 3444 Width = LongSize; 3445 } 3446 } 3447 3448 // Check long long if needed. 3449 if (Ty.isNull()) { 3450 unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth(); 3451 3452 // Does it fit in a unsigned long long? 3453 if (ResultVal.isIntN(LongLongSize)) { 3454 // Does it fit in a signed long long? 3455 // To be compatible with MSVC, hex integer literals ending with the 3456 // LL or i64 suffix are always signed in Microsoft mode. 3457 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || 3458 (getLangOpts().MicrosoftExt && Literal.isLongLong))) 3459 Ty = Context.LongLongTy; 3460 else if (AllowUnsigned) 3461 Ty = Context.UnsignedLongLongTy; 3462 Width = LongLongSize; 3463 } 3464 } 3465 3466 // If we still couldn't decide a type, we probably have something that 3467 // does not fit in a signed long long, but has no U suffix. 3468 if (Ty.isNull()) { 3469 Diag(Tok.getLocation(), diag::ext_integer_literal_too_large_for_signed); 3470 Ty = Context.UnsignedLongLongTy; 3471 Width = Context.getTargetInfo().getLongLongWidth(); 3472 } 3473 3474 if (ResultVal.getBitWidth() != Width) 3475 ResultVal = ResultVal.trunc(Width); 3476 } 3477 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); 3478 } 3479 3480 // If this is an imaginary literal, create the ImaginaryLiteral wrapper. 3481 if (Literal.isImaginary) 3482 Res = new (Context) ImaginaryLiteral(Res, 3483 Context.getComplexType(Res->getType())); 3484 3485 return Res; 3486 } 3487 3488 ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) { 3489 assert(E && "ActOnParenExpr() missing expr"); 3490 return new (Context) ParenExpr(L, R, E); 3491 } 3492 3493 static bool CheckVecStepTraitOperandType(Sema &S, QualType T, 3494 SourceLocation Loc, 3495 SourceRange ArgRange) { 3496 // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in 3497 // scalar or vector data type argument..." 3498 // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic 3499 // type (C99 6.2.5p18) or void. 3500 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { 3501 S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type) 3502 << T << ArgRange; 3503 return true; 3504 } 3505 3506 assert((T->isVoidType() || !T->isIncompleteType()) && 3507 "Scalar types should always be complete"); 3508 return false; 3509 } 3510 3511 static bool CheckExtensionTraitOperandType(Sema &S, QualType T, 3512 SourceLocation Loc, 3513 SourceRange ArgRange, 3514 UnaryExprOrTypeTrait TraitKind) { 3515 // Invalid types must be hard errors for SFINAE in C++. 3516 if (S.LangOpts.CPlusPlus) 3517 return true; 3518 3519 // C99 6.5.3.4p1: 3520 if (T->isFunctionType() && 3521 (TraitKind == UETT_SizeOf || TraitKind == UETT_AlignOf)) { 3522 // sizeof(function)/alignof(function) is allowed as an extension. 3523 S.Diag(Loc, diag::ext_sizeof_alignof_function_type) 3524 << TraitKind << ArgRange; 3525 return false; 3526 } 3527 3528 // Allow sizeof(void)/alignof(void) as an extension, unless in OpenCL where 3529 // this is an error (OpenCL v1.1 s6.3.k) 3530 if (T->isVoidType()) { 3531 unsigned DiagID = S.LangOpts.OpenCL ? diag::err_opencl_sizeof_alignof_type 3532 : diag::ext_sizeof_alignof_void_type; 3533 S.Diag(Loc, DiagID) << TraitKind << ArgRange; 3534 return false; 3535 } 3536 3537 return true; 3538 } 3539 3540 static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T, 3541 SourceLocation Loc, 3542 SourceRange ArgRange, 3543 UnaryExprOrTypeTrait TraitKind) { 3544 // Reject sizeof(interface) and sizeof(interface<proto>) if the 3545 // runtime doesn't allow it. 3546 if (!S.LangOpts.ObjCRuntime.allowsSizeofAlignof() && T->isObjCObjectType()) { 3547 S.Diag(Loc, diag::err_sizeof_nonfragile_interface) 3548 << T << (TraitKind == UETT_SizeOf) 3549 << ArgRange; 3550 return true; 3551 } 3552 3553 return false; 3554 } 3555 3556 /// \brief Check whether E is a pointer from a decayed array type (the decayed 3557 /// pointer type is equal to T) and emit a warning if it is. 3558 static void warnOnSizeofOnArrayDecay(Sema &S, SourceLocation Loc, QualType T, 3559 Expr *E) { 3560 // Don't warn if the operation changed the type. 3561 if (T != E->getType()) 3562 return; 3563 3564 // Now look for array decays. 3565 ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E); 3566 if (!ICE || ICE->getCastKind() != CK_ArrayToPointerDecay) 3567 return; 3568 3569 S.Diag(Loc, diag::warn_sizeof_array_decay) << ICE->getSourceRange() 3570 << ICE->getType() 3571 << ICE->getSubExpr()->getType(); 3572 } 3573 3574 /// \brief Check the constraints on expression operands to unary type expression 3575 /// and type traits. 3576 /// 3577 /// Completes any types necessary and validates the constraints on the operand 3578 /// expression. The logic mostly mirrors the type-based overload, but may modify 3579 /// the expression as it completes the type for that expression through template 3580 /// instantiation, etc. 3581 bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E, 3582 UnaryExprOrTypeTrait ExprKind) { 3583 QualType ExprTy = E->getType(); 3584 assert(!ExprTy->isReferenceType()); 3585 3586 if (ExprKind == UETT_VecStep) 3587 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(), 3588 E->getSourceRange()); 3589 3590 // Whitelist some types as extensions 3591 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(), 3592 E->getSourceRange(), ExprKind)) 3593 return false; 3594 3595 // 'alignof' applied to an expression only requires the base element type of 3596 // the expression to be complete. 'sizeof' requires the expression's type to 3597 // be complete (and will attempt to complete it if it's an array of unknown 3598 // bound). 3599 if (ExprKind == UETT_AlignOf) { 3600 if (RequireCompleteType(E->getExprLoc(), 3601 Context.getBaseElementType(E->getType()), 3602 diag::err_sizeof_alignof_incomplete_type, ExprKind, 3603 E->getSourceRange())) 3604 return true; 3605 } else { 3606 if (RequireCompleteExprType(E, diag::err_sizeof_alignof_incomplete_type, 3607 ExprKind, E->getSourceRange())) 3608 return true; 3609 } 3610 3611 // Completing the expression's type may have changed it. 3612 ExprTy = E->getType(); 3613 assert(!ExprTy->isReferenceType()); 3614 3615 if (ExprTy->isFunctionType()) { 3616 Diag(E->getExprLoc(), diag::err_sizeof_alignof_function_type) 3617 << ExprKind << E->getSourceRange(); 3618 return true; 3619 } 3620 3621 // The operand for sizeof and alignof is in an unevaluated expression context, 3622 // so side effects could result in unintended consequences. 3623 if ((ExprKind == UETT_SizeOf || ExprKind == UETT_AlignOf) && 3624 ActiveTemplateInstantiations.empty() && E->HasSideEffects(Context, false)) 3625 Diag(E->getExprLoc(), diag::warn_side_effects_unevaluated_context); 3626 3627 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(), 3628 E->getSourceRange(), ExprKind)) 3629 return true; 3630 3631 if (ExprKind == UETT_SizeOf) { 3632 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) { 3633 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) { 3634 QualType OType = PVD->getOriginalType(); 3635 QualType Type = PVD->getType(); 3636 if (Type->isPointerType() && OType->isArrayType()) { 3637 Diag(E->getExprLoc(), diag::warn_sizeof_array_param) 3638 << Type << OType; 3639 Diag(PVD->getLocation(), diag::note_declared_at); 3640 } 3641 } 3642 } 3643 3644 // Warn on "sizeof(array op x)" and "sizeof(x op array)", where the array 3645 // decays into a pointer and returns an unintended result. This is most 3646 // likely a typo for "sizeof(array) op x". 3647 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E->IgnoreParens())) { 3648 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(), 3649 BO->getLHS()); 3650 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(), 3651 BO->getRHS()); 3652 } 3653 } 3654 3655 return false; 3656 } 3657 3658 /// \brief Check the constraints on operands to unary expression and type 3659 /// traits. 3660 /// 3661 /// This will complete any types necessary, and validate the various constraints 3662 /// on those operands. 3663 /// 3664 /// The UsualUnaryConversions() function is *not* called by this routine. 3665 /// C99 6.3.2.1p[2-4] all state: 3666 /// Except when it is the operand of the sizeof operator ... 3667 /// 3668 /// C++ [expr.sizeof]p4 3669 /// The lvalue-to-rvalue, array-to-pointer, and function-to-pointer 3670 /// standard conversions are not applied to the operand of sizeof. 3671 /// 3672 /// This policy is followed for all of the unary trait expressions. 3673 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, 3674 SourceLocation OpLoc, 3675 SourceRange ExprRange, 3676 UnaryExprOrTypeTrait ExprKind) { 3677 if (ExprType->isDependentType()) 3678 return false; 3679 3680 // C++ [expr.sizeof]p2: 3681 // When applied to a reference or a reference type, the result 3682 // is the size of the referenced type. 3683 // C++11 [expr.alignof]p3: 3684 // When alignof is applied to a reference type, the result 3685 // shall be the alignment of the referenced type. 3686 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>()) 3687 ExprType = Ref->getPointeeType(); 3688 3689 // C11 6.5.3.4/3, C++11 [expr.alignof]p3: 3690 // When alignof or _Alignof is applied to an array type, the result 3691 // is the alignment of the element type. 3692 if (ExprKind == UETT_AlignOf || ExprKind == UETT_OpenMPRequiredSimdAlign) 3693 ExprType = Context.getBaseElementType(ExprType); 3694 3695 if (ExprKind == UETT_VecStep) 3696 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange); 3697 3698 // Whitelist some types as extensions 3699 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange, 3700 ExprKind)) 3701 return false; 3702 3703 if (RequireCompleteType(OpLoc, ExprType, 3704 diag::err_sizeof_alignof_incomplete_type, 3705 ExprKind, ExprRange)) 3706 return true; 3707 3708 if (ExprType->isFunctionType()) { 3709 Diag(OpLoc, diag::err_sizeof_alignof_function_type) 3710 << ExprKind << ExprRange; 3711 return true; 3712 } 3713 3714 if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange, 3715 ExprKind)) 3716 return true; 3717 3718 return false; 3719 } 3720 3721 static bool CheckAlignOfExpr(Sema &S, Expr *E) { 3722 E = E->IgnoreParens(); 3723 3724 // Cannot know anything else if the expression is dependent. 3725 if (E->isTypeDependent()) 3726 return false; 3727 3728 if (E->getObjectKind() == OK_BitField) { 3729 S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) 3730 << 1 << E->getSourceRange(); 3731 return true; 3732 } 3733 3734 ValueDecl *D = nullptr; 3735 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 3736 D = DRE->getDecl(); 3737 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 3738 D = ME->getMemberDecl(); 3739 } 3740 3741 // If it's a field, require the containing struct to have a 3742 // complete definition so that we can compute the layout. 3743 // 3744 // This can happen in C++11 onwards, either by naming the member 3745 // in a way that is not transformed into a member access expression 3746 // (in an unevaluated operand, for instance), or by naming the member 3747 // in a trailing-return-type. 3748 // 3749 // For the record, since __alignof__ on expressions is a GCC 3750 // extension, GCC seems to permit this but always gives the 3751 // nonsensical answer 0. 3752 // 3753 // We don't really need the layout here --- we could instead just 3754 // directly check for all the appropriate alignment-lowing 3755 // attributes --- but that would require duplicating a lot of 3756 // logic that just isn't worth duplicating for such a marginal 3757 // use-case. 3758 if (FieldDecl *FD = dyn_cast_or_null<FieldDecl>(D)) { 3759 // Fast path this check, since we at least know the record has a 3760 // definition if we can find a member of it. 3761 if (!FD->getParent()->isCompleteDefinition()) { 3762 S.Diag(E->getExprLoc(), diag::err_alignof_member_of_incomplete_type) 3763 << E->getSourceRange(); 3764 return true; 3765 } 3766 3767 // Otherwise, if it's a field, and the field doesn't have 3768 // reference type, then it must have a complete type (or be a 3769 // flexible array member, which we explicitly want to 3770 // white-list anyway), which makes the following checks trivial. 3771 if (!FD->getType()->isReferenceType()) 3772 return false; 3773 } 3774 3775 return S.CheckUnaryExprOrTypeTraitOperand(E, UETT_AlignOf); 3776 } 3777 3778 bool Sema::CheckVecStepExpr(Expr *E) { 3779 E = E->IgnoreParens(); 3780 3781 // Cannot know anything else if the expression is dependent. 3782 if (E->isTypeDependent()) 3783 return false; 3784 3785 return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep); 3786 } 3787 3788 /// \brief Build a sizeof or alignof expression given a type operand. 3789 ExprResult 3790 Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo, 3791 SourceLocation OpLoc, 3792 UnaryExprOrTypeTrait ExprKind, 3793 SourceRange R) { 3794 if (!TInfo) 3795 return ExprError(); 3796 3797 QualType T = TInfo->getType(); 3798 3799 if (!T->isDependentType() && 3800 CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind)) 3801 return ExprError(); 3802 3803 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 3804 return new (Context) UnaryExprOrTypeTraitExpr( 3805 ExprKind, TInfo, Context.getSizeType(), OpLoc, R.getEnd()); 3806 } 3807 3808 /// \brief Build a sizeof or alignof expression given an expression 3809 /// operand. 3810 ExprResult 3811 Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc, 3812 UnaryExprOrTypeTrait ExprKind) { 3813 ExprResult PE = CheckPlaceholderExpr(E); 3814 if (PE.isInvalid()) 3815 return ExprError(); 3816 3817 E = PE.get(); 3818 3819 // Verify that the operand is valid. 3820 bool isInvalid = false; 3821 if (E->isTypeDependent()) { 3822 // Delay type-checking for type-dependent expressions. 3823 } else if (ExprKind == UETT_AlignOf) { 3824 isInvalid = CheckAlignOfExpr(*this, E); 3825 } else if (ExprKind == UETT_VecStep) { 3826 isInvalid = CheckVecStepExpr(E); 3827 } else if (ExprKind == UETT_OpenMPRequiredSimdAlign) { 3828 Diag(E->getExprLoc(), diag::err_openmp_default_simd_align_expr); 3829 isInvalid = true; 3830 } else if (E->refersToBitField()) { // C99 6.5.3.4p1. 3831 Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) << 0; 3832 isInvalid = true; 3833 } else { 3834 isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf); 3835 } 3836 3837 if (isInvalid) 3838 return ExprError(); 3839 3840 if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) { 3841 PE = TransformToPotentiallyEvaluated(E); 3842 if (PE.isInvalid()) return ExprError(); 3843 E = PE.get(); 3844 } 3845 3846 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 3847 return new (Context) UnaryExprOrTypeTraitExpr( 3848 ExprKind, E, Context.getSizeType(), OpLoc, E->getSourceRange().getEnd()); 3849 } 3850 3851 /// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c 3852 /// expr and the same for @c alignof and @c __alignof 3853 /// Note that the ArgRange is invalid if isType is false. 3854 ExprResult 3855 Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc, 3856 UnaryExprOrTypeTrait ExprKind, bool IsType, 3857 void *TyOrEx, const SourceRange &ArgRange) { 3858 // If error parsing type, ignore. 3859 if (!TyOrEx) return ExprError(); 3860 3861 if (IsType) { 3862 TypeSourceInfo *TInfo; 3863 (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo); 3864 return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange); 3865 } 3866 3867 Expr *ArgEx = (Expr *)TyOrEx; 3868 ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind); 3869 return Result; 3870 } 3871 3872 static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc, 3873 bool IsReal) { 3874 if (V.get()->isTypeDependent()) 3875 return S.Context.DependentTy; 3876 3877 // _Real and _Imag are only l-values for normal l-values. 3878 if (V.get()->getObjectKind() != OK_Ordinary) { 3879 V = S.DefaultLvalueConversion(V.get()); 3880 if (V.isInvalid()) 3881 return QualType(); 3882 } 3883 3884 // These operators return the element type of a complex type. 3885 if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>()) 3886 return CT->getElementType(); 3887 3888 // Otherwise they pass through real integer and floating point types here. 3889 if (V.get()->getType()->isArithmeticType()) 3890 return V.get()->getType(); 3891 3892 // Test for placeholders. 3893 ExprResult PR = S.CheckPlaceholderExpr(V.get()); 3894 if (PR.isInvalid()) return QualType(); 3895 if (PR.get() != V.get()) { 3896 V = PR; 3897 return CheckRealImagOperand(S, V, Loc, IsReal); 3898 } 3899 3900 // Reject anything else. 3901 S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType() 3902 << (IsReal ? "__real" : "__imag"); 3903 return QualType(); 3904 } 3905 3906 3907 3908 ExprResult 3909 Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, 3910 tok::TokenKind Kind, Expr *Input) { 3911 UnaryOperatorKind Opc; 3912 switch (Kind) { 3913 default: llvm_unreachable("Unknown unary op!"); 3914 case tok::plusplus: Opc = UO_PostInc; break; 3915 case tok::minusminus: Opc = UO_PostDec; break; 3916 } 3917 3918 // Since this might is a postfix expression, get rid of ParenListExprs. 3919 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input); 3920 if (Result.isInvalid()) return ExprError(); 3921 Input = Result.get(); 3922 3923 return BuildUnaryOp(S, OpLoc, Opc, Input); 3924 } 3925 3926 /// \brief Diagnose if arithmetic on the given ObjC pointer is illegal. 3927 /// 3928 /// \return true on error 3929 static bool checkArithmeticOnObjCPointer(Sema &S, 3930 SourceLocation opLoc, 3931 Expr *op) { 3932 assert(op->getType()->isObjCObjectPointerType()); 3933 if (S.LangOpts.ObjCRuntime.allowsPointerArithmetic() && 3934 !S.LangOpts.ObjCSubscriptingLegacyRuntime) 3935 return false; 3936 3937 S.Diag(opLoc, diag::err_arithmetic_nonfragile_interface) 3938 << op->getType()->castAs<ObjCObjectPointerType>()->getPointeeType() 3939 << op->getSourceRange(); 3940 return true; 3941 } 3942 3943 ExprResult 3944 Sema::ActOnArraySubscriptExpr(Scope *S, Expr *base, SourceLocation lbLoc, 3945 Expr *idx, SourceLocation rbLoc) { 3946 // Since this might be a postfix expression, get rid of ParenListExprs. 3947 if (isa<ParenListExpr>(base)) { 3948 ExprResult result = MaybeConvertParenListExprToParenExpr(S, base); 3949 if (result.isInvalid()) return ExprError(); 3950 base = result.get(); 3951 } 3952 3953 // Handle any non-overload placeholder types in the base and index 3954 // expressions. We can't handle overloads here because the other 3955 // operand might be an overloadable type, in which case the overload 3956 // resolution for the operator overload should get the first crack 3957 // at the overload. 3958 if (base->getType()->isNonOverloadPlaceholderType()) { 3959 ExprResult result = CheckPlaceholderExpr(base); 3960 if (result.isInvalid()) return ExprError(); 3961 base = result.get(); 3962 } 3963 if (idx->getType()->isNonOverloadPlaceholderType()) { 3964 ExprResult result = CheckPlaceholderExpr(idx); 3965 if (result.isInvalid()) return ExprError(); 3966 idx = result.get(); 3967 } 3968 3969 // Build an unanalyzed expression if either operand is type-dependent. 3970 if (getLangOpts().CPlusPlus && 3971 (base->isTypeDependent() || idx->isTypeDependent())) { 3972 return new (Context) ArraySubscriptExpr(base, idx, Context.DependentTy, 3973 VK_LValue, OK_Ordinary, rbLoc); 3974 } 3975 3976 // Use C++ overloaded-operator rules if either operand has record 3977 // type. The spec says to do this if either type is *overloadable*, 3978 // but enum types can't declare subscript operators or conversion 3979 // operators, so there's nothing interesting for overload resolution 3980 // to do if there aren't any record types involved. 3981 // 3982 // ObjC pointers have their own subscripting logic that is not tied 3983 // to overload resolution and so should not take this path. 3984 if (getLangOpts().CPlusPlus && 3985 (base->getType()->isRecordType() || 3986 (!base->getType()->isObjCObjectPointerType() && 3987 idx->getType()->isRecordType()))) { 3988 return CreateOverloadedArraySubscriptExpr(lbLoc, rbLoc, base, idx); 3989 } 3990 3991 return CreateBuiltinArraySubscriptExpr(base, lbLoc, idx, rbLoc); 3992 } 3993 3994 ExprResult 3995 Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc, 3996 Expr *Idx, SourceLocation RLoc) { 3997 Expr *LHSExp = Base; 3998 Expr *RHSExp = Idx; 3999 4000 // Perform default conversions. 4001 if (!LHSExp->getType()->getAs<VectorType>()) { 4002 ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp); 4003 if (Result.isInvalid()) 4004 return ExprError(); 4005 LHSExp = Result.get(); 4006 } 4007 ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp); 4008 if (Result.isInvalid()) 4009 return ExprError(); 4010 RHSExp = Result.get(); 4011 4012 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); 4013 ExprValueKind VK = VK_LValue; 4014 ExprObjectKind OK = OK_Ordinary; 4015 4016 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent 4017 // to the expression *((e1)+(e2)). This means the array "Base" may actually be 4018 // in the subscript position. As a result, we need to derive the array base 4019 // and index from the expression types. 4020 Expr *BaseExpr, *IndexExpr; 4021 QualType ResultType; 4022 if (LHSTy->isDependentType() || RHSTy->isDependentType()) { 4023 BaseExpr = LHSExp; 4024 IndexExpr = RHSExp; 4025 ResultType = Context.DependentTy; 4026 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { 4027 BaseExpr = LHSExp; 4028 IndexExpr = RHSExp; 4029 ResultType = PTy->getPointeeType(); 4030 } else if (const ObjCObjectPointerType *PTy = 4031 LHSTy->getAs<ObjCObjectPointerType>()) { 4032 BaseExpr = LHSExp; 4033 IndexExpr = RHSExp; 4034 4035 // Use custom logic if this should be the pseudo-object subscript 4036 // expression. 4037 if (!LangOpts.isSubscriptPointerArithmetic()) 4038 return BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, nullptr, 4039 nullptr); 4040 4041 ResultType = PTy->getPointeeType(); 4042 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { 4043 // Handle the uncommon case of "123[Ptr]". 4044 BaseExpr = RHSExp; 4045 IndexExpr = LHSExp; 4046 ResultType = PTy->getPointeeType(); 4047 } else if (const ObjCObjectPointerType *PTy = 4048 RHSTy->getAs<ObjCObjectPointerType>()) { 4049 // Handle the uncommon case of "123[Ptr]". 4050 BaseExpr = RHSExp; 4051 IndexExpr = LHSExp; 4052 ResultType = PTy->getPointeeType(); 4053 if (!LangOpts.isSubscriptPointerArithmetic()) { 4054 Diag(LLoc, diag::err_subscript_nonfragile_interface) 4055 << ResultType << BaseExpr->getSourceRange(); 4056 return ExprError(); 4057 } 4058 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { 4059 BaseExpr = LHSExp; // vectors: V[123] 4060 IndexExpr = RHSExp; 4061 VK = LHSExp->getValueKind(); 4062 if (VK != VK_RValue) 4063 OK = OK_VectorComponent; 4064 4065 // FIXME: need to deal with const... 4066 ResultType = VTy->getElementType(); 4067 } else if (LHSTy->isArrayType()) { 4068 // If we see an array that wasn't promoted by 4069 // DefaultFunctionArrayLvalueConversion, it must be an array that 4070 // wasn't promoted because of the C90 rule that doesn't 4071 // allow promoting non-lvalue arrays. Warn, then 4072 // force the promotion here. 4073 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << 4074 LHSExp->getSourceRange(); 4075 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), 4076 CK_ArrayToPointerDecay).get(); 4077 LHSTy = LHSExp->getType(); 4078 4079 BaseExpr = LHSExp; 4080 IndexExpr = RHSExp; 4081 ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); 4082 } else if (RHSTy->isArrayType()) { 4083 // Same as previous, except for 123[f().a] case 4084 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << 4085 RHSExp->getSourceRange(); 4086 RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), 4087 CK_ArrayToPointerDecay).get(); 4088 RHSTy = RHSExp->getType(); 4089 4090 BaseExpr = RHSExp; 4091 IndexExpr = LHSExp; 4092 ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); 4093 } else { 4094 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) 4095 << LHSExp->getSourceRange() << RHSExp->getSourceRange()); 4096 } 4097 // C99 6.5.2.1p1 4098 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) 4099 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) 4100 << IndexExpr->getSourceRange()); 4101 4102 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || 4103 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) 4104 && !IndexExpr->isTypeDependent()) 4105 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); 4106 4107 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, 4108 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object 4109 // type. Note that Functions are not objects, and that (in C99 parlance) 4110 // incomplete types are not object types. 4111 if (ResultType->isFunctionType()) { 4112 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) 4113 << ResultType << BaseExpr->getSourceRange(); 4114 return ExprError(); 4115 } 4116 4117 if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) { 4118 // GNU extension: subscripting on pointer to void 4119 Diag(LLoc, diag::ext_gnu_subscript_void_type) 4120 << BaseExpr->getSourceRange(); 4121 4122 // C forbids expressions of unqualified void type from being l-values. 4123 // See IsCForbiddenLValueType. 4124 if (!ResultType.hasQualifiers()) VK = VK_RValue; 4125 } else if (!ResultType->isDependentType() && 4126 RequireCompleteType(LLoc, ResultType, 4127 diag::err_subscript_incomplete_type, BaseExpr)) 4128 return ExprError(); 4129 4130 assert(VK == VK_RValue || LangOpts.CPlusPlus || 4131 !ResultType.isCForbiddenLValueType()); 4132 4133 return new (Context) 4134 ArraySubscriptExpr(LHSExp, RHSExp, ResultType, VK, OK, RLoc); 4135 } 4136 4137 ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, 4138 FunctionDecl *FD, 4139 ParmVarDecl *Param) { 4140 if (Param->hasUnparsedDefaultArg()) { 4141 Diag(CallLoc, 4142 diag::err_use_of_default_argument_to_function_declared_later) << 4143 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); 4144 Diag(UnparsedDefaultArgLocs[Param], 4145 diag::note_default_argument_declared_here); 4146 return ExprError(); 4147 } 4148 4149 if (Param->hasUninstantiatedDefaultArg()) { 4150 Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); 4151 4152 EnterExpressionEvaluationContext EvalContext(*this, PotentiallyEvaluated, 4153 Param); 4154 4155 // Instantiate the expression. 4156 MultiLevelTemplateArgumentList MutiLevelArgList 4157 = getTemplateInstantiationArgs(FD, nullptr, /*RelativeToPrimary=*/true); 4158 4159 InstantiatingTemplate Inst(*this, CallLoc, Param, 4160 MutiLevelArgList.getInnermost()); 4161 if (Inst.isInvalid()) 4162 return ExprError(); 4163 4164 ExprResult Result; 4165 { 4166 // C++ [dcl.fct.default]p5: 4167 // The names in the [default argument] expression are bound, and 4168 // the semantic constraints are checked, at the point where the 4169 // default argument expression appears. 4170 ContextRAII SavedContext(*this, FD); 4171 LocalInstantiationScope Local(*this); 4172 Result = SubstExpr(UninstExpr, MutiLevelArgList); 4173 } 4174 if (Result.isInvalid()) 4175 return ExprError(); 4176 4177 // Check the expression as an initializer for the parameter. 4178 InitializedEntity Entity 4179 = InitializedEntity::InitializeParameter(Context, Param); 4180 InitializationKind Kind 4181 = InitializationKind::CreateCopy(Param->getLocation(), 4182 /*FIXME:EqualLoc*/UninstExpr->getLocStart()); 4183 Expr *ResultE = Result.getAs<Expr>(); 4184 4185 InitializationSequence InitSeq(*this, Entity, Kind, ResultE); 4186 Result = InitSeq.Perform(*this, Entity, Kind, ResultE); 4187 if (Result.isInvalid()) 4188 return ExprError(); 4189 4190 Expr *Arg = Result.getAs<Expr>(); 4191 CheckCompletedExpr(Arg, Param->getOuterLocStart()); 4192 // Build the default argument expression. 4193 return CXXDefaultArgExpr::Create(Context, CallLoc, Param, Arg); 4194 } 4195 4196 // If the default expression creates temporaries, we need to 4197 // push them to the current stack of expression temporaries so they'll 4198 // be properly destroyed. 4199 // FIXME: We should really be rebuilding the default argument with new 4200 // bound temporaries; see the comment in PR5810. 4201 // We don't need to do that with block decls, though, because 4202 // blocks in default argument expression can never capture anything. 4203 if (isa<ExprWithCleanups>(Param->getInit())) { 4204 // Set the "needs cleanups" bit regardless of whether there are 4205 // any explicit objects. 4206 ExprNeedsCleanups = true; 4207 4208 // Append all the objects to the cleanup list. Right now, this 4209 // should always be a no-op, because blocks in default argument 4210 // expressions should never be able to capture anything. 4211 assert(!cast<ExprWithCleanups>(Param->getInit())->getNumObjects() && 4212 "default argument expression has capturing blocks?"); 4213 } 4214 4215 // We already type-checked the argument, so we know it works. 4216 // Just mark all of the declarations in this potentially-evaluated expression 4217 // as being "referenced". 4218 MarkDeclarationsReferencedInExpr(Param->getDefaultArg(), 4219 /*SkipLocalVariables=*/true); 4220 return CXXDefaultArgExpr::Create(Context, CallLoc, Param); 4221 } 4222 4223 4224 Sema::VariadicCallType 4225 Sema::getVariadicCallType(FunctionDecl *FDecl, const FunctionProtoType *Proto, 4226 Expr *Fn) { 4227 if (Proto && Proto->isVariadic()) { 4228 if (dyn_cast_or_null<CXXConstructorDecl>(FDecl)) 4229 return VariadicConstructor; 4230 else if (Fn && Fn->getType()->isBlockPointerType()) 4231 return VariadicBlock; 4232 else if (FDecl) { 4233 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) 4234 if (Method->isInstance()) 4235 return VariadicMethod; 4236 } else if (Fn && Fn->getType() == Context.BoundMemberTy) 4237 return VariadicMethod; 4238 return VariadicFunction; 4239 } 4240 return VariadicDoesNotApply; 4241 } 4242 4243 namespace { 4244 class FunctionCallCCC : public FunctionCallFilterCCC { 4245 public: 4246 FunctionCallCCC(Sema &SemaRef, const IdentifierInfo *FuncName, 4247 unsigned NumArgs, MemberExpr *ME) 4248 : FunctionCallFilterCCC(SemaRef, NumArgs, false, ME), 4249 FunctionName(FuncName) {} 4250 4251 bool ValidateCandidate(const TypoCorrection &candidate) override { 4252 if (!candidate.getCorrectionSpecifier() || 4253 candidate.getCorrectionAsIdentifierInfo() != FunctionName) { 4254 return false; 4255 } 4256 4257 return FunctionCallFilterCCC::ValidateCandidate(candidate); 4258 } 4259 4260 private: 4261 const IdentifierInfo *const FunctionName; 4262 }; 4263 } 4264 4265 static TypoCorrection TryTypoCorrectionForCall(Sema &S, Expr *Fn, 4266 FunctionDecl *FDecl, 4267 ArrayRef<Expr *> Args) { 4268 MemberExpr *ME = dyn_cast<MemberExpr>(Fn); 4269 DeclarationName FuncName = FDecl->getDeclName(); 4270 SourceLocation NameLoc = ME ? ME->getMemberLoc() : Fn->getLocStart(); 4271 4272 if (TypoCorrection Corrected = S.CorrectTypo( 4273 DeclarationNameInfo(FuncName, NameLoc), Sema::LookupOrdinaryName, 4274 S.getScopeForContext(S.CurContext), nullptr, 4275 llvm::make_unique<FunctionCallCCC>(S, FuncName.getAsIdentifierInfo(), 4276 Args.size(), ME), 4277 Sema::CTK_ErrorRecovery)) { 4278 if (NamedDecl *ND = Corrected.getCorrectionDecl()) { 4279 if (Corrected.isOverloaded()) { 4280 OverloadCandidateSet OCS(NameLoc, OverloadCandidateSet::CSK_Normal); 4281 OverloadCandidateSet::iterator Best; 4282 for (TypoCorrection::decl_iterator CD = Corrected.begin(), 4283 CDEnd = Corrected.end(); 4284 CD != CDEnd; ++CD) { 4285 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD)) 4286 S.AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), Args, 4287 OCS); 4288 } 4289 switch (OCS.BestViableFunction(S, NameLoc, Best)) { 4290 case OR_Success: 4291 ND = Best->Function; 4292 Corrected.setCorrectionDecl(ND); 4293 break; 4294 default: 4295 break; 4296 } 4297 } 4298 if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) { 4299 return Corrected; 4300 } 4301 } 4302 } 4303 return TypoCorrection(); 4304 } 4305 4306 /// ConvertArgumentsForCall - Converts the arguments specified in 4307 /// Args/NumArgs to the parameter types of the function FDecl with 4308 /// function prototype Proto. Call is the call expression itself, and 4309 /// Fn is the function expression. For a C++ member function, this 4310 /// routine does not attempt to convert the object argument. Returns 4311 /// true if the call is ill-formed. 4312 bool 4313 Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, 4314 FunctionDecl *FDecl, 4315 const FunctionProtoType *Proto, 4316 ArrayRef<Expr *> Args, 4317 SourceLocation RParenLoc, 4318 bool IsExecConfig) { 4319 // Bail out early if calling a builtin with custom typechecking. 4320 if (FDecl) 4321 if (unsigned ID = FDecl->getBuiltinID()) 4322 if (Context.BuiltinInfo.hasCustomTypechecking(ID)) 4323 return false; 4324 4325 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by 4326 // assignment, to the types of the corresponding parameter, ... 4327 unsigned NumParams = Proto->getNumParams(); 4328 bool Invalid = false; 4329 unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumParams; 4330 unsigned FnKind = Fn->getType()->isBlockPointerType() 4331 ? 1 /* block */ 4332 : (IsExecConfig ? 3 /* kernel function (exec config) */ 4333 : 0 /* function */); 4334 4335 // If too few arguments are available (and we don't have default 4336 // arguments for the remaining parameters), don't make the call. 4337 if (Args.size() < NumParams) { 4338 if (Args.size() < MinArgs) { 4339 TypoCorrection TC; 4340 if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) { 4341 unsigned diag_id = 4342 MinArgs == NumParams && !Proto->isVariadic() 4343 ? diag::err_typecheck_call_too_few_args_suggest 4344 : diag::err_typecheck_call_too_few_args_at_least_suggest; 4345 diagnoseTypo(TC, PDiag(diag_id) << FnKind << MinArgs 4346 << static_cast<unsigned>(Args.size()) 4347 << TC.getCorrectionRange()); 4348 } else if (MinArgs == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName()) 4349 Diag(RParenLoc, 4350 MinArgs == NumParams && !Proto->isVariadic() 4351 ? diag::err_typecheck_call_too_few_args_one 4352 : diag::err_typecheck_call_too_few_args_at_least_one) 4353 << FnKind << FDecl->getParamDecl(0) << Fn->getSourceRange(); 4354 else 4355 Diag(RParenLoc, MinArgs == NumParams && !Proto->isVariadic() 4356 ? diag::err_typecheck_call_too_few_args 4357 : diag::err_typecheck_call_too_few_args_at_least) 4358 << FnKind << MinArgs << static_cast<unsigned>(Args.size()) 4359 << Fn->getSourceRange(); 4360 4361 // Emit the location of the prototype. 4362 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig) 4363 Diag(FDecl->getLocStart(), diag::note_callee_decl) 4364 << FDecl; 4365 4366 return true; 4367 } 4368 Call->setNumArgs(Context, NumParams); 4369 } 4370 4371 // If too many are passed and not variadic, error on the extras and drop 4372 // them. 4373 if (Args.size() > NumParams) { 4374 if (!Proto->isVariadic()) { 4375 TypoCorrection TC; 4376 if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) { 4377 unsigned diag_id = 4378 MinArgs == NumParams && !Proto->isVariadic() 4379 ? diag::err_typecheck_call_too_many_args_suggest 4380 : diag::err_typecheck_call_too_many_args_at_most_suggest; 4381 diagnoseTypo(TC, PDiag(diag_id) << FnKind << NumParams 4382 << static_cast<unsigned>(Args.size()) 4383 << TC.getCorrectionRange()); 4384 } else if (NumParams == 1 && FDecl && 4385 FDecl->getParamDecl(0)->getDeclName()) 4386 Diag(Args[NumParams]->getLocStart(), 4387 MinArgs == NumParams 4388 ? diag::err_typecheck_call_too_many_args_one 4389 : diag::err_typecheck_call_too_many_args_at_most_one) 4390 << FnKind << FDecl->getParamDecl(0) 4391 << static_cast<unsigned>(Args.size()) << Fn->getSourceRange() 4392 << SourceRange(Args[NumParams]->getLocStart(), 4393 Args.back()->getLocEnd()); 4394 else 4395 Diag(Args[NumParams]->getLocStart(), 4396 MinArgs == NumParams 4397 ? diag::err_typecheck_call_too_many_args 4398 : diag::err_typecheck_call_too_many_args_at_most) 4399 << FnKind << NumParams << static_cast<unsigned>(Args.size()) 4400 << Fn->getSourceRange() 4401 << SourceRange(Args[NumParams]->getLocStart(), 4402 Args.back()->getLocEnd()); 4403 4404 // Emit the location of the prototype. 4405 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig) 4406 Diag(FDecl->getLocStart(), diag::note_callee_decl) 4407 << FDecl; 4408 4409 // This deletes the extra arguments. 4410 Call->setNumArgs(Context, NumParams); 4411 return true; 4412 } 4413 } 4414 SmallVector<Expr *, 8> AllArgs; 4415 VariadicCallType CallType = getVariadicCallType(FDecl, Proto, Fn); 4416 4417 Invalid = GatherArgumentsForCall(Call->getLocStart(), FDecl, 4418 Proto, 0, Args, AllArgs, CallType); 4419 if (Invalid) 4420 return true; 4421 unsigned TotalNumArgs = AllArgs.size(); 4422 for (unsigned i = 0; i < TotalNumArgs; ++i) 4423 Call->setArg(i, AllArgs[i]); 4424 4425 return false; 4426 } 4427 4428 bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl, 4429 const FunctionProtoType *Proto, 4430 unsigned FirstParam, ArrayRef<Expr *> Args, 4431 SmallVectorImpl<Expr *> &AllArgs, 4432 VariadicCallType CallType, bool AllowExplicit, 4433 bool IsListInitialization) { 4434 unsigned NumParams = Proto->getNumParams(); 4435 bool Invalid = false; 4436 unsigned ArgIx = 0; 4437 // Continue to check argument types (even if we have too few/many args). 4438 for (unsigned i = FirstParam; i < NumParams; i++) { 4439 QualType ProtoArgType = Proto->getParamType(i); 4440 4441 Expr *Arg; 4442 ParmVarDecl *Param = FDecl ? FDecl->getParamDecl(i) : nullptr; 4443 if (ArgIx < Args.size()) { 4444 Arg = Args[ArgIx++]; 4445 4446 if (RequireCompleteType(Arg->getLocStart(), 4447 ProtoArgType, 4448 diag::err_call_incomplete_argument, Arg)) 4449 return true; 4450 4451 // Strip the unbridged-cast placeholder expression off, if applicable. 4452 bool CFAudited = false; 4453 if (Arg->getType() == Context.ARCUnbridgedCastTy && 4454 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && 4455 (!Param || !Param->hasAttr<CFConsumedAttr>())) 4456 Arg = stripARCUnbridgedCast(Arg); 4457 else if (getLangOpts().ObjCAutoRefCount && 4458 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && 4459 (!Param || !Param->hasAttr<CFConsumedAttr>())) 4460 CFAudited = true; 4461 4462 InitializedEntity Entity = 4463 Param ? InitializedEntity::InitializeParameter(Context, Param, 4464 ProtoArgType) 4465 : InitializedEntity::InitializeParameter( 4466 Context, ProtoArgType, Proto->isParamConsumed(i)); 4467 4468 // Remember that parameter belongs to a CF audited API. 4469 if (CFAudited) 4470 Entity.setParameterCFAudited(); 4471 4472 ExprResult ArgE = PerformCopyInitialization( 4473 Entity, SourceLocation(), Arg, IsListInitialization, AllowExplicit); 4474 if (ArgE.isInvalid()) 4475 return true; 4476 4477 Arg = ArgE.getAs<Expr>(); 4478 } else { 4479 assert(Param && "can't use default arguments without a known callee"); 4480 4481 ExprResult ArgExpr = 4482 BuildCXXDefaultArgExpr(CallLoc, FDecl, Param); 4483 if (ArgExpr.isInvalid()) 4484 return true; 4485 4486 Arg = ArgExpr.getAs<Expr>(); 4487 } 4488 4489 // Check for array bounds violations for each argument to the call. This 4490 // check only triggers warnings when the argument isn't a more complex Expr 4491 // with its own checking, such as a BinaryOperator. 4492 CheckArrayAccess(Arg); 4493 4494 // Check for violations of C99 static array rules (C99 6.7.5.3p7). 4495 CheckStaticArrayArgument(CallLoc, Param, Arg); 4496 4497 AllArgs.push_back(Arg); 4498 } 4499 4500 // If this is a variadic call, handle args passed through "...". 4501 if (CallType != VariadicDoesNotApply) { 4502 // Assume that extern "C" functions with variadic arguments that 4503 // return __unknown_anytype aren't *really* variadic. 4504 if (Proto->getReturnType() == Context.UnknownAnyTy && FDecl && 4505 FDecl->isExternC()) { 4506 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) { 4507 QualType paramType; // ignored 4508 ExprResult arg = checkUnknownAnyArg(CallLoc, Args[i], paramType); 4509 Invalid |= arg.isInvalid(); 4510 AllArgs.push_back(arg.get()); 4511 } 4512 4513 // Otherwise do argument promotion, (C99 6.5.2.2p7). 4514 } else { 4515 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) { 4516 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], CallType, 4517 FDecl); 4518 Invalid |= Arg.isInvalid(); 4519 AllArgs.push_back(Arg.get()); 4520 } 4521 } 4522 4523 // Check for array bounds violations. 4524 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) 4525 CheckArrayAccess(Args[i]); 4526 } 4527 return Invalid; 4528 } 4529 4530 static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) { 4531 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc(); 4532 if (DecayedTypeLoc DTL = TL.getAs<DecayedTypeLoc>()) 4533 TL = DTL.getOriginalLoc(); 4534 if (ArrayTypeLoc ATL = TL.getAs<ArrayTypeLoc>()) 4535 S.Diag(PVD->getLocation(), diag::note_callee_static_array) 4536 << ATL.getLocalSourceRange(); 4537 } 4538 4539 /// CheckStaticArrayArgument - If the given argument corresponds to a static 4540 /// array parameter, check that it is non-null, and that if it is formed by 4541 /// array-to-pointer decay, the underlying array is sufficiently large. 4542 /// 4543 /// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the 4544 /// array type derivation, then for each call to the function, the value of the 4545 /// corresponding actual argument shall provide access to the first element of 4546 /// an array with at least as many elements as specified by the size expression. 4547 void 4548 Sema::CheckStaticArrayArgument(SourceLocation CallLoc, 4549 ParmVarDecl *Param, 4550 const Expr *ArgExpr) { 4551 // Static array parameters are not supported in C++. 4552 if (!Param || getLangOpts().CPlusPlus) 4553 return; 4554 4555 QualType OrigTy = Param->getOriginalType(); 4556 4557 const ArrayType *AT = Context.getAsArrayType(OrigTy); 4558 if (!AT || AT->getSizeModifier() != ArrayType::Static) 4559 return; 4560 4561 if (ArgExpr->isNullPointerConstant(Context, 4562 Expr::NPC_NeverValueDependent)) { 4563 Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange(); 4564 DiagnoseCalleeStaticArrayParam(*this, Param); 4565 return; 4566 } 4567 4568 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); 4569 if (!CAT) 4570 return; 4571 4572 const ConstantArrayType *ArgCAT = 4573 Context.getAsConstantArrayType(ArgExpr->IgnoreParenImpCasts()->getType()); 4574 if (!ArgCAT) 4575 return; 4576 4577 if (ArgCAT->getSize().ult(CAT->getSize())) { 4578 Diag(CallLoc, diag::warn_static_array_too_small) 4579 << ArgExpr->getSourceRange() 4580 << (unsigned) ArgCAT->getSize().getZExtValue() 4581 << (unsigned) CAT->getSize().getZExtValue(); 4582 DiagnoseCalleeStaticArrayParam(*this, Param); 4583 } 4584 } 4585 4586 /// Given a function expression of unknown-any type, try to rebuild it 4587 /// to have a function type. 4588 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn); 4589 4590 /// Is the given type a placeholder that we need to lower out 4591 /// immediately during argument processing? 4592 static bool isPlaceholderToRemoveAsArg(QualType type) { 4593 // Placeholders are never sugared. 4594 const BuiltinType *placeholder = dyn_cast<BuiltinType>(type); 4595 if (!placeholder) return false; 4596 4597 switch (placeholder->getKind()) { 4598 // Ignore all the non-placeholder types. 4599 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID) 4600 #define BUILTIN_TYPE(ID, SINGLETON_ID) case BuiltinType::ID: 4601 #include "clang/AST/BuiltinTypes.def" 4602 return false; 4603 4604 // We cannot lower out overload sets; they might validly be resolved 4605 // by the call machinery. 4606 case BuiltinType::Overload: 4607 return false; 4608 4609 // Unbridged casts in ARC can be handled in some call positions and 4610 // should be left in place. 4611 case BuiltinType::ARCUnbridgedCast: 4612 return false; 4613 4614 // Pseudo-objects should be converted as soon as possible. 4615 case BuiltinType::PseudoObject: 4616 return true; 4617 4618 // The debugger mode could theoretically but currently does not try 4619 // to resolve unknown-typed arguments based on known parameter types. 4620 case BuiltinType::UnknownAny: 4621 return true; 4622 4623 // These are always invalid as call arguments and should be reported. 4624 case BuiltinType::BoundMember: 4625 case BuiltinType::BuiltinFn: 4626 return true; 4627 } 4628 llvm_unreachable("bad builtin type kind"); 4629 } 4630 4631 /// Check an argument list for placeholders that we won't try to 4632 /// handle later. 4633 static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args) { 4634 // Apply this processing to all the arguments at once instead of 4635 // dying at the first failure. 4636 bool hasInvalid = false; 4637 for (size_t i = 0, e = args.size(); i != e; i++) { 4638 if (isPlaceholderToRemoveAsArg(args[i]->getType())) { 4639 ExprResult result = S.CheckPlaceholderExpr(args[i]); 4640 if (result.isInvalid()) hasInvalid = true; 4641 else args[i] = result.get(); 4642 } else if (hasInvalid) { 4643 (void)S.CorrectDelayedTyposInExpr(args[i]); 4644 } 4645 } 4646 return hasInvalid; 4647 } 4648 4649 /// If a builtin function has a pointer argument with no explicit address 4650 /// space, than it should be able to accept a pointer to any address 4651 /// space as input. In order to do this, we need to replace the 4652 /// standard builtin declaration with one that uses the same address space 4653 /// as the call. 4654 /// 4655 /// \returns nullptr If this builtin is not a candidate for a rewrite i.e. 4656 /// it does not contain any pointer arguments without 4657 /// an address space qualifer. Otherwise the rewritten 4658 /// FunctionDecl is returned. 4659 /// TODO: Handle pointer return types. 4660 static FunctionDecl *rewriteBuiltinFunctionDecl(Sema *Sema, ASTContext &Context, 4661 const FunctionDecl *FDecl, 4662 MultiExprArg ArgExprs) { 4663 4664 QualType DeclType = FDecl->getType(); 4665 const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(DeclType); 4666 4667 if (!Context.BuiltinInfo.hasPtrArgsOrResult(FDecl->getBuiltinID()) || 4668 !FT || FT->isVariadic() || ArgExprs.size() != FT->getNumParams()) 4669 return nullptr; 4670 4671 bool NeedsNewDecl = false; 4672 unsigned i = 0; 4673 SmallVector<QualType, 8> OverloadParams; 4674 4675 for (QualType ParamType : FT->param_types()) { 4676 4677 // Convert array arguments to pointer to simplify type lookup. 4678 Expr *Arg = Sema->DefaultFunctionArrayLvalueConversion(ArgExprs[i++]).get(); 4679 QualType ArgType = Arg->getType(); 4680 if (!ParamType->isPointerType() || 4681 ParamType.getQualifiers().hasAddressSpace() || 4682 !ArgType->isPointerType() || 4683 !ArgType->getPointeeType().getQualifiers().hasAddressSpace()) { 4684 OverloadParams.push_back(ParamType); 4685 continue; 4686 } 4687 4688 NeedsNewDecl = true; 4689 unsigned AS = ArgType->getPointeeType().getQualifiers().getAddressSpace(); 4690 4691 QualType PointeeType = ParamType->getPointeeType(); 4692 PointeeType = Context.getAddrSpaceQualType(PointeeType, AS); 4693 OverloadParams.push_back(Context.getPointerType(PointeeType)); 4694 } 4695 4696 if (!NeedsNewDecl) 4697 return nullptr; 4698 4699 FunctionProtoType::ExtProtoInfo EPI; 4700 QualType OverloadTy = Context.getFunctionType(FT->getReturnType(), 4701 OverloadParams, EPI); 4702 DeclContext *Parent = Context.getTranslationUnitDecl(); 4703 FunctionDecl *OverloadDecl = FunctionDecl::Create(Context, Parent, 4704 FDecl->getLocation(), 4705 FDecl->getLocation(), 4706 FDecl->getIdentifier(), 4707 OverloadTy, 4708 /*TInfo=*/nullptr, 4709 SC_Extern, false, 4710 /*hasPrototype=*/true); 4711 SmallVector<ParmVarDecl*, 16> Params; 4712 FT = cast<FunctionProtoType>(OverloadTy); 4713 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) { 4714 QualType ParamType = FT->getParamType(i); 4715 ParmVarDecl *Parm = 4716 ParmVarDecl::Create(Context, OverloadDecl, SourceLocation(), 4717 SourceLocation(), nullptr, ParamType, 4718 /*TInfo=*/nullptr, SC_None, nullptr); 4719 Parm->setScopeInfo(0, i); 4720 Params.push_back(Parm); 4721 } 4722 OverloadDecl->setParams(Params); 4723 return OverloadDecl; 4724 } 4725 4726 /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. 4727 /// This provides the location of the left/right parens and a list of comma 4728 /// locations. 4729 ExprResult 4730 Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc, 4731 MultiExprArg ArgExprs, SourceLocation RParenLoc, 4732 Expr *ExecConfig, bool IsExecConfig) { 4733 // Since this might be a postfix expression, get rid of ParenListExprs. 4734 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn); 4735 if (Result.isInvalid()) return ExprError(); 4736 Fn = Result.get(); 4737 4738 if (checkArgsForPlaceholders(*this, ArgExprs)) 4739 return ExprError(); 4740 4741 if (getLangOpts().CPlusPlus) { 4742 // If this is a pseudo-destructor expression, build the call immediately. 4743 if (isa<CXXPseudoDestructorExpr>(Fn)) { 4744 if (!ArgExprs.empty()) { 4745 // Pseudo-destructor calls should not have any arguments. 4746 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) 4747 << FixItHint::CreateRemoval( 4748 SourceRange(ArgExprs[0]->getLocStart(), 4749 ArgExprs.back()->getLocEnd())); 4750 } 4751 4752 return new (Context) 4753 CallExpr(Context, Fn, None, Context.VoidTy, VK_RValue, RParenLoc); 4754 } 4755 if (Fn->getType() == Context.PseudoObjectTy) { 4756 ExprResult result = CheckPlaceholderExpr(Fn); 4757 if (result.isInvalid()) return ExprError(); 4758 Fn = result.get(); 4759 } 4760 4761 // Determine whether this is a dependent call inside a C++ template, 4762 // in which case we won't do any semantic analysis now. 4763 // FIXME: Will need to cache the results of name lookup (including ADL) in 4764 // Fn. 4765 bool Dependent = false; 4766 if (Fn->isTypeDependent()) 4767 Dependent = true; 4768 else if (Expr::hasAnyTypeDependentArguments(ArgExprs)) 4769 Dependent = true; 4770 4771 if (Dependent) { 4772 if (ExecConfig) { 4773 return new (Context) CUDAKernelCallExpr( 4774 Context, Fn, cast<CallExpr>(ExecConfig), ArgExprs, 4775 Context.DependentTy, VK_RValue, RParenLoc); 4776 } else { 4777 return new (Context) CallExpr( 4778 Context, Fn, ArgExprs, Context.DependentTy, VK_RValue, RParenLoc); 4779 } 4780 } 4781 4782 // Determine whether this is a call to an object (C++ [over.call.object]). 4783 if (Fn->getType()->isRecordType()) 4784 return BuildCallToObjectOfClassType(S, Fn, LParenLoc, ArgExprs, 4785 RParenLoc); 4786 4787 if (Fn->getType() == Context.UnknownAnyTy) { 4788 ExprResult result = rebuildUnknownAnyFunction(*this, Fn); 4789 if (result.isInvalid()) return ExprError(); 4790 Fn = result.get(); 4791 } 4792 4793 if (Fn->getType() == Context.BoundMemberTy) { 4794 return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, RParenLoc); 4795 } 4796 } 4797 4798 // Check for overloaded calls. This can happen even in C due to extensions. 4799 if (Fn->getType() == Context.OverloadTy) { 4800 OverloadExpr::FindResult find = OverloadExpr::find(Fn); 4801 4802 // We aren't supposed to apply this logic for if there's an '&' involved. 4803 if (!find.HasFormOfMemberPointer) { 4804 OverloadExpr *ovl = find.Expression; 4805 if (isa<UnresolvedLookupExpr>(ovl)) { 4806 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl); 4807 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, ArgExprs, 4808 RParenLoc, ExecConfig); 4809 } else { 4810 return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, 4811 RParenLoc); 4812 } 4813 } 4814 } 4815 4816 // If we're directly calling a function, get the appropriate declaration. 4817 if (Fn->getType() == Context.UnknownAnyTy) { 4818 ExprResult result = rebuildUnknownAnyFunction(*this, Fn); 4819 if (result.isInvalid()) return ExprError(); 4820 Fn = result.get(); 4821 } 4822 4823 Expr *NakedFn = Fn->IgnoreParens(); 4824 4825 NamedDecl *NDecl = nullptr; 4826 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn)) 4827 if (UnOp->getOpcode() == UO_AddrOf) 4828 NakedFn = UnOp->getSubExpr()->IgnoreParens(); 4829 4830 if (isa<DeclRefExpr>(NakedFn)) { 4831 NDecl = cast<DeclRefExpr>(NakedFn)->getDecl(); 4832 4833 FunctionDecl *FDecl = dyn_cast<FunctionDecl>(NDecl); 4834 if (FDecl && FDecl->getBuiltinID()) { 4835 // Rewrite the function decl for this builtin by replacing paramaters 4836 // with no explicit address space with the address space of the arguments 4837 // in ArgExprs. 4838 if ((FDecl = rewriteBuiltinFunctionDecl(this, Context, FDecl, ArgExprs))) { 4839 NDecl = FDecl; 4840 Fn = DeclRefExpr::Create(Context, FDecl->getQualifierLoc(), 4841 SourceLocation(), FDecl, false, 4842 SourceLocation(), FDecl->getType(), 4843 Fn->getValueKind(), FDecl); 4844 } 4845 } 4846 } else if (isa<MemberExpr>(NakedFn)) 4847 NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl(); 4848 4849 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(NDecl)) { 4850 if (FD->hasAttr<EnableIfAttr>()) { 4851 if (const EnableIfAttr *Attr = CheckEnableIf(FD, ArgExprs, true)) { 4852 Diag(Fn->getLocStart(), 4853 isa<CXXMethodDecl>(FD) ? 4854 diag::err_ovl_no_viable_member_function_in_call : 4855 diag::err_ovl_no_viable_function_in_call) 4856 << FD << FD->getSourceRange(); 4857 Diag(FD->getLocation(), 4858 diag::note_ovl_candidate_disabled_by_enable_if_attr) 4859 << Attr->getCond()->getSourceRange() << Attr->getMessage(); 4860 } 4861 } 4862 } 4863 4864 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc, 4865 ExecConfig, IsExecConfig); 4866 } 4867 4868 /// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments. 4869 /// 4870 /// __builtin_astype( value, dst type ) 4871 /// 4872 ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy, 4873 SourceLocation BuiltinLoc, 4874 SourceLocation RParenLoc) { 4875 ExprValueKind VK = VK_RValue; 4876 ExprObjectKind OK = OK_Ordinary; 4877 QualType DstTy = GetTypeFromParser(ParsedDestTy); 4878 QualType SrcTy = E->getType(); 4879 if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy)) 4880 return ExprError(Diag(BuiltinLoc, 4881 diag::err_invalid_astype_of_different_size) 4882 << DstTy 4883 << SrcTy 4884 << E->getSourceRange()); 4885 return new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc, RParenLoc); 4886 } 4887 4888 /// ActOnConvertVectorExpr - create a new convert-vector expression from the 4889 /// provided arguments. 4890 /// 4891 /// __builtin_convertvector( value, dst type ) 4892 /// 4893 ExprResult Sema::ActOnConvertVectorExpr(Expr *E, ParsedType ParsedDestTy, 4894 SourceLocation BuiltinLoc, 4895 SourceLocation RParenLoc) { 4896 TypeSourceInfo *TInfo; 4897 GetTypeFromParser(ParsedDestTy, &TInfo); 4898 return SemaConvertVectorExpr(E, TInfo, BuiltinLoc, RParenLoc); 4899 } 4900 4901 /// BuildResolvedCallExpr - Build a call to a resolved expression, 4902 /// i.e. an expression not of \p OverloadTy. The expression should 4903 /// unary-convert to an expression of function-pointer or 4904 /// block-pointer type. 4905 /// 4906 /// \param NDecl the declaration being called, if available 4907 ExprResult 4908 Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl, 4909 SourceLocation LParenLoc, 4910 ArrayRef<Expr *> Args, 4911 SourceLocation RParenLoc, 4912 Expr *Config, bool IsExecConfig) { 4913 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl); 4914 unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0); 4915 4916 // Promote the function operand. 4917 // We special-case function promotion here because we only allow promoting 4918 // builtin functions to function pointers in the callee of a call. 4919 ExprResult Result; 4920 if (BuiltinID && 4921 Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) { 4922 Result = ImpCastExprToType(Fn, Context.getPointerType(FDecl->getType()), 4923 CK_BuiltinFnToFnPtr).get(); 4924 } else { 4925 Result = CallExprUnaryConversions(Fn); 4926 } 4927 if (Result.isInvalid()) 4928 return ExprError(); 4929 Fn = Result.get(); 4930 4931 // Make the call expr early, before semantic checks. This guarantees cleanup 4932 // of arguments and function on error. 4933 CallExpr *TheCall; 4934 if (Config) 4935 TheCall = new (Context) CUDAKernelCallExpr(Context, Fn, 4936 cast<CallExpr>(Config), Args, 4937 Context.BoolTy, VK_RValue, 4938 RParenLoc); 4939 else 4940 TheCall = new (Context) CallExpr(Context, Fn, Args, Context.BoolTy, 4941 VK_RValue, RParenLoc); 4942 4943 if (!getLangOpts().CPlusPlus) { 4944 // C cannot always handle TypoExpr nodes in builtin calls and direct 4945 // function calls as their argument checking don't necessarily handle 4946 // dependent types properly, so make sure any TypoExprs have been 4947 // dealt with. 4948 ExprResult Result = CorrectDelayedTyposInExpr(TheCall); 4949 if (!Result.isUsable()) return ExprError(); 4950 TheCall = dyn_cast<CallExpr>(Result.get()); 4951 if (!TheCall) return Result; 4952 } 4953 4954 // Bail out early if calling a builtin with custom typechecking. 4955 if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID)) 4956 return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall); 4957 4958 retry: 4959 const FunctionType *FuncT; 4960 if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) { 4961 // C99 6.5.2.2p1 - "The expression that denotes the called function shall 4962 // have type pointer to function". 4963 FuncT = PT->getPointeeType()->getAs<FunctionType>(); 4964 if (!FuncT) 4965 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 4966 << Fn->getType() << Fn->getSourceRange()); 4967 } else if (const BlockPointerType *BPT = 4968 Fn->getType()->getAs<BlockPointerType>()) { 4969 FuncT = BPT->getPointeeType()->castAs<FunctionType>(); 4970 } else { 4971 // Handle calls to expressions of unknown-any type. 4972 if (Fn->getType() == Context.UnknownAnyTy) { 4973 ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn); 4974 if (rewrite.isInvalid()) return ExprError(); 4975 Fn = rewrite.get(); 4976 TheCall->setCallee(Fn); 4977 goto retry; 4978 } 4979 4980 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 4981 << Fn->getType() << Fn->getSourceRange()); 4982 } 4983 4984 if (getLangOpts().CUDA) { 4985 if (Config) { 4986 // CUDA: Kernel calls must be to global functions 4987 if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>()) 4988 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function) 4989 << FDecl->getName() << Fn->getSourceRange()); 4990 4991 // CUDA: Kernel function must have 'void' return type 4992 if (!FuncT->getReturnType()->isVoidType()) 4993 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return) 4994 << Fn->getType() << Fn->getSourceRange()); 4995 } else { 4996 // CUDA: Calls to global functions must be configured 4997 if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>()) 4998 return ExprError(Diag(LParenLoc, diag::err_global_call_not_config) 4999 << FDecl->getName() << Fn->getSourceRange()); 5000 } 5001 } 5002 5003 // Check for a valid return type 5004 if (CheckCallReturnType(FuncT->getReturnType(), Fn->getLocStart(), TheCall, 5005 FDecl)) 5006 return ExprError(); 5007 5008 // We know the result type of the call, set it. 5009 TheCall->setType(FuncT->getCallResultType(Context)); 5010 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType())); 5011 5012 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT); 5013 if (Proto) { 5014 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc, 5015 IsExecConfig)) 5016 return ExprError(); 5017 } else { 5018 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); 5019 5020 if (FDecl) { 5021 // Check if we have too few/too many template arguments, based 5022 // on our knowledge of the function definition. 5023 const FunctionDecl *Def = nullptr; 5024 if (FDecl->hasBody(Def) && Args.size() != Def->param_size()) { 5025 Proto = Def->getType()->getAs<FunctionProtoType>(); 5026 if (!Proto || !(Proto->isVariadic() && Args.size() >= Def->param_size())) 5027 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) 5028 << (Args.size() > Def->param_size()) << FDecl << Fn->getSourceRange(); 5029 } 5030 5031 // If the function we're calling isn't a function prototype, but we have 5032 // a function prototype from a prior declaratiom, use that prototype. 5033 if (!FDecl->hasPrototype()) 5034 Proto = FDecl->getType()->getAs<FunctionProtoType>(); 5035 } 5036 5037 // Promote the arguments (C99 6.5.2.2p6). 5038 for (unsigned i = 0, e = Args.size(); i != e; i++) { 5039 Expr *Arg = Args[i]; 5040 5041 if (Proto && i < Proto->getNumParams()) { 5042 InitializedEntity Entity = InitializedEntity::InitializeParameter( 5043 Context, Proto->getParamType(i), Proto->isParamConsumed(i)); 5044 ExprResult ArgE = 5045 PerformCopyInitialization(Entity, SourceLocation(), Arg); 5046 if (ArgE.isInvalid()) 5047 return true; 5048 5049 Arg = ArgE.getAs<Expr>(); 5050 5051 } else { 5052 ExprResult ArgE = DefaultArgumentPromotion(Arg); 5053 5054 if (ArgE.isInvalid()) 5055 return true; 5056 5057 Arg = ArgE.getAs<Expr>(); 5058 } 5059 5060 if (RequireCompleteType(Arg->getLocStart(), 5061 Arg->getType(), 5062 diag::err_call_incomplete_argument, Arg)) 5063 return ExprError(); 5064 5065 TheCall->setArg(i, Arg); 5066 } 5067 } 5068 5069 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) 5070 if (!Method->isStatic()) 5071 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) 5072 << Fn->getSourceRange()); 5073 5074 // Check for sentinels 5075 if (NDecl) 5076 DiagnoseSentinelCalls(NDecl, LParenLoc, Args); 5077 5078 // Do special checking on direct calls to functions. 5079 if (FDecl) { 5080 if (CheckFunctionCall(FDecl, TheCall, Proto)) 5081 return ExprError(); 5082 5083 if (BuiltinID) 5084 return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall); 5085 } else if (NDecl) { 5086 if (CheckPointerCall(NDecl, TheCall, Proto)) 5087 return ExprError(); 5088 } else { 5089 if (CheckOtherCall(TheCall, Proto)) 5090 return ExprError(); 5091 } 5092 5093 return MaybeBindToTemporary(TheCall); 5094 } 5095 5096 ExprResult 5097 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty, 5098 SourceLocation RParenLoc, Expr *InitExpr) { 5099 assert(Ty && "ActOnCompoundLiteral(): missing type"); 5100 // FIXME: put back this assert when initializers are worked out. 5101 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); 5102 5103 TypeSourceInfo *TInfo; 5104 QualType literalType = GetTypeFromParser(Ty, &TInfo); 5105 if (!TInfo) 5106 TInfo = Context.getTrivialTypeSourceInfo(literalType); 5107 5108 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr); 5109 } 5110 5111 ExprResult 5112 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo, 5113 SourceLocation RParenLoc, Expr *LiteralExpr) { 5114 QualType literalType = TInfo->getType(); 5115 5116 if (literalType->isArrayType()) { 5117 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType), 5118 diag::err_illegal_decl_array_incomplete_type, 5119 SourceRange(LParenLoc, 5120 LiteralExpr->getSourceRange().getEnd()))) 5121 return ExprError(); 5122 if (literalType->isVariableArrayType()) 5123 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) 5124 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())); 5125 } else if (!literalType->isDependentType() && 5126 RequireCompleteType(LParenLoc, literalType, 5127 diag::err_typecheck_decl_incomplete_type, 5128 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()))) 5129 return ExprError(); 5130 5131 InitializedEntity Entity 5132 = InitializedEntity::InitializeCompoundLiteralInit(TInfo); 5133 InitializationKind Kind 5134 = InitializationKind::CreateCStyleCast(LParenLoc, 5135 SourceRange(LParenLoc, RParenLoc), 5136 /*InitList=*/true); 5137 InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr); 5138 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr, 5139 &literalType); 5140 if (Result.isInvalid()) 5141 return ExprError(); 5142 LiteralExpr = Result.get(); 5143 5144 bool isFileScope = getCurFunctionOrMethodDecl() == nullptr; 5145 if (isFileScope && 5146 !LiteralExpr->isTypeDependent() && 5147 !LiteralExpr->isValueDependent() && 5148 !literalType->isDependentType()) { // 6.5.2.5p3 5149 if (CheckForConstantInitializer(LiteralExpr, literalType)) 5150 return ExprError(); 5151 } 5152 5153 // In C, compound literals are l-values for some reason. 5154 ExprValueKind VK = getLangOpts().CPlusPlus ? VK_RValue : VK_LValue; 5155 5156 return MaybeBindToTemporary( 5157 new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType, 5158 VK, LiteralExpr, isFileScope)); 5159 } 5160 5161 ExprResult 5162 Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList, 5163 SourceLocation RBraceLoc) { 5164 // Immediately handle non-overload placeholders. Overloads can be 5165 // resolved contextually, but everything else here can't. 5166 for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) { 5167 if (InitArgList[I]->getType()->isNonOverloadPlaceholderType()) { 5168 ExprResult result = CheckPlaceholderExpr(InitArgList[I]); 5169 5170 // Ignore failures; dropping the entire initializer list because 5171 // of one failure would be terrible for indexing/etc. 5172 if (result.isInvalid()) continue; 5173 5174 InitArgList[I] = result.get(); 5175 } 5176 } 5177 5178 // Semantic analysis for initializers is done by ActOnDeclarator() and 5179 // CheckInitializer() - it requires knowledge of the object being intialized. 5180 5181 InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitArgList, 5182 RBraceLoc); 5183 E->setType(Context.VoidTy); // FIXME: just a place holder for now. 5184 return E; 5185 } 5186 5187 /// Do an explicit extend of the given block pointer if we're in ARC. 5188 void Sema::maybeExtendBlockObject(ExprResult &E) { 5189 assert(E.get()->getType()->isBlockPointerType()); 5190 assert(E.get()->isRValue()); 5191 5192 // Only do this in an r-value context. 5193 if (!getLangOpts().ObjCAutoRefCount) return; 5194 5195 E = ImplicitCastExpr::Create(Context, E.get()->getType(), 5196 CK_ARCExtendBlockObject, E.get(), 5197 /*base path*/ nullptr, VK_RValue); 5198 ExprNeedsCleanups = true; 5199 } 5200 5201 /// Prepare a conversion of the given expression to an ObjC object 5202 /// pointer type. 5203 CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) { 5204 QualType type = E.get()->getType(); 5205 if (type->isObjCObjectPointerType()) { 5206 return CK_BitCast; 5207 } else if (type->isBlockPointerType()) { 5208 maybeExtendBlockObject(E); 5209 return CK_BlockPointerToObjCPointerCast; 5210 } else { 5211 assert(type->isPointerType()); 5212 return CK_CPointerToObjCPointerCast; 5213 } 5214 } 5215 5216 /// Prepares for a scalar cast, performing all the necessary stages 5217 /// except the final cast and returning the kind required. 5218 CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) { 5219 // Both Src and Dest are scalar types, i.e. arithmetic or pointer. 5220 // Also, callers should have filtered out the invalid cases with 5221 // pointers. Everything else should be possible. 5222 5223 QualType SrcTy = Src.get()->getType(); 5224 if (Context.hasSameUnqualifiedType(SrcTy, DestTy)) 5225 return CK_NoOp; 5226 5227 switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) { 5228 case Type::STK_MemberPointer: 5229 llvm_unreachable("member pointer type in C"); 5230 5231 case Type::STK_CPointer: 5232 case Type::STK_BlockPointer: 5233 case Type::STK_ObjCObjectPointer: 5234 switch (DestTy->getScalarTypeKind()) { 5235 case Type::STK_CPointer: { 5236 unsigned SrcAS = SrcTy->getPointeeType().getAddressSpace(); 5237 unsigned DestAS = DestTy->getPointeeType().getAddressSpace(); 5238 if (SrcAS != DestAS) 5239 return CK_AddressSpaceConversion; 5240 return CK_BitCast; 5241 } 5242 case Type::STK_BlockPointer: 5243 return (SrcKind == Type::STK_BlockPointer 5244 ? CK_BitCast : CK_AnyPointerToBlockPointerCast); 5245 case Type::STK_ObjCObjectPointer: 5246 if (SrcKind == Type::STK_ObjCObjectPointer) 5247 return CK_BitCast; 5248 if (SrcKind == Type::STK_CPointer) 5249 return CK_CPointerToObjCPointerCast; 5250 maybeExtendBlockObject(Src); 5251 return CK_BlockPointerToObjCPointerCast; 5252 case Type::STK_Bool: 5253 return CK_PointerToBoolean; 5254 case Type::STK_Integral: 5255 return CK_PointerToIntegral; 5256 case Type::STK_Floating: 5257 case Type::STK_FloatingComplex: 5258 case Type::STK_IntegralComplex: 5259 case Type::STK_MemberPointer: 5260 llvm_unreachable("illegal cast from pointer"); 5261 } 5262 llvm_unreachable("Should have returned before this"); 5263 5264 case Type::STK_Bool: // casting from bool is like casting from an integer 5265 case Type::STK_Integral: 5266 switch (DestTy->getScalarTypeKind()) { 5267 case Type::STK_CPointer: 5268 case Type::STK_ObjCObjectPointer: 5269 case Type::STK_BlockPointer: 5270 if (Src.get()->isNullPointerConstant(Context, 5271 Expr::NPC_ValueDependentIsNull)) 5272 return CK_NullToPointer; 5273 return CK_IntegralToPointer; 5274 case Type::STK_Bool: 5275 return CK_IntegralToBoolean; 5276 case Type::STK_Integral: 5277 return CK_IntegralCast; 5278 case Type::STK_Floating: 5279 return CK_IntegralToFloating; 5280 case Type::STK_IntegralComplex: 5281 Src = ImpCastExprToType(Src.get(), 5282 DestTy->castAs<ComplexType>()->getElementType(), 5283 CK_IntegralCast); 5284 return CK_IntegralRealToComplex; 5285 case Type::STK_FloatingComplex: 5286 Src = ImpCastExprToType(Src.get(), 5287 DestTy->castAs<ComplexType>()->getElementType(), 5288 CK_IntegralToFloating); 5289 return CK_FloatingRealToComplex; 5290 case Type::STK_MemberPointer: 5291 llvm_unreachable("member pointer type in C"); 5292 } 5293 llvm_unreachable("Should have returned before this"); 5294 5295 case Type::STK_Floating: 5296 switch (DestTy->getScalarTypeKind()) { 5297 case Type::STK_Floating: 5298 return CK_FloatingCast; 5299 case Type::STK_Bool: 5300 return CK_FloatingToBoolean; 5301 case Type::STK_Integral: 5302 return CK_FloatingToIntegral; 5303 case Type::STK_FloatingComplex: 5304 Src = ImpCastExprToType(Src.get(), 5305 DestTy->castAs<ComplexType>()->getElementType(), 5306 CK_FloatingCast); 5307 return CK_FloatingRealToComplex; 5308 case Type::STK_IntegralComplex: 5309 Src = ImpCastExprToType(Src.get(), 5310 DestTy->castAs<ComplexType>()->getElementType(), 5311 CK_FloatingToIntegral); 5312 return CK_IntegralRealToComplex; 5313 case Type::STK_CPointer: 5314 case Type::STK_ObjCObjectPointer: 5315 case Type::STK_BlockPointer: 5316 llvm_unreachable("valid float->pointer cast?"); 5317 case Type::STK_MemberPointer: 5318 llvm_unreachable("member pointer type in C"); 5319 } 5320 llvm_unreachable("Should have returned before this"); 5321 5322 case Type::STK_FloatingComplex: 5323 switch (DestTy->getScalarTypeKind()) { 5324 case Type::STK_FloatingComplex: 5325 return CK_FloatingComplexCast; 5326 case Type::STK_IntegralComplex: 5327 return CK_FloatingComplexToIntegralComplex; 5328 case Type::STK_Floating: { 5329 QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); 5330 if (Context.hasSameType(ET, DestTy)) 5331 return CK_FloatingComplexToReal; 5332 Src = ImpCastExprToType(Src.get(), ET, CK_FloatingComplexToReal); 5333 return CK_FloatingCast; 5334 } 5335 case Type::STK_Bool: 5336 return CK_FloatingComplexToBoolean; 5337 case Type::STK_Integral: 5338 Src = ImpCastExprToType(Src.get(), 5339 SrcTy->castAs<ComplexType>()->getElementType(), 5340 CK_FloatingComplexToReal); 5341 return CK_FloatingToIntegral; 5342 case Type::STK_CPointer: 5343 case Type::STK_ObjCObjectPointer: 5344 case Type::STK_BlockPointer: 5345 llvm_unreachable("valid complex float->pointer cast?"); 5346 case Type::STK_MemberPointer: 5347 llvm_unreachable("member pointer type in C"); 5348 } 5349 llvm_unreachable("Should have returned before this"); 5350 5351 case Type::STK_IntegralComplex: 5352 switch (DestTy->getScalarTypeKind()) { 5353 case Type::STK_FloatingComplex: 5354 return CK_IntegralComplexToFloatingComplex; 5355 case Type::STK_IntegralComplex: 5356 return CK_IntegralComplexCast; 5357 case Type::STK_Integral: { 5358 QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); 5359 if (Context.hasSameType(ET, DestTy)) 5360 return CK_IntegralComplexToReal; 5361 Src = ImpCastExprToType(Src.get(), ET, CK_IntegralComplexToReal); 5362 return CK_IntegralCast; 5363 } 5364 case Type::STK_Bool: 5365 return CK_IntegralComplexToBoolean; 5366 case Type::STK_Floating: 5367 Src = ImpCastExprToType(Src.get(), 5368 SrcTy->castAs<ComplexType>()->getElementType(), 5369 CK_IntegralComplexToReal); 5370 return CK_IntegralToFloating; 5371 case Type::STK_CPointer: 5372 case Type::STK_ObjCObjectPointer: 5373 case Type::STK_BlockPointer: 5374 llvm_unreachable("valid complex int->pointer cast?"); 5375 case Type::STK_MemberPointer: 5376 llvm_unreachable("member pointer type in C"); 5377 } 5378 llvm_unreachable("Should have returned before this"); 5379 } 5380 5381 llvm_unreachable("Unhandled scalar cast"); 5382 } 5383 5384 static bool breakDownVectorType(QualType type, uint64_t &len, 5385 QualType &eltType) { 5386 // Vectors are simple. 5387 if (const VectorType *vecType = type->getAs<VectorType>()) { 5388 len = vecType->getNumElements(); 5389 eltType = vecType->getElementType(); 5390 assert(eltType->isScalarType()); 5391 return true; 5392 } 5393 5394 // We allow lax conversion to and from non-vector types, but only if 5395 // they're real types (i.e. non-complex, non-pointer scalar types). 5396 if (!type->isRealType()) return false; 5397 5398 len = 1; 5399 eltType = type; 5400 return true; 5401 } 5402 5403 static bool VectorTypesMatch(Sema &S, QualType srcTy, QualType destTy) { 5404 uint64_t srcLen, destLen; 5405 QualType srcElt, destElt; 5406 if (!breakDownVectorType(srcTy, srcLen, srcElt)) return false; 5407 if (!breakDownVectorType(destTy, destLen, destElt)) return false; 5408 5409 // ASTContext::getTypeSize will return the size rounded up to a 5410 // power of 2, so instead of using that, we need to use the raw 5411 // element size multiplied by the element count. 5412 uint64_t srcEltSize = S.Context.getTypeSize(srcElt); 5413 uint64_t destEltSize = S.Context.getTypeSize(destElt); 5414 5415 return (srcLen * srcEltSize == destLen * destEltSize); 5416 } 5417 5418 /// Is this a legal conversion between two known vector types? 5419 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) { 5420 assert(destTy->isVectorType() || srcTy->isVectorType()); 5421 5422 if (!Context.getLangOpts().LaxVectorConversions) 5423 return false; 5424 return VectorTypesMatch(*this, srcTy, destTy); 5425 } 5426 5427 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, 5428 CastKind &Kind) { 5429 assert(VectorTy->isVectorType() && "Not a vector type!"); 5430 5431 if (Ty->isVectorType() || Ty->isIntegerType()) { 5432 if (!VectorTypesMatch(*this, Ty, VectorTy)) 5433 return Diag(R.getBegin(), 5434 Ty->isVectorType() ? 5435 diag::err_invalid_conversion_between_vectors : 5436 diag::err_invalid_conversion_between_vector_and_integer) 5437 << VectorTy << Ty << R; 5438 } else 5439 return Diag(R.getBegin(), 5440 diag::err_invalid_conversion_between_vector_and_scalar) 5441 << VectorTy << Ty << R; 5442 5443 Kind = CK_BitCast; 5444 return false; 5445 } 5446 5447 ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, 5448 Expr *CastExpr, CastKind &Kind) { 5449 assert(DestTy->isExtVectorType() && "Not an extended vector type!"); 5450 5451 QualType SrcTy = CastExpr->getType(); 5452 5453 // If SrcTy is a VectorType, the total size must match to explicitly cast to 5454 // an ExtVectorType. 5455 // In OpenCL, casts between vectors of different types are not allowed. 5456 // (See OpenCL 6.2). 5457 if (SrcTy->isVectorType()) { 5458 if (!VectorTypesMatch(*this, SrcTy, DestTy) 5459 || (getLangOpts().OpenCL && 5460 (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) { 5461 Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) 5462 << DestTy << SrcTy << R; 5463 return ExprError(); 5464 } 5465 Kind = CK_BitCast; 5466 return CastExpr; 5467 } 5468 5469 // All non-pointer scalars can be cast to ExtVector type. The appropriate 5470 // conversion will take place first from scalar to elt type, and then 5471 // splat from elt type to vector. 5472 if (SrcTy->isPointerType()) 5473 return Diag(R.getBegin(), 5474 diag::err_invalid_conversion_between_vector_and_scalar) 5475 << DestTy << SrcTy << R; 5476 5477 QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType(); 5478 ExprResult CastExprRes = CastExpr; 5479 CastKind CK = PrepareScalarCast(CastExprRes, DestElemTy); 5480 if (CastExprRes.isInvalid()) 5481 return ExprError(); 5482 CastExpr = ImpCastExprToType(CastExprRes.get(), DestElemTy, CK).get(); 5483 5484 Kind = CK_VectorSplat; 5485 return CastExpr; 5486 } 5487 5488 ExprResult 5489 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, 5490 Declarator &D, ParsedType &Ty, 5491 SourceLocation RParenLoc, Expr *CastExpr) { 5492 assert(!D.isInvalidType() && (CastExpr != nullptr) && 5493 "ActOnCastExpr(): missing type or expr"); 5494 5495 TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType()); 5496 if (D.isInvalidType()) 5497 return ExprError(); 5498 5499 if (getLangOpts().CPlusPlus) { 5500 // Check that there are no default arguments (C++ only). 5501 CheckExtraCXXDefaultArguments(D); 5502 } else { 5503 // Make sure any TypoExprs have been dealt with. 5504 ExprResult Res = CorrectDelayedTyposInExpr(CastExpr); 5505 if (!Res.isUsable()) 5506 return ExprError(); 5507 CastExpr = Res.get(); 5508 } 5509 5510 checkUnusedDeclAttributes(D); 5511 5512 QualType castType = castTInfo->getType(); 5513 Ty = CreateParsedType(castType, castTInfo); 5514 5515 bool isVectorLiteral = false; 5516 5517 // Check for an altivec or OpenCL literal, 5518 // i.e. all the elements are integer constants. 5519 ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr); 5520 ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr); 5521 if ((getLangOpts().AltiVec || getLangOpts().OpenCL) 5522 && castType->isVectorType() && (PE || PLE)) { 5523 if (PLE && PLE->getNumExprs() == 0) { 5524 Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer); 5525 return ExprError(); 5526 } 5527 if (PE || PLE->getNumExprs() == 1) { 5528 Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0)); 5529 if (!E->getType()->isVectorType()) 5530 isVectorLiteral = true; 5531 } 5532 else 5533 isVectorLiteral = true; 5534 } 5535 5536 // If this is a vector initializer, '(' type ')' '(' init, ..., init ')' 5537 // then handle it as such. 5538 if (isVectorLiteral) 5539 return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo); 5540 5541 // If the Expr being casted is a ParenListExpr, handle it specially. 5542 // This is not an AltiVec-style cast, so turn the ParenListExpr into a 5543 // sequence of BinOp comma operators. 5544 if (isa<ParenListExpr>(CastExpr)) { 5545 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr); 5546 if (Result.isInvalid()) return ExprError(); 5547 CastExpr = Result.get(); 5548 } 5549 5550 if (getLangOpts().CPlusPlus && !castType->isVoidType() && 5551 !getSourceManager().isInSystemMacro(LParenLoc)) 5552 Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange(); 5553 5554 CheckTollFreeBridgeCast(castType, CastExpr); 5555 5556 CheckObjCBridgeRelatedCast(castType, CastExpr); 5557 5558 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr); 5559 } 5560 5561 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc, 5562 SourceLocation RParenLoc, Expr *E, 5563 TypeSourceInfo *TInfo) { 5564 assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) && 5565 "Expected paren or paren list expression"); 5566 5567 Expr **exprs; 5568 unsigned numExprs; 5569 Expr *subExpr; 5570 SourceLocation LiteralLParenLoc, LiteralRParenLoc; 5571 if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) { 5572 LiteralLParenLoc = PE->getLParenLoc(); 5573 LiteralRParenLoc = PE->getRParenLoc(); 5574 exprs = PE->getExprs(); 5575 numExprs = PE->getNumExprs(); 5576 } else { // isa<ParenExpr> by assertion at function entrance 5577 LiteralLParenLoc = cast<ParenExpr>(E)->getLParen(); 5578 LiteralRParenLoc = cast<ParenExpr>(E)->getRParen(); 5579 subExpr = cast<ParenExpr>(E)->getSubExpr(); 5580 exprs = &subExpr; 5581 numExprs = 1; 5582 } 5583 5584 QualType Ty = TInfo->getType(); 5585 assert(Ty->isVectorType() && "Expected vector type"); 5586 5587 SmallVector<Expr *, 8> initExprs; 5588 const VectorType *VTy = Ty->getAs<VectorType>(); 5589 unsigned numElems = Ty->getAs<VectorType>()->getNumElements(); 5590 5591 // '(...)' form of vector initialization in AltiVec: the number of 5592 // initializers must be one or must match the size of the vector. 5593 // If a single value is specified in the initializer then it will be 5594 // replicated to all the components of the vector 5595 if (VTy->getVectorKind() == VectorType::AltiVecVector) { 5596 // The number of initializers must be one or must match the size of the 5597 // vector. If a single value is specified in the initializer then it will 5598 // be replicated to all the components of the vector 5599 if (numExprs == 1) { 5600 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); 5601 ExprResult Literal = DefaultLvalueConversion(exprs[0]); 5602 if (Literal.isInvalid()) 5603 return ExprError(); 5604 Literal = ImpCastExprToType(Literal.get(), ElemTy, 5605 PrepareScalarCast(Literal, ElemTy)); 5606 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get()); 5607 } 5608 else if (numExprs < numElems) { 5609 Diag(E->getExprLoc(), 5610 diag::err_incorrect_number_of_vector_initializers); 5611 return ExprError(); 5612 } 5613 else 5614 initExprs.append(exprs, exprs + numExprs); 5615 } 5616 else { 5617 // For OpenCL, when the number of initializers is a single value, 5618 // it will be replicated to all components of the vector. 5619 if (getLangOpts().OpenCL && 5620 VTy->getVectorKind() == VectorType::GenericVector && 5621 numExprs == 1) { 5622 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); 5623 ExprResult Literal = DefaultLvalueConversion(exprs[0]); 5624 if (Literal.isInvalid()) 5625 return ExprError(); 5626 Literal = ImpCastExprToType(Literal.get(), ElemTy, 5627 PrepareScalarCast(Literal, ElemTy)); 5628 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get()); 5629 } 5630 5631 initExprs.append(exprs, exprs + numExprs); 5632 } 5633 // FIXME: This means that pretty-printing the final AST will produce curly 5634 // braces instead of the original commas. 5635 InitListExpr *initE = new (Context) InitListExpr(Context, LiteralLParenLoc, 5636 initExprs, LiteralRParenLoc); 5637 initE->setType(Ty); 5638 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE); 5639 } 5640 5641 /// This is not an AltiVec-style cast or or C++ direct-initialization, so turn 5642 /// the ParenListExpr into a sequence of comma binary operators. 5643 ExprResult 5644 Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) { 5645 ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr); 5646 if (!E) 5647 return OrigExpr; 5648 5649 ExprResult Result(E->getExpr(0)); 5650 5651 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) 5652 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(), 5653 E->getExpr(i)); 5654 5655 if (Result.isInvalid()) return ExprError(); 5656 5657 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get()); 5658 } 5659 5660 ExprResult Sema::ActOnParenListExpr(SourceLocation L, 5661 SourceLocation R, 5662 MultiExprArg Val) { 5663 Expr *expr = new (Context) ParenListExpr(Context, L, Val, R); 5664 return expr; 5665 } 5666 5667 /// \brief Emit a specialized diagnostic when one expression is a null pointer 5668 /// constant and the other is not a pointer. Returns true if a diagnostic is 5669 /// emitted. 5670 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, 5671 SourceLocation QuestionLoc) { 5672 Expr *NullExpr = LHSExpr; 5673 Expr *NonPointerExpr = RHSExpr; 5674 Expr::NullPointerConstantKind NullKind = 5675 NullExpr->isNullPointerConstant(Context, 5676 Expr::NPC_ValueDependentIsNotNull); 5677 5678 if (NullKind == Expr::NPCK_NotNull) { 5679 NullExpr = RHSExpr; 5680 NonPointerExpr = LHSExpr; 5681 NullKind = 5682 NullExpr->isNullPointerConstant(Context, 5683 Expr::NPC_ValueDependentIsNotNull); 5684 } 5685 5686 if (NullKind == Expr::NPCK_NotNull) 5687 return false; 5688 5689 if (NullKind == Expr::NPCK_ZeroExpression) 5690 return false; 5691 5692 if (NullKind == Expr::NPCK_ZeroLiteral) { 5693 // In this case, check to make sure that we got here from a "NULL" 5694 // string in the source code. 5695 NullExpr = NullExpr->IgnoreParenImpCasts(); 5696 SourceLocation loc = NullExpr->getExprLoc(); 5697 if (!findMacroSpelling(loc, "NULL")) 5698 return false; 5699 } 5700 5701 int DiagType = (NullKind == Expr::NPCK_CXX11_nullptr); 5702 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null) 5703 << NonPointerExpr->getType() << DiagType 5704 << NonPointerExpr->getSourceRange(); 5705 return true; 5706 } 5707 5708 /// \brief Return false if the condition expression is valid, true otherwise. 5709 static bool checkCondition(Sema &S, Expr *Cond, SourceLocation QuestionLoc) { 5710 QualType CondTy = Cond->getType(); 5711 5712 // OpenCL v1.1 s6.3.i says the condition cannot be a floating point type. 5713 if (S.getLangOpts().OpenCL && CondTy->isFloatingType()) { 5714 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat) 5715 << CondTy << Cond->getSourceRange(); 5716 return true; 5717 } 5718 5719 // C99 6.5.15p2 5720 if (CondTy->isScalarType()) return false; 5721 5722 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_scalar) 5723 << CondTy << Cond->getSourceRange(); 5724 return true; 5725 } 5726 5727 /// \brief Handle when one or both operands are void type. 5728 static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS, 5729 ExprResult &RHS) { 5730 Expr *LHSExpr = LHS.get(); 5731 Expr *RHSExpr = RHS.get(); 5732 5733 if (!LHSExpr->getType()->isVoidType()) 5734 S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) 5735 << RHSExpr->getSourceRange(); 5736 if (!RHSExpr->getType()->isVoidType()) 5737 S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) 5738 << LHSExpr->getSourceRange(); 5739 LHS = S.ImpCastExprToType(LHS.get(), S.Context.VoidTy, CK_ToVoid); 5740 RHS = S.ImpCastExprToType(RHS.get(), S.Context.VoidTy, CK_ToVoid); 5741 return S.Context.VoidTy; 5742 } 5743 5744 /// \brief Return false if the NullExpr can be promoted to PointerTy, 5745 /// true otherwise. 5746 static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr, 5747 QualType PointerTy) { 5748 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) || 5749 !NullExpr.get()->isNullPointerConstant(S.Context, 5750 Expr::NPC_ValueDependentIsNull)) 5751 return true; 5752 5753 NullExpr = S.ImpCastExprToType(NullExpr.get(), PointerTy, CK_NullToPointer); 5754 return false; 5755 } 5756 5757 /// \brief Checks compatibility between two pointers and return the resulting 5758 /// type. 5759 static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS, 5760 ExprResult &RHS, 5761 SourceLocation Loc) { 5762 QualType LHSTy = LHS.get()->getType(); 5763 QualType RHSTy = RHS.get()->getType(); 5764 5765 if (S.Context.hasSameType(LHSTy, RHSTy)) { 5766 // Two identical pointers types are always compatible. 5767 return LHSTy; 5768 } 5769 5770 QualType lhptee, rhptee; 5771 5772 // Get the pointee types. 5773 bool IsBlockPointer = false; 5774 if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) { 5775 lhptee = LHSBTy->getPointeeType(); 5776 rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType(); 5777 IsBlockPointer = true; 5778 } else { 5779 lhptee = LHSTy->castAs<PointerType>()->getPointeeType(); 5780 rhptee = RHSTy->castAs<PointerType>()->getPointeeType(); 5781 } 5782 5783 // C99 6.5.15p6: If both operands are pointers to compatible types or to 5784 // differently qualified versions of compatible types, the result type is 5785 // a pointer to an appropriately qualified version of the composite 5786 // type. 5787 5788 // Only CVR-qualifiers exist in the standard, and the differently-qualified 5789 // clause doesn't make sense for our extensions. E.g. address space 2 should 5790 // be incompatible with address space 3: they may live on different devices or 5791 // anything. 5792 Qualifiers lhQual = lhptee.getQualifiers(); 5793 Qualifiers rhQual = rhptee.getQualifiers(); 5794 5795 unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers(); 5796 lhQual.removeCVRQualifiers(); 5797 rhQual.removeCVRQualifiers(); 5798 5799 lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual); 5800 rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual); 5801 5802 QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee); 5803 5804 if (CompositeTy.isNull()) { 5805 S.Diag(Loc, diag::ext_typecheck_cond_incompatible_pointers) 5806 << LHSTy << RHSTy << LHS.get()->getSourceRange() 5807 << RHS.get()->getSourceRange(); 5808 // In this situation, we assume void* type. No especially good 5809 // reason, but this is what gcc does, and we do have to pick 5810 // to get a consistent AST. 5811 QualType incompatTy = S.Context.getPointerType(S.Context.VoidTy); 5812 LHS = S.ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast); 5813 RHS = S.ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast); 5814 return incompatTy; 5815 } 5816 5817 // The pointer types are compatible. 5818 QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual); 5819 if (IsBlockPointer) 5820 ResultTy = S.Context.getBlockPointerType(ResultTy); 5821 else 5822 ResultTy = S.Context.getPointerType(ResultTy); 5823 5824 LHS = S.ImpCastExprToType(LHS.get(), ResultTy, CK_BitCast); 5825 RHS = S.ImpCastExprToType(RHS.get(), ResultTy, CK_BitCast); 5826 return ResultTy; 5827 } 5828 5829 /// \brief Return the resulting type when the operands are both block pointers. 5830 static QualType checkConditionalBlockPointerCompatibility(Sema &S, 5831 ExprResult &LHS, 5832 ExprResult &RHS, 5833 SourceLocation Loc) { 5834 QualType LHSTy = LHS.get()->getType(); 5835 QualType RHSTy = RHS.get()->getType(); 5836 5837 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { 5838 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { 5839 QualType destType = S.Context.getPointerType(S.Context.VoidTy); 5840 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast); 5841 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); 5842 return destType; 5843 } 5844 S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands) 5845 << LHSTy << RHSTy << LHS.get()->getSourceRange() 5846 << RHS.get()->getSourceRange(); 5847 return QualType(); 5848 } 5849 5850 // We have 2 block pointer types. 5851 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); 5852 } 5853 5854 /// \brief Return the resulting type when the operands are both pointers. 5855 static QualType 5856 checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS, 5857 ExprResult &RHS, 5858 SourceLocation Loc) { 5859 // get the pointer types 5860 QualType LHSTy = LHS.get()->getType(); 5861 QualType RHSTy = RHS.get()->getType(); 5862 5863 // get the "pointed to" types 5864 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); 5865 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); 5866 5867 // ignore qualifiers on void (C99 6.5.15p3, clause 6) 5868 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { 5869 // Figure out necessary qualifiers (C99 6.5.15p6) 5870 QualType destPointee 5871 = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers()); 5872 QualType destType = S.Context.getPointerType(destPointee); 5873 // Add qualifiers if necessary. 5874 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp); 5875 // Promote to void*. 5876 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); 5877 return destType; 5878 } 5879 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { 5880 QualType destPointee 5881 = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers()); 5882 QualType destType = S.Context.getPointerType(destPointee); 5883 // Add qualifiers if necessary. 5884 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp); 5885 // Promote to void*. 5886 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast); 5887 return destType; 5888 } 5889 5890 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); 5891 } 5892 5893 /// \brief Return false if the first expression is not an integer and the second 5894 /// expression is not a pointer, true otherwise. 5895 static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int, 5896 Expr* PointerExpr, SourceLocation Loc, 5897 bool IsIntFirstExpr) { 5898 if (!PointerExpr->getType()->isPointerType() || 5899 !Int.get()->getType()->isIntegerType()) 5900 return false; 5901 5902 Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr; 5903 Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get(); 5904 5905 S.Diag(Loc, diag::ext_typecheck_cond_pointer_integer_mismatch) 5906 << Expr1->getType() << Expr2->getType() 5907 << Expr1->getSourceRange() << Expr2->getSourceRange(); 5908 Int = S.ImpCastExprToType(Int.get(), PointerExpr->getType(), 5909 CK_IntegralToPointer); 5910 return true; 5911 } 5912 5913 /// \brief Simple conversion between integer and floating point types. 5914 /// 5915 /// Used when handling the OpenCL conditional operator where the 5916 /// condition is a vector while the other operands are scalar. 5917 /// 5918 /// OpenCL v1.1 s6.3.i and s6.11.6 together require that the scalar 5919 /// types are either integer or floating type. Between the two 5920 /// operands, the type with the higher rank is defined as the "result 5921 /// type". The other operand needs to be promoted to the same type. No 5922 /// other type promotion is allowed. We cannot use 5923 /// UsualArithmeticConversions() for this purpose, since it always 5924 /// promotes promotable types. 5925 static QualType OpenCLArithmeticConversions(Sema &S, ExprResult &LHS, 5926 ExprResult &RHS, 5927 SourceLocation QuestionLoc) { 5928 LHS = S.DefaultFunctionArrayLvalueConversion(LHS.get()); 5929 if (LHS.isInvalid()) 5930 return QualType(); 5931 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get()); 5932 if (RHS.isInvalid()) 5933 return QualType(); 5934 5935 // For conversion purposes, we ignore any qualifiers. 5936 // For example, "const float" and "float" are equivalent. 5937 QualType LHSType = 5938 S.Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); 5939 QualType RHSType = 5940 S.Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); 5941 5942 if (!LHSType->isIntegerType() && !LHSType->isRealFloatingType()) { 5943 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float) 5944 << LHSType << LHS.get()->getSourceRange(); 5945 return QualType(); 5946 } 5947 5948 if (!RHSType->isIntegerType() && !RHSType->isRealFloatingType()) { 5949 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float) 5950 << RHSType << RHS.get()->getSourceRange(); 5951 return QualType(); 5952 } 5953 5954 // If both types are identical, no conversion is needed. 5955 if (LHSType == RHSType) 5956 return LHSType; 5957 5958 // Now handle "real" floating types (i.e. float, double, long double). 5959 if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType()) 5960 return handleFloatConversion(S, LHS, RHS, LHSType, RHSType, 5961 /*IsCompAssign = */ false); 5962 5963 // Finally, we have two differing integer types. 5964 return handleIntegerConversion<doIntegralCast, doIntegralCast> 5965 (S, LHS, RHS, LHSType, RHSType, /*IsCompAssign = */ false); 5966 } 5967 5968 /// \brief Convert scalar operands to a vector that matches the 5969 /// condition in length. 5970 /// 5971 /// Used when handling the OpenCL conditional operator where the 5972 /// condition is a vector while the other operands are scalar. 5973 /// 5974 /// We first compute the "result type" for the scalar operands 5975 /// according to OpenCL v1.1 s6.3.i. Both operands are then converted 5976 /// into a vector of that type where the length matches the condition 5977 /// vector type. s6.11.6 requires that the element types of the result 5978 /// and the condition must have the same number of bits. 5979 static QualType 5980 OpenCLConvertScalarsToVectors(Sema &S, ExprResult &LHS, ExprResult &RHS, 5981 QualType CondTy, SourceLocation QuestionLoc) { 5982 QualType ResTy = OpenCLArithmeticConversions(S, LHS, RHS, QuestionLoc); 5983 if (ResTy.isNull()) return QualType(); 5984 5985 const VectorType *CV = CondTy->getAs<VectorType>(); 5986 assert(CV); 5987 5988 // Determine the vector result type 5989 unsigned NumElements = CV->getNumElements(); 5990 QualType VectorTy = S.Context.getExtVectorType(ResTy, NumElements); 5991 5992 // Ensure that all types have the same number of bits 5993 if (S.Context.getTypeSize(CV->getElementType()) 5994 != S.Context.getTypeSize(ResTy)) { 5995 // Since VectorTy is created internally, it does not pretty print 5996 // with an OpenCL name. Instead, we just print a description. 5997 std::string EleTyName = ResTy.getUnqualifiedType().getAsString(); 5998 SmallString<64> Str; 5999 llvm::raw_svector_ostream OS(Str); 6000 OS << "(vector of " << NumElements << " '" << EleTyName << "' values)"; 6001 S.Diag(QuestionLoc, diag::err_conditional_vector_element_size) 6002 << CondTy << OS.str(); 6003 return QualType(); 6004 } 6005 6006 // Convert operands to the vector result type 6007 LHS = S.ImpCastExprToType(LHS.get(), VectorTy, CK_VectorSplat); 6008 RHS = S.ImpCastExprToType(RHS.get(), VectorTy, CK_VectorSplat); 6009 6010 return VectorTy; 6011 } 6012 6013 /// \brief Return false if this is a valid OpenCL condition vector 6014 static bool checkOpenCLConditionVector(Sema &S, Expr *Cond, 6015 SourceLocation QuestionLoc) { 6016 // OpenCL v1.1 s6.11.6 says the elements of the vector must be of 6017 // integral type. 6018 const VectorType *CondTy = Cond->getType()->getAs<VectorType>(); 6019 assert(CondTy); 6020 QualType EleTy = CondTy->getElementType(); 6021 if (EleTy->isIntegerType()) return false; 6022 6023 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat) 6024 << Cond->getType() << Cond->getSourceRange(); 6025 return true; 6026 } 6027 6028 /// \brief Return false if the vector condition type and the vector 6029 /// result type are compatible. 6030 /// 6031 /// OpenCL v1.1 s6.11.6 requires that both vector types have the same 6032 /// number of elements, and their element types have the same number 6033 /// of bits. 6034 static bool checkVectorResult(Sema &S, QualType CondTy, QualType VecResTy, 6035 SourceLocation QuestionLoc) { 6036 const VectorType *CV = CondTy->getAs<VectorType>(); 6037 const VectorType *RV = VecResTy->getAs<VectorType>(); 6038 assert(CV && RV); 6039 6040 if (CV->getNumElements() != RV->getNumElements()) { 6041 S.Diag(QuestionLoc, diag::err_conditional_vector_size) 6042 << CondTy << VecResTy; 6043 return true; 6044 } 6045 6046 QualType CVE = CV->getElementType(); 6047 QualType RVE = RV->getElementType(); 6048 6049 if (S.Context.getTypeSize(CVE) != S.Context.getTypeSize(RVE)) { 6050 S.Diag(QuestionLoc, diag::err_conditional_vector_element_size) 6051 << CondTy << VecResTy; 6052 return true; 6053 } 6054 6055 return false; 6056 } 6057 6058 /// \brief Return the resulting type for the conditional operator in 6059 /// OpenCL (aka "ternary selection operator", OpenCL v1.1 6060 /// s6.3.i) when the condition is a vector type. 6061 static QualType 6062 OpenCLCheckVectorConditional(Sema &S, ExprResult &Cond, 6063 ExprResult &LHS, ExprResult &RHS, 6064 SourceLocation QuestionLoc) { 6065 Cond = S.DefaultFunctionArrayLvalueConversion(Cond.get()); 6066 if (Cond.isInvalid()) 6067 return QualType(); 6068 QualType CondTy = Cond.get()->getType(); 6069 6070 if (checkOpenCLConditionVector(S, Cond.get(), QuestionLoc)) 6071 return QualType(); 6072 6073 // If either operand is a vector then find the vector type of the 6074 // result as specified in OpenCL v1.1 s6.3.i. 6075 if (LHS.get()->getType()->isVectorType() || 6076 RHS.get()->getType()->isVectorType()) { 6077 QualType VecResTy = S.CheckVectorOperands(LHS, RHS, QuestionLoc, 6078 /*isCompAssign*/false); 6079 if (VecResTy.isNull()) return QualType(); 6080 // The result type must match the condition type as specified in 6081 // OpenCL v1.1 s6.11.6. 6082 if (checkVectorResult(S, CondTy, VecResTy, QuestionLoc)) 6083 return QualType(); 6084 return VecResTy; 6085 } 6086 6087 // Both operands are scalar. 6088 return OpenCLConvertScalarsToVectors(S, LHS, RHS, CondTy, QuestionLoc); 6089 } 6090 6091 /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension. 6092 /// In that case, LHS = cond. 6093 /// C99 6.5.15 6094 QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, 6095 ExprResult &RHS, ExprValueKind &VK, 6096 ExprObjectKind &OK, 6097 SourceLocation QuestionLoc) { 6098 6099 ExprResult LHSResult = CheckPlaceholderExpr(LHS.get()); 6100 if (!LHSResult.isUsable()) return QualType(); 6101 LHS = LHSResult; 6102 6103 ExprResult RHSResult = CheckPlaceholderExpr(RHS.get()); 6104 if (!RHSResult.isUsable()) return QualType(); 6105 RHS = RHSResult; 6106 6107 // C++ is sufficiently different to merit its own checker. 6108 if (getLangOpts().CPlusPlus) 6109 return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc); 6110 6111 VK = VK_RValue; 6112 OK = OK_Ordinary; 6113 6114 // The OpenCL operator with a vector condition is sufficiently 6115 // different to merit its own checker. 6116 if (getLangOpts().OpenCL && Cond.get()->getType()->isVectorType()) 6117 return OpenCLCheckVectorConditional(*this, Cond, LHS, RHS, QuestionLoc); 6118 6119 // First, check the condition. 6120 Cond = UsualUnaryConversions(Cond.get()); 6121 if (Cond.isInvalid()) 6122 return QualType(); 6123 if (checkCondition(*this, Cond.get(), QuestionLoc)) 6124 return QualType(); 6125 6126 // Now check the two expressions. 6127 if (LHS.get()->getType()->isVectorType() || 6128 RHS.get()->getType()->isVectorType()) 6129 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false); 6130 6131 QualType ResTy = UsualArithmeticConversions(LHS, RHS); 6132 if (LHS.isInvalid() || RHS.isInvalid()) 6133 return QualType(); 6134 6135 QualType LHSTy = LHS.get()->getType(); 6136 QualType RHSTy = RHS.get()->getType(); 6137 6138 // If both operands have arithmetic type, do the usual arithmetic conversions 6139 // to find a common type: C99 6.5.15p3,5. 6140 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { 6141 LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy)); 6142 RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy)); 6143 6144 return ResTy; 6145 } 6146 6147 // If both operands are the same structure or union type, the result is that 6148 // type. 6149 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 6150 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) 6151 if (LHSRT->getDecl() == RHSRT->getDecl()) 6152 // "If both the operands have structure or union type, the result has 6153 // that type." This implies that CV qualifiers are dropped. 6154 return LHSTy.getUnqualifiedType(); 6155 // FIXME: Type of conditional expression must be complete in C mode. 6156 } 6157 6158 // C99 6.5.15p5: "If both operands have void type, the result has void type." 6159 // The following || allows only one side to be void (a GCC-ism). 6160 if (LHSTy->isVoidType() || RHSTy->isVoidType()) { 6161 return checkConditionalVoidType(*this, LHS, RHS); 6162 } 6163 6164 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has 6165 // the type of the other operand." 6166 if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy; 6167 if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy; 6168 6169 // All objective-c pointer type analysis is done here. 6170 QualType compositeType = FindCompositeObjCPointerType(LHS, RHS, 6171 QuestionLoc); 6172 if (LHS.isInvalid() || RHS.isInvalid()) 6173 return QualType(); 6174 if (!compositeType.isNull()) 6175 return compositeType; 6176 6177 6178 // Handle block pointer types. 6179 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) 6180 return checkConditionalBlockPointerCompatibility(*this, LHS, RHS, 6181 QuestionLoc); 6182 6183 // Check constraints for C object pointers types (C99 6.5.15p3,6). 6184 if (LHSTy->isPointerType() && RHSTy->isPointerType()) 6185 return checkConditionalObjectPointersCompatibility(*this, LHS, RHS, 6186 QuestionLoc); 6187 6188 // GCC compatibility: soften pointer/integer mismatch. Note that 6189 // null pointers have been filtered out by this point. 6190 if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc, 6191 /*isIntFirstExpr=*/true)) 6192 return RHSTy; 6193 if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc, 6194 /*isIntFirstExpr=*/false)) 6195 return LHSTy; 6196 6197 // Emit a better diagnostic if one of the expressions is a null pointer 6198 // constant and the other is not a pointer type. In this case, the user most 6199 // likely forgot to take the address of the other expression. 6200 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) 6201 return QualType(); 6202 6203 // Otherwise, the operands are not compatible. 6204 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) 6205 << LHSTy << RHSTy << LHS.get()->getSourceRange() 6206 << RHS.get()->getSourceRange(); 6207 return QualType(); 6208 } 6209 6210 /// FindCompositeObjCPointerType - Helper method to find composite type of 6211 /// two objective-c pointer types of the two input expressions. 6212 QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS, 6213 SourceLocation QuestionLoc) { 6214 QualType LHSTy = LHS.get()->getType(); 6215 QualType RHSTy = RHS.get()->getType(); 6216 6217 // Handle things like Class and struct objc_class*. Here we case the result 6218 // to the pseudo-builtin, because that will be implicitly cast back to the 6219 // redefinition type if an attempt is made to access its fields. 6220 if (LHSTy->isObjCClassType() && 6221 (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) { 6222 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast); 6223 return LHSTy; 6224 } 6225 if (RHSTy->isObjCClassType() && 6226 (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) { 6227 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast); 6228 return RHSTy; 6229 } 6230 // And the same for struct objc_object* / id 6231 if (LHSTy->isObjCIdType() && 6232 (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) { 6233 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast); 6234 return LHSTy; 6235 } 6236 if (RHSTy->isObjCIdType() && 6237 (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) { 6238 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast); 6239 return RHSTy; 6240 } 6241 // And the same for struct objc_selector* / SEL 6242 if (Context.isObjCSelType(LHSTy) && 6243 (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) { 6244 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_BitCast); 6245 return LHSTy; 6246 } 6247 if (Context.isObjCSelType(RHSTy) && 6248 (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) { 6249 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_BitCast); 6250 return RHSTy; 6251 } 6252 // Check constraints for Objective-C object pointers types. 6253 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { 6254 6255 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { 6256 // Two identical object pointer types are always compatible. 6257 return LHSTy; 6258 } 6259 const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>(); 6260 const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>(); 6261 QualType compositeType = LHSTy; 6262 6263 // If both operands are interfaces and either operand can be 6264 // assigned to the other, use that type as the composite 6265 // type. This allows 6266 // xxx ? (A*) a : (B*) b 6267 // where B is a subclass of A. 6268 // 6269 // Additionally, as for assignment, if either type is 'id' 6270 // allow silent coercion. Finally, if the types are 6271 // incompatible then make sure to use 'id' as the composite 6272 // type so the result is acceptable for sending messages to. 6273 6274 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. 6275 // It could return the composite type. 6276 if (!(compositeType = 6277 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) { 6278 // Nothing more to do. 6279 } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { 6280 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; 6281 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { 6282 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; 6283 } else if ((LHSTy->isObjCQualifiedIdType() || 6284 RHSTy->isObjCQualifiedIdType()) && 6285 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { 6286 // Need to handle "id<xx>" explicitly. 6287 // GCC allows qualified id and any Objective-C type to devolve to 6288 // id. Currently localizing to here until clear this should be 6289 // part of ObjCQualifiedIdTypesAreCompatible. 6290 compositeType = Context.getObjCIdType(); 6291 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { 6292 compositeType = Context.getObjCIdType(); 6293 } else { 6294 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) 6295 << LHSTy << RHSTy 6296 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6297 QualType incompatTy = Context.getObjCIdType(); 6298 LHS = ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast); 6299 RHS = ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast); 6300 return incompatTy; 6301 } 6302 // The object pointer types are compatible. 6303 LHS = ImpCastExprToType(LHS.get(), compositeType, CK_BitCast); 6304 RHS = ImpCastExprToType(RHS.get(), compositeType, CK_BitCast); 6305 return compositeType; 6306 } 6307 // Check Objective-C object pointer types and 'void *' 6308 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { 6309 if (getLangOpts().ObjCAutoRefCount) { 6310 // ARC forbids the implicit conversion of object pointers to 'void *', 6311 // so these types are not compatible. 6312 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy 6313 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6314 LHS = RHS = true; 6315 return QualType(); 6316 } 6317 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); 6318 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); 6319 QualType destPointee 6320 = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); 6321 QualType destType = Context.getPointerType(destPointee); 6322 // Add qualifiers if necessary. 6323 LHS = ImpCastExprToType(LHS.get(), destType, CK_NoOp); 6324 // Promote to void*. 6325 RHS = ImpCastExprToType(RHS.get(), destType, CK_BitCast); 6326 return destType; 6327 } 6328 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { 6329 if (getLangOpts().ObjCAutoRefCount) { 6330 // ARC forbids the implicit conversion of object pointers to 'void *', 6331 // so these types are not compatible. 6332 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy 6333 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6334 LHS = RHS = true; 6335 return QualType(); 6336 } 6337 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); 6338 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); 6339 QualType destPointee 6340 = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); 6341 QualType destType = Context.getPointerType(destPointee); 6342 // Add qualifiers if necessary. 6343 RHS = ImpCastExprToType(RHS.get(), destType, CK_NoOp); 6344 // Promote to void*. 6345 LHS = ImpCastExprToType(LHS.get(), destType, CK_BitCast); 6346 return destType; 6347 } 6348 return QualType(); 6349 } 6350 6351 /// SuggestParentheses - Emit a note with a fixit hint that wraps 6352 /// ParenRange in parentheses. 6353 static void SuggestParentheses(Sema &Self, SourceLocation Loc, 6354 const PartialDiagnostic &Note, 6355 SourceRange ParenRange) { 6356 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); 6357 if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() && 6358 EndLoc.isValid()) { 6359 Self.Diag(Loc, Note) 6360 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(") 6361 << FixItHint::CreateInsertion(EndLoc, ")"); 6362 } else { 6363 // We can't display the parentheses, so just show the bare note. 6364 Self.Diag(Loc, Note) << ParenRange; 6365 } 6366 } 6367 6368 static bool IsArithmeticOp(BinaryOperatorKind Opc) { 6369 return Opc >= BO_Mul && Opc <= BO_Shr; 6370 } 6371 6372 /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary 6373 /// expression, either using a built-in or overloaded operator, 6374 /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side 6375 /// expression. 6376 static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode, 6377 Expr **RHSExprs) { 6378 // Don't strip parenthesis: we should not warn if E is in parenthesis. 6379 E = E->IgnoreImpCasts(); 6380 E = E->IgnoreConversionOperator(); 6381 E = E->IgnoreImpCasts(); 6382 6383 // Built-in binary operator. 6384 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) { 6385 if (IsArithmeticOp(OP->getOpcode())) { 6386 *Opcode = OP->getOpcode(); 6387 *RHSExprs = OP->getRHS(); 6388 return true; 6389 } 6390 } 6391 6392 // Overloaded operator. 6393 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) { 6394 if (Call->getNumArgs() != 2) 6395 return false; 6396 6397 // Make sure this is really a binary operator that is safe to pass into 6398 // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op. 6399 OverloadedOperatorKind OO = Call->getOperator(); 6400 if (OO < OO_Plus || OO > OO_Arrow || 6401 OO == OO_PlusPlus || OO == OO_MinusMinus) 6402 return false; 6403 6404 BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO); 6405 if (IsArithmeticOp(OpKind)) { 6406 *Opcode = OpKind; 6407 *RHSExprs = Call->getArg(1); 6408 return true; 6409 } 6410 } 6411 6412 return false; 6413 } 6414 6415 static bool IsLogicOp(BinaryOperatorKind Opc) { 6416 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr); 6417 } 6418 6419 /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type 6420 /// or is a logical expression such as (x==y) which has int type, but is 6421 /// commonly interpreted as boolean. 6422 static bool ExprLooksBoolean(Expr *E) { 6423 E = E->IgnoreParenImpCasts(); 6424 6425 if (E->getType()->isBooleanType()) 6426 return true; 6427 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) 6428 return IsLogicOp(OP->getOpcode()); 6429 if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E)) 6430 return OP->getOpcode() == UO_LNot; 6431 if (E->getType()->isPointerType()) 6432 return true; 6433 6434 return false; 6435 } 6436 6437 /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator 6438 /// and binary operator are mixed in a way that suggests the programmer assumed 6439 /// the conditional operator has higher precedence, for example: 6440 /// "int x = a + someBinaryCondition ? 1 : 2". 6441 static void DiagnoseConditionalPrecedence(Sema &Self, 6442 SourceLocation OpLoc, 6443 Expr *Condition, 6444 Expr *LHSExpr, 6445 Expr *RHSExpr) { 6446 BinaryOperatorKind CondOpcode; 6447 Expr *CondRHS; 6448 6449 if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS)) 6450 return; 6451 if (!ExprLooksBoolean(CondRHS)) 6452 return; 6453 6454 // The condition is an arithmetic binary expression, with a right- 6455 // hand side that looks boolean, so warn. 6456 6457 Self.Diag(OpLoc, diag::warn_precedence_conditional) 6458 << Condition->getSourceRange() 6459 << BinaryOperator::getOpcodeStr(CondOpcode); 6460 6461 SuggestParentheses(Self, OpLoc, 6462 Self.PDiag(diag::note_precedence_silence) 6463 << BinaryOperator::getOpcodeStr(CondOpcode), 6464 SourceRange(Condition->getLocStart(), Condition->getLocEnd())); 6465 6466 SuggestParentheses(Self, OpLoc, 6467 Self.PDiag(diag::note_precedence_conditional_first), 6468 SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd())); 6469 } 6470 6471 /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null 6472 /// in the case of a the GNU conditional expr extension. 6473 ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, 6474 SourceLocation ColonLoc, 6475 Expr *CondExpr, Expr *LHSExpr, 6476 Expr *RHSExpr) { 6477 if (!getLangOpts().CPlusPlus) { 6478 // C cannot handle TypoExpr nodes in the condition because it 6479 // doesn't handle dependent types properly, so make sure any TypoExprs have 6480 // been dealt with before checking the operands. 6481 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); 6482 if (!CondResult.isUsable()) return ExprError(); 6483 CondExpr = CondResult.get(); 6484 } 6485 6486 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS 6487 // was the condition. 6488 OpaqueValueExpr *opaqueValue = nullptr; 6489 Expr *commonExpr = nullptr; 6490 if (!LHSExpr) { 6491 commonExpr = CondExpr; 6492 // Lower out placeholder types first. This is important so that we don't 6493 // try to capture a placeholder. This happens in few cases in C++; such 6494 // as Objective-C++'s dictionary subscripting syntax. 6495 if (commonExpr->hasPlaceholderType()) { 6496 ExprResult result = CheckPlaceholderExpr(commonExpr); 6497 if (!result.isUsable()) return ExprError(); 6498 commonExpr = result.get(); 6499 } 6500 // We usually want to apply unary conversions *before* saving, except 6501 // in the special case of a C++ l-value conditional. 6502 if (!(getLangOpts().CPlusPlus 6503 && !commonExpr->isTypeDependent() 6504 && commonExpr->getValueKind() == RHSExpr->getValueKind() 6505 && commonExpr->isGLValue() 6506 && commonExpr->isOrdinaryOrBitFieldObject() 6507 && RHSExpr->isOrdinaryOrBitFieldObject() 6508 && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) { 6509 ExprResult commonRes = UsualUnaryConversions(commonExpr); 6510 if (commonRes.isInvalid()) 6511 return ExprError(); 6512 commonExpr = commonRes.get(); 6513 } 6514 6515 opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(), 6516 commonExpr->getType(), 6517 commonExpr->getValueKind(), 6518 commonExpr->getObjectKind(), 6519 commonExpr); 6520 LHSExpr = CondExpr = opaqueValue; 6521 } 6522 6523 ExprValueKind VK = VK_RValue; 6524 ExprObjectKind OK = OK_Ordinary; 6525 ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr; 6526 QualType result = CheckConditionalOperands(Cond, LHS, RHS, 6527 VK, OK, QuestionLoc); 6528 if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() || 6529 RHS.isInvalid()) 6530 return ExprError(); 6531 6532 DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(), 6533 RHS.get()); 6534 6535 CheckBoolLikeConversion(Cond.get(), QuestionLoc); 6536 6537 if (!commonExpr) 6538 return new (Context) 6539 ConditionalOperator(Cond.get(), QuestionLoc, LHS.get(), ColonLoc, 6540 RHS.get(), result, VK, OK); 6541 6542 return new (Context) BinaryConditionalOperator( 6543 commonExpr, opaqueValue, Cond.get(), LHS.get(), RHS.get(), QuestionLoc, 6544 ColonLoc, result, VK, OK); 6545 } 6546 6547 // checkPointerTypesForAssignment - This is a very tricky routine (despite 6548 // being closely modeled after the C99 spec:-). The odd characteristic of this 6549 // routine is it effectively iqnores the qualifiers on the top level pointee. 6550 // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. 6551 // FIXME: add a couple examples in this comment. 6552 static Sema::AssignConvertType 6553 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) { 6554 assert(LHSType.isCanonical() && "LHS not canonicalized!"); 6555 assert(RHSType.isCanonical() && "RHS not canonicalized!"); 6556 6557 // get the "pointed to" type (ignoring qualifiers at the top level) 6558 const Type *lhptee, *rhptee; 6559 Qualifiers lhq, rhq; 6560 std::tie(lhptee, lhq) = 6561 cast<PointerType>(LHSType)->getPointeeType().split().asPair(); 6562 std::tie(rhptee, rhq) = 6563 cast<PointerType>(RHSType)->getPointeeType().split().asPair(); 6564 6565 Sema::AssignConvertType ConvTy = Sema::Compatible; 6566 6567 // C99 6.5.16.1p1: This following citation is common to constraints 6568 // 3 & 4 (below). ...and the type *pointed to* by the left has all the 6569 // qualifiers of the type *pointed to* by the right; 6570 6571 // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay. 6572 if (lhq.getObjCLifetime() != rhq.getObjCLifetime() && 6573 lhq.compatiblyIncludesObjCLifetime(rhq)) { 6574 // Ignore lifetime for further calculation. 6575 lhq.removeObjCLifetime(); 6576 rhq.removeObjCLifetime(); 6577 } 6578 6579 if (!lhq.compatiblyIncludes(rhq)) { 6580 // Treat address-space mismatches as fatal. TODO: address subspaces 6581 if (!lhq.isAddressSpaceSupersetOf(rhq)) 6582 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; 6583 6584 // It's okay to add or remove GC or lifetime qualifiers when converting to 6585 // and from void*. 6586 else if (lhq.withoutObjCGCAttr().withoutObjCLifetime() 6587 .compatiblyIncludes( 6588 rhq.withoutObjCGCAttr().withoutObjCLifetime()) 6589 && (lhptee->isVoidType() || rhptee->isVoidType())) 6590 ; // keep old 6591 6592 // Treat lifetime mismatches as fatal. 6593 else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) 6594 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; 6595 6596 // For GCC compatibility, other qualifier mismatches are treated 6597 // as still compatible in C. 6598 else ConvTy = Sema::CompatiblePointerDiscardsQualifiers; 6599 } 6600 6601 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or 6602 // incomplete type and the other is a pointer to a qualified or unqualified 6603 // version of void... 6604 if (lhptee->isVoidType()) { 6605 if (rhptee->isIncompleteOrObjectType()) 6606 return ConvTy; 6607 6608 // As an extension, we allow cast to/from void* to function pointer. 6609 assert(rhptee->isFunctionType()); 6610 return Sema::FunctionVoidPointer; 6611 } 6612 6613 if (rhptee->isVoidType()) { 6614 if (lhptee->isIncompleteOrObjectType()) 6615 return ConvTy; 6616 6617 // As an extension, we allow cast to/from void* to function pointer. 6618 assert(lhptee->isFunctionType()); 6619 return Sema::FunctionVoidPointer; 6620 } 6621 6622 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or 6623 // unqualified versions of compatible types, ... 6624 QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0); 6625 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { 6626 // Check if the pointee types are compatible ignoring the sign. 6627 // We explicitly check for char so that we catch "char" vs 6628 // "unsigned char" on systems where "char" is unsigned. 6629 if (lhptee->isCharType()) 6630 ltrans = S.Context.UnsignedCharTy; 6631 else if (lhptee->hasSignedIntegerRepresentation()) 6632 ltrans = S.Context.getCorrespondingUnsignedType(ltrans); 6633 6634 if (rhptee->isCharType()) 6635 rtrans = S.Context.UnsignedCharTy; 6636 else if (rhptee->hasSignedIntegerRepresentation()) 6637 rtrans = S.Context.getCorrespondingUnsignedType(rtrans); 6638 6639 if (ltrans == rtrans) { 6640 // Types are compatible ignoring the sign. Qualifier incompatibility 6641 // takes priority over sign incompatibility because the sign 6642 // warning can be disabled. 6643 if (ConvTy != Sema::Compatible) 6644 return ConvTy; 6645 6646 return Sema::IncompatiblePointerSign; 6647 } 6648 6649 // If we are a multi-level pointer, it's possible that our issue is simply 6650 // one of qualification - e.g. char ** -> const char ** is not allowed. If 6651 // the eventual target type is the same and the pointers have the same 6652 // level of indirection, this must be the issue. 6653 if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) { 6654 do { 6655 lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr(); 6656 rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr(); 6657 } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)); 6658 6659 if (lhptee == rhptee) 6660 return Sema::IncompatibleNestedPointerQualifiers; 6661 } 6662 6663 // General pointer incompatibility takes priority over qualifiers. 6664 return Sema::IncompatiblePointer; 6665 } 6666 if (!S.getLangOpts().CPlusPlus && 6667 S.IsNoReturnConversion(ltrans, rtrans, ltrans)) 6668 return Sema::IncompatiblePointer; 6669 return ConvTy; 6670 } 6671 6672 /// checkBlockPointerTypesForAssignment - This routine determines whether two 6673 /// block pointer types are compatible or whether a block and normal pointer 6674 /// are compatible. It is more restrict than comparing two function pointer 6675 // types. 6676 static Sema::AssignConvertType 6677 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, 6678 QualType RHSType) { 6679 assert(LHSType.isCanonical() && "LHS not canonicalized!"); 6680 assert(RHSType.isCanonical() && "RHS not canonicalized!"); 6681 6682 QualType lhptee, rhptee; 6683 6684 // get the "pointed to" type (ignoring qualifiers at the top level) 6685 lhptee = cast<BlockPointerType>(LHSType)->getPointeeType(); 6686 rhptee = cast<BlockPointerType>(RHSType)->getPointeeType(); 6687 6688 // In C++, the types have to match exactly. 6689 if (S.getLangOpts().CPlusPlus) 6690 return Sema::IncompatibleBlockPointer; 6691 6692 Sema::AssignConvertType ConvTy = Sema::Compatible; 6693 6694 // For blocks we enforce that qualifiers are identical. 6695 if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers()) 6696 ConvTy = Sema::CompatiblePointerDiscardsQualifiers; 6697 6698 if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType)) 6699 return Sema::IncompatibleBlockPointer; 6700 6701 return ConvTy; 6702 } 6703 6704 /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types 6705 /// for assignment compatibility. 6706 static Sema::AssignConvertType 6707 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, 6708 QualType RHSType) { 6709 assert(LHSType.isCanonical() && "LHS was not canonicalized!"); 6710 assert(RHSType.isCanonical() && "RHS was not canonicalized!"); 6711 6712 if (LHSType->isObjCBuiltinType()) { 6713 // Class is not compatible with ObjC object pointers. 6714 if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() && 6715 !RHSType->isObjCQualifiedClassType()) 6716 return Sema::IncompatiblePointer; 6717 return Sema::Compatible; 6718 } 6719 if (RHSType->isObjCBuiltinType()) { 6720 if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() && 6721 !LHSType->isObjCQualifiedClassType()) 6722 return Sema::IncompatiblePointer; 6723 return Sema::Compatible; 6724 } 6725 QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); 6726 QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); 6727 6728 if (!lhptee.isAtLeastAsQualifiedAs(rhptee) && 6729 // make an exception for id<P> 6730 !LHSType->isObjCQualifiedIdType()) 6731 return Sema::CompatiblePointerDiscardsQualifiers; 6732 6733 if (S.Context.typesAreCompatible(LHSType, RHSType)) 6734 return Sema::Compatible; 6735 if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType()) 6736 return Sema::IncompatibleObjCQualifiedId; 6737 return Sema::IncompatiblePointer; 6738 } 6739 6740 Sema::AssignConvertType 6741 Sema::CheckAssignmentConstraints(SourceLocation Loc, 6742 QualType LHSType, QualType RHSType) { 6743 // Fake up an opaque expression. We don't actually care about what 6744 // cast operations are required, so if CheckAssignmentConstraints 6745 // adds casts to this they'll be wasted, but fortunately that doesn't 6746 // usually happen on valid code. 6747 OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue); 6748 ExprResult RHSPtr = &RHSExpr; 6749 CastKind K = CK_Invalid; 6750 6751 return CheckAssignmentConstraints(LHSType, RHSPtr, K); 6752 } 6753 6754 /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently 6755 /// has code to accommodate several GCC extensions when type checking 6756 /// pointers. Here are some objectionable examples that GCC considers warnings: 6757 /// 6758 /// int a, *pint; 6759 /// short *pshort; 6760 /// struct foo *pfoo; 6761 /// 6762 /// pint = pshort; // warning: assignment from incompatible pointer type 6763 /// a = pint; // warning: assignment makes integer from pointer without a cast 6764 /// pint = a; // warning: assignment makes pointer from integer without a cast 6765 /// pint = pfoo; // warning: assignment from incompatible pointer type 6766 /// 6767 /// As a result, the code for dealing with pointers is more complex than the 6768 /// C99 spec dictates. 6769 /// 6770 /// Sets 'Kind' for any result kind except Incompatible. 6771 Sema::AssignConvertType 6772 Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, 6773 CastKind &Kind) { 6774 QualType RHSType = RHS.get()->getType(); 6775 QualType OrigLHSType = LHSType; 6776 6777 // Get canonical types. We're not formatting these types, just comparing 6778 // them. 6779 LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType(); 6780 RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType(); 6781 6782 // Common case: no conversion required. 6783 if (LHSType == RHSType) { 6784 Kind = CK_NoOp; 6785 return Compatible; 6786 } 6787 6788 // If we have an atomic type, try a non-atomic assignment, then just add an 6789 // atomic qualification step. 6790 if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) { 6791 Sema::AssignConvertType result = 6792 CheckAssignmentConstraints(AtomicTy->getValueType(), RHS, Kind); 6793 if (result != Compatible) 6794 return result; 6795 if (Kind != CK_NoOp) 6796 RHS = ImpCastExprToType(RHS.get(), AtomicTy->getValueType(), Kind); 6797 Kind = CK_NonAtomicToAtomic; 6798 return Compatible; 6799 } 6800 6801 // If the left-hand side is a reference type, then we are in a 6802 // (rare!) case where we've allowed the use of references in C, 6803 // e.g., as a parameter type in a built-in function. In this case, 6804 // just make sure that the type referenced is compatible with the 6805 // right-hand side type. The caller is responsible for adjusting 6806 // LHSType so that the resulting expression does not have reference 6807 // type. 6808 if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) { 6809 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) { 6810 Kind = CK_LValueBitCast; 6811 return Compatible; 6812 } 6813 return Incompatible; 6814 } 6815 6816 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type 6817 // to the same ExtVector type. 6818 if (LHSType->isExtVectorType()) { 6819 if (RHSType->isExtVectorType()) 6820 return Incompatible; 6821 if (RHSType->isArithmeticType()) { 6822 // CK_VectorSplat does T -> vector T, so first cast to the 6823 // element type. 6824 QualType elType = cast<ExtVectorType>(LHSType)->getElementType(); 6825 if (elType != RHSType) { 6826 Kind = PrepareScalarCast(RHS, elType); 6827 RHS = ImpCastExprToType(RHS.get(), elType, Kind); 6828 } 6829 Kind = CK_VectorSplat; 6830 return Compatible; 6831 } 6832 } 6833 6834 // Conversions to or from vector type. 6835 if (LHSType->isVectorType() || RHSType->isVectorType()) { 6836 if (LHSType->isVectorType() && RHSType->isVectorType()) { 6837 // Allow assignments of an AltiVec vector type to an equivalent GCC 6838 // vector type and vice versa 6839 if (Context.areCompatibleVectorTypes(LHSType, RHSType)) { 6840 Kind = CK_BitCast; 6841 return Compatible; 6842 } 6843 6844 // If we are allowing lax vector conversions, and LHS and RHS are both 6845 // vectors, the total size only needs to be the same. This is a bitcast; 6846 // no bits are changed but the result type is different. 6847 if (isLaxVectorConversion(RHSType, LHSType)) { 6848 Kind = CK_BitCast; 6849 return IncompatibleVectors; 6850 } 6851 } 6852 return Incompatible; 6853 } 6854 6855 // Arithmetic conversions. 6856 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && 6857 !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) { 6858 Kind = PrepareScalarCast(RHS, LHSType); 6859 return Compatible; 6860 } 6861 6862 // Conversions to normal pointers. 6863 if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) { 6864 // U* -> T* 6865 if (isa<PointerType>(RHSType)) { 6866 unsigned AddrSpaceL = LHSPointer->getPointeeType().getAddressSpace(); 6867 unsigned AddrSpaceR = RHSType->getPointeeType().getAddressSpace(); 6868 Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast; 6869 return checkPointerTypesForAssignment(*this, LHSType, RHSType); 6870 } 6871 6872 // int -> T* 6873 if (RHSType->isIntegerType()) { 6874 Kind = CK_IntegralToPointer; // FIXME: null? 6875 return IntToPointer; 6876 } 6877 6878 // C pointers are not compatible with ObjC object pointers, 6879 // with two exceptions: 6880 if (isa<ObjCObjectPointerType>(RHSType)) { 6881 // - conversions to void* 6882 if (LHSPointer->getPointeeType()->isVoidType()) { 6883 Kind = CK_BitCast; 6884 return Compatible; 6885 } 6886 6887 // - conversions from 'Class' to the redefinition type 6888 if (RHSType->isObjCClassType() && 6889 Context.hasSameType(LHSType, 6890 Context.getObjCClassRedefinitionType())) { 6891 Kind = CK_BitCast; 6892 return Compatible; 6893 } 6894 6895 Kind = CK_BitCast; 6896 return IncompatiblePointer; 6897 } 6898 6899 // U^ -> void* 6900 if (RHSType->getAs<BlockPointerType>()) { 6901 if (LHSPointer->getPointeeType()->isVoidType()) { 6902 Kind = CK_BitCast; 6903 return Compatible; 6904 } 6905 } 6906 6907 return Incompatible; 6908 } 6909 6910 // Conversions to block pointers. 6911 if (isa<BlockPointerType>(LHSType)) { 6912 // U^ -> T^ 6913 if (RHSType->isBlockPointerType()) { 6914 Kind = CK_BitCast; 6915 return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType); 6916 } 6917 6918 // int or null -> T^ 6919 if (RHSType->isIntegerType()) { 6920 Kind = CK_IntegralToPointer; // FIXME: null 6921 return IntToBlockPointer; 6922 } 6923 6924 // id -> T^ 6925 if (getLangOpts().ObjC1 && RHSType->isObjCIdType()) { 6926 Kind = CK_AnyPointerToBlockPointerCast; 6927 return Compatible; 6928 } 6929 6930 // void* -> T^ 6931 if (const PointerType *RHSPT = RHSType->getAs<PointerType>()) 6932 if (RHSPT->getPointeeType()->isVoidType()) { 6933 Kind = CK_AnyPointerToBlockPointerCast; 6934 return Compatible; 6935 } 6936 6937 return Incompatible; 6938 } 6939 6940 // Conversions to Objective-C pointers. 6941 if (isa<ObjCObjectPointerType>(LHSType)) { 6942 // A* -> B* 6943 if (RHSType->isObjCObjectPointerType()) { 6944 Kind = CK_BitCast; 6945 Sema::AssignConvertType result = 6946 checkObjCPointerTypesForAssignment(*this, LHSType, RHSType); 6947 if (getLangOpts().ObjCAutoRefCount && 6948 result == Compatible && 6949 !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType)) 6950 result = IncompatibleObjCWeakRef; 6951 return result; 6952 } 6953 6954 // int or null -> A* 6955 if (RHSType->isIntegerType()) { 6956 Kind = CK_IntegralToPointer; // FIXME: null 6957 return IntToPointer; 6958 } 6959 6960 // In general, C pointers are not compatible with ObjC object pointers, 6961 // with two exceptions: 6962 if (isa<PointerType>(RHSType)) { 6963 Kind = CK_CPointerToObjCPointerCast; 6964 6965 // - conversions from 'void*' 6966 if (RHSType->isVoidPointerType()) { 6967 return Compatible; 6968 } 6969 6970 // - conversions to 'Class' from its redefinition type 6971 if (LHSType->isObjCClassType() && 6972 Context.hasSameType(RHSType, 6973 Context.getObjCClassRedefinitionType())) { 6974 return Compatible; 6975 } 6976 6977 return IncompatiblePointer; 6978 } 6979 6980 // Only under strict condition T^ is compatible with an Objective-C pointer. 6981 if (RHSType->isBlockPointerType() && 6982 LHSType->isBlockCompatibleObjCPointerType(Context)) { 6983 maybeExtendBlockObject(RHS); 6984 Kind = CK_BlockPointerToObjCPointerCast; 6985 return Compatible; 6986 } 6987 6988 return Incompatible; 6989 } 6990 6991 // Conversions from pointers that are not covered by the above. 6992 if (isa<PointerType>(RHSType)) { 6993 // T* -> _Bool 6994 if (LHSType == Context.BoolTy) { 6995 Kind = CK_PointerToBoolean; 6996 return Compatible; 6997 } 6998 6999 // T* -> int 7000 if (LHSType->isIntegerType()) { 7001 Kind = CK_PointerToIntegral; 7002 return PointerToInt; 7003 } 7004 7005 return Incompatible; 7006 } 7007 7008 // Conversions from Objective-C pointers that are not covered by the above. 7009 if (isa<ObjCObjectPointerType>(RHSType)) { 7010 // T* -> _Bool 7011 if (LHSType == Context.BoolTy) { 7012 Kind = CK_PointerToBoolean; 7013 return Compatible; 7014 } 7015 7016 // T* -> int 7017 if (LHSType->isIntegerType()) { 7018 Kind = CK_PointerToIntegral; 7019 return PointerToInt; 7020 } 7021 7022 return Incompatible; 7023 } 7024 7025 // struct A -> struct B 7026 if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) { 7027 if (Context.typesAreCompatible(LHSType, RHSType)) { 7028 Kind = CK_NoOp; 7029 return Compatible; 7030 } 7031 } 7032 7033 return Incompatible; 7034 } 7035 7036 /// \brief Constructs a transparent union from an expression that is 7037 /// used to initialize the transparent union. 7038 static void ConstructTransparentUnion(Sema &S, ASTContext &C, 7039 ExprResult &EResult, QualType UnionType, 7040 FieldDecl *Field) { 7041 // Build an initializer list that designates the appropriate member 7042 // of the transparent union. 7043 Expr *E = EResult.get(); 7044 InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(), 7045 E, SourceLocation()); 7046 Initializer->setType(UnionType); 7047 Initializer->setInitializedFieldInUnion(Field); 7048 7049 // Build a compound literal constructing a value of the transparent 7050 // union type from this initializer list. 7051 TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType); 7052 EResult = new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType, 7053 VK_RValue, Initializer, false); 7054 } 7055 7056 Sema::AssignConvertType 7057 Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, 7058 ExprResult &RHS) { 7059 QualType RHSType = RHS.get()->getType(); 7060 7061 // If the ArgType is a Union type, we want to handle a potential 7062 // transparent_union GCC extension. 7063 const RecordType *UT = ArgType->getAsUnionType(); 7064 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) 7065 return Incompatible; 7066 7067 // The field to initialize within the transparent union. 7068 RecordDecl *UD = UT->getDecl(); 7069 FieldDecl *InitField = nullptr; 7070 // It's compatible if the expression matches any of the fields. 7071 for (auto *it : UD->fields()) { 7072 if (it->getType()->isPointerType()) { 7073 // If the transparent union contains a pointer type, we allow: 7074 // 1) void pointer 7075 // 2) null pointer constant 7076 if (RHSType->isPointerType()) 7077 if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) { 7078 RHS = ImpCastExprToType(RHS.get(), it->getType(), CK_BitCast); 7079 InitField = it; 7080 break; 7081 } 7082 7083 if (RHS.get()->isNullPointerConstant(Context, 7084 Expr::NPC_ValueDependentIsNull)) { 7085 RHS = ImpCastExprToType(RHS.get(), it->getType(), 7086 CK_NullToPointer); 7087 InitField = it; 7088 break; 7089 } 7090 } 7091 7092 CastKind Kind = CK_Invalid; 7093 if (CheckAssignmentConstraints(it->getType(), RHS, Kind) 7094 == Compatible) { 7095 RHS = ImpCastExprToType(RHS.get(), it->getType(), Kind); 7096 InitField = it; 7097 break; 7098 } 7099 } 7100 7101 if (!InitField) 7102 return Incompatible; 7103 7104 ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField); 7105 return Compatible; 7106 } 7107 7108 Sema::AssignConvertType 7109 Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, 7110 bool Diagnose, 7111 bool DiagnoseCFAudited) { 7112 if (getLangOpts().CPlusPlus) { 7113 if (!LHSType->isRecordType() && !LHSType->isAtomicType()) { 7114 // C++ 5.17p3: If the left operand is not of class type, the 7115 // expression is implicitly converted (C++ 4) to the 7116 // cv-unqualified type of the left operand. 7117 ExprResult Res; 7118 if (Diagnose) { 7119 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 7120 AA_Assigning); 7121 } else { 7122 ImplicitConversionSequence ICS = 7123 TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 7124 /*SuppressUserConversions=*/false, 7125 /*AllowExplicit=*/false, 7126 /*InOverloadResolution=*/false, 7127 /*CStyle=*/false, 7128 /*AllowObjCWritebackConversion=*/false); 7129 if (ICS.isFailure()) 7130 return Incompatible; 7131 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 7132 ICS, AA_Assigning); 7133 } 7134 if (Res.isInvalid()) 7135 return Incompatible; 7136 Sema::AssignConvertType result = Compatible; 7137 if (getLangOpts().ObjCAutoRefCount && 7138 !CheckObjCARCUnavailableWeakConversion(LHSType, 7139 RHS.get()->getType())) 7140 result = IncompatibleObjCWeakRef; 7141 RHS = Res; 7142 return result; 7143 } 7144 7145 // FIXME: Currently, we fall through and treat C++ classes like C 7146 // structures. 7147 // FIXME: We also fall through for atomics; not sure what should 7148 // happen there, though. 7149 } 7150 7151 // C99 6.5.16.1p1: the left operand is a pointer and the right is 7152 // a null pointer constant. 7153 if ((LHSType->isPointerType() || LHSType->isObjCObjectPointerType() || 7154 LHSType->isBlockPointerType()) && 7155 RHS.get()->isNullPointerConstant(Context, 7156 Expr::NPC_ValueDependentIsNull)) { 7157 CastKind Kind; 7158 CXXCastPath Path; 7159 CheckPointerConversion(RHS.get(), LHSType, Kind, Path, false); 7160 RHS = ImpCastExprToType(RHS.get(), LHSType, Kind, VK_RValue, &Path); 7161 return Compatible; 7162 } 7163 7164 // This check seems unnatural, however it is necessary to ensure the proper 7165 // conversion of functions/arrays. If the conversion were done for all 7166 // DeclExpr's (created by ActOnIdExpression), it would mess up the unary 7167 // expressions that suppress this implicit conversion (&, sizeof). 7168 // 7169 // Suppress this for references: C++ 8.5.3p5. 7170 if (!LHSType->isReferenceType()) { 7171 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 7172 if (RHS.isInvalid()) 7173 return Incompatible; 7174 } 7175 7176 Expr *PRE = RHS.get()->IgnoreParenCasts(); 7177 if (ObjCProtocolExpr *OPE = dyn_cast<ObjCProtocolExpr>(PRE)) { 7178 ObjCProtocolDecl *PDecl = OPE->getProtocol(); 7179 if (PDecl && !PDecl->hasDefinition()) { 7180 Diag(PRE->getExprLoc(), diag::warn_atprotocol_protocol) << PDecl->getName(); 7181 Diag(PDecl->getLocation(), diag::note_entity_declared_at) << PDecl; 7182 } 7183 } 7184 7185 CastKind Kind = CK_Invalid; 7186 Sema::AssignConvertType result = 7187 CheckAssignmentConstraints(LHSType, RHS, Kind); 7188 7189 // C99 6.5.16.1p2: The value of the right operand is converted to the 7190 // type of the assignment expression. 7191 // CheckAssignmentConstraints allows the left-hand side to be a reference, 7192 // so that we can use references in built-in functions even in C. 7193 // The getNonReferenceType() call makes sure that the resulting expression 7194 // does not have reference type. 7195 if (result != Incompatible && RHS.get()->getType() != LHSType) { 7196 QualType Ty = LHSType.getNonLValueExprType(Context); 7197 Expr *E = RHS.get(); 7198 if (getLangOpts().ObjCAutoRefCount) 7199 CheckObjCARCConversion(SourceRange(), Ty, E, CCK_ImplicitConversion, 7200 DiagnoseCFAudited); 7201 if (getLangOpts().ObjC1 && 7202 (CheckObjCBridgeRelatedConversions(E->getLocStart(), 7203 LHSType, E->getType(), E) || 7204 ConversionToObjCStringLiteralCheck(LHSType, E))) { 7205 RHS = E; 7206 return Compatible; 7207 } 7208 7209 RHS = ImpCastExprToType(E, Ty, Kind); 7210 } 7211 return result; 7212 } 7213 7214 QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS, 7215 ExprResult &RHS) { 7216 Diag(Loc, diag::err_typecheck_invalid_operands) 7217 << LHS.get()->getType() << RHS.get()->getType() 7218 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7219 return QualType(); 7220 } 7221 7222 /// Try to convert a value of non-vector type to a vector type by converting 7223 /// the type to the element type of the vector and then performing a splat. 7224 /// If the language is OpenCL, we only use conversions that promote scalar 7225 /// rank; for C, Obj-C, and C++ we allow any real scalar conversion except 7226 /// for float->int. 7227 /// 7228 /// \param scalar - if non-null, actually perform the conversions 7229 /// \return true if the operation fails (but without diagnosing the failure) 7230 static bool tryVectorConvertAndSplat(Sema &S, ExprResult *scalar, 7231 QualType scalarTy, 7232 QualType vectorEltTy, 7233 QualType vectorTy) { 7234 // The conversion to apply to the scalar before splatting it, 7235 // if necessary. 7236 CastKind scalarCast = CK_Invalid; 7237 7238 if (vectorEltTy->isIntegralType(S.Context)) { 7239 if (!scalarTy->isIntegralType(S.Context)) 7240 return true; 7241 if (S.getLangOpts().OpenCL && 7242 S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0) 7243 return true; 7244 scalarCast = CK_IntegralCast; 7245 } else if (vectorEltTy->isRealFloatingType()) { 7246 if (scalarTy->isRealFloatingType()) { 7247 if (S.getLangOpts().OpenCL && 7248 S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0) 7249 return true; 7250 scalarCast = CK_FloatingCast; 7251 } 7252 else if (scalarTy->isIntegralType(S.Context)) 7253 scalarCast = CK_IntegralToFloating; 7254 else 7255 return true; 7256 } else { 7257 return true; 7258 } 7259 7260 // Adjust scalar if desired. 7261 if (scalar) { 7262 if (scalarCast != CK_Invalid) 7263 *scalar = S.ImpCastExprToType(scalar->get(), vectorEltTy, scalarCast); 7264 *scalar = S.ImpCastExprToType(scalar->get(), vectorTy, CK_VectorSplat); 7265 } 7266 return false; 7267 } 7268 7269 QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS, 7270 SourceLocation Loc, bool IsCompAssign) { 7271 if (!IsCompAssign) { 7272 LHS = DefaultFunctionArrayLvalueConversion(LHS.get()); 7273 if (LHS.isInvalid()) 7274 return QualType(); 7275 } 7276 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 7277 if (RHS.isInvalid()) 7278 return QualType(); 7279 7280 // For conversion purposes, we ignore any qualifiers. 7281 // For example, "const float" and "float" are equivalent. 7282 QualType LHSType = LHS.get()->getType().getUnqualifiedType(); 7283 QualType RHSType = RHS.get()->getType().getUnqualifiedType(); 7284 7285 // If the vector types are identical, return. 7286 if (Context.hasSameType(LHSType, RHSType)) 7287 return LHSType; 7288 7289 const VectorType *LHSVecType = LHSType->getAs<VectorType>(); 7290 const VectorType *RHSVecType = RHSType->getAs<VectorType>(); 7291 assert(LHSVecType || RHSVecType); 7292 7293 // If we have compatible AltiVec and GCC vector types, use the AltiVec type. 7294 if (LHSVecType && RHSVecType && 7295 Context.areCompatibleVectorTypes(LHSType, RHSType)) { 7296 if (isa<ExtVectorType>(LHSVecType)) { 7297 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 7298 return LHSType; 7299 } 7300 7301 if (!IsCompAssign) 7302 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast); 7303 return RHSType; 7304 } 7305 7306 // If there's an ext-vector type and a scalar, try to convert the scalar to 7307 // the vector element type and splat. 7308 if (!RHSVecType && isa<ExtVectorType>(LHSVecType)) { 7309 if (!tryVectorConvertAndSplat(*this, &RHS, RHSType, 7310 LHSVecType->getElementType(), LHSType)) 7311 return LHSType; 7312 } 7313 if (!LHSVecType && isa<ExtVectorType>(RHSVecType)) { 7314 if (!tryVectorConvertAndSplat(*this, (IsCompAssign ? nullptr : &LHS), 7315 LHSType, RHSVecType->getElementType(), 7316 RHSType)) 7317 return RHSType; 7318 } 7319 7320 // If we're allowing lax vector conversions, only the total (data) size 7321 // needs to be the same. 7322 // FIXME: Should we really be allowing this? 7323 // FIXME: We really just pick the LHS type arbitrarily? 7324 if (isLaxVectorConversion(RHSType, LHSType)) { 7325 QualType resultType = LHSType; 7326 RHS = ImpCastExprToType(RHS.get(), resultType, CK_BitCast); 7327 return resultType; 7328 } 7329 7330 // Okay, the expression is invalid. 7331 7332 // If there's a non-vector, non-real operand, diagnose that. 7333 if ((!RHSVecType && !RHSType->isRealType()) || 7334 (!LHSVecType && !LHSType->isRealType())) { 7335 Diag(Loc, diag::err_typecheck_vector_not_convertable_non_scalar) 7336 << LHSType << RHSType 7337 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7338 return QualType(); 7339 } 7340 7341 // Otherwise, use the generic diagnostic. 7342 Diag(Loc, diag::err_typecheck_vector_not_convertable) 7343 << LHSType << RHSType 7344 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7345 return QualType(); 7346 } 7347 7348 // checkArithmeticNull - Detect when a NULL constant is used improperly in an 7349 // expression. These are mainly cases where the null pointer is used as an 7350 // integer instead of a pointer. 7351 static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS, 7352 SourceLocation Loc, bool IsCompare) { 7353 // The canonical way to check for a GNU null is with isNullPointerConstant, 7354 // but we use a bit of a hack here for speed; this is a relatively 7355 // hot path, and isNullPointerConstant is slow. 7356 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); 7357 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); 7358 7359 QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType(); 7360 7361 // Avoid analyzing cases where the result will either be invalid (and 7362 // diagnosed as such) or entirely valid and not something to warn about. 7363 if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() || 7364 NonNullType->isMemberPointerType() || NonNullType->isFunctionType()) 7365 return; 7366 7367 // Comparison operations would not make sense with a null pointer no matter 7368 // what the other expression is. 7369 if (!IsCompare) { 7370 S.Diag(Loc, diag::warn_null_in_arithmetic_operation) 7371 << (LHSNull ? LHS.get()->getSourceRange() : SourceRange()) 7372 << (RHSNull ? RHS.get()->getSourceRange() : SourceRange()); 7373 return; 7374 } 7375 7376 // The rest of the operations only make sense with a null pointer 7377 // if the other expression is a pointer. 7378 if (LHSNull == RHSNull || NonNullType->isAnyPointerType() || 7379 NonNullType->canDecayToPointerType()) 7380 return; 7381 7382 S.Diag(Loc, diag::warn_null_in_comparison_operation) 7383 << LHSNull /* LHS is NULL */ << NonNullType 7384 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7385 } 7386 7387 QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS, 7388 SourceLocation Loc, 7389 bool IsCompAssign, bool IsDiv) { 7390 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7391 7392 if (LHS.get()->getType()->isVectorType() || 7393 RHS.get()->getType()->isVectorType()) 7394 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 7395 7396 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); 7397 if (LHS.isInvalid() || RHS.isInvalid()) 7398 return QualType(); 7399 7400 7401 if (compType.isNull() || !compType->isArithmeticType()) 7402 return InvalidOperands(Loc, LHS, RHS); 7403 7404 // Check for division by zero. 7405 llvm::APSInt RHSValue; 7406 if (IsDiv && !RHS.get()->isValueDependent() && 7407 RHS.get()->EvaluateAsInt(RHSValue, Context) && RHSValue == 0) 7408 DiagRuntimeBehavior(Loc, RHS.get(), 7409 PDiag(diag::warn_division_by_zero) 7410 << RHS.get()->getSourceRange()); 7411 7412 return compType; 7413 } 7414 7415 QualType Sema::CheckRemainderOperands( 7416 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { 7417 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7418 7419 if (LHS.get()->getType()->isVectorType() || 7420 RHS.get()->getType()->isVectorType()) { 7421 if (LHS.get()->getType()->hasIntegerRepresentation() && 7422 RHS.get()->getType()->hasIntegerRepresentation()) 7423 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 7424 return InvalidOperands(Loc, LHS, RHS); 7425 } 7426 7427 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); 7428 if (LHS.isInvalid() || RHS.isInvalid()) 7429 return QualType(); 7430 7431 if (compType.isNull() || !compType->isIntegerType()) 7432 return InvalidOperands(Loc, LHS, RHS); 7433 7434 // Check for remainder by zero. 7435 llvm::APSInt RHSValue; 7436 if (!RHS.get()->isValueDependent() && 7437 RHS.get()->EvaluateAsInt(RHSValue, Context) && RHSValue == 0) 7438 DiagRuntimeBehavior(Loc, RHS.get(), 7439 PDiag(diag::warn_remainder_by_zero) 7440 << RHS.get()->getSourceRange()); 7441 7442 return compType; 7443 } 7444 7445 /// \brief Diagnose invalid arithmetic on two void pointers. 7446 static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc, 7447 Expr *LHSExpr, Expr *RHSExpr) { 7448 S.Diag(Loc, S.getLangOpts().CPlusPlus 7449 ? diag::err_typecheck_pointer_arith_void_type 7450 : diag::ext_gnu_void_ptr) 7451 << 1 /* two pointers */ << LHSExpr->getSourceRange() 7452 << RHSExpr->getSourceRange(); 7453 } 7454 7455 /// \brief Diagnose invalid arithmetic on a void pointer. 7456 static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc, 7457 Expr *Pointer) { 7458 S.Diag(Loc, S.getLangOpts().CPlusPlus 7459 ? diag::err_typecheck_pointer_arith_void_type 7460 : diag::ext_gnu_void_ptr) 7461 << 0 /* one pointer */ << Pointer->getSourceRange(); 7462 } 7463 7464 /// \brief Diagnose invalid arithmetic on two function pointers. 7465 static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc, 7466 Expr *LHS, Expr *RHS) { 7467 assert(LHS->getType()->isAnyPointerType()); 7468 assert(RHS->getType()->isAnyPointerType()); 7469 S.Diag(Loc, S.getLangOpts().CPlusPlus 7470 ? diag::err_typecheck_pointer_arith_function_type 7471 : diag::ext_gnu_ptr_func_arith) 7472 << 1 /* two pointers */ << LHS->getType()->getPointeeType() 7473 // We only show the second type if it differs from the first. 7474 << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(), 7475 RHS->getType()) 7476 << RHS->getType()->getPointeeType() 7477 << LHS->getSourceRange() << RHS->getSourceRange(); 7478 } 7479 7480 /// \brief Diagnose invalid arithmetic on a function pointer. 7481 static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc, 7482 Expr *Pointer) { 7483 assert(Pointer->getType()->isAnyPointerType()); 7484 S.Diag(Loc, S.getLangOpts().CPlusPlus 7485 ? diag::err_typecheck_pointer_arith_function_type 7486 : diag::ext_gnu_ptr_func_arith) 7487 << 0 /* one pointer */ << Pointer->getType()->getPointeeType() 7488 << 0 /* one pointer, so only one type */ 7489 << Pointer->getSourceRange(); 7490 } 7491 7492 /// \brief Emit error if Operand is incomplete pointer type 7493 /// 7494 /// \returns True if pointer has incomplete type 7495 static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc, 7496 Expr *Operand) { 7497 QualType ResType = Operand->getType(); 7498 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 7499 ResType = ResAtomicType->getValueType(); 7500 7501 assert(ResType->isAnyPointerType() && !ResType->isDependentType()); 7502 QualType PointeeTy = ResType->getPointeeType(); 7503 return S.RequireCompleteType(Loc, PointeeTy, 7504 diag::err_typecheck_arithmetic_incomplete_type, 7505 PointeeTy, Operand->getSourceRange()); 7506 } 7507 7508 /// \brief Check the validity of an arithmetic pointer operand. 7509 /// 7510 /// If the operand has pointer type, this code will check for pointer types 7511 /// which are invalid in arithmetic operations. These will be diagnosed 7512 /// appropriately, including whether or not the use is supported as an 7513 /// extension. 7514 /// 7515 /// \returns True when the operand is valid to use (even if as an extension). 7516 static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc, 7517 Expr *Operand) { 7518 QualType ResType = Operand->getType(); 7519 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 7520 ResType = ResAtomicType->getValueType(); 7521 7522 if (!ResType->isAnyPointerType()) return true; 7523 7524 QualType PointeeTy = ResType->getPointeeType(); 7525 if (PointeeTy->isVoidType()) { 7526 diagnoseArithmeticOnVoidPointer(S, Loc, Operand); 7527 return !S.getLangOpts().CPlusPlus; 7528 } 7529 if (PointeeTy->isFunctionType()) { 7530 diagnoseArithmeticOnFunctionPointer(S, Loc, Operand); 7531 return !S.getLangOpts().CPlusPlus; 7532 } 7533 7534 if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false; 7535 7536 return true; 7537 } 7538 7539 /// \brief Check the validity of a binary arithmetic operation w.r.t. pointer 7540 /// operands. 7541 /// 7542 /// This routine will diagnose any invalid arithmetic on pointer operands much 7543 /// like \see checkArithmeticOpPointerOperand. However, it has special logic 7544 /// for emitting a single diagnostic even for operations where both LHS and RHS 7545 /// are (potentially problematic) pointers. 7546 /// 7547 /// \returns True when the operand is valid to use (even if as an extension). 7548 static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc, 7549 Expr *LHSExpr, Expr *RHSExpr) { 7550 bool isLHSPointer = LHSExpr->getType()->isAnyPointerType(); 7551 bool isRHSPointer = RHSExpr->getType()->isAnyPointerType(); 7552 if (!isLHSPointer && !isRHSPointer) return true; 7553 7554 QualType LHSPointeeTy, RHSPointeeTy; 7555 if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType(); 7556 if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType(); 7557 7558 // if both are pointers check if operation is valid wrt address spaces 7559 if (isLHSPointer && isRHSPointer) { 7560 const PointerType *lhsPtr = LHSExpr->getType()->getAs<PointerType>(); 7561 const PointerType *rhsPtr = RHSExpr->getType()->getAs<PointerType>(); 7562 if (!lhsPtr->isAddressSpaceOverlapping(*rhsPtr)) { 7563 S.Diag(Loc, 7564 diag::err_typecheck_op_on_nonoverlapping_address_space_pointers) 7565 << LHSExpr->getType() << RHSExpr->getType() << 1 /*arithmetic op*/ 7566 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange(); 7567 return false; 7568 } 7569 } 7570 7571 // Check for arithmetic on pointers to incomplete types. 7572 bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType(); 7573 bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType(); 7574 if (isLHSVoidPtr || isRHSVoidPtr) { 7575 if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr); 7576 else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr); 7577 else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr); 7578 7579 return !S.getLangOpts().CPlusPlus; 7580 } 7581 7582 bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType(); 7583 bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType(); 7584 if (isLHSFuncPtr || isRHSFuncPtr) { 7585 if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr); 7586 else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, 7587 RHSExpr); 7588 else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr); 7589 7590 return !S.getLangOpts().CPlusPlus; 7591 } 7592 7593 if (isLHSPointer && checkArithmeticIncompletePointerType(S, Loc, LHSExpr)) 7594 return false; 7595 if (isRHSPointer && checkArithmeticIncompletePointerType(S, Loc, RHSExpr)) 7596 return false; 7597 7598 return true; 7599 } 7600 7601 /// diagnoseStringPlusInt - Emit a warning when adding an integer to a string 7602 /// literal. 7603 static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc, 7604 Expr *LHSExpr, Expr *RHSExpr) { 7605 StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts()); 7606 Expr* IndexExpr = RHSExpr; 7607 if (!StrExpr) { 7608 StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts()); 7609 IndexExpr = LHSExpr; 7610 } 7611 7612 bool IsStringPlusInt = StrExpr && 7613 IndexExpr->getType()->isIntegralOrUnscopedEnumerationType(); 7614 if (!IsStringPlusInt || IndexExpr->isValueDependent()) 7615 return; 7616 7617 llvm::APSInt index; 7618 if (IndexExpr->EvaluateAsInt(index, Self.getASTContext())) { 7619 unsigned StrLenWithNull = StrExpr->getLength() + 1; 7620 if (index.isNonNegative() && 7621 index <= llvm::APSInt(llvm::APInt(index.getBitWidth(), StrLenWithNull), 7622 index.isUnsigned())) 7623 return; 7624 } 7625 7626 SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd()); 7627 Self.Diag(OpLoc, diag::warn_string_plus_int) 7628 << DiagRange << IndexExpr->IgnoreImpCasts()->getType(); 7629 7630 // Only print a fixit for "str" + int, not for int + "str". 7631 if (IndexExpr == RHSExpr) { 7632 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd()); 7633 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence) 7634 << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&") 7635 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[") 7636 << FixItHint::CreateInsertion(EndLoc, "]"); 7637 } else 7638 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence); 7639 } 7640 7641 /// \brief Emit a warning when adding a char literal to a string. 7642 static void diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc, 7643 Expr *LHSExpr, Expr *RHSExpr) { 7644 const Expr *StringRefExpr = LHSExpr; 7645 const CharacterLiteral *CharExpr = 7646 dyn_cast<CharacterLiteral>(RHSExpr->IgnoreImpCasts()); 7647 7648 if (!CharExpr) { 7649 CharExpr = dyn_cast<CharacterLiteral>(LHSExpr->IgnoreImpCasts()); 7650 StringRefExpr = RHSExpr; 7651 } 7652 7653 if (!CharExpr || !StringRefExpr) 7654 return; 7655 7656 const QualType StringType = StringRefExpr->getType(); 7657 7658 // Return if not a PointerType. 7659 if (!StringType->isAnyPointerType()) 7660 return; 7661 7662 // Return if not a CharacterType. 7663 if (!StringType->getPointeeType()->isAnyCharacterType()) 7664 return; 7665 7666 ASTContext &Ctx = Self.getASTContext(); 7667 SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd()); 7668 7669 const QualType CharType = CharExpr->getType(); 7670 if (!CharType->isAnyCharacterType() && 7671 CharType->isIntegerType() && 7672 llvm::isUIntN(Ctx.getCharWidth(), CharExpr->getValue())) { 7673 Self.Diag(OpLoc, diag::warn_string_plus_char) 7674 << DiagRange << Ctx.CharTy; 7675 } else { 7676 Self.Diag(OpLoc, diag::warn_string_plus_char) 7677 << DiagRange << CharExpr->getType(); 7678 } 7679 7680 // Only print a fixit for str + char, not for char + str. 7681 if (isa<CharacterLiteral>(RHSExpr->IgnoreImpCasts())) { 7682 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd()); 7683 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence) 7684 << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&") 7685 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[") 7686 << FixItHint::CreateInsertion(EndLoc, "]"); 7687 } else { 7688 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence); 7689 } 7690 } 7691 7692 /// \brief Emit error when two pointers are incompatible. 7693 static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc, 7694 Expr *LHSExpr, Expr *RHSExpr) { 7695 assert(LHSExpr->getType()->isAnyPointerType()); 7696 assert(RHSExpr->getType()->isAnyPointerType()); 7697 S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible) 7698 << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange() 7699 << RHSExpr->getSourceRange(); 7700 } 7701 7702 QualType Sema::CheckAdditionOperands( // C99 6.5.6 7703 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc, 7704 QualType* CompLHSTy) { 7705 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7706 7707 if (LHS.get()->getType()->isVectorType() || 7708 RHS.get()->getType()->isVectorType()) { 7709 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); 7710 if (CompLHSTy) *CompLHSTy = compType; 7711 return compType; 7712 } 7713 7714 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); 7715 if (LHS.isInvalid() || RHS.isInvalid()) 7716 return QualType(); 7717 7718 // Diagnose "string literal" '+' int and string '+' "char literal". 7719 if (Opc == BO_Add) { 7720 diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get()); 7721 diagnoseStringPlusChar(*this, Loc, LHS.get(), RHS.get()); 7722 } 7723 7724 // handle the common case first (both operands are arithmetic). 7725 if (!compType.isNull() && compType->isArithmeticType()) { 7726 if (CompLHSTy) *CompLHSTy = compType; 7727 return compType; 7728 } 7729 7730 // Type-checking. Ultimately the pointer's going to be in PExp; 7731 // note that we bias towards the LHS being the pointer. 7732 Expr *PExp = LHS.get(), *IExp = RHS.get(); 7733 7734 bool isObjCPointer; 7735 if (PExp->getType()->isPointerType()) { 7736 isObjCPointer = false; 7737 } else if (PExp->getType()->isObjCObjectPointerType()) { 7738 isObjCPointer = true; 7739 } else { 7740 std::swap(PExp, IExp); 7741 if (PExp->getType()->isPointerType()) { 7742 isObjCPointer = false; 7743 } else if (PExp->getType()->isObjCObjectPointerType()) { 7744 isObjCPointer = true; 7745 } else { 7746 return InvalidOperands(Loc, LHS, RHS); 7747 } 7748 } 7749 assert(PExp->getType()->isAnyPointerType()); 7750 7751 if (!IExp->getType()->isIntegerType()) 7752 return InvalidOperands(Loc, LHS, RHS); 7753 7754 if (!checkArithmeticOpPointerOperand(*this, Loc, PExp)) 7755 return QualType(); 7756 7757 if (isObjCPointer && checkArithmeticOnObjCPointer(*this, Loc, PExp)) 7758 return QualType(); 7759 7760 // Check array bounds for pointer arithemtic 7761 CheckArrayAccess(PExp, IExp); 7762 7763 if (CompLHSTy) { 7764 QualType LHSTy = Context.isPromotableBitField(LHS.get()); 7765 if (LHSTy.isNull()) { 7766 LHSTy = LHS.get()->getType(); 7767 if (LHSTy->isPromotableIntegerType()) 7768 LHSTy = Context.getPromotedIntegerType(LHSTy); 7769 } 7770 *CompLHSTy = LHSTy; 7771 } 7772 7773 return PExp->getType(); 7774 } 7775 7776 // C99 6.5.6 7777 QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS, 7778 SourceLocation Loc, 7779 QualType* CompLHSTy) { 7780 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7781 7782 if (LHS.get()->getType()->isVectorType() || 7783 RHS.get()->getType()->isVectorType()) { 7784 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); 7785 if (CompLHSTy) *CompLHSTy = compType; 7786 return compType; 7787 } 7788 7789 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); 7790 if (LHS.isInvalid() || RHS.isInvalid()) 7791 return QualType(); 7792 7793 // Enforce type constraints: C99 6.5.6p3. 7794 7795 // Handle the common case first (both operands are arithmetic). 7796 if (!compType.isNull() && compType->isArithmeticType()) { 7797 if (CompLHSTy) *CompLHSTy = compType; 7798 return compType; 7799 } 7800 7801 // Either ptr - int or ptr - ptr. 7802 if (LHS.get()->getType()->isAnyPointerType()) { 7803 QualType lpointee = LHS.get()->getType()->getPointeeType(); 7804 7805 // Diagnose bad cases where we step over interface counts. 7806 if (LHS.get()->getType()->isObjCObjectPointerType() && 7807 checkArithmeticOnObjCPointer(*this, Loc, LHS.get())) 7808 return QualType(); 7809 7810 // The result type of a pointer-int computation is the pointer type. 7811 if (RHS.get()->getType()->isIntegerType()) { 7812 if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get())) 7813 return QualType(); 7814 7815 // Check array bounds for pointer arithemtic 7816 CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/nullptr, 7817 /*AllowOnePastEnd*/true, /*IndexNegated*/true); 7818 7819 if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); 7820 return LHS.get()->getType(); 7821 } 7822 7823 // Handle pointer-pointer subtractions. 7824 if (const PointerType *RHSPTy 7825 = RHS.get()->getType()->getAs<PointerType>()) { 7826 QualType rpointee = RHSPTy->getPointeeType(); 7827 7828 if (getLangOpts().CPlusPlus) { 7829 // Pointee types must be the same: C++ [expr.add] 7830 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { 7831 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); 7832 } 7833 } else { 7834 // Pointee types must be compatible C99 6.5.6p3 7835 if (!Context.typesAreCompatible( 7836 Context.getCanonicalType(lpointee).getUnqualifiedType(), 7837 Context.getCanonicalType(rpointee).getUnqualifiedType())) { 7838 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); 7839 return QualType(); 7840 } 7841 } 7842 7843 if (!checkArithmeticBinOpPointerOperands(*this, Loc, 7844 LHS.get(), RHS.get())) 7845 return QualType(); 7846 7847 // The pointee type may have zero size. As an extension, a structure or 7848 // union may have zero size or an array may have zero length. In this 7849 // case subtraction does not make sense. 7850 if (!rpointee->isVoidType() && !rpointee->isFunctionType()) { 7851 CharUnits ElementSize = Context.getTypeSizeInChars(rpointee); 7852 if (ElementSize.isZero()) { 7853 Diag(Loc,diag::warn_sub_ptr_zero_size_types) 7854 << rpointee.getUnqualifiedType() 7855 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7856 } 7857 } 7858 7859 if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); 7860 return Context.getPointerDiffType(); 7861 } 7862 } 7863 7864 return InvalidOperands(Loc, LHS, RHS); 7865 } 7866 7867 static bool isScopedEnumerationType(QualType T) { 7868 if (const EnumType *ET = T->getAs<EnumType>()) 7869 return ET->getDecl()->isScoped(); 7870 return false; 7871 } 7872 7873 static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, 7874 SourceLocation Loc, unsigned Opc, 7875 QualType LHSType) { 7876 // OpenCL 6.3j: shift values are effectively % word size of LHS (more defined), 7877 // so skip remaining warnings as we don't want to modify values within Sema. 7878 if (S.getLangOpts().OpenCL) 7879 return; 7880 7881 llvm::APSInt Right; 7882 // Check right/shifter operand 7883 if (RHS.get()->isValueDependent() || 7884 !RHS.get()->EvaluateAsInt(Right, S.Context)) 7885 return; 7886 7887 if (Right.isNegative()) { 7888 S.DiagRuntimeBehavior(Loc, RHS.get(), 7889 S.PDiag(diag::warn_shift_negative) 7890 << RHS.get()->getSourceRange()); 7891 return; 7892 } 7893 llvm::APInt LeftBits(Right.getBitWidth(), 7894 S.Context.getTypeSize(LHS.get()->getType())); 7895 if (Right.uge(LeftBits)) { 7896 S.DiagRuntimeBehavior(Loc, RHS.get(), 7897 S.PDiag(diag::warn_shift_gt_typewidth) 7898 << RHS.get()->getSourceRange()); 7899 return; 7900 } 7901 if (Opc != BO_Shl) 7902 return; 7903 7904 // When left shifting an ICE which is signed, we can check for overflow which 7905 // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned 7906 // integers have defined behavior modulo one more than the maximum value 7907 // representable in the result type, so never warn for those. 7908 llvm::APSInt Left; 7909 if (LHS.get()->isValueDependent() || 7910 LHSType->hasUnsignedIntegerRepresentation() || 7911 !LHS.get()->EvaluateAsInt(Left, S.Context)) 7912 return; 7913 7914 // If LHS does not have a signed type and non-negative value 7915 // then, the behavior is undefined. Warn about it. 7916 if (Left.isNegative()) { 7917 S.DiagRuntimeBehavior(Loc, LHS.get(), 7918 S.PDiag(diag::warn_shift_lhs_negative) 7919 << LHS.get()->getSourceRange()); 7920 return; 7921 } 7922 7923 llvm::APInt ResultBits = 7924 static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits(); 7925 if (LeftBits.uge(ResultBits)) 7926 return; 7927 llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue()); 7928 Result = Result.shl(Right); 7929 7930 // Print the bit representation of the signed integer as an unsigned 7931 // hexadecimal number. 7932 SmallString<40> HexResult; 7933 Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true); 7934 7935 // If we are only missing a sign bit, this is less likely to result in actual 7936 // bugs -- if the result is cast back to an unsigned type, it will have the 7937 // expected value. Thus we place this behind a different warning that can be 7938 // turned off separately if needed. 7939 if (LeftBits == ResultBits - 1) { 7940 S.Diag(Loc, diag::warn_shift_result_sets_sign_bit) 7941 << HexResult << LHSType 7942 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7943 return; 7944 } 7945 7946 S.Diag(Loc, diag::warn_shift_result_gt_typewidth) 7947 << HexResult.str() << Result.getMinSignedBits() << LHSType 7948 << Left.getBitWidth() << LHS.get()->getSourceRange() 7949 << RHS.get()->getSourceRange(); 7950 } 7951 7952 /// \brief Return the resulting type when an OpenCL vector is shifted 7953 /// by a scalar or vector shift amount. 7954 static QualType checkOpenCLVectorShift(Sema &S, 7955 ExprResult &LHS, ExprResult &RHS, 7956 SourceLocation Loc, bool IsCompAssign) { 7957 // OpenCL v1.1 s6.3.j says RHS can be a vector only if LHS is a vector. 7958 if (!LHS.get()->getType()->isVectorType()) { 7959 S.Diag(Loc, diag::err_shift_rhs_only_vector) 7960 << RHS.get()->getType() << LHS.get()->getType() 7961 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7962 return QualType(); 7963 } 7964 7965 if (!IsCompAssign) { 7966 LHS = S.UsualUnaryConversions(LHS.get()); 7967 if (LHS.isInvalid()) return QualType(); 7968 } 7969 7970 RHS = S.UsualUnaryConversions(RHS.get()); 7971 if (RHS.isInvalid()) return QualType(); 7972 7973 QualType LHSType = LHS.get()->getType(); 7974 const VectorType *LHSVecTy = LHSType->getAs<VectorType>(); 7975 QualType LHSEleType = LHSVecTy->getElementType(); 7976 7977 // Note that RHS might not be a vector. 7978 QualType RHSType = RHS.get()->getType(); 7979 const VectorType *RHSVecTy = RHSType->getAs<VectorType>(); 7980 QualType RHSEleType = RHSVecTy ? RHSVecTy->getElementType() : RHSType; 7981 7982 // OpenCL v1.1 s6.3.j says that the operands need to be integers. 7983 if (!LHSEleType->isIntegerType()) { 7984 S.Diag(Loc, diag::err_typecheck_expect_int) 7985 << LHS.get()->getType() << LHS.get()->getSourceRange(); 7986 return QualType(); 7987 } 7988 7989 if (!RHSEleType->isIntegerType()) { 7990 S.Diag(Loc, diag::err_typecheck_expect_int) 7991 << RHS.get()->getType() << RHS.get()->getSourceRange(); 7992 return QualType(); 7993 } 7994 7995 if (RHSVecTy) { 7996 // OpenCL v1.1 s6.3.j says that for vector types, the operators 7997 // are applied component-wise. So if RHS is a vector, then ensure 7998 // that the number of elements is the same as LHS... 7999 if (RHSVecTy->getNumElements() != LHSVecTy->getNumElements()) { 8000 S.Diag(Loc, diag::err_typecheck_vector_lengths_not_equal) 8001 << LHS.get()->getType() << RHS.get()->getType() 8002 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8003 return QualType(); 8004 } 8005 } else { 8006 // ...else expand RHS to match the number of elements in LHS. 8007 QualType VecTy = 8008 S.Context.getExtVectorType(RHSEleType, LHSVecTy->getNumElements()); 8009 RHS = S.ImpCastExprToType(RHS.get(), VecTy, CK_VectorSplat); 8010 } 8011 8012 return LHSType; 8013 } 8014 8015 // C99 6.5.7 8016 QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS, 8017 SourceLocation Loc, unsigned Opc, 8018 bool IsCompAssign) { 8019 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 8020 8021 // Vector shifts promote their scalar inputs to vector type. 8022 if (LHS.get()->getType()->isVectorType() || 8023 RHS.get()->getType()->isVectorType()) { 8024 if (LangOpts.OpenCL) 8025 return checkOpenCLVectorShift(*this, LHS, RHS, Loc, IsCompAssign); 8026 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 8027 } 8028 8029 // Shifts don't perform usual arithmetic conversions, they just do integer 8030 // promotions on each operand. C99 6.5.7p3 8031 8032 // For the LHS, do usual unary conversions, but then reset them away 8033 // if this is a compound assignment. 8034 ExprResult OldLHS = LHS; 8035 LHS = UsualUnaryConversions(LHS.get()); 8036 if (LHS.isInvalid()) 8037 return QualType(); 8038 QualType LHSType = LHS.get()->getType(); 8039 if (IsCompAssign) LHS = OldLHS; 8040 8041 // The RHS is simpler. 8042 RHS = UsualUnaryConversions(RHS.get()); 8043 if (RHS.isInvalid()) 8044 return QualType(); 8045 QualType RHSType = RHS.get()->getType(); 8046 8047 // C99 6.5.7p2: Each of the operands shall have integer type. 8048 if (!LHSType->hasIntegerRepresentation() || 8049 !RHSType->hasIntegerRepresentation()) 8050 return InvalidOperands(Loc, LHS, RHS); 8051 8052 // C++0x: Don't allow scoped enums. FIXME: Use something better than 8053 // hasIntegerRepresentation() above instead of this. 8054 if (isScopedEnumerationType(LHSType) || 8055 isScopedEnumerationType(RHSType)) { 8056 return InvalidOperands(Loc, LHS, RHS); 8057 } 8058 // Sanity-check shift operands 8059 DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType); 8060 8061 // "The type of the result is that of the promoted left operand." 8062 return LHSType; 8063 } 8064 8065 static bool IsWithinTemplateSpecialization(Decl *D) { 8066 if (DeclContext *DC = D->getDeclContext()) { 8067 if (isa<ClassTemplateSpecializationDecl>(DC)) 8068 return true; 8069 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) 8070 return FD->isFunctionTemplateSpecialization(); 8071 } 8072 return false; 8073 } 8074 8075 /// If two different enums are compared, raise a warning. 8076 static void checkEnumComparison(Sema &S, SourceLocation Loc, Expr *LHS, 8077 Expr *RHS) { 8078 QualType LHSStrippedType = LHS->IgnoreParenImpCasts()->getType(); 8079 QualType RHSStrippedType = RHS->IgnoreParenImpCasts()->getType(); 8080 8081 const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>(); 8082 if (!LHSEnumType) 8083 return; 8084 const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>(); 8085 if (!RHSEnumType) 8086 return; 8087 8088 // Ignore anonymous enums. 8089 if (!LHSEnumType->getDecl()->getIdentifier()) 8090 return; 8091 if (!RHSEnumType->getDecl()->getIdentifier()) 8092 return; 8093 8094 if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType)) 8095 return; 8096 8097 S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types) 8098 << LHSStrippedType << RHSStrippedType 8099 << LHS->getSourceRange() << RHS->getSourceRange(); 8100 } 8101 8102 /// \brief Diagnose bad pointer comparisons. 8103 static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc, 8104 ExprResult &LHS, ExprResult &RHS, 8105 bool IsError) { 8106 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers 8107 : diag::ext_typecheck_comparison_of_distinct_pointers) 8108 << LHS.get()->getType() << RHS.get()->getType() 8109 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8110 } 8111 8112 /// \brief Returns false if the pointers are converted to a composite type, 8113 /// true otherwise. 8114 static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc, 8115 ExprResult &LHS, ExprResult &RHS) { 8116 // C++ [expr.rel]p2: 8117 // [...] Pointer conversions (4.10) and qualification 8118 // conversions (4.4) are performed on pointer operands (or on 8119 // a pointer operand and a null pointer constant) to bring 8120 // them to their composite pointer type. [...] 8121 // 8122 // C++ [expr.eq]p1 uses the same notion for (in)equality 8123 // comparisons of pointers. 8124 8125 // C++ [expr.eq]p2: 8126 // In addition, pointers to members can be compared, or a pointer to 8127 // member and a null pointer constant. Pointer to member conversions 8128 // (4.11) and qualification conversions (4.4) are performed to bring 8129 // them to a common type. If one operand is a null pointer constant, 8130 // the common type is the type of the other operand. Otherwise, the 8131 // common type is a pointer to member type similar (4.4) to the type 8132 // of one of the operands, with a cv-qualification signature (4.4) 8133 // that is the union of the cv-qualification signatures of the operand 8134 // types. 8135 8136 QualType LHSType = LHS.get()->getType(); 8137 QualType RHSType = RHS.get()->getType(); 8138 assert((LHSType->isPointerType() && RHSType->isPointerType()) || 8139 (LHSType->isMemberPointerType() && RHSType->isMemberPointerType())); 8140 8141 bool NonStandardCompositeType = false; 8142 bool *BoolPtr = S.isSFINAEContext() ? nullptr : &NonStandardCompositeType; 8143 QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr); 8144 if (T.isNull()) { 8145 diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true); 8146 return true; 8147 } 8148 8149 if (NonStandardCompositeType) 8150 S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard) 8151 << LHSType << RHSType << T << LHS.get()->getSourceRange() 8152 << RHS.get()->getSourceRange(); 8153 8154 LHS = S.ImpCastExprToType(LHS.get(), T, CK_BitCast); 8155 RHS = S.ImpCastExprToType(RHS.get(), T, CK_BitCast); 8156 return false; 8157 } 8158 8159 static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc, 8160 ExprResult &LHS, 8161 ExprResult &RHS, 8162 bool IsError) { 8163 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void 8164 : diag::ext_typecheck_comparison_of_fptr_to_void) 8165 << LHS.get()->getType() << RHS.get()->getType() 8166 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8167 } 8168 8169 static bool isObjCObjectLiteral(ExprResult &E) { 8170 switch (E.get()->IgnoreParenImpCasts()->getStmtClass()) { 8171 case Stmt::ObjCArrayLiteralClass: 8172 case Stmt::ObjCDictionaryLiteralClass: 8173 case Stmt::ObjCStringLiteralClass: 8174 case Stmt::ObjCBoxedExprClass: 8175 return true; 8176 default: 8177 // Note that ObjCBoolLiteral is NOT an object literal! 8178 return false; 8179 } 8180 } 8181 8182 static bool hasIsEqualMethod(Sema &S, const Expr *LHS, const Expr *RHS) { 8183 const ObjCObjectPointerType *Type = 8184 LHS->getType()->getAs<ObjCObjectPointerType>(); 8185 8186 // If this is not actually an Objective-C object, bail out. 8187 if (!Type) 8188 return false; 8189 8190 // Get the LHS object's interface type. 8191 QualType InterfaceType = Type->getPointeeType(); 8192 8193 // If the RHS isn't an Objective-C object, bail out. 8194 if (!RHS->getType()->isObjCObjectPointerType()) 8195 return false; 8196 8197 // Try to find the -isEqual: method. 8198 Selector IsEqualSel = S.NSAPIObj->getIsEqualSelector(); 8199 ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel, 8200 InterfaceType, 8201 /*instance=*/true); 8202 if (!Method) { 8203 if (Type->isObjCIdType()) { 8204 // For 'id', just check the global pool. 8205 Method = S.LookupInstanceMethodInGlobalPool(IsEqualSel, SourceRange(), 8206 /*receiverId=*/true); 8207 } else { 8208 // Check protocols. 8209 Method = S.LookupMethodInQualifiedType(IsEqualSel, Type, 8210 /*instance=*/true); 8211 } 8212 } 8213 8214 if (!Method) 8215 return false; 8216 8217 QualType T = Method->parameters()[0]->getType(); 8218 if (!T->isObjCObjectPointerType()) 8219 return false; 8220 8221 QualType R = Method->getReturnType(); 8222 if (!R->isScalarType()) 8223 return false; 8224 8225 return true; 8226 } 8227 8228 Sema::ObjCLiteralKind Sema::CheckLiteralKind(Expr *FromE) { 8229 FromE = FromE->IgnoreParenImpCasts(); 8230 switch (FromE->getStmtClass()) { 8231 default: 8232 break; 8233 case Stmt::ObjCStringLiteralClass: 8234 // "string literal" 8235 return LK_String; 8236 case Stmt::ObjCArrayLiteralClass: 8237 // "array literal" 8238 return LK_Array; 8239 case Stmt::ObjCDictionaryLiteralClass: 8240 // "dictionary literal" 8241 return LK_Dictionary; 8242 case Stmt::BlockExprClass: 8243 return LK_Block; 8244 case Stmt::ObjCBoxedExprClass: { 8245 Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens(); 8246 switch (Inner->getStmtClass()) { 8247 case Stmt::IntegerLiteralClass: 8248 case Stmt::FloatingLiteralClass: 8249 case Stmt::CharacterLiteralClass: 8250 case Stmt::ObjCBoolLiteralExprClass: 8251 case Stmt::CXXBoolLiteralExprClass: 8252 // "numeric literal" 8253 return LK_Numeric; 8254 case Stmt::ImplicitCastExprClass: { 8255 CastKind CK = cast<CastExpr>(Inner)->getCastKind(); 8256 // Boolean literals can be represented by implicit casts. 8257 if (CK == CK_IntegralToBoolean || CK == CK_IntegralCast) 8258 return LK_Numeric; 8259 break; 8260 } 8261 default: 8262 break; 8263 } 8264 return LK_Boxed; 8265 } 8266 } 8267 return LK_None; 8268 } 8269 8270 static void diagnoseObjCLiteralComparison(Sema &S, SourceLocation Loc, 8271 ExprResult &LHS, ExprResult &RHS, 8272 BinaryOperator::Opcode Opc){ 8273 Expr *Literal; 8274 Expr *Other; 8275 if (isObjCObjectLiteral(LHS)) { 8276 Literal = LHS.get(); 8277 Other = RHS.get(); 8278 } else { 8279 Literal = RHS.get(); 8280 Other = LHS.get(); 8281 } 8282 8283 // Don't warn on comparisons against nil. 8284 Other = Other->IgnoreParenCasts(); 8285 if (Other->isNullPointerConstant(S.getASTContext(), 8286 Expr::NPC_ValueDependentIsNotNull)) 8287 return; 8288 8289 // This should be kept in sync with warn_objc_literal_comparison. 8290 // LK_String should always be after the other literals, since it has its own 8291 // warning flag. 8292 Sema::ObjCLiteralKind LiteralKind = S.CheckLiteralKind(Literal); 8293 assert(LiteralKind != Sema::LK_Block); 8294 if (LiteralKind == Sema::LK_None) { 8295 llvm_unreachable("Unknown Objective-C object literal kind"); 8296 } 8297 8298 if (LiteralKind == Sema::LK_String) 8299 S.Diag(Loc, diag::warn_objc_string_literal_comparison) 8300 << Literal->getSourceRange(); 8301 else 8302 S.Diag(Loc, diag::warn_objc_literal_comparison) 8303 << LiteralKind << Literal->getSourceRange(); 8304 8305 if (BinaryOperator::isEqualityOp(Opc) && 8306 hasIsEqualMethod(S, LHS.get(), RHS.get())) { 8307 SourceLocation Start = LHS.get()->getLocStart(); 8308 SourceLocation End = S.PP.getLocForEndOfToken(RHS.get()->getLocEnd()); 8309 CharSourceRange OpRange = 8310 CharSourceRange::getCharRange(Loc, S.PP.getLocForEndOfToken(Loc)); 8311 8312 S.Diag(Loc, diag::note_objc_literal_comparison_isequal) 8313 << FixItHint::CreateInsertion(Start, Opc == BO_EQ ? "[" : "![") 8314 << FixItHint::CreateReplacement(OpRange, " isEqual:") 8315 << FixItHint::CreateInsertion(End, "]"); 8316 } 8317 } 8318 8319 static void diagnoseLogicalNotOnLHSofComparison(Sema &S, ExprResult &LHS, 8320 ExprResult &RHS, 8321 SourceLocation Loc, 8322 unsigned OpaqueOpc) { 8323 // This checking requires bools. 8324 if (!S.getLangOpts().Bool) return; 8325 8326 // Check that left hand side is !something. 8327 UnaryOperator *UO = dyn_cast<UnaryOperator>(LHS.get()->IgnoreImpCasts()); 8328 if (!UO || UO->getOpcode() != UO_LNot) return; 8329 8330 // Only check if the right hand side is non-bool arithmetic type. 8331 if (RHS.get()->getType()->isBooleanType()) return; 8332 8333 // Make sure that the something in !something is not bool. 8334 Expr *SubExpr = UO->getSubExpr()->IgnoreImpCasts(); 8335 if (SubExpr->getType()->isBooleanType()) return; 8336 8337 // Emit warning. 8338 S.Diag(UO->getOperatorLoc(), diag::warn_logical_not_on_lhs_of_comparison) 8339 << Loc; 8340 8341 // First note suggest !(x < y) 8342 SourceLocation FirstOpen = SubExpr->getLocStart(); 8343 SourceLocation FirstClose = RHS.get()->getLocEnd(); 8344 FirstClose = S.getPreprocessor().getLocForEndOfToken(FirstClose); 8345 if (FirstClose.isInvalid()) 8346 FirstOpen = SourceLocation(); 8347 S.Diag(UO->getOperatorLoc(), diag::note_logical_not_fix) 8348 << FixItHint::CreateInsertion(FirstOpen, "(") 8349 << FixItHint::CreateInsertion(FirstClose, ")"); 8350 8351 // Second note suggests (!x) < y 8352 SourceLocation SecondOpen = LHS.get()->getLocStart(); 8353 SourceLocation SecondClose = LHS.get()->getLocEnd(); 8354 SecondClose = S.getPreprocessor().getLocForEndOfToken(SecondClose); 8355 if (SecondClose.isInvalid()) 8356 SecondOpen = SourceLocation(); 8357 S.Diag(UO->getOperatorLoc(), diag::note_logical_not_silence_with_parens) 8358 << FixItHint::CreateInsertion(SecondOpen, "(") 8359 << FixItHint::CreateInsertion(SecondClose, ")"); 8360 } 8361 8362 // Get the decl for a simple expression: a reference to a variable, 8363 // an implicit C++ field reference, or an implicit ObjC ivar reference. 8364 static ValueDecl *getCompareDecl(Expr *E) { 8365 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(E)) 8366 return DR->getDecl(); 8367 if (ObjCIvarRefExpr* Ivar = dyn_cast<ObjCIvarRefExpr>(E)) { 8368 if (Ivar->isFreeIvar()) 8369 return Ivar->getDecl(); 8370 } 8371 if (MemberExpr* Mem = dyn_cast<MemberExpr>(E)) { 8372 if (Mem->isImplicitAccess()) 8373 return Mem->getMemberDecl(); 8374 } 8375 return nullptr; 8376 } 8377 8378 // C99 6.5.8, C++ [expr.rel] 8379 QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS, 8380 SourceLocation Loc, unsigned OpaqueOpc, 8381 bool IsRelational) { 8382 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true); 8383 8384 BinaryOperatorKind Opc = (BinaryOperatorKind) OpaqueOpc; 8385 8386 // Handle vector comparisons separately. 8387 if (LHS.get()->getType()->isVectorType() || 8388 RHS.get()->getType()->isVectorType()) 8389 return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational); 8390 8391 QualType LHSType = LHS.get()->getType(); 8392 QualType RHSType = RHS.get()->getType(); 8393 8394 Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts(); 8395 Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts(); 8396 8397 checkEnumComparison(*this, Loc, LHS.get(), RHS.get()); 8398 diagnoseLogicalNotOnLHSofComparison(*this, LHS, RHS, Loc, OpaqueOpc); 8399 8400 if (!LHSType->hasFloatingRepresentation() && 8401 !(LHSType->isBlockPointerType() && IsRelational) && 8402 !LHS.get()->getLocStart().isMacroID() && 8403 !RHS.get()->getLocStart().isMacroID() && 8404 ActiveTemplateInstantiations.empty()) { 8405 // For non-floating point types, check for self-comparisons of the form 8406 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 8407 // often indicate logic errors in the program. 8408 // 8409 // NOTE: Don't warn about comparison expressions resulting from macro 8410 // expansion. Also don't warn about comparisons which are only self 8411 // comparisons within a template specialization. The warnings should catch 8412 // obvious cases in the definition of the template anyways. The idea is to 8413 // warn when the typed comparison operator will always evaluate to the same 8414 // result. 8415 ValueDecl *DL = getCompareDecl(LHSStripped); 8416 ValueDecl *DR = getCompareDecl(RHSStripped); 8417 if (DL && DR && DL == DR && !IsWithinTemplateSpecialization(DL)) { 8418 DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always) 8419 << 0 // self- 8420 << (Opc == BO_EQ 8421 || Opc == BO_LE 8422 || Opc == BO_GE)); 8423 } else if (DL && DR && LHSType->isArrayType() && RHSType->isArrayType() && 8424 !DL->getType()->isReferenceType() && 8425 !DR->getType()->isReferenceType()) { 8426 // what is it always going to eval to? 8427 char always_evals_to; 8428 switch(Opc) { 8429 case BO_EQ: // e.g. array1 == array2 8430 always_evals_to = 0; // false 8431 break; 8432 case BO_NE: // e.g. array1 != array2 8433 always_evals_to = 1; // true 8434 break; 8435 default: 8436 // best we can say is 'a constant' 8437 always_evals_to = 2; // e.g. array1 <= array2 8438 break; 8439 } 8440 DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always) 8441 << 1 // array 8442 << always_evals_to); 8443 } 8444 8445 if (isa<CastExpr>(LHSStripped)) 8446 LHSStripped = LHSStripped->IgnoreParenCasts(); 8447 if (isa<CastExpr>(RHSStripped)) 8448 RHSStripped = RHSStripped->IgnoreParenCasts(); 8449 8450 // Warn about comparisons against a string constant (unless the other 8451 // operand is null), the user probably wants strcmp. 8452 Expr *literalString = nullptr; 8453 Expr *literalStringStripped = nullptr; 8454 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && 8455 !RHSStripped->isNullPointerConstant(Context, 8456 Expr::NPC_ValueDependentIsNull)) { 8457 literalString = LHS.get(); 8458 literalStringStripped = LHSStripped; 8459 } else if ((isa<StringLiteral>(RHSStripped) || 8460 isa<ObjCEncodeExpr>(RHSStripped)) && 8461 !LHSStripped->isNullPointerConstant(Context, 8462 Expr::NPC_ValueDependentIsNull)) { 8463 literalString = RHS.get(); 8464 literalStringStripped = RHSStripped; 8465 } 8466 8467 if (literalString) { 8468 DiagRuntimeBehavior(Loc, nullptr, 8469 PDiag(diag::warn_stringcompare) 8470 << isa<ObjCEncodeExpr>(literalStringStripped) 8471 << literalString->getSourceRange()); 8472 } 8473 } 8474 8475 // C99 6.5.8p3 / C99 6.5.9p4 8476 UsualArithmeticConversions(LHS, RHS); 8477 if (LHS.isInvalid() || RHS.isInvalid()) 8478 return QualType(); 8479 8480 LHSType = LHS.get()->getType(); 8481 RHSType = RHS.get()->getType(); 8482 8483 // The result of comparisons is 'bool' in C++, 'int' in C. 8484 QualType ResultTy = Context.getLogicalOperationType(); 8485 8486 if (IsRelational) { 8487 if (LHSType->isRealType() && RHSType->isRealType()) 8488 return ResultTy; 8489 } else { 8490 // Check for comparisons of floating point operands using != and ==. 8491 if (LHSType->hasFloatingRepresentation()) 8492 CheckFloatComparison(Loc, LHS.get(), RHS.get()); 8493 8494 if (LHSType->isArithmeticType() && RHSType->isArithmeticType()) 8495 return ResultTy; 8496 } 8497 8498 const Expr::NullPointerConstantKind LHSNullKind = 8499 LHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull); 8500 const Expr::NullPointerConstantKind RHSNullKind = 8501 RHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull); 8502 bool LHSIsNull = LHSNullKind != Expr::NPCK_NotNull; 8503 bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull; 8504 8505 if (!IsRelational && LHSIsNull != RHSIsNull) { 8506 bool IsEquality = Opc == BO_EQ; 8507 if (RHSIsNull) 8508 DiagnoseAlwaysNonNullPointer(LHS.get(), RHSNullKind, IsEquality, 8509 RHS.get()->getSourceRange()); 8510 else 8511 DiagnoseAlwaysNonNullPointer(RHS.get(), LHSNullKind, IsEquality, 8512 LHS.get()->getSourceRange()); 8513 } 8514 8515 // All of the following pointer-related warnings are GCC extensions, except 8516 // when handling null pointer constants. 8517 if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2 8518 QualType LCanPointeeTy = 8519 LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); 8520 QualType RCanPointeeTy = 8521 RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); 8522 8523 if (getLangOpts().CPlusPlus) { 8524 if (LCanPointeeTy == RCanPointeeTy) 8525 return ResultTy; 8526 if (!IsRelational && 8527 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { 8528 // Valid unless comparison between non-null pointer and function pointer 8529 // This is a gcc extension compatibility comparison. 8530 // In a SFINAE context, we treat this as a hard error to maintain 8531 // conformance with the C++ standard. 8532 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) 8533 && !LHSIsNull && !RHSIsNull) { 8534 diagnoseFunctionPointerToVoidComparison( 8535 *this, Loc, LHS, RHS, /*isError*/ (bool)isSFINAEContext()); 8536 8537 if (isSFINAEContext()) 8538 return QualType(); 8539 8540 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 8541 return ResultTy; 8542 } 8543 } 8544 8545 if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) 8546 return QualType(); 8547 else 8548 return ResultTy; 8549 } 8550 // C99 6.5.9p2 and C99 6.5.8p2 8551 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), 8552 RCanPointeeTy.getUnqualifiedType())) { 8553 // Valid unless a relational comparison of function pointers 8554 if (IsRelational && LCanPointeeTy->isFunctionType()) { 8555 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) 8556 << LHSType << RHSType << LHS.get()->getSourceRange() 8557 << RHS.get()->getSourceRange(); 8558 } 8559 } else if (!IsRelational && 8560 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { 8561 // Valid unless comparison between non-null pointer and function pointer 8562 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) 8563 && !LHSIsNull && !RHSIsNull) 8564 diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS, 8565 /*isError*/false); 8566 } else { 8567 // Invalid 8568 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false); 8569 } 8570 if (LCanPointeeTy != RCanPointeeTy) { 8571 const PointerType *lhsPtr = LHSType->getAs<PointerType>(); 8572 if (!lhsPtr->isAddressSpaceOverlapping(*RHSType->getAs<PointerType>())) { 8573 Diag(Loc, 8574 diag::err_typecheck_op_on_nonoverlapping_address_space_pointers) 8575 << LHSType << RHSType << 0 /* comparison */ 8576 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8577 } 8578 unsigned AddrSpaceL = LCanPointeeTy.getAddressSpace(); 8579 unsigned AddrSpaceR = RCanPointeeTy.getAddressSpace(); 8580 CastKind Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion 8581 : CK_BitCast; 8582 if (LHSIsNull && !RHSIsNull) 8583 LHS = ImpCastExprToType(LHS.get(), RHSType, Kind); 8584 else 8585 RHS = ImpCastExprToType(RHS.get(), LHSType, Kind); 8586 } 8587 return ResultTy; 8588 } 8589 8590 if (getLangOpts().CPlusPlus) { 8591 // Comparison of nullptr_t with itself. 8592 if (LHSType->isNullPtrType() && RHSType->isNullPtrType()) 8593 return ResultTy; 8594 8595 // Comparison of pointers with null pointer constants and equality 8596 // comparisons of member pointers to null pointer constants. 8597 if (RHSIsNull && 8598 ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) || 8599 (!IsRelational && 8600 (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) { 8601 RHS = ImpCastExprToType(RHS.get(), LHSType, 8602 LHSType->isMemberPointerType() 8603 ? CK_NullToMemberPointer 8604 : CK_NullToPointer); 8605 return ResultTy; 8606 } 8607 if (LHSIsNull && 8608 ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) || 8609 (!IsRelational && 8610 (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) { 8611 LHS = ImpCastExprToType(LHS.get(), RHSType, 8612 RHSType->isMemberPointerType() 8613 ? CK_NullToMemberPointer 8614 : CK_NullToPointer); 8615 return ResultTy; 8616 } 8617 8618 // Comparison of member pointers. 8619 if (!IsRelational && 8620 LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) { 8621 if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) 8622 return QualType(); 8623 else 8624 return ResultTy; 8625 } 8626 8627 // Handle scoped enumeration types specifically, since they don't promote 8628 // to integers. 8629 if (LHS.get()->getType()->isEnumeralType() && 8630 Context.hasSameUnqualifiedType(LHS.get()->getType(), 8631 RHS.get()->getType())) 8632 return ResultTy; 8633 } 8634 8635 // Handle block pointer types. 8636 if (!IsRelational && LHSType->isBlockPointerType() && 8637 RHSType->isBlockPointerType()) { 8638 QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType(); 8639 QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType(); 8640 8641 if (!LHSIsNull && !RHSIsNull && 8642 !Context.typesAreCompatible(lpointee, rpointee)) { 8643 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 8644 << LHSType << RHSType << LHS.get()->getSourceRange() 8645 << RHS.get()->getSourceRange(); 8646 } 8647 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 8648 return ResultTy; 8649 } 8650 8651 // Allow block pointers to be compared with null pointer constants. 8652 if (!IsRelational 8653 && ((LHSType->isBlockPointerType() && RHSType->isPointerType()) 8654 || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) { 8655 if (!LHSIsNull && !RHSIsNull) { 8656 if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>() 8657 ->getPointeeType()->isVoidType()) 8658 || (LHSType->isPointerType() && LHSType->castAs<PointerType>() 8659 ->getPointeeType()->isVoidType()))) 8660 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 8661 << LHSType << RHSType << LHS.get()->getSourceRange() 8662 << RHS.get()->getSourceRange(); 8663 } 8664 if (LHSIsNull && !RHSIsNull) 8665 LHS = ImpCastExprToType(LHS.get(), RHSType, 8666 RHSType->isPointerType() ? CK_BitCast 8667 : CK_AnyPointerToBlockPointerCast); 8668 else 8669 RHS = ImpCastExprToType(RHS.get(), LHSType, 8670 LHSType->isPointerType() ? CK_BitCast 8671 : CK_AnyPointerToBlockPointerCast); 8672 return ResultTy; 8673 } 8674 8675 if (LHSType->isObjCObjectPointerType() || 8676 RHSType->isObjCObjectPointerType()) { 8677 const PointerType *LPT = LHSType->getAs<PointerType>(); 8678 const PointerType *RPT = RHSType->getAs<PointerType>(); 8679 if (LPT || RPT) { 8680 bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false; 8681 bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false; 8682 8683 if (!LPtrToVoid && !RPtrToVoid && 8684 !Context.typesAreCompatible(LHSType, RHSType)) { 8685 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, 8686 /*isError*/false); 8687 } 8688 if (LHSIsNull && !RHSIsNull) { 8689 Expr *E = LHS.get(); 8690 if (getLangOpts().ObjCAutoRefCount) 8691 CheckObjCARCConversion(SourceRange(), RHSType, E, CCK_ImplicitConversion); 8692 LHS = ImpCastExprToType(E, RHSType, 8693 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast); 8694 } 8695 else { 8696 Expr *E = RHS.get(); 8697 if (getLangOpts().ObjCAutoRefCount) 8698 CheckObjCARCConversion(SourceRange(), LHSType, E, CCK_ImplicitConversion, false, 8699 Opc); 8700 RHS = ImpCastExprToType(E, LHSType, 8701 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast); 8702 } 8703 return ResultTy; 8704 } 8705 if (LHSType->isObjCObjectPointerType() && 8706 RHSType->isObjCObjectPointerType()) { 8707 if (!Context.areComparableObjCPointerTypes(LHSType, RHSType)) 8708 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, 8709 /*isError*/false); 8710 if (isObjCObjectLiteral(LHS) || isObjCObjectLiteral(RHS)) 8711 diagnoseObjCLiteralComparison(*this, Loc, LHS, RHS, Opc); 8712 8713 if (LHSIsNull && !RHSIsNull) 8714 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast); 8715 else 8716 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 8717 return ResultTy; 8718 } 8719 } 8720 if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) || 8721 (LHSType->isIntegerType() && RHSType->isAnyPointerType())) { 8722 unsigned DiagID = 0; 8723 bool isError = false; 8724 if (LangOpts.DebuggerSupport) { 8725 // Under a debugger, allow the comparison of pointers to integers, 8726 // since users tend to want to compare addresses. 8727 } else if ((LHSIsNull && LHSType->isIntegerType()) || 8728 (RHSIsNull && RHSType->isIntegerType())) { 8729 if (IsRelational && !getLangOpts().CPlusPlus) 8730 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; 8731 } else if (IsRelational && !getLangOpts().CPlusPlus) 8732 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; 8733 else if (getLangOpts().CPlusPlus) { 8734 DiagID = diag::err_typecheck_comparison_of_pointer_integer; 8735 isError = true; 8736 } else 8737 DiagID = diag::ext_typecheck_comparison_of_pointer_integer; 8738 8739 if (DiagID) { 8740 Diag(Loc, DiagID) 8741 << LHSType << RHSType << LHS.get()->getSourceRange() 8742 << RHS.get()->getSourceRange(); 8743 if (isError) 8744 return QualType(); 8745 } 8746 8747 if (LHSType->isIntegerType()) 8748 LHS = ImpCastExprToType(LHS.get(), RHSType, 8749 LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); 8750 else 8751 RHS = ImpCastExprToType(RHS.get(), LHSType, 8752 RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); 8753 return ResultTy; 8754 } 8755 8756 // Handle block pointers. 8757 if (!IsRelational && RHSIsNull 8758 && LHSType->isBlockPointerType() && RHSType->isIntegerType()) { 8759 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer); 8760 return ResultTy; 8761 } 8762 if (!IsRelational && LHSIsNull 8763 && LHSType->isIntegerType() && RHSType->isBlockPointerType()) { 8764 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer); 8765 return ResultTy; 8766 } 8767 8768 return InvalidOperands(Loc, LHS, RHS); 8769 } 8770 8771 8772 // Return a signed type that is of identical size and number of elements. 8773 // For floating point vectors, return an integer type of identical size 8774 // and number of elements. 8775 QualType Sema::GetSignedVectorType(QualType V) { 8776 const VectorType *VTy = V->getAs<VectorType>(); 8777 unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); 8778 if (TypeSize == Context.getTypeSize(Context.CharTy)) 8779 return Context.getExtVectorType(Context.CharTy, VTy->getNumElements()); 8780 else if (TypeSize == Context.getTypeSize(Context.ShortTy)) 8781 return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements()); 8782 else if (TypeSize == Context.getTypeSize(Context.IntTy)) 8783 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); 8784 else if (TypeSize == Context.getTypeSize(Context.LongTy)) 8785 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); 8786 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && 8787 "Unhandled vector element size in vector compare"); 8788 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); 8789 } 8790 8791 /// CheckVectorCompareOperands - vector comparisons are a clang extension that 8792 /// operates on extended vector types. Instead of producing an IntTy result, 8793 /// like a scalar comparison, a vector comparison produces a vector of integer 8794 /// types. 8795 QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS, 8796 SourceLocation Loc, 8797 bool IsRelational) { 8798 // Check to make sure we're operating on vectors of the same type and width, 8799 // Allowing one side to be a scalar of element type. 8800 QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false); 8801 if (vType.isNull()) 8802 return vType; 8803 8804 QualType LHSType = LHS.get()->getType(); 8805 8806 // If AltiVec, the comparison results in a numeric type, i.e. 8807 // bool for C++, int for C 8808 if (vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector) 8809 return Context.getLogicalOperationType(); 8810 8811 // For non-floating point types, check for self-comparisons of the form 8812 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 8813 // often indicate logic errors in the program. 8814 if (!LHSType->hasFloatingRepresentation() && 8815 ActiveTemplateInstantiations.empty()) { 8816 if (DeclRefExpr* DRL 8817 = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts())) 8818 if (DeclRefExpr* DRR 8819 = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts())) 8820 if (DRL->getDecl() == DRR->getDecl()) 8821 DiagRuntimeBehavior(Loc, nullptr, 8822 PDiag(diag::warn_comparison_always) 8823 << 0 // self- 8824 << 2 // "a constant" 8825 ); 8826 } 8827 8828 // Check for comparisons of floating point operands using != and ==. 8829 if (!IsRelational && LHSType->hasFloatingRepresentation()) { 8830 assert (RHS.get()->getType()->hasFloatingRepresentation()); 8831 CheckFloatComparison(Loc, LHS.get(), RHS.get()); 8832 } 8833 8834 // Return a signed type for the vector. 8835 return GetSignedVectorType(LHSType); 8836 } 8837 8838 QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS, 8839 SourceLocation Loc) { 8840 // Ensure that either both operands are of the same vector type, or 8841 // one operand is of a vector type and the other is of its element type. 8842 QualType vType = CheckVectorOperands(LHS, RHS, Loc, false); 8843 if (vType.isNull()) 8844 return InvalidOperands(Loc, LHS, RHS); 8845 if (getLangOpts().OpenCL && getLangOpts().OpenCLVersion < 120 && 8846 vType->hasFloatingRepresentation()) 8847 return InvalidOperands(Loc, LHS, RHS); 8848 8849 return GetSignedVectorType(LHS.get()->getType()); 8850 } 8851 8852 inline QualType Sema::CheckBitwiseOperands( 8853 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { 8854 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 8855 8856 if (LHS.get()->getType()->isVectorType() || 8857 RHS.get()->getType()->isVectorType()) { 8858 if (LHS.get()->getType()->hasIntegerRepresentation() && 8859 RHS.get()->getType()->hasIntegerRepresentation()) 8860 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 8861 8862 return InvalidOperands(Loc, LHS, RHS); 8863 } 8864 8865 ExprResult LHSResult = LHS, RHSResult = RHS; 8866 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult, 8867 IsCompAssign); 8868 if (LHSResult.isInvalid() || RHSResult.isInvalid()) 8869 return QualType(); 8870 LHS = LHSResult.get(); 8871 RHS = RHSResult.get(); 8872 8873 if (!compType.isNull() && compType->isIntegralOrUnscopedEnumerationType()) 8874 return compType; 8875 return InvalidOperands(Loc, LHS, RHS); 8876 } 8877 8878 inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] 8879 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc) { 8880 8881 // Check vector operands differently. 8882 if (LHS.get()->getType()->isVectorType() || RHS.get()->getType()->isVectorType()) 8883 return CheckVectorLogicalOperands(LHS, RHS, Loc); 8884 8885 // Diagnose cases where the user write a logical and/or but probably meant a 8886 // bitwise one. We do this when the LHS is a non-bool integer and the RHS 8887 // is a constant. 8888 if (LHS.get()->getType()->isIntegerType() && 8889 !LHS.get()->getType()->isBooleanType() && 8890 RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() && 8891 // Don't warn in macros or template instantiations. 8892 !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) { 8893 // If the RHS can be constant folded, and if it constant folds to something 8894 // that isn't 0 or 1 (which indicate a potential logical operation that 8895 // happened to fold to true/false) then warn. 8896 // Parens on the RHS are ignored. 8897 llvm::APSInt Result; 8898 if (RHS.get()->EvaluateAsInt(Result, Context)) 8899 if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType() && 8900 !RHS.get()->getExprLoc().isMacroID()) || 8901 (Result != 0 && Result != 1)) { 8902 Diag(Loc, diag::warn_logical_instead_of_bitwise) 8903 << RHS.get()->getSourceRange() 8904 << (Opc == BO_LAnd ? "&&" : "||"); 8905 // Suggest replacing the logical operator with the bitwise version 8906 Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator) 8907 << (Opc == BO_LAnd ? "&" : "|") 8908 << FixItHint::CreateReplacement(SourceRange( 8909 Loc, Lexer::getLocForEndOfToken(Loc, 0, getSourceManager(), 8910 getLangOpts())), 8911 Opc == BO_LAnd ? "&" : "|"); 8912 if (Opc == BO_LAnd) 8913 // Suggest replacing "Foo() && kNonZero" with "Foo()" 8914 Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant) 8915 << FixItHint::CreateRemoval( 8916 SourceRange( 8917 Lexer::getLocForEndOfToken(LHS.get()->getLocEnd(), 8918 0, getSourceManager(), 8919 getLangOpts()), 8920 RHS.get()->getLocEnd())); 8921 } 8922 } 8923 8924 if (!Context.getLangOpts().CPlusPlus) { 8925 // OpenCL v1.1 s6.3.g: The logical operators and (&&), or (||) do 8926 // not operate on the built-in scalar and vector float types. 8927 if (Context.getLangOpts().OpenCL && 8928 Context.getLangOpts().OpenCLVersion < 120) { 8929 if (LHS.get()->getType()->isFloatingType() || 8930 RHS.get()->getType()->isFloatingType()) 8931 return InvalidOperands(Loc, LHS, RHS); 8932 } 8933 8934 LHS = UsualUnaryConversions(LHS.get()); 8935 if (LHS.isInvalid()) 8936 return QualType(); 8937 8938 RHS = UsualUnaryConversions(RHS.get()); 8939 if (RHS.isInvalid()) 8940 return QualType(); 8941 8942 if (!LHS.get()->getType()->isScalarType() || 8943 !RHS.get()->getType()->isScalarType()) 8944 return InvalidOperands(Loc, LHS, RHS); 8945 8946 return Context.IntTy; 8947 } 8948 8949 // The following is safe because we only use this method for 8950 // non-overloadable operands. 8951 8952 // C++ [expr.log.and]p1 8953 // C++ [expr.log.or]p1 8954 // The operands are both contextually converted to type bool. 8955 ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get()); 8956 if (LHSRes.isInvalid()) 8957 return InvalidOperands(Loc, LHS, RHS); 8958 LHS = LHSRes; 8959 8960 ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get()); 8961 if (RHSRes.isInvalid()) 8962 return InvalidOperands(Loc, LHS, RHS); 8963 RHS = RHSRes; 8964 8965 // C++ [expr.log.and]p2 8966 // C++ [expr.log.or]p2 8967 // The result is a bool. 8968 return Context.BoolTy; 8969 } 8970 8971 static bool IsReadonlyMessage(Expr *E, Sema &S) { 8972 const MemberExpr *ME = dyn_cast<MemberExpr>(E); 8973 if (!ME) return false; 8974 if (!isa<FieldDecl>(ME->getMemberDecl())) return false; 8975 ObjCMessageExpr *Base = 8976 dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts()); 8977 if (!Base) return false; 8978 return Base->getMethodDecl() != nullptr; 8979 } 8980 8981 /// Is the given expression (which must be 'const') a reference to a 8982 /// variable which was originally non-const, but which has become 8983 /// 'const' due to being captured within a block? 8984 enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda }; 8985 static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) { 8986 assert(E->isLValue() && E->getType().isConstQualified()); 8987 E = E->IgnoreParens(); 8988 8989 // Must be a reference to a declaration from an enclosing scope. 8990 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); 8991 if (!DRE) return NCCK_None; 8992 if (!DRE->refersToEnclosingVariableOrCapture()) return NCCK_None; 8993 8994 // The declaration must be a variable which is not declared 'const'. 8995 VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl()); 8996 if (!var) return NCCK_None; 8997 if (var->getType().isConstQualified()) return NCCK_None; 8998 assert(var->hasLocalStorage() && "capture added 'const' to non-local?"); 8999 9000 // Decide whether the first capture was for a block or a lambda. 9001 DeclContext *DC = S.CurContext, *Prev = nullptr; 9002 while (DC != var->getDeclContext()) { 9003 Prev = DC; 9004 DC = DC->getParent(); 9005 } 9006 // Unless we have an init-capture, we've gone one step too far. 9007 if (!var->isInitCapture()) 9008 DC = Prev; 9009 return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda); 9010 } 9011 9012 static bool IsTypeModifiable(QualType Ty, bool IsDereference) { 9013 Ty = Ty.getNonReferenceType(); 9014 if (IsDereference && Ty->isPointerType()) 9015 Ty = Ty->getPointeeType(); 9016 return !Ty.isConstQualified(); 9017 } 9018 9019 /// Emit the "read-only variable not assignable" error and print notes to give 9020 /// more information about why the variable is not assignable, such as pointing 9021 /// to the declaration of a const variable, showing that a method is const, or 9022 /// that the function is returning a const reference. 9023 static void DiagnoseConstAssignment(Sema &S, const Expr *E, 9024 SourceLocation Loc) { 9025 // Update err_typecheck_assign_const and note_typecheck_assign_const 9026 // when this enum is changed. 9027 enum { 9028 ConstFunction, 9029 ConstVariable, 9030 ConstMember, 9031 ConstMethod, 9032 ConstUnknown, // Keep as last element 9033 }; 9034 9035 SourceRange ExprRange = E->getSourceRange(); 9036 9037 // Only emit one error on the first const found. All other consts will emit 9038 // a note to the error. 9039 bool DiagnosticEmitted = false; 9040 9041 // Track if the current expression is the result of a derefence, and if the 9042 // next checked expression is the result of a derefence. 9043 bool IsDereference = false; 9044 bool NextIsDereference = false; 9045 9046 // Loop to process MemberExpr chains. 9047 while (true) { 9048 IsDereference = NextIsDereference; 9049 NextIsDereference = false; 9050 9051 E = E->IgnoreParenImpCasts(); 9052 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 9053 NextIsDereference = ME->isArrow(); 9054 const ValueDecl *VD = ME->getMemberDecl(); 9055 if (const FieldDecl *Field = dyn_cast<FieldDecl>(VD)) { 9056 // Mutable fields can be modified even if the class is const. 9057 if (Field->isMutable()) { 9058 assert(DiagnosticEmitted && "Expected diagnostic not emitted."); 9059 break; 9060 } 9061 9062 if (!IsTypeModifiable(Field->getType(), IsDereference)) { 9063 if (!DiagnosticEmitted) { 9064 S.Diag(Loc, diag::err_typecheck_assign_const) 9065 << ExprRange << ConstMember << false /*static*/ << Field 9066 << Field->getType(); 9067 DiagnosticEmitted = true; 9068 } 9069 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const) 9070 << ConstMember << false /*static*/ << Field << Field->getType() 9071 << Field->getSourceRange(); 9072 } 9073 E = ME->getBase(); 9074 continue; 9075 } else if (const VarDecl *VDecl = dyn_cast<VarDecl>(VD)) { 9076 if (VDecl->getType().isConstQualified()) { 9077 if (!DiagnosticEmitted) { 9078 S.Diag(Loc, diag::err_typecheck_assign_const) 9079 << ExprRange << ConstMember << true /*static*/ << VDecl 9080 << VDecl->getType(); 9081 DiagnosticEmitted = true; 9082 } 9083 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const) 9084 << ConstMember << true /*static*/ << VDecl << VDecl->getType() 9085 << VDecl->getSourceRange(); 9086 } 9087 // Static fields do not inherit constness from parents. 9088 break; 9089 } 9090 break; 9091 } // End MemberExpr 9092 break; 9093 } 9094 9095 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) { 9096 // Function calls 9097 const FunctionDecl *FD = CE->getDirectCallee(); 9098 if (!IsTypeModifiable(FD->getReturnType(), IsDereference)) { 9099 if (!DiagnosticEmitted) { 9100 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange 9101 << ConstFunction << FD; 9102 DiagnosticEmitted = true; 9103 } 9104 S.Diag(FD->getReturnTypeSourceRange().getBegin(), 9105 diag::note_typecheck_assign_const) 9106 << ConstFunction << FD << FD->getReturnType() 9107 << FD->getReturnTypeSourceRange(); 9108 } 9109 } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 9110 // Point to variable declaration. 9111 if (const ValueDecl *VD = DRE->getDecl()) { 9112 if (!IsTypeModifiable(VD->getType(), IsDereference)) { 9113 if (!DiagnosticEmitted) { 9114 S.Diag(Loc, diag::err_typecheck_assign_const) 9115 << ExprRange << ConstVariable << VD << VD->getType(); 9116 DiagnosticEmitted = true; 9117 } 9118 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const) 9119 << ConstVariable << VD << VD->getType() << VD->getSourceRange(); 9120 } 9121 } 9122 } else if (isa<CXXThisExpr>(E)) { 9123 if (const DeclContext *DC = S.getFunctionLevelDeclContext()) { 9124 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) { 9125 if (MD->isConst()) { 9126 if (!DiagnosticEmitted) { 9127 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange 9128 << ConstMethod << MD; 9129 DiagnosticEmitted = true; 9130 } 9131 S.Diag(MD->getLocation(), diag::note_typecheck_assign_const) 9132 << ConstMethod << MD << MD->getSourceRange(); 9133 } 9134 } 9135 } 9136 } 9137 9138 if (DiagnosticEmitted) 9139 return; 9140 9141 // Can't determine a more specific message, so display the generic error. 9142 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange << ConstUnknown; 9143 } 9144 9145 /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, 9146 /// emit an error and return true. If so, return false. 9147 static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { 9148 assert(!E->hasPlaceholderType(BuiltinType::PseudoObject)); 9149 SourceLocation OrigLoc = Loc; 9150 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, 9151 &Loc); 9152 if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S)) 9153 IsLV = Expr::MLV_InvalidMessageExpression; 9154 if (IsLV == Expr::MLV_Valid) 9155 return false; 9156 9157 unsigned DiagID = 0; 9158 bool NeedType = false; 9159 switch (IsLV) { // C99 6.5.16p2 9160 case Expr::MLV_ConstQualified: 9161 // Use a specialized diagnostic when we're assigning to an object 9162 // from an enclosing function or block. 9163 if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) { 9164 if (NCCK == NCCK_Block) 9165 DiagID = diag::err_block_decl_ref_not_modifiable_lvalue; 9166 else 9167 DiagID = diag::err_lambda_decl_ref_not_modifiable_lvalue; 9168 break; 9169 } 9170 9171 // In ARC, use some specialized diagnostics for occasions where we 9172 // infer 'const'. These are always pseudo-strong variables. 9173 if (S.getLangOpts().ObjCAutoRefCount) { 9174 DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()); 9175 if (declRef && isa<VarDecl>(declRef->getDecl())) { 9176 VarDecl *var = cast<VarDecl>(declRef->getDecl()); 9177 9178 // Use the normal diagnostic if it's pseudo-__strong but the 9179 // user actually wrote 'const'. 9180 if (var->isARCPseudoStrong() && 9181 (!var->getTypeSourceInfo() || 9182 !var->getTypeSourceInfo()->getType().isConstQualified())) { 9183 // There are two pseudo-strong cases: 9184 // - self 9185 ObjCMethodDecl *method = S.getCurMethodDecl(); 9186 if (method && var == method->getSelfDecl()) 9187 DiagID = method->isClassMethod() 9188 ? diag::err_typecheck_arc_assign_self_class_method 9189 : diag::err_typecheck_arc_assign_self; 9190 9191 // - fast enumeration variables 9192 else 9193 DiagID = diag::err_typecheck_arr_assign_enumeration; 9194 9195 SourceRange Assign; 9196 if (Loc != OrigLoc) 9197 Assign = SourceRange(OrigLoc, OrigLoc); 9198 S.Diag(Loc, DiagID) << E->getSourceRange() << Assign; 9199 // We need to preserve the AST regardless, so migration tool 9200 // can do its job. 9201 return false; 9202 } 9203 } 9204 } 9205 9206 // If none of the special cases above are triggered, then this is a 9207 // simple const assignment. 9208 if (DiagID == 0) { 9209 DiagnoseConstAssignment(S, E, Loc); 9210 return true; 9211 } 9212 9213 break; 9214 case Expr::MLV_ConstAddrSpace: 9215 DiagnoseConstAssignment(S, E, Loc); 9216 return true; 9217 case Expr::MLV_ArrayType: 9218 case Expr::MLV_ArrayTemporary: 9219 DiagID = diag::err_typecheck_array_not_modifiable_lvalue; 9220 NeedType = true; 9221 break; 9222 case Expr::MLV_NotObjectType: 9223 DiagID = diag::err_typecheck_non_object_not_modifiable_lvalue; 9224 NeedType = true; 9225 break; 9226 case Expr::MLV_LValueCast: 9227 DiagID = diag::err_typecheck_lvalue_casts_not_supported; 9228 break; 9229 case Expr::MLV_Valid: 9230 llvm_unreachable("did not take early return for MLV_Valid"); 9231 case Expr::MLV_InvalidExpression: 9232 case Expr::MLV_MemberFunction: 9233 case Expr::MLV_ClassTemporary: 9234 DiagID = diag::err_typecheck_expression_not_modifiable_lvalue; 9235 break; 9236 case Expr::MLV_IncompleteType: 9237 case Expr::MLV_IncompleteVoidType: 9238 return S.RequireCompleteType(Loc, E->getType(), 9239 diag::err_typecheck_incomplete_type_not_modifiable_lvalue, E); 9240 case Expr::MLV_DuplicateVectorComponents: 9241 DiagID = diag::err_typecheck_duplicate_vector_components_not_mlvalue; 9242 break; 9243 case Expr::MLV_NoSetterProperty: 9244 llvm_unreachable("readonly properties should be processed differently"); 9245 case Expr::MLV_InvalidMessageExpression: 9246 DiagID = diag::error_readonly_message_assignment; 9247 break; 9248 case Expr::MLV_SubObjCPropertySetting: 9249 DiagID = diag::error_no_subobject_property_setting; 9250 break; 9251 } 9252 9253 SourceRange Assign; 9254 if (Loc != OrigLoc) 9255 Assign = SourceRange(OrigLoc, OrigLoc); 9256 if (NeedType) 9257 S.Diag(Loc, DiagID) << E->getType() << E->getSourceRange() << Assign; 9258 else 9259 S.Diag(Loc, DiagID) << E->getSourceRange() << Assign; 9260 return true; 9261 } 9262 9263 static void CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr, 9264 SourceLocation Loc, 9265 Sema &Sema) { 9266 // C / C++ fields 9267 MemberExpr *ML = dyn_cast<MemberExpr>(LHSExpr); 9268 MemberExpr *MR = dyn_cast<MemberExpr>(RHSExpr); 9269 if (ML && MR && ML->getMemberDecl() == MR->getMemberDecl()) { 9270 if (isa<CXXThisExpr>(ML->getBase()) && isa<CXXThisExpr>(MR->getBase())) 9271 Sema.Diag(Loc, diag::warn_identity_field_assign) << 0; 9272 } 9273 9274 // Objective-C instance variables 9275 ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr); 9276 ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr); 9277 if (OL && OR && OL->getDecl() == OR->getDecl()) { 9278 DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts()); 9279 DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts()); 9280 if (RL && RR && RL->getDecl() == RR->getDecl()) 9281 Sema.Diag(Loc, diag::warn_identity_field_assign) << 1; 9282 } 9283 } 9284 9285 // C99 6.5.16.1 9286 QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS, 9287 SourceLocation Loc, 9288 QualType CompoundType) { 9289 assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject)); 9290 9291 // Verify that LHS is a modifiable lvalue, and emit error if not. 9292 if (CheckForModifiableLvalue(LHSExpr, Loc, *this)) 9293 return QualType(); 9294 9295 QualType LHSType = LHSExpr->getType(); 9296 QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() : 9297 CompoundType; 9298 AssignConvertType ConvTy; 9299 if (CompoundType.isNull()) { 9300 Expr *RHSCheck = RHS.get(); 9301 9302 CheckIdentityFieldAssignment(LHSExpr, RHSCheck, Loc, *this); 9303 9304 QualType LHSTy(LHSType); 9305 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS); 9306 if (RHS.isInvalid()) 9307 return QualType(); 9308 // Special case of NSObject attributes on c-style pointer types. 9309 if (ConvTy == IncompatiblePointer && 9310 ((Context.isObjCNSObjectType(LHSType) && 9311 RHSType->isObjCObjectPointerType()) || 9312 (Context.isObjCNSObjectType(RHSType) && 9313 LHSType->isObjCObjectPointerType()))) 9314 ConvTy = Compatible; 9315 9316 if (ConvTy == Compatible && 9317 LHSType->isObjCObjectType()) 9318 Diag(Loc, diag::err_objc_object_assignment) 9319 << LHSType; 9320 9321 // If the RHS is a unary plus or minus, check to see if they = and + are 9322 // right next to each other. If so, the user may have typo'd "x =+ 4" 9323 // instead of "x += 4". 9324 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) 9325 RHSCheck = ICE->getSubExpr(); 9326 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { 9327 if ((UO->getOpcode() == UO_Plus || 9328 UO->getOpcode() == UO_Minus) && 9329 Loc.isFileID() && UO->getOperatorLoc().isFileID() && 9330 // Only if the two operators are exactly adjacent. 9331 Loc.getLocWithOffset(1) == UO->getOperatorLoc() && 9332 // And there is a space or other character before the subexpr of the 9333 // unary +/-. We don't want to warn on "x=-1". 9334 Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() && 9335 UO->getSubExpr()->getLocStart().isFileID()) { 9336 Diag(Loc, diag::warn_not_compound_assign) 9337 << (UO->getOpcode() == UO_Plus ? "+" : "-") 9338 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); 9339 } 9340 } 9341 9342 if (ConvTy == Compatible) { 9343 if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) { 9344 // Warn about retain cycles where a block captures the LHS, but 9345 // not if the LHS is a simple variable into which the block is 9346 // being stored...unless that variable can be captured by reference! 9347 const Expr *InnerLHS = LHSExpr->IgnoreParenCasts(); 9348 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InnerLHS); 9349 if (!DRE || DRE->getDecl()->hasAttr<BlocksAttr>()) 9350 checkRetainCycles(LHSExpr, RHS.get()); 9351 9352 // It is safe to assign a weak reference into a strong variable. 9353 // Although this code can still have problems: 9354 // id x = self.weakProp; 9355 // id y = self.weakProp; 9356 // we do not warn to warn spuriously when 'x' and 'y' are on separate 9357 // paths through the function. This should be revisited if 9358 // -Wrepeated-use-of-weak is made flow-sensitive. 9359 if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, 9360 RHS.get()->getLocStart())) 9361 getCurFunction()->markSafeWeakUse(RHS.get()); 9362 9363 } else if (getLangOpts().ObjCAutoRefCount) { 9364 checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get()); 9365 } 9366 } 9367 } else { 9368 // Compound assignment "x += y" 9369 ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType); 9370 } 9371 9372 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, 9373 RHS.get(), AA_Assigning)) 9374 return QualType(); 9375 9376 CheckForNullPointerDereference(*this, LHSExpr); 9377 9378 // C99 6.5.16p3: The type of an assignment expression is the type of the 9379 // left operand unless the left operand has qualified type, in which case 9380 // it is the unqualified version of the type of the left operand. 9381 // C99 6.5.16.1p2: In simple assignment, the value of the right operand 9382 // is converted to the type of the assignment expression (above). 9383 // C++ 5.17p1: the type of the assignment expression is that of its left 9384 // operand. 9385 return (getLangOpts().CPlusPlus 9386 ? LHSType : LHSType.getUnqualifiedType()); 9387 } 9388 9389 // C99 6.5.17 9390 static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS, 9391 SourceLocation Loc) { 9392 LHS = S.CheckPlaceholderExpr(LHS.get()); 9393 RHS = S.CheckPlaceholderExpr(RHS.get()); 9394 if (LHS.isInvalid() || RHS.isInvalid()) 9395 return QualType(); 9396 9397 // C's comma performs lvalue conversion (C99 6.3.2.1) on both its 9398 // operands, but not unary promotions. 9399 // C++'s comma does not do any conversions at all (C++ [expr.comma]p1). 9400 9401 // So we treat the LHS as a ignored value, and in C++ we allow the 9402 // containing site to determine what should be done with the RHS. 9403 LHS = S.IgnoredValueConversions(LHS.get()); 9404 if (LHS.isInvalid()) 9405 return QualType(); 9406 9407 S.DiagnoseUnusedExprResult(LHS.get()); 9408 9409 if (!S.getLangOpts().CPlusPlus) { 9410 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get()); 9411 if (RHS.isInvalid()) 9412 return QualType(); 9413 if (!RHS.get()->getType()->isVoidType()) 9414 S.RequireCompleteType(Loc, RHS.get()->getType(), 9415 diag::err_incomplete_type); 9416 } 9417 9418 return RHS.get()->getType(); 9419 } 9420 9421 /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine 9422 /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. 9423 static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op, 9424 ExprValueKind &VK, 9425 ExprObjectKind &OK, 9426 SourceLocation OpLoc, 9427 bool IsInc, bool IsPrefix) { 9428 if (Op->isTypeDependent()) 9429 return S.Context.DependentTy; 9430 9431 QualType ResType = Op->getType(); 9432 // Atomic types can be used for increment / decrement where the non-atomic 9433 // versions can, so ignore the _Atomic() specifier for the purpose of 9434 // checking. 9435 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 9436 ResType = ResAtomicType->getValueType(); 9437 9438 assert(!ResType.isNull() && "no type for increment/decrement expression"); 9439 9440 if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) { 9441 // Decrement of bool is not allowed. 9442 if (!IsInc) { 9443 S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); 9444 return QualType(); 9445 } 9446 // Increment of bool sets it to true, but is deprecated. 9447 S.Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); 9448 } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) { 9449 // Error on enum increments and decrements in C++ mode 9450 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType; 9451 return QualType(); 9452 } else if (ResType->isRealType()) { 9453 // OK! 9454 } else if (ResType->isPointerType()) { 9455 // C99 6.5.2.4p2, 6.5.6p2 9456 if (!checkArithmeticOpPointerOperand(S, OpLoc, Op)) 9457 return QualType(); 9458 } else if (ResType->isObjCObjectPointerType()) { 9459 // On modern runtimes, ObjC pointer arithmetic is forbidden. 9460 // Otherwise, we just need a complete type. 9461 if (checkArithmeticIncompletePointerType(S, OpLoc, Op) || 9462 checkArithmeticOnObjCPointer(S, OpLoc, Op)) 9463 return QualType(); 9464 } else if (ResType->isAnyComplexType()) { 9465 // C99 does not support ++/-- on complex types, we allow as an extension. 9466 S.Diag(OpLoc, diag::ext_integer_increment_complex) 9467 << ResType << Op->getSourceRange(); 9468 } else if (ResType->isPlaceholderType()) { 9469 ExprResult PR = S.CheckPlaceholderExpr(Op); 9470 if (PR.isInvalid()) return QualType(); 9471 return CheckIncrementDecrementOperand(S, PR.get(), VK, OK, OpLoc, 9472 IsInc, IsPrefix); 9473 } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) { 9474 // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 ) 9475 } else if(S.getLangOpts().OpenCL && ResType->isVectorType() && 9476 ResType->getAs<VectorType>()->getElementType()->isIntegerType()) { 9477 // OpenCL V1.2 6.3 says dec/inc ops operate on integer vector types. 9478 } else { 9479 S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) 9480 << ResType << int(IsInc) << Op->getSourceRange(); 9481 return QualType(); 9482 } 9483 // At this point, we know we have a real, complex or pointer type. 9484 // Now make sure the operand is a modifiable lvalue. 9485 if (CheckForModifiableLvalue(Op, OpLoc, S)) 9486 return QualType(); 9487 // In C++, a prefix increment is the same type as the operand. Otherwise 9488 // (in C or with postfix), the increment is the unqualified type of the 9489 // operand. 9490 if (IsPrefix && S.getLangOpts().CPlusPlus) { 9491 VK = VK_LValue; 9492 OK = Op->getObjectKind(); 9493 return ResType; 9494 } else { 9495 VK = VK_RValue; 9496 return ResType.getUnqualifiedType(); 9497 } 9498 } 9499 9500 9501 /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). 9502 /// This routine allows us to typecheck complex/recursive expressions 9503 /// where the declaration is needed for type checking. We only need to 9504 /// handle cases when the expression references a function designator 9505 /// or is an lvalue. Here are some examples: 9506 /// - &(x) => x 9507 /// - &*****f => f for f a function designator. 9508 /// - &s.xx => s 9509 /// - &s.zz[1].yy -> s, if zz is an array 9510 /// - *(x + 1) -> x, if x is an array 9511 /// - &"123"[2] -> 0 9512 /// - & __real__ x -> x 9513 static ValueDecl *getPrimaryDecl(Expr *E) { 9514 switch (E->getStmtClass()) { 9515 case Stmt::DeclRefExprClass: 9516 return cast<DeclRefExpr>(E)->getDecl(); 9517 case Stmt::MemberExprClass: 9518 // If this is an arrow operator, the address is an offset from 9519 // the base's value, so the object the base refers to is 9520 // irrelevant. 9521 if (cast<MemberExpr>(E)->isArrow()) 9522 return nullptr; 9523 // Otherwise, the expression refers to a part of the base 9524 return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); 9525 case Stmt::ArraySubscriptExprClass: { 9526 // FIXME: This code shouldn't be necessary! We should catch the implicit 9527 // promotion of register arrays earlier. 9528 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); 9529 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { 9530 if (ICE->getSubExpr()->getType()->isArrayType()) 9531 return getPrimaryDecl(ICE->getSubExpr()); 9532 } 9533 return nullptr; 9534 } 9535 case Stmt::UnaryOperatorClass: { 9536 UnaryOperator *UO = cast<UnaryOperator>(E); 9537 9538 switch(UO->getOpcode()) { 9539 case UO_Real: 9540 case UO_Imag: 9541 case UO_Extension: 9542 return getPrimaryDecl(UO->getSubExpr()); 9543 default: 9544 return nullptr; 9545 } 9546 } 9547 case Stmt::ParenExprClass: 9548 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); 9549 case Stmt::ImplicitCastExprClass: 9550 // If the result of an implicit cast is an l-value, we care about 9551 // the sub-expression; otherwise, the result here doesn't matter. 9552 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); 9553 default: 9554 return nullptr; 9555 } 9556 } 9557 9558 namespace { 9559 enum { 9560 AO_Bit_Field = 0, 9561 AO_Vector_Element = 1, 9562 AO_Property_Expansion = 2, 9563 AO_Register_Variable = 3, 9564 AO_No_Error = 4 9565 }; 9566 } 9567 /// \brief Diagnose invalid operand for address of operations. 9568 /// 9569 /// \param Type The type of operand which cannot have its address taken. 9570 static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc, 9571 Expr *E, unsigned Type) { 9572 S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange(); 9573 } 9574 9575 /// CheckAddressOfOperand - The operand of & must be either a function 9576 /// designator or an lvalue designating an object. If it is an lvalue, the 9577 /// object cannot be declared with storage class register or be a bit field. 9578 /// Note: The usual conversions are *not* applied to the operand of the & 9579 /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. 9580 /// In C++, the operand might be an overloaded function name, in which case 9581 /// we allow the '&' but retain the overloaded-function type. 9582 QualType Sema::CheckAddressOfOperand(ExprResult &OrigOp, SourceLocation OpLoc) { 9583 if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){ 9584 if (PTy->getKind() == BuiltinType::Overload) { 9585 Expr *E = OrigOp.get()->IgnoreParens(); 9586 if (!isa<OverloadExpr>(E)) { 9587 assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf); 9588 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof_addrof_function) 9589 << OrigOp.get()->getSourceRange(); 9590 return QualType(); 9591 } 9592 9593 OverloadExpr *Ovl = cast<OverloadExpr>(E); 9594 if (isa<UnresolvedMemberExpr>(Ovl)) 9595 if (!ResolveSingleFunctionTemplateSpecialization(Ovl)) { 9596 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 9597 << OrigOp.get()->getSourceRange(); 9598 return QualType(); 9599 } 9600 9601 return Context.OverloadTy; 9602 } 9603 9604 if (PTy->getKind() == BuiltinType::UnknownAny) 9605 return Context.UnknownAnyTy; 9606 9607 if (PTy->getKind() == BuiltinType::BoundMember) { 9608 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 9609 << OrigOp.get()->getSourceRange(); 9610 return QualType(); 9611 } 9612 9613 OrigOp = CheckPlaceholderExpr(OrigOp.get()); 9614 if (OrigOp.isInvalid()) return QualType(); 9615 } 9616 9617 if (OrigOp.get()->isTypeDependent()) 9618 return Context.DependentTy; 9619 9620 assert(!OrigOp.get()->getType()->isPlaceholderType()); 9621 9622 // Make sure to ignore parentheses in subsequent checks 9623 Expr *op = OrigOp.get()->IgnoreParens(); 9624 9625 // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed. 9626 if (LangOpts.OpenCL && op->getType()->isFunctionType()) { 9627 Diag(op->getExprLoc(), diag::err_opencl_taking_function_address); 9628 return QualType(); 9629 } 9630 9631 if (getLangOpts().C99) { 9632 // Implement C99-only parts of addressof rules. 9633 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { 9634 if (uOp->getOpcode() == UO_Deref) 9635 // Per C99 6.5.3.2, the address of a deref always returns a valid result 9636 // (assuming the deref expression is valid). 9637 return uOp->getSubExpr()->getType(); 9638 } 9639 // Technically, there should be a check for array subscript 9640 // expressions here, but the result of one is always an lvalue anyway. 9641 } 9642 ValueDecl *dcl = getPrimaryDecl(op); 9643 Expr::LValueClassification lval = op->ClassifyLValue(Context); 9644 unsigned AddressOfError = AO_No_Error; 9645 9646 if (lval == Expr::LV_ClassTemporary || lval == Expr::LV_ArrayTemporary) { 9647 bool sfinae = (bool)isSFINAEContext(); 9648 Diag(OpLoc, isSFINAEContext() ? diag::err_typecheck_addrof_temporary 9649 : diag::ext_typecheck_addrof_temporary) 9650 << op->getType() << op->getSourceRange(); 9651 if (sfinae) 9652 return QualType(); 9653 // Materialize the temporary as an lvalue so that we can take its address. 9654 OrigOp = op = new (Context) 9655 MaterializeTemporaryExpr(op->getType(), OrigOp.get(), true); 9656 } else if (isa<ObjCSelectorExpr>(op)) { 9657 return Context.getPointerType(op->getType()); 9658 } else if (lval == Expr::LV_MemberFunction) { 9659 // If it's an instance method, make a member pointer. 9660 // The expression must have exactly the form &A::foo. 9661 9662 // If the underlying expression isn't a decl ref, give up. 9663 if (!isa<DeclRefExpr>(op)) { 9664 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 9665 << OrigOp.get()->getSourceRange(); 9666 return QualType(); 9667 } 9668 DeclRefExpr *DRE = cast<DeclRefExpr>(op); 9669 CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl()); 9670 9671 // The id-expression was parenthesized. 9672 if (OrigOp.get() != DRE) { 9673 Diag(OpLoc, diag::err_parens_pointer_member_function) 9674 << OrigOp.get()->getSourceRange(); 9675 9676 // The method was named without a qualifier. 9677 } else if (!DRE->getQualifier()) { 9678 if (MD->getParent()->getName().empty()) 9679 Diag(OpLoc, diag::err_unqualified_pointer_member_function) 9680 << op->getSourceRange(); 9681 else { 9682 SmallString<32> Str; 9683 StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str); 9684 Diag(OpLoc, diag::err_unqualified_pointer_member_function) 9685 << op->getSourceRange() 9686 << FixItHint::CreateInsertion(op->getSourceRange().getBegin(), Qual); 9687 } 9688 } 9689 9690 // Taking the address of a dtor is illegal per C++ [class.dtor]p2. 9691 if (isa<CXXDestructorDecl>(MD)) 9692 Diag(OpLoc, diag::err_typecheck_addrof_dtor) << op->getSourceRange(); 9693 9694 QualType MPTy = Context.getMemberPointerType( 9695 op->getType(), Context.getTypeDeclType(MD->getParent()).getTypePtr()); 9696 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) 9697 RequireCompleteType(OpLoc, MPTy, 0); 9698 return MPTy; 9699 } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { 9700 // C99 6.5.3.2p1 9701 // The operand must be either an l-value or a function designator 9702 if (!op->getType()->isFunctionType()) { 9703 // Use a special diagnostic for loads from property references. 9704 if (isa<PseudoObjectExpr>(op)) { 9705 AddressOfError = AO_Property_Expansion; 9706 } else { 9707 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) 9708 << op->getType() << op->getSourceRange(); 9709 return QualType(); 9710 } 9711 } 9712 } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1 9713 // The operand cannot be a bit-field 9714 AddressOfError = AO_Bit_Field; 9715 } else if (op->getObjectKind() == OK_VectorComponent) { 9716 // The operand cannot be an element of a vector 9717 AddressOfError = AO_Vector_Element; 9718 } else if (dcl) { // C99 6.5.3.2p1 9719 // We have an lvalue with a decl. Make sure the decl is not declared 9720 // with the register storage-class specifier. 9721 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { 9722 // in C++ it is not error to take address of a register 9723 // variable (c++03 7.1.1P3) 9724 if (vd->getStorageClass() == SC_Register && 9725 !getLangOpts().CPlusPlus) { 9726 AddressOfError = AO_Register_Variable; 9727 } 9728 } else if (isa<MSPropertyDecl>(dcl)) { 9729 AddressOfError = AO_Property_Expansion; 9730 } else if (isa<FunctionTemplateDecl>(dcl)) { 9731 return Context.OverloadTy; 9732 } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) { 9733 // Okay: we can take the address of a field. 9734 // Could be a pointer to member, though, if there is an explicit 9735 // scope qualifier for the class. 9736 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { 9737 DeclContext *Ctx = dcl->getDeclContext(); 9738 if (Ctx && Ctx->isRecord()) { 9739 if (dcl->getType()->isReferenceType()) { 9740 Diag(OpLoc, 9741 diag::err_cannot_form_pointer_to_member_of_reference_type) 9742 << dcl->getDeclName() << dcl->getType(); 9743 return QualType(); 9744 } 9745 9746 while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()) 9747 Ctx = Ctx->getParent(); 9748 9749 QualType MPTy = Context.getMemberPointerType( 9750 op->getType(), 9751 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); 9752 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) 9753 RequireCompleteType(OpLoc, MPTy, 0); 9754 return MPTy; 9755 } 9756 } 9757 } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl)) 9758 llvm_unreachable("Unknown/unexpected decl type"); 9759 } 9760 9761 if (AddressOfError != AO_No_Error) { 9762 diagnoseAddressOfInvalidType(*this, OpLoc, op, AddressOfError); 9763 return QualType(); 9764 } 9765 9766 if (lval == Expr::LV_IncompleteVoidType) { 9767 // Taking the address of a void variable is technically illegal, but we 9768 // allow it in cases which are otherwise valid. 9769 // Example: "extern void x; void* y = &x;". 9770 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); 9771 } 9772 9773 // If the operand has type "type", the result has type "pointer to type". 9774 if (op->getType()->isObjCObjectType()) 9775 return Context.getObjCObjectPointerType(op->getType()); 9776 return Context.getPointerType(op->getType()); 9777 } 9778 9779 static void RecordModifiableNonNullParam(Sema &S, const Expr *Exp) { 9780 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp); 9781 if (!DRE) 9782 return; 9783 const Decl *D = DRE->getDecl(); 9784 if (!D) 9785 return; 9786 const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D); 9787 if (!Param) 9788 return; 9789 if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(Param->getDeclContext())) 9790 if (!FD->hasAttr<NonNullAttr>() && !Param->hasAttr<NonNullAttr>()) 9791 return; 9792 if (FunctionScopeInfo *FD = S.getCurFunction()) 9793 if (!FD->ModifiedNonNullParams.count(Param)) 9794 FD->ModifiedNonNullParams.insert(Param); 9795 } 9796 9797 /// CheckIndirectionOperand - Type check unary indirection (prefix '*'). 9798 static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK, 9799 SourceLocation OpLoc) { 9800 if (Op->isTypeDependent()) 9801 return S.Context.DependentTy; 9802 9803 ExprResult ConvResult = S.UsualUnaryConversions(Op); 9804 if (ConvResult.isInvalid()) 9805 return QualType(); 9806 Op = ConvResult.get(); 9807 QualType OpTy = Op->getType(); 9808 QualType Result; 9809 9810 if (isa<CXXReinterpretCastExpr>(Op)) { 9811 QualType OpOrigType = Op->IgnoreParenCasts()->getType(); 9812 S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true, 9813 Op->getSourceRange()); 9814 } 9815 9816 if (const PointerType *PT = OpTy->getAs<PointerType>()) 9817 Result = PT->getPointeeType(); 9818 else if (const ObjCObjectPointerType *OPT = 9819 OpTy->getAs<ObjCObjectPointerType>()) 9820 Result = OPT->getPointeeType(); 9821 else { 9822 ExprResult PR = S.CheckPlaceholderExpr(Op); 9823 if (PR.isInvalid()) return QualType(); 9824 if (PR.get() != Op) 9825 return CheckIndirectionOperand(S, PR.get(), VK, OpLoc); 9826 } 9827 9828 if (Result.isNull()) { 9829 S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) 9830 << OpTy << Op->getSourceRange(); 9831 return QualType(); 9832 } 9833 9834 // Note that per both C89 and C99, indirection is always legal, even if Result 9835 // is an incomplete type or void. It would be possible to warn about 9836 // dereferencing a void pointer, but it's completely well-defined, and such a 9837 // warning is unlikely to catch any mistakes. In C++, indirection is not valid 9838 // for pointers to 'void' but is fine for any other pointer type: 9839 // 9840 // C++ [expr.unary.op]p1: 9841 // [...] the expression to which [the unary * operator] is applied shall 9842 // be a pointer to an object type, or a pointer to a function type 9843 if (S.getLangOpts().CPlusPlus && Result->isVoidType()) 9844 S.Diag(OpLoc, diag::ext_typecheck_indirection_through_void_pointer) 9845 << OpTy << Op->getSourceRange(); 9846 9847 // Dereferences are usually l-values... 9848 VK = VK_LValue; 9849 9850 // ...except that certain expressions are never l-values in C. 9851 if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType()) 9852 VK = VK_RValue; 9853 9854 return Result; 9855 } 9856 9857 BinaryOperatorKind Sema::ConvertTokenKindToBinaryOpcode(tok::TokenKind Kind) { 9858 BinaryOperatorKind Opc; 9859 switch (Kind) { 9860 default: llvm_unreachable("Unknown binop!"); 9861 case tok::periodstar: Opc = BO_PtrMemD; break; 9862 case tok::arrowstar: Opc = BO_PtrMemI; break; 9863 case tok::star: Opc = BO_Mul; break; 9864 case tok::slash: Opc = BO_Div; break; 9865 case tok::percent: Opc = BO_Rem; break; 9866 case tok::plus: Opc = BO_Add; break; 9867 case tok::minus: Opc = BO_Sub; break; 9868 case tok::lessless: Opc = BO_Shl; break; 9869 case tok::greatergreater: Opc = BO_Shr; break; 9870 case tok::lessequal: Opc = BO_LE; break; 9871 case tok::less: Opc = BO_LT; break; 9872 case tok::greaterequal: Opc = BO_GE; break; 9873 case tok::greater: Opc = BO_GT; break; 9874 case tok::exclaimequal: Opc = BO_NE; break; 9875 case tok::equalequal: Opc = BO_EQ; break; 9876 case tok::amp: Opc = BO_And; break; 9877 case tok::caret: Opc = BO_Xor; break; 9878 case tok::pipe: Opc = BO_Or; break; 9879 case tok::ampamp: Opc = BO_LAnd; break; 9880 case tok::pipepipe: Opc = BO_LOr; break; 9881 case tok::equal: Opc = BO_Assign; break; 9882 case tok::starequal: Opc = BO_MulAssign; break; 9883 case tok::slashequal: Opc = BO_DivAssign; break; 9884 case tok::percentequal: Opc = BO_RemAssign; break; 9885 case tok::plusequal: Opc = BO_AddAssign; break; 9886 case tok::minusequal: Opc = BO_SubAssign; break; 9887 case tok::lesslessequal: Opc = BO_ShlAssign; break; 9888 case tok::greatergreaterequal: Opc = BO_ShrAssign; break; 9889 case tok::ampequal: Opc = BO_AndAssign; break; 9890 case tok::caretequal: Opc = BO_XorAssign; break; 9891 case tok::pipeequal: Opc = BO_OrAssign; break; 9892 case tok::comma: Opc = BO_Comma; break; 9893 } 9894 return Opc; 9895 } 9896 9897 static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode( 9898 tok::TokenKind Kind) { 9899 UnaryOperatorKind Opc; 9900 switch (Kind) { 9901 default: llvm_unreachable("Unknown unary op!"); 9902 case tok::plusplus: Opc = UO_PreInc; break; 9903 case tok::minusminus: Opc = UO_PreDec; break; 9904 case tok::amp: Opc = UO_AddrOf; break; 9905 case tok::star: Opc = UO_Deref; break; 9906 case tok::plus: Opc = UO_Plus; break; 9907 case tok::minus: Opc = UO_Minus; break; 9908 case tok::tilde: Opc = UO_Not; break; 9909 case tok::exclaim: Opc = UO_LNot; break; 9910 case tok::kw___real: Opc = UO_Real; break; 9911 case tok::kw___imag: Opc = UO_Imag; break; 9912 case tok::kw___extension__: Opc = UO_Extension; break; 9913 } 9914 return Opc; 9915 } 9916 9917 /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself. 9918 /// This warning is only emitted for builtin assignment operations. It is also 9919 /// suppressed in the event of macro expansions. 9920 static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr, 9921 SourceLocation OpLoc) { 9922 if (!S.ActiveTemplateInstantiations.empty()) 9923 return; 9924 if (OpLoc.isInvalid() || OpLoc.isMacroID()) 9925 return; 9926 LHSExpr = LHSExpr->IgnoreParenImpCasts(); 9927 RHSExpr = RHSExpr->IgnoreParenImpCasts(); 9928 const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr); 9929 const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr); 9930 if (!LHSDeclRef || !RHSDeclRef || 9931 LHSDeclRef->getLocation().isMacroID() || 9932 RHSDeclRef->getLocation().isMacroID()) 9933 return; 9934 const ValueDecl *LHSDecl = 9935 cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl()); 9936 const ValueDecl *RHSDecl = 9937 cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl()); 9938 if (LHSDecl != RHSDecl) 9939 return; 9940 if (LHSDecl->getType().isVolatileQualified()) 9941 return; 9942 if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>()) 9943 if (RefTy->getPointeeType().isVolatileQualified()) 9944 return; 9945 9946 S.Diag(OpLoc, diag::warn_self_assignment) 9947 << LHSDeclRef->getType() 9948 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange(); 9949 } 9950 9951 /// Check if a bitwise-& is performed on an Objective-C pointer. This 9952 /// is usually indicative of introspection within the Objective-C pointer. 9953 static void checkObjCPointerIntrospection(Sema &S, ExprResult &L, ExprResult &R, 9954 SourceLocation OpLoc) { 9955 if (!S.getLangOpts().ObjC1) 9956 return; 9957 9958 const Expr *ObjCPointerExpr = nullptr, *OtherExpr = nullptr; 9959 const Expr *LHS = L.get(); 9960 const Expr *RHS = R.get(); 9961 9962 if (LHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) { 9963 ObjCPointerExpr = LHS; 9964 OtherExpr = RHS; 9965 } 9966 else if (RHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) { 9967 ObjCPointerExpr = RHS; 9968 OtherExpr = LHS; 9969 } 9970 9971 // This warning is deliberately made very specific to reduce false 9972 // positives with logic that uses '&' for hashing. This logic mainly 9973 // looks for code trying to introspect into tagged pointers, which 9974 // code should generally never do. 9975 if (ObjCPointerExpr && isa<IntegerLiteral>(OtherExpr->IgnoreParenCasts())) { 9976 unsigned Diag = diag::warn_objc_pointer_masking; 9977 // Determine if we are introspecting the result of performSelectorXXX. 9978 const Expr *Ex = ObjCPointerExpr->IgnoreParenCasts(); 9979 // Special case messages to -performSelector and friends, which 9980 // can return non-pointer values boxed in a pointer value. 9981 // Some clients may wish to silence warnings in this subcase. 9982 if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(Ex)) { 9983 Selector S = ME->getSelector(); 9984 StringRef SelArg0 = S.getNameForSlot(0); 9985 if (SelArg0.startswith("performSelector")) 9986 Diag = diag::warn_objc_pointer_masking_performSelector; 9987 } 9988 9989 S.Diag(OpLoc, Diag) 9990 << ObjCPointerExpr->getSourceRange(); 9991 } 9992 } 9993 9994 static NamedDecl *getDeclFromExpr(Expr *E) { 9995 if (!E) 9996 return nullptr; 9997 if (auto *DRE = dyn_cast<DeclRefExpr>(E)) 9998 return DRE->getDecl(); 9999 if (auto *ME = dyn_cast<MemberExpr>(E)) 10000 return ME->getMemberDecl(); 10001 if (auto *IRE = dyn_cast<ObjCIvarRefExpr>(E)) 10002 return IRE->getDecl(); 10003 return nullptr; 10004 } 10005 10006 /// CreateBuiltinBinOp - Creates a new built-in binary operation with 10007 /// operator @p Opc at location @c TokLoc. This routine only supports 10008 /// built-in operations; ActOnBinOp handles overloaded operators. 10009 ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, 10010 BinaryOperatorKind Opc, 10011 Expr *LHSExpr, Expr *RHSExpr) { 10012 if (getLangOpts().CPlusPlus11 && isa<InitListExpr>(RHSExpr)) { 10013 // The syntax only allows initializer lists on the RHS of assignment, 10014 // so we don't need to worry about accepting invalid code for 10015 // non-assignment operators. 10016 // C++11 5.17p9: 10017 // The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning 10018 // of x = {} is x = T(). 10019 InitializationKind Kind = 10020 InitializationKind::CreateDirectList(RHSExpr->getLocStart()); 10021 InitializedEntity Entity = 10022 InitializedEntity::InitializeTemporary(LHSExpr->getType()); 10023 InitializationSequence InitSeq(*this, Entity, Kind, RHSExpr); 10024 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr); 10025 if (Init.isInvalid()) 10026 return Init; 10027 RHSExpr = Init.get(); 10028 } 10029 10030 ExprResult LHS = LHSExpr, RHS = RHSExpr; 10031 QualType ResultTy; // Result type of the binary operator. 10032 // The following two variables are used for compound assignment operators 10033 QualType CompLHSTy; // Type of LHS after promotions for computation 10034 QualType CompResultTy; // Type of computation result 10035 ExprValueKind VK = VK_RValue; 10036 ExprObjectKind OK = OK_Ordinary; 10037 10038 if (!getLangOpts().CPlusPlus) { 10039 // C cannot handle TypoExpr nodes on either side of a binop because it 10040 // doesn't handle dependent types properly, so make sure any TypoExprs have 10041 // been dealt with before checking the operands. 10042 LHS = CorrectDelayedTyposInExpr(LHSExpr); 10043 RHS = CorrectDelayedTyposInExpr(RHSExpr, [Opc, LHS](Expr *E) { 10044 if (Opc != BO_Assign) 10045 return ExprResult(E); 10046 // Avoid correcting the RHS to the same Expr as the LHS. 10047 Decl *D = getDeclFromExpr(E); 10048 return (D && D == getDeclFromExpr(LHS.get())) ? ExprError() : E; 10049 }); 10050 if (!LHS.isUsable() || !RHS.isUsable()) 10051 return ExprError(); 10052 } 10053 10054 switch (Opc) { 10055 case BO_Assign: 10056 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType()); 10057 if (getLangOpts().CPlusPlus && 10058 LHS.get()->getObjectKind() != OK_ObjCProperty) { 10059 VK = LHS.get()->getValueKind(); 10060 OK = LHS.get()->getObjectKind(); 10061 } 10062 if (!ResultTy.isNull()) { 10063 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc); 10064 DiagnoseSelfMove(LHS.get(), RHS.get(), OpLoc); 10065 } 10066 RecordModifiableNonNullParam(*this, LHS.get()); 10067 break; 10068 case BO_PtrMemD: 10069 case BO_PtrMemI: 10070 ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc, 10071 Opc == BO_PtrMemI); 10072 break; 10073 case BO_Mul: 10074 case BO_Div: 10075 ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false, 10076 Opc == BO_Div); 10077 break; 10078 case BO_Rem: 10079 ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc); 10080 break; 10081 case BO_Add: 10082 ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc); 10083 break; 10084 case BO_Sub: 10085 ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc); 10086 break; 10087 case BO_Shl: 10088 case BO_Shr: 10089 ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc); 10090 break; 10091 case BO_LE: 10092 case BO_LT: 10093 case BO_GE: 10094 case BO_GT: 10095 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true); 10096 break; 10097 case BO_EQ: 10098 case BO_NE: 10099 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false); 10100 break; 10101 case BO_And: 10102 checkObjCPointerIntrospection(*this, LHS, RHS, OpLoc); 10103 case BO_Xor: 10104 case BO_Or: 10105 ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc); 10106 break; 10107 case BO_LAnd: 10108 case BO_LOr: 10109 ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc); 10110 break; 10111 case BO_MulAssign: 10112 case BO_DivAssign: 10113 CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true, 10114 Opc == BO_DivAssign); 10115 CompLHSTy = CompResultTy; 10116 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10117 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10118 break; 10119 case BO_RemAssign: 10120 CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true); 10121 CompLHSTy = CompResultTy; 10122 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10123 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10124 break; 10125 case BO_AddAssign: 10126 CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy); 10127 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10128 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10129 break; 10130 case BO_SubAssign: 10131 CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy); 10132 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10133 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10134 break; 10135 case BO_ShlAssign: 10136 case BO_ShrAssign: 10137 CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true); 10138 CompLHSTy = CompResultTy; 10139 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10140 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10141 break; 10142 case BO_AndAssign: 10143 case BO_OrAssign: // fallthrough 10144 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc); 10145 case BO_XorAssign: 10146 CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true); 10147 CompLHSTy = CompResultTy; 10148 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10149 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10150 break; 10151 case BO_Comma: 10152 ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc); 10153 if (getLangOpts().CPlusPlus && !RHS.isInvalid()) { 10154 VK = RHS.get()->getValueKind(); 10155 OK = RHS.get()->getObjectKind(); 10156 } 10157 break; 10158 } 10159 if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid()) 10160 return ExprError(); 10161 10162 // Check for array bounds violations for both sides of the BinaryOperator 10163 CheckArrayAccess(LHS.get()); 10164 CheckArrayAccess(RHS.get()); 10165 10166 if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(LHS.get()->IgnoreParenCasts())) { 10167 NamedDecl *ObjectSetClass = LookupSingleName(TUScope, 10168 &Context.Idents.get("object_setClass"), 10169 SourceLocation(), LookupOrdinaryName); 10170 if (ObjectSetClass && isa<ObjCIsaExpr>(LHS.get())) { 10171 SourceLocation RHSLocEnd = PP.getLocForEndOfToken(RHS.get()->getLocEnd()); 10172 Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign) << 10173 FixItHint::CreateInsertion(LHS.get()->getLocStart(), "object_setClass(") << 10174 FixItHint::CreateReplacement(SourceRange(OISA->getOpLoc(), OpLoc), ",") << 10175 FixItHint::CreateInsertion(RHSLocEnd, ")"); 10176 } 10177 else 10178 Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign); 10179 } 10180 else if (const ObjCIvarRefExpr *OIRE = 10181 dyn_cast<ObjCIvarRefExpr>(LHS.get()->IgnoreParenCasts())) 10182 DiagnoseDirectIsaAccess(*this, OIRE, OpLoc, RHS.get()); 10183 10184 if (CompResultTy.isNull()) 10185 return new (Context) BinaryOperator(LHS.get(), RHS.get(), Opc, ResultTy, VK, 10186 OK, OpLoc, FPFeatures.fp_contract); 10187 if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() != 10188 OK_ObjCProperty) { 10189 VK = VK_LValue; 10190 OK = LHS.get()->getObjectKind(); 10191 } 10192 return new (Context) CompoundAssignOperator( 10193 LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, CompLHSTy, CompResultTy, 10194 OpLoc, FPFeatures.fp_contract); 10195 } 10196 10197 /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison 10198 /// operators are mixed in a way that suggests that the programmer forgot that 10199 /// comparison operators have higher precedence. The most typical example of 10200 /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". 10201 static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, 10202 SourceLocation OpLoc, Expr *LHSExpr, 10203 Expr *RHSExpr) { 10204 BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr); 10205 BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr); 10206 10207 // Check that one of the sides is a comparison operator. 10208 bool isLeftComp = LHSBO && LHSBO->isComparisonOp(); 10209 bool isRightComp = RHSBO && RHSBO->isComparisonOp(); 10210 if (!isLeftComp && !isRightComp) 10211 return; 10212 10213 // Bitwise operations are sometimes used as eager logical ops. 10214 // Don't diagnose this. 10215 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); 10216 bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp(); 10217 if ((isLeftComp || isLeftBitwise) && (isRightComp || isRightBitwise)) 10218 return; 10219 10220 SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(), 10221 OpLoc) 10222 : SourceRange(OpLoc, RHSExpr->getLocEnd()); 10223 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); 10224 SourceRange ParensRange = isLeftComp ? 10225 SourceRange(LHSBO->getRHS()->getLocStart(), RHSExpr->getLocEnd()) 10226 : SourceRange(LHSExpr->getLocStart(), RHSBO->getLHS()->getLocEnd()); 10227 10228 Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel) 10229 << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr; 10230 SuggestParentheses(Self, OpLoc, 10231 Self.PDiag(diag::note_precedence_silence) << OpStr, 10232 (isLeftComp ? LHSExpr : RHSExpr)->getSourceRange()); 10233 SuggestParentheses(Self, OpLoc, 10234 Self.PDiag(diag::note_precedence_bitwise_first) 10235 << BinaryOperator::getOpcodeStr(Opc), 10236 ParensRange); 10237 } 10238 10239 /// \brief It accepts a '&' expr that is inside a '|' one. 10240 /// Emit a diagnostic together with a fixit hint that wraps the '&' expression 10241 /// in parentheses. 10242 static void 10243 EmitDiagnosticForBitwiseAndInBitwiseOr(Sema &Self, SourceLocation OpLoc, 10244 BinaryOperator *Bop) { 10245 assert(Bop->getOpcode() == BO_And); 10246 Self.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_and_in_bitwise_or) 10247 << Bop->getSourceRange() << OpLoc; 10248 SuggestParentheses(Self, Bop->getOperatorLoc(), 10249 Self.PDiag(diag::note_precedence_silence) 10250 << Bop->getOpcodeStr(), 10251 Bop->getSourceRange()); 10252 } 10253 10254 /// \brief It accepts a '&&' expr that is inside a '||' one. 10255 /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression 10256 /// in parentheses. 10257 static void 10258 EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc, 10259 BinaryOperator *Bop) { 10260 assert(Bop->getOpcode() == BO_LAnd); 10261 Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or) 10262 << Bop->getSourceRange() << OpLoc; 10263 SuggestParentheses(Self, Bop->getOperatorLoc(), 10264 Self.PDiag(diag::note_precedence_silence) 10265 << Bop->getOpcodeStr(), 10266 Bop->getSourceRange()); 10267 } 10268 10269 /// \brief Returns true if the given expression can be evaluated as a constant 10270 /// 'true'. 10271 static bool EvaluatesAsTrue(Sema &S, Expr *E) { 10272 bool Res; 10273 return !E->isValueDependent() && 10274 E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res; 10275 } 10276 10277 /// \brief Returns true if the given expression can be evaluated as a constant 10278 /// 'false'. 10279 static bool EvaluatesAsFalse(Sema &S, Expr *E) { 10280 bool Res; 10281 return !E->isValueDependent() && 10282 E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res; 10283 } 10284 10285 /// \brief Look for '&&' in the left hand of a '||' expr. 10286 static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc, 10287 Expr *LHSExpr, Expr *RHSExpr) { 10288 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) { 10289 if (Bop->getOpcode() == BO_LAnd) { 10290 // If it's "a && b || 0" don't warn since the precedence doesn't matter. 10291 if (EvaluatesAsFalse(S, RHSExpr)) 10292 return; 10293 // If it's "1 && a || b" don't warn since the precedence doesn't matter. 10294 if (!EvaluatesAsTrue(S, Bop->getLHS())) 10295 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); 10296 } else if (Bop->getOpcode() == BO_LOr) { 10297 if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) { 10298 // If it's "a || b && 1 || c" we didn't warn earlier for 10299 // "a || b && 1", but warn now. 10300 if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS())) 10301 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop); 10302 } 10303 } 10304 } 10305 } 10306 10307 /// \brief Look for '&&' in the right hand of a '||' expr. 10308 static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, 10309 Expr *LHSExpr, Expr *RHSExpr) { 10310 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) { 10311 if (Bop->getOpcode() == BO_LAnd) { 10312 // If it's "0 || a && b" don't warn since the precedence doesn't matter. 10313 if (EvaluatesAsFalse(S, LHSExpr)) 10314 return; 10315 // If it's "a || b && 1" don't warn since the precedence doesn't matter. 10316 if (!EvaluatesAsTrue(S, Bop->getRHS())) 10317 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); 10318 } 10319 } 10320 } 10321 10322 /// \brief Look for '&' in the left or right hand of a '|' expr. 10323 static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc, 10324 Expr *OrArg) { 10325 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrArg)) { 10326 if (Bop->getOpcode() == BO_And) 10327 return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop); 10328 } 10329 } 10330 10331 static void DiagnoseAdditionInShift(Sema &S, SourceLocation OpLoc, 10332 Expr *SubExpr, StringRef Shift) { 10333 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) { 10334 if (Bop->getOpcode() == BO_Add || Bop->getOpcode() == BO_Sub) { 10335 StringRef Op = Bop->getOpcodeStr(); 10336 S.Diag(Bop->getOperatorLoc(), diag::warn_addition_in_bitshift) 10337 << Bop->getSourceRange() << OpLoc << Shift << Op; 10338 SuggestParentheses(S, Bop->getOperatorLoc(), 10339 S.PDiag(diag::note_precedence_silence) << Op, 10340 Bop->getSourceRange()); 10341 } 10342 } 10343 } 10344 10345 static void DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc, 10346 Expr *LHSExpr, Expr *RHSExpr) { 10347 CXXOperatorCallExpr *OCE = dyn_cast<CXXOperatorCallExpr>(LHSExpr); 10348 if (!OCE) 10349 return; 10350 10351 FunctionDecl *FD = OCE->getDirectCallee(); 10352 if (!FD || !FD->isOverloadedOperator()) 10353 return; 10354 10355 OverloadedOperatorKind Kind = FD->getOverloadedOperator(); 10356 if (Kind != OO_LessLess && Kind != OO_GreaterGreater) 10357 return; 10358 10359 S.Diag(OpLoc, diag::warn_overloaded_shift_in_comparison) 10360 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange() 10361 << (Kind == OO_LessLess); 10362 SuggestParentheses(S, OCE->getOperatorLoc(), 10363 S.PDiag(diag::note_precedence_silence) 10364 << (Kind == OO_LessLess ? "<<" : ">>"), 10365 OCE->getSourceRange()); 10366 SuggestParentheses(S, OpLoc, 10367 S.PDiag(diag::note_evaluate_comparison_first), 10368 SourceRange(OCE->getArg(1)->getLocStart(), 10369 RHSExpr->getLocEnd())); 10370 } 10371 10372 /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky 10373 /// precedence. 10374 static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, 10375 SourceLocation OpLoc, Expr *LHSExpr, 10376 Expr *RHSExpr){ 10377 // Diagnose "arg1 'bitwise' arg2 'eq' arg3". 10378 if (BinaryOperator::isBitwiseOp(Opc)) 10379 DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr); 10380 10381 // Diagnose "arg1 & arg2 | arg3" 10382 if (Opc == BO_Or && !OpLoc.isMacroID()/* Don't warn in macros. */) { 10383 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, LHSExpr); 10384 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, RHSExpr); 10385 } 10386 10387 // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does. 10388 // We don't warn for 'assert(a || b && "bad")' since this is safe. 10389 if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) { 10390 DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr); 10391 DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr); 10392 } 10393 10394 if ((Opc == BO_Shl && LHSExpr->getType()->isIntegralType(Self.getASTContext())) 10395 || Opc == BO_Shr) { 10396 StringRef Shift = BinaryOperator::getOpcodeStr(Opc); 10397 DiagnoseAdditionInShift(Self, OpLoc, LHSExpr, Shift); 10398 DiagnoseAdditionInShift(Self, OpLoc, RHSExpr, Shift); 10399 } 10400 10401 // Warn on overloaded shift operators and comparisons, such as: 10402 // cout << 5 == 4; 10403 if (BinaryOperator::isComparisonOp(Opc)) 10404 DiagnoseShiftCompare(Self, OpLoc, LHSExpr, RHSExpr); 10405 } 10406 10407 // Binary Operators. 'Tok' is the token for the operator. 10408 ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, 10409 tok::TokenKind Kind, 10410 Expr *LHSExpr, Expr *RHSExpr) { 10411 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind); 10412 assert(LHSExpr && "ActOnBinOp(): missing left expression"); 10413 assert(RHSExpr && "ActOnBinOp(): missing right expression"); 10414 10415 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" 10416 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr); 10417 10418 return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr); 10419 } 10420 10421 /// Build an overloaded binary operator expression in the given scope. 10422 static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc, 10423 BinaryOperatorKind Opc, 10424 Expr *LHS, Expr *RHS) { 10425 // Find all of the overloaded operators visible from this 10426 // point. We perform both an operator-name lookup from the local 10427 // scope and an argument-dependent lookup based on the types of 10428 // the arguments. 10429 UnresolvedSet<16> Functions; 10430 OverloadedOperatorKind OverOp 10431 = BinaryOperator::getOverloadedOperator(Opc); 10432 if (Sc && OverOp != OO_None && OverOp != OO_Equal) 10433 S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(), 10434 RHS->getType(), Functions); 10435 10436 // Build the (potentially-overloaded, potentially-dependent) 10437 // binary operation. 10438 return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS); 10439 } 10440 10441 ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc, 10442 BinaryOperatorKind Opc, 10443 Expr *LHSExpr, Expr *RHSExpr) { 10444 // We want to end up calling one of checkPseudoObjectAssignment 10445 // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if 10446 // both expressions are overloadable or either is type-dependent), 10447 // or CreateBuiltinBinOp (in any other case). We also want to get 10448 // any placeholder types out of the way. 10449 10450 // Handle pseudo-objects in the LHS. 10451 if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) { 10452 // Assignments with a pseudo-object l-value need special analysis. 10453 if (pty->getKind() == BuiltinType::PseudoObject && 10454 BinaryOperator::isAssignmentOp(Opc)) 10455 return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr); 10456 10457 // Don't resolve overloads if the other type is overloadable. 10458 if (pty->getKind() == BuiltinType::Overload) { 10459 // We can't actually test that if we still have a placeholder, 10460 // though. Fortunately, none of the exceptions we see in that 10461 // code below are valid when the LHS is an overload set. Note 10462 // that an overload set can be dependently-typed, but it never 10463 // instantiates to having an overloadable type. 10464 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); 10465 if (resolvedRHS.isInvalid()) return ExprError(); 10466 RHSExpr = resolvedRHS.get(); 10467 10468 if (RHSExpr->isTypeDependent() || 10469 RHSExpr->getType()->isOverloadableType()) 10470 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10471 } 10472 10473 ExprResult LHS = CheckPlaceholderExpr(LHSExpr); 10474 if (LHS.isInvalid()) return ExprError(); 10475 LHSExpr = LHS.get(); 10476 } 10477 10478 // Handle pseudo-objects in the RHS. 10479 if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) { 10480 // An overload in the RHS can potentially be resolved by the type 10481 // being assigned to. 10482 if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) { 10483 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) 10484 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10485 10486 if (LHSExpr->getType()->isOverloadableType()) 10487 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10488 10489 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); 10490 } 10491 10492 // Don't resolve overloads if the other type is overloadable. 10493 if (pty->getKind() == BuiltinType::Overload && 10494 LHSExpr->getType()->isOverloadableType()) 10495 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10496 10497 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); 10498 if (!resolvedRHS.isUsable()) return ExprError(); 10499 RHSExpr = resolvedRHS.get(); 10500 } 10501 10502 if (getLangOpts().CPlusPlus) { 10503 // If either expression is type-dependent, always build an 10504 // overloaded op. 10505 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) 10506 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10507 10508 // Otherwise, build an overloaded op if either expression has an 10509 // overloadable type. 10510 if (LHSExpr->getType()->isOverloadableType() || 10511 RHSExpr->getType()->isOverloadableType()) 10512 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10513 } 10514 10515 // Build a built-in binary operation. 10516 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); 10517 } 10518 10519 ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, 10520 UnaryOperatorKind Opc, 10521 Expr *InputExpr) { 10522 ExprResult Input = InputExpr; 10523 ExprValueKind VK = VK_RValue; 10524 ExprObjectKind OK = OK_Ordinary; 10525 QualType resultType; 10526 switch (Opc) { 10527 case UO_PreInc: 10528 case UO_PreDec: 10529 case UO_PostInc: 10530 case UO_PostDec: 10531 resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OK, 10532 OpLoc, 10533 Opc == UO_PreInc || 10534 Opc == UO_PostInc, 10535 Opc == UO_PreInc || 10536 Opc == UO_PreDec); 10537 break; 10538 case UO_AddrOf: 10539 resultType = CheckAddressOfOperand(Input, OpLoc); 10540 RecordModifiableNonNullParam(*this, InputExpr); 10541 break; 10542 case UO_Deref: { 10543 Input = DefaultFunctionArrayLvalueConversion(Input.get()); 10544 if (Input.isInvalid()) return ExprError(); 10545 resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc); 10546 break; 10547 } 10548 case UO_Plus: 10549 case UO_Minus: 10550 Input = UsualUnaryConversions(Input.get()); 10551 if (Input.isInvalid()) return ExprError(); 10552 resultType = Input.get()->getType(); 10553 if (resultType->isDependentType()) 10554 break; 10555 if (resultType->isArithmeticType() || // C99 6.5.3.3p1 10556 resultType->isVectorType()) 10557 break; 10558 else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6 10559 Opc == UO_Plus && 10560 resultType->isPointerType()) 10561 break; 10562 10563 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10564 << resultType << Input.get()->getSourceRange()); 10565 10566 case UO_Not: // bitwise complement 10567 Input = UsualUnaryConversions(Input.get()); 10568 if (Input.isInvalid()) 10569 return ExprError(); 10570 resultType = Input.get()->getType(); 10571 if (resultType->isDependentType()) 10572 break; 10573 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. 10574 if (resultType->isComplexType() || resultType->isComplexIntegerType()) 10575 // C99 does not support '~' for complex conjugation. 10576 Diag(OpLoc, diag::ext_integer_complement_complex) 10577 << resultType << Input.get()->getSourceRange(); 10578 else if (resultType->hasIntegerRepresentation()) 10579 break; 10580 else if (resultType->isExtVectorType()) { 10581 if (Context.getLangOpts().OpenCL) { 10582 // OpenCL v1.1 s6.3.f: The bitwise operator not (~) does not operate 10583 // on vector float types. 10584 QualType T = resultType->getAs<ExtVectorType>()->getElementType(); 10585 if (!T->isIntegerType()) 10586 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10587 << resultType << Input.get()->getSourceRange()); 10588 } 10589 break; 10590 } else { 10591 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10592 << resultType << Input.get()->getSourceRange()); 10593 } 10594 break; 10595 10596 case UO_LNot: // logical negation 10597 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). 10598 Input = DefaultFunctionArrayLvalueConversion(Input.get()); 10599 if (Input.isInvalid()) return ExprError(); 10600 resultType = Input.get()->getType(); 10601 10602 // Though we still have to promote half FP to float... 10603 if (resultType->isHalfType() && !Context.getLangOpts().NativeHalfType) { 10604 Input = ImpCastExprToType(Input.get(), Context.FloatTy, CK_FloatingCast).get(); 10605 resultType = Context.FloatTy; 10606 } 10607 10608 if (resultType->isDependentType()) 10609 break; 10610 if (resultType->isScalarType() && !isScopedEnumerationType(resultType)) { 10611 // C99 6.5.3.3p1: ok, fallthrough; 10612 if (Context.getLangOpts().CPlusPlus) { 10613 // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9: 10614 // operand contextually converted to bool. 10615 Input = ImpCastExprToType(Input.get(), Context.BoolTy, 10616 ScalarTypeToBooleanCastKind(resultType)); 10617 } else if (Context.getLangOpts().OpenCL && 10618 Context.getLangOpts().OpenCLVersion < 120) { 10619 // OpenCL v1.1 6.3.h: The logical operator not (!) does not 10620 // operate on scalar float types. 10621 if (!resultType->isIntegerType()) 10622 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10623 << resultType << Input.get()->getSourceRange()); 10624 } 10625 } else if (resultType->isExtVectorType()) { 10626 if (Context.getLangOpts().OpenCL && 10627 Context.getLangOpts().OpenCLVersion < 120) { 10628 // OpenCL v1.1 6.3.h: The logical operator not (!) does not 10629 // operate on vector float types. 10630 QualType T = resultType->getAs<ExtVectorType>()->getElementType(); 10631 if (!T->isIntegerType()) 10632 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10633 << resultType << Input.get()->getSourceRange()); 10634 } 10635 // Vector logical not returns the signed variant of the operand type. 10636 resultType = GetSignedVectorType(resultType); 10637 break; 10638 } else { 10639 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10640 << resultType << Input.get()->getSourceRange()); 10641 } 10642 10643 // LNot always has type int. C99 6.5.3.3p5. 10644 // In C++, it's bool. C++ 5.3.1p8 10645 resultType = Context.getLogicalOperationType(); 10646 break; 10647 case UO_Real: 10648 case UO_Imag: 10649 resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real); 10650 // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary 10651 // complex l-values to ordinary l-values and all other values to r-values. 10652 if (Input.isInvalid()) return ExprError(); 10653 if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) { 10654 if (Input.get()->getValueKind() != VK_RValue && 10655 Input.get()->getObjectKind() == OK_Ordinary) 10656 VK = Input.get()->getValueKind(); 10657 } else if (!getLangOpts().CPlusPlus) { 10658 // In C, a volatile scalar is read by __imag. In C++, it is not. 10659 Input = DefaultLvalueConversion(Input.get()); 10660 } 10661 break; 10662 case UO_Extension: 10663 resultType = Input.get()->getType(); 10664 VK = Input.get()->getValueKind(); 10665 OK = Input.get()->getObjectKind(); 10666 break; 10667 } 10668 if (resultType.isNull() || Input.isInvalid()) 10669 return ExprError(); 10670 10671 // Check for array bounds violations in the operand of the UnaryOperator, 10672 // except for the '*' and '&' operators that have to be handled specially 10673 // by CheckArrayAccess (as there are special cases like &array[arraysize] 10674 // that are explicitly defined as valid by the standard). 10675 if (Opc != UO_AddrOf && Opc != UO_Deref) 10676 CheckArrayAccess(Input.get()); 10677 10678 return new (Context) 10679 UnaryOperator(Input.get(), Opc, resultType, VK, OK, OpLoc); 10680 } 10681 10682 /// \brief Determine whether the given expression is a qualified member 10683 /// access expression, of a form that could be turned into a pointer to member 10684 /// with the address-of operator. 10685 static bool isQualifiedMemberAccess(Expr *E) { 10686 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 10687 if (!DRE->getQualifier()) 10688 return false; 10689 10690 ValueDecl *VD = DRE->getDecl(); 10691 if (!VD->isCXXClassMember()) 10692 return false; 10693 10694 if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD)) 10695 return true; 10696 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD)) 10697 return Method->isInstance(); 10698 10699 return false; 10700 } 10701 10702 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { 10703 if (!ULE->getQualifier()) 10704 return false; 10705 10706 for (UnresolvedLookupExpr::decls_iterator D = ULE->decls_begin(), 10707 DEnd = ULE->decls_end(); 10708 D != DEnd; ++D) { 10709 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*D)) { 10710 if (Method->isInstance()) 10711 return true; 10712 } else { 10713 // Overload set does not contain methods. 10714 break; 10715 } 10716 } 10717 10718 return false; 10719 } 10720 10721 return false; 10722 } 10723 10724 ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc, 10725 UnaryOperatorKind Opc, Expr *Input) { 10726 // First things first: handle placeholders so that the 10727 // overloaded-operator check considers the right type. 10728 if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) { 10729 // Increment and decrement of pseudo-object references. 10730 if (pty->getKind() == BuiltinType::PseudoObject && 10731 UnaryOperator::isIncrementDecrementOp(Opc)) 10732 return checkPseudoObjectIncDec(S, OpLoc, Opc, Input); 10733 10734 // extension is always a builtin operator. 10735 if (Opc == UO_Extension) 10736 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 10737 10738 // & gets special logic for several kinds of placeholder. 10739 // The builtin code knows what to do. 10740 if (Opc == UO_AddrOf && 10741 (pty->getKind() == BuiltinType::Overload || 10742 pty->getKind() == BuiltinType::UnknownAny || 10743 pty->getKind() == BuiltinType::BoundMember)) 10744 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 10745 10746 // Anything else needs to be handled now. 10747 ExprResult Result = CheckPlaceholderExpr(Input); 10748 if (Result.isInvalid()) return ExprError(); 10749 Input = Result.get(); 10750 } 10751 10752 if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() && 10753 UnaryOperator::getOverloadedOperator(Opc) != OO_None && 10754 !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) { 10755 // Find all of the overloaded operators visible from this 10756 // point. We perform both an operator-name lookup from the local 10757 // scope and an argument-dependent lookup based on the types of 10758 // the arguments. 10759 UnresolvedSet<16> Functions; 10760 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); 10761 if (S && OverOp != OO_None) 10762 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), 10763 Functions); 10764 10765 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input); 10766 } 10767 10768 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 10769 } 10770 10771 // Unary Operators. 'Tok' is the token for the operator. 10772 ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, 10773 tok::TokenKind Op, Expr *Input) { 10774 return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input); 10775 } 10776 10777 /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". 10778 ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc, 10779 LabelDecl *TheDecl) { 10780 TheDecl->markUsed(Context); 10781 // Create the AST node. The address of a label always has type 'void*'. 10782 return new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl, 10783 Context.getPointerType(Context.VoidTy)); 10784 } 10785 10786 /// Given the last statement in a statement-expression, check whether 10787 /// the result is a producing expression (like a call to an 10788 /// ns_returns_retained function) and, if so, rebuild it to hoist the 10789 /// release out of the full-expression. Otherwise, return null. 10790 /// Cannot fail. 10791 static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) { 10792 // Should always be wrapped with one of these. 10793 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement); 10794 if (!cleanups) return nullptr; 10795 10796 ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr()); 10797 if (!cast || cast->getCastKind() != CK_ARCConsumeObject) 10798 return nullptr; 10799 10800 // Splice out the cast. This shouldn't modify any interesting 10801 // features of the statement. 10802 Expr *producer = cast->getSubExpr(); 10803 assert(producer->getType() == cast->getType()); 10804 assert(producer->getValueKind() == cast->getValueKind()); 10805 cleanups->setSubExpr(producer); 10806 return cleanups; 10807 } 10808 10809 void Sema::ActOnStartStmtExpr() { 10810 PushExpressionEvaluationContext(ExprEvalContexts.back().Context); 10811 } 10812 10813 void Sema::ActOnStmtExprError() { 10814 // Note that function is also called by TreeTransform when leaving a 10815 // StmtExpr scope without rebuilding anything. 10816 10817 DiscardCleanupsInEvaluationContext(); 10818 PopExpressionEvaluationContext(); 10819 } 10820 10821 ExprResult 10822 Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt, 10823 SourceLocation RPLoc) { // "({..})" 10824 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); 10825 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); 10826 10827 if (hasAnyUnrecoverableErrorsInThisFunction()) 10828 DiscardCleanupsInEvaluationContext(); 10829 assert(!ExprNeedsCleanups && "cleanups within StmtExpr not correctly bound!"); 10830 PopExpressionEvaluationContext(); 10831 10832 // FIXME: there are a variety of strange constraints to enforce here, for 10833 // example, it is not possible to goto into a stmt expression apparently. 10834 // More semantic analysis is needed. 10835 10836 // If there are sub-stmts in the compound stmt, take the type of the last one 10837 // as the type of the stmtexpr. 10838 QualType Ty = Context.VoidTy; 10839 bool StmtExprMayBindToTemp = false; 10840 if (!Compound->body_empty()) { 10841 Stmt *LastStmt = Compound->body_back(); 10842 LabelStmt *LastLabelStmt = nullptr; 10843 // If LastStmt is a label, skip down through into the body. 10844 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) { 10845 LastLabelStmt = Label; 10846 LastStmt = Label->getSubStmt(); 10847 } 10848 10849 if (Expr *LastE = dyn_cast<Expr>(LastStmt)) { 10850 // Do function/array conversion on the last expression, but not 10851 // lvalue-to-rvalue. However, initialize an unqualified type. 10852 ExprResult LastExpr = DefaultFunctionArrayConversion(LastE); 10853 if (LastExpr.isInvalid()) 10854 return ExprError(); 10855 Ty = LastExpr.get()->getType().getUnqualifiedType(); 10856 10857 if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) { 10858 // In ARC, if the final expression ends in a consume, splice 10859 // the consume out and bind it later. In the alternate case 10860 // (when dealing with a retainable type), the result 10861 // initialization will create a produce. In both cases the 10862 // result will be +1, and we'll need to balance that out with 10863 // a bind. 10864 if (Expr *rebuiltLastStmt 10865 = maybeRebuildARCConsumingStmt(LastExpr.get())) { 10866 LastExpr = rebuiltLastStmt; 10867 } else { 10868 LastExpr = PerformCopyInitialization( 10869 InitializedEntity::InitializeResult(LPLoc, 10870 Ty, 10871 false), 10872 SourceLocation(), 10873 LastExpr); 10874 } 10875 10876 if (LastExpr.isInvalid()) 10877 return ExprError(); 10878 if (LastExpr.get() != nullptr) { 10879 if (!LastLabelStmt) 10880 Compound->setLastStmt(LastExpr.get()); 10881 else 10882 LastLabelStmt->setSubStmt(LastExpr.get()); 10883 StmtExprMayBindToTemp = true; 10884 } 10885 } 10886 } 10887 } 10888 10889 // FIXME: Check that expression type is complete/non-abstract; statement 10890 // expressions are not lvalues. 10891 Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc); 10892 if (StmtExprMayBindToTemp) 10893 return MaybeBindToTemporary(ResStmtExpr); 10894 return ResStmtExpr; 10895 } 10896 10897 ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc, 10898 TypeSourceInfo *TInfo, 10899 OffsetOfComponent *CompPtr, 10900 unsigned NumComponents, 10901 SourceLocation RParenLoc) { 10902 QualType ArgTy = TInfo->getType(); 10903 bool Dependent = ArgTy->isDependentType(); 10904 SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange(); 10905 10906 // We must have at least one component that refers to the type, and the first 10907 // one is known to be a field designator. Verify that the ArgTy represents 10908 // a struct/union/class. 10909 if (!Dependent && !ArgTy->isRecordType()) 10910 return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type) 10911 << ArgTy << TypeRange); 10912 10913 // Type must be complete per C99 7.17p3 because a declaring a variable 10914 // with an incomplete type would be ill-formed. 10915 if (!Dependent 10916 && RequireCompleteType(BuiltinLoc, ArgTy, 10917 diag::err_offsetof_incomplete_type, TypeRange)) 10918 return ExprError(); 10919 10920 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a 10921 // GCC extension, diagnose them. 10922 // FIXME: This diagnostic isn't actually visible because the location is in 10923 // a system header! 10924 if (NumComponents != 1) 10925 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) 10926 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); 10927 10928 bool DidWarnAboutNonPOD = false; 10929 QualType CurrentType = ArgTy; 10930 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode; 10931 SmallVector<OffsetOfNode, 4> Comps; 10932 SmallVector<Expr*, 4> Exprs; 10933 for (unsigned i = 0; i != NumComponents; ++i) { 10934 const OffsetOfComponent &OC = CompPtr[i]; 10935 if (OC.isBrackets) { 10936 // Offset of an array sub-field. TODO: Should we allow vector elements? 10937 if (!CurrentType->isDependentType()) { 10938 const ArrayType *AT = Context.getAsArrayType(CurrentType); 10939 if(!AT) 10940 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) 10941 << CurrentType); 10942 CurrentType = AT->getElementType(); 10943 } else 10944 CurrentType = Context.DependentTy; 10945 10946 ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E)); 10947 if (IdxRval.isInvalid()) 10948 return ExprError(); 10949 Expr *Idx = IdxRval.get(); 10950 10951 // The expression must be an integral expression. 10952 // FIXME: An integral constant expression? 10953 if (!Idx->isTypeDependent() && !Idx->isValueDependent() && 10954 !Idx->getType()->isIntegerType()) 10955 return ExprError(Diag(Idx->getLocStart(), 10956 diag::err_typecheck_subscript_not_integer) 10957 << Idx->getSourceRange()); 10958 10959 // Record this array index. 10960 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); 10961 Exprs.push_back(Idx); 10962 continue; 10963 } 10964 10965 // Offset of a field. 10966 if (CurrentType->isDependentType()) { 10967 // We have the offset of a field, but we can't look into the dependent 10968 // type. Just record the identifier of the field. 10969 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); 10970 CurrentType = Context.DependentTy; 10971 continue; 10972 } 10973 10974 // We need to have a complete type to look into. 10975 if (RequireCompleteType(OC.LocStart, CurrentType, 10976 diag::err_offsetof_incomplete_type)) 10977 return ExprError(); 10978 10979 // Look for the designated field. 10980 const RecordType *RC = CurrentType->getAs<RecordType>(); 10981 if (!RC) 10982 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) 10983 << CurrentType); 10984 RecordDecl *RD = RC->getDecl(); 10985 10986 // C++ [lib.support.types]p5: 10987 // The macro offsetof accepts a restricted set of type arguments in this 10988 // International Standard. type shall be a POD structure or a POD union 10989 // (clause 9). 10990 // C++11 [support.types]p4: 10991 // If type is not a standard-layout class (Clause 9), the results are 10992 // undefined. 10993 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { 10994 bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD(); 10995 unsigned DiagID = 10996 LangOpts.CPlusPlus11? diag::ext_offsetof_non_standardlayout_type 10997 : diag::ext_offsetof_non_pod_type; 10998 10999 if (!IsSafe && !DidWarnAboutNonPOD && 11000 DiagRuntimeBehavior(BuiltinLoc, nullptr, 11001 PDiag(DiagID) 11002 << SourceRange(CompPtr[0].LocStart, OC.LocEnd) 11003 << CurrentType)) 11004 DidWarnAboutNonPOD = true; 11005 } 11006 11007 // Look for the field. 11008 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); 11009 LookupQualifiedName(R, RD); 11010 FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>(); 11011 IndirectFieldDecl *IndirectMemberDecl = nullptr; 11012 if (!MemberDecl) { 11013 if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>())) 11014 MemberDecl = IndirectMemberDecl->getAnonField(); 11015 } 11016 11017 if (!MemberDecl) 11018 return ExprError(Diag(BuiltinLoc, diag::err_no_member) 11019 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, 11020 OC.LocEnd)); 11021 11022 // C99 7.17p3: 11023 // (If the specified member is a bit-field, the behavior is undefined.) 11024 // 11025 // We diagnose this as an error. 11026 if (MemberDecl->isBitField()) { 11027 Diag(OC.LocEnd, diag::err_offsetof_bitfield) 11028 << MemberDecl->getDeclName() 11029 << SourceRange(BuiltinLoc, RParenLoc); 11030 Diag(MemberDecl->getLocation(), diag::note_bitfield_decl); 11031 return ExprError(); 11032 } 11033 11034 RecordDecl *Parent = MemberDecl->getParent(); 11035 if (IndirectMemberDecl) 11036 Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext()); 11037 11038 // If the member was found in a base class, introduce OffsetOfNodes for 11039 // the base class indirections. 11040 CXXBasePaths Paths; 11041 if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) { 11042 if (Paths.getDetectedVirtual()) { 11043 Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base) 11044 << MemberDecl->getDeclName() 11045 << SourceRange(BuiltinLoc, RParenLoc); 11046 return ExprError(); 11047 } 11048 11049 CXXBasePath &Path = Paths.front(); 11050 for (CXXBasePath::iterator B = Path.begin(), BEnd = Path.end(); 11051 B != BEnd; ++B) 11052 Comps.push_back(OffsetOfNode(B->Base)); 11053 } 11054 11055 if (IndirectMemberDecl) { 11056 for (auto *FI : IndirectMemberDecl->chain()) { 11057 assert(isa<FieldDecl>(FI)); 11058 Comps.push_back(OffsetOfNode(OC.LocStart, 11059 cast<FieldDecl>(FI), OC.LocEnd)); 11060 } 11061 } else 11062 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd)); 11063 11064 CurrentType = MemberDecl->getType().getNonReferenceType(); 11065 } 11066 11067 return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo, 11068 Comps, Exprs, RParenLoc); 11069 } 11070 11071 ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, 11072 SourceLocation BuiltinLoc, 11073 SourceLocation TypeLoc, 11074 ParsedType ParsedArgTy, 11075 OffsetOfComponent *CompPtr, 11076 unsigned NumComponents, 11077 SourceLocation RParenLoc) { 11078 11079 TypeSourceInfo *ArgTInfo; 11080 QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo); 11081 if (ArgTy.isNull()) 11082 return ExprError(); 11083 11084 if (!ArgTInfo) 11085 ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc); 11086 11087 return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, CompPtr, NumComponents, 11088 RParenLoc); 11089 } 11090 11091 11092 ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, 11093 Expr *CondExpr, 11094 Expr *LHSExpr, Expr *RHSExpr, 11095 SourceLocation RPLoc) { 11096 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); 11097 11098 ExprValueKind VK = VK_RValue; 11099 ExprObjectKind OK = OK_Ordinary; 11100 QualType resType; 11101 bool ValueDependent = false; 11102 bool CondIsTrue = false; 11103 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { 11104 resType = Context.DependentTy; 11105 ValueDependent = true; 11106 } else { 11107 // The conditional expression is required to be a constant expression. 11108 llvm::APSInt condEval(32); 11109 ExprResult CondICE 11110 = VerifyIntegerConstantExpression(CondExpr, &condEval, 11111 diag::err_typecheck_choose_expr_requires_constant, false); 11112 if (CondICE.isInvalid()) 11113 return ExprError(); 11114 CondExpr = CondICE.get(); 11115 CondIsTrue = condEval.getZExtValue(); 11116 11117 // If the condition is > zero, then the AST type is the same as the LSHExpr. 11118 Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr; 11119 11120 resType = ActiveExpr->getType(); 11121 ValueDependent = ActiveExpr->isValueDependent(); 11122 VK = ActiveExpr->getValueKind(); 11123 OK = ActiveExpr->getObjectKind(); 11124 } 11125 11126 return new (Context) 11127 ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc, 11128 CondIsTrue, resType->isDependentType(), ValueDependent); 11129 } 11130 11131 //===----------------------------------------------------------------------===// 11132 // Clang Extensions. 11133 //===----------------------------------------------------------------------===// 11134 11135 /// ActOnBlockStart - This callback is invoked when a block literal is started. 11136 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) { 11137 BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc); 11138 11139 if (LangOpts.CPlusPlus) { 11140 Decl *ManglingContextDecl; 11141 if (MangleNumberingContext *MCtx = 11142 getCurrentMangleNumberContext(Block->getDeclContext(), 11143 ManglingContextDecl)) { 11144 unsigned ManglingNumber = MCtx->getManglingNumber(Block); 11145 Block->setBlockMangling(ManglingNumber, ManglingContextDecl); 11146 } 11147 } 11148 11149 PushBlockScope(CurScope, Block); 11150 CurContext->addDecl(Block); 11151 if (CurScope) 11152 PushDeclContext(CurScope, Block); 11153 else 11154 CurContext = Block; 11155 11156 getCurBlock()->HasImplicitReturnType = true; 11157 11158 // Enter a new evaluation context to insulate the block from any 11159 // cleanups from the enclosing full-expression. 11160 PushExpressionEvaluationContext(PotentiallyEvaluated); 11161 } 11162 11163 void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo, 11164 Scope *CurScope) { 11165 assert(ParamInfo.getIdentifier() == nullptr && 11166 "block-id should have no identifier!"); 11167 assert(ParamInfo.getContext() == Declarator::BlockLiteralContext); 11168 BlockScopeInfo *CurBlock = getCurBlock(); 11169 11170 TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope); 11171 QualType T = Sig->getType(); 11172 11173 // FIXME: We should allow unexpanded parameter packs here, but that would, 11174 // in turn, make the block expression contain unexpanded parameter packs. 11175 if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) { 11176 // Drop the parameters. 11177 FunctionProtoType::ExtProtoInfo EPI; 11178 EPI.HasTrailingReturn = false; 11179 EPI.TypeQuals |= DeclSpec::TQ_const; 11180 T = Context.getFunctionType(Context.DependentTy, None, EPI); 11181 Sig = Context.getTrivialTypeSourceInfo(T); 11182 } 11183 11184 // GetTypeForDeclarator always produces a function type for a block 11185 // literal signature. Furthermore, it is always a FunctionProtoType 11186 // unless the function was written with a typedef. 11187 assert(T->isFunctionType() && 11188 "GetTypeForDeclarator made a non-function block signature"); 11189 11190 // Look for an explicit signature in that function type. 11191 FunctionProtoTypeLoc ExplicitSignature; 11192 11193 TypeLoc tmp = Sig->getTypeLoc().IgnoreParens(); 11194 if ((ExplicitSignature = tmp.getAs<FunctionProtoTypeLoc>())) { 11195 11196 // Check whether that explicit signature was synthesized by 11197 // GetTypeForDeclarator. If so, don't save that as part of the 11198 // written signature. 11199 if (ExplicitSignature.getLocalRangeBegin() == 11200 ExplicitSignature.getLocalRangeEnd()) { 11201 // This would be much cheaper if we stored TypeLocs instead of 11202 // TypeSourceInfos. 11203 TypeLoc Result = ExplicitSignature.getReturnLoc(); 11204 unsigned Size = Result.getFullDataSize(); 11205 Sig = Context.CreateTypeSourceInfo(Result.getType(), Size); 11206 Sig->getTypeLoc().initializeFullCopy(Result, Size); 11207 11208 ExplicitSignature = FunctionProtoTypeLoc(); 11209 } 11210 } 11211 11212 CurBlock->TheDecl->setSignatureAsWritten(Sig); 11213 CurBlock->FunctionType = T; 11214 11215 const FunctionType *Fn = T->getAs<FunctionType>(); 11216 QualType RetTy = Fn->getReturnType(); 11217 bool isVariadic = 11218 (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic()); 11219 11220 CurBlock->TheDecl->setIsVariadic(isVariadic); 11221 11222 // Context.DependentTy is used as a placeholder for a missing block 11223 // return type. TODO: what should we do with declarators like: 11224 // ^ * { ... } 11225 // If the answer is "apply template argument deduction".... 11226 if (RetTy != Context.DependentTy) { 11227 CurBlock->ReturnType = RetTy; 11228 CurBlock->TheDecl->setBlockMissingReturnType(false); 11229 CurBlock->HasImplicitReturnType = false; 11230 } 11231 11232 // Push block parameters from the declarator if we had them. 11233 SmallVector<ParmVarDecl*, 8> Params; 11234 if (ExplicitSignature) { 11235 for (unsigned I = 0, E = ExplicitSignature.getNumParams(); I != E; ++I) { 11236 ParmVarDecl *Param = ExplicitSignature.getParam(I); 11237 if (Param->getIdentifier() == nullptr && 11238 !Param->isImplicit() && 11239 !Param->isInvalidDecl() && 11240 !getLangOpts().CPlusPlus) 11241 Diag(Param->getLocation(), diag::err_parameter_name_omitted); 11242 Params.push_back(Param); 11243 } 11244 11245 // Fake up parameter variables if we have a typedef, like 11246 // ^ fntype { ... } 11247 } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) { 11248 for (const auto &I : Fn->param_types()) { 11249 ParmVarDecl *Param = BuildParmVarDeclForTypedef( 11250 CurBlock->TheDecl, ParamInfo.getLocStart(), I); 11251 Params.push_back(Param); 11252 } 11253 } 11254 11255 // Set the parameters on the block decl. 11256 if (!Params.empty()) { 11257 CurBlock->TheDecl->setParams(Params); 11258 CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(), 11259 CurBlock->TheDecl->param_end(), 11260 /*CheckParameterNames=*/false); 11261 } 11262 11263 // Finally we can process decl attributes. 11264 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); 11265 11266 // Put the parameter variables in scope. 11267 for (auto AI : CurBlock->TheDecl->params()) { 11268 AI->setOwningFunction(CurBlock->TheDecl); 11269 11270 // If this has an identifier, add it to the scope stack. 11271 if (AI->getIdentifier()) { 11272 CheckShadow(CurBlock->TheScope, AI); 11273 11274 PushOnScopeChains(AI, CurBlock->TheScope); 11275 } 11276 } 11277 } 11278 11279 /// ActOnBlockError - If there is an error parsing a block, this callback 11280 /// is invoked to pop the information about the block from the action impl. 11281 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { 11282 // Leave the expression-evaluation context. 11283 DiscardCleanupsInEvaluationContext(); 11284 PopExpressionEvaluationContext(); 11285 11286 // Pop off CurBlock, handle nested blocks. 11287 PopDeclContext(); 11288 PopFunctionScopeInfo(); 11289 } 11290 11291 /// ActOnBlockStmtExpr - This is called when the body of a block statement 11292 /// literal was successfully completed. ^(int x){...} 11293 ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, 11294 Stmt *Body, Scope *CurScope) { 11295 // If blocks are disabled, emit an error. 11296 if (!LangOpts.Blocks) 11297 Diag(CaretLoc, diag::err_blocks_disable); 11298 11299 // Leave the expression-evaluation context. 11300 if (hasAnyUnrecoverableErrorsInThisFunction()) 11301 DiscardCleanupsInEvaluationContext(); 11302 assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!"); 11303 PopExpressionEvaluationContext(); 11304 11305 BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back()); 11306 11307 if (BSI->HasImplicitReturnType) 11308 deduceClosureReturnType(*BSI); 11309 11310 PopDeclContext(); 11311 11312 QualType RetTy = Context.VoidTy; 11313 if (!BSI->ReturnType.isNull()) 11314 RetTy = BSI->ReturnType; 11315 11316 bool NoReturn = BSI->TheDecl->hasAttr<NoReturnAttr>(); 11317 QualType BlockTy; 11318 11319 // Set the captured variables on the block. 11320 // FIXME: Share capture structure between BlockDecl and CapturingScopeInfo! 11321 SmallVector<BlockDecl::Capture, 4> Captures; 11322 for (unsigned i = 0, e = BSI->Captures.size(); i != e; i++) { 11323 CapturingScopeInfo::Capture &Cap = BSI->Captures[i]; 11324 if (Cap.isThisCapture()) 11325 continue; 11326 BlockDecl::Capture NewCap(Cap.getVariable(), Cap.isBlockCapture(), 11327 Cap.isNested(), Cap.getInitExpr()); 11328 Captures.push_back(NewCap); 11329 } 11330 BSI->TheDecl->setCaptures(Context, Captures.begin(), Captures.end(), 11331 BSI->CXXThisCaptureIndex != 0); 11332 11333 // If the user wrote a function type in some form, try to use that. 11334 if (!BSI->FunctionType.isNull()) { 11335 const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>(); 11336 11337 FunctionType::ExtInfo Ext = FTy->getExtInfo(); 11338 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true); 11339 11340 // Turn protoless block types into nullary block types. 11341 if (isa<FunctionNoProtoType>(FTy)) { 11342 FunctionProtoType::ExtProtoInfo EPI; 11343 EPI.ExtInfo = Ext; 11344 BlockTy = Context.getFunctionType(RetTy, None, EPI); 11345 11346 // Otherwise, if we don't need to change anything about the function type, 11347 // preserve its sugar structure. 11348 } else if (FTy->getReturnType() == RetTy && 11349 (!NoReturn || FTy->getNoReturnAttr())) { 11350 BlockTy = BSI->FunctionType; 11351 11352 // Otherwise, make the minimal modifications to the function type. 11353 } else { 11354 const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy); 11355 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 11356 EPI.TypeQuals = 0; // FIXME: silently? 11357 EPI.ExtInfo = Ext; 11358 BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI); 11359 } 11360 11361 // If we don't have a function type, just build one from nothing. 11362 } else { 11363 FunctionProtoType::ExtProtoInfo EPI; 11364 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn); 11365 BlockTy = Context.getFunctionType(RetTy, None, EPI); 11366 } 11367 11368 DiagnoseUnusedParameters(BSI->TheDecl->param_begin(), 11369 BSI->TheDecl->param_end()); 11370 BlockTy = Context.getBlockPointerType(BlockTy); 11371 11372 // If needed, diagnose invalid gotos and switches in the block. 11373 if (getCurFunction()->NeedsScopeChecking() && 11374 !PP.isCodeCompletionEnabled()) 11375 DiagnoseInvalidJumps(cast<CompoundStmt>(Body)); 11376 11377 BSI->TheDecl->setBody(cast<CompoundStmt>(Body)); 11378 11379 // Try to apply the named return value optimization. We have to check again 11380 // if we can do this, though, because blocks keep return statements around 11381 // to deduce an implicit return type. 11382 if (getLangOpts().CPlusPlus && RetTy->isRecordType() && 11383 !BSI->TheDecl->isDependentContext()) 11384 computeNRVO(Body, BSI); 11385 11386 BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy); 11387 AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy(); 11388 PopFunctionScopeInfo(&WP, Result->getBlockDecl(), Result); 11389 11390 // If the block isn't obviously global, i.e. it captures anything at 11391 // all, then we need to do a few things in the surrounding context: 11392 if (Result->getBlockDecl()->hasCaptures()) { 11393 // First, this expression has a new cleanup object. 11394 ExprCleanupObjects.push_back(Result->getBlockDecl()); 11395 ExprNeedsCleanups = true; 11396 11397 // It also gets a branch-protected scope if any of the captured 11398 // variables needs destruction. 11399 for (const auto &CI : Result->getBlockDecl()->captures()) { 11400 const VarDecl *var = CI.getVariable(); 11401 if (var->getType().isDestructedType() != QualType::DK_none) { 11402 getCurFunction()->setHasBranchProtectedScope(); 11403 break; 11404 } 11405 } 11406 } 11407 11408 return Result; 11409 } 11410 11411 ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, 11412 Expr *E, ParsedType Ty, 11413 SourceLocation RPLoc) { 11414 TypeSourceInfo *TInfo; 11415 GetTypeFromParser(Ty, &TInfo); 11416 return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc); 11417 } 11418 11419 ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc, 11420 Expr *E, TypeSourceInfo *TInfo, 11421 SourceLocation RPLoc) { 11422 Expr *OrigExpr = E; 11423 11424 // Get the va_list type 11425 QualType VaListType = Context.getBuiltinVaListType(); 11426 if (VaListType->isArrayType()) { 11427 // Deal with implicit array decay; for example, on x86-64, 11428 // va_list is an array, but it's supposed to decay to 11429 // a pointer for va_arg. 11430 VaListType = Context.getArrayDecayedType(VaListType); 11431 // Make sure the input expression also decays appropriately. 11432 ExprResult Result = UsualUnaryConversions(E); 11433 if (Result.isInvalid()) 11434 return ExprError(); 11435 E = Result.get(); 11436 } else if (VaListType->isRecordType() && getLangOpts().CPlusPlus) { 11437 // If va_list is a record type and we are compiling in C++ mode, 11438 // check the argument using reference binding. 11439 InitializedEntity Entity 11440 = InitializedEntity::InitializeParameter(Context, 11441 Context.getLValueReferenceType(VaListType), false); 11442 ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E); 11443 if (Init.isInvalid()) 11444 return ExprError(); 11445 E = Init.getAs<Expr>(); 11446 } else { 11447 // Otherwise, the va_list argument must be an l-value because 11448 // it is modified by va_arg. 11449 if (!E->isTypeDependent() && 11450 CheckForModifiableLvalue(E, BuiltinLoc, *this)) 11451 return ExprError(); 11452 } 11453 11454 if (!E->isTypeDependent() && 11455 !Context.hasSameType(VaListType, E->getType())) { 11456 return ExprError(Diag(E->getLocStart(), 11457 diag::err_first_argument_to_va_arg_not_of_type_va_list) 11458 << OrigExpr->getType() << E->getSourceRange()); 11459 } 11460 11461 if (!TInfo->getType()->isDependentType()) { 11462 if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(), 11463 diag::err_second_parameter_to_va_arg_incomplete, 11464 TInfo->getTypeLoc())) 11465 return ExprError(); 11466 11467 if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(), 11468 TInfo->getType(), 11469 diag::err_second_parameter_to_va_arg_abstract, 11470 TInfo->getTypeLoc())) 11471 return ExprError(); 11472 11473 if (!TInfo->getType().isPODType(Context)) { 11474 Diag(TInfo->getTypeLoc().getBeginLoc(), 11475 TInfo->getType()->isObjCLifetimeType() 11476 ? diag::warn_second_parameter_to_va_arg_ownership_qualified 11477 : diag::warn_second_parameter_to_va_arg_not_pod) 11478 << TInfo->getType() 11479 << TInfo->getTypeLoc().getSourceRange(); 11480 } 11481 11482 // Check for va_arg where arguments of the given type will be promoted 11483 // (i.e. this va_arg is guaranteed to have undefined behavior). 11484 QualType PromoteType; 11485 if (TInfo->getType()->isPromotableIntegerType()) { 11486 PromoteType = Context.getPromotedIntegerType(TInfo->getType()); 11487 if (Context.typesAreCompatible(PromoteType, TInfo->getType())) 11488 PromoteType = QualType(); 11489 } 11490 if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float)) 11491 PromoteType = Context.DoubleTy; 11492 if (!PromoteType.isNull()) 11493 DiagRuntimeBehavior(TInfo->getTypeLoc().getBeginLoc(), E, 11494 PDiag(diag::warn_second_parameter_to_va_arg_never_compatible) 11495 << TInfo->getType() 11496 << PromoteType 11497 << TInfo->getTypeLoc().getSourceRange()); 11498 } 11499 11500 QualType T = TInfo->getType().getNonLValueExprType(Context); 11501 return new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T); 11502 } 11503 11504 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { 11505 // The type of __null will be int or long, depending on the size of 11506 // pointers on the target. 11507 QualType Ty; 11508 unsigned pw = Context.getTargetInfo().getPointerWidth(0); 11509 if (pw == Context.getTargetInfo().getIntWidth()) 11510 Ty = Context.IntTy; 11511 else if (pw == Context.getTargetInfo().getLongWidth()) 11512 Ty = Context.LongTy; 11513 else if (pw == Context.getTargetInfo().getLongLongWidth()) 11514 Ty = Context.LongLongTy; 11515 else { 11516 llvm_unreachable("I don't know size of pointer!"); 11517 } 11518 11519 return new (Context) GNUNullExpr(Ty, TokenLoc); 11520 } 11521 11522 bool 11523 Sema::ConversionToObjCStringLiteralCheck(QualType DstType, Expr *&Exp) { 11524 if (!getLangOpts().ObjC1) 11525 return false; 11526 11527 const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>(); 11528 if (!PT) 11529 return false; 11530 11531 if (!PT->isObjCIdType()) { 11532 // Check if the destination is the 'NSString' interface. 11533 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); 11534 if (!ID || !ID->getIdentifier()->isStr("NSString")) 11535 return false; 11536 } 11537 11538 // Ignore any parens, implicit casts (should only be 11539 // array-to-pointer decays), and not-so-opaque values. The last is 11540 // important for making this trigger for property assignments. 11541 Expr *SrcExpr = Exp->IgnoreParenImpCasts(); 11542 if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr)) 11543 if (OV->getSourceExpr()) 11544 SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts(); 11545 11546 StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr); 11547 if (!SL || !SL->isAscii()) 11548 return false; 11549 Diag(SL->getLocStart(), diag::err_missing_atsign_prefix) 11550 << FixItHint::CreateInsertion(SL->getLocStart(), "@"); 11551 Exp = BuildObjCStringLiteral(SL->getLocStart(), SL).get(); 11552 return true; 11553 } 11554 11555 bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, 11556 SourceLocation Loc, 11557 QualType DstType, QualType SrcType, 11558 Expr *SrcExpr, AssignmentAction Action, 11559 bool *Complained) { 11560 if (Complained) 11561 *Complained = false; 11562 11563 // Decode the result (notice that AST's are still created for extensions). 11564 bool CheckInferredResultType = false; 11565 bool isInvalid = false; 11566 unsigned DiagKind = 0; 11567 FixItHint Hint; 11568 ConversionFixItGenerator ConvHints; 11569 bool MayHaveConvFixit = false; 11570 bool MayHaveFunctionDiff = false; 11571 const ObjCInterfaceDecl *IFace = nullptr; 11572 const ObjCProtocolDecl *PDecl = nullptr; 11573 11574 switch (ConvTy) { 11575 case Compatible: 11576 DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr); 11577 return false; 11578 11579 case PointerToInt: 11580 DiagKind = diag::ext_typecheck_convert_pointer_int; 11581 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 11582 MayHaveConvFixit = true; 11583 break; 11584 case IntToPointer: 11585 DiagKind = diag::ext_typecheck_convert_int_pointer; 11586 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 11587 MayHaveConvFixit = true; 11588 break; 11589 case IncompatiblePointer: 11590 DiagKind = 11591 (Action == AA_Passing_CFAudited ? 11592 diag::err_arc_typecheck_convert_incompatible_pointer : 11593 diag::ext_typecheck_convert_incompatible_pointer); 11594 CheckInferredResultType = DstType->isObjCObjectPointerType() && 11595 SrcType->isObjCObjectPointerType(); 11596 if (Hint.isNull() && !CheckInferredResultType) { 11597 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 11598 } 11599 else if (CheckInferredResultType) { 11600 SrcType = SrcType.getUnqualifiedType(); 11601 DstType = DstType.getUnqualifiedType(); 11602 } 11603 MayHaveConvFixit = true; 11604 break; 11605 case IncompatiblePointerSign: 11606 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; 11607 break; 11608 case FunctionVoidPointer: 11609 DiagKind = diag::ext_typecheck_convert_pointer_void_func; 11610 break; 11611 case IncompatiblePointerDiscardsQualifiers: { 11612 // Perform array-to-pointer decay if necessary. 11613 if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType); 11614 11615 Qualifiers lhq = SrcType->getPointeeType().getQualifiers(); 11616 Qualifiers rhq = DstType->getPointeeType().getQualifiers(); 11617 if (lhq.getAddressSpace() != rhq.getAddressSpace()) { 11618 DiagKind = diag::err_typecheck_incompatible_address_space; 11619 break; 11620 11621 11622 } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) { 11623 DiagKind = diag::err_typecheck_incompatible_ownership; 11624 break; 11625 } 11626 11627 llvm_unreachable("unknown error case for discarding qualifiers!"); 11628 // fallthrough 11629 } 11630 case CompatiblePointerDiscardsQualifiers: 11631 // If the qualifiers lost were because we were applying the 11632 // (deprecated) C++ conversion from a string literal to a char* 11633 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: 11634 // Ideally, this check would be performed in 11635 // checkPointerTypesForAssignment. However, that would require a 11636 // bit of refactoring (so that the second argument is an 11637 // expression, rather than a type), which should be done as part 11638 // of a larger effort to fix checkPointerTypesForAssignment for 11639 // C++ semantics. 11640 if (getLangOpts().CPlusPlus && 11641 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) 11642 return false; 11643 DiagKind = diag::ext_typecheck_convert_discards_qualifiers; 11644 break; 11645 case IncompatibleNestedPointerQualifiers: 11646 DiagKind = diag::ext_nested_pointer_qualifier_mismatch; 11647 break; 11648 case IntToBlockPointer: 11649 DiagKind = diag::err_int_to_block_pointer; 11650 break; 11651 case IncompatibleBlockPointer: 11652 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; 11653 break; 11654 case IncompatibleObjCQualifiedId: { 11655 if (SrcType->isObjCQualifiedIdType()) { 11656 const ObjCObjectPointerType *srcOPT = 11657 SrcType->getAs<ObjCObjectPointerType>(); 11658 for (auto *srcProto : srcOPT->quals()) { 11659 PDecl = srcProto; 11660 break; 11661 } 11662 if (const ObjCInterfaceType *IFaceT = 11663 DstType->getAs<ObjCObjectPointerType>()->getInterfaceType()) 11664 IFace = IFaceT->getDecl(); 11665 } 11666 else if (DstType->isObjCQualifiedIdType()) { 11667 const ObjCObjectPointerType *dstOPT = 11668 DstType->getAs<ObjCObjectPointerType>(); 11669 for (auto *dstProto : dstOPT->quals()) { 11670 PDecl = dstProto; 11671 break; 11672 } 11673 if (const ObjCInterfaceType *IFaceT = 11674 SrcType->getAs<ObjCObjectPointerType>()->getInterfaceType()) 11675 IFace = IFaceT->getDecl(); 11676 } 11677 DiagKind = diag::warn_incompatible_qualified_id; 11678 break; 11679 } 11680 case IncompatibleVectors: 11681 DiagKind = diag::warn_incompatible_vectors; 11682 break; 11683 case IncompatibleObjCWeakRef: 11684 DiagKind = diag::err_arc_weak_unavailable_assign; 11685 break; 11686 case Incompatible: 11687 DiagKind = diag::err_typecheck_convert_incompatible; 11688 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 11689 MayHaveConvFixit = true; 11690 isInvalid = true; 11691 MayHaveFunctionDiff = true; 11692 break; 11693 } 11694 11695 QualType FirstType, SecondType; 11696 switch (Action) { 11697 case AA_Assigning: 11698 case AA_Initializing: 11699 // The destination type comes first. 11700 FirstType = DstType; 11701 SecondType = SrcType; 11702 break; 11703 11704 case AA_Returning: 11705 case AA_Passing: 11706 case AA_Passing_CFAudited: 11707 case AA_Converting: 11708 case AA_Sending: 11709 case AA_Casting: 11710 // The source type comes first. 11711 FirstType = SrcType; 11712 SecondType = DstType; 11713 break; 11714 } 11715 11716 PartialDiagnostic FDiag = PDiag(DiagKind); 11717 if (Action == AA_Passing_CFAudited) 11718 FDiag << FirstType << SecondType << AA_Passing << SrcExpr->getSourceRange(); 11719 else 11720 FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange(); 11721 11722 // If we can fix the conversion, suggest the FixIts. 11723 assert(ConvHints.isNull() || Hint.isNull()); 11724 if (!ConvHints.isNull()) { 11725 for (std::vector<FixItHint>::iterator HI = ConvHints.Hints.begin(), 11726 HE = ConvHints.Hints.end(); HI != HE; ++HI) 11727 FDiag << *HI; 11728 } else { 11729 FDiag << Hint; 11730 } 11731 if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); } 11732 11733 if (MayHaveFunctionDiff) 11734 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); 11735 11736 Diag(Loc, FDiag); 11737 if (DiagKind == diag::warn_incompatible_qualified_id && 11738 PDecl && IFace && !IFace->hasDefinition()) 11739 Diag(IFace->getLocation(), diag::not_incomplete_class_and_qualified_id) 11740 << IFace->getName() << PDecl->getName(); 11741 11742 if (SecondType == Context.OverloadTy) 11743 NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression, 11744 FirstType); 11745 11746 if (CheckInferredResultType) 11747 EmitRelatedResultTypeNote(SrcExpr); 11748 11749 if (Action == AA_Returning && ConvTy == IncompatiblePointer) 11750 EmitRelatedResultTypeNoteForReturn(DstType); 11751 11752 if (Complained) 11753 *Complained = true; 11754 return isInvalid; 11755 } 11756 11757 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, 11758 llvm::APSInt *Result) { 11759 class SimpleICEDiagnoser : public VerifyICEDiagnoser { 11760 public: 11761 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override { 11762 S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus << SR; 11763 } 11764 } Diagnoser; 11765 11766 return VerifyIntegerConstantExpression(E, Result, Diagnoser); 11767 } 11768 11769 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, 11770 llvm::APSInt *Result, 11771 unsigned DiagID, 11772 bool AllowFold) { 11773 class IDDiagnoser : public VerifyICEDiagnoser { 11774 unsigned DiagID; 11775 11776 public: 11777 IDDiagnoser(unsigned DiagID) 11778 : VerifyICEDiagnoser(DiagID == 0), DiagID(DiagID) { } 11779 11780 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override { 11781 S.Diag(Loc, DiagID) << SR; 11782 } 11783 } Diagnoser(DiagID); 11784 11785 return VerifyIntegerConstantExpression(E, Result, Diagnoser, AllowFold); 11786 } 11787 11788 void Sema::VerifyICEDiagnoser::diagnoseFold(Sema &S, SourceLocation Loc, 11789 SourceRange SR) { 11790 S.Diag(Loc, diag::ext_expr_not_ice) << SR << S.LangOpts.CPlusPlus; 11791 } 11792 11793 ExprResult 11794 Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result, 11795 VerifyICEDiagnoser &Diagnoser, 11796 bool AllowFold) { 11797 SourceLocation DiagLoc = E->getLocStart(); 11798 11799 if (getLangOpts().CPlusPlus11) { 11800 // C++11 [expr.const]p5: 11801 // If an expression of literal class type is used in a context where an 11802 // integral constant expression is required, then that class type shall 11803 // have a single non-explicit conversion function to an integral or 11804 // unscoped enumeration type 11805 ExprResult Converted; 11806 class CXX11ConvertDiagnoser : public ICEConvertDiagnoser { 11807 public: 11808 CXX11ConvertDiagnoser(bool Silent) 11809 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false, 11810 Silent, true) {} 11811 11812 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc, 11813 QualType T) override { 11814 return S.Diag(Loc, diag::err_ice_not_integral) << T; 11815 } 11816 11817 SemaDiagnosticBuilder diagnoseIncomplete( 11818 Sema &S, SourceLocation Loc, QualType T) override { 11819 return S.Diag(Loc, diag::err_ice_incomplete_type) << T; 11820 } 11821 11822 SemaDiagnosticBuilder diagnoseExplicitConv( 11823 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override { 11824 return S.Diag(Loc, diag::err_ice_explicit_conversion) << T << ConvTy; 11825 } 11826 11827 SemaDiagnosticBuilder noteExplicitConv( 11828 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override { 11829 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here) 11830 << ConvTy->isEnumeralType() << ConvTy; 11831 } 11832 11833 SemaDiagnosticBuilder diagnoseAmbiguous( 11834 Sema &S, SourceLocation Loc, QualType T) override { 11835 return S.Diag(Loc, diag::err_ice_ambiguous_conversion) << T; 11836 } 11837 11838 SemaDiagnosticBuilder noteAmbiguous( 11839 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override { 11840 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here) 11841 << ConvTy->isEnumeralType() << ConvTy; 11842 } 11843 11844 SemaDiagnosticBuilder diagnoseConversion( 11845 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override { 11846 llvm_unreachable("conversion functions are permitted"); 11847 } 11848 } ConvertDiagnoser(Diagnoser.Suppress); 11849 11850 Converted = PerformContextualImplicitConversion(DiagLoc, E, 11851 ConvertDiagnoser); 11852 if (Converted.isInvalid()) 11853 return Converted; 11854 E = Converted.get(); 11855 if (!E->getType()->isIntegralOrUnscopedEnumerationType()) 11856 return ExprError(); 11857 } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) { 11858 // An ICE must be of integral or unscoped enumeration type. 11859 if (!Diagnoser.Suppress) 11860 Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange()); 11861 return ExprError(); 11862 } 11863 11864 // Circumvent ICE checking in C++11 to avoid evaluating the expression twice 11865 // in the non-ICE case. 11866 if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) { 11867 if (Result) 11868 *Result = E->EvaluateKnownConstInt(Context); 11869 return E; 11870 } 11871 11872 Expr::EvalResult EvalResult; 11873 SmallVector<PartialDiagnosticAt, 8> Notes; 11874 EvalResult.Diag = &Notes; 11875 11876 // Try to evaluate the expression, and produce diagnostics explaining why it's 11877 // not a constant expression as a side-effect. 11878 bool Folded = E->EvaluateAsRValue(EvalResult, Context) && 11879 EvalResult.Val.isInt() && !EvalResult.HasSideEffects; 11880 11881 // In C++11, we can rely on diagnostics being produced for any expression 11882 // which is not a constant expression. If no diagnostics were produced, then 11883 // this is a constant expression. 11884 if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) { 11885 if (Result) 11886 *Result = EvalResult.Val.getInt(); 11887 return E; 11888 } 11889 11890 // If our only note is the usual "invalid subexpression" note, just point 11891 // the caret at its location rather than producing an essentially 11892 // redundant note. 11893 if (Notes.size() == 1 && Notes[0].second.getDiagID() == 11894 diag::note_invalid_subexpr_in_const_expr) { 11895 DiagLoc = Notes[0].first; 11896 Notes.clear(); 11897 } 11898 11899 if (!Folded || !AllowFold) { 11900 if (!Diagnoser.Suppress) { 11901 Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange()); 11902 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 11903 Diag(Notes[I].first, Notes[I].second); 11904 } 11905 11906 return ExprError(); 11907 } 11908 11909 Diagnoser.diagnoseFold(*this, DiagLoc, E->getSourceRange()); 11910 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 11911 Diag(Notes[I].first, Notes[I].second); 11912 11913 if (Result) 11914 *Result = EvalResult.Val.getInt(); 11915 return E; 11916 } 11917 11918 namespace { 11919 // Handle the case where we conclude a expression which we speculatively 11920 // considered to be unevaluated is actually evaluated. 11921 class TransformToPE : public TreeTransform<TransformToPE> { 11922 typedef TreeTransform<TransformToPE> BaseTransform; 11923 11924 public: 11925 TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { } 11926 11927 // Make sure we redo semantic analysis 11928 bool AlwaysRebuild() { return true; } 11929 11930 // Make sure we handle LabelStmts correctly. 11931 // FIXME: This does the right thing, but maybe we need a more general 11932 // fix to TreeTransform? 11933 StmtResult TransformLabelStmt(LabelStmt *S) { 11934 S->getDecl()->setStmt(nullptr); 11935 return BaseTransform::TransformLabelStmt(S); 11936 } 11937 11938 // We need to special-case DeclRefExprs referring to FieldDecls which 11939 // are not part of a member pointer formation; normal TreeTransforming 11940 // doesn't catch this case because of the way we represent them in the AST. 11941 // FIXME: This is a bit ugly; is it really the best way to handle this 11942 // case? 11943 // 11944 // Error on DeclRefExprs referring to FieldDecls. 11945 ExprResult TransformDeclRefExpr(DeclRefExpr *E) { 11946 if (isa<FieldDecl>(E->getDecl()) && 11947 !SemaRef.isUnevaluatedContext()) 11948 return SemaRef.Diag(E->getLocation(), 11949 diag::err_invalid_non_static_member_use) 11950 << E->getDecl() << E->getSourceRange(); 11951 11952 return BaseTransform::TransformDeclRefExpr(E); 11953 } 11954 11955 // Exception: filter out member pointer formation 11956 ExprResult TransformUnaryOperator(UnaryOperator *E) { 11957 if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType()) 11958 return E; 11959 11960 return BaseTransform::TransformUnaryOperator(E); 11961 } 11962 11963 ExprResult TransformLambdaExpr(LambdaExpr *E) { 11964 // Lambdas never need to be transformed. 11965 return E; 11966 } 11967 }; 11968 } 11969 11970 ExprResult Sema::TransformToPotentiallyEvaluated(Expr *E) { 11971 assert(isUnevaluatedContext() && 11972 "Should only transform unevaluated expressions"); 11973 ExprEvalContexts.back().Context = 11974 ExprEvalContexts[ExprEvalContexts.size()-2].Context; 11975 if (isUnevaluatedContext()) 11976 return E; 11977 return TransformToPE(*this).TransformExpr(E); 11978 } 11979 11980 void 11981 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext, 11982 Decl *LambdaContextDecl, 11983 bool IsDecltype) { 11984 ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(), 11985 ExprNeedsCleanups, LambdaContextDecl, 11986 IsDecltype); 11987 ExprNeedsCleanups = false; 11988 if (!MaybeODRUseExprs.empty()) 11989 std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs); 11990 } 11991 11992 void 11993 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext, 11994 ReuseLambdaContextDecl_t, 11995 bool IsDecltype) { 11996 Decl *ClosureContextDecl = ExprEvalContexts.back().ManglingContextDecl; 11997 PushExpressionEvaluationContext(NewContext, ClosureContextDecl, IsDecltype); 11998 } 11999 12000 void Sema::PopExpressionEvaluationContext() { 12001 ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back(); 12002 unsigned NumTypos = Rec.NumTypos; 12003 12004 if (!Rec.Lambdas.empty()) { 12005 if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) { 12006 unsigned D; 12007 if (Rec.isUnevaluated()) { 12008 // C++11 [expr.prim.lambda]p2: 12009 // A lambda-expression shall not appear in an unevaluated operand 12010 // (Clause 5). 12011 D = diag::err_lambda_unevaluated_operand; 12012 } else { 12013 // C++1y [expr.const]p2: 12014 // A conditional-expression e is a core constant expression unless the 12015 // evaluation of e, following the rules of the abstract machine, would 12016 // evaluate [...] a lambda-expression. 12017 D = diag::err_lambda_in_constant_expression; 12018 } 12019 for (const auto *L : Rec.Lambdas) 12020 Diag(L->getLocStart(), D); 12021 } else { 12022 // Mark the capture expressions odr-used. This was deferred 12023 // during lambda expression creation. 12024 for (auto *Lambda : Rec.Lambdas) { 12025 for (auto *C : Lambda->capture_inits()) 12026 MarkDeclarationsReferencedInExpr(C); 12027 } 12028 } 12029 } 12030 12031 // When are coming out of an unevaluated context, clear out any 12032 // temporaries that we may have created as part of the evaluation of 12033 // the expression in that context: they aren't relevant because they 12034 // will never be constructed. 12035 if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) { 12036 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, 12037 ExprCleanupObjects.end()); 12038 ExprNeedsCleanups = Rec.ParentNeedsCleanups; 12039 CleanupVarDeclMarking(); 12040 std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs); 12041 // Otherwise, merge the contexts together. 12042 } else { 12043 ExprNeedsCleanups |= Rec.ParentNeedsCleanups; 12044 MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(), 12045 Rec.SavedMaybeODRUseExprs.end()); 12046 } 12047 12048 // Pop the current expression evaluation context off the stack. 12049 ExprEvalContexts.pop_back(); 12050 12051 if (!ExprEvalContexts.empty()) 12052 ExprEvalContexts.back().NumTypos += NumTypos; 12053 else 12054 assert(NumTypos == 0 && "There are outstanding typos after popping the " 12055 "last ExpressionEvaluationContextRecord"); 12056 } 12057 12058 void Sema::DiscardCleanupsInEvaluationContext() { 12059 ExprCleanupObjects.erase( 12060 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, 12061 ExprCleanupObjects.end()); 12062 ExprNeedsCleanups = false; 12063 MaybeODRUseExprs.clear(); 12064 } 12065 12066 ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) { 12067 if (!E->getType()->isVariablyModifiedType()) 12068 return E; 12069 return TransformToPotentiallyEvaluated(E); 12070 } 12071 12072 static bool IsPotentiallyEvaluatedContext(Sema &SemaRef) { 12073 // Do not mark anything as "used" within a dependent context; wait for 12074 // an instantiation. 12075 if (SemaRef.CurContext->isDependentContext()) 12076 return false; 12077 12078 switch (SemaRef.ExprEvalContexts.back().Context) { 12079 case Sema::Unevaluated: 12080 case Sema::UnevaluatedAbstract: 12081 // We are in an expression that is not potentially evaluated; do nothing. 12082 // (Depending on how you read the standard, we actually do need to do 12083 // something here for null pointer constants, but the standard's 12084 // definition of a null pointer constant is completely crazy.) 12085 return false; 12086 12087 case Sema::ConstantEvaluated: 12088 case Sema::PotentiallyEvaluated: 12089 // We are in a potentially evaluated expression (or a constant-expression 12090 // in C++03); we need to do implicit template instantiation, implicitly 12091 // define class members, and mark most declarations as used. 12092 return true; 12093 12094 case Sema::PotentiallyEvaluatedIfUsed: 12095 // Referenced declarations will only be used if the construct in the 12096 // containing expression is used. 12097 return false; 12098 } 12099 llvm_unreachable("Invalid context"); 12100 } 12101 12102 /// \brief Mark a function referenced, and check whether it is odr-used 12103 /// (C++ [basic.def.odr]p2, C99 6.9p3) 12104 void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func, 12105 bool OdrUse) { 12106 assert(Func && "No function?"); 12107 12108 Func->setReferenced(); 12109 12110 // C++11 [basic.def.odr]p3: 12111 // A function whose name appears as a potentially-evaluated expression is 12112 // odr-used if it is the unique lookup result or the selected member of a 12113 // set of overloaded functions [...]. 12114 // 12115 // We (incorrectly) mark overload resolution as an unevaluated context, so we 12116 // can just check that here. Skip the rest of this function if we've already 12117 // marked the function as used. 12118 if (Func->isUsed(/*CheckUsedAttr=*/false) || 12119 !IsPotentiallyEvaluatedContext(*this)) { 12120 // C++11 [temp.inst]p3: 12121 // Unless a function template specialization has been explicitly 12122 // instantiated or explicitly specialized, the function template 12123 // specialization is implicitly instantiated when the specialization is 12124 // referenced in a context that requires a function definition to exist. 12125 // 12126 // We consider constexpr function templates to be referenced in a context 12127 // that requires a definition to exist whenever they are referenced. 12128 // 12129 // FIXME: This instantiates constexpr functions too frequently. If this is 12130 // really an unevaluated context (and we're not just in the definition of a 12131 // function template or overload resolution or other cases which we 12132 // incorrectly consider to be unevaluated contexts), and we're not in a 12133 // subexpression which we actually need to evaluate (for instance, a 12134 // template argument, array bound or an expression in a braced-init-list), 12135 // we are not permitted to instantiate this constexpr function definition. 12136 // 12137 // FIXME: This also implicitly defines special members too frequently. They 12138 // are only supposed to be implicitly defined if they are odr-used, but they 12139 // are not odr-used from constant expressions in unevaluated contexts. 12140 // However, they cannot be referenced if they are deleted, and they are 12141 // deleted whenever the implicit definition of the special member would 12142 // fail. 12143 if (!Func->isConstexpr() || Func->getBody()) 12144 return; 12145 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Func); 12146 if (!Func->isImplicitlyInstantiable() && (!MD || MD->isUserProvided())) 12147 return; 12148 } 12149 12150 // Note that this declaration has been used. 12151 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Func)) { 12152 Constructor = cast<CXXConstructorDecl>(Constructor->getFirstDecl()); 12153 if (Constructor->isDefaulted() && !Constructor->isDeleted()) { 12154 if (Constructor->isDefaultConstructor()) { 12155 if (Constructor->isTrivial() && !Constructor->hasAttr<DLLExportAttr>()) 12156 return; 12157 DefineImplicitDefaultConstructor(Loc, Constructor); 12158 } else if (Constructor->isCopyConstructor()) { 12159 DefineImplicitCopyConstructor(Loc, Constructor); 12160 } else if (Constructor->isMoveConstructor()) { 12161 DefineImplicitMoveConstructor(Loc, Constructor); 12162 } 12163 } else if (Constructor->getInheritedConstructor()) { 12164 DefineInheritingConstructor(Loc, Constructor); 12165 } 12166 } else if (CXXDestructorDecl *Destructor = 12167 dyn_cast<CXXDestructorDecl>(Func)) { 12168 Destructor = cast<CXXDestructorDecl>(Destructor->getFirstDecl()); 12169 if (Destructor->isDefaulted() && !Destructor->isDeleted()) { 12170 if (Destructor->isTrivial() && !Destructor->hasAttr<DLLExportAttr>()) 12171 return; 12172 DefineImplicitDestructor(Loc, Destructor); 12173 } 12174 if (Destructor->isVirtual() && getLangOpts().AppleKext) 12175 MarkVTableUsed(Loc, Destructor->getParent()); 12176 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) { 12177 if (MethodDecl->isOverloadedOperator() && 12178 MethodDecl->getOverloadedOperator() == OO_Equal) { 12179 MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl()); 12180 if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) { 12181 if (MethodDecl->isCopyAssignmentOperator()) 12182 DefineImplicitCopyAssignment(Loc, MethodDecl); 12183 else 12184 DefineImplicitMoveAssignment(Loc, MethodDecl); 12185 } 12186 } else if (isa<CXXConversionDecl>(MethodDecl) && 12187 MethodDecl->getParent()->isLambda()) { 12188 CXXConversionDecl *Conversion = 12189 cast<CXXConversionDecl>(MethodDecl->getFirstDecl()); 12190 if (Conversion->isLambdaToBlockPointerConversion()) 12191 DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion); 12192 else 12193 DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion); 12194 } else if (MethodDecl->isVirtual() && getLangOpts().AppleKext) 12195 MarkVTableUsed(Loc, MethodDecl->getParent()); 12196 } 12197 12198 // Recursive functions should be marked when used from another function. 12199 // FIXME: Is this really right? 12200 if (CurContext == Func) return; 12201 12202 // Resolve the exception specification for any function which is 12203 // used: CodeGen will need it. 12204 const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>(); 12205 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) 12206 ResolveExceptionSpec(Loc, FPT); 12207 12208 if (!OdrUse) return; 12209 12210 // Implicit instantiation of function templates and member functions of 12211 // class templates. 12212 if (Func->isImplicitlyInstantiable()) { 12213 bool AlreadyInstantiated = false; 12214 SourceLocation PointOfInstantiation = Loc; 12215 if (FunctionTemplateSpecializationInfo *SpecInfo 12216 = Func->getTemplateSpecializationInfo()) { 12217 if (SpecInfo->getPointOfInstantiation().isInvalid()) 12218 SpecInfo->setPointOfInstantiation(Loc); 12219 else if (SpecInfo->getTemplateSpecializationKind() 12220 == TSK_ImplicitInstantiation) { 12221 AlreadyInstantiated = true; 12222 PointOfInstantiation = SpecInfo->getPointOfInstantiation(); 12223 } 12224 } else if (MemberSpecializationInfo *MSInfo 12225 = Func->getMemberSpecializationInfo()) { 12226 if (MSInfo->getPointOfInstantiation().isInvalid()) 12227 MSInfo->setPointOfInstantiation(Loc); 12228 else if (MSInfo->getTemplateSpecializationKind() 12229 == TSK_ImplicitInstantiation) { 12230 AlreadyInstantiated = true; 12231 PointOfInstantiation = MSInfo->getPointOfInstantiation(); 12232 } 12233 } 12234 12235 if (!AlreadyInstantiated || Func->isConstexpr()) { 12236 if (isa<CXXRecordDecl>(Func->getDeclContext()) && 12237 cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass() && 12238 ActiveTemplateInstantiations.size()) 12239 PendingLocalImplicitInstantiations.push_back( 12240 std::make_pair(Func, PointOfInstantiation)); 12241 else if (Func->isConstexpr()) 12242 // Do not defer instantiations of constexpr functions, to avoid the 12243 // expression evaluator needing to call back into Sema if it sees a 12244 // call to such a function. 12245 InstantiateFunctionDefinition(PointOfInstantiation, Func); 12246 else { 12247 PendingInstantiations.push_back(std::make_pair(Func, 12248 PointOfInstantiation)); 12249 // Notify the consumer that a function was implicitly instantiated. 12250 Consumer.HandleCXXImplicitFunctionInstantiation(Func); 12251 } 12252 } 12253 } else { 12254 // Walk redefinitions, as some of them may be instantiable. 12255 for (auto i : Func->redecls()) { 12256 if (!i->isUsed(false) && i->isImplicitlyInstantiable()) 12257 MarkFunctionReferenced(Loc, i); 12258 } 12259 } 12260 12261 // Keep track of used but undefined functions. 12262 if (!Func->isDefined()) { 12263 if (mightHaveNonExternalLinkage(Func)) 12264 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); 12265 else if (Func->getMostRecentDecl()->isInlined() && 12266 !LangOpts.GNUInline && 12267 !Func->getMostRecentDecl()->hasAttr<GNUInlineAttr>()) 12268 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); 12269 } 12270 12271 // Normally the most current decl is marked used while processing the use and 12272 // any subsequent decls are marked used by decl merging. This fails with 12273 // template instantiation since marking can happen at the end of the file 12274 // and, because of the two phase lookup, this function is called with at 12275 // decl in the middle of a decl chain. We loop to maintain the invariant 12276 // that once a decl is used, all decls after it are also used. 12277 for (FunctionDecl *F = Func->getMostRecentDecl();; F = F->getPreviousDecl()) { 12278 F->markUsed(Context); 12279 if (F == Func) 12280 break; 12281 } 12282 } 12283 12284 static void 12285 diagnoseUncapturableValueReference(Sema &S, SourceLocation loc, 12286 VarDecl *var, DeclContext *DC) { 12287 DeclContext *VarDC = var->getDeclContext(); 12288 12289 // If the parameter still belongs to the translation unit, then 12290 // we're actually just using one parameter in the declaration of 12291 // the next. 12292 if (isa<ParmVarDecl>(var) && 12293 isa<TranslationUnitDecl>(VarDC)) 12294 return; 12295 12296 // For C code, don't diagnose about capture if we're not actually in code 12297 // right now; it's impossible to write a non-constant expression outside of 12298 // function context, so we'll get other (more useful) diagnostics later. 12299 // 12300 // For C++, things get a bit more nasty... it would be nice to suppress this 12301 // diagnostic for certain cases like using a local variable in an array bound 12302 // for a member of a local class, but the correct predicate is not obvious. 12303 if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod()) 12304 return; 12305 12306 if (isa<CXXMethodDecl>(VarDC) && 12307 cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) { 12308 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_lambda) 12309 << var->getIdentifier(); 12310 } else if (FunctionDecl *fn = dyn_cast<FunctionDecl>(VarDC)) { 12311 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function) 12312 << var->getIdentifier() << fn->getDeclName(); 12313 } else if (isa<BlockDecl>(VarDC)) { 12314 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_block) 12315 << var->getIdentifier(); 12316 } else { 12317 // FIXME: Is there any other context where a local variable can be 12318 // declared? 12319 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_context) 12320 << var->getIdentifier(); 12321 } 12322 12323 S.Diag(var->getLocation(), diag::note_entity_declared_at) 12324 << var->getIdentifier(); 12325 12326 // FIXME: Add additional diagnostic info about class etc. which prevents 12327 // capture. 12328 } 12329 12330 12331 static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var, 12332 bool &SubCapturesAreNested, 12333 QualType &CaptureType, 12334 QualType &DeclRefType) { 12335 // Check whether we've already captured it. 12336 if (CSI->CaptureMap.count(Var)) { 12337 // If we found a capture, any subcaptures are nested. 12338 SubCapturesAreNested = true; 12339 12340 // Retrieve the capture type for this variable. 12341 CaptureType = CSI->getCapture(Var).getCaptureType(); 12342 12343 // Compute the type of an expression that refers to this variable. 12344 DeclRefType = CaptureType.getNonReferenceType(); 12345 12346 const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var); 12347 if (Cap.isCopyCapture() && 12348 !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable)) 12349 DeclRefType.addConst(); 12350 return true; 12351 } 12352 return false; 12353 } 12354 12355 // Only block literals, captured statements, and lambda expressions can 12356 // capture; other scopes don't work. 12357 static DeclContext *getParentOfCapturingContextOrNull(DeclContext *DC, VarDecl *Var, 12358 SourceLocation Loc, 12359 const bool Diagnose, Sema &S) { 12360 if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC)) 12361 return getLambdaAwareParentOfDeclContext(DC); 12362 else if (Var->hasLocalStorage()) { 12363 if (Diagnose) 12364 diagnoseUncapturableValueReference(S, Loc, Var, DC); 12365 } 12366 return nullptr; 12367 } 12368 12369 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture 12370 // certain types of variables (unnamed, variably modified types etc.) 12371 // so check for eligibility. 12372 static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var, 12373 SourceLocation Loc, 12374 const bool Diagnose, Sema &S) { 12375 12376 bool IsBlock = isa<BlockScopeInfo>(CSI); 12377 bool IsLambda = isa<LambdaScopeInfo>(CSI); 12378 12379 // Lambdas are not allowed to capture unnamed variables 12380 // (e.g. anonymous unions). 12381 // FIXME: The C++11 rule don't actually state this explicitly, but I'm 12382 // assuming that's the intent. 12383 if (IsLambda && !Var->getDeclName()) { 12384 if (Diagnose) { 12385 S.Diag(Loc, diag::err_lambda_capture_anonymous_var); 12386 S.Diag(Var->getLocation(), diag::note_declared_at); 12387 } 12388 return false; 12389 } 12390 12391 // Prohibit variably-modified types in blocks; they're difficult to deal with. 12392 if (Var->getType()->isVariablyModifiedType() && IsBlock) { 12393 if (Diagnose) { 12394 S.Diag(Loc, diag::err_ref_vm_type); 12395 S.Diag(Var->getLocation(), diag::note_previous_decl) 12396 << Var->getDeclName(); 12397 } 12398 return false; 12399 } 12400 // Prohibit structs with flexible array members too. 12401 // We cannot capture what is in the tail end of the struct. 12402 if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) { 12403 if (VTTy->getDecl()->hasFlexibleArrayMember()) { 12404 if (Diagnose) { 12405 if (IsBlock) 12406 S.Diag(Loc, diag::err_ref_flexarray_type); 12407 else 12408 S.Diag(Loc, diag::err_lambda_capture_flexarray_type) 12409 << Var->getDeclName(); 12410 S.Diag(Var->getLocation(), diag::note_previous_decl) 12411 << Var->getDeclName(); 12412 } 12413 return false; 12414 } 12415 } 12416 const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>(); 12417 // Lambdas and captured statements are not allowed to capture __block 12418 // variables; they don't support the expected semantics. 12419 if (HasBlocksAttr && (IsLambda || isa<CapturedRegionScopeInfo>(CSI))) { 12420 if (Diagnose) { 12421 S.Diag(Loc, diag::err_capture_block_variable) 12422 << Var->getDeclName() << !IsLambda; 12423 S.Diag(Var->getLocation(), diag::note_previous_decl) 12424 << Var->getDeclName(); 12425 } 12426 return false; 12427 } 12428 12429 return true; 12430 } 12431 12432 // Returns true if the capture by block was successful. 12433 static bool captureInBlock(BlockScopeInfo *BSI, VarDecl *Var, 12434 SourceLocation Loc, 12435 const bool BuildAndDiagnose, 12436 QualType &CaptureType, 12437 QualType &DeclRefType, 12438 const bool Nested, 12439 Sema &S) { 12440 Expr *CopyExpr = nullptr; 12441 bool ByRef = false; 12442 12443 // Blocks are not allowed to capture arrays. 12444 if (CaptureType->isArrayType()) { 12445 if (BuildAndDiagnose) { 12446 S.Diag(Loc, diag::err_ref_array_type); 12447 S.Diag(Var->getLocation(), diag::note_previous_decl) 12448 << Var->getDeclName(); 12449 } 12450 return false; 12451 } 12452 12453 // Forbid the block-capture of autoreleasing variables. 12454 if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { 12455 if (BuildAndDiagnose) { 12456 S.Diag(Loc, diag::err_arc_autoreleasing_capture) 12457 << /*block*/ 0; 12458 S.Diag(Var->getLocation(), diag::note_previous_decl) 12459 << Var->getDeclName(); 12460 } 12461 return false; 12462 } 12463 const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>(); 12464 if (HasBlocksAttr || CaptureType->isReferenceType()) { 12465 // Block capture by reference does not change the capture or 12466 // declaration reference types. 12467 ByRef = true; 12468 } else { 12469 // Block capture by copy introduces 'const'. 12470 CaptureType = CaptureType.getNonReferenceType().withConst(); 12471 DeclRefType = CaptureType; 12472 12473 if (S.getLangOpts().CPlusPlus && BuildAndDiagnose) { 12474 if (const RecordType *Record = DeclRefType->getAs<RecordType>()) { 12475 // The capture logic needs the destructor, so make sure we mark it. 12476 // Usually this is unnecessary because most local variables have 12477 // their destructors marked at declaration time, but parameters are 12478 // an exception because it's technically only the call site that 12479 // actually requires the destructor. 12480 if (isa<ParmVarDecl>(Var)) 12481 S.FinalizeVarWithDestructor(Var, Record); 12482 12483 // Enter a new evaluation context to insulate the copy 12484 // full-expression. 12485 EnterExpressionEvaluationContext scope(S, S.PotentiallyEvaluated); 12486 12487 // According to the blocks spec, the capture of a variable from 12488 // the stack requires a const copy constructor. This is not true 12489 // of the copy/move done to move a __block variable to the heap. 12490 Expr *DeclRef = new (S.Context) DeclRefExpr(Var, Nested, 12491 DeclRefType.withConst(), 12492 VK_LValue, Loc); 12493 12494 ExprResult Result 12495 = S.PerformCopyInitialization( 12496 InitializedEntity::InitializeBlock(Var->getLocation(), 12497 CaptureType, false), 12498 Loc, DeclRef); 12499 12500 // Build a full-expression copy expression if initialization 12501 // succeeded and used a non-trivial constructor. Recover from 12502 // errors by pretending that the copy isn't necessary. 12503 if (!Result.isInvalid() && 12504 !cast<CXXConstructExpr>(Result.get())->getConstructor() 12505 ->isTrivial()) { 12506 Result = S.MaybeCreateExprWithCleanups(Result); 12507 CopyExpr = Result.get(); 12508 } 12509 } 12510 } 12511 } 12512 12513 // Actually capture the variable. 12514 if (BuildAndDiagnose) 12515 BSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc, 12516 SourceLocation(), CaptureType, CopyExpr); 12517 12518 return true; 12519 12520 } 12521 12522 12523 /// \brief Capture the given variable in the captured region. 12524 static bool captureInCapturedRegion(CapturedRegionScopeInfo *RSI, 12525 VarDecl *Var, 12526 SourceLocation Loc, 12527 const bool BuildAndDiagnose, 12528 QualType &CaptureType, 12529 QualType &DeclRefType, 12530 const bool RefersToCapturedVariable, 12531 Sema &S) { 12532 12533 // By default, capture variables by reference. 12534 bool ByRef = true; 12535 // Using an LValue reference type is consistent with Lambdas (see below). 12536 if (S.getLangOpts().OpenMP && S.IsOpenMPCapturedVar(Var)) 12537 DeclRefType = DeclRefType.getUnqualifiedType(); 12538 CaptureType = S.Context.getLValueReferenceType(DeclRefType); 12539 Expr *CopyExpr = nullptr; 12540 if (BuildAndDiagnose) { 12541 // The current implementation assumes that all variables are captured 12542 // by references. Since there is no capture by copy, no expression 12543 // evaluation will be needed. 12544 RecordDecl *RD = RSI->TheRecordDecl; 12545 12546 FieldDecl *Field 12547 = FieldDecl::Create(S.Context, RD, Loc, Loc, nullptr, CaptureType, 12548 S.Context.getTrivialTypeSourceInfo(CaptureType, Loc), 12549 nullptr, false, ICIS_NoInit); 12550 Field->setImplicit(true); 12551 Field->setAccess(AS_private); 12552 RD->addDecl(Field); 12553 12554 CopyExpr = new (S.Context) DeclRefExpr(Var, RefersToCapturedVariable, 12555 DeclRefType, VK_LValue, Loc); 12556 Var->setReferenced(true); 12557 Var->markUsed(S.Context); 12558 } 12559 12560 // Actually capture the variable. 12561 if (BuildAndDiagnose) 12562 RSI->addCapture(Var, /*isBlock*/false, ByRef, RefersToCapturedVariable, Loc, 12563 SourceLocation(), CaptureType, CopyExpr); 12564 12565 12566 return true; 12567 } 12568 12569 /// \brief Create a field within the lambda class for the variable 12570 /// being captured. 12571 static void addAsFieldToClosureType(Sema &S, LambdaScopeInfo *LSI, VarDecl *Var, 12572 QualType FieldType, QualType DeclRefType, 12573 SourceLocation Loc, 12574 bool RefersToCapturedVariable) { 12575 CXXRecordDecl *Lambda = LSI->Lambda; 12576 12577 // Build the non-static data member. 12578 FieldDecl *Field 12579 = FieldDecl::Create(S.Context, Lambda, Loc, Loc, nullptr, FieldType, 12580 S.Context.getTrivialTypeSourceInfo(FieldType, Loc), 12581 nullptr, false, ICIS_NoInit); 12582 Field->setImplicit(true); 12583 Field->setAccess(AS_private); 12584 Lambda->addDecl(Field); 12585 } 12586 12587 /// \brief Capture the given variable in the lambda. 12588 static bool captureInLambda(LambdaScopeInfo *LSI, 12589 VarDecl *Var, 12590 SourceLocation Loc, 12591 const bool BuildAndDiagnose, 12592 QualType &CaptureType, 12593 QualType &DeclRefType, 12594 const bool RefersToCapturedVariable, 12595 const Sema::TryCaptureKind Kind, 12596 SourceLocation EllipsisLoc, 12597 const bool IsTopScope, 12598 Sema &S) { 12599 12600 // Determine whether we are capturing by reference or by value. 12601 bool ByRef = false; 12602 if (IsTopScope && Kind != Sema::TryCapture_Implicit) { 12603 ByRef = (Kind == Sema::TryCapture_ExplicitByRef); 12604 } else { 12605 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); 12606 } 12607 12608 // Compute the type of the field that will capture this variable. 12609 if (ByRef) { 12610 // C++11 [expr.prim.lambda]p15: 12611 // An entity is captured by reference if it is implicitly or 12612 // explicitly captured but not captured by copy. It is 12613 // unspecified whether additional unnamed non-static data 12614 // members are declared in the closure type for entities 12615 // captured by reference. 12616 // 12617 // FIXME: It is not clear whether we want to build an lvalue reference 12618 // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears 12619 // to do the former, while EDG does the latter. Core issue 1249 will 12620 // clarify, but for now we follow GCC because it's a more permissive and 12621 // easily defensible position. 12622 CaptureType = S.Context.getLValueReferenceType(DeclRefType); 12623 } else { 12624 // C++11 [expr.prim.lambda]p14: 12625 // For each entity captured by copy, an unnamed non-static 12626 // data member is declared in the closure type. The 12627 // declaration order of these members is unspecified. The type 12628 // of such a data member is the type of the corresponding 12629 // captured entity if the entity is not a reference to an 12630 // object, or the referenced type otherwise. [Note: If the 12631 // captured entity is a reference to a function, the 12632 // corresponding data member is also a reference to a 12633 // function. - end note ] 12634 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ 12635 if (!RefType->getPointeeType()->isFunctionType()) 12636 CaptureType = RefType->getPointeeType(); 12637 } 12638 12639 // Forbid the lambda copy-capture of autoreleasing variables. 12640 if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { 12641 if (BuildAndDiagnose) { 12642 S.Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1; 12643 S.Diag(Var->getLocation(), diag::note_previous_decl) 12644 << Var->getDeclName(); 12645 } 12646 return false; 12647 } 12648 12649 // Make sure that by-copy captures are of a complete and non-abstract type. 12650 if (BuildAndDiagnose) { 12651 if (!CaptureType->isDependentType() && 12652 S.RequireCompleteType(Loc, CaptureType, 12653 diag::err_capture_of_incomplete_type, 12654 Var->getDeclName())) 12655 return false; 12656 12657 if (S.RequireNonAbstractType(Loc, CaptureType, 12658 diag::err_capture_of_abstract_type)) 12659 return false; 12660 } 12661 } 12662 12663 // Capture this variable in the lambda. 12664 if (BuildAndDiagnose) 12665 addAsFieldToClosureType(S, LSI, Var, CaptureType, DeclRefType, Loc, 12666 RefersToCapturedVariable); 12667 12668 // Compute the type of a reference to this captured variable. 12669 if (ByRef) 12670 DeclRefType = CaptureType.getNonReferenceType(); 12671 else { 12672 // C++ [expr.prim.lambda]p5: 12673 // The closure type for a lambda-expression has a public inline 12674 // function call operator [...]. This function call operator is 12675 // declared const (9.3.1) if and only if the lambda-expression’s 12676 // parameter-declaration-clause is not followed by mutable. 12677 DeclRefType = CaptureType.getNonReferenceType(); 12678 if (!LSI->Mutable && !CaptureType->isReferenceType()) 12679 DeclRefType.addConst(); 12680 } 12681 12682 // Add the capture. 12683 if (BuildAndDiagnose) 12684 LSI->addCapture(Var, /*IsBlock=*/false, ByRef, RefersToCapturedVariable, 12685 Loc, EllipsisLoc, CaptureType, /*CopyExpr=*/nullptr); 12686 12687 return true; 12688 } 12689 12690 bool Sema::tryCaptureVariable( 12691 VarDecl *Var, SourceLocation ExprLoc, TryCaptureKind Kind, 12692 SourceLocation EllipsisLoc, bool BuildAndDiagnose, QualType &CaptureType, 12693 QualType &DeclRefType, const unsigned *const FunctionScopeIndexToStopAt) { 12694 // An init-capture is notionally from the context surrounding its 12695 // declaration, but its parent DC is the lambda class. 12696 DeclContext *VarDC = Var->getDeclContext(); 12697 if (Var->isInitCapture()) 12698 VarDC = VarDC->getParent(); 12699 12700 DeclContext *DC = CurContext; 12701 const unsigned MaxFunctionScopesIndex = FunctionScopeIndexToStopAt 12702 ? *FunctionScopeIndexToStopAt : FunctionScopes.size() - 1; 12703 // We need to sync up the Declaration Context with the 12704 // FunctionScopeIndexToStopAt 12705 if (FunctionScopeIndexToStopAt) { 12706 unsigned FSIndex = FunctionScopes.size() - 1; 12707 while (FSIndex != MaxFunctionScopesIndex) { 12708 DC = getLambdaAwareParentOfDeclContext(DC); 12709 --FSIndex; 12710 } 12711 } 12712 12713 12714 // If the variable is declared in the current context, there is no need to 12715 // capture it. 12716 if (VarDC == DC) return true; 12717 12718 // Capture global variables if it is required to use private copy of this 12719 // variable. 12720 bool IsGlobal = !Var->hasLocalStorage(); 12721 if (IsGlobal && !(LangOpts.OpenMP && IsOpenMPCapturedVar(Var))) 12722 return true; 12723 12724 // Walk up the stack to determine whether we can capture the variable, 12725 // performing the "simple" checks that don't depend on type. We stop when 12726 // we've either hit the declared scope of the variable or find an existing 12727 // capture of that variable. We start from the innermost capturing-entity 12728 // (the DC) and ensure that all intervening capturing-entities 12729 // (blocks/lambdas etc.) between the innermost capturer and the variable`s 12730 // declcontext can either capture the variable or have already captured 12731 // the variable. 12732 CaptureType = Var->getType(); 12733 DeclRefType = CaptureType.getNonReferenceType(); 12734 bool Nested = false; 12735 bool Explicit = (Kind != TryCapture_Implicit); 12736 unsigned FunctionScopesIndex = MaxFunctionScopesIndex; 12737 unsigned OpenMPLevel = 0; 12738 do { 12739 // Only block literals, captured statements, and lambda expressions can 12740 // capture; other scopes don't work. 12741 DeclContext *ParentDC = getParentOfCapturingContextOrNull(DC, Var, 12742 ExprLoc, 12743 BuildAndDiagnose, 12744 *this); 12745 // We need to check for the parent *first* because, if we *have* 12746 // private-captured a global variable, we need to recursively capture it in 12747 // intermediate blocks, lambdas, etc. 12748 if (!ParentDC) { 12749 if (IsGlobal) { 12750 FunctionScopesIndex = MaxFunctionScopesIndex - 1; 12751 break; 12752 } 12753 return true; 12754 } 12755 12756 FunctionScopeInfo *FSI = FunctionScopes[FunctionScopesIndex]; 12757 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI); 12758 12759 12760 // Check whether we've already captured it. 12761 if (isVariableAlreadyCapturedInScopeInfo(CSI, Var, Nested, CaptureType, 12762 DeclRefType)) 12763 break; 12764 if (getLangOpts().OpenMP) { 12765 if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) { 12766 // OpenMP private variables should not be captured in outer scope, so 12767 // just break here. 12768 if (RSI->CapRegionKind == CR_OpenMP) { 12769 if (isOpenMPPrivateVar(Var, OpenMPLevel)) { 12770 Nested = true; 12771 DeclRefType = DeclRefType.getUnqualifiedType(); 12772 CaptureType = Context.getLValueReferenceType(DeclRefType); 12773 break; 12774 } 12775 ++OpenMPLevel; 12776 } 12777 } 12778 } 12779 // If we are instantiating a generic lambda call operator body, 12780 // we do not want to capture new variables. What was captured 12781 // during either a lambdas transformation or initial parsing 12782 // should be used. 12783 if (isGenericLambdaCallOperatorSpecialization(DC)) { 12784 if (BuildAndDiagnose) { 12785 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI); 12786 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) { 12787 Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName(); 12788 Diag(Var->getLocation(), diag::note_previous_decl) 12789 << Var->getDeclName(); 12790 Diag(LSI->Lambda->getLocStart(), diag::note_lambda_decl); 12791 } else 12792 diagnoseUncapturableValueReference(*this, ExprLoc, Var, DC); 12793 } 12794 return true; 12795 } 12796 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture 12797 // certain types of variables (unnamed, variably modified types etc.) 12798 // so check for eligibility. 12799 if (!isVariableCapturable(CSI, Var, ExprLoc, BuildAndDiagnose, *this)) 12800 return true; 12801 12802 // Try to capture variable-length arrays types. 12803 if (Var->getType()->isVariablyModifiedType()) { 12804 // We're going to walk down into the type and look for VLA 12805 // expressions. 12806 QualType QTy = Var->getType(); 12807 if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var)) 12808 QTy = PVD->getOriginalType(); 12809 do { 12810 const Type *Ty = QTy.getTypePtr(); 12811 switch (Ty->getTypeClass()) { 12812 #define TYPE(Class, Base) 12813 #define ABSTRACT_TYPE(Class, Base) 12814 #define NON_CANONICAL_TYPE(Class, Base) 12815 #define DEPENDENT_TYPE(Class, Base) case Type::Class: 12816 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) 12817 #include "clang/AST/TypeNodes.def" 12818 QTy = QualType(); 12819 break; 12820 // These types are never variably-modified. 12821 case Type::Builtin: 12822 case Type::Complex: 12823 case Type::Vector: 12824 case Type::ExtVector: 12825 case Type::Record: 12826 case Type::Enum: 12827 case Type::Elaborated: 12828 case Type::TemplateSpecialization: 12829 case Type::ObjCObject: 12830 case Type::ObjCInterface: 12831 case Type::ObjCObjectPointer: 12832 llvm_unreachable("type class is never variably-modified!"); 12833 case Type::Adjusted: 12834 QTy = cast<AdjustedType>(Ty)->getOriginalType(); 12835 break; 12836 case Type::Decayed: 12837 QTy = cast<DecayedType>(Ty)->getPointeeType(); 12838 break; 12839 case Type::Pointer: 12840 QTy = cast<PointerType>(Ty)->getPointeeType(); 12841 break; 12842 case Type::BlockPointer: 12843 QTy = cast<BlockPointerType>(Ty)->getPointeeType(); 12844 break; 12845 case Type::LValueReference: 12846 case Type::RValueReference: 12847 QTy = cast<ReferenceType>(Ty)->getPointeeType(); 12848 break; 12849 case Type::MemberPointer: 12850 QTy = cast<MemberPointerType>(Ty)->getPointeeType(); 12851 break; 12852 case Type::ConstantArray: 12853 case Type::IncompleteArray: 12854 // Losing element qualification here is fine. 12855 QTy = cast<ArrayType>(Ty)->getElementType(); 12856 break; 12857 case Type::VariableArray: { 12858 // Losing element qualification here is fine. 12859 const VariableArrayType *VAT = cast<VariableArrayType>(Ty); 12860 12861 // Unknown size indication requires no size computation. 12862 // Otherwise, evaluate and record it. 12863 if (auto Size = VAT->getSizeExpr()) { 12864 if (!CSI->isVLATypeCaptured(VAT)) { 12865 RecordDecl *CapRecord = nullptr; 12866 if (auto LSI = dyn_cast<LambdaScopeInfo>(CSI)) { 12867 CapRecord = LSI->Lambda; 12868 } else if (auto CRSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) { 12869 CapRecord = CRSI->TheRecordDecl; 12870 } 12871 if (CapRecord) { 12872 auto ExprLoc = Size->getExprLoc(); 12873 auto SizeType = Context.getSizeType(); 12874 // Build the non-static data member. 12875 auto Field = FieldDecl::Create( 12876 Context, CapRecord, ExprLoc, ExprLoc, 12877 /*Id*/ nullptr, SizeType, /*TInfo*/ nullptr, 12878 /*BW*/ nullptr, /*Mutable*/ false, 12879 /*InitStyle*/ ICIS_NoInit); 12880 Field->setImplicit(true); 12881 Field->setAccess(AS_private); 12882 Field->setCapturedVLAType(VAT); 12883 CapRecord->addDecl(Field); 12884 12885 CSI->addVLATypeCapture(ExprLoc, SizeType); 12886 } 12887 } 12888 } 12889 QTy = VAT->getElementType(); 12890 break; 12891 } 12892 case Type::FunctionProto: 12893 case Type::FunctionNoProto: 12894 QTy = cast<FunctionType>(Ty)->getReturnType(); 12895 break; 12896 case Type::Paren: 12897 case Type::TypeOf: 12898 case Type::UnaryTransform: 12899 case Type::Attributed: 12900 case Type::SubstTemplateTypeParm: 12901 case Type::PackExpansion: 12902 // Keep walking after single level desugaring. 12903 QTy = QTy.getSingleStepDesugaredType(getASTContext()); 12904 break; 12905 case Type::Typedef: 12906 QTy = cast<TypedefType>(Ty)->desugar(); 12907 break; 12908 case Type::Decltype: 12909 QTy = cast<DecltypeType>(Ty)->desugar(); 12910 break; 12911 case Type::Auto: 12912 QTy = cast<AutoType>(Ty)->getDeducedType(); 12913 break; 12914 case Type::TypeOfExpr: 12915 QTy = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); 12916 break; 12917 case Type::Atomic: 12918 QTy = cast<AtomicType>(Ty)->getValueType(); 12919 break; 12920 } 12921 } while (!QTy.isNull() && QTy->isVariablyModifiedType()); 12922 } 12923 12924 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) { 12925 // No capture-default, and this is not an explicit capture 12926 // so cannot capture this variable. 12927 if (BuildAndDiagnose) { 12928 Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName(); 12929 Diag(Var->getLocation(), diag::note_previous_decl) 12930 << Var->getDeclName(); 12931 Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getLocStart(), 12932 diag::note_lambda_decl); 12933 // FIXME: If we error out because an outer lambda can not implicitly 12934 // capture a variable that an inner lambda explicitly captures, we 12935 // should have the inner lambda do the explicit capture - because 12936 // it makes for cleaner diagnostics later. This would purely be done 12937 // so that the diagnostic does not misleadingly claim that a variable 12938 // can not be captured by a lambda implicitly even though it is captured 12939 // explicitly. Suggestion: 12940 // - create const bool VariableCaptureWasInitiallyExplicit = Explicit 12941 // at the function head 12942 // - cache the StartingDeclContext - this must be a lambda 12943 // - captureInLambda in the innermost lambda the variable. 12944 } 12945 return true; 12946 } 12947 12948 FunctionScopesIndex--; 12949 DC = ParentDC; 12950 Explicit = false; 12951 } while (!VarDC->Equals(DC)); 12952 12953 // Walk back down the scope stack, (e.g. from outer lambda to inner lambda) 12954 // computing the type of the capture at each step, checking type-specific 12955 // requirements, and adding captures if requested. 12956 // If the variable had already been captured previously, we start capturing 12957 // at the lambda nested within that one. 12958 for (unsigned I = ++FunctionScopesIndex, N = MaxFunctionScopesIndex + 1; I != N; 12959 ++I) { 12960 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]); 12961 12962 if (BlockScopeInfo *BSI = dyn_cast<BlockScopeInfo>(CSI)) { 12963 if (!captureInBlock(BSI, Var, ExprLoc, 12964 BuildAndDiagnose, CaptureType, 12965 DeclRefType, Nested, *this)) 12966 return true; 12967 Nested = true; 12968 } else if (CapturedRegionScopeInfo *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) { 12969 if (!captureInCapturedRegion(RSI, Var, ExprLoc, 12970 BuildAndDiagnose, CaptureType, 12971 DeclRefType, Nested, *this)) 12972 return true; 12973 Nested = true; 12974 } else { 12975 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI); 12976 if (!captureInLambda(LSI, Var, ExprLoc, 12977 BuildAndDiagnose, CaptureType, 12978 DeclRefType, Nested, Kind, EllipsisLoc, 12979 /*IsTopScope*/I == N - 1, *this)) 12980 return true; 12981 Nested = true; 12982 } 12983 } 12984 return false; 12985 } 12986 12987 bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc, 12988 TryCaptureKind Kind, SourceLocation EllipsisLoc) { 12989 QualType CaptureType; 12990 QualType DeclRefType; 12991 return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc, 12992 /*BuildAndDiagnose=*/true, CaptureType, 12993 DeclRefType, nullptr); 12994 } 12995 12996 bool Sema::NeedToCaptureVariable(VarDecl *Var, SourceLocation Loc) { 12997 QualType CaptureType; 12998 QualType DeclRefType; 12999 return !tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(), 13000 /*BuildAndDiagnose=*/false, CaptureType, 13001 DeclRefType, nullptr); 13002 } 13003 13004 QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) { 13005 QualType CaptureType; 13006 QualType DeclRefType; 13007 13008 // Determine whether we can capture this variable. 13009 if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(), 13010 /*BuildAndDiagnose=*/false, CaptureType, 13011 DeclRefType, nullptr)) 13012 return QualType(); 13013 13014 return DeclRefType; 13015 } 13016 13017 13018 13019 // If either the type of the variable or the initializer is dependent, 13020 // return false. Otherwise, determine whether the variable is a constant 13021 // expression. Use this if you need to know if a variable that might or 13022 // might not be dependent is truly a constant expression. 13023 static inline bool IsVariableNonDependentAndAConstantExpression(VarDecl *Var, 13024 ASTContext &Context) { 13025 13026 if (Var->getType()->isDependentType()) 13027 return false; 13028 const VarDecl *DefVD = nullptr; 13029 Var->getAnyInitializer(DefVD); 13030 if (!DefVD) 13031 return false; 13032 EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt(); 13033 Expr *Init = cast<Expr>(Eval->Value); 13034 if (Init->isValueDependent()) 13035 return false; 13036 return IsVariableAConstantExpression(Var, Context); 13037 } 13038 13039 13040 void Sema::UpdateMarkingForLValueToRValue(Expr *E) { 13041 // Per C++11 [basic.def.odr], a variable is odr-used "unless it is 13042 // an object that satisfies the requirements for appearing in a 13043 // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1) 13044 // is immediately applied." This function handles the lvalue-to-rvalue 13045 // conversion part. 13046 MaybeODRUseExprs.erase(E->IgnoreParens()); 13047 13048 // If we are in a lambda, check if this DeclRefExpr or MemberExpr refers 13049 // to a variable that is a constant expression, and if so, identify it as 13050 // a reference to a variable that does not involve an odr-use of that 13051 // variable. 13052 if (LambdaScopeInfo *LSI = getCurLambda()) { 13053 Expr *SansParensExpr = E->IgnoreParens(); 13054 VarDecl *Var = nullptr; 13055 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(SansParensExpr)) 13056 Var = dyn_cast<VarDecl>(DRE->getFoundDecl()); 13057 else if (MemberExpr *ME = dyn_cast<MemberExpr>(SansParensExpr)) 13058 Var = dyn_cast<VarDecl>(ME->getMemberDecl()); 13059 13060 if (Var && IsVariableNonDependentAndAConstantExpression(Var, Context)) 13061 LSI->markVariableExprAsNonODRUsed(SansParensExpr); 13062 } 13063 } 13064 13065 ExprResult Sema::ActOnConstantExpression(ExprResult Res) { 13066 Res = CorrectDelayedTyposInExpr(Res); 13067 13068 if (!Res.isUsable()) 13069 return Res; 13070 13071 // If a constant-expression is a reference to a variable where we delay 13072 // deciding whether it is an odr-use, just assume we will apply the 13073 // lvalue-to-rvalue conversion. In the one case where this doesn't happen 13074 // (a non-type template argument), we have special handling anyway. 13075 UpdateMarkingForLValueToRValue(Res.get()); 13076 return Res; 13077 } 13078 13079 void Sema::CleanupVarDeclMarking() { 13080 for (llvm::SmallPtrSetIterator<Expr*> i = MaybeODRUseExprs.begin(), 13081 e = MaybeODRUseExprs.end(); 13082 i != e; ++i) { 13083 VarDecl *Var; 13084 SourceLocation Loc; 13085 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*i)) { 13086 Var = cast<VarDecl>(DRE->getDecl()); 13087 Loc = DRE->getLocation(); 13088 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(*i)) { 13089 Var = cast<VarDecl>(ME->getMemberDecl()); 13090 Loc = ME->getMemberLoc(); 13091 } else { 13092 llvm_unreachable("Unexpected expression"); 13093 } 13094 13095 MarkVarDeclODRUsed(Var, Loc, *this, 13096 /*MaxFunctionScopeIndex Pointer*/ nullptr); 13097 } 13098 13099 MaybeODRUseExprs.clear(); 13100 } 13101 13102 13103 static void DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc, 13104 VarDecl *Var, Expr *E) { 13105 assert((!E || isa<DeclRefExpr>(E) || isa<MemberExpr>(E)) && 13106 "Invalid Expr argument to DoMarkVarDeclReferenced"); 13107 Var->setReferenced(); 13108 13109 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind(); 13110 bool MarkODRUsed = true; 13111 13112 // If the context is not potentially evaluated, this is not an odr-use and 13113 // does not trigger instantiation. 13114 if (!IsPotentiallyEvaluatedContext(SemaRef)) { 13115 if (SemaRef.isUnevaluatedContext()) 13116 return; 13117 13118 // If we don't yet know whether this context is going to end up being an 13119 // evaluated context, and we're referencing a variable from an enclosing 13120 // scope, add a potential capture. 13121 // 13122 // FIXME: Is this necessary? These contexts are only used for default 13123 // arguments, where local variables can't be used. 13124 const bool RefersToEnclosingScope = 13125 (SemaRef.CurContext != Var->getDeclContext() && 13126 Var->getDeclContext()->isFunctionOrMethod() && Var->hasLocalStorage()); 13127 if (RefersToEnclosingScope) { 13128 if (LambdaScopeInfo *const LSI = SemaRef.getCurLambda()) { 13129 // If a variable could potentially be odr-used, defer marking it so 13130 // until we finish analyzing the full expression for any 13131 // lvalue-to-rvalue 13132 // or discarded value conversions that would obviate odr-use. 13133 // Add it to the list of potential captures that will be analyzed 13134 // later (ActOnFinishFullExpr) for eventual capture and odr-use marking 13135 // unless the variable is a reference that was initialized by a constant 13136 // expression (this will never need to be captured or odr-used). 13137 assert(E && "Capture variable should be used in an expression."); 13138 if (!Var->getType()->isReferenceType() || 13139 !IsVariableNonDependentAndAConstantExpression(Var, SemaRef.Context)) 13140 LSI->addPotentialCapture(E->IgnoreParens()); 13141 } 13142 } 13143 13144 if (!isTemplateInstantiation(TSK)) 13145 return; 13146 13147 // Instantiate, but do not mark as odr-used, variable templates. 13148 MarkODRUsed = false; 13149 } 13150 13151 VarTemplateSpecializationDecl *VarSpec = 13152 dyn_cast<VarTemplateSpecializationDecl>(Var); 13153 assert(!isa<VarTemplatePartialSpecializationDecl>(Var) && 13154 "Can't instantiate a partial template specialization."); 13155 13156 // Perform implicit instantiation of static data members, static data member 13157 // templates of class templates, and variable template specializations. Delay 13158 // instantiations of variable templates, except for those that could be used 13159 // in a constant expression. 13160 if (isTemplateInstantiation(TSK)) { 13161 bool TryInstantiating = TSK == TSK_ImplicitInstantiation; 13162 13163 if (TryInstantiating && !isa<VarTemplateSpecializationDecl>(Var)) { 13164 if (Var->getPointOfInstantiation().isInvalid()) { 13165 // This is a modification of an existing AST node. Notify listeners. 13166 if (ASTMutationListener *L = SemaRef.getASTMutationListener()) 13167 L->StaticDataMemberInstantiated(Var); 13168 } else if (!Var->isUsableInConstantExpressions(SemaRef.Context)) 13169 // Don't bother trying to instantiate it again, unless we might need 13170 // its initializer before we get to the end of the TU. 13171 TryInstantiating = false; 13172 } 13173 13174 if (Var->getPointOfInstantiation().isInvalid()) 13175 Var->setTemplateSpecializationKind(TSK, Loc); 13176 13177 if (TryInstantiating) { 13178 SourceLocation PointOfInstantiation = Var->getPointOfInstantiation(); 13179 bool InstantiationDependent = false; 13180 bool IsNonDependent = 13181 VarSpec ? !TemplateSpecializationType::anyDependentTemplateArguments( 13182 VarSpec->getTemplateArgsInfo(), InstantiationDependent) 13183 : true; 13184 13185 // Do not instantiate specializations that are still type-dependent. 13186 if (IsNonDependent) { 13187 if (Var->isUsableInConstantExpressions(SemaRef.Context)) { 13188 // Do not defer instantiations of variables which could be used in a 13189 // constant expression. 13190 SemaRef.InstantiateVariableDefinition(PointOfInstantiation, Var); 13191 } else { 13192 SemaRef.PendingInstantiations 13193 .push_back(std::make_pair(Var, PointOfInstantiation)); 13194 } 13195 } 13196 } 13197 } 13198 13199 if(!MarkODRUsed) return; 13200 13201 // Per C++11 [basic.def.odr], a variable is odr-used "unless it satisfies 13202 // the requirements for appearing in a constant expression (5.19) and, if 13203 // it is an object, the lvalue-to-rvalue conversion (4.1) 13204 // is immediately applied." We check the first part here, and 13205 // Sema::UpdateMarkingForLValueToRValue deals with the second part. 13206 // Note that we use the C++11 definition everywhere because nothing in 13207 // C++03 depends on whether we get the C++03 version correct. The second 13208 // part does not apply to references, since they are not objects. 13209 if (E && IsVariableAConstantExpression(Var, SemaRef.Context)) { 13210 // A reference initialized by a constant expression can never be 13211 // odr-used, so simply ignore it. 13212 if (!Var->getType()->isReferenceType()) 13213 SemaRef.MaybeODRUseExprs.insert(E); 13214 } else 13215 MarkVarDeclODRUsed(Var, Loc, SemaRef, 13216 /*MaxFunctionScopeIndex ptr*/ nullptr); 13217 } 13218 13219 /// \brief Mark a variable referenced, and check whether it is odr-used 13220 /// (C++ [basic.def.odr]p2, C99 6.9p3). Note that this should not be 13221 /// used directly for normal expressions referring to VarDecl. 13222 void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) { 13223 DoMarkVarDeclReferenced(*this, Loc, Var, nullptr); 13224 } 13225 13226 static void MarkExprReferenced(Sema &SemaRef, SourceLocation Loc, 13227 Decl *D, Expr *E, bool OdrUse) { 13228 if (VarDecl *Var = dyn_cast<VarDecl>(D)) { 13229 DoMarkVarDeclReferenced(SemaRef, Loc, Var, E); 13230 return; 13231 } 13232 13233 SemaRef.MarkAnyDeclReferenced(Loc, D, OdrUse); 13234 13235 // If this is a call to a method via a cast, also mark the method in the 13236 // derived class used in case codegen can devirtualize the call. 13237 const MemberExpr *ME = dyn_cast<MemberExpr>(E); 13238 if (!ME) 13239 return; 13240 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl()); 13241 if (!MD) 13242 return; 13243 // Only attempt to devirtualize if this is truly a virtual call. 13244 bool IsVirtualCall = MD->isVirtual() && 13245 ME->performsVirtualDispatch(SemaRef.getLangOpts()); 13246 if (!IsVirtualCall) 13247 return; 13248 const Expr *Base = ME->getBase(); 13249 const CXXRecordDecl *MostDerivedClassDecl = Base->getBestDynamicClassType(); 13250 if (!MostDerivedClassDecl) 13251 return; 13252 CXXMethodDecl *DM = MD->getCorrespondingMethodInClass(MostDerivedClassDecl); 13253 if (!DM || DM->isPure()) 13254 return; 13255 SemaRef.MarkAnyDeclReferenced(Loc, DM, OdrUse); 13256 } 13257 13258 /// \brief Perform reference-marking and odr-use handling for a DeclRefExpr. 13259 void Sema::MarkDeclRefReferenced(DeclRefExpr *E) { 13260 // TODO: update this with DR# once a defect report is filed. 13261 // C++11 defect. The address of a pure member should not be an ODR use, even 13262 // if it's a qualified reference. 13263 bool OdrUse = true; 13264 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl())) 13265 if (Method->isVirtual()) 13266 OdrUse = false; 13267 MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E, OdrUse); 13268 } 13269 13270 /// \brief Perform reference-marking and odr-use handling for a MemberExpr. 13271 void Sema::MarkMemberReferenced(MemberExpr *E) { 13272 // C++11 [basic.def.odr]p2: 13273 // A non-overloaded function whose name appears as a potentially-evaluated 13274 // expression or a member of a set of candidate functions, if selected by 13275 // overload resolution when referred to from a potentially-evaluated 13276 // expression, is odr-used, unless it is a pure virtual function and its 13277 // name is not explicitly qualified. 13278 bool OdrUse = true; 13279 if (E->performsVirtualDispatch(getLangOpts())) { 13280 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) 13281 if (Method->isPure()) 13282 OdrUse = false; 13283 } 13284 SourceLocation Loc = E->getMemberLoc().isValid() ? 13285 E->getMemberLoc() : E->getLocStart(); 13286 MarkExprReferenced(*this, Loc, E->getMemberDecl(), E, OdrUse); 13287 } 13288 13289 /// \brief Perform marking for a reference to an arbitrary declaration. It 13290 /// marks the declaration referenced, and performs odr-use checking for 13291 /// functions and variables. This method should not be used when building a 13292 /// normal expression which refers to a variable. 13293 void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D, bool OdrUse) { 13294 if (OdrUse) { 13295 if (auto *VD = dyn_cast<VarDecl>(D)) { 13296 MarkVariableReferenced(Loc, VD); 13297 return; 13298 } 13299 } 13300 if (auto *FD = dyn_cast<FunctionDecl>(D)) { 13301 MarkFunctionReferenced(Loc, FD, OdrUse); 13302 return; 13303 } 13304 D->setReferenced(); 13305 } 13306 13307 namespace { 13308 // Mark all of the declarations referenced 13309 // FIXME: Not fully implemented yet! We need to have a better understanding 13310 // of when we're entering 13311 class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> { 13312 Sema &S; 13313 SourceLocation Loc; 13314 13315 public: 13316 typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited; 13317 13318 MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { } 13319 13320 bool TraverseTemplateArgument(const TemplateArgument &Arg); 13321 bool TraverseRecordType(RecordType *T); 13322 }; 13323 } 13324 13325 bool MarkReferencedDecls::TraverseTemplateArgument( 13326 const TemplateArgument &Arg) { 13327 if (Arg.getKind() == TemplateArgument::Declaration) { 13328 if (Decl *D = Arg.getAsDecl()) 13329 S.MarkAnyDeclReferenced(Loc, D, true); 13330 } 13331 13332 return Inherited::TraverseTemplateArgument(Arg); 13333 } 13334 13335 bool MarkReferencedDecls::TraverseRecordType(RecordType *T) { 13336 if (ClassTemplateSpecializationDecl *Spec 13337 = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) { 13338 const TemplateArgumentList &Args = Spec->getTemplateArgs(); 13339 return TraverseTemplateArguments(Args.data(), Args.size()); 13340 } 13341 13342 return true; 13343 } 13344 13345 void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) { 13346 MarkReferencedDecls Marker(*this, Loc); 13347 Marker.TraverseType(Context.getCanonicalType(T)); 13348 } 13349 13350 namespace { 13351 /// \brief Helper class that marks all of the declarations referenced by 13352 /// potentially-evaluated subexpressions as "referenced". 13353 class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> { 13354 Sema &S; 13355 bool SkipLocalVariables; 13356 13357 public: 13358 typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited; 13359 13360 EvaluatedExprMarker(Sema &S, bool SkipLocalVariables) 13361 : Inherited(S.Context), S(S), SkipLocalVariables(SkipLocalVariables) { } 13362 13363 void VisitDeclRefExpr(DeclRefExpr *E) { 13364 // If we were asked not to visit local variables, don't. 13365 if (SkipLocalVariables) { 13366 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) 13367 if (VD->hasLocalStorage()) 13368 return; 13369 } 13370 13371 S.MarkDeclRefReferenced(E); 13372 } 13373 13374 void VisitMemberExpr(MemberExpr *E) { 13375 S.MarkMemberReferenced(E); 13376 Inherited::VisitMemberExpr(E); 13377 } 13378 13379 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { 13380 S.MarkFunctionReferenced(E->getLocStart(), 13381 const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor())); 13382 Visit(E->getSubExpr()); 13383 } 13384 13385 void VisitCXXNewExpr(CXXNewExpr *E) { 13386 if (E->getOperatorNew()) 13387 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorNew()); 13388 if (E->getOperatorDelete()) 13389 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete()); 13390 Inherited::VisitCXXNewExpr(E); 13391 } 13392 13393 void VisitCXXDeleteExpr(CXXDeleteExpr *E) { 13394 if (E->getOperatorDelete()) 13395 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete()); 13396 QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType()); 13397 if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) { 13398 CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl()); 13399 S.MarkFunctionReferenced(E->getLocStart(), 13400 S.LookupDestructor(Record)); 13401 } 13402 13403 Inherited::VisitCXXDeleteExpr(E); 13404 } 13405 13406 void VisitCXXConstructExpr(CXXConstructExpr *E) { 13407 S.MarkFunctionReferenced(E->getLocStart(), E->getConstructor()); 13408 Inherited::VisitCXXConstructExpr(E); 13409 } 13410 13411 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) { 13412 Visit(E->getExpr()); 13413 } 13414 13415 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 13416 Inherited::VisitImplicitCastExpr(E); 13417 13418 if (E->getCastKind() == CK_LValueToRValue) 13419 S.UpdateMarkingForLValueToRValue(E->getSubExpr()); 13420 } 13421 }; 13422 } 13423 13424 /// \brief Mark any declarations that appear within this expression or any 13425 /// potentially-evaluated subexpressions as "referenced". 13426 /// 13427 /// \param SkipLocalVariables If true, don't mark local variables as 13428 /// 'referenced'. 13429 void Sema::MarkDeclarationsReferencedInExpr(Expr *E, 13430 bool SkipLocalVariables) { 13431 EvaluatedExprMarker(*this, SkipLocalVariables).Visit(E); 13432 } 13433 13434 /// \brief Emit a diagnostic that describes an effect on the run-time behavior 13435 /// of the program being compiled. 13436 /// 13437 /// This routine emits the given diagnostic when the code currently being 13438 /// type-checked is "potentially evaluated", meaning that there is a 13439 /// possibility that the code will actually be executable. Code in sizeof() 13440 /// expressions, code used only during overload resolution, etc., are not 13441 /// potentially evaluated. This routine will suppress such diagnostics or, 13442 /// in the absolutely nutty case of potentially potentially evaluated 13443 /// expressions (C++ typeid), queue the diagnostic to potentially emit it 13444 /// later. 13445 /// 13446 /// This routine should be used for all diagnostics that describe the run-time 13447 /// behavior of a program, such as passing a non-POD value through an ellipsis. 13448 /// Failure to do so will likely result in spurious diagnostics or failures 13449 /// during overload resolution or within sizeof/alignof/typeof/typeid. 13450 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement, 13451 const PartialDiagnostic &PD) { 13452 switch (ExprEvalContexts.back().Context) { 13453 case Unevaluated: 13454 case UnevaluatedAbstract: 13455 // The argument will never be evaluated, so don't complain. 13456 break; 13457 13458 case ConstantEvaluated: 13459 // Relevant diagnostics should be produced by constant evaluation. 13460 break; 13461 13462 case PotentiallyEvaluated: 13463 case PotentiallyEvaluatedIfUsed: 13464 if (Statement && getCurFunctionOrMethodDecl()) { 13465 FunctionScopes.back()->PossiblyUnreachableDiags. 13466 push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement)); 13467 } 13468 else 13469 Diag(Loc, PD); 13470 13471 return true; 13472 } 13473 13474 return false; 13475 } 13476 13477 bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, 13478 CallExpr *CE, FunctionDecl *FD) { 13479 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) 13480 return false; 13481 13482 // If we're inside a decltype's expression, don't check for a valid return 13483 // type or construct temporaries until we know whether this is the last call. 13484 if (ExprEvalContexts.back().IsDecltype) { 13485 ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE); 13486 return false; 13487 } 13488 13489 class CallReturnIncompleteDiagnoser : public TypeDiagnoser { 13490 FunctionDecl *FD; 13491 CallExpr *CE; 13492 13493 public: 13494 CallReturnIncompleteDiagnoser(FunctionDecl *FD, CallExpr *CE) 13495 : FD(FD), CE(CE) { } 13496 13497 void diagnose(Sema &S, SourceLocation Loc, QualType T) override { 13498 if (!FD) { 13499 S.Diag(Loc, diag::err_call_incomplete_return) 13500 << T << CE->getSourceRange(); 13501 return; 13502 } 13503 13504 S.Diag(Loc, diag::err_call_function_incomplete_return) 13505 << CE->getSourceRange() << FD->getDeclName() << T; 13506 S.Diag(FD->getLocation(), diag::note_entity_declared_at) 13507 << FD->getDeclName(); 13508 } 13509 } Diagnoser(FD, CE); 13510 13511 if (RequireCompleteType(Loc, ReturnType, Diagnoser)) 13512 return true; 13513 13514 return false; 13515 } 13516 13517 // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses 13518 // will prevent this condition from triggering, which is what we want. 13519 void Sema::DiagnoseAssignmentAsCondition(Expr *E) { 13520 SourceLocation Loc; 13521 13522 unsigned diagnostic = diag::warn_condition_is_assignment; 13523 bool IsOrAssign = false; 13524 13525 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) { 13526 if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign) 13527 return; 13528 13529 IsOrAssign = Op->getOpcode() == BO_OrAssign; 13530 13531 // Greylist some idioms by putting them into a warning subcategory. 13532 if (ObjCMessageExpr *ME 13533 = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) { 13534 Selector Sel = ME->getSelector(); 13535 13536 // self = [<foo> init...] 13537 if (isSelfExpr(Op->getLHS()) && ME->getMethodFamily() == OMF_init) 13538 diagnostic = diag::warn_condition_is_idiomatic_assignment; 13539 13540 // <foo> = [<bar> nextObject] 13541 else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject") 13542 diagnostic = diag::warn_condition_is_idiomatic_assignment; 13543 } 13544 13545 Loc = Op->getOperatorLoc(); 13546 } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) { 13547 if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual) 13548 return; 13549 13550 IsOrAssign = Op->getOperator() == OO_PipeEqual; 13551 Loc = Op->getOperatorLoc(); 13552 } else if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) 13553 return DiagnoseAssignmentAsCondition(POE->getSyntacticForm()); 13554 else { 13555 // Not an assignment. 13556 return; 13557 } 13558 13559 Diag(Loc, diagnostic) << E->getSourceRange(); 13560 13561 SourceLocation Open = E->getLocStart(); 13562 SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); 13563 Diag(Loc, diag::note_condition_assign_silence) 13564 << FixItHint::CreateInsertion(Open, "(") 13565 << FixItHint::CreateInsertion(Close, ")"); 13566 13567 if (IsOrAssign) 13568 Diag(Loc, diag::note_condition_or_assign_to_comparison) 13569 << FixItHint::CreateReplacement(Loc, "!="); 13570 else 13571 Diag(Loc, diag::note_condition_assign_to_comparison) 13572 << FixItHint::CreateReplacement(Loc, "=="); 13573 } 13574 13575 /// \brief Redundant parentheses over an equality comparison can indicate 13576 /// that the user intended an assignment used as condition. 13577 void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) { 13578 // Don't warn if the parens came from a macro. 13579 SourceLocation parenLoc = ParenE->getLocStart(); 13580 if (parenLoc.isInvalid() || parenLoc.isMacroID()) 13581 return; 13582 // Don't warn for dependent expressions. 13583 if (ParenE->isTypeDependent()) 13584 return; 13585 13586 Expr *E = ParenE->IgnoreParens(); 13587 13588 if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E)) 13589 if (opE->getOpcode() == BO_EQ && 13590 opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context) 13591 == Expr::MLV_Valid) { 13592 SourceLocation Loc = opE->getOperatorLoc(); 13593 13594 Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange(); 13595 SourceRange ParenERange = ParenE->getSourceRange(); 13596 Diag(Loc, diag::note_equality_comparison_silence) 13597 << FixItHint::CreateRemoval(ParenERange.getBegin()) 13598 << FixItHint::CreateRemoval(ParenERange.getEnd()); 13599 Diag(Loc, diag::note_equality_comparison_to_assign) 13600 << FixItHint::CreateReplacement(Loc, "="); 13601 } 13602 } 13603 13604 ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) { 13605 DiagnoseAssignmentAsCondition(E); 13606 if (ParenExpr *parenE = dyn_cast<ParenExpr>(E)) 13607 DiagnoseEqualityWithExtraParens(parenE); 13608 13609 ExprResult result = CheckPlaceholderExpr(E); 13610 if (result.isInvalid()) return ExprError(); 13611 E = result.get(); 13612 13613 if (!E->isTypeDependent()) { 13614 if (getLangOpts().CPlusPlus) 13615 return CheckCXXBooleanCondition(E); // C++ 6.4p4 13616 13617 ExprResult ERes = DefaultFunctionArrayLvalueConversion(E); 13618 if (ERes.isInvalid()) 13619 return ExprError(); 13620 E = ERes.get(); 13621 13622 QualType T = E->getType(); 13623 if (!T->isScalarType()) { // C99 6.8.4.1p1 13624 Diag(Loc, diag::err_typecheck_statement_requires_scalar) 13625 << T << E->getSourceRange(); 13626 return ExprError(); 13627 } 13628 CheckBoolLikeConversion(E, Loc); 13629 } 13630 13631 return E; 13632 } 13633 13634 ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc, 13635 Expr *SubExpr) { 13636 if (!SubExpr) 13637 return ExprError(); 13638 13639 return CheckBooleanCondition(SubExpr, Loc); 13640 } 13641 13642 namespace { 13643 /// A visitor for rebuilding a call to an __unknown_any expression 13644 /// to have an appropriate type. 13645 struct RebuildUnknownAnyFunction 13646 : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> { 13647 13648 Sema &S; 13649 13650 RebuildUnknownAnyFunction(Sema &S) : S(S) {} 13651 13652 ExprResult VisitStmt(Stmt *S) { 13653 llvm_unreachable("unexpected statement!"); 13654 } 13655 13656 ExprResult VisitExpr(Expr *E) { 13657 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call) 13658 << E->getSourceRange(); 13659 return ExprError(); 13660 } 13661 13662 /// Rebuild an expression which simply semantically wraps another 13663 /// expression which it shares the type and value kind of. 13664 template <class T> ExprResult rebuildSugarExpr(T *E) { 13665 ExprResult SubResult = Visit(E->getSubExpr()); 13666 if (SubResult.isInvalid()) return ExprError(); 13667 13668 Expr *SubExpr = SubResult.get(); 13669 E->setSubExpr(SubExpr); 13670 E->setType(SubExpr->getType()); 13671 E->setValueKind(SubExpr->getValueKind()); 13672 assert(E->getObjectKind() == OK_Ordinary); 13673 return E; 13674 } 13675 13676 ExprResult VisitParenExpr(ParenExpr *E) { 13677 return rebuildSugarExpr(E); 13678 } 13679 13680 ExprResult VisitUnaryExtension(UnaryOperator *E) { 13681 return rebuildSugarExpr(E); 13682 } 13683 13684 ExprResult VisitUnaryAddrOf(UnaryOperator *E) { 13685 ExprResult SubResult = Visit(E->getSubExpr()); 13686 if (SubResult.isInvalid()) return ExprError(); 13687 13688 Expr *SubExpr = SubResult.get(); 13689 E->setSubExpr(SubExpr); 13690 E->setType(S.Context.getPointerType(SubExpr->getType())); 13691 assert(E->getValueKind() == VK_RValue); 13692 assert(E->getObjectKind() == OK_Ordinary); 13693 return E; 13694 } 13695 13696 ExprResult resolveDecl(Expr *E, ValueDecl *VD) { 13697 if (!isa<FunctionDecl>(VD)) return VisitExpr(E); 13698 13699 E->setType(VD->getType()); 13700 13701 assert(E->getValueKind() == VK_RValue); 13702 if (S.getLangOpts().CPlusPlus && 13703 !(isa<CXXMethodDecl>(VD) && 13704 cast<CXXMethodDecl>(VD)->isInstance())) 13705 E->setValueKind(VK_LValue); 13706 13707 return E; 13708 } 13709 13710 ExprResult VisitMemberExpr(MemberExpr *E) { 13711 return resolveDecl(E, E->getMemberDecl()); 13712 } 13713 13714 ExprResult VisitDeclRefExpr(DeclRefExpr *E) { 13715 return resolveDecl(E, E->getDecl()); 13716 } 13717 }; 13718 } 13719 13720 /// Given a function expression of unknown-any type, try to rebuild it 13721 /// to have a function type. 13722 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) { 13723 ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr); 13724 if (Result.isInvalid()) return ExprError(); 13725 return S.DefaultFunctionArrayConversion(Result.get()); 13726 } 13727 13728 namespace { 13729 /// A visitor for rebuilding an expression of type __unknown_anytype 13730 /// into one which resolves the type directly on the referring 13731 /// expression. Strict preservation of the original source 13732 /// structure is not a goal. 13733 struct RebuildUnknownAnyExpr 13734 : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> { 13735 13736 Sema &S; 13737 13738 /// The current destination type. 13739 QualType DestType; 13740 13741 RebuildUnknownAnyExpr(Sema &S, QualType CastType) 13742 : S(S), DestType(CastType) {} 13743 13744 ExprResult VisitStmt(Stmt *S) { 13745 llvm_unreachable("unexpected statement!"); 13746 } 13747 13748 ExprResult VisitExpr(Expr *E) { 13749 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) 13750 << E->getSourceRange(); 13751 return ExprError(); 13752 } 13753 13754 ExprResult VisitCallExpr(CallExpr *E); 13755 ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E); 13756 13757 /// Rebuild an expression which simply semantically wraps another 13758 /// expression which it shares the type and value kind of. 13759 template <class T> ExprResult rebuildSugarExpr(T *E) { 13760 ExprResult SubResult = Visit(E->getSubExpr()); 13761 if (SubResult.isInvalid()) return ExprError(); 13762 Expr *SubExpr = SubResult.get(); 13763 E->setSubExpr(SubExpr); 13764 E->setType(SubExpr->getType()); 13765 E->setValueKind(SubExpr->getValueKind()); 13766 assert(E->getObjectKind() == OK_Ordinary); 13767 return E; 13768 } 13769 13770 ExprResult VisitParenExpr(ParenExpr *E) { 13771 return rebuildSugarExpr(E); 13772 } 13773 13774 ExprResult VisitUnaryExtension(UnaryOperator *E) { 13775 return rebuildSugarExpr(E); 13776 } 13777 13778 ExprResult VisitUnaryAddrOf(UnaryOperator *E) { 13779 const PointerType *Ptr = DestType->getAs<PointerType>(); 13780 if (!Ptr) { 13781 S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof) 13782 << E->getSourceRange(); 13783 return ExprError(); 13784 } 13785 assert(E->getValueKind() == VK_RValue); 13786 assert(E->getObjectKind() == OK_Ordinary); 13787 E->setType(DestType); 13788 13789 // Build the sub-expression as if it were an object of the pointee type. 13790 DestType = Ptr->getPointeeType(); 13791 ExprResult SubResult = Visit(E->getSubExpr()); 13792 if (SubResult.isInvalid()) return ExprError(); 13793 E->setSubExpr(SubResult.get()); 13794 return E; 13795 } 13796 13797 ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E); 13798 13799 ExprResult resolveDecl(Expr *E, ValueDecl *VD); 13800 13801 ExprResult VisitMemberExpr(MemberExpr *E) { 13802 return resolveDecl(E, E->getMemberDecl()); 13803 } 13804 13805 ExprResult VisitDeclRefExpr(DeclRefExpr *E) { 13806 return resolveDecl(E, E->getDecl()); 13807 } 13808 }; 13809 } 13810 13811 /// Rebuilds a call expression which yielded __unknown_anytype. 13812 ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) { 13813 Expr *CalleeExpr = E->getCallee(); 13814 13815 enum FnKind { 13816 FK_MemberFunction, 13817 FK_FunctionPointer, 13818 FK_BlockPointer 13819 }; 13820 13821 FnKind Kind; 13822 QualType CalleeType = CalleeExpr->getType(); 13823 if (CalleeType == S.Context.BoundMemberTy) { 13824 assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E)); 13825 Kind = FK_MemberFunction; 13826 CalleeType = Expr::findBoundMemberType(CalleeExpr); 13827 } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) { 13828 CalleeType = Ptr->getPointeeType(); 13829 Kind = FK_FunctionPointer; 13830 } else { 13831 CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType(); 13832 Kind = FK_BlockPointer; 13833 } 13834 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); 13835 13836 // Verify that this is a legal result type of a function. 13837 if (DestType->isArrayType() || DestType->isFunctionType()) { 13838 unsigned diagID = diag::err_func_returning_array_function; 13839 if (Kind == FK_BlockPointer) 13840 diagID = diag::err_block_returning_array_function; 13841 13842 S.Diag(E->getExprLoc(), diagID) 13843 << DestType->isFunctionType() << DestType; 13844 return ExprError(); 13845 } 13846 13847 // Otherwise, go ahead and set DestType as the call's result. 13848 E->setType(DestType.getNonLValueExprType(S.Context)); 13849 E->setValueKind(Expr::getValueKindForType(DestType)); 13850 assert(E->getObjectKind() == OK_Ordinary); 13851 13852 // Rebuild the function type, replacing the result type with DestType. 13853 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType); 13854 if (Proto) { 13855 // __unknown_anytype(...) is a special case used by the debugger when 13856 // it has no idea what a function's signature is. 13857 // 13858 // We want to build this call essentially under the K&R 13859 // unprototyped rules, but making a FunctionNoProtoType in C++ 13860 // would foul up all sorts of assumptions. However, we cannot 13861 // simply pass all arguments as variadic arguments, nor can we 13862 // portably just call the function under a non-variadic type; see 13863 // the comment on IR-gen's TargetInfo::isNoProtoCallVariadic. 13864 // However, it turns out that in practice it is generally safe to 13865 // call a function declared as "A foo(B,C,D);" under the prototype 13866 // "A foo(B,C,D,...);". The only known exception is with the 13867 // Windows ABI, where any variadic function is implicitly cdecl 13868 // regardless of its normal CC. Therefore we change the parameter 13869 // types to match the types of the arguments. 13870 // 13871 // This is a hack, but it is far superior to moving the 13872 // corresponding target-specific code from IR-gen to Sema/AST. 13873 13874 ArrayRef<QualType> ParamTypes = Proto->getParamTypes(); 13875 SmallVector<QualType, 8> ArgTypes; 13876 if (ParamTypes.empty() && Proto->isVariadic()) { // the special case 13877 ArgTypes.reserve(E->getNumArgs()); 13878 for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) { 13879 Expr *Arg = E->getArg(i); 13880 QualType ArgType = Arg->getType(); 13881 if (E->isLValue()) { 13882 ArgType = S.Context.getLValueReferenceType(ArgType); 13883 } else if (E->isXValue()) { 13884 ArgType = S.Context.getRValueReferenceType(ArgType); 13885 } 13886 ArgTypes.push_back(ArgType); 13887 } 13888 ParamTypes = ArgTypes; 13889 } 13890 DestType = S.Context.getFunctionType(DestType, ParamTypes, 13891 Proto->getExtProtoInfo()); 13892 } else { 13893 DestType = S.Context.getFunctionNoProtoType(DestType, 13894 FnType->getExtInfo()); 13895 } 13896 13897 // Rebuild the appropriate pointer-to-function type. 13898 switch (Kind) { 13899 case FK_MemberFunction: 13900 // Nothing to do. 13901 break; 13902 13903 case FK_FunctionPointer: 13904 DestType = S.Context.getPointerType(DestType); 13905 break; 13906 13907 case FK_BlockPointer: 13908 DestType = S.Context.getBlockPointerType(DestType); 13909 break; 13910 } 13911 13912 // Finally, we can recurse. 13913 ExprResult CalleeResult = Visit(CalleeExpr); 13914 if (!CalleeResult.isUsable()) return ExprError(); 13915 E->setCallee(CalleeResult.get()); 13916 13917 // Bind a temporary if necessary. 13918 return S.MaybeBindToTemporary(E); 13919 } 13920 13921 ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) { 13922 // Verify that this is a legal result type of a call. 13923 if (DestType->isArrayType() || DestType->isFunctionType()) { 13924 S.Diag(E->getExprLoc(), diag::err_func_returning_array_function) 13925 << DestType->isFunctionType() << DestType; 13926 return ExprError(); 13927 } 13928 13929 // Rewrite the method result type if available. 13930 if (ObjCMethodDecl *Method = E->getMethodDecl()) { 13931 assert(Method->getReturnType() == S.Context.UnknownAnyTy); 13932 Method->setReturnType(DestType); 13933 } 13934 13935 // Change the type of the message. 13936 E->setType(DestType.getNonReferenceType()); 13937 E->setValueKind(Expr::getValueKindForType(DestType)); 13938 13939 return S.MaybeBindToTemporary(E); 13940 } 13941 13942 ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) { 13943 // The only case we should ever see here is a function-to-pointer decay. 13944 if (E->getCastKind() == CK_FunctionToPointerDecay) { 13945 assert(E->getValueKind() == VK_RValue); 13946 assert(E->getObjectKind() == OK_Ordinary); 13947 13948 E->setType(DestType); 13949 13950 // Rebuild the sub-expression as the pointee (function) type. 13951 DestType = DestType->castAs<PointerType>()->getPointeeType(); 13952 13953 ExprResult Result = Visit(E->getSubExpr()); 13954 if (!Result.isUsable()) return ExprError(); 13955 13956 E->setSubExpr(Result.get()); 13957 return E; 13958 } else if (E->getCastKind() == CK_LValueToRValue) { 13959 assert(E->getValueKind() == VK_RValue); 13960 assert(E->getObjectKind() == OK_Ordinary); 13961 13962 assert(isa<BlockPointerType>(E->getType())); 13963 13964 E->setType(DestType); 13965 13966 // The sub-expression has to be a lvalue reference, so rebuild it as such. 13967 DestType = S.Context.getLValueReferenceType(DestType); 13968 13969 ExprResult Result = Visit(E->getSubExpr()); 13970 if (!Result.isUsable()) return ExprError(); 13971 13972 E->setSubExpr(Result.get()); 13973 return E; 13974 } else { 13975 llvm_unreachable("Unhandled cast type!"); 13976 } 13977 } 13978 13979 ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) { 13980 ExprValueKind ValueKind = VK_LValue; 13981 QualType Type = DestType; 13982 13983 // We know how to make this work for certain kinds of decls: 13984 13985 // - functions 13986 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) { 13987 if (const PointerType *Ptr = Type->getAs<PointerType>()) { 13988 DestType = Ptr->getPointeeType(); 13989 ExprResult Result = resolveDecl(E, VD); 13990 if (Result.isInvalid()) return ExprError(); 13991 return S.ImpCastExprToType(Result.get(), Type, 13992 CK_FunctionToPointerDecay, VK_RValue); 13993 } 13994 13995 if (!Type->isFunctionType()) { 13996 S.Diag(E->getExprLoc(), diag::err_unknown_any_function) 13997 << VD << E->getSourceRange(); 13998 return ExprError(); 13999 } 14000 if (const FunctionProtoType *FT = Type->getAs<FunctionProtoType>()) { 14001 // We must match the FunctionDecl's type to the hack introduced in 14002 // RebuildUnknownAnyExpr::VisitCallExpr to vararg functions of unknown 14003 // type. See the lengthy commentary in that routine. 14004 QualType FDT = FD->getType(); 14005 const FunctionType *FnType = FDT->castAs<FunctionType>(); 14006 const FunctionProtoType *Proto = dyn_cast_or_null<FunctionProtoType>(FnType); 14007 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); 14008 if (DRE && Proto && Proto->getParamTypes().empty() && Proto->isVariadic()) { 14009 SourceLocation Loc = FD->getLocation(); 14010 FunctionDecl *NewFD = FunctionDecl::Create(FD->getASTContext(), 14011 FD->getDeclContext(), 14012 Loc, Loc, FD->getNameInfo().getName(), 14013 DestType, FD->getTypeSourceInfo(), 14014 SC_None, false/*isInlineSpecified*/, 14015 FD->hasPrototype(), 14016 false/*isConstexprSpecified*/); 14017 14018 if (FD->getQualifier()) 14019 NewFD->setQualifierInfo(FD->getQualifierLoc()); 14020 14021 SmallVector<ParmVarDecl*, 16> Params; 14022 for (const auto &AI : FT->param_types()) { 14023 ParmVarDecl *Param = 14024 S.BuildParmVarDeclForTypedef(FD, Loc, AI); 14025 Param->setScopeInfo(0, Params.size()); 14026 Params.push_back(Param); 14027 } 14028 NewFD->setParams(Params); 14029 DRE->setDecl(NewFD); 14030 VD = DRE->getDecl(); 14031 } 14032 } 14033 14034 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) 14035 if (MD->isInstance()) { 14036 ValueKind = VK_RValue; 14037 Type = S.Context.BoundMemberTy; 14038 } 14039 14040 // Function references aren't l-values in C. 14041 if (!S.getLangOpts().CPlusPlus) 14042 ValueKind = VK_RValue; 14043 14044 // - variables 14045 } else if (isa<VarDecl>(VD)) { 14046 if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) { 14047 Type = RefTy->getPointeeType(); 14048 } else if (Type->isFunctionType()) { 14049 S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type) 14050 << VD << E->getSourceRange(); 14051 return ExprError(); 14052 } 14053 14054 // - nothing else 14055 } else { 14056 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl) 14057 << VD << E->getSourceRange(); 14058 return ExprError(); 14059 } 14060 14061 // Modifying the declaration like this is friendly to IR-gen but 14062 // also really dangerous. 14063 VD->setType(DestType); 14064 E->setType(Type); 14065 E->setValueKind(ValueKind); 14066 return E; 14067 } 14068 14069 /// Check a cast of an unknown-any type. We intentionally only 14070 /// trigger this for C-style casts. 14071 ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType, 14072 Expr *CastExpr, CastKind &CastKind, 14073 ExprValueKind &VK, CXXCastPath &Path) { 14074 // Rewrite the casted expression from scratch. 14075 ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr); 14076 if (!result.isUsable()) return ExprError(); 14077 14078 CastExpr = result.get(); 14079 VK = CastExpr->getValueKind(); 14080 CastKind = CK_NoOp; 14081 14082 return CastExpr; 14083 } 14084 14085 ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) { 14086 return RebuildUnknownAnyExpr(*this, ToType).Visit(E); 14087 } 14088 14089 ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc, 14090 Expr *arg, QualType ¶mType) { 14091 // If the syntactic form of the argument is not an explicit cast of 14092 // any sort, just do default argument promotion. 14093 ExplicitCastExpr *castArg = dyn_cast<ExplicitCastExpr>(arg->IgnoreParens()); 14094 if (!castArg) { 14095 ExprResult result = DefaultArgumentPromotion(arg); 14096 if (result.isInvalid()) return ExprError(); 14097 paramType = result.get()->getType(); 14098 return result; 14099 } 14100 14101 // Otherwise, use the type that was written in the explicit cast. 14102 assert(!arg->hasPlaceholderType()); 14103 paramType = castArg->getTypeAsWritten(); 14104 14105 // Copy-initialize a parameter of that type. 14106 InitializedEntity entity = 14107 InitializedEntity::InitializeParameter(Context, paramType, 14108 /*consumed*/ false); 14109 return PerformCopyInitialization(entity, callLoc, arg); 14110 } 14111 14112 static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) { 14113 Expr *orig = E; 14114 unsigned diagID = diag::err_uncasted_use_of_unknown_any; 14115 while (true) { 14116 E = E->IgnoreParenImpCasts(); 14117 if (CallExpr *call = dyn_cast<CallExpr>(E)) { 14118 E = call->getCallee(); 14119 diagID = diag::err_uncasted_call_of_unknown_any; 14120 } else { 14121 break; 14122 } 14123 } 14124 14125 SourceLocation loc; 14126 NamedDecl *d; 14127 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) { 14128 loc = ref->getLocation(); 14129 d = ref->getDecl(); 14130 } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) { 14131 loc = mem->getMemberLoc(); 14132 d = mem->getMemberDecl(); 14133 } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) { 14134 diagID = diag::err_uncasted_call_of_unknown_any; 14135 loc = msg->getSelectorStartLoc(); 14136 d = msg->getMethodDecl(); 14137 if (!d) { 14138 S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method) 14139 << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector() 14140 << orig->getSourceRange(); 14141 return ExprError(); 14142 } 14143 } else { 14144 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) 14145 << E->getSourceRange(); 14146 return ExprError(); 14147 } 14148 14149 S.Diag(loc, diagID) << d << orig->getSourceRange(); 14150 14151 // Never recoverable. 14152 return ExprError(); 14153 } 14154 14155 /// Check for operands with placeholder types and complain if found. 14156 /// Returns true if there was an error and no recovery was possible. 14157 ExprResult Sema::CheckPlaceholderExpr(Expr *E) { 14158 if (!getLangOpts().CPlusPlus) { 14159 // C cannot handle TypoExpr nodes on either side of a binop because it 14160 // doesn't handle dependent types properly, so make sure any TypoExprs have 14161 // been dealt with before checking the operands. 14162 ExprResult Result = CorrectDelayedTyposInExpr(E); 14163 if (!Result.isUsable()) return ExprError(); 14164 E = Result.get(); 14165 } 14166 14167 const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType(); 14168 if (!placeholderType) return E; 14169 14170 switch (placeholderType->getKind()) { 14171 14172 // Overloaded expressions. 14173 case BuiltinType::Overload: { 14174 // Try to resolve a single function template specialization. 14175 // This is obligatory. 14176 ExprResult result = E; 14177 if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) { 14178 return result; 14179 14180 // If that failed, try to recover with a call. 14181 } else { 14182 tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable), 14183 /*complain*/ true); 14184 return result; 14185 } 14186 } 14187 14188 // Bound member functions. 14189 case BuiltinType::BoundMember: { 14190 ExprResult result = E; 14191 const Expr *BME = E->IgnoreParens(); 14192 PartialDiagnostic PD = PDiag(diag::err_bound_member_function); 14193 // Try to give a nicer diagnostic if it is a bound member that we recognize. 14194 if (isa<CXXPseudoDestructorExpr>(BME)) { 14195 PD = PDiag(diag::err_dtor_expr_without_call) << /*pseudo-destructor*/ 1; 14196 } else if (const auto *ME = dyn_cast<MemberExpr>(BME)) { 14197 if (ME->getMemberNameInfo().getName().getNameKind() == 14198 DeclarationName::CXXDestructorName) 14199 PD = PDiag(diag::err_dtor_expr_without_call) << /*destructor*/ 0; 14200 } 14201 tryToRecoverWithCall(result, PD, 14202 /*complain*/ true); 14203 return result; 14204 } 14205 14206 // ARC unbridged casts. 14207 case BuiltinType::ARCUnbridgedCast: { 14208 Expr *realCast = stripARCUnbridgedCast(E); 14209 diagnoseARCUnbridgedCast(realCast); 14210 return realCast; 14211 } 14212 14213 // Expressions of unknown type. 14214 case BuiltinType::UnknownAny: 14215 return diagnoseUnknownAnyExpr(*this, E); 14216 14217 // Pseudo-objects. 14218 case BuiltinType::PseudoObject: 14219 return checkPseudoObjectRValue(E); 14220 14221 case BuiltinType::BuiltinFn: { 14222 // Accept __noop without parens by implicitly converting it to a call expr. 14223 auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()); 14224 if (DRE) { 14225 auto *FD = cast<FunctionDecl>(DRE->getDecl()); 14226 if (FD->getBuiltinID() == Builtin::BI__noop) { 14227 E = ImpCastExprToType(E, Context.getPointerType(FD->getType()), 14228 CK_BuiltinFnToFnPtr).get(); 14229 return new (Context) CallExpr(Context, E, None, Context.IntTy, 14230 VK_RValue, SourceLocation()); 14231 } 14232 } 14233 14234 Diag(E->getLocStart(), diag::err_builtin_fn_use); 14235 return ExprError(); 14236 } 14237 14238 // Everything else should be impossible. 14239 #define BUILTIN_TYPE(Id, SingletonId) \ 14240 case BuiltinType::Id: 14241 #define PLACEHOLDER_TYPE(Id, SingletonId) 14242 #include "clang/AST/BuiltinTypes.def" 14243 break; 14244 } 14245 14246 llvm_unreachable("invalid placeholder type!"); 14247 } 14248 14249 bool Sema::CheckCaseExpression(Expr *E) { 14250 if (E->isTypeDependent()) 14251 return true; 14252 if (E->isValueDependent() || E->isIntegerConstantExpr(Context)) 14253 return E->getType()->isIntegralOrEnumerationType(); 14254 return false; 14255 } 14256 14257 /// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals. 14258 ExprResult 14259 Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) { 14260 assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) && 14261 "Unknown Objective-C Boolean value!"); 14262 QualType BoolT = Context.ObjCBuiltinBoolTy; 14263 if (!Context.getBOOLDecl()) { 14264 LookupResult Result(*this, &Context.Idents.get("BOOL"), OpLoc, 14265 Sema::LookupOrdinaryName); 14266 if (LookupName(Result, getCurScope()) && Result.isSingleResult()) { 14267 NamedDecl *ND = Result.getFoundDecl(); 14268 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(ND)) 14269 Context.setBOOLDecl(TD); 14270 } 14271 } 14272 if (Context.getBOOLDecl()) 14273 BoolT = Context.getBOOLType(); 14274 return new (Context) 14275 ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, BoolT, OpLoc); 14276 } 14277